-
Notifications
You must be signed in to change notification settings - Fork 7
/
root.tex
91 lines (70 loc) · 2.08 KB
/
root.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
83
84
85
86
87
88
89
90
91
\documentclass[12pt]{report}
% You will have to call this as
%
% pdflatex root.tex
% pdflatex root.tex
% biber root
% pdflatex root.tex
%
% If you use Texmaker or Texstudio, under "Configure Tex(*)/Commands/Bib(la)tex" put "biber %"
%
%
%
%
%
% riboch, 2017-01-28
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Helper files
\include{DocumentSetup}
\include{CommandLibrary}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Front Page material
\title{Whatever-You-Want-To-Call-It Logbook}
\author{riboch}
\usepackage{datetime} %So that I can put the date of the most recent compile.
\yyyymmdddate
\renewcommand{\dateseparator}{}
\date{\today-\currenttime}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Bibliography
\usepackage[backend=biber,style=numeric,doi=false,isbn=false,url=false,sorting=none]{biblatex}
\addbibresource{Citations/Citations.bib}%
\addbibresource{Citations/Citations-Books.bib}%
%Annotated bibliography
\renewbibmacro*{finentry}{%
\setunit{\addperiod\newline \textbf{Annotation:} }%
\printfield{annotation}%
\finentry}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
\tableofcontents
%Run Organization_Dates.sh first, then copy the contents of LOOKATME.txt
\include{2017/2017}
%\include{2018/2018}
%\include{2019/2019}
%\include{2020/2020}
\part{Projects}
\input{Projects/Projects}
\part{End Matter}
\begin{appendices}
\input{PaperNotes/PaperNotes}
\input{Derivations/Derivations}
\input{TopicNotes/TopicNotes}
\end{appendices}
%Bibliography
\clearpage
\addcontentsline{toc}{chapter}{Bibliography}
\nocite{*}%Gets all the citations
\printbibliography
%\input{Glossary}
%\glsaddall
%\glossarystyle{altlistgroup}
%\printglossaries
\clearpage
\printindex
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%