forked from Template-Latex/Template-Informe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
executable file
·101 lines (82 loc) · 2.44 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
92
93
94
95
96
97
98
99
100
101
% Template: Informe LaTeX
% Documento: Archivo principal
% Versión: 6.8.3 (22/04/2020)
% Codificación: UTF-8
%
% Autor: Pablo Pizarro R.
% Facultad de Ciencias Físicas y Matemáticas
% Universidad de Chile
%
% Manual template: [https://latex.ppizarror.com/informe]
% Licencia MIT: [https://opensource.org/licenses/MIT]
% CREACIÓN DEL DOCUMENTO
\documentclass[letterpaper,11pt,oneside]{article}
% INFORMACIÓN DEL DOCUMENTO
\def\titulodelinforme {Título del informe}
\def\temaatratar {Tema a tratar}
\def\autordeldocumento {Nombre del autor}
\def\nombredelcurso {Curso}
\def\codigodelcurso {CO-1234}
\def\nombreuniversidad {Universidad de Chile}
\def\nombrefacultad {Facultad de Ciencias Físicas y Matemáticas}
\def\departamentouniversidad {Departamento de la Universidad}
\def\imagendepartamento {departamentos/fcfm}
\def\imagendepartamentoescala {0.2}
\def\localizacionuniversidad {Santiago, Chile}
% INTEGRANTES, PROFESORES Y FECHAS
\def\tablaintegrantes {
\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}{\localizacionuniversidad}
\end{tabular}}{
}
% CONFIGURACIONES
\input{lib/config}
% IMPORTACIÓN DE LIBRERÍAS
\input{lib/env/imports}
% IMPORTACIÓN DE FUNCIONES Y ENTORNOS
\input{lib/cmd/all}
% IMPORTACIÓN DE ESTILOS
\input{lib/style/all}
% CONFIGURACIÓN INICIAL DEL DOCUMENTO
\input{lib/cfg/init}
% INICIO DE LAS PÁGINAS
\begin{document}
% PORTADA
\input{lib/page/portrait} % Se puede borrar
% CONFIGURACIÓN DE PÁGINA Y ENCABEZADOS
\input{lib/cfg/page}
% RESUMEN O ABSTRACT
\begin{resumen}
\lipsum[1] % Párrafo ejemplo, se puede borrar
\end{resumen}
% TABLA DE CONTENIDOS - ÍNDICE
\input{lib/page/index} % Se puede borrar
% CONFIGURACIONES FINALES
\input{lib/cfg/final}
% ======================= INICIO DEL DOCUMENTO =======================
\input{lib/etc/example} % Ejemplo, se puede borrar
% FIN DEL DOCUMENTO
\end{document}