-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
74 lines (52 loc) · 1.44 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
\title{tesis}
\documentclass[a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{accents}
\usepackage{fancyhdr, blindtext}
\newcommand{\changefont}{%
\fontsize{9}{11}\selectfont
}
\DeclareMathOperator*{\esssup}{esssup}
\newcommand{\ubar}[1]{\underaccent{\bar}{#1}}
% Estilos de teoremas
\newtheorem{theorem}{Teorema}[chapter]
\newtheorem{lemma}[theorem]{Lema}
\newtheorem{proposition}{Proposición}[chapter]
\newtheorem{corollary}[theorem]{Corolario}
% Estilos de definiciones
\theoremstyle{definition}
\newtheorem{definition}{Definición}[chapter]
\newtheorem{example}{Ejemplo}[chapter]
\theoremstyle{remark}
\newtheorem{remark}{Observación}
\fancyhf{}
\fancyhead[LE]{\slshape \rightmark} %section
\fancyfoot[C]{\changefont \thepage}
\fancyhead[RO]{\slshape \leftmark} % chapter
\fancyfoot[C]{\changefont \thepage}
\pagestyle{fancy}
\begin{document}
\frontmatter
\input{chapters/portada}
\input{chapters/agradecimientos}
\tableofcontents
\chapter{Introducción}
\input{chapters/intro}
\mainmatter
\chapter{Martingalas}
\input{chapters/ch1}
\chapter{Problema de Paro Óptimo: Tiempo Discreto}
\input{chapters/ch2}
\chapter{Movimiento Browniano}
\input{chapters/ch3}
\chapter{Martingalas Continuas}
\input{chapters/ch4}
\chapter{Problema de Paro Óptimo: Tiempo Continuo}
\input{chapters/ch5}
\input{chapters/biblio}
\end{document}