summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/cquthesis/main.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/cquthesis/main.tex')
-rw-r--r--macros/latex/contrib/cquthesis/main.tex83
1 files changed, 83 insertions, 0 deletions
diff --git a/macros/latex/contrib/cquthesis/main.tex b/macros/latex/contrib/cquthesis/main.tex
new file mode 100644
index 0000000000..cd8840fb53
--- /dev/null
+++ b/macros/latex/contrib/cquthesis/main.tex
@@ -0,0 +1,83 @@
+% !TeX encoding = UTF-8
+%% \textbf{重庆大学}通用毕业论文\LaTeXe{}模板
+%%% 使用前请先阅读使用文档和用户协议,内有详细介绍。Happy Texing! :)
+%% =======================================================
+\documentclass%
+ [type=doctor, bilinguallist=apart,]{cquthesis}%
+% 可用选项:
+% type=[bachelor|master|doctor], % 必选,毕业论文类型,以下项目不填时为默认
+% liberalformat, % 可选,仅适用本科生,使用文学类论文标题格式,默认未打开
+% proffesionalmaster=[true|false], % 可选,仅适用研究生,是(true)否(false)专业硕士,默认为否
+% printmode=[oneside|twoside|auto], % 可选,论文打印方式,默认采用auto按页数要求自动判定
+% openany,|openright, % 可选,双面打印时每章的第一页仅右页开启,默认右页开启(openright)
+% bilinguallist=[off|combined|apart], % 可选,图录表录等分别按双语题注混编(combined),分开编录(apart),默认关(off)
+% blindtrail, % 可选,盲审模式,开启后封面姓名和致谢部分会隐藏,详情请参阅用户文档,默认关
+% draft, % 写作期间可选,不渲染图片,关闭外围功能,加快预览速度,默认未开启
+
+% 请在cquthesis.sty文件中定义其他会用到的宏包和自己的变量
+% 这样可以防止main.tex太过臃肿。
+\usepackage{cquthesis}
+
+% 定义所有的图片文件在 figures 子目录下
+\graphicspath{{figures/}}
+
+%*** 写作时,使用这个命令只渲染你想查看的部分,提升工作效率,定稿时注释掉整行
+%\includeonly{contents/experiment,contents/analysis,}
+
+\begin{document}
+
+\input{contents/cover}
+\makecover %%% 封面部分
+
+
+\frontmatter %%%前置部分(封面后绪论前)
+%% 摘要
+\makeabstract
+%% 目录,注意需要多次编译才能更新
+\tableofcontents
+%% 插图索引,可选,如不用可注释掉
+\listoffigures
+\listoffiguresEN
+%% 表格索引,可选
+\listoftables
+\listoftablesEN
+%% 公式索引,可选
+\listofequations
+\listofequationsEN
+%% 符号对照表,可选
+\input{contents/denotation}
+
+
+\mainmatter %%% 主体部分(绪论开始,结论为止)
+%* 子文件的多少和内容由你决定(最好以章为单位),基本原则是提速预览、脉络清晰、管理容易。
+
+
+\include{contents/introduction}
+\include{contents/experiment}
+\include{contents/analysis}
+\include{contents/conclusion}
+%\include{contents/yourFreeChoise}
+
+
+\backmatter %%% 后置部分(致谢、参考文献、附录等)
+
+
+%% 致谢
+\include{contents/ack}
+%% 参考文献
+% 顺序编码制:cqunumerical
+% 注意:至少需要引用一篇参考文献,否则下面两行会引起编译错误。
+\bibliographystyle{cqunumerical}
+\bibliography{ref/refs}
+
+
+%% 附录(按ABC...分节,证明、推导、程序、个人简历等)
+\appendix
+
+% 个人简历
+\include{contents/appendix}
+%% 原创声明和授权说明书,可选:用扫描页替换
+%\cquauthpage[contents/authscan.pdf]
+\cquauthpage
+
+\end{document}