EPN-Informes
Author
Elliot.C12
Last Updated
8달 전
License
LaTeX Project Public License 1.3c
Abstract
Plantilla para informes de laboratorios de la EPN (No es plantilla oficial ya la EPN le da paja hacer uno)
%=================== Modificado por Elliot.C12 ======================
%=================== Basado en UPIITA ===========================
%=================== Plantilla de informe EPN ===================
\documentclass[12pt,a4paper]{article}
\title{Plantilla para trabajos EPN}
\usepackage{STY/EPN}
\usepackage{STY/slashbox}
%=================== Añade Otro nivel de sección ===================
\usepackage{titlesec}
\setcounter{secnumdepth}{4}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\makeatletter
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{-2.5ex\@plus -1ex \@minus -.25ex}%
{1.25ex \@plus .25ex}%
{\normalfont\normalsize\bfseries}}
\makeatother
\setcounter{secnumdepth}{4} % how many sectioning levels to assign numbers to
\setcounter{tocdepth}{4} % how many sectioning levels to show in ToC
%=================== Paquetes para DF ===================
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\tikzstyle{startstop} = [rectangle, rounded corners,
minimum width=3cm,
minimum height=1cm,
text centered,
draw=black,
fill=red!30]
\tikzstyle{io} = [trapezium,
trapezium stretches=true, % A later addition
trapezium left angle=70,
trapezium right angle=110,
minimum width=3cm,
minimum height=1cm, text centered,
draw=black, fill=blue!30]
\tikzstyle{process} = [rectangle,
minimum width=3cm,
minimum height=1cm,
text centered,
text width=3cm,
draw=black,
fill=orange!30]
\tikzstyle{decision} = [diamond,
minimum width=3cm,
minimum height=1cm,
text centered,
draw=black,
fill=green!30]
\tikzstyle{arrow} = [thick,->,>=stealth]
%======================================
\asignatura{Asignatura} %Texto en la parte derecha abajo
\carrera{Ing. Ciencias de Computación}
\titulo{Titulo del informe}
\grupo{Grupo}
\alumno{Nombre Estudiante}
\profesor{Nombre Profesor}
\begin{document}
\maketitlepage % Portada
\newpage
%=============================================================
%=================== Inicio del Documeunto ===================
%=============================================================
%=================== Indices ===================
\tableofcontents %Índice
\newpage
%\listoffigures %Índice de figuras
%\newpage
%\listoftables %Índice de tablas
%\newpage
%=================== Cuerpo del Documento ===================
\input{Documento/1-Introducción}
\newpage
\input{Documento/2-Desarrollo}
\newpage
\input{Documento/3-Conclusiones}
%=================== Bibliografia ===================
\newpage
\addcontentsline{toc}{section}{Bibliografía}
\printbibliography[title={Bibliografía}] %Referencias
\end{document}