% Credits are indicated where needed. The general idea is based on a template by Vel (vel@LaTeXTemplates.com) and Frits Wenneker.
\documentclass[11pt, a4paper]{article} % General settings in the beginning (defines the document class of your paper)
% 11pt = is the font size
% A4 is the paper size
% “article” is your document class
%----------------------------------------------------------------------------------------
% Packages
%----------------------------------------------------------------------------------------
% Necessary
\usepackage[german,english]{babel} % English and German language
\usepackage{booktabs} % Horizontal rules in tables
% For generating tables, use “LaTeX” online generator (https://www.tablesgenerator.com)
\usepackage{comment} % Necessary to comment several paragraphs at once
\usepackage[utf8]{inputenc} % Required for international characters
\usepackage[T1]{fontenc} % Required for output font encoding for international characters
% Might be helpful
\usepackage{amsmath,amsfonts,amsthm} % Math packages which might be useful for equations
\usepackage{tikz} % For tikz figures (to draw arrow diagrams, see a guide how to use them)
\usepackage{tikz-cd}
\usetikzlibrary{positioning,arrows} % Adding libraries for arrows
\usetikzlibrary{decorations.pathreplacing} % Adding libraries for decorations and paths
\usepackage{tikzsymbols} % For amazing symbols ;) https://mirror.hmc.edu/ctan/graphics/pgf/contrib/tikzsymbols/tikzsymbols.pdf
\usepackage{blindtext} % To add some blind text in your paper
%---------------------------------------------------------------------------------
% Additional settings
%---------------------------------------------------------------------------------
%---------------------------------------------------------------------------------
% Define your margins
\usepackage{geometry} % Necessary package for defining margins
\geometry{
top=2cm, % Defines top margin
bottom=2cm, % Defines bottom margin
left=2.2cm, % Defines left margin
right=2.2cm, % Defines right margin
includehead, % Includes space for a header
%includefoot, % Includes space for a footer
%showframe, % Uncomment if you want to show how it looks on the page
}
\setlength{\parindent}{15pt} % Adjust to set you indent globally
%---------------------------------------------------------------------------------
% Define your spacing
\usepackage{setspace} % Required for spacing
% Two options:
\linespread{1.5}
%\onehalfspacing % one-half-spacing linespread
%----------------------------------------------------------------------------------------
% Define your fonts
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage{XCharter} % Use the XCharter font
%---------------------------------------------------------------------------------
% Define your headers and footers
\usepackage{fancyhdr} % Package is needed to define header and footer
\pagestyle{fancy} % Allows you to customize the headers and footers
%\renewcommand{\sectionmark}[1]{\markboth{#1}{}} % Removes the section number from the header when \leftmark is used
% Headers
\lhead{} % Define left header
\chead{\textit{}} % Define center header - e.g. add your paper title
\rhead{} % Define right header
% Footers
\lfoot{} % Define left footer
\cfoot{\footnotesize \thepage} % Define center footer
\rfoot{ } % Define right footer
%---------------------------------------------------------------------------------
% Add information on bibliography
\usepackage{natbib} % Use natbib for citing
\usepackage{har2nat} % Allows to use harvard package with natbib https://mirror.reismil.ch/CTAN/macros/latex/contrib/har2nat/har2nat.pdf
% For citing with natbib, you may want to use this reference sheet:
% http://merkel.texture.rocks/Latex/natbib.php
%---------------------------------------------------------------------------------
% Add field for signature (Reference: https://tex.stackexchange.com/questions/35942/how-to-create-a-signature-date-page)
\newcommand{\signature}[2][5cm]{%
\begin{tabular}{@{}p{#1}@{}}
#2 \\[2\normalbaselineskip] \hrule \\[0pt]
{\small \textit{Signature}} \\[2\normalbaselineskip] \hrule \\[0pt]
{\small \textit{Place, Date}}
\end{tabular}
}
%---------------------------------------------------------------------------------
% General information
%---------------------------------------------------------------------------------
\title{TITLE} % Adds your title
\author{
FIRSTNAME LASTNAME % Add your first and last name
%\thanks{} % Adds a footnote to your title
%\institution{YOUR INSTITUTION} % Adds your institution
}
\date{\small \today} % Adds the current date to your “cover” page; leave empty if you do not want to add a date
%---------------------------------------------------------------------------------
% Define what’s in your document
%---------------------------------------------------------------------------------
\begin{document}
% If you want a cover page, uncomment "\input{coverpage.tex}" and uncomment "\begin{comment}" and "\end{comment}" to comment the following lines
%\input{coverpage.tex}
%\begin{comment}
\maketitle % Print your title, author name and date; comment if you want a cover page
\begin{center} % Center text
Word count: XXXX
% How to check words in a LaTeX document: https://www.overleaf.com/help/85-is-there-a-way-to-run-a-word-count-that-doesnt-include-latex-commands
\end{center}
%\end{comment}
%----------------------------------------------------------------------------------------
% Introduction
%----------------------------------------------------------------------------------------
\setcounter{page}{1} % Sets counter of page to 1
\section{Introduction} % Add a section title
\subsection{Highlighting} % Add a subsection
\LaTeX allows you to highlight text in various ways: \textbf{bold}, \textit{italics}, with \textsc{small caps} or \texttt{as a coding font}.\footnote{ This command adds a footnote to your text.}
\subsection{Citing} % Add another subsection
Citing in \LaTeX is easy. You could easier cite with the text flow like this ``Referring to \citet{collier2004greed} ...'' or at the end of the sentence \cite{collier2004greed}. You can also cite pages like this \citep[55]{collier2004greed}. If you want to add an additional note, you might want to do it this way \citep[cp.][22]{collier2004greed} or like this \citep[cp.][]{collier2004greed}.\\
\blindtext % Adds some blintext to your text
%----------------------------------------------------------------------------------------
% Literature review
%----------------------------------------------------------------------------------------
\section{Literature review}
\blindtext % Some blind text
\subsection{Some subsection}
\blindtext % Some more blind text
\subsubsection{And a subsubsection}
\blindtext % Even more blind text
And here you have a list with dots and dashes:
\begin{itemize}
\item Dots
\item[-] or dashes?
\end{itemize}
and an enumerated list:
\begin{enumerate}
\item With numbers...
\item Which is also nice \Winkey
\end{enumerate}
%---------------------------------------------------------------------------------
% Theory
%---------------------------------------------------------------------------------
\section{Theory}
If you want to add mathematical equations, this may be done either this way: $a + b \neq \frac{a}{b}$. You may also add Greek letters like this: $\alpha$.\\
\blindtext % Some blind text
% Including figures
\begin{figure}[htpb!] % Defines figure environment
\centering % Centers your figure
\includegraphics[scale=0.8]{figure/figure.png} % Includes your figure and defines the size
\caption{A circle} % For your caption
\label{fig:my_label} % If you want to label your figure for in-text references
\end{figure}
\blindtext % Some blind text
% Including tables
% Simple table
\begin{table}[] % Add htpb! to make sure that table is where it should be
\centering
\begin{tabular}{c|c}
Saturday & Sunday \\
12 & 18
\end{tabular}
\caption{Overview of the weekend}% Caption for tables
\label{tab:weekend} % Reference for in-line referencing
\end{table}
% Table with table generator
\begin{table}[] % Add htpb! to make sure that table is where it should be
\centering
\begin{tabular}{@{}lll@{}}
\toprule
& A & B \\ \midrule
C & 100 & 2 \\
D & 3 & 5 \\ \bottomrule
\end{tabular}
\caption{Random numbers} % Caption for tables
\label{tab:numbers} % Reference for in-line referencing
\end{table}
%----------------------------------------------------------------------------------------
% Research design
%----------------------------------------------------------------------------------------
\section{Research Design}
\blindtext % Some blind text
%----------------------------------------------------------------------------------------
% Analysis
%----------------------------------------------------------------------------------------
\section{Analysis}
\blindtext % Some blind text
%----------------------------------------------------------------------------------------
% Conclusion
%----------------------------------------------------------------------------------------
\section{Conclusion}
\blindtext % Some blind text
%----------------------------------------------------------------------------------------
% Bibliography
%----------------------------------------------------------------------------------------
\newpage % Includes a new page
\pagenumbering{roman} % Changes page numbering to roman page numbers
%\bibliography{literature}
\bibliography{literature.bib} % Add the filename of your bibliography
\bibliographystyle{apsr} % Defines your bibliography style
% For citing, please see this sheet: http://merkel.texture.rocks/Latex/natbib.php
%----------------------------------------------------------------------------------------
% Appendix
%----------------------------------------------------------------------------------------
\newpage % Includes a new page
\section*{Appendix} % Stars disable section numbers
% \appendix % Uncomment if you want to add an "automatic" appendix
\pagenumbering{Roman} % Changes page numbering to Roman page numbers
\blindtext % Adds some blind text
%----------------------------------------------------------------------------------------
% Declaration
%----------------------------------------------------------------------------------------
\newpage % Includes a page break
\thispagestyle{empty} % Leaves the page style empty (no page number, no header, no footer)
\section*{Statutory Declaration} % Stars disable section numbers
\begin{otherlanguage}{german}
Hiermit versichere ich, dass diese Arbeit von mir pers\"{o}nlich verfasst ist und dass ich keinerlei fremde Hilfe in Anspruch genommen habe. Ebenso versichere ich, dass diese Arbeit oder Teile daraus weder von mir selbst noch von anderen als Leistungsnachweise andernorts eingereicht wurden. W\"{o}rtliche oder sinngem\"{a}{\ss}e \"{U}bernahmen aus anderen Schriften und Ver\"{o}ffentlichungen in gedruckter oder elektronischer Form sind gekennzeichnet. S\"{a}mtliche Sekund\"{a}rliteratur und sonstige Quellen sind nachgewiesen und in der Bibliographie aufgef\"{u}hrt. Das Gleiche gilt f\"{u}r graphische Darstellungen und Bilder sowie f\"{u}r alle Internet-Quellen. Ich bin ferner damit einverstanden, dass meine Arbeit zum Zwecke eines Plagiatsabgleichs in elektronischer Form anonymisiert versendet und gespeichert werden kann. Mir ist bekannt, dass von der Korrektur der Arbeit abgesehen und die Pr\"{u}fungsleistung mit nicht ausreichend bewertet werden kann, wenn die Erkl\"{a}rung nicht erteilt wird.
\end{otherlanguage}
\vspace*{1in} % Adds extra space between two paragraphs
\noindent I hereby declare that the paper presented is my own work and that I have not called upon the help of a third party. In addition, I affirm that neither I nor anybody else has submitted this paper or parts of it to obtain credits elsewhere before. I have clearly marked and acknowledged all quotations or references that have been taken from the works of others. All secondary literature and other sources are marked and listed in the bibliography. The same applies to all charts, diagrams and illustrations as well as to all Internet resources. Moreover, I consent to my paper being electronically stored and sent anonymously in order to be checked for plagiarism. I am aware that the paper cannot be evaluated and may be graded ``failed'' (``nicht ausreichend'') if the declaration is not made.\\
%\vspace*{1in} % Adds extra space
% Add field for signature, date, and place
\hfill \signature{}
%---------------------------------------------------------------------------------
\end{document}