Created
January 15, 2020 23:57
-
-
Save cpmpercussion/a6fb23976f3a8bf5c045f54ab62ee057 to your computer and use it in GitHub Desktop.
A LaTeX template for short student reports
This file contains 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
% 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