generated from otreblan/1def
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.sty
109 lines (92 loc) · 2.38 KB
/
main.sty
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
\ProvidesPackage{main}[2019/11/05]
\usepackage{silence}
\WarningFilter{latex}{You have requested release}
\WarningFilter{filehook}{}
\usepackage[pdfa, pdfusetitle, unicode=true]{hyperref}
\usepackage[spanish]{babel}
\usepackage[margin=2.5cm, a4paper]{geometry}
\usepackage{luacode}
\usepackage[shortlabels]{enumitem}
\usepackage{import}
\usepackage{xcolor}
\usepackage{fontspec}
\usepackage{setspace}
\usepackage{subfiles}
\usepackage{parskip}
\onehalfspacing
% Set font if found
\IfFontExistsTF{InconsolataGo Nerd Font}
{
\setmonofont{InconsolataGo Nerd Font}
}
{
% Nada
}
% Btw I use arch
\newcommand{\btw}{{\color{arch}\texttt{}} }
\newcommand{\git}{{\color{git}\texttt{}} }
% Esto sirve para poner ecuaciones
\usepackage{mathtools}
\usepackage{amssymb}
\usepackage{cancel}
\allowdisplaybreaks
% Esto sirve para poner imágenes{{{
\usepackage{graphicx}
\usepackage{svg}
\usepackage{subcaption}
\usepackage{float}
\graphicspath{ {ima/} }
% Un pequeño hack para que los nombres de los svg inicien con el nombre
% del archivo donde son llamados.
% Línea 283 /usr/share/texmf-dist/tex/latex/svg/svg.sty
\svgsetup{inkscapename=\currfilebase-\svg@file@name}
% Opciones de PGF/Tikz{{{
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\usetikzlibrary{external}
\usetikzlibrary{babel} % Sin esto algunas cosas no funcionan
% Esto crea un caché para las imágenes de tikz (depende del paquete svg)
\newcommand{\tikzprefix}{tikz/}
\svg@shell@mkdir{\tikzprefix}
\tikzexternalize[prefix=\tikzprefix]
% }}}
% }}}
% Colores de los links {{{
\definecolor{red}{HTML}{F22C40}
\definecolor{green}{HTML}{5AB738}
\definecolor{yellow}{HTML}{D5911A}
\definecolor{blue}{HTML}{407EE7}
\definecolor{magenta}{HTML}{6666EA}
\definecolor{cyan}{HTML}{00AD9C}
\definecolor{arch}{HTML}{1793D1}
\definecolor{git}{HTML}{F54D27}
\hypersetup{
colorlinks=true,
linkcolor=blue,
urlcolor=cyan,
citecolor=magenta,
}
%}}}
% Esto controla a la cabecera {{{
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\chead{ \textbf{\normalsize{Matemática III} }}
%\fancyhf[HL]{\includesvg[height=0.8\headheight]{Utec.svg}}
\fancyhf[FL]{\textbf{\thepage}}
\setlength{\headheight}{20pt}
\setlength{\textheight}{675pt}
%}}}
% Título {{{
\title{\textbf{Proyecto 1}}
% Aqui hay que poner a los autores
\author{
Alberto Oporto Ames\\
(\%)\\
\and <++>\\
\texttt{<++>}\\
%\and <++>\\
%\texttt{<++>}\\
}
%}}}