LCL Thesis Template 2024
Author
Bernardo Puente, Joachim Arts, Bonn Kleiford
Last Updated
9ヶ月前
License
Creative Commons CC BY 4.0
Abstract
This is the template to write a thesis for the LCL
\documentclass[12pt,twoside]{article}
%Packages
\usepackage[utf8]{inputenc}
\usepackage[dutch, english]{babel}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{enumerate}
\usepackage{enumitem}
\usepackage{tabularx,booktabs,mathrsfs,setspace}%
\usepackage{soul}
\usepackage{mathtools}
\usepackage{enumerate}
\usepackage{nicefrac}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{tikz}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[a4paper,top=20mm,bottom=20mm,left=20mm,right=20mm]{geometry}
\renewcommand{\baselinestretch}{1.5}
\definecolor{brightmaroon}{rgb}{0.76, 0.13, 0.28}
\usepackage{titlesec}
\usepackage{natbib}
\bibpunct[, ]{(}{)}{,}{a}{}{,}%
\def\bibfont{\small}%
\def\bibsep{\smallskipamount}%
\def\bibhang{24pt}%
\usepackage{breqn}
\def\newblock{\ }%
\def\BIBand{and}%?
\usepackage{bigstrut}
\usepackage{multirow}
\usepackage{dsfont}
\usepackage{makecell}
\usepackage{enumitem}
\setlist{nolistsep}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{makecell}
\usepackage{multirow}
\usepackage{adjustbox}
\usepackage{float}
\usepackage[title,toc,titletoc,page]{appendix}
\usepackage[nottoc]{tocbibind}
\DeclareMathOperator*{\argmax}{arg\,max}
\DeclareMathOperator*{\argmin}{arg\,min}
\newtheorem{theorem}{Theorem}
\newtheorem{definition}{Definition}
\newtheorem{proposition}{Proposition}
\newtheorem{lemma}{Lemma}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{positioning}
\usetikzlibrary{calc}
\usetikzlibrary{fit}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{decorations.pathreplacing}
\usetikzlibrary{quotes}
\usepackage{graphicx}
\graphicspath{{images/}}
\begin{document}
\input{titlepage}
\pagenumbering{roman}
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\newpage
\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{}[{\color{brightmaroon}\titlerule[0.8pt]}]
\pagenumbering{arabic}
\section{Executive summary}
Do not forget that this needs to be included. Check the thesis handbook for details!!!
\section{This could be your introduction}
Text with citation according to~\cite{Ref1}.
\subsection{Is your thesis interesting and relevant?}
Text
\subsection{What questions do you address and how?}
Text
\subsection{How is it structured?}
Text
\section{A next section}
\subsection{With one subsection}
All of this is summarized in Figure~\ref{fig:LSCM}.
\begin{figure}[htbp!]
\centering
\includegraphics[width=0.3\linewidth]{images/LSCM.jpg}
%\caption{case 3: combined situation}
\caption{Features of the LSCM study program}
\label{fig:LSCM}
\end{figure}
\subsection{And another subsection}
Table~\ref{tab:table1} is a cool table. Avoid too fancy formatting and focus on clear, easy to read and focused information in a table. Do not forget that you may use appendices to add extensive information that exceeds the limit one wants to put in a table in the body of text.
\begin{table}[htp!]
\centering
\caption{A clean table is a nice thing}
\label{tab:table1}
\begin{tabular}{@{}ccc@{}}
\toprule
First Column & Second Column & Third Column \\ \midrule
Text & Text & Text \\
Text & Text & Text \\
Text & Text & Text \\ \bottomrule
\end{tabular}
\end{table}
\section{Yet another section}
\section{Conclude your thesis with conclusions}
\newpage
%% The Appendices part is started with the command \appendix;
%% appendix sections are then done as normal sections
%\section*{Acknowledgements}
%% References
%%
%% Following citation commands can be used in the body text:
%% Usage of \cite is as follows:
%% \cite{key} ==>> [#]
%% \cite[chap. 2]{key} ==>> [#, chap. 2]
%%
%% References with bibTeX database:
%\bibliographystyle{elsarticle-num}
\bibliographystyle{elsarticle-num-names}
% \bibliographystyle{model1a-num-names}
% \bibliographystyle{model1b-num-names}
% \bibliographystyle{model1c-num-names}
% \bibliographystyle{model1-num-names}
%\bibliographystyle{model2-names}
% \bibliographystyle{model3a-num-names}
% \bibliographystyle{model3-num-names}
% \bibliographystyle{model4-names}
%\bibliographystyle{model5-names}
% \bibliographystyle{model6-num-names}
\bibliography{sample}
It is strongly advised that you use special software support to manage your list of references, such as e.g. EndNote, Citavi or Mendeley. In this Overleaf template, don't forget to use the sample.bib file.
% Appendices for the result tables. Appendix A is dedicated to the base case results, and Appendix B to the parametric analysis results.
\newpage
\appendix
\begin{appendices}
% Appendix A
\section{Apendix Title}
% Appendix B
\section{Apendix Title}
\end{appendices}
\end{document}