-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.tex
More file actions
76 lines (57 loc) · 1.58 KB
/
main.tex
File metadata and controls
76 lines (57 loc) · 1.58 KB
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
\documentclass[12pt]{article}
% package for using subsections
\usepackage{subfiles}
\usepackage[subpreambles=true]{standalone} % Use standalone with subpreambles
\usepackage{tcolorbox}
\usepackage{graphicx, amsmath, amsthm, amsfonts, amssymb, indentfirst, enumitem, esint, verbatim, mathtools, fancyhdr, comment, wasysym, mathrsfs, stmaryrd, boxedminipage}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage{float}
\usepackage{chngcntr}
\usepackage[nameinlink,capitalise]{cleveref}
\crefname{figure}{figure}{Figure}
\Crefname{figure}{Figure}{Figure}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\lstset{
language=C,
basicstyle=\ttfamily,
keywordstyle=\color{blue}\bfseries,
commentstyle=\color{gray},
stringstyle=\color{red},
identifierstyle=\color{black},
xleftmargin=\parindent,
showstringspaces=false, % Don't show spaces in strings
morecomment=[l]{//} % Define line comments
}
\counterwithin{figure}{section}
\setlength{\leftmargini}{0.25in}
\setlength{\leftmarginii}{0.25in}
\setlength{\leftmarginiii}{0.25in}
\setlength{\parindent}{0pt}
\setlength{\parskip}{10pt}
\setlist{topsep=0pt,leftmargin=*}
\pagestyle{fancy}
\lhead{Joshua Nichols, Levi Walker}
\rhead{PMA Notes}
\author{
Joshua Nichols\\
\and
Levi Walker
}
\date{Summer 2024}
\title{Principles of Mathematical Analysis (PMA) Notes}
\newcommand{\bbQ}{\mathbb{Q}}
\newcommand{\bbZ}{\mathbb{Z}}
\begin{document}
\maketitle
\tableofcontents
\pagebreak
\subfile{ch1/ch1.tex}
\end{document}