Initial commit
This commit is contained in:
124
skills/pandoc/assets/templates/thesis-report.yaml
Normal file
124
skills/pandoc/assets/templates/thesis-report.yaml
Normal file
@@ -0,0 +1,124 @@
|
||||
---
|
||||
# Document Metadata
|
||||
title: "Thesis Title"
|
||||
author: "Author Name"
|
||||
date: "Month Year"
|
||||
lang: en-GB
|
||||
|
||||
# Academic Details
|
||||
supervisor: "Supervisor Name"
|
||||
institution: "Institution Name"
|
||||
department: "Department Name"
|
||||
degree: "Degree Name"
|
||||
|
||||
# Bibliography Settings
|
||||
bibliography: references.bib
|
||||
csl: harvard.csl
|
||||
link-citations: true
|
||||
|
||||
# PDF Output Settings
|
||||
documentclass: report
|
||||
fontsize: 12pt
|
||||
geometry: margin=1in
|
||||
linestretch: 1.5
|
||||
numbersections: true
|
||||
secnumdepth: 3
|
||||
|
||||
# Table of Contents
|
||||
toc: true
|
||||
toc-depth: 3
|
||||
lof: true # List of figures
|
||||
lot: true # List of tables
|
||||
|
||||
# LaTeX Packages
|
||||
header-includes: |
|
||||
\usepackage{graphicx}
|
||||
\usepackage{float}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{setspace}
|
||||
\renewcommand{\maketitle}{
|
||||
\begin{titlepage}
|
||||
\centering
|
||||
\vspace*{2cm}
|
||||
{\Huge\bfseries $title$\par}
|
||||
\vspace{1.5cm}
|
||||
{\Large $author$\par}
|
||||
\vspace{1cm}
|
||||
{\large A thesis submitted in partial fulfilment\par}
|
||||
{\large of the requirements for the degree of\par}
|
||||
\vspace{0.5cm}
|
||||
{\large\itshape $degree$\par}
|
||||
\vspace{1.5cm}
|
||||
{\large $department$\par}
|
||||
{\large $institution$\par}
|
||||
\vspace{1cm}
|
||||
{\large $date$\par}
|
||||
\vspace{1cm}
|
||||
{\large Supervisor: $supervisor$\par}
|
||||
\end{titlepage}
|
||||
}
|
||||
---
|
||||
|
||||
<!-- Abstract -->
|
||||
\begin{abstract}
|
||||
Write your abstract here (200-300 words).
|
||||
\end{abstract}
|
||||
|
||||
\newpage
|
||||
|
||||
<!-- Declaration -->
|
||||
# Declaration
|
||||
|
||||
I hereby declare that this thesis is entirely my own work and that it has not been submitted as an exercise for a degree at any other university.
|
||||
|
||||
\vspace{1cm}
|
||||
|
||||
Signed: \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_
|
||||
|
||||
Date: \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_
|
||||
|
||||
\newpage
|
||||
|
||||
<!-- Acknowledgements -->
|
||||
# Acknowledgements
|
||||
|
||||
I would like to thank...
|
||||
|
||||
\newpage
|
||||
|
||||
# Introduction
|
||||
|
||||
Your content here.
|
||||
|
||||
# Literature Review
|
||||
|
||||
...
|
||||
|
||||
# Methodology
|
||||
|
||||
...
|
||||
|
||||
# Implementation
|
||||
|
||||
...
|
||||
|
||||
# Results and Discussion
|
||||
|
||||
...
|
||||
|
||||
# Conclusion
|
||||
|
||||
...
|
||||
|
||||
# References
|
||||
|
||||
::: {#refs}
|
||||
:::
|
||||
|
||||
\newpage
|
||||
|
||||
# Appendices
|
||||
|
||||
## Appendix A: Additional Material
|
||||
|
||||
...
|
||||
Reference in New Issue
Block a user