-
Notifications
You must be signed in to change notification settings - Fork 4
/
sample.tex
70 lines (54 loc) · 1.31 KB
/
sample.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
% Homework template created by Jonathan Wheeler
% for use at Stanford University.
%
% Adapted from a jhwhw.cls file I found on
% github.
%
% In sublime, use Cmd-L, backspace to
% clear auxiliary files
\documentclass[notitlepage]{jmwhw}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage[parfill]{parskip}
\usepackage{minted}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage[euler]{textgreek}
\usepackage{multicol}
\usepackage{siunitx}
\usepackage{subcaption}
\usepackage{bookmark}
\pgfplotsset{compat=1.13}
\usetikzlibrary{decorations.pathmorphing,shapes}
\usepgfplotslibrary{fillbetween}
\usetikzlibrary{calc}
\author{Jonathan Wheeler} %TODO
\title{sample} %TODO
\begin{document}
% Used in syntax highlighting
\definecolor{bg}{rgb}{0.95,0.95,0.95}
\begin{titlepage}
\begin{center}
{\Large sample} % TODO
\bigskip
\begin{tabular}{rl}
SUNet ID: & 12345678 \\ % TODO
Name: & Jonathan Wheeler ([email protected]) \\ % TODO
Collaborators: & $\varnothing$
\end{tabular}
\bigskip
\end{center}
\toccontents
\vfill
\begin{center}
\parbox{10cm}{
By turning in this assignment, I agree by the Stanford honor code and
declare that all of this is my own work.
}
\end{center}
\end{titlepage}
% TODO
\input{problems/problem1}
\input{problems/problem2}
\end{document}