forked from Template-Latex/Template-Informe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
executable file
·91 lines (76 loc) · 2.05 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
% Template: Informe LaTeX
% Documento: Archivo principal
% Versión: 7.5.9 (13/10/2021)
% Codificación: UTF-8
%
% Autor: Pablo Pizarro R.
%
% Manual template: [https://latex.ppizarror.com/informe]
% Licencia MIT: [https://opensource.org/licenses/MIT]
% CREACIÓN DEL DOCUMENTO
\documentclass[
spanish, % Idioma: spanish, english, etc.
letterpaper, oneside
]{article}
% INFORMACIÓN DEL DOCUMENTO
\def\documenttitle {Título del informe}
\def\documentsubtitle {}
\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\universitydepartmentimagecfg {height=1.57cm}
\def\universitylocation {Santiago de Chile}
% INTEGRANTES, PROFESORES Y FECHAS
\def\authortable {
\begin{tabular}{ll}
Integrantes:
& \begin{tabular}[t]{l}
Integrante 1 \\
Integrante 2
\end{tabular} \\
Profesor:
& \begin{tabular}[t]{l}
Profesor 1
\end{tabular} \\
Auxiliar:
& \begin{tabular}[t]{l}
Auxiliar 1
\end{tabular} \\
Ayudantes:
& \begin{tabular}[t]{l}
Ayudante 1 \\
Ayudante 2
\end{tabular} \\
\multicolumn{2}{l}{Ayudante de laboratorio: Ayudante 1} \\
& \\
\multicolumn{2}{l}{Fecha de realización: \today} \\
\multicolumn{2}{l}{Fecha de entrega: \today} \\
\multicolumn{2}{l}{\universitylocation}
\end{tabular}
}
% IMPORTACIÓN DEL TEMPLATE
\input{template}
% INICIO DE PÁGINAS
\begin{document}
% PORTADA
\templatePortrait
% CONFIGURACIÓN DE PÁGINA Y ENCABEZADOS
\templatePagecfg
% RESUMEN O ABSTRACT
\begin{abstractd}
\lipsum[1] % Párrafo ejemplo, se puede borrar
\end{abstractd}
% TABLA DE CONTENIDOS - ÍNDICE
\templateIndex
% CONFIGURACIONES FINALES
\templateFinalcfg
% ======================= INICIO DEL DOCUMENTO =======================
\input{src/etc/example} % Ejemplo, se puede borrar
% FIN DEL DOCUMENTO
\end{document}