% --------- TEMPLATE FOR A THESIS IN ECONOMICS -------------- %
% Made by Hugo Norinder
% First created: 2024-05-22
% Updated: 2024-05-22
%
%
%This template was made to guide students in making a thesis that looks like a publishable article
% ---------- ********************************* -------------- %
\documentclass[a4paper, 12pt]{article}
\input{setup}
\title{Title of Thesis\footnote{\textbf{Acknowledgement:} You can thank who you want, but it is common to thank you supervisor(s), commenters, or other people you think deserve a mention}}
\author{Firstname Lastname\footnote{Lund University School of Economics and Management}}
\date{Seminar date}
\begin{document}
%THE UNFORTUNATE TITLE PAGE THAT NEEDS TO BE INCLUDED
\input{title}
\newpage
\maketitle
\begin{abstract}
\setstretch{1}
Write an abstract here, which should efficiently summarise your paper. \lipsum[1] \\
\noindent \textbf{Keywords:} 3 -- 5 key words\\
\noindent \textbf{JEL codes:} Find appropriate codes at \url{https://www.aeaweb.org/econlit/jelCodes.php?view=jel} %Standard in econ literature view=jel
\end{abstract}
\setcounter{page}{1}
%INTRODUCTION
\hypersetup{linkcolor=blue}
\input{sections/1 intro}
%PREVIOUS LITERATURE
\input{sections/2 literature}
%BACKGROUND
\input{sections/3 background}
%DATA
\input{sections/4 data}
%EMPIRICAL
\input{sections/5 empirical}
%RESULTS
\input{sections/6 results}
%DISCUSSION rename?
\input{sections/7 conclusion}
%REFRENCES
\titleformat{\section}{\normalfont\huge\bfseries}{\thesection}{1em}{}
\newpage
\addcontentsline{toc}{section}{References} %Adds the reference to the Table of Contents
\bibliography{bibliography}
\newpage
%APPENDICES
\appendix
\setcounter{page}{1} %Restarts page counting to 1
\pagenumbering{roman} %Differentiates the appendix page numbers from the main article
\titleformat{\section}{\centering\normalfont\normalsize\bfseries}{Appendix \thesection: }{0em}{}
\input{appendix/appendix_tables}
\input{appendix/appendix_figures}
\end{document}