summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/xelatex/technion-thesis-template/Example/main.tex
blob: 445a10712c6adc27454f0e393b4c898e04dad31f (plain)
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
\documentclass[hyperref,publist,addack,firstparindent]{technionThesis}
% OPTIONS: 
% hyperref          Add hyperlinks
% publist           Add a list of publications in the front pages (update list in thesissetup.sty)
% addack            Add an acknowledgments page (only for final version!)
% advisement        Use `advisement' instead of `supervision' in front pages 
% spacepar          Add a blank line between paragraphs
% firstparindent    Indent the first paragraph of a chapter/section
% libertine         Use libertine as the main document font rather than computer modern roman

% Define your own data in the following file
\usepackage{technionThesisSetup}

% Use the following file to define your own macros
\usepackage{technionThesisMacros} 

% For generating dummy text. Remove from your version.
\usepackage{lipsum}


\begin{document}
% FRONT PAGES:
\makeTitleEnglish

\chapter{Abstract}
\input{abstract} \clearpage
\input{abbrev}   \cleardoublepage

% Each of the following should begin with \chapter{...}. 
\include{introduction}
\include{chapfirst}
\include{chapsecond}
% Add more chapters as required. 
% In a thesis, there must be a discussion/conclusions section
\include{discussion}
% An appendix must appear AFTER the discussion. 
\begin{appendices} % Set appendix numbering
    \include{appendix}
\end{appendices}


% Setup the bibliography
\bstctlcite{BIBctrl}
\bibliographystyle{IEEEtranS} 
\bibliography{mybib.bib} 
\clearpage

% HEBREW SECTION
\makeTitleHebrew
\end{document}