summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/xduthesis/examples/thesis-bachelor.tex
blob: 50f8a036a0b5078f7c149f4487afc20c4d3d5e8a (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
%% ----------------------------------------------------------------------
%% START OF FILE
%% ----------------------------------------------------------------------
%% 
%% Filename: thesis-bachelor.tex
%% Author: Fred Qi
%% Created: 2008-06-25 11:13:31(+0800)
%% 
%% ----------------------------------------------------------------------
%%% CHANGE LOG
%% ----------------------------------------------------------------------
%% Last-Updated: 2016-02-09 14:49:44(-0700) [by Fred Qi]
%%     Update #: 123
%% ----------------------------------------------------------------------
\documentclass[bachelor,print]{xduthesis}

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

\begin{document}

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

% 论文相关信息(封面)
\classid{000000}
\studentid{00000000}

\cschool{某某某某学院}
\ctitle{论文题目}
\cauthor{作者姓名}
\cmajor{专业名称}
\csupervisor{某某某~教授}

% 中英文摘要声明
\input{abstract}

% 生成论文的封面、声明页、中英文摘要
\makecover

% 论文目录
\tableofcontents

%%%%%%%%%%%%%%%
%% 论文正文
%%%%%%%%%%%%%%%
\mainmatter

\input{ch01-intro}
\input{ch02-options}
\input{ch03-frontmatter}
\input{ch04-mainmatter}
\input{ch05-backmatter}
\input{ch06-bibliography}
\input{ch07-conclusions}

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

%% 插图索引
% \listoffigures
%% 表格索引
% \listoftables

% 参考文献
\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 
%% ----------------------------------------------------------------------