-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeamer.tex
131 lines (113 loc) · 4.49 KB
/
beamer.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
% Autor: Pablo Baeyens (@pbaeyens)
% Email: [email protected]
% Licencia: CC BY-SA 3.0
%% Paquetes y configuración %
% Beamer
\PassOptionsToPackage{unicode}{hyperref} % Evita errores con caracteres no ASCII
\PassOptionsToPackage{naturalnames}{hyperref} % tex.stackexchange.com/questions/10555
\documentclass[compress]{beamer}
% Idioma
\usepackage[spanish]{babel} % Traducciones
\usepackage[utf8]{inputenc} % Uso de caracteres UTF-8
\usepackage{lmodern} % Fuentes de tamaño arbitrario
\usepackage[T1]{fontenc} % Permite copiar y evita errores
\uselanguage{Spanish} % Traducciones beamer
\languagepath{Spanish} % (tex.stackexchange.com/questions/168208)
% Matemáticas
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
% Colores
\definecolor{backg}{HTML}{F2F2F2} % Fondo
\definecolor{title}{HTML}{bdc3d1} % Títulos
\definecolor{comments}{HTML}{BDBDBD} % Comentarios
\definecolor{keywords}{HTML}{08388c} % Palabras clave
\definecolor{strings}{HTML}{FA5858} % Strings
\definecolor{links}{HTML}{2C2C95} % Enlaces
\definecolor{bars}{HTML}{045FB4} % Barras (gráfico)
% Código
\usepackage{listings}
\lstset{
language=[LaTeX]TeX,
basicstyle=\footnotesize,
morekeywords={href,uselanguage,languagepath,column},
otherkeywords={pause,usetheme,usecolortheme,useinnertheme,titlepage,tableofcontents,subtitle},
breaklines=true,
backgroundcolor=\color{backg},
keywordstyle=\color{keywords},
commentstyle=\color{comments},
stringstyle=\color{strings},
tabsize=2,
% Acentos, ñ, ¿, ¡ (tex.stackexchange.com/questions/24528)
extendedchars=true,
literate={á}{{\'a}}1 {é}{{\'e}}1 {í}{{\'i}}1 {ó}{{\'o}}1
{ú}{{\'u}}1 {ñ}{{\~n}}1 {¡}{{\textexclamdown}}1
{¿}{{?`}}1
}
% Gráficos
\usepackage{pgfplots}
\pgfplotsset{width=7cm,compat=1.8} % Opciones para gráficos
% Emoticonos
\usepackage{wasysym}
% tikz
\usepackage{tikz}
\usetikzlibrary{mindmap,trees,shadows}
\tikzset{ % Genera overlays
invisible/.style={opacity=0},
visible on/.style={alt={#1{}{invisible}}},
alt/.code args={<#1>#2#3}{\alt<#1>{\pgfkeysalso{#2}}{\pgfkeysalso{#3}}},
}
%% Comandos %%
\newcommand{\ejemplo}[1]{\lstinputlisting{./examples/#1}} % Mostrar código de ejemplos
\newcommand{\muestra}[1]{\input{./examples/#1}} % Mostrar ejemplos
\newcommand{\seccion}[1]{\input{./sections/#1}} % Incluir secciones
\newcommand{\espacio}{\vspace*{\baselineskip}} % Añade espacios
\newcommand{\beamer}{\texttt{beamer} } % Estilo único para beamer
\newcommand{\enlace}[3]{\href{#1}{\textbf{#2}} - {\small #3}} % Estílo único para refs
\newcommand{\comando}[1]{{\color{black}\textbackslash}{\color{keywords}#1}}
%% Temas %%
% Tema y tema de color
\usetheme{Dresden}
\usecolortheme{dolphin}
\useinnertheme{circles}
\setbeamercovered{transparent}
% Colores bloques
\setbeamercolor{block title}{bg=title,fg=links}
\setbeamercolor{block body}{bg=backg,fg=black}
\setbeamercolor{block title alerted}{fg=red!70!black,bg=title!92!red}
\setbeamercolor{block body alerted}{fg=black,bg=backg}
\setbeamercolor{block title example}{fg=green!70!black,bg=title!92!green}
\setbeamercolor{block body example}{fg=black,bg=backg}
% Enlaces (tex.stackexchange.com/questions/13423)
\hypersetup{colorlinks,linkcolor=,urlcolor=links}
% Quita enlaces de navegación (stackoverflow.com/questions/3017030)
\setbeamertemplate{navigation symbols}{}
% Quita barra inferior (stackoverflow.com/questions/1435837)
\setbeamertemplate{footline}{}
% Evita warnings boxes
\hfuzz=20pt
\vfuzz=20pt
% Evita wranings itemize
\renewcommand\textbullet{\ensuremath{\bullet}}
%% Título y otros %%
\title{Cómo usar \beamer} % Título
\subtitle{Una guía escrita en \beamer} % Subtítulo
\author[Pablo Baeyens]{ %
Pablo Baeyens Fernández \texorpdfstring{\\
\href{mailto:[email protected]}{[email protected]}}{}} % Autor y e-mail
\date{DGIIM} % Fecha
%% Presentación %%
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Índice}
\hypertarget{index}{}
\tableofcontents
\end{frame}
\seccion{intro.tex} % Introducción
\seccion{estructura.tex} % Estructura
\seccion{aspecto.tex} % Aspecto
\seccion{otros.tex} % Otros objetos
\seccion{enlaces.tex} % Enlaces de interés
\end{document}