
Homework Template
Auteur:
Caleb McWhorter
Last Updated:
il y a 6 ans
License:
Creative Commons CC BY 4.0
Résumé:
A template for creating course homeworks.

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\documentclass[11pt,letterpaper]{article}
\usepackage[lmargin=1in,rmargin=1in,tmargin=1in,bmargin=1in]{geometry}
% -------------------
% Packages
% -------------------
\usepackage{
amsmath, % Math Environments
amssymb, % Extended Symbols
enumerate, % Enumerate Environments
graphicx, % Include Images
lastpage, % Reference Lastpage
multicol, % Use Multi-columns
multirow % Use Multi-rows
}
% -------------------
% Font
% -------------------
\usepackage[T1]{fontenc}
\usepackage{charter}
% -------------------
% Commands
% -------------------
\newcommand{\homework}[2]{\noindent\textbf{Name: } \\ \textbf{MAT 999} \\ \textbf{Due: #2} \vspace{0.1cm}\hrule\vspace{0.3cm} {\par\centering\large{\textbf{HW #1}}\par}\vspace{1cm}}
\newcommand{\prob}{\noindent\textbf{Problem. }}
\newcounter{problem}
\newcommand{\problem}{
\stepcounter{problem}%
\noindent \textbf{Problem \theproblem. }%
}
\newcommand{\pointproblem}[1]{
\stepcounter{problem}%
\noindent \textbf{Problem \theproblem.} (#1 points)\,%
}
\newcommand{\pspace}{\par\vspace{\baselineskip}}
\newcommand{\ds}{\displaystyle}
% -------------------
% Header & Footer
% -------------------
\usepackage{fancyhdr}
\fancypagestyle{pages}{
%Headers
\fancyhead[L]{}
\fancyhead[C]{}
\fancyhead[R]{}
\renewcommand{\headrulewidth}{0pt}
%Footers
\fancyfoot[L]{}
\fancyfoot[C]{}
\fancyfoot[R]{\thepage \,of \pageref{LastPage}}
\renewcommand{\footrulewidth}{0.0pt}
}
\headheight=0pt
\footskip=14pt
\pagestyle{pages}
% -------------------
% Content
% -------------------
\begin{document}
\homework{\#}{MM/DD}
% Question
\prob This is an unnumbered problem. \pspace
% Question 1
\problem This is a numbered problem. \vspace{1.5cm}
% Question 2
\pointproblem{5} This is the second numbered problem. \vfill
% Question 3
\problem This problem has several parts:
\begin{enumerate}[(a)]
\item The first part.
\item The second part.
\item The third part.
\end{enumerate} \vspace{6cm}
\newpage
% Question 4
\problem Compute the following integral
\[
\int e^{-x^2} \;dx
\] \vspace{3cm}
% Question 5
\problem Explain why everyone loves Mathematics. \pspace
% Question 6
\problem Compute the integral $\ds \int \sin x^2 \;dx$. \vspace{2cm}
% Question 7
\problem In the space provided, prove the Riemann Hypothesis.
\end{document}