Skip to content

Instantly share code, notes, and snippets.

@cpmpercussion
Created January 15, 2020 23:57
Show Gist options
  • Save cpmpercussion/a6fb23976f3a8bf5c045f54ab62ee057 to your computer and use it in GitHub Desktop.
Save cpmpercussion/a6fb23976f3a8bf5c045f54ab62ee057 to your computer and use it in GitHub Desktop.
A LaTeX template for short student reports
% LaTeX Template for short student reports.
% Citations should be in bibtex format and go in references.bib
\documentclass[a4paper, 11pt]{article}
\usepackage[top=3cm, bottom=3cm, left = 2cm, right = 2cm]{geometry}
\geometry{a4paper}
\usepackage[utf8]{inputenc}
\usepackage{textcomp}
\usepackage{graphicx}
\usepackage{amsmath,amssymb}
\usepackage{bm}
\usepackage[pdftex,bookmarks,colorlinks,breaklinks]{hyperref}
%\hypersetup{linkcolor=black,citecolor=black,filecolor=black,urlcolor=black} % black links, for printed output
\usepackage{memhfixc}
\usepackage{pdfsync}
\usepackage{fancyhdr}
\pagestyle{fancy}
\title{Sample Report}
\author{Author McWriterson}
%\date{}
\begin{document}
\maketitle
\tableofcontents
\section{Introduction}
My project was about \ldots
I developed a system to \ldots
We did some experiments to find out \ldots
The main results were \ldots
\pagebreak
\section{Background}
I did some background reading in the following areas \ldots
\pagebreak
\section{System Design}
My system worked as follows \ldots
\pagebreak
\section{Evaluation}
We did some experiments \ldots
\pagebreak
\section{Conclusions and Future Work}
From our experiments we can conclude that \ldots
\bibliographystyle{abbrv}
% \bibliography{references} % need to put bibtex references in references.bib
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment