forked from TheNetAdmin/zjuthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zjuthesis.tex
172 lines (139 loc) · 4.58 KB
/
zjuthesis.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
% Zhejiang University Graduation Thesis/Design Template
% Author : Zixuan Wang
% Email : zxwang42 [at] gmail.com
% Update : https://github.com/TheNetAdmin/zjuthesis/releases
% Discussion : https://github.com/TheNetAdmin/zjuthesis/discussions
% Documents : https://thenetadmin.github.io/zjuthesis
% If you have trouble using this template, please:
% 1. First go through the online documentations mentioned above, to see if
% there're already solutions.
% 2. Go through GitHub Issue list, to see if there're discussions on similar
% problems
% 3. Open a GitHub Issue to discuss with developers
% 4. If you don't know how to use GitHub, you can send me an email
\documentclass[
% Debugging Settings
PrintFilePath = false, % print tex file path for each page
% Layout Settings
TwoSide = true, % set to false if don't need empty pages
% Thesis Info
StudentName = 姓名,
StudentID = 学号,
AdvisorName = 指导教师,
Grade = 2014, % only the year, no '级'
Major = 专业,
Department = 学院,
SubmitDate = 递交日期,
MajorFormat = general,
Degree = undergraduate, % 'undergraduate' or 'graduate'
Type = thesis, % 'thesis' or 'design'
Period = final, % 'proposal' or 'paper' or 'final'
BlindReview = false, % 'false' or 'true'
Language = chinese, % 'chinese' or 'english'
% Graduate Thesis Info
GradLevel = master, % 'master' or 'doctor'
Topic = 研究方向,
ColaboratorName = 合作导师,
% Title
Title = 毕业论文/设计题目,
TitleEng = {{Graduation Thesis Title}}
]{zjuthesis}
%% Uncomment the following lines if you need multi line titles on cover pages
% \titletwolines{毕业论文题目第一行}{毕业论文题目第二行}
% \titleengtwolines{English Title Line One}{English Title Line Two}
%% Uncomment the following lines if you need multi line department names on cover pages
% \departmenttwolines{学院名第一行}{学院名第二行}
\newcommand{\inputundergraduate}
{
\ifthenelse{\equal{\Period}{final}}
{
% Final thesis
% Final part
\newcommand{\undergradcurrstage}{final}
\newrefsection
\coverstyle
\inputpage{final/cover}
\prevstyle
\inputpage{final/previous}
\inputpage{final/toc}
\bodystyle
\cleardoublepage
\ifthenelse{\equal{\Type}{design}}
{\part{毕业设计}}
{\part{毕业论文}}
\inputbody{final/content}
\inputbody{final/post}
\poststyle
\inputpage{final/post}
% Proposal part
\renewcommand{\undergradcurrstage}{proposal}
\newrefsection
\coverstyle
\cleardoublepage
\ifthenelse{\equal{\Type}{design}}
{\part{毕业设计开题报告}}
{\part{毕业论文开题报告}}
\inputpage{proposal/cover}
\inputpage{proposal/previous}
\bodystyle
\inputbody{proposal/content}
\poststyle
\inputpage{proposal/post}
}
\ifthenelse{\equal{\Period}{proposal}}
{
% Thesis proposal
\newcommand{\undergradcurrstage}{proposal}
\coverstyle
\inputpage{proposal/cover}
% 'proposal' previous part uses 'empty' page style,
% as shown in cs undergrad template.
\inputpage{proposal/previous}
\prevstyle
\inputpage{proposal/toc}
\bodystyle
\inputbody{proposal/content}
\poststyle
\inputpage{proposal/post}
}
\ifthenelse{\equal{\Period}{paper}}
{
% paper only part
\newcommand{\undergradcurrstage}{paper}
\newrefsection
\coverstyle
\inputpage{final/cover}
\prevstyle
\inputpage{final/previous}
\inputpage{final/toc}
\bodystyle
\cleardoublepage
\inputbody{final/content}
\inputbody{final/post}
\poststyle
\inputpage{final/post}
}
}
\newcommand{\inputgraduate}
{
\coverstyle
\inputpage{cover}
\prevstyle
\inputpage{previous}
\inputpage{toc}
% Main contents
\bodystyle
\inputbody{content}
% Post part
\poststyle
\inputbody{post}
}
\begin{document}
\ifthenelse{\equal{\Degree}{undergraduate}}
{
\inputundergraduate{}
}
{
\inputgraduate{}
}
\end{document}