-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
156 lines (100 loc) · 3.43 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
117
118
119
120
121
122
123
124
125
126
127
\documentclass[12pt,twoside]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amssymb,amsthm,mathrsfs,amsfonts,xfrac,pifont}
\usepackage{array,tabularx}
\usepackage[retainorgcmds]{IEEEtrantools}
\usepackage{emerald,xcolor,tikz,tikz-cd}
\definecolor{lightergray}{rgb}{0.9,0.9,0.9}
\usepackage{enumitem}
\usepackage[
top=1.25in,
bottom=1.25in,
left=1.25in,
right=1.25in,
bindingoffset=0in,
heightrounded,
]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[LO]{\nouppercase{{\slshape\leftmark}}}
\fancyhead[RO]{\thepage}
\fancyhead[RE]{\nouppercase{{\slshape\rightmark}}}
\fancyhead[LE]{\thepage}
\renewcommand{\headrulewidth}{0.5pt}
\setlength{\headheight}{15pt}
\fancyfoot{}
%\cfoot{\nouppercase{\textbf{\textsc{\textsf{\thepage}}}}}
\usepackage{titlesec}
%\titleformat{hcommandi}[hshapei]{hformati}{hlabeli}{hsepi}{hbefore-codei}[hafter-codei]
%\renewcommand\thepart{\arabic{part}}
\titleformat{\part}[display]{\normalfont}{\hrule height 0.5pt\vfill\Large\itshape\partname\ \thepart}{25pt}{\bfseries\Huge}[\vfill]
\titlespacing*{\part}{0pt}{-35pt}{0pt}%[270pt]
\titleformat{\chapter}[display]
% {\normalfont}{\vspace{-2.875cm}\titlerule[0.5pt] \flushright \vspace{-13pt} \rule{100pt}{7pt}\\ \Large\itshape\chaptertitlename\ \thechapter}{50pt}{\bfseries\Huge}
{\normalfont}{\vspace{-3cm} \leavevmode\leaders\hrule height 0.5pt\hfill \raisebox{-6.5pt}{\rule{100pt}{7pt}} \flushright \Large\itshape\chaptertitlename\ \thechapter}{50pt}{\bfseries\Huge}
\titlespacing*{\chapter} {0pt}{35pt}{40pt}
% \usepackage{tocloft}
% \renewcommand{\cftdot}{ }
% \renewcommand{\cftpartfont}{\bfseries Part }
% \renewcommand{\cftpartaftersnum}{.}
% \renewcommand{\cftchapfont}{Chapter }
% \renewcommand{\cftchapaftersnum}{.}
% \renewcommand{\cftsecfont}{\S }
% \renewcommand{\cftsecaftersnum}{.}
% \usepackage{erewhon,cabin}
% \usepackage{titletoc}
% \titlecontents{thepart}
% [5.5em] %5.3
% {\bigskip}
% {\bfseries\contentslabel[Part~\thecontentslabel.]{5.5em}}%\thecontentslabel
% {\hspace*{-5.5em}}% unnumbered chapters
% {\hfill\contentspage}[\smallskip]%
% \titlecontents{chapter}
% [5.5em] %5.3
% {\medskip}
% {\contentslabel[\chaptername~\thecontentslabel.]{5.5em}}%\thecontentslabel
% {\hspace*{-5.5em}}% unnumbered chapters
% {\hfill\contentspage}[\smallskip]%
% %
% \titlecontents{section}
% [5.5em] % i
% {\smallskip}
% {\S\thecontentslabel. }%\thecontentslabel
% {}
% {\hfill\contentspage}%]
\usepackage[colorlinks=true,linkcolor=blue]{hyperref}
%\theoremstyle{definition}
\newtheoremstyle{dotless}{}{}{}{}{\bfseries}{}{ }{}
\theoremstyle{definition}
\newtheorem{exercise}{Exercise}[chapter]
\newtheorem{problem}[exercise]{Problem}
\def\bx{\begin{exercise}}
\def\ex{\end{exercise}}
\def\bp{\begin{problem}}
\def\ep{\end{problem}}
\newtheorem{extrap}{Extra Problem}
\newtheorem{extrae}[extrap]{Extra Exercise}
\theoremstyle{remark}
\newtheorem*{solution}{Solution}
\input{shortcuts}
\title{Solutions to Strom's\\\textit{Modern Classical Homotopy Theory}}
\author{Simon Rea}
\date{Last updated: \today}
\begin{document}
\frontmatter
\maketitle
\tableofcontents
\mainmatter
\part{The Language of Categories}
\input{chapters/ch01}
\input{chapters/ch02}
\part{Semi-Formal Homotopy Theory}
\input{chapters/ch03}
\input{chapters/ch04}
\part{Four Topological Inputs}
\input{chapters/ch12}
\appendix
\chapter{Some Algebra}
\input{chapters/apx}
\end{document}