% !Mode:: "TeX:UTF-8"
% ---------- 声明文档类 ---------- %
% 有两个可选参数:bachelors、bachelorh
%% bachelors:理工科模式
%% bachelorh:文科模式
% 添加哪个参数即表示选择哪种模式
\documentclass[bachelors]{dlmubachelorthesis}
% ================================================== %
% --------------- 添加批注 --------------- %
\let\comment\undefined
\usepackage[]{changes}
\definechangesauthor[name={海哥}, color=blue]{海哥} %创建批注者信息
\definechangesauthor[name={海老}, color=red]{海老} %创建批注者信息
% ======================================== %
% -------------------- 填写论文信息 -------------------- %
\cntitle{基于低分辨率视频的手势运动方向检测} %【中文标题】
\entitle{Detection of Gesture Motion Direction based on Low-Resolution Video} %【英文标题】
\aauthor{海哥} %【作者姓名】
\sdtID{222020xxxx} %【学号】
\faculty{理学院} %【学院】
\majorinCOVERPAGE{数学与应用数学2020-1} %【专业年级班级(coverpage专用)】
\mentorONE{海老}{教授} %【指导教师(及其职称)】
\mentorTWO{无}{0} %【第二指导教师(及其职称)】【若无,则第一个参数填“无”,第二个填数字0】
\completiondate{2024}{5} %【完成日期(年、月)】
% ================================================== %
% ---------- 可以在此处添加自己定义的命令 ---------- %
% ================================================== %
\begin{document}
\makepages %【添加封面页、装订页、标题页】
% ---------- 中文摘要 ---------- %
\begin{abstract}
\input{mainbody/STEM/abstract_zh}
\end{abstract}
\newpage
% ================================================== %
% ---------- 英文摘要 ---------- %
\renewcommand\abstractname{\large ABSTRACT} %临时修改摘要名
\begin{abstract}
\input{mainbody/STEM/abstract_en}
\end{abstract}
\newpage
% ================================================== %
% ---------- 目录 ---------- %
\tableofcontents
\listofchanges
\newpage
% ================================================== %
\pagestyle{fancy} %从第一章到致谢,设置为有页眉、有页脚的模式
\pagenumbering{arabic} %《手册》要求:从正文开始设为阿拉伯数字页码,并且重新从1开始计数
% ---------- 正文首页标题 ---------- %
\cntitleinMAINBODY %【插入中文标题】
% ================================================== %
% ---------- 正文(划分为多个独立文件依次导入) ---------- %
\input{mainbody/STEM/ch1} \clearpage\vspace*{0pt} %\vspace*{0pt}的添加解决了章节标题前间距不合理的问题
\input{mainbody/STEM/ch2} \clearpage\vspace*{0pt}
\input{mainbody/STEM/ch3} \clearpage\vspace*{0pt}
\input{mainbody/STEM/ch4} \clearpage\vspace*{0pt}
\input{mainbody/STEM/conclusions} \clearpage\vspace*{0pt} % 结论
% ================================================== %
% ---------- 参考文献 ---------- %
{\zihao{5} %【该句涉及到格式设置,请勿乱动】
\bibliography{refs/refs_STEM} %bib文件导入的形式生成参考文献列表
%\begin{thebibliography}{100}
%\bibitem{文献x标签}文献x信息
%\end{thebibliography}
}
% ================================================== %
% ---------- 致谢 ---------- %
\input{mainbody/STEM/acknowledgments}
% ================================================== %
% ---------- 附录 ---------- %
\input{mainbody/STEM/appendiceS}
% ================================================== %
\end{document}