-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.tex
62 lines (53 loc) · 1.76 KB
/
header.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
\usepackage{cleveref}
\usepackage{semantic}
\usepackage{pdflscape}
\usepackage{framed}
\usepackage{fontspec}
\usepackage{ifxetex}
\newenvironment{widetwocolumn}
{
\begin{fullwidth}
\begin{multicols}{2}
}
{
\end{multicols}
\end{fullwidth}
}
\newenvironment{tufte-landscape}
{
\begin{landscape}
\advance\vsize6cm
\csname @colroom\endcsname=\vsize
\textheight=\vsize
\csname @colht\endcsname=\vsize
}
{
\end{landscape}
}
% https://tex.stackexchange.com/questions/307745/xelatex-latin-modern-mathbb-and-mathcal
\DeclareMathAlphabet{\mathcal}{OMS}{cmsy}{m}{n}
\let\mathbb\relax % remove the definition by unicode-math
\DeclareMathAlphabet{\mathbb}{U}{msb}{m}{n}
\mathlig{<N>}{\mathbb{N}}
% These are broken by default for an unknown reason. We fix them with matlig:
\mathlig{-}{\minus} % Normally renders as whitespace due to missing character.
\mathlig{|}{\mid} % Normally renders as "j"
\renewenvironment{quote}%
{\begin{leftbar}\begin{quotation}}%
{\end{quotation}\end{leftbar}}
\usepackage{lipsum}
% https://tex.stackexchange.com/questions/324754/what-is-the-default-font-in-the-tufte-handout-class
\setmainfont[Numbers=OldStyle, Scale = 1.0]{TeX Gyre Pagella}
\setsansfont[Scale=0.90]{TeX Gyre Heros}
\setmonofont{TeX Gyre Cursor}
% https://tex.stackexchange.com/questions/37561/getting-started-with-minion-pro-xelatex-and-mathspec
\ifxetex
\newcommand{\ttls}[2][5]{%
\begingroup\addfontfeatures{LetterSpace=#1}#2\endgroup
}
\renewcommand{\allcapsspacing}[1]{\ttls[15]{#1}}
\renewcommand{\smallcapsspacing}[1]{\ttls[10]{#1}}
\renewcommand{\allcaps}[1]{\ttls[15]{\MakeTextUppercase{#1}}}
\renewcommand{\smallcaps}[1]{\smallcapsspacing{\scshape\MakeTextLowercase{#1}}}
\renewcommand{\textsc}[1]{\smallcapsspacing{\textsmallcaps{#1}}}
\fi