Proof Portfolio Template
Author
Katie Hall
Last Updated
6 years ago
License
Creative Commons CC BY 4.0
Abstract
Proof Portfolio Template for UConn Math 2710W Section 1, Spring 2019. Written by Katie Hall and Erin Rizzie.
Proof Portfolio Template for UConn Math 2710W Section 1, Spring 2019. Written by Katie Hall and Erin Rizzie.
\documentclass[12pt]{article} % use larger type; default would be 10pt
%%% PAGE DIMENSIONS
\usepackage[lmargin=.5in, rmargin=1.5in, marginpar=1.3in]{geometry} % to change the page dimensions (margins, etc.)
\geometry{letterpaper} % or letterpaper (US) or a5paper or....
\usepackage{graphicx} % support the \includegraphics command and options
% \usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent
%%% PACKAGES
\usepackage{setspace} % for changing line spacing
\usepackage{array} % for better arrays (eg matrices) in maths
\usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.)
\usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim
\usepackage{subfig} % make it possible to include more than one captioned figure/table in a single float
\usepackage{amsthm} % allows example and proof environment to be defined/used
\usepackage{amssymb}
\usepackage{todonotes}
%%% HEADERS & FOOTERS
\usepackage{fancyhdr} % This should be set AFTER setting up the page geometry
\pagestyle{fancy} % options: empty , plain , fancy
\renewcommand{\headrulewidth}{0pt} % customise the layout...
\lhead{}\chead{}\rhead{}
\lfoot{}\cfoot{\thepage}\rfoot{}
%%% ToC (table of contents) APPEARANCE
\usepackage[nottoc,notlof,notlot]{tocbibind} % Put the bibliography in the ToC
\usepackage[titles,subfigure]{tocloft} % Alter the style of the Table of Contents
%%% SECTION COUNTER SETTINGS
\newcommand{\mysection}[2]{\setcounter{section}{#1}\section*{Chapter #1: #2}} % changes a "1" to "Chapter 1," and so on, and allows you to number the chapters manually if necessary.
%%% COMPLETE AND INCOMPLETE COMMANDS
\newcommand{\incomplete}{$\square$}
\newcommand{\complete}{$\boxtimes$}
\usepackage{ marvosym }
\newcommand{\graded}{\Smiley}
%%% DEFINE EXAMPLE AND THEOREM ENVIRONMENTS
\theoremstyle{definition}
\newtheorem{example}{Example}[section]
\newtheorem{theorem}{Theorem}
%%% END Article customizations
%%% The "real" document content comes below...
\title{Math 2710W Proof Portfolio}
\author{Name} % Fill in your name here
\date{\today} % Activate to display a given date or no date (if empty),
% otherwise the current date is printed
\begin{document}
\maketitle
%Here you (and I) will indicate when drafts are ready to be looked over and have been looked over. Change the \unmark before an item to \mark.
\incomplete Chapter 1 and 2 Draft
\incomplete Chapter 3 and 4 Draft
\incomplete Chapter 5 and 6 Draft
\incomplete Chapter 7 Draft
\incomplete Second Proof Drafts
\incomplete Revisions Chapter 1-4
\incomplete Revisions Chapter 5-7
\incomplete Final Version
\newpage % Inserts a page break
\tableofcontents % Automatically generates a table of contents based on your chapter and section numbering in the body of the portfolio
% You need to compile twice in order for changes to be reflected in the ToC
\newpage
\doublespacing
\noindent Here is some introductory text. It is double spaced. Here is some introductory text. Here is some introductory text. Here is some introductory text. Here is some introductory text. Here is some introductory text. Here is some introductory text. Here is some introductory text.
\section{Chapter Title}
\subsection{First section title}
You can write your section here.\\
Here is a list of things:
\begin{itemize} % make a bulleted list
\item Thing 1
\item Thing 2
\end{itemize} % always end a \begin{...} with an \end{...}
Here is a numbered list:
\begin{enumerate} % make a numbered list
\item First item
\item Second item
\end{enumerate}
\begin{theorem}
This is a theorem.
\end{theorem}
\begin{proof}
This is a proof.
\end{proof}
\subsection{Another section title}
\begin{example}
This is an example.
\end{example}
\begin{proof}
Here, you prove the statement given in your example.
\end{proof}
\newpage % Inserts a page break to start your next chapter on a new page
\section{Another Chapter Title}
\subsection{A section}
You can write another section here.
\medskip
\noindent (It should be a lot longer than this and have some math in it.)
\subsection{Another section}
This section should have some examples in it. \todo{You need more examples here. -KH}
\bigskip
\noindent (You will also need to write some more chapters eventually).
\end{document}