Informe Simple (FICCT - UAGRM)
作者
Leonardo Henry Añez Vladimiovna
最近上传
4 年前
许可
Creative Commons CC BY 4.0
摘要
Este documento está basado en la plantilla de la UCL
Todo el crédito a su autor: Sofia Feist
% ------------------------------------------------------------
% Documento basado en la siguiente plantilla:
% https://www.overleaf.com/latex/templates/ucl-bartlett-msc-thesis-template/hvjbhwnjgtpz
%------------------------------------------------------------
\documentclass[10pt]{report}
\author{the author}
%------------------------------------------------------------
%---------------------------DATOS----------------------------
%------------------------------------------------------------
\newcommand{\materia}{Nombre de la Materia}
\newcommand{\codigomateria}{COD555}
\newcommand{\grupo}{SA}
\newcommand{\titulo}{TITULO DEL TRABAJO}
\newcommand{\estudiante}{Nombre del Estudiante}
\newcommand{\registro}{123456789}
\newcommand{\fecha}{Febrero 2077}
\newcommand{\docente}{Nombre del Docente}
%------------------------------------------------------------
%-------------------------FIN DATOS--------------------------
%------------------------------------------------------------
\input{_Packages}
\setcounter{secnumdepth}{2}
\setcounter{tocdepth}{2}
\setstretch{1.0}
\graphicspath{{./Images/}}
\renewcommand{\cftchapaftersnum}{.}
\renewcommand{\cftsecaftersnum}{.}
\renewcommand{\cftsubsecaftersnum}{.}
\renewcommand{\cftdotsep}{0.3}
\renewcommand\thechapter{\Roman{chapter}}
\renewcommand\thesection{\arabic{section}}
\tolerance=1
\emergencystretch=\maxdimen
\hyphenpenalty=10000
\hbadness=10000
\renewcommand{\contentsname}{\normalfont\bfseries\LARGE{CONTENTS}}
\renewcommand{\listfigurename}{\normalfont\bfseries\LARGE{LIST OF FIGURES}}
\renewcommand{\listtablename}{\normalfont\bfseries\LARGE{LIST OF TABLES}}
\titleformat{\chapter}{\normalfont\bfseries\LARGE}{\thechapter.}{1em}{\MakeUppercase}
\titleformat{\section}{\normalfont\bfseries\large}{\thesection.}{1em}{\MakeUppercase}
\titlespacing*{\section} {0pt} {0pt} {15pt} % left, before, after
\titleformat{\subsection}{\normalfont\bfseries\large}{\thesubsection.}{1em}{}
\titlespacing*{\subsection} {0pt} {10pt} {10pt}
\titleformat{\subsubsection}{\normalfont\bfseries\large}{}{1em}{}
\titlespacing*{\subsubsection} {0pt} {10pt} {10pt}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyhead[L]{\materia}
\fancyhead[R]{\fecha}
\fancyfoot[C]{\thepage}
\numberwithin{figure}{section}
\numberwithin{table}{section}
%------------------------------------------------------------
% INICIO DEL DOCUMENTO
%------------------------------------------------------------
\begin{document}
% ------------------ TITULO -------------------
\begin{titlepage}
\begin{center}
\vspace*{-3cm}
\makebox[\textwidth]{\includegraphics[width=\paperwidth]{Image/Documento/banner.png}}
\vfill
{\LARGE\textbf{\MakeUppercase{\materia [\codigomateria-\grupo]}\\
\MakeUppercase{ \titulo }}}
\vspace{0.8cm}
\phantom{by}\\
\vspace{0.8cm}
{\large\textbf{\estudiante\\}Reg. \registro\\}
\vspace{0.5cm}
{\large\textbf{Docente: \docente\\}}
\vspace{1.5cm}
{\LARGE\textbf{\fecha}}
\vfill
\vspace{1.5cm}
\begin{figure*}[!b]
\centering
\includegraphics[scale=0.033]{Image/Documento/coat_of_arms.png}
\caption*{Santa Cruz de la Sierra, Santa Cruz, Bolivia}
\end{figure*}
\vspace{0.1cm}
\vspace{2cm}
\end{center}
\end{titlepage}
% ---------------- TABLA DE CONTENIDOS ------------------
\tableofcontents
% ---------------- LISTA DE FIGURAS ---------------------
\newpage
{\let\oldnumberline\numberline
\renewcommand{\numberline}{\figurename~\oldnumberline}
\listoffigures}
% ---------------------- ABSTRACT -----------------------
\newpage
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
% Contenido del ABSCTRACT
\lipsum[1-1]
% Fin del Contenido del ABSTRACT
\newline
\newline
% Palabras Clave del ABSTRACT
\textbf{Palabras Clave:} Keyword 1, Keyword 2, Keyword 3
% ------------------ CAPITULOS --------------------
\include{Chapters/Introduction}
\include{Chapters/Procedimiento}
% ------------------- BIBLIOGRAFIA ---------------------
\newpage
\printbibliography[title = {Referencias}]
\addcontentsline{toc}{chapter}{Referencias}
\end{document}