
"Universidad Internacional de La Rioja (UNIR) Master Degree Thesis template"

\documentclass{formato/UNIR}
%--- Input parameters: autho, title, etc. ---%
\titulo{[Thesis Title]}
\autor{[Author of the thesis]}
\director{[Tutor of the thesis]}
\fecha{[Date delivered]}
\ciudad{[City of the UNIR centre]}
\universidad{Universidad Internacional de la Rioja (UNIR)}
\escuela{[University Department/Division]}
\master{[Title of the master degree]}
\tipoTesis{Master Degree Thesis}
\keywords{KeyWord 1, Keyword 2, Keword N}
\keywordsEs{Plabra clave 1, Palabra clave 2, Palaba Clave N}
%--- Global config file ---%
\input{formato/conf}
%---  Faster compilation ---%
% To save time, comment out every file (chapter) to not be compiled (putting character % at the beginning fo the file)
\includeonly{
  contenido/TFM-00_Abstract,
  contenido/TFM-01_Introduccion,
  contenido/TFM-02_Objetivos_y_Metodologia,
  contenido/TFM-03_EstadoDelArte,
  contenido/TFM-04_Capitulo_X,
  contenido/TFM-09_Resultados,
  contenido/TFM-10_Bibliografia,
  contenido/TFM-11_Apendice_1,
%   contenido/TFM-11_Apendice_2 % This chapter will not be compiled, since it is commented  
}
%-------------------------------%
%           Document            %
%-------------------------------%
\begin{document}
    %--- Initial pages: cover,abstract,index,lists of tables and figures ---%. 
    \frontmatter
    \pagestyle{frontmatter}
        \maketitle          % Cover
        \tableofcontents    % Index
        \clearpage
        \include{contenido/TFM-00_Abstract}  %Abtract
        \listoffigures      % List of figures
        \listoftables       % List of tables
    
    %---    Body ---% 
    \mainmatter
    \pagestyle{mainmatter}
        %Include here all the files (chapters) in folder "contenido"
    	\include{contenido/TFM-01_Introduccion}
        \include{contenido/TFM-02_Objetivos_y_Metodologia}
        \include{contenido/TFM-03_EstadoDelArte}
        \include{contenido/TFM-04_Capitulo_X}
        \include{contenido/TFM-05_SeleccionAtrib}
        \include{contenido/TFM-09_Resultados}
    %--- Appendices and  bibliography ---%
    \include{contenido/TFM-10_Bibliografia}
    \begin{appendices}
        %Includes here all the appendices from folder 'contenido'.
        \include{contenido/TFM-11_Apendice_1}
        \include{contenido/TFM-11_Apendice_2}
    \end{appendices}
\end{document}