-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.tex
69 lines (59 loc) · 1.21 KB
/
book.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
\documentclass{memoir}
\usepackage{graphics}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{makeidx}
\usepackage[acronym,toc]{glossaries}
\usepackage{longtable}
\usepackage{todonotes}
\usepackage{multicol}
\usepackage{fontspec}
\lstset{
basicstyle=\footnotesize \ttfamily,
breakatwhitespace=true,
breaklines=true,
frame=single,
keywordstyle=\color{blue},
numbers=left,
numberstyle=\tiny\color{gray},
}
\makeindex
\makeglossaries
\title{Title of the Book}
\date{2020-12-13}
\author{Your Name}
\stockaiv
\begin{document}
\include{data/acronyms}
\include{data/glossary}
\frontmatter
\pagenumbering{roman}
\maketitle
\newpage
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\newpage
\lstlistoflistings
\include{chapters/preface}
\mainmatter
\part{Introduction}
\include{chapters/part1/chapter1}
\include{chapters/part1/chapter2}
\part{Integration}
%\include{chapters/part2/chapter3}
%\include{chapters/part2/chapter4}
\appendix
\part{Appendix}
\include{chapters/appendix/appendix1}
\include{chapters/appendix/appendix2}
\backmatter
\printglossary[type=\acronymtype]
\printglossary
\bibliographystyle{ieeetr}
\bibliography{data/book}
\printindex
\end{document}