-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
47 lines (37 loc) · 1.03 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
\documentclass[11pt,letterpaper]{article}
% Arial Font
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
% URLs
\usepackage{hyperref}
\hypersetup{%
colorlinks=true,
urlcolor=blue
}
% Multiple bibliographies
\usepackage[sorting=none, backend=biber, maxbibnames=99]{biblatex}
% Allow URLs in bibs to break on numbers, letters
\setcounter{biburlnumpenalty}{9000}
\setcounter{biburllcpenalty}{9000}
\setcounter{biburlucpenalty}{9000}
% Other packages
\usepackage{fullpage}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{mathrsfs} % To use \mathscr
% Header
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\headheight 35pt
\lhead{\textbf{\Large RAIR Lab Publication List}}
\chead{}
\rhead{}
\lfoot{} % Need to specify these, otherwise junk ends up in them
\cfoot{}
\rfoot{}
\headsep 1.5em
%Some bib entries have this character, which causes a problem
%If latex build ever fails due to a unicode character, add it here
\DeclareUnicodeCharacter{0308}{}
\begin{document}
\include{publications}
\end{document}