Created
April 9, 2013 03:35
-
-
Save anonymous/5342762 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
\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