% !Mode:: "TeX:UTF-8"
% ---------- 声明文档类 ---------- %
% 有两个可选参数:bachelors、bachelorh
%% bachelors:理工科模式
%% bachelorh:文科模式
% 添加哪个参数即表示选择哪种模式
\documentclass[bachelorh]{dlmubachelorthesis}
% ================================================== %
% --------------- 添加批注 --------------- %
\let\comment\undefined
\usepackage[]{changes}
\definechangesauthor[name={海哥}, color=blue]{海哥} %创建批注者信息
\definechangesauthor[name={海老}, color=red]{海老} %创建批注者信息
% ======================================== %
% -------------------- 填写论文信息 -------------------- %
\cntitle{提高我国医疗保障水平问题研究} %【中文标题】
\entitle{Study on the Issue of Improving the Level of Medical Insurance in China} %【英文标题】
\aauthor{海哥} %【作者姓名】
\sdtID{222020xxxx} %【学号】
\faculty{公共管理与人文艺术学院} %【学院】
\majorinCOVERPAGE{公共事业管理2020-1} %【专业年级班级(coverpage专用)】
\mentorONE{海老}{教授} %【指导教师(及其职称)】
\mentorTWO{无}{0} %【第二指导教师(及其职称)】【若无,则第一个参数填“无”,第二个填数字0】
\completiondate{2024}{5} %【完成日期(年、月)】
% ================================================== %
% ----- 文科类专业专用:脚注编号类型的选择 ----- %
%% 填“1”:仅阿拉伯数字
%% 填“2”:[1], [2], ...
%% 填“3”:(1), (2), ...
%% 填“4”:带圈的阿拉伯数字
\footnotemode{4}
% ============================================= %
% ---------- 可以在此处添加自己定义的命令 ---------- %
% ================================================== %
\begin{document}
\makepages %【添加封面页】
% ---------- 中文摘要 ---------- %
\begin{abstract}
\input{mainbody/humanities/abstract_zh}
\end{abstract}
\newpage
% ============================== %
% ---------- 英文摘要 ---------- %
\renewcommand\abstractname{\large ABSTRACT} %临时修改摘要名
\begin{abstract}
\input{mainbody/humanities/abstract_en}
\end{abstract}
\newpage
% ============================== %
% ---------- 目录 ---------- %
\tableofcontents
\listofchanges
\newpage
% ================================================== %
\pagestyle{fancy} %从第一章到致谢,设置为有页眉、有页脚的模式
\pagenumbering{arabic} %《手册》要求:从正文开始设为阿拉伯数字页码,并且重新从1开始计数
% ---------- 正文首页标题 ---------- %
\cntitleinMAINBODY %【插入中文标题】
% ================================================== %
% ---------- 正文(划分为多个独立文件依次导入) ---------- %
\input{mainbody/humanities/ch1} \clearpage\vspace*{0pt} %\vspace*{0pt}的添加解决了章节标题前间距不合理的问题
\input{mainbody/humanities/ch2} \clearpage\vspace*{0pt}
\input{mainbody/humanities/ch3} \clearpage\vspace*{0pt}
\input{mainbody/humanities/conclusions} \clearpage\vspace*{0pt} % 总结
% ================================================== %
% ---------- 参考文献 ---------- %
{\zihao{5} %【该句涉及到格式设置,请勿乱动】
\bibliography{refs/refs_humanities} %bib文件导入的形式生成参考文献列表
%\begin{thebibliography}{100}
%\bibitem{文献x标签}文献x信息
%\end{thebibliography}
}
% ================================================== %
% ---------- 致谢 ---------- %
\input{mainbody/humanities/acknowledgments}
% ================================================== %
% ---------- 附录 ---------- %
\input{mainbody/humanities/appendiceS}
% ================================================== %
\end{document}