-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.sty
31 lines (27 loc) · 841 Bytes
/
styles.sty
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
%% Fonts and typography
\RequirePackage{lmodern} % Latin Modern
\renewcommand{\sfdefault}{phv} % Helvetica
\RequirePackage[scaled]{beramono} % Bera Mono (Bitstream Vera Sans Mono)
\RequirePackage[final]{microtype} % Improved typography
\pretolerance = 1000 % Relaxes parameters for line breaks
\tolerance = 2000 % Relaxes parameters for line breaks
% General document styles
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE]{\leftmark}
\fancyhead[RO]{\rightmark}
\fancyfoot[LE,RO]{\thepage}
% Use this one for the online version
% \hypersetup{
% colorlinks,
% linkcolor={red!50!black},
% citecolor={blue!50!black},
% urlcolor={blue!80!black}
% }
% Use this one for the print version
\hypersetup{
colorlinks,
linkcolor={black},
citecolor={black},
urlcolor={black}
}