forked from artemmavrin/latex-homework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.tex
31 lines (23 loc) · 1.19 KB
/
template.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
\documentclass{homework}
% This is a slightly-more-than-minimal document that uses the homework class.
% See the README at http://git.io/vZWL0 for complete documentation.
\name{(Your Name)} % Replace (Your Name) with your name.
\term{(Current Term)} % Replace (Current Term) with the current term.
\course{(Course Name)} % Replace (Course Name) with the course name.
\hwnum{(Number)} % Replace (Number) with the number of the homework.
%\hwtype{(Type)} % Uncomment and replace (Type) with the type of the
% homework (e.g, Assignment, Problem Set, etc.) if you
% don't want the document to be labeled as "Homework."
%\problemtitle{(Title)} % Uncomment and replace (Title) with the desired label
% for problems created with the problem environment.
%\solutiontitle{(Title)} % Uncomment and replace (Title) with the desired label
% for solutions created with the solution environment.
% Load any other packages you need here.
\begin{document}
\begin{problem}
Write the problem statement here.
\end{problem}
\begin{solution}
Write the solution here.
\end{solution}
\end{document}