-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
41 lines (31 loc) · 1.07 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
\documentclass[a4paper,oneside,12pt]{report}
\input{config}
\begin{document}
% Opening
\pagestyle{empty}
\pagenumbering{Alph}
\input{pages/cover}\cleardoublepage
% Pre-face
\pagestyle{fancy}\fancyhf{}\fancyfoot[RO,LE]{\thepage}
\pagenumbering{roman}
\input{pages/preface}\cleardoublepage
% Table of Contents
\input{pages/table-of-contents}\cleardoublepage
% List of standing
\input{pages/list-of-standing}\cleardoublepage
% Main contents
\pagenumbering{arabic}
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}}
\input{chapters/opening}
\addtocontents{toc}{\protect\setcounter{tocdepth}{2}}
\input{chapters/literature-review}\cleardoublepage
\input{chapters/build-the-api}\cleardoublepage
\input{chapters/design-ai-chatbot}\cleardoublepage
\input{chapters/experiment}\cleardoublepage
\input{chapters/concluding}\cleardoublepage
% References
\nocite{*}
\chapter*{Tài liệu tham khảo}
\printbibliography[keyword=vi,heading=subbibliography,title={Tài liệu tiếng Việt}]
\printbibliography[keyword=en,heading=subbibliography,title={Tài liệu tiếng Anh}]
\end{document}