myshellin/report/Informe.tex

95 lines
1.9 KiB
TeX
Raw Normal View History

2021-06-19 17:54:33 -04:00
\title{Proyecto Semestral}
\author{}
\date{\today}
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc} %\ This allows spanish tildes
\usepackage[spanish]{babel}
\usepackage{array}
\usepackage{adjustbox}
\usepackage{titling}
2021-06-27 15:20:53 -04:00
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm,letterpaper]{geometry}
2021-06-19 17:54:33 -04:00
\usepackage{amsmath}
\usepackage{listings}
\usepackage{xcolor}
2021-07-26 00:55:56 -04:00
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{mathptmx}
\newcommand{\Quad}{\hspace*{1em}}
2021-06-27 14:07:00 -04:00
\lstdefinestyle{freefempp}{
language=C,
basicstyle=\scriptsize\ttfamily,
commentstyle=\itshape\color{gray},
keywordstyle=\color{blue},
numberstyle=\color{red},
stringstyle=\color{red},
identifierstyle=\color{violet},
showstringspaces=false,
%float,
%frame=single,
%numbers=left
}
2021-06-19 17:54:33 -04:00
\lstset{
2021-07-24 12:33:25 -04:00
basicstyle=\scriptsize\ttfamily,
2021-06-27 14:07:00 -04:00
columns=flexible,
breaklines=true,
inputencoding=utf8,
extendedchars=true,
literate={á}{{\'a}}1 {é}{{\'e}}1 {í}{{\'i}}1 {ó}{{\'o}}1 {ú}{{\'u}}1 {ñ}{{\~n}}1 {Á}{{\'A}}1 {É}{{\'E}}1 {Í}{{\'I}}1 {Ó}{{\'O}}1 {Ú}{{\'U}}1 {Ñ}{{\~N}}1,
style=freefempp
2021-06-19 17:54:33 -04:00
}
\usepackage{hyperref}
\hypersetup{colorlinks=true,allcolors=black,pdftitle={Proyecto Semestral}}
\usepackage{hypcap}
\pretitle{%
\begin{center}
\LARGE
\includegraphics[width=4cm]{ubblogo.png}\\[\bigskipamount]
\Large
\textbf{Sistemas Operativos}\\[\smallskipamount]
}
\posttitle{\end{center}}
\begin{document}
\hypersetup{pageanchor=false}
\clearpage\maketitle
\thispagestyle{empty}
\begin{flushright}
\textbf{Integrantes:}\\
2021-07-20 20:02:06 -04:00
Christopher Cromer
2021-06-19 17:54:33 -04:00
\end{flushright}
\begin{flushright}
\textbf{Profesor:}\\
Carlos Faúndez
\end{flushright}
\newpage
\clearpage
\thispagestyle{empty}
\tableofcontents
\newpage
\hypersetup{pageanchor=true}
\pagenumbering{arabic}
2021-06-27 14:07:00 -04:00
\include{sections/introduccion}
2021-06-19 17:54:33 -04:00
2021-07-26 00:55:56 -04:00
\include{sections/funcionamiento}
\include{sections/codigo}
2021-06-27 14:07:00 -04:00
\include{sections/conclusiones}
2021-06-19 17:54:33 -04:00
\end{document}