-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
main_articulo.tex
62 lines (49 loc) · 1.52 KB
/
main_articulo.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
% Template: Articulo LaTeX
% Documento: Archivo principal
% Versión: DEV
% Codificación: UTF-8
%
% Autor: Pablo Pizarro R.
%
% Manual template: [https://latex.ppizarror.com/articulo]
% 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 artículo}
\def\documentsubtitle {}
\def\documentdate {\today}
\def\journalname {Revista, conferencia del artículo}
% IMPORTACIÓN DEL TEMPLATE
\input{template}
% CONFIGURA LOS AUTORES
\def\authorshf {P. Pizarro et al.} % Nombres en header-footer
% Otras funciones:
% \addauthornonumber{Nombre autor}
% \addauthorsamenumber[ORCID]{Nombre autor}{Institución}{email}
\addauthor[0000-0002-8745-6638]{Pablo Pizarro R.}{MSc. en Ingeniería, Universidad de Chile}{[email protected]}
\addauthor{Segundo Autor}{Profesor Asociado, Universidad de Chile}{[email protected]}
\addauthor{Tercer Autor}{Profesor, Nombre de la institución}{}
% INICIO DE PÁGINAS
\begin{document}
% CONFIGURACIÓN DE PÁGINA Y ENCABEZADOS
\templatePagecfg
% CONFIGURACIONES FINALES
\templateFinalcfg
% ======================= INICIO DEL DOCUMENTO =======================
% Título y nombre del autor
\inserttitle
% Resumen o Abstract
\begin{abstract}
\lipsum[1]
\end{abstract}
% Contenido
\begin{multicols}{2}
\input{example} % Ejemplo, se puede borrar
\end{multicols}
% FIN DEL DOCUMENTO
\end{document}