forked from namvo88/Thesis-Quadrotor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmscThesisInitial.tex
179 lines (140 loc) · 5.16 KB
/
mscThesisInitial.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
\documentclass[a4paper,11pt]{mscThesis}
%
\mscDepartment{Delft Center for Systems and Control}
%{Systems and Control}
\mscProgram{Mechanical Engineering} \mscFaculty{Mechanical,
Maritime and Materials Engineering} \mscName{M.Y. Last Name}
\mscDate{\today} \mscTitle{Title} \mscSubTitle{Subtitle}
\mscKeyWords{thesis, msc, subject}
%
%use the next line if you want a picture on the title page
\mscTitlePagePicture{example_titlefig}
%Note: the file example_titlefig.eps is just for illustration. Do not use this for your own thesis
%% --------------------------------------------------------------------
%% THIRD PARTY OPTIONS
%use the next line if you want a text to acknowledge (a) third party/parties on the copyright page
\mscThirdPartyText{The work in this thesis was supported by Aquaduct
Swimming Supplies. Their cooperation is hereby gratefully
acknowledged}
%use the next line if you want the logo of a third party on the copyright page
%NOTE: on the title page only the TUDelft and DCSC logo's are permitted. These are automatically created
\mscThirdPartyLogo{examplelogo}
%Note: the file examplelogo.eps is just for illustration. Do not use this for your own thesis
%% --------------------------------------------------------------------
\mscReaderOne{dr.prof.ir. My. Supervisor}
\mscReaderTwo{dr.ir. My. Reader}
%\mscReaderThree{ir. My. Readertwo}
%\mscReaderFour{}
%
\setThesisInfo
%
\begin{document}
%
%============================= Front matter ========================================
\frontmatter %
%
% Make a hell of a lot of title pages
\maketitle
%
% Abstract
\nonumchap{Abstract}
This is an abstract
\cleardoublepage
%
% Acknowledgements
\nonumchap{Acknowledgements}%
I would like to thank my supervisor \mscreaderone\ for his assistance during the writing
of this thesis. \ldots
\vspace*{15mm}
\noindent
Delft, University of Technology \hfill \mscname\\
\mscdate
%
% table of contents, (\toc of \toclof of \tocloflot )
\tocloflot
%
% Nomenclature
\printnomencl %
%
% Acronyms
\nonumchap{Acronyms} %
%
\begin{acronym}[XXXXX]% Note: replace XXXXX by the longest acronym
% in your list.
\acro{DUT}{Delft University of Technology}%
\end{acronym}%
%
\cleardoublepage%
%
% Index
\printindex%
\cleardoublepage%
%
%============================= Main matter =========================================
%
\mainmatter
%
% Introduction
\chapter{Introduction} \label{chap::intro}
This is a \LaTeX thesis and this is Chapter\ \ref{chap::intro}.
If you want to know more about \LaTeX you better read
\cite{texbook}.\index{LaTeX} It contains an acronym
of the \ac{DUT}. The \ac{DUT} is our University.
\cleardoublepage
%
% First Part
\part{First Part}
\chapter{First Real Chapter}
This is real chapter for \ac{DUT}, ok? I will explain everything about \gsymb{$\gamma$}{Path Angle}. Next, everything
will be explained about the transfer function \lsymb{$H(s)$}{Transfer function}. Also, subscripts and can
superscripts can be put in the nomenclature \index{nomenclature} list. \supers{max}{Maximum} \subs{min}{Minimum} Other things can also
be added to the nomenclature list of \ac{DUT}. \others{[kts]}{Knots} \others{$^{\circ}$, [deg]}{Degrees}
\section{First section}
This is the section. Referring to equations, figures and tables can easily be done by the commands \verb"\eqnref{}",
\verb"\figref{}" and \verb"\tabref{}".
\begin{equation}\label{eq:First}
H(s) = \frac{1}{s+2}
\end{equation}
You see? Refer to equations like this \eqnref{eq:First}.
\subsection{The first subsection}
\subsubsection[Subsection Short Title]{The first sub-subsection with a very very very long title, but in the table of contents one can only see the short title}
Nice, ain't it?\index{Nice}
\paragraph{A paragraph.}
\part{Second part}
\chapter{Second part chapter}
\begin{figure}
\caption{this is a very long line to test if the table of
figures will wrap the line or will continue to go over the
border of the page}
\end{figure}
\chapter{TEMP second part chapter this is a very long line to test if the table of
figures will wrap the line or will continue to go over the
border of the page}
New chapter gives a full acronym \ac{DUT}.
\begin{eqnarray}
% \nonumber to remove numbering (before each equation)
1 &=& 2\\
x &=& 5 \\
y &=& \theta
\end{eqnarray}
\chapter{Second second part chapter}
This is a test for nomenclature \lsymb{$A(s)$}{Answer function}
%
%
% Biblio
\bibliographystyle{apalike}
\printbib{MyBib}
%============================= Back matter =========================================
\appendix
\chapter{The back of the thesis}
\section{An appendix section}
\subsection{An appendix subsection with C++ Listing}
\lstset{language=C++}
\lstinputlisting{test.c}
\subsection{A \matlab Listing}
\lstset{language=matlab}
\lstinputlisting{test.m}
\chapter{Yet another appendix}
\section{Test section (again?)}
Ok, all is well.
\end{document}