USAFA Math 451 Template Spring 2015
Forfatter
Russell Howell
Sidst opdateret
10 år siden
Licens
Creative Commons CC BY 4.0
Resumé
A template for submitting written assignments in LaTex.
\documentclass[letterpaper, 11pt]{article}
% Standard packages
\usepackage{amsmath, amsthm, latexsym, amssymb, graphicx, color, mathtools, geometry}
% Simplifies margin settings
\usepackage{geometry}
\geometry{margin=1in,headsep=.25in}
% Puts list item indicators in bold; makes flush with previous margin
\renewcommand\labelenumi{\bf\theenumi.}
\renewcommand\labelenumii{\bf\theenumii.}
\setlength\leftmargini{1.4em}
\setlength\leftmarginii{1.4em}
% Flexibility for headers and footers
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhf{} %clear all header and footer fields
\cfoot{\bf \small Page \thepage}
\headsep 0.2in
\thispagestyle{empty}
\usepackage[pdftex]{hyperref}
\hypersetup{
unicode=false, % non-Latin characters in Acrobat's bookmarks
pdftoolbar=true, % show Acrobat's toolbar?
pdfmenubar=true, % show Acrobat's menu?
pdffitwindow=true, % page fit to window when opened
pdftitle={My title}, % title
pdfauthor={Author}, % author
pdfsubject={Subject}, % subject of the document
pdfnewwindow=true, % links in new window
pdfkeywords={keywords}, % list of keywords
colorlinks=true, % false: boxed links; true: colored links
linkcolor=black, % color of internal links
citecolor=green, % color of links to bibliography
filecolor=magenta, % color of file links
urlcolor=blue % color of external links
}
\renewcommand{\headrulewidth}{0pt}
\parindent 0in
\parskip 12pt
\begin{document}
\title{Homework Template}
\begin{center}
{
\large
\bf
United States Air Force Academy\\
Complex Analysis (Math 451), Writing Assignment \#1\\
Submitted by I.M.\ Smart, \; January 16, 2015
}
\end{center}
\bigskip
\textbf{Page 34, Problem 2}\\
Use exponential notation to show that
\begin{itemize}
\item $(1+i)^3 = -2-2i$.
\item $2i(\sqrt{3}+i)(1+i\sqrt{3})=-8$
\end{itemize}
\textbf{Solution}\\
By direct computation we observe that
\begin{align*}
(1+i)^3 &= xxx\\
&= yyy\\
& \vdotswithin{=} \text{ blah, blah, blah}\\
&= -2-2i.
\end{align*}
Proceeding to the second part, we compute
etc.
\end{document}