forked from francofrizzo/apunte-metnum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapunte-metodos.tex
124 lines (105 loc) · 3.32 KB
/
apunte-metodos.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
\documentclass[11pt]{article}
\usepackage[a4paper, margin=2.25cm, headsep=1em]{geometry}
\usepackage{multicol}
\usepackage[spanish]{babel}
\spanishlcroman
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[letterspace=25]{microtype}
\usepackage{amsmath,amssymb}
% \usepackage{mathtools}
\usepackage{amsthm}
\usepackage{bm}
\usepackage{mleftright}
\usepackage{cases}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{calc}
\usepackage{pgfplots}
\usepgfplotslibrary{patchplots}
\usepackage{array}
\usepackage{xfrac}
\usepackage{enumitem}
\usepackage{framed}
\usepackage{fancyhdr}
\usepackage{float}
\usepackage[center]{caption}
\usepackage[onelanguage, spanish, vlined]{algorithm2e}
\NoCaptionOfAlgo
\LinesNumbered\RestyleAlgo{ruled}\IncMargin{1em}\DontPrintSemicolon
\SetArgSty{}\SetCommentSty{textsf}\SetFuncSty{textsf}
\SetKwInput{Input}{Entrada}
\SetKwInput{Output}{Salida}
\SetKwProg{For}{para}{ hacer}{fin}
\SetKwProg{Fn}{función}{:}{fin}
\SetKw{Error}{fallar}
\newcommand\myauthor{Franco Frizzo}
\newcommand\mytitle{Apunte de Métodos Numéricos}
\newcommand\mydate{Diciembre de 2016 - Abril de 2018\footnote{Sí, eso fue
lo que tardé en preparar el final}}
\usepackage[pdfauthor={\myauthor},
pdftitle={\mytitle},
hidelinks]{hyperref}
\theoremstyle{plain}
\newtheorem*{teo}{Teorema}
\newtheorem*{prop}{Proposición}
\newtheorem*{coro}{Corolario}
\newtheorem*{lema}{Lema}
\theoremstyle{definition}
\newtheorem*{defi}{Definición}
\newtheorem*{obs}{Observación}
\setlength{\parskip}{.5em}
\renewcommand{\baselinestretch}{1.05}
\setlength{\headsep}{1.7em}
\setlist[enumerate]{itemsep=.1em, topsep=0em}
\setlist[itemize]{itemsep=.1em, topsep=0em}
\renewcommand{\sin}{\ensuremath{\operatorname{sen}}}
\newcommand{\nats}{\ensuremath{\mathbb{N}}}
\newcommand{\reals}{\ensuremath{\mathbb{R}}}
\newcommand{\fall}[1]{\ensuremath{\left(\forall\;#1\right)\,}}
\newcommand{\exst}[1]{\ensuremath{\left(\exists\;#1\right)\,}}
\newcommand{\mat}[1]{\ensuremath{\mathbf{#1}}}
\renewcommand{\vec}[1]{\ensuremath{\mathbf{#1}}}
\newcommand{\trans}{\ensuremath{^{\mathrm{T}}}}
\newcommand{\ord}[1]{\ensuremath{\mathrm{O}(#1)}}
\newcommand{\rg}{\ensuremath{\operatorname{rg}}}
\newcommand{\im}{\ensuremath{\operatorname{Im}}}
\newcommand{\nul}{\ensuremath{\operatorname{Nul}}}
\newcommand{\fil}{\ensuremath{\operatorname{fil}}}
\newcommand{\col}{\ensuremath{\operatorname{col}}}
\newcommand{\proy}{\ensuremath{\operatorname{proy}}}
\newcommand{\vvecbox}[2]{\raisebox{-0.1cm}[#1][#1]{\ensuremath{#2}}}
\newcommand{\matbox}[3]{\raisebox{-0.1cm}[#1][#1]{\makebox[#2]{\ensuremath{#3}}}}
\newenvironment{sbmatrix}[1]
{\def\sbmatrixspace{#1}%
\left[ \hspace{\sbmatrixspace} \begin{matrix}}
{\end{matrix} \hspace{\sbmatrixspace} \right]}
\pagestyle{fancy}
\rhead{\MakeUppercase{\footnotesize{\textls{\myauthor}}}}
\lhead{\MakeUppercase{\footnotesize{\textls{\mytitle}}}}
\begin{document}
\title{\mytitle}
\author{\myauthor}
\date{\mydate}
\maketitle
\tableofcontents
\newpage
\input{1-sistemas-lineales}
\newpage
\input{9-estabilidad}
\newpage
\input{2-factorizacion-matrices}
\newpage
\input{3-metodos-iterativos}
\newpage
\input{4-autovalores}
\newpage
\input{5-interpolacion}
\newpage
% \input{6-integracion}
% \newpage
\input{7-cml}
\newpage
\input{8-ceros-funciones}
\end{document}