-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
106 lines (84 loc) · 2.82 KB
/
main.tex
File metadata and controls
106 lines (84 loc) · 2.82 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
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
\documentclass[12pt,oneside]{book}
% ---------- Packages ----------
\usepackage[letterpaper,margin=1in]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{amsmath,amssymb,amsthm,mathtools}
\usepackage{bm}
\usepackage{enumitem}
\usepackage{xcolor}
\usepackage{tikz-cd}
\usetikzlibrary{calc, decorations.markings, decorations.pathreplacing, shapes.geometric, positioning}
\usepackage{hyperref}
\usepackage{cleveref}
% ---------- Hyperref setup (clickable TOC, links) ----------
\hypersetup{
colorlinks=true,
linkcolor=blue!50!black,
urlcolor=blue!60!black,
citecolor=green!40!black,
pdftitle={Personal Mathematics Ideas},
pdfauthor={Augustinas Malinauskas}
}
% ---------- TOC depth ----------
\setcounter{tocdepth}{2} % sections + subsections
% ---------- Theorem-like environments ----------
\theoremstyle{plain}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{conjecture}[theorem]{Conjecture}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\theoremstyle{remark}
\newtheorem{remark}[theorem]{Remark}
% ---------- Title info ----------
\title{Personal Mathematics Ideas}
\author{Augustinas Malinauskas}
\date{\today} % will be set to the compile date
% ============================================================
\begin{document}
% ---------- Custom title page ----------
\begin{titlepage}
\centering
\vspace*{2cm}
\hrule height 1.6pt \vspace{0.5cm}
{\Huge\bfseries Personal Mathematics Ideas\par}
\vspace{0.5cm}
\hrule height 1.6pt
\vspace{1.5cm}
{\Large\itshape A Collection of Opinionated Proofs and Concepts\par}
\vspace{2.5cm}
{\Large\textbf{Augustinas Malinauskas}\par}
\vfill
\begin{minipage}{0.8\textwidth}
\centering
\small
Abstract:\\
These notes contain opinionated proofs and interesting ideas covering Linear Algebra, Calculus, Differential Geometry, Group Theory, Statistics, and related fields.
\end{minipage}
\vfill
{\large \today\par}
\end{titlepage}
% ---------- Front matter ----------
\frontmatter
\tableofcontents
% ---------- Main content ----------
\mainmatter
% ============================================================
% Part files
% ============================================================
\input{parts/linear-algebra/linear-algebra}
\input{parts/statistics/statistics}
\input{parts/differential-geometry/differential-geometry}
\input{parts/group-theory/group-theory}
\input{parts/complex-analysis/complex-analysis}
\input{parts/machine-learning/machine-learning}
\input{parts/reinforcement-learning/reinforcement-learning}
% ---------- Back matter (optional) ----------
\backmatter
% Bibliography or index can go here later.
\end{document}