-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path8.01x.tex
159 lines (118 loc) · 3.62 KB
/
8.01x.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
\author{Thomas Backman, exscape@gmail.com}
\date{\today}
\title{Physics notes for edX 8.01x "Classical Mechanics"}
\documentclass[12pt,a4paper]{report}
% Add vertical space between paragraphs
\usepackage{parskip}
% Custom package!
% For strikethrough.
\usepackage{cancel}
% Create clickable URLs
%\usepackage{url}
% Multiline comments
\usepackage{verbatim}
\usepackage{graphicx}
% Aligned equations and more
\usepackage{mathtools}
\usepackage{amsfonts}
% Fix margins and indentation
\usepackage[cm]{fullpage}
\usepackage[
top = 1cm,
bottom = 2cm,
left = 1cm,
right = 1cm]{geometry}
% Reduce list spacing
\newenvironment{itemize*}
{\begin{itemize}
\setlength{\itemsep}{0pt}
\setlength{\parskip}{0pt}}
{\end{itemize}}
\usepackage[separate-uncertainty = true,multi-part-units=single]{siunitx}
\sisetup{per-mode = symbol}%
\setlength{\parindent}{0in}
% \bar{} is a bit too small (and grey?), \overline{} is a bit too wide!
% Here's a compromise:
\newcommand{\overbar}[1]{\mkern 1.5mu\overline{\mkern-1.5mu#1\mkern-1.5mu}\mkern 1.5mu}
% Take care of heading spacing etc.
\usepackage{titlesec}
\AtBeginDocument{%
\setlength\abovedisplayskip{0pt}
\setlength\belowdisplayskip{0pt}}
\titleformat{\chapter}
{\filcenter\normalfont\huge\bfseries}
{\chaptertitlename~\thechapter: } {0em} {}
\titlespacing*{\chapter}{0pt}{-30pt}{10pt}
\titlespacing\section{0pt}{4pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\titlespacing\subsection{0pt}{4pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\titlespacing\subsubsection{0pt}{3pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
% Force footnotes to stick to the bottom of pages,
% even when there isn't text covering the entire page.
\usepackage[bottom]{footmisc}
% For citations, etc.
\usepackage{natbib}
% For better <x> notation for averages
\usepackage{braket}
% For organization of tex files
\usepackage{subfiles}
% Links in the table of contents. hypertexnames=false fixes otherwise broken links (Chapter 2.1 exists in multiple parts,
% which otherwise causes all links to it to go to the one in Part I.)
% Should be loaded last!
\usepackage[colorlinks=true, urlcolor=blue,linkcolor=red,citecolor=red,hypertexnames=false]{hyperref}
\begin{document}
\maketitle
\tableofcontents
\part{Introduction and mathematics}
\subfile{Part_I_Intro_and_Math}
\part{Lecture notes}
\subfile{Week1.tex}
\subfile{Week2.tex}
\subfile{Week3.tex}
\subfile{Week4_Examreviewonly.tex}
\subfile{Week5.tex}
\subfile{Week6.tex}
\subfile{Week7.tex}
\subfile{Week8_Examreviewonly.tex}
\subfile{Week9.tex}
\subfile{Week10.tex}
\subfile{Week11.tex}
\subfile{Week12.tex}
\subfile{Week13_Examreviewonly.tex}
\subfile{Week14.tex}
\subfile{Week15.tex}
\part{Homework problems}
\setcounter{chapter}{0}
\subfile{Week1_Homework1.tex}
\subfile{Week2_Homework2.tex}
\subfile{Week3_Homework3.tex}
\subfile{Week4_Nohomework.tex}
\subfile{Week5_Homework4.tex}
\subfile{Week6_Homework5.tex}
\subfile{Week7_Homework6.tex}
\subfile{Week8_Nohomework.tex}
\subfile{Week9_Homework7.tex}
\subfile{Week10_Homework8.tex}
\subfile{Week12_Homework9.tex}
\subfile{Week13_Nohomework.tex}
\subfile{Week14_Homework10.tex}
\part{Exam questions}
\setcounter{chapter}{0}
\subfile{Midterm1.tex}
\subfile{Midterm2.tex}
\subfile{Midterm3.tex}
\subfile{Finalexam.tex}
\begin{thebibliography}{9}
\bibitem[Young \& Freedman(2007)]{uniphy}
Hugh D. Young, Roger A. Freedman,
Sears and Zemansky's \emph{University Physics},
Pearson Education,
12th Edition,
2007.
\bibitem[Serway \& Jewett(2010)]{serway}
Raymond A. Serway \& John W. Jewett, Jr.,
\emph{Physics for Scientists and Engineers},
Brooks/Cole,
8th Edition,
2010.
\end{thebibliography}
\end{document}