Tuesday, November 6, 2012

Latex Template

Reminding myself of every detail in the assigning of packages and page type in Latex seems like a bit of a chore. So I copied the following from a working .tex file to reduce redundancy.

\documentclass[12pt,doublespace]{article}
\usepackage[top=3cm,bottom=3cm,left=2.5cm,right=2.5cm]{geometry}
\usepackage{rotating}
\usepackage{apacite}

\begin{document}
\title{}
\author{
Name
\small Affiliation
\and
New Name
\small Affiliation
}

\maketitle
\begin{abstract}
...
\end{abstract}

\section{}
Main body

\end{document}