-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-pdfa.tex
48 lines (33 loc) · 1.01 KB
/
main-pdfa.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
\begin{filecontents*}{\jobname.xmpdata}
\Title{Thesis Title Line One Optional Second Line}
\Author{Adam Shen}
\Language{en-GB}
\Copyright{2021 Adam Shen}
\Copyrighted{True}
\end{filecontents*}
\documentclass[12pt,letterpaper]{report}
\usepackage{CU-thesis-pdfa}
\graphicspath{{./img/}} % Change as necessary
\newcommand{\thesistitleI}{Thesis Title Line One}
\newcommand{\thesistitleII}{Optional Second Line}
\newcommand{\myname}{Adam Shen}
\begin{document}
% To get list of algorithms into the TOC - from `algorithms` documentation
\renewcommand{\listofalgorithms}{\begingroup
\tocfile{List of Algorithms}{loa}
\endgroup}
\makeatletter
\let\l@algorithm\l@figure
\makeatother
% Compile specified chapters only
%\includeonly{ch0-frontmatter,ch1-introduction}
\pagenumbering{roman}
\include{ch0-frontmatter}
\pagenumbering{arabic}
\include{ch1-introduction}
\include{ch2-content}
\nocite{*}
\bibliographystyle{unsrtnat}
\bibliography{bibliography}
\label{endmainmatter} % For automatic counting of pages
\end{document}