aboutsummaryrefslogtreecommitdiffstats
path: root/thesis.tex
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-05-25 18:55:55 -0500
committerMitsuo Tokumori <[email protected]>2023-05-25 18:55:55 -0500
commit51added26880538944ef2ee4fcea062950f8ee44 (patch)
tree228a8688f613547da9154558f026f4cc1e032f45 /thesis.tex
downloadthesis-51added26880538944ef2ee4fcea062950f8ee44.tar.gz
thesis-51added26880538944ef2ee4fcea062950f8ee44.tar.bz2
thesis-51added26880538944ef2ee4fcea062950f8ee44.zip
Initial commit.
I'm working on Entregable 2. tab:objetivos-resultados-verificacion is too long. I'm trying to convert it to longtable object.
Diffstat (limited to 'thesis.tex')
-rw-r--r--thesis.tex101
1 files changed, 101 insertions, 0 deletions
diff --git a/thesis.tex b/thesis.tex
new file mode 100644
index 0000000..e837762
--- /dev/null
+++ b/thesis.tex
@@ -0,0 +1,101 @@
+% TODO:
+% - Fix page numbering (APA)
+% - Fix chapter and section formatting
+% - Fix paragraph's first line indent
+% - Fix figure numbering and positioning (breaks paragraphs)
+
+% Appendix:
+%
+% Los anexos tienen que subirse con nombre similar a:
+% 20170895_RobertoTokumori_PatriciaNatividad_E1.2_Anexo1.xlsx
+
+% Preamble
+% ======================================================================
+
+\documentclass[
+ fontsize=12pt,
+ paper=a4,
+ spanish
+ %draft=true
+]{report} % report
+
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc} % breaks things? idk
+\usepackage[top=1in, bottom=1in, right=1in, left=1in]{geometry}
+
+\usepackage{graphicx}
+\usepackage{mathtools,amsmath,amssymb}
+% Amazing, problem solved. Thank you Sebastián.
+% http://byte77.blogspot.com/2011/08/no-cuadro-sino-tabla-el-tipico-dolor-de.html
+\usepackage[spanish,es-tabla]{babel}
+\usepackage{amsfonts}
+\usepackage{xcolor}
+\usepackage{multirow}
+\usepackage{booktabs}
+\usepackage{tabularx}
+\usepackage{float}
+\usepackage{csquotes}
+
+% Double line spacing
+\usepackage{setspace}
+\doublespacing
+
+\usepackage{longtable}
+
+% Issues with biber, requires environment
+% https://tex.stackexchange.com/q/154751/151663
+% Forget about it. biber is an extra package that doesn't come with TexLive in
+% ArchLinux and I didn't have it installed. (True issue: RTFM).
+\usepackage[
+ backend=biber,
+ style=apa,
+ %language=english,
+ sortcites=true,
+ sorting=nyt,
+ %citestyle=authoryear,
+ %maxcitenames=2,
+ %maxbibnames=99,
+ %uniquelist=false
+]{biblatex}
+\addbibresource{thesis.bib}
+
+\usepackage[colorlinks=true, allcolors=blue]{hyperref}
+\usepackage{cleveref}
+
+% Doesn't work with the packages I currently use:
+% https://tex.stackexchange.com/q/320632/151663
+%\crefname{table}{cuadro}{cuadros}
+%\crefname{table}{\spanishtablename}{\spanishtablename}
+%\crefname{figure}{figura}{figuras}
+%\crefname{section}{Sección}{Secciones}
+%\crefname{equation}{ecuación}{ecuación}
+%\renewcommand{\chaptername}{Capítulo}
+%\renewcommand{\contentsname}{Contenidos}
+%\newtheorem{remark}{Observación}[chapter]
+%\renewcommand{\listtablename}{Índice de tablas}
+%\renewcommand{\tablename}{Tabla}
+%\crefname{table}{Tabla}{Tabla}
+
+
+% Content
+% ======================================================================
+
+% Cover
+\begin{document}
+\include{chapter/01-cover.tex}
+% \tableofcontents{} % Nombre malo
+% Índice de Tablas
+% Índice de Figuras
+% Índice de Abreviaturas
+
+% \include{chapter/05-intro}
+\include{chapter/10-generalidades}
+\include{chapter/20-marco}
+\include{chapter/30-estado_del_arte}
+\include{chapter/40-resultados_esperados}
+\include{chapter/50-conclusiones}
+
+\newpage
+\printbibliography{}
+
+\end{document}