Skip to content

Instantly share code, notes, and snippets.

@darraghmckay
Created February 19, 2018 21:07
Show Gist options
  • Save darraghmckay/fcef0c952372673c870f0be9e1922a00 to your computer and use it in GitHub Desktop.
Save darraghmckay/fcef0c952372673c870f0be9e1922a00 to your computer and use it in GitHub Desktop.
Latex Report Template
% Put your Bibtex references here
%++++++++++++++++++++++++++++++++++++++++
% Don't modify this section unless you know what you're doing!
\documentclass[letterpaper,12pt]{article}
\usepackage{tabularx} % extra features for tabular environment
\usepackage{amsmath} % improve math presentation
\usepackage{graphicx} % takes care of graphic including machinery
\usepackage[margin=1in,letterpaper]{geometry} % decreases margins
\usepackage{cite} % takes care of citations
\usepackage[final]{hyperref} % adds hyper links inside the generated pdf file
\hypersetup{
colorlinks=true, % false: boxed links; true: colored links
linkcolor=blue, % color of internal links
citecolor=blue, % color of links to bibliography
filecolor=magenta, % color of file links
urlcolor=blue
}
\usepackage[sort,comma,numbers]{natbib}
%++++++++++++++++++++++++++++++++++++++++
\begin{document}
\title{Title of the Report}
\author{A. Partner, B. Partner, and C. Partner}
\date{\today}
\maketitle
\begin{abstract}
In this experiment we studied a very important physical effect by measuring the
dependence of a quantity $V$ of the quantity $X$ for two different sample
temperatures. Our experimental measurements confirmed the quadratic dependence
$V = kX^2$ predicted by Someone's first law. The value of the mystery parameter
$k = 15.4\pm 0.5$~s was extracted from the fit. This value is
not consistent with the theoretically predicted $k_{theory}=17.34$~s. We attribute this
discrepancy to low efficiency of our $V$-detector.
\end{abstract}
\section{Introduction}
\section{Theory}
\section{Procedures}
\section{Analysis}
\section{Conclusions}
% You need to create a main.bib
\bibliographystyle{unsrtnat}
\bibliography{main.bib}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment