✨ Getting started
Alright, you have now started the thesis. What do to next?
🟢 The first month
The first month of the thesis depends a lot on the project you are doing. If the project is very well-defined you will find that you can start coding and analyzing data right away. However, in most cases you will need to spend some time reading literature and getting a better understanding of the problem you are trying to solve. This is completely normal, and you should not be worried about it. In general expect to
-
Read literature
-
Begin analyzing data
-
Write some initial code
When you are closing in on the first month you need to hand-in a project plan.
Thesis template
If you want a barebone thesis template to get started with I have created one that is included in this repository. It is a cookiecutter template that you can use to create a new thesis project by running the following command in your terminal:
and answer the questions in the terminal. It contains a basic structure for the thesis, your project plan and general code structure. For full reproducibility, it also contains a devcontainer setup that will automatically install all the dependencies needed to run code and write the thesis.
Template structure
project_name/
├── .devcontainer
│ ├── devcontainer.json
│ └── post_create.sh
├── .gitignore
├── LICENSE
├── notebooks
│ └── .gitkeep
├── .pre-commit-config.yaml
├── project_plan
│ ├── bibliography.bib
│ ├── main.pdf
│ ├── main.tex
│ ├── time_plan.ods
│ └── time_plan.png
├── pyproject.toml
├── README.md
├── scripts
│ └── .gitkeep
├── src
│ └── .gitkeep
├── thesis
│ ├── backmatter
│ │ ├── appendix.tex
│ │ └── backpage.tex
│ ├── bibliography.bib
│ ├── chapters
│ │ └── 01_introduction.tex
│ ├── frontmatter
│ │ ├── abstract.tex
│ │ ├── acknowledgements.tex
│ │ ├── approval.tex
│ │ ├── copyright.tex
│ │ └── frontpage.tex
│ ├── main.pdf
│ ├── main.tex
│ ├── pictures
│ │ ├── dtured_rgb.pdf
│ │ └── DTU_stock_photo.jpg
│ ├── readme.md
│ └── setup
│ ├── info.tex
│ ├── preamble.tex
│ └── settings.tex
└── uv.lock
🗓️ The project plan
You have two hand-ins during your thesis: a project plan precisely 1 month after starting the project and your thesis. The project plan is a short document (2-3 pages) where you in more details describe what you are going to be doing throughout the thesis. It is intended as a document to help you plan your work and to help your supervisor understand what you are doing. In general the project plan should contain the following sections:
-
Motivation: The motivation for why you are doing this project. You should lay out the problem you are trying to solve and why it is important to spend time on solving this problem.
-
Background: The background of the project. You are never starting from scratch, so you should describe what current solutions look like and why they are not sufficient.
-
Research question: Most important part of the project plan. What is the overall research question you are trying to answer? You can have more than one, but try to keep it to a minimum. The research question should be specific and well-defined, because in the end this is the question you should be answering with your thesis. Consider the scientific method when writing the research question.
-
Time plan: A overall time plan for the project. This should be in the form of a Gantt chart or similar. Include the different phases of the project and how long you expect each phase to take. As a bonus consider assigning each phase a risk level (low, medium, high) on how likely it is that you will be delayed in that phase. This is a good exercise to do, because it forces you to think about what can go wrong in each phase and how you can mitigate the risk of being delayed.
-
References: After the first month you should already have read a bunch of literature and including and references to this literature is a good idea. Literature should here be understood as anything you have read that is relevant to your project, either scientific papers, books, blog posts, technical documentation, videos etc.

For examples of project plans, ask your supervisor if they have any examples.
The project plan should be handed in 1 month after starting the project. After registering the thesis a project/group will be created in Campusnet https://campusnet.dtu.dk where you under the "Assignments" tab should be able to find the project plan assignment. The project plan should be handed in as a PDF file.
📚 Keeping a logbook
You should really keep a logbook throughout the thesis. You are not going to remember what you did in the beginning of the thesis when you reach the end of the thesis, without having taken notes along the way. Here are some general ways of doing this (ordered by complexity):
-
💡 Create a running powerpoint/google slides presentation where you each week add 1 or 2 slides with what you have done, any figures you have produced, relevant literature etc. Think of it as a dumping ground for all your thoughts. Really easy to get started with, but in the end you may have a 100-page slidedeck to look through.
-
💡 Use Notion (online) /Obsidian (local) to document your findings and thoughts using markdown. This is a bit more complex to setup and use, but you can begin to structure your notes and make them searchable.