\documentclass[a4paper,11pt,masters,en,listoffigures,listoftables]{NMBU}
% Limitation: at this stage, the template is designed only for a4 size paper.
% If you'd like to use chapters instead of sections, add 'book' to the options, as \documentclass[book,...]{NMBU}. Recall that you now have to use \chapter{} and then \section{}, \subsection{}, ...
% \usepackage[nohyperlinks]{acronym} % If you need a List of Acronyms, consider using this package
%\documentclass[final,...]{NMBU} % use "final" when you are done with your thesis (with XeLaTeX)!
% The NMBU style package is designed to help you write the cover and back page automatically. Make sure to include the information below to generate your title. You can set the language you are writing in with "en" for english, "bm" for bokmål, or "nn" for nynorsk.
% A table of contents is automatically included. If you have more than one figure, you need a list of figures by adding "listoffigures" to the documentclass parameters. If you have more than one table, you need a list of tables by adding "listoftables" to the documentclass parameters.
% If you would like to have a bibliography with named authors, organised alphabetically, add "namedauthors" to the parameters of the document class.
\addbibresource{bib.bib} % here you include the bibliography file.
% If you are using Norwegian dates in your bibliography, add "norwegiandates" to the document class.
% When you finish your thesis, you can activate the "final" parameter in the document class and switch the LaTeX compiler from pdfLaTeX to XelaTeX (on Overleaf, "Menu"->"Compiler"). This is for 2 reasons: 1) to produce your front page with the Arial font; 2) XeLaTeX produces better fonts and (usually) smaller PDFs. Every kilobyte of space we save helps reduce CO2 emissions :)
% Good luck with your thesis! If you get in trouble with LaTeX stuff, write to me: leonardo.rydin@gmail.com
% In your .tex file, you need to include the following information to produce the first page of your thesis
\title{}
\author{}
\thesisyear{}
\credits{30}
\faculty{Faculty of Science and Technology}
\studyprogramme{
%Environmental Physics and Renewable Energy
%Data Science
}
\supervisor{} % Include the name of the supervisor or supervisors
% \engtitle{} % Only if you write a thesis in a Scandinavian language
% You should also use the "\abstract" and "\sammendrag" to produce those. If you are writing in a Scandinavian language, the sammendrag will appear first.
%\abstract{Write your abstract here}
%\sammendrag{Write your sammendrag here}
%\acknowledgements{} You can add acknowledgements here. In Scandinavian languages, use "\foreword{}" (or if in English you prefer Foreword to Acknowledgements). The foreword comes before the abstract.
\begin{document}
% If you need a List of Acronyms, place them before the \startthesis command. You will need "\usepackage[nohyperlinks]{acronym}", see line 4.
% \section*{List of Acronyms}
% \begin{acronym}
% \acro{TSO}{Transmission System Operator}
% \acro{LSTM}{Long Short-Term Memory}
% \end{acronym}
\startthesis % This command will separate the Roman-numbered pages above and the Arabic-numbered pages below as well as create the table of contents, list of figures, and list of tables.
\section{Introduction}
\subsection{Motivation}
\subsection{Research question}
\clearpage % separate each section with a \clearpage
\section{Theory}
We sometimes have to cite two scientific publications or two reports, or just two citations together in general. For that, you can use \verb|\cite{citation1, citation2}|, i.e., separate the citations with a comma, like~\cite{Beck2000application, Beck2005timeseries}.
When you are closely following a book to explain something, which is often the case in a theory section, you can write at the start of the section you are about to introduce: ``This section follows closely the reference book by Sumiyoshi Abe and Yuko Okamoto, \emph{Nonextensive Statistical Mechanics and Its Applications}~\cite{Abe2001nonextensive}.''
A Master's~\cite{LastName2045norwegian} or a PhD thesis~\cite{Temult2038binding} should include the name of the university wherein it was written, as well as the year. Moreover, it should include a URL to the work, when available.
Articles and proceedings are practically the same in science, but in your bibliography, you should use \verb|@article| for articles and \verb|@inproceedings| for proceedings. The work by Jozefowivz et al. (2015)~\cite{Jozefowicz2015empirical} is an example of a proceedings.
\clearpage
\section{Methodology}
In the methodology, you might include mentions of various python (or other programming languages) packages. One example is \texttt{numpy}~\cite{NumPy} (you can use \verb|\texttt{numpy}| to get a monospaced/typewriter font). \texttt{matplotlib}~\cite{Matplotlib} or \texttt{SciPy}~\cite{SciPy} also have articles you can cite directly.
% Note that the appendices should come after the bibliography, not before.
\clearpage
\references % this command prints out your bibliography
\clearpage
\appendices % This command is needed to start the appendix section and number the figures and tables accordingly. You should still use "\section"s to make your appendices.
\section{Appendix}
\end{document}