carry b6cba12aa0 docs(report): 添加实验结果章节和图片资源
- 新增实验结果章节(results.tex),包含实验条件介绍和训练指标变化图表
- 添加训练前后对比图片(before_train.png, after_train.png)
- 在main.tex中添加必要的LaTeX包支持(subcaption, booktabs等)
2025-05-26 01:33:00 +08:00

46 lines
947 B
TeX
Raw Permalink 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}
\usepackage{subcaption}
\usepackage{booktabs}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
% 设置主题
\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}