-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
53 lines (47 loc) · 1.42 KB
/
main.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
% !TEX TS-program = lualatex
\documentclass[12pt,openany]{book}
%TC:ignore
% This is all the packages and settings and so on.
% It is using custom fonts that needs to be installed on the computer. If they are not present, they have to be added manually.
\input{setup/settings.tex}
% \AtBeginBibliography{\small}
% Defining files for bibliography
\addbibresource{references.bib}
% Add a second bibliography file for the second author to allow
% both to update it through the mendeley integration.
% \addbibresource{ref-author-2.bib}
% Defining document information
\title{Optimal Gait Control of Soft Quadruped Robot by Model-based Reinforcement Learning}
\author{NIU Xuezhi}
\begin{document}
\setstretch{1.25}
% The front page of the document
\pagenumbering{Roman}
\include{setup/title-page}
\pagestyle{myempty}
\include{sections/0-pre-content}
%TC:endignore
\setstretch{1.25}
\pagestyle{myfancy}
% \include{requirements}
\pagenumbering{arabic}
\include{sections/1-introduction}
\include{sections/2-background}
\include{sections/3-method}
\include{sections/4-work}
\include{sections/5-results}
\include{sections/6-conclusions}
% \include{content}
%TC:ignore
\newpage
% \addcontentsline{toc}{chapter}{References}
% \thispagestyle{plain}
% \setstretch{0.75}
% \fontsize{5}{0}
% \setlength\bibitemsep{0pt}
\printbibliography[heading=bibintoc]
% \setstretch{1.25}
\include{sections/appendices}
\include{setup/back-cover}
%TC:endignore
\end{document}