-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathmyThesis.tex
111 lines (111 loc) · 3.39 KB
/
myThesis.tex
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
%%%%% ------------------------------------------------------------------------------------------
%%
%% Document Template
%%
%% Project Name: njustThesis
%% Repository: https://github.com/jiec827/njustThesis
%%
%%%%% ------------------------------------------------------------------------------------------
%% re-written by Jie Cheng <[email protected]>
%% Last-modified: 2015-01-05
%%
%% This program can be redistributed and/or modified under the terms
%% of the GNU Public License, version 2.
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%*************************Document Class Declaration*******************************
%%
\documentclass{sty/njustThesis}% thesis template of the Nanjing Univ of Sci & Tech
%% Options:
%% [draftinfo] % show draft version information
%%%%% --------------------------------------------------------------------------------
%%
%%%%**************************Command Define and Settings***************************
%%
\usepackage[njust]{sty/commons}% common settings
\usepackage{sty/custom}% user defined commands
%%%%% ------------------------------------------------------------------------------------------
%%%%*********************************Content**********************************************
%%
\begin{document}
%%
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%*********************************Frontmatter******************************************
%%
%% Frontmatter of Title page, Table of contents, Preface chapter.
%%
%% >>> Cover
%%
\input{tex/cover}
%%
%% >>> start frontmatter page No.
%%
\frontmatter
%%
%% >>> Abstract
%%
\input{tex/abstract}
%%
%%% >>> List of Content
%%
%\clearpage
\tableofcontents% contents catalog
\addcontentsline{toc}{chapter}{目录}
%% list figures and tables sperately
\listoffigures% figures catalog
%\addcontentsline{toc}{chapter}{插图目录}
\listoftables% tables catalog
%\addcontentsline{toc}{chapter}{表格目录}
%% list figures and tables together
%\listoffiguresandtables
%\addcontentsline{toc}{chapter}{图表目录}
%%
% {\centering\printnomenclature}% nomenclature catalog
% \addcontentsline{toc}{chapter}{术语表}
%%
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%*********************************Mainmatter******************************************
%%
%% Main topics.
\mainmatter
%%
%%% >>> Main Contents
%%
\input{tex/ch1-introduction}%
\input{tex/ch2-guide}%
\input{tex/ch3-texStructure}%
\input{tex/ch4-eqnFigAndTab}%
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%*********************************Appendix********************************************
%%
%% Some subordinate chapters.
\input{tex/appendix}%
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%********************************Backmatter*******************************************
%%
%% Matters of Bibliography, Glossary, Index.
\backmatter
%%
%%% >>> Acknowledgements
%%
\input{tex/thanks}
%%
%%% >>> Bibliography
%%
%\bibliographystyle{plainnat}
{\centering\bibliography{bib/myRefs}}%
%%
%%% >>> Publications
%%
\input{tex/publications}
%%
%%% >>> Resume
%%
\input{tex/resume}
%%
\end{document}
%%%%% ------------------------------------------------------------------------------------------