-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config_Listings.tex
59 lines (47 loc) · 1.91 KB
/
Config_Listings.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
% Define los caracteres con diacriticos dentro de listings
\lstset{literate=
{á}{{\'a}}1 {é}{{\'e}}1 {í}{{\'i}}1 {ó}{{\'o}}1 {ú}{{\'u}}1
{Á}{{\'A}}1 {É}{{\'E}}1 {Í}{{\'I}}1 {Ó}{{\'O}}1 {Ú}{{\'U}}1
{à}{{\`a}}1 {è}{{\`e}}1 {ì}{{\`i}}1 {ò}{{\`o}}1 {ù}{{\`u}}1
{À}{{\`A}}1 {È}{{\'E}}1 {Ì}{{\`I}}1 {Ò}{{\`O}}1 {Ù}{{\`U}}1
{ä}{{\"a}}1 {ë}{{\"e}}1 {ï}{{\"i}}1 {ö}{{\"o}}1 {ü}{{\"u}}1
{Ä}{{\"A}}1 {Ë}{{\"E}}1 {Ï}{{\"I}}1 {Ö}{{\"O}}1 {Ü}{{\"U}}1
{â}{{\^a}}1 {ê}{{\^e}}1 {î}{{\^i}}1 {ô}{{\^o}}1 {û}{{\^u}}1
{Â}{{\^A}}1 {Ê}{{\^E}}1 {Î}{{\^I}}1 {Ô}{{\^O}}1 {Û}{{\^U}}1
{œ}{{\oe}}1 {Œ}{{\OE}}1 {æ}{{\ae}}1 {Æ}{{\AE}}1 {ß}{{\ss}}1
{ű}{{\H{u}}}1 {Ű}{{\H{U}}}1 {ő}{{\H{o}}}1 {Ő}{{\H{O}}}1
{ç}{{\c c}}1 {Ç}{{\c C}}1 {ø}{{\o}}1 {å}{{\r a}}1 {Å}{{\r A}}1
{€}{{\EUR}}1 {£}{{\pounds}}1 {ñ}{{\H{n}}}1 {~} {$\sim$}{1}
}
% Costantes de colores
\definecolor{background}{HTML}{FCFCFD}
\definecolor{numbercolor}{rgb}{0.5,0.5,0.5}
% Estilo de los listados de codigo
\lstdefinestyle{ezam}
{
%caption={[Definición de \lstname] arcivo \lstname},
language=C++,
mathescape=true,
captionpos=b,
%title=ashasha \lstname,
backgroundcolor=\color{background},
breakatwhitespace=false,
breaklines=true,
tabsize=2,
showtabs=false,
showspaces=false,
showstringspaces=false,
numbers=left, numberstyle=\tiny\color{numbercolor}, numbersep=3pt,
basicstyle=\footnotesize\ttfamily,
keywordstyle=\color[HTML]{0071A8}, %218100 C30000
commentstyle=\color[HTML]{777777},
morecomment=[1]=\color{Crimson},
stringstyle=\color[HTML]{534bae},
identifierstyle=\color[HTML]{C30000} %002171 0071A8
}
\renewcommand{\lstlistingname}{Código}
% Otras definiciones
\newcommand{\conditional}[2]{\textsc{if} #1 \textsc{then} #2}
\newcommand{\statement}[2]{\emph{#1} es \emph{#2}}
\newcommand{\ifthen}[4]{\conditional{\statement{#1}{#2}}{\statement{#3}{#4}}}
\newcommand{\fullref}[1]{\ref{#1} de la página \pageref{#1}}