-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
67 lines (51 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
\documentclass[openright,twoside]{iitkthesis}
% =========================================================================== %
% Preamble
\include{preamble/packages}
\include{preamble/format}
\include{preamble/macro}
\include{preamble/shortcuts}
% \bibliography{citations}
\graphicspath{{graphics/}}
% End of Preamble
% =========================================================================== %
\begin{document}
% =========================================================================== %
% Include the prelude for title page, abstract, table of contents, etc
% You need to modify it to contain your details
\include{prelude}
% =========================================================================== %
% Include the technical part of the report
\input{chapters/introduction}
\input{chapters/technical}
\input{chapters/applications}
\input{chapters/related}
\input{chapters/conclusions}
% =========================================================================== %
% PUBLICATIONS
% Put publications in publications.bib, edit style in publications.tex
% Make generates publications.bbl first and includes it here
\cleardoublepage
\phantomsection \label{listofpub}
\addcontentsline{toc}{chapter}{Publications}
\renewcommand\bibname{Publications}
\input{publications.bbl}
% =========================================================================== %
% CITATIONS
\begin{singlespace}
\cleardoublepage
\phantomsection \label{listofref}
\addcontentsline{toc}{chapter}{References}
\renewcommand\bibname{References}
% \printbibliography
\bibliographystyle{apalike}
\bibliography{citations}
\nocite{*}
\end{singlespace}
% =========================================================================== %
% APPENDIX
% Appendices, if any, must precede the cited literatures.
% Appendices shall be numbered in Roman Capitals (e.g. Appendix IV)
%% \appendix
%% \include{appendix_something}
\end{document}