-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathINDEX.tex
More file actions
128 lines (101 loc) · 2.96 KB
/
INDEX.tex
File metadata and controls
128 lines (101 loc) · 2.96 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
\documentclass[a4paper,10pt]{paper}
\usepackage[utf8]{inputenc}
\setlength{\parindent}{0pt}
%% say no to serif
\renewcommand*\familydefault{\sfdefault}
%% allow arbitrary font sizes
\usepackage{lmodern}%
\usepackage{amsmath}
\usepackage[inner=2.5cm,outer=2.5cm,bottom=2.5cm,top=2.5cm]{geometry}
%% allow referencing of enumerated lists
\usepackage{enumitem}
%% bibliography
\usepackage{nameref}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage[
style=apa,
backend=biber,
url=true,
doi=false,
eprint=false,
bibencoding=utf8
]{biblatex}
\DeclareLanguageMapping{british}{british-apa}
\DeclareFieldFormat{apacase}{#1} % otherwise apa sentence cases
\addbibresource{corpora.bib}
% ==========
% non-R code
% ==========
\RequirePackage{listings}
\lstset{
basicstyle=\footnotesize,
xleftmargin=1.4em,
framextopmargin=10pt,
framexbottommargin=10pt,
frame=tb, framerule=0pt,
}
\date{}
\author{
\scriptsize
\parbox{0.25\textwidth}{
\small
Anna Čermáková \\
\scriptsize
Centre for Corpus Research\\ College of Arts and Law\\ University of Birmingham\\
\texttt{a.cermakova@bham.ac.uk}
}
\parbox{0.30\textwidth}{
\small Anthony Hennessey \\
\scriptsize
Statistics and Probability\\ School of Mathematical Sciences\\ University of Nottingham \\
\texttt{anthony.hennessey@nottingham.ac.uk}
}
\\ \\
\parbox{0.30\textwidth}{
\small
Jamie Lentin \\
\scriptsize
Shuttle Thread\\ Manchester \\
\texttt{jamie.lentin@shuttlethread.com}
}
\parbox{0.25\textwidth}{
\small
Michaela Mahlberg \\
\scriptsize
Centre for Corpus Research\\ College of Arts and Law\\ University of Birmingham \\
\texttt{m.a.mahlberg@bham.ac.uk}
}
\parbox{0.25\textwidth}{
\small
Viola Wiegand \\
\scriptsize
Centre for Corpus Research\\ College of Arts and Law\\ University of Birmingham \\
\texttt{v.wiegand@bham.ac.uk}
}
}
\title{INDEX}
\begin{document}
\nocite{*}
\maketitle
\tableofcontents
\section{Corpora}
\printbibliography[heading=none,keyword=corpus]
\subsubsection{DNov - Included texts}
\printbibliography[heading=none,keyword=DNov]
\subsubsection{19C - Included texts}
\printbibliography[heading=none,keyword=19C]
\subsubsection{ChiLit - Included texts}
\printbibliography[heading=none,keyword=ChiLit]
\subsubsection{ArTs - Included texts}
\printbibliography[heading=none,keyword=ArTs]
\subsubsection{AAW- Included texts}
\printbibliography[heading=none,keyword=AAW]
\subsection{Updating INDEX.pdf} \label{se:update_index}
The INDEX pdf is compiled with \texttt{latexmk}. On Linux:
\begin{verbatim}
sudo apt install latexmk texlive-latex-extra texlive-bibtex-extra biber
latexmk --outdir=./build --pdf INDEX.tex && cp build/INDEX.pdf .
\end{verbatim}
On Mac, use the TeX Live distribution of your preferred editor, e.g. Texmaker + MacTeX.
\end{document}