forked from lusergit/thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis.tex
More file actions
33 lines (27 loc) · 640 Bytes
/
Copy paththesis.tex
File metadata and controls
33 lines (27 loc) · 640 Bytes
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
\documentclass[
10pt, % fontsize
twoside, % symmetric pagination, for digital view
% oneside, % asymmetric pagination, for a nice printed version
a4paper, %
english, %
tikz, % to build images
openright, % start chapters on odd-numbered pages
]{book}
\usepackage{preamble}
\usepackage{graphicx}
\graphicspath{ {./images/} }
\begin{document}
%% config && title page
\frontmatter
\import{./config/}{mod}
\import{./src/intro/}{mod}
%% TOC
\cleardoublepage
\tableofcontents
%% Structure
\cleardoublepage
\mainmatter
\import{./src/chapters/}{mod}
\backmatter
\import{./src/outro/}{mod}
\end{document}