-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathThesis-main.tex
142 lines (105 loc) · 3.17 KB
/
Thesis-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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
\documentclass[12pt,english,twoside]{report}
\usepackage{mathptmx}
\renewcommand{\familydefault}{\rmdefault}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage[a4paper]{geometry}
\setcounter{secnumdepth}{2} % Changed from 3 to 2. 0-chapter 1-section 2-subsection
\setcounter{tocdepth}{2} % Changed from 3 to 2. 0-chapter 1-section 2-subsection
\setlength{\parskip}{\medskipamount}
\setlength{\parindent}{0pt}
\usepackage{verbatim}
\usepackage{pdfpages}
\usepackage{graphicx}
\usepackage{subfig} %% This package has to be here
%Packages Added By George
\usepackage{setspace}
\usepackage{arabtex}
\usepackage[numbers]{natbib}
\usepackage{nomencl}
\usepackage{paralist}
\usepackage[linesnumbered]{algorithm2e}
\usepackage{color}
\usepackage{amsthm}
\usepackage[cmex10]{amsmath}
\usepackage{bbold}
\usepackage{multirow}
\usepackage{dsfont}
\usepackage{booktabs}
\usepackage{eufrak}
\usepackage{amssymb}
% Theorem Styles
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
% Definition Styles
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\newtheorem{example}{Example}[section]
\theoremstyle{remark}
\newtheorem{remark}{Remark}
\usepackage{etoolbox}
\newtoggle{edit-mode}
\togglefalse{edit-mode}
%\toggletrue{edit-mode}
% the following is useful when we have the old nomencl.sty package
\providecommand{\printnomenclature}{\printglossary}
\providecommand{\makenomenclature}{\makeglossary}
\makenomenclature
\doublespacing
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage{tauthesis}
\iftoggle{edit-mode}{
\geometry{verbose,tmargin=2cm,bmargin=2cm,lmargin=2cm,rmargin=6cm,headheight=1cm,headsep=1cm,footskip=1cm, marginparwidth=5cm}
}
\usepackage[font={small,bf}, labelfont={small,bf}, margin=1cm]{caption}
\usepackage{titlesec}
\newcommand{\hsp}{\hspace{20pt}}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\thechapter\hsp}{0pt}{\Huge\bfseries}
\University{Tel Aviv University}
\Faculty{The Iby and Aladar Fleischman Faculty of Engineering}
\School{The Zandman-Slaner School of Graduate Studies}
\Department {Department of Electrical Engineering - Systems}
\Title{\textbf{ \uppercase {<Thesis Title>}}}
\Degree{Master of Science in Engineering}
\Author{<Your name>}
\Year{<September 2014>}
\Supervisor{<Prof. first supervisor]>}
\SecondSupervisor{<Dr. second Supervisor>}
\makeatother
\usepackage{babel}
\begin{document}
\pagenumbering{gobble}
\titlepage
\secondtitlepage
\dedication{\textbf{\emph{To my whomever, \\
for being whatever}}}
\include{acknowledge}
\cleardoublepage
\pagenumbering{roman}
\setcounter{page}{1} % Start preliminary pages numbering (roman numerals).
\include{abstract}
\tableofcontents{}
\cleardoublepage
\addcontentsline{toc}{chapter}{Nomenclature}
\printnomenclature
\cleardoublepage
\listoffigures
\cleardoublepage
\listoftables
\textpages
\include{introduction}
\include{chapter1}
\include{chapter2}
\bibliographystyle{plainnat}
\bibliography{references}
\appendix
\include{appendix}
\cleardoublepage
\newpage
\thispagestyle{empty}
\mbox{}
\includepdf[pages=-]{hebrew_part}
\end{document}