%\title{Math 210 Sample Portfolio/Template, Winter 2015}
% A percent sign means the remainder of the line is a comment. To have LaTeX show a percent sign, use \%.
\documentclass[12pt,pdftex]{article}
% Twelve point fonts are much easier to read than the standard ten point.
% All the packages and set-up are in the 210Header.sty file, loaded by the following command.
\usepackage{210Header}
% Fairly self-explanatory. Used by \maketitle.
\title{Portfolio}
\date{Winter 2015}
\author{Dnarg Yellav\\Math~210, C.~Wells}
% Begin the actual text of our document
\begin{document}
% The \maketitle command prints title page information at the top of the page.
\maketitle
\tableofcontents
\section{Introduction}
% The \input command essentially inserts the file whose name is the argument to the command with .tex added. In other words, \input{sumIsPrime} reads in everything in the file sumIsPrime.tex as if the contents of the file were copied and pasted in.
\input{introduction}
\section{Conjectures and Proofs}
\input{sumIsPrime}
\input{divisibleBySix}
\input{lemmas}
\input{nonconstructive}
\input{chessboard}
\input{bijection}
\input{injection}
\includepdf[pages=-,nup=1x2,addtotoc={1,section,1,\LaTeX Cheat Sheet,cheat}]{LaTeXCheatSheet.pdf}
\end{document}