
Template for bachelor or master thesis in german or english at ETH department DUSYS

% http://www.idsc.ethz.ch/education/theses-semester-projects.html
% IDSC LaTeX Thesis Template
% 
% Author(s):	Eric Müller
% 				Institute for Dynamic Systems and Control
% 				Swiss Federal Institute of Technology (ETH) Zurich
% 
% Created:		2004/04/02  (Eric Mueller)
% 
% Notes: Has been tested on Windows 7 + MikTeX + TeXnicCenter
%
% Revisions: 	2009/05/29  (Soren Ebbesen)
% 				    2011/03/22	(Soren Ebbesen)
%             2013/03/08	(Soren Ebbesen)
%             2014/03/13	(Soren Ebbesen)
% ______________________________________________________________________________
\documentclass[12pt,twoside,a4paper,fleqn]{report}
\usepackage{siunitx}
\usepackage[onehalfspacing]{setspace}
%\usepackage{lineno}\linenumbers
% CHANGE HERE FOR GERMAN (german) OR MASTER THESIS (mt)!!!!!
\usepackage[english,bt]{ethidsc} % Special IDSC styles and commands      	
								 % {german}/english: language of headings, etc.
								 % {st}/bt/mt: {semester}/bachelor/master thesis
							
% Page header (don't change)____________________________________________________
\setlength{\parindent}{0em}                 % Disable parindent
\rhead[\nouppercase{\rightmark}]{\thepage}  % Special headings
\lhead[\thepage]{\nouppercase{\leftmark}}   % Special headings
\cfoot{}                                    % Special headings
% Title page (please fill in)___________________________________________________
\title{Title of the Thesis}
\studentA{Name Surname}
\ethidA{20-000-00}
\semesterA{6}
\emailA{someone@student.ethz.ch}
%\studentB{Second Student}
%\ethidB{12-345-678}
%\semesterB{9}
%\emailB{second@student.ethz.ch}
\supervision{Prof. Dr. Superviser}
\date{March 10, 2023}
%\identification{IDSC-XX-YY-ZZ} 		% Project identifier
\infopage
\declaration
% Begin document________________________________________________________________
\begin{document}
\maketitle 							% Create title page
% Preamble______________________________________________________________________
\pagenumbering{roman} 				% Begin roman page numbering (i,ii,...)
\input{chapters/preamble} %Abstract etc.
% Chapters______________________________________________________________________
\pagestyle{fancy}               	% Fancy headings
\pagenumbering{arabic}				% Begin arabic page numbering (1,2,...)
\setlength{\parindent}{20pt}
%\input{chapters/tables}
\input{chapters/1_introduction}
\cleardoublepage
\input{chapters/2_methods}
\cleardoublepage
\input{chapters/3_results}
\cleardoublepage
\input{chapters/4_discussion}
\cleardoublepage
\input{chapters/5_conclusion}
\cleardoublepage
% ...
% Appendix______________________________________________________________________
\appendix
\input{chapters/appendix}
% Bibliography__________________________________________________________________
% Literature (Additional references can be added to the .bib-file manually, or by using, for example, the free application JabRef). Compile in the following order: latex -bibtex -latex -latex
%\bibliographystyle{plain}
\begin{footnotesize}
\bibliographystyle{apalike}
\bibliography{references}
\end{footnotesize}
\end{document}