Skip to content

Instantly share code, notes, and snippets.

Created April 9, 2013 03:35
Show Gist options
  • Save anonymous/5342762 to your computer and use it in GitHub Desktop.
Save anonymous/5342762 to your computer and use it in GitHub Desktop.
\documentclass[12pt]{article}
%Margin - 1 inch on all sides
\usepackage[letterpaper]{geometry}
\geometry{top=1.125in, bottom=1.125in, left=1.125in, right=1.125in}
%Doublespacing
\usepackage{setspace}
\doublespacing
%Setting the font
\usepackage{ubuntu}
%Rotating tables (e.g. sideways when too long)
\usepackage{rotating}
%For multiple rows in tables
\usepackage{multirow}
%Fancy-header package to modify header/page numbering (insert last name)
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{Dodrill \thepage}
\lfoot{}
\cfoot{}
\rfoot{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
%To make sure we actually have header 0.5in away from top edge
%12pt is one-sixth of an inch. Subtract this from 0.5in to get headsep value
\setlength\headsep{0.333in}
\begin{document}
%TODO: Add docuent here
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment