Skip to content
Snippets Groups Projects
thesis_bachelor_english.tex 5.67 KiB
Newer Older
User expired's avatar
User expired committed
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Bachelor and Master Thesis Template
% Research Group Databases and Information Systems
% University of Innsbruck
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% define document class
\documentclass[11pt,a4paper,titlepage, twoside]{report}

% include required packages
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage[english,ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage{appendix}

% % use abbrv-bibliography style
\bibliographystyle{abbrv}

% specify margins for two-sided print
\oddsidemargin 3cm
\evensidemargin 1cm
\textwidth 12cm


% define header format
\fancyhead{}
\fancyhead[LE,RO]{\leftmark}
\fancyfoot[LO, RE]{Name1, Name2}
\fancyfoot[RO, LE]{\thepage}
\fancyfoot[CE, CO]{}
\headheight 26pt
\renewcommand{\headrulewidth}{0.3pt}
\renewcommand{\footrulewidth}{0.3pt}

% define style for appendix header
\newcommand{\appendixheader}{ % specify header for appendix
    \fancyhf{}
    \fancyhead[LE, RO]{APPENDIX \rightmark}
    \fancyfoot[LO, RE]{Name 1, Name 2}
    \fancyfoot[RO, LE]{\thepage}
}

% code for creating empty pages
% no headers on empty pages before new chapter
\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
    \hbox{}
    \thispagestyle{empty}
    \newpage
    \if@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother \clearpage{\pagestyle{empty}\cleardoublepage}

\begin{document}
\parindent 0cm 


%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% TITELSEITE
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

\begin{titlepage}

\begin{center}
% insert university logo
\includegraphics[height=40mm]{uni_2017.eps} \\[3mm]
\vspace{1cm}

\begin{large}
Universität Innsbruck\\[5mm]
Department of Computer Science\\
Databases and Information Systems\\[25mm]
\end{large}

\begin{LARGE}Title\\ \end{LARGE}
\begin{footnotesize}Bachelor Thesis\end{footnotesize}\\[15mm]

Student Name \\ Student Name\\[30mm]


supervised by\\
Prof. Dr. G\"{u}nther Specht\\[10mm]


\begin{footnotesize}Innsbruck, \today \end{footnotesize}
\end{center}
\end{titlepage}




%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% ABSTRACT / ZUSAMMENFASSUNG
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
\cleardoublepage
\thispagestyle{empty}
\selectlanguage{ngerman}
\section*{Eidesstattliche Erklärung}
Ich erkläre hiermit an Eides statt durch meine eigenhändige Unterschrift, dass ich die vorliegende Arbeit selbständig verfasst und keine anderen als die angegebenen Quellen und Hilfsmittel verwendet habe.
Alle Stellen, die wörtlich oder inhaltlich den angegebenen Quellen entnommen wurden, sind als solche kenntlich gemacht.\\

Ich erkläre mich mit der Archivierung der vorliegenden Bachelorarbeit einverstanden.\\[3cm]
\begin{minipage}{0.4\textwidth}
  \centering
  \rule{\textwidth}{.4pt}\\
  Datum
\end{minipage}%
\hfill%
\begin{minipage}{0.4\textwidth}
  \centering
  \rule{\textwidth}{.4pt}\\
  Unterschrift 
\end{minipage}
\selectlanguage{english}
\cleardoublepage

\thispagestyle{plain}
\pagenumbering{Roman}
\selectlanguage{ngerman}
\begin{abstract}
  Dies ist die deutsche Zusammenfassung.
\end{abstract}
\selectlanguage{english}
\cleardoublepage
\begin{abstract}
  This is the English abstract.
\end{abstract}



%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% DANKSAGUNG
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
%\cleardoublepage
%\thispagestyle{plain}
%\chapter*{Acknowledgements}



%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% INHALTSVERZEICHNIS
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
\cleardoublepage
\pagestyle{fancy}
\tableofcontents 

%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% CHAPTER 1 
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

% chapter starts on right side
\cleardoublepage

\chapter{Introduction}

% change numbering to normal format, set page counter to 1
\pagenumbering{arabic}
\setcounter{page}{1}


%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% CHAPTER 2
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
\cleardoublepage
\chapter{Chaptername 2}


%-------------------------------------
% SECTION
%-------------------------------------
\section{Section}

\subsection{Subsection}



%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% APPENDIX A
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
\cleardoublepage
\appendixheader

% reset counter for section numbering
\setcounter{section}{0}
\setcounter{chapter}{0}
% redefine numbering of sections to A.x
\renewcommand{\thesection}{A.\arabic{section}}
\renewcommand{\thechapter}{A}



\chapter*{Appendix}  % use *-form to suppress numbering
\addcontentsline{toc}{chapter}{Appendix}
% reset counter for section numbering
\setcounter{section}{0}
\setcounter{chapter}{0}
% redefine numbering of sections to A.x
\renewcommand{\thesection}{A.\arabic{section}}
\renewcommand{\thechapter}{A}  


\section{Subsection Appendix}

%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% BIBLIOGRAPHY
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
\cleardoublepage
\nocite{*}
\bibliography{lit}
\addcontentsline{toc}{chapter}{Bibliography}

\end{document}