summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/xduthesis/examples/thesis-doctor.tex
blob: 7676d7346dcc24b906c70f438735a45029465942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
%% ----------------------------------------------------------------------
%% START OF FILE
%% ----------------------------------------------------------------------
%% 
%% Filename: thesis-doctor.tex
%% Author: Fred Qi
%% Created: 2008-06-25 11:13:31(+0800)
%% 
%% ----------------------------------------------------------------------
%%% CHANGE LOG
%% ----------------------------------------------------------------------
%% Last-Updated: 2016-02-09 15:12:33(-0700) [by Fred Qi]
%%     Update #: 163
%% ----------------------------------------------------------------------
\documentclass[doctor,print]{xduthesis}

% 这里是可能用到的其他宏包,根据自己论文撰写的需要添加
\usepackage{listings}
\lstset{language=TeX, basicstyle=\ttfamily}

\begin{document}

% 定义所有的图片文件在 figs 子目录下
\graphicspath{{figs/}}

%%%%%%%%%%%%%%%
%% 论文前置部分
%%%%%%%%%%%%%%%
\frontmatter

% 论文相关信息(封面)
\universitycode{10701}          % 学校代码
\studentid{0000000000}          % 学号
\catelognumber{XX000.00}        % 分类号
\secretlevel{公开}               % 密级

\ctitle{中文博士学位论文题目}          % 中文题目
\etitle{Dissertation Title in English} % 英文题目

\cauthor{作者姓名}                      % 作者姓名
\eauthor{Firstname Lastname}           % 英文作者姓名
\csupervisor{某某某~教授}                % 导师姓名、职称
\esupervisor{Prof. Firstname Lastname} % 英文导师姓名、职称

\cfirstdiscipline{一级学科名称}                % 一级学科名称
\efirstdiscipline{First discipline in English} % 英文一级学科名称
\cseconddiscipline{二级学科名称}
\cdegree{工学博士}
\edegree{Doctor}
\cdate{0000年00月}              % 提交学位论文时间
\edate{Month Year}              % 英文提交学位论文时间

%% 作者中英文简介 % Deleted in 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}

%%%%%%%%%%%%%%%
%% 论文后置部分
%%%%%%%%%%%%%%%
\backmatter

%% 参考文献
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,refs}

%% 附录,建议放在参考文献之后,致谢与成果部分之前
\begin{appendix}
  \input{appendix01}  
\end{appendix}

%% 致谢
\input{acknowledgments}
%% 在学期间取得的成果
\input{achievements}


\end{document}

%%% Local Variables:
%%% TeX-master: t
%%% End:
%% ----------------------------------------------------------------------
%%% END OF FILE 
%% ----------------------------------------------------------------------