-
Notifications
You must be signed in to change notification settings - Fork 0
/
ebookbook.tex
38 lines (26 loc) · 933 Bytes
/
ebookbook.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This file is the "main" or root file for the book. It describes what packages
% and content should be included in what order.
\documentclass[pagesize=auto,bibliography=totocnumbered]{scrbook}
\input{lib/packages}
\input{lib/commands}
% This line stops the insertion of extra blank pages between chapters.
\ifdefined\HCode{\KOMAoptions{twoside=false}} \fi
\begin{document}
% Title and author are written down in the cover_page.tex file, and author
% appears also as an argument to the ebook-convert command in the build.sh file.
\input{cover_page.tex}
\tableofcontents
\nextpage
\input{chapters/introduction}
\input{chapters/lattice}
\input{chapters/zkp}
\input{chapters/mpc}
\input{chapters/qcomplexity}
\nextpage
% After the \backmatter command, sections will not be numbered.
\backmatter
\input{author}
\bibliographystyle{apalike}
\bibliography{bibliography.bib}
\end{document}