diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/xduthesis/examples/thesis-masterpro.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/xduthesis/examples/thesis-masterpro.tex | 122 |
1 files changed, 122 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/xduthesis/examples/thesis-masterpro.tex b/Master/texmf-dist/doc/latex/xduthesis/examples/thesis-masterpro.tex new file mode 100644 index 00000000000..a6534e35abf --- /dev/null +++ b/Master/texmf-dist/doc/latex/xduthesis/examples/thesis-masterpro.tex @@ -0,0 +1,122 @@ +%% ---------------------------------------------------------------------- +%% START OF FILE +%% ---------------------------------------------------------------------- +%% +%% Filename: thesis-masterpro.tex +%% Author: Fred Qi +%% Created: 2012-01-14 23:26:12(+0800) +%% +%% ---------------------------------------------------------------------- +%%% CHANGE LOG +%% ---------------------------------------------------------------------- +%% Last-Updated: 2016-02-09 15:13:01(-0700) [by Fred Qi] +%% Update #: 124 +%% ---------------------------------------------------------------------- + +\documentclass[masterpro,print]{xduthesis} + +% 这里是可能用到的其他宏包,根据自己论文撰写的需要添加 +\usepackage{listings} +\lstset{language=TeX, basicstyle=\ttfamily} + +\begin{document} + +%%%%%%%%%%%%%%% +%% 论文前置部分 +%%%%%%%%%%%%%%% +\frontmatter + +% 论文相关信息(封面) +\universitycode{10701} % 学校代码 +\studentid{0000000000} % 学号 +\catelognumber{XX000.00} % 分类号 +\secretlevel{公开} % 密级 + +\ctitle{硕士学位论文\\中文题目} +\etitle{Title of the Thesis for Master's Degree in English} + +\cauthor{作者姓名} % 作者姓名 +\eauthor{Firstname Lastname} % 英文作者姓名 +\csupervisor{某某某~教授} % 导师姓名、职称 +\ccosupervisor{某某某~研究员} % 企业导师姓名、职称 +\esupervisor{Prof. Firstname Lastname} % 英文导师姓名、职称 +\ecosupervisor{Title Firstname Lastname} % 英文企业导师姓名、职称 + +\cfirstdiscipline{电子与通信工程} % 一级学科名称 +\efirstdiscipline{Electronics and Communication Engineering} % 英文一级学科名称 +\cdegree{工程硕士} +\edegree{Master} +\cdate{0000年00月} % 提交学位论文时间 +\edate{Month Year} % 英文提交学位论文时间 + +%% 作者中英文简介 % 2014年版格式要求已经删除 +% \input{biography} + +% 中英文摘要声明 +\input{abstract} + +% 生成论文的封面、声明页、中英文摘要 +\makecover + + +% 插图索引 +\listoffigures +% 表格索引 +\listoftables + +\chapter*{符号对照表} + +\begin{tabular}{rl} + 符号 & 符号名称 \\ + X & 某某符号\\ +\end{tabular} + +\chapter*{缩略语对照表} + +\begin{tabular}{cll} + 缩略语 & 英文全称 & 中文对照\\ + XXX & XXX & 某某某 \\ + XXX & XXX & 某某某 \\ + XXX & XXX & 某某某 \\ +\end{tabular} + + +% 论文目录 +\tableofcontents + +%%%%%%%%%%%%%%% +%% 论文正文 +%%%%%%%%%%%%%%% +\mainmatter + +\input{ch01-intro} +\input{ch02-options} +\input{ch03-frontmatter} +\input{ch04-mainmatter} +\input{ch05-backmatter} +\input{ch06-bibliography} +\input{ch07-conclusions} + +% 附录,建议放在参考文献之后,致谢与成果部分之前 +\begin{appendix} + \input{appendix01} +\end{appendix} + +%%%%%%%%%%%%%%% +%% 论文后置部分 +%%%%%%%%%%%%%%% +\backmatter + +% 参考文献 +\bibliographystyle{IEEEtran} +\bibliography{IEEEabrv,refs} + +\input{acknowledgments} + +\input{achievements} + +\end{document} + +%% ---------------------------------------------------------------------- +%%% END OF FILE +%% ----------------------------------------------------------------------
\ No newline at end of file |