%template para plan de tesis
%autor Harley Vera-Olivera
\UseRawInputEncoding
\documentclass[a4paper,openany,12pt]{book}
\input{contenido/includes.tex}
% Para definir ancho tabla
\newcolumntype{L}{>{\centering\arraybackslash}m{4cm}}
\usepackage[caption=false]{subfig}
%\input{colors.tex}
\usepackage{dsfont}
\usepackage[ruled,vlined]{algorithm2e}
\newtheorem{defn}{Definition}[section]
\pagenumbering{Roman}
\title{``TÍTULO DE LA TESIS"}
\autor1{NOMBRE COMPLETO DEL PRIMER AUTOR} % el "Br." se agrega automáticamente
\autor2{NOMBRE COMPLETO DEL SEGUNDO AUTOR}
\codigoautor1{CÓDIGO DE ESTUDIANTE 1}
\codigoautor2{CÓDIGO DE ESTUDIANTE 2}
\asesor{Dr./Mg. NOMBRE DEL ASESOR}
\orcidasesor{https://orcid.org/0000-0000-0000-0000}
\coasesor{Dr./Mg. NOMBRE DEL CO-ASESOR}
\orcidcoasesor{https://orcid.org/0000-0000-0000-0000}
\addto\captionsspanish{%
\renewcommand{\bibname}{Referencias} % ítem k) del Art. 20°: "Referencias", no "Bibliografía"
\renewcommand{\listtablename}{Índice de Tablas} % babel-spanish usa "Índice de cuadros" por defecto
\renewcommand{\listfigurename}{Índice de Figuras} % para que coincida en mayúscula con Índice de Tablas
}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Portada
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%% list of content %%%%%%%%%%%%%%%%%%%%%%%%
\tableofcontents %Inserta el índice general
\listoftables %Inserta el índice de tablas
\addcontentsline{toc}{chapter}{Índice de Tablas}
\listoffigures %Inserta el índice de figuras
\addcontentsline{toc}{chapter}{Índice de Figuras}
\setlength{\tabcolsep}{6pt} % Default value: 6pt Horizontal spacing
\renewcommand{\arraystretch}{1}% Default value: 1 Vertical spacing
\clearpage
\pagenumbering{arabic}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Contenido del plan de tesis según el Art. 20° (incisos b-j y l)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{contenido/cap_01_introduccion}
\input{contenido/cap_02_justificacion}
\input{contenido/cap_03_problema_investigacion}
\input{contenido/cap_04_objetivos}
\input{contenido/cap_05_marco_teorico}
\input{contenido/cap_06_hipotesis}
\input{contenido/cap_07_metodologia}
\input{contenido/cap_08_cronograma}
\input{contenido/cap_09_presupuesto}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Referencias
\bibliographystyle{apalike}
\bibliography{contenido/bibliog}
\addcontentsline{toc}{chapter}{Referencias}
%Anexos (según corresponda)
\input{contenido/cap_10_anexos}
\addcontentsline{toc}{chapter}{Anexos}
\end{document}