-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy paththesis.tex
More file actions
73 lines (59 loc) · 2.28 KB
/
thesis.tex
File metadata and controls
73 lines (59 loc) · 2.28 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
70
71
72
73
\newcommand*{\TeXturedVERSION}{1.5.0} %% TeXtured 2025-08-06
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% NOTE: If you find any issues or have any suggestions, please open %%
%% an Issue on GitHub: https://github.com/jdujava/TeXtured %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Enable built-in LaTeX support for PDF/A compliance (must be before `\documentclass`)
\DocumentMetadata{lang=en, pdfversion=1.7, pdfstandard=A-2u}
\input{preamble/pdfA-compliance/glyphtounicode}
%% NOTE: Choose the desirable page layout version (electronic vs print)
\documentclass[12pt,a4paper]{report} % single-side (electronic)
% \documentclass[12pt,a4paper,openright,twoside]{report} % two-sided (for printing)
%% Set some toggle flags to control some of the document properties
\input{preamble/toggles}
% \FANCYfalse % disable some of the more fancy stylistic choices
%% NOTE: Comment out the following lines for the final version
\WIPtrue % THIS IS A WORK-IN-PROGRESS VERSION
% \EXTRAMARGINtrue % add extra right margin in WIP version (for notes/corrections)
% \LINKBOXESfalse % disable reference/link boxes for faster compilations
\CENSORtrue % THIS IS A CENSORED VERSION
%% Preamble - data, packages, macros, and more
\input{preamble/main}
%% Only uncommented files are included (faster compilation)
%% NOTE: If no files are uncommented, all files are included
\includeonlysmart{
% frontmatter/title,
% frontmatter/declaration,
% frontmatter/dedication,
% frontmatter/information,
% chapters/Introduction,
% chapters/QuickSummary,
% chapters/Notation,
% chapters/Design,
% chapters/Usage,
% chapters/Features,
% chapters/Tips,
% chapters/Summary,
% chapters/Appendix,
}
\begin{document}
\frontmatter
\include{frontmatter/title}
% \include{frontmatter/declaration}
% \include{frontmatter/dedication}
% \include{frontmatter/information}
\contentsandlists
\include{chapters/Introduction}
\include{chapters/QuickSummary}
\include{chapters/Notation}
\mainmatter
\include{chapters/Design}
\include{chapters/Usage}
\include{chapters/Features}
\include{chapters/Tips}
\backmatter
\include{chapters/Summary}
\appendix
\include{chapters/Appendix}
\references
\end{document}