forked from Nepomuk/LaTeX-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.tex
More file actions
69 lines (49 loc) · 1.98 KB
/
template.tex
File metadata and controls
69 lines (49 loc) · 1.98 KB
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
%!TEX program = xelatex
% ======================================================= %
% Random Thesis of super-cool author %
% %
% Structure: %
% template.tex (main file) %
% - _preamble.tex (load packages) %
% - _settings.tex (basic configuration) %
% - _newcommands.tex (custom commands) %
% - 1 - Introduction/ (chapters in subdirectories) %
% - 2 - ... %
% - %
% %
% ======================================================= %
% draft or final?
\newcommand{\status}{draft}
% The most general information for this document
\newcommand{\Title}{An article about the correlation of random words with the behavior of alpha male gorillas.}
\newcommand{\Author}{The Doctor}
\newcommand{\keywords}{LaTeX, template, Sublime Text 2, keyword, unicorns}
% load the general configuration
\input{_preamble}
\input{_settings}
\input{_newcommands}
% -------------------------------------------------- %
% title, TOC, ... %
% -------------------------------------------------- %
% begin the document
\begin{document}
\frontmatter
% the title page
\input{_titlepage}
% table of contents
\tableofcontents*
\newpage
% -------------------------------------------------- %
% the main content %
% -------------------------------------------------- %
\mainmatter
\chapter{Introduction}
\label{s:introduction}
\input{1_Introduction/Introduction}
\chapter{Unicorns}
\input{2_Unicorns/Unicorns}
% -------------------------------------------------- %
% appendix and stuff %
% -------------------------------------------------- %
\backmatter
\end{document}