Last active
June 17, 2024 08:06
-
-
Save hugoledoux/d16d5a4d397858ac745e38f9e8561657 to your computer and use it in GitHub Desktop.
A LaTeX template for the P2 proposal of the MSc Geomatics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[a4paper,11pt]{scrartcl} | |
\usepackage{graphicx} | |
\usepackage[utf8]{inputenc} %-- pour utiliser des accents en français | |
\usepackage{amsmath,amssymb,amsthm} | |
\usepackage[round]{natbib} | |
\usepackage{url} | |
\usepackage{xspace} | |
\usepackage[left=20mm,top=20mm]{geometry} | |
\usepackage{algorithmic} | |
\usepackage{subcaption} | |
\usepackage{mathpazo} | |
\usepackage{booktabs} | |
\usepackage{hyperref} | |
\newcommand{\ie}{ie} | |
\newcommand{\eg}{eg} | |
\newcommand{\reffig}[1]{Figure~\ref{#1}} | |
\newcommand{\refsec}[1]{Section~\ref{#1}} | |
\setcapindent{1em} %-- for captions of Figures | |
\renewcommand{\algorithmicrequire}{\textbf{Input:}} | |
\renewcommand{\algorithmicensure}{\textbf{Output:}} | |
\title{My P2 template} | |
\author{ | |
Hugo Ledoux\\ | |
student \#123456 \\ | |
\url{[email protected]} !!!USE TUDELFT EMAIL, NOT PRIVATE EMAIL!!!\\ | |
\\ | |
1st supervisor: Jan Smit \\ | |
2nd supervisor: Gerard Joling \\ | |
} | |
\date{13 January, 2024} | |
\begin{document} | |
\maketitle | |
\newpage | |
%%% | |
% | |
\section{Introduction} | |
An introduction in which the relevance of the project and its place in the context of geomatics is described, along with a clearly-defined problem statement. | |
%%% | |
% | |
\section{Related work} | |
A related work section in which the relevant literature is presented and linked to the project. | |
%%% | |
% | |
\section{Research questions} | |
The research questions are clearly defined, along with the scope (ie what you will not be doing). | |
To help you define a ``good" research question, read \url{https://3d.bk.tudelft.nl/courses/geo2020/templates/Research-Questions_WS-handout.pdf}. | |
% \citet{Smith03} cites something as a noun, and it's also possible to put the references between parentheses at the end of at sentence~\citep{Smith03} | |
%%% | |
% | |
\section{Methodology} | |
Overview of the methodology to be used. | |
%%% | |
% | |
\section{Time planning} | |
Having a Gantt chart is probably a better idea then just a list. | |
%%% | |
% | |
\section{Tools and datasets used} | |
Since specific data and tools have to be used, it’s good to present these concretely, so that the mentors know that you have a grasp of all aspects of the project. | |
\bibliographystyle{abbrvnat} | |
\bibliography{myreferences} %-- path of myreferences.bib | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment