-
Notifications
You must be signed in to change notification settings - Fork 0
/
Presentation.lagda
52 lines (50 loc) · 1.36 KB
/
Presentation.lagda
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
\documentclass[xetex, 11pt,spanish]{beamer}
\usepackage[spanish]{babel}
\usetheme{Madrid}
\makeatletter
\def\th@mystyle{%
\normalfont % body font
\setbeamercolor{block title example}{bg=orange,fg=white}
\setbeamercolor{block body example}{bg=orange!20,fg=black}
\def\inserttheoremblockenv{exampleblock}
}
\makeatother
\theoremstyle{mystyle}
\newtheorem*{remark}{Remark}
\usepackage{agda}
\usepackage{fontspec}
\usepackage{unicode-math}
\setmainfont{DejaVu Serif}
\setsansfont{DejaVu Sans}
\setmainfont{XITS}
\setmathfont{XITS Math}
% Alternatively:
%\setmathfont{DejaVu Math TeX Gyre}
\setmonofont{DejaVu Sans Mono}
\usepackage{latex/agda}
\usepackage{catchfilebetweentags}
\begin{document}
\author{Ferreira Juan David}
\title{Agda: Un lenguaje con tipos dependientes desde la práctica}
%\subtitle{}
%\logo{}
%\institute{}
%\date{}
%\subject{}
%\setbeamercovered{transparent}
%\setbeamertemplate{navigation symbols}{}
\begin{frame}[plain]
\maketitle
\end{frame}
\input{../theory/intro.tex}
\input{../theory/Semigroup.tex}
\input{../structures/Semigroup.tex}
\input{../structures/Monoid.tex}
\input{../structures/Group.tex}
%\input{../theory/IsAction.tex}
\input{../structures/IsAction.tex}
\input{../structures/GSet.tex}
\input{../theory/MorphismsOfGSet.tex}
\input{../structures/Equivariant.tex}
\input{../theory/RepresentationTheory.tex}
\end{document}