-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
68 lines (56 loc) · 1.75 KB
/
main.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
% Template: Presentación LaTeX
% Documento: Archivo principal
% Versión: 2.2.7 (10/06/2024)
% Codificación: UTF-8
%
% Autor: Pablo Pizarro R.
%
% Manual template: [https://latex.ppizarror.com/presentacion]
% Licencia MIT: [https://opensource.org/licenses/MIT]
% CREACIÓN DEL DOCUMENTO
\pdfminorversion=7
\documentclass[
spanish, % Idioma: spanish, english, etc.
aspectratio=43, % 1610, 169, 149, 54, 43, 32
xcolor={dvipsnames,table}
]{beamer}
% INFORMACIÓN DEL DOCUMENTO
\def\documenttitle {Título de la presentación en portada}
\def\documentsubtitle {Título de la presentación}
\def\documentsubject {Tema a tratar}
\def\documentauthor {Nombre del autor}
\def\coursename {Curso}
\def\coursecode {CO-1234}
\def\universityname {Universidad de Chile}
\def\universityfaculty {Facultad de Ciencias Físicas y Matemáticas}
\def\universitydepartment {Departamento de la Universidad}
\def\universitydepartmentimage {departamentos/fcfm}
\def\universitylocation {Santiago de Chile}
% CONFIGURACIÓN DATOS BEAMER
\title[\documentsubtitle]{\documenttitle}
\subtitle{\documentsubject}
\author[\documentauthor]{
\documentauthor,
\footnotesize \href{mailto:[email protected]}{[email protected]}
}
\institute[UChile]{
\includegraphics[height=1.1cm]{\universitydepartmentimage} \\
\medskip
\universityname \\
\universityfaculty \\
\universitydepartment
}
\date[\today]{\footnotesize{\today}}
% IMPORTACIÓN DEL TEMPLATE
\input{template}
% INICIO DE LAS PÁGINAS
\begin{document}
% CONFIGURACIÓN DE PÁGINA Y ENCABEZADOS
\templatePagecfg
% CONFIGURACIONES FINALES
\templateFinalcfg
% ======================= INICIO DEL DOCUMENTO =======================
\input{example} % Ejemplo, se puede borrar
% FIN DEL DOCUMENTO
\end{document}