-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
54 lines (41 loc) · 1.12 KB
/
main.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
\documentclass{article}
% SUBFILES
\usepackage{subfiles}
% STYLING
\usepackage[margin=.5in]{geometry}
\usepackage{multicol}
\usepackage{titlesec}
\titleformat{\section}
{\normalfont\scshape}{\thesection}{1em}{}
\usepackage[moderate]{savetrees} % fit in fewer pages
% DRAW DIAGRAMS
\usepackage{tikz}
\usetikzlibrary {arrows.meta,graphs,graphdrawing}
\usegdlibrary{layered}
% \usetikzlibrary{mindmap}
% TABLES
\usepackage{booktabs}
% MATH
\usepackage{mathtools, amsmath, amssymb, physics}
\usepackage{tensor}
\usepackage{bbold} % for identity one
% CUSTOMIZED COMMANDS
\newcommand{\p}{\partial}
\newcommand{\La}{\mathcal{L}}
\newcommand{\ra}{\rightarrow}
\renewcommand{\dv}[3][]{\frac{d^{#1}{#2}}{d{#3}^{#1}}} % Follow Carroll's derivative notation. \mathrm{d} for one forms
\begin{document}
\tableofcontents
\newpage
\section{Classical Mechanics}
\subfile{classical-mechanics}
\newpage
\section{Field Theory}
\subfile{effective-field-theory}
\newpage
\section{General Relativity}
\subfile{general-relativity}
\newpage
\section{Thermodynamics and Statistical Physics}
\subfile{thermodynamics-and-statistical-physics}
\end{document}