carry 5fb6faa59a feat(致谢): 添加致谢章节并更新主题颜色
- 在报告中新增致谢章节,包含感谢语和意见征求
- 将主题颜色从whale更改为default以保持一致性
2025-05-25 22:31:43 +08:00

41 lines
835 B
TeX
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

\documentclass[aspectratio=43]{beamer}
\usepackage{ctex}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{fontawesome5}
% 设置主题
\usetheme{Madrid}
\usecolortheme{default}
\setbeamertemplate{navigation symbols}{}
% 标题信息
\title{基于文档驱动的自适应编码大模型微调框架}
\subtitle{毕业设计答辩}
\author[XXX]{姓名XXX \\ 学号XXX \\ 指导教师XXX}
\institute{广州大学}
\date{\today}
\begin{document}
% 标题页
\frame{\titlepage}
% 目录
\begin{frame}
\frametitle{目录}
\tableofcontents
\end{frame}
% 引入各章节内容
\input{chapters/background}
\input{chapters/technology}
\input{chapters/design}
\input{chapters/results}
\input{chapters/conclusion}
\input{chapters/acknowledgements}
\end{document}