generated from pitmonticone/LeanProject
-
Notifications
You must be signed in to change notification settings - Fork 66
/
print.tex
31 lines (26 loc) · 1.15 KB
/
print.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
% This file makes a printable version of the blueprint
% It should include all the \usepackage needed for the pdf version.
% The template version assume you want to use a modern TeX compiler
% such as xeLaTeX or luaLaTeX including support for unicode
% and Latin Modern Math font with standard bugfixes applied.
% It also uses expl3 in order to support macros related to the dependency graph.
% It also includes standard AMS packages (and their improved version
% mathtools) as well as support for links with a sober decoration
% (no ugly rectangles around links).
% It is otherwise a very minimal preamble (you should probably at least
% add cleveref and tikz-cd).
\documentclass[a4paper]{report}
\usepackage{geometry}
\usepackage{expl3}
\usepackage{amssymb, amsthm, mathtools}
\usepackage[unicode,colorlinks=true,linkcolor=blue,urlcolor=magenta, citecolor=blue]{hyperref}
\usepackage{cleveref}
\usepackage[warnings-off={mathtools-colon,mathtools-overbracket}]{unicode-math}
\input{macros/common}
\input{macros/print}
\title{Equational Theories}
\author{Contributors of the Equational Theories Project}
\begin{document}
\maketitle
\input{content}
\end{document}