-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.tex
58 lines (51 loc) · 1.36 KB
/
notes.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
\documentclass[8pt]{report}
\usepackage[T1]{fontenc}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{enumitem}
\usepackage{fixltx2e}
\usepackage{framed}
\usepackage[empty]{fullpage}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{mathtools}
\usepackage{parskip}
\usepackage{pdfpages}
\addtolength{\oddsidemargin}{-0.25in}
\addtolength{\evensidemargin}{-0.25in}
\addtolength{\textwidth}{0.5in}
\title{Class No. - Class Name}
\author{Student Name\\[1cm]{\small Professor: Professor Name}}
\date{Fall 2017}
\begin{document}
% Lazy floor function
\newcommand{\floor}[1]{\lfloor #1 \rfloor}
% Add in a box for a quick way to see where classes were started.
% This will also include an entry in the table of contents for the date.
\newcommand{\StartOfClass}[1] {
\addcontentsline{toc}{subsection}{\protect\numberline{}#1}
\noindent\fbox{%
\parbox{\textwidth}{%
\begin{center}
\textbf{Start of class #1}
\end{center}
}%
}
}
% Adds any handouts inline with the rest of the document.
% Adds handout to the table of contents.
\newcommand{\Handout}[1] {
\addcontentsline{toc}{section}{\protect\numberline{}#1}
\includepdf[pages={-}]{#1}
}
\maketitle
\newpage
\tableofcontents
\newpage
\chapter{Class Overview}
\section{Class Logistics}
\StartOfClass{2017.08.29}
\end{document}