-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
116 lines (84 loc) · 2.28 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
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
\documentclass[twoside]{book}
\input{./preamble.tex}
\usepackage[margin=0.75in]{geometry}
\usepackage{fancyhdr}
\usepackage{quiver}
\usepackage[backend=biber,style=alphabetic,sorting=ynt]{biblatex}
\addbibresource{main.bib}
\usepackage{xr}
\usepackage{subfiles}
\externaldocument[M-]{\subfix{main}}
\declaretheorem[name=Problem, numberwithin=chapter, style=definition]{prob}
\title{Undergraduate Algebra}
\author{Robert}
\date{June 2024}
% \usetikzlibrary{decorations.pathreplacing}
\makeatletter
\edef\myauthor{\@author}
\makeatother
\makeatletter
\edef\mytitle{\@title}
\makeatother
\makeatletter
\edef\mydate{\@date}
\makeatother
\fancyhead{}
\fancyhead[L]{}
\fancyhead[C]{\textsc{\mytitle}}
\fancyhead[R]{}
\fancyfoot{}
\fancyfoot[LO, RE]{\thepage}
\begin{document}
\pagestyle{fancy}
\frontmatter
\begin{titlepage}
\vspace*{\fill}
\begin{center}
{\huge \mytitle}
\vskip 1.5em
{\large \myauthor}
\vskip 1.5em
{\large 0th Edition}
\end{center}
\vspace*{\fill}
\end{titlepage}
\tableofcontents
\listoftheorems[ignoreall, show={theorem}]
\chapter*{Preface}
\subfile{preface.tex}
\mainmatter
\setcounter{chapter}{-1}
\chapter{Preliminaries}
\subfile{chapter-0-preliminaries.tex}
\chapter{Groups}
\label{chapter:groups}
\subfile{chapter-1-groups.tex}
\chapter{Cyclic groups}
\label{chapter:cyclic-groups}
\subfile{chapter-3-cyclic-groups.tex}
\chapter{Permutation Groups}
\label{chapter:permutation-groups}
\subfile{chapter-4-permutation-groups.tex}
\chapter{Lagrange's Theorem}
\label{chapter:lagrange-theorem}
\subfile{chapter-lagrange-theorem.tex}
\chapter{Normal Subgroups and Homomorphisms}
\label{chapter:normal-subgroups-homomorphisms}
\subfile{chapter-normal-subgroups-homomorphisms.tex}
\chapter{Group actions}
\label{chapter:group-actions}
\subfile{chapter-group-actions.tex}
\chapter{Classification of finite abelian groups}
\label{chapter:classification-of-finite-abelian-groups}
\subfile{chapter-classification-of-finite-abelian-groups.tex}
\chapter{Rings}
\label{chapter:introduction-to-rings}
\subfile{chapter-introduction-to-rings.tex}
\chapter{Fields}
\label{chapter:intro-field-theory}
\subfile{chapter-introductory-field-theory.tex}
\backmatter
\addcontentsline{toc}{chapter}{References}
\nocite{*}
\printbibliography
\end{document}