-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.tex
82 lines (55 loc) · 1.45 KB
/
report.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
\documentclass[hidelinks, 12pt]{article}
%% ----------- BEGIN VARIABLES ----------- %%
% Set course name
\newcommand{\aucoursename}{Course Name}
% Set report title
\newcommand{\aureporttitle}{Report Title}
% Set student names
\newcommand{\austudentslist}{%
Student Name 1 \\
Student Name 2%
}
% Set supervisor names
\newcommand{\ausupervisorslist}{%
Supervisor Name 1 \\
Supervisor Name 2%
}
% Set faculty name
\newcommand{\aufacultyname}{Faculty Name}
% Set department name
\newcommand{\audepartmentname}{Department Name}
%% ----------------- %%
%% ----------- END VARIABLES ----------- %%
% Include template preamble
\input{template/preamble}
\begin{document}
% Omit header and footer for titlepage, table of contents, list of symbols
\pagestyle{plain}
% Use capital roman numbering for titlepage, table of contents, list of symbols
\pagenumbering{Roman}
% Title page
\autitlepage
% Table of Contents
\autableofcontents
% List of Symbols
\aulistofsymbols
\pagestyle{fancy}
\pagenumbering{arabic}
%% ----------- BEGIN CONTENT ----------- %%
\ausection{01-a-section}
\ausection{02-yet-another-section}
%% ----------- END CONTENT ----------- %%
% Omit header and footer for bibliography and lists
\pagestyle{plain}
% Use lowercase roman numbering for bibliography and lists
\pagenumbering{roman}
% Bibliography
\aubibliography
% List of Figures
\aulistoffigures
% List of Tables
\aulistoftables
% List of Codes
\aulistoflistings
\end{document}
½