%% LLT: Turn off some annoying warnings...
\RequirePackage{silence}
\WarningFilter{titlesec}{Non standard sectioning command}
\WarningFilter{scrreprt}{Usage of package}
\WarningFilter{scrreprt}{Activating an ugly workaround}
% **************************************************
% Document Class Definition
% **************************************************
\documentclass[%
paper=letter, % paper size
twoside=true, % onesite or twoside printing
openright, % doublepage cleaning ends up right side
parskip=full, % spacing value / method for paragraphs
chapterprefix=true, % prefix for chapter marks
11pt, % font size
headings=normal, % size of headings
bibliography=totoc, % include bib in toc
listof=totoc, % include listof entries in toc
titlepage=on, % own page for each title page
captions=tableabove, % display table captions above the float env
draft=false, % value for draft version
]{scrreprt}%
% **************************************************
% Debug LaTeX Information
% **************************************************
%\listfiles
% **************************************************
% Information and Commands for Reuse
% **************************************************
\newcommand{\thesisTitle}{Título trabajo de grado}
\newcommand{\thesisName}{Autor Apellido}
\newcommand{\thesisSubject}{}
\newcommand{\thesisDate}{Septiembre 20, 2022}
\newcommand{\thesisVersion}{}
\newcommand{\thesisFirstReviewer}{Revisor 1}
\newcommand{\thesisFirstReviewerUniversity}{\protect{Universidad Tecnológica de Bolívar}}
\newcommand{\thesisFirstReviewerDepartment}{Facultad de ingeniería}
\newcommand{\thesisSecondReviewer}{Revisor 2}
\newcommand{\thesisSecondReviewerUniversity}{\protect{Universidad Tecnológica de Bolívar}}
\newcommand{\thesisSecondReviewerDepartment}{Facultad de ingeniería}
\newcommand{\thesisFirstSupervisor}{Director 1}
\newcommand{\thesisSecondSupervisor}{Director 2}
\newcommand{\thesisUniversity}{\protect{Universidad Tecnológica de Bolívar}}
\newcommand{\thesisUniversityDepartment}{Facultad de ingeniería}
\newcommand{\thesisUniversityInstitute}{Programa de ingeniería mecatrónica}
\newcommand{\thesisUniversityGroup}{}
\newcommand{\thesisUniversityCity}{Cartagena}
\newcommand{\thesisUniversityStreetAddress}{Km 1, vía Turbaco}
\newcommand{\thesisUniversityPostalCode}{130010}
% **************************************************
% Load and Configure Packages
% **************************************************
\usepackage[utf8]{inputenc} % defines file's character encoding
\usepackage[spanish,es-tabla, es-noquoting]{babel} % babel system, adjust the language of the content
% \usepackage[english]{babel} % babel system, adjust the language of the content
\usepackage[ % clean thesis style
figuresep=colon,%
sansserif=false,%
hangfigurecaption=false,%
hangsection=true,%
hangsubsection=true,%
colorize=full,%
colortheme=bluemagenta,%
% LLT: Use biber if using UTF8 encoding
% bibsys=bibtex,%
bibsys=biber,%
bibfile=bib-refs,%
bibstyle=authoryear,%
]{cleanthesis}
\hypersetup{ % setup the hyperref-package options
pdftitle={\thesisTitle}, % - title (PDF meta)
pdfsubject={\thesisSubject},% - subject (PDF meta)
pdfauthor={\thesisName}, % - author (PDF meta)
plainpages=false, % -
colorlinks=false, % - colorize links?
pdfborder={0 0 0}, % -
breaklinks=true, % - allow line break inside links
bookmarksnumbered=true, %
bookmarksopen=true %
}
% **************************************************
% Document CONTENT
% **************************************************
\begin{document}
% --------------------------
% rename document parts
% --------------------------
%\renewcaptionname{ngerman}{\figurename}{Abb.}
%\renewcaptionname{ngerman}{\tablename}{Tab.}
\renewcaptionname{spanish}{\figurename}{Fig.}
\renewcaptionname{spanish}{\tablename}{Tabla.}
% --------------------------
% Front matter
% --------------------------
\pagenumbering{roman} % roman page numbing (invisible for empty page style)
\pagestyle{empty} % no header or footers
\input{contenido/titlepages} % INCLUDE: all titlepages
\cleardoublepage
\pagestyle{plain} % display just page numbers
\input{contenido/abstract} % INCLUDE: the abstracts (español e inglés)
\cleardoublepage
%
\input{contenido/agradecimientos} % INCLUDE: acknowledgement
\cleardoublepage
%
\setcounter{tocdepth}{1} % define depth of toc
\tableofcontents % display table of contents
\listoffigures
\listoftables
\clearpage
\setlist{nolistsep,leftmargin=*}
% \cleardoublepage
% --------------------------
% Body matter
% --------------------------
\pagenumbering{arabic} % arabic page numbering
\setcounter{page}{1} % set page counter
\pagestyle{maincontentstyle} % fancy header and footer
\input{contenido/chapter-introduccion} % INCLUDE: introduction
\input{contenido/chapter-antecedentes} % INCLUDE: related work
\input{contenido/chapter-metodologia} % INCLUDE: system
\input{contenido/chapter-resultados} % INCLUDE: concepts
\input{contenido/chapter-conclusion} % INCLUDE: conclusion
\cleardoublepage
% --------------------------
% Back matter
% --------------------------
{%
\setstretch{1.1}
\renewcommand{\bibfont}{\normalfont\small}
\setlength{\biblabelsep}{0pt}
\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
\printbibliography
}
\clearpage
\newpage
% \mbox{}
% **************************************************
% End of Document CONTENT
% **************************************************
\end{document}