blob: d3948d48a22a970828f22884c6b2615aa29ad41d (
plain)
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
|
\documentclass[twoside]{book}
\usepackage[a4paper, outer=1.625in, inner=1.625in, top=1.5in, bottom=1.5in]{geometry}
\usepackage{ebgaramond-maths}
\usepackage[scale = 0.78]{plex-mono}
\usepackage[T1]{fontenc}
\usepackage[final]{pdfpages}
\usepackage{booktabs}
\usepackage{microtype}
\usepackage{hanging} % for bib indentations
\usepackage{ragged2e}
\usepackage{blindtext}
\usepackage[hyphens]{url}
\usepackage{hyperref}
\usepackage{xcolor}
\hypersetup{
colorlinks,
linkcolor={red!50!black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}
\urlstyle{tt}
\def \hangingindent {3em}
\def \credgap {15pt}
\def \ackgap {10pt}
\interfootnotelinepenalty=10000
\title{Aporia XXIV}
\author{The University of St Andrews Philosophy Society}
\date{June 2024}
\usepackage[raggedright]{titlesec}
\usepackage{fancyhdr}
\renewcommand\thesection{\arabic{section}}
\titleformat{\chapter}[display]{\sffamily\LARGE\bfseries\raggedright}{}{0em}{}
\titlespacing*{\chapter}{0pt}{-50pt}{40pt}
\titleformat{\section}{\large\bfseries\raggedright}{{\sf\thesection}}{2em}{}
\titleformat{\subsection}{\bfseries}{{\sf\thesubsection}}{1.5em}{}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{%
\markboth{#1}{}}
\renewcommand{\headrulewidth}{0pt} % remove lines as well
\fancyhead{}
\fancyfoot{}
\fancyhead[RO]{\thepage}
\fancyhead[LE]{\thepage}
\fancyhead[RE]{\small\sc\itshape\leftmark}
\fancyhead[LO]{\small\sc The Fresh Loaf}
\usepackage{suffix}
\newcommand\chapterauthor[1]{\authortoc{#1}\printchapterauthor{#1}}
\WithSuffix\newcommand\chapterauthor*[1]{\printchapterauthor{#1}}
\makeatletter
\newcommand{\printchapterauthor}[1]{%
{\parindent0pt\vspace*{-25pt}%
\linespread{1.1}\large\scshape#1%
\par\nobreak\vspace*{35pt}}
\@afterheading%
}
\newcommand{\authortoc}[1]{%
\addtocontents{toc}{\vskip-00pt}%
\addtocontents{toc}{%
\protect\contentsline{chapter}%
{\hskip1.3em\mdseries\scshape\protect\normalsize#1}{}{}}
\addtocontents{toc}{\vskip5pt}%
}
\makeatother
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\def \refsection {\newpage\section*{Bibliography}}
\counterwithin{figure}{section}
\renewcommand\thefigure{\arabic{figure}}
\begin{document}
%includepdf{APORIA IV COVER.pdf}
\frontmatter
\tableofcontents
\mainmatter
\input{ include }
\backmatter
%\input{coverrear}
\end{document}
|