forked from Bigomby/tfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libroETSI.sty
1453 lines (1224 loc) · 43.4 KB
/
libroETSI.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%Paquete de estilos. Puede utilizarse con Latex y LuaLatex, pero siempre codificando los ficheros de entrada en UTF-8.
%:BLOQUE 00
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{libroETSI}[2014/03/16 Manejando los estilos de la ETSI]
%:Para establecer opciones del paquete
\RequirePackage{kvoptions}
\SetupKeyvalOptions{%
family=dtsc,
prefix=dtsc@, % Prefijo de todos los comandos creados por el paquete dtsc-8
}
\DeclareBoolOption{Myfinal}
\DeclareBoolOption{Minion}
\DeclareBoolOption{English}
\DeclareBoolOption{MyCap}
\ProcessKeyvalOptions* % Procesa las opciones
%:BLOQUE 01 Un conjunto de paquetes de propósitos generales
%:Para hacer uso de muchas de las nuevas posibilidades de e-tex
\usepackage{etoolbox}
%:Para fijar algunas incompatibilidades de paquetes previos
\usepackage{fixltx2e}
%:Un problema interno de Tex equivalente al allocated de C para asignar espacio de memoria. En esta dirección está explicado: http://tex.stackexchange.com/questions/38607/no-room-for-a-new-dimen
\usepackage{etex}
\reserveinserts{28}
%:Si estamos utilizando las clases KOMA
\@ifundefined{KOMAClassName}
{
\usepackage{scrextend}
}
{
\usepackage{scrhack}
\def\tt{\texttt}
}
\deffootnote{0.75em}{1em}{\makebox[0.75em][l]{\textsuperscript{\thefootnotemark}}}
%:Para compilar con LuaLatex o no
\usepackage{ifluatex}
%:Para poder utilizar la opción draft como un if
\usepackage{ifdraft}
%:Para que algunos comandos funcionen
\usepackage{ifthen}
%:Para determinar si puede haber capítulos en el documento
\makeatletter
\@ifclassloaded{book}{\dtsc@MyCaptrue}
{
\@ifclassloaded{report}{\dtsc@MyCaptrue}
{
\@ifclassloaded{scrreprt}{\dtsc@MyCaptrue}
{
\@ifclassloaded{scrbook}{\dtsc@MyCaptrue}{\dtsc@MyCapfalse}
}
}
}
\makeatother
%:Para mejorar la apariencia
\makeatletter
\ifdtsc@Myfinal
\usepackage[protrusion=true,expansion=true]{microtype}
\pdfprotrudechars=2
\pdfadjustspacing=2
\fi
\makeatother
%:Para mostrar dónde están los términos que se incluyen en el índice. Tiene que estar al principio
%\makeatletter
%\ifdtsc@Myfinal
%\else
% \usepackage{showidx}
%\fi
%\makeatother
%:Para que latex sea menos restrictivo a la hora de colocar las figuras
\setcounter{topnumber}{4}
\setcounter{bottomnumber}{4}
\setcounter{totalnumber}{4}
\setcounter{dbltopnumber}{4}
\renewcommand{\topfraction}{.97}
\renewcommand{\bottomfraction}{.97}
\renewcommand{\textfraction}{.03}
\renewcommand{\floatpagefraction}{.9}
\renewcommand{\dbltopfraction}{.97}
\renewcommand{\dblfloatpagefraction}{.9}
\setlength{\floatsep}{12pt plus 6pt minus 4pt}
\setlength{\textfloatsep}{15pt plus 8pt minus 5pt}
\setlength{\intextsep}{12pt plus 6pt minus 4pt}
\setlength{\dblfloatsep}{12pt plus 6pt minus 4pt}
\setlength{\dbltextfloatsep}{15pt plus 8pt minus 5pt}
%:Para permitir una posible ruptura de fórmulas aligneadas
\interdisplaylinepenalty=2500
%:Para penalizar líneas huérfanas y viudas
\clubpenalty=9996
\widowpenalty=9999
\brokenpenalty=4991
\predisplaypenalty=10000
\postdisplaypenalty=1549
\displaywidowpenalty=1602
%:Para evitar blanco excesivo por arriba y abajo de las secciones
\newskip\mfilskip
\mfilskip=0pt plus 1cm\relax
\newcommand{\mfilbreak}{\vspace{\mfilskip}\penalty -200%
\ifdim\lastskip<\mfilskip\vspace{-\lastskip}\else\vspace{-\mfilskip}\fi}
\pretocmd{\section}{\mfilbreak}{}{}
%:Para gestionar la dimensión de las páginas
\usepackage{geometry}
%:Salvamos el tamaño de la fuente normal para utilizar dimensiones relativas
\newdimen\lnormal
\newdimen\lbnormal
\makeatletter
\lnormal=\f@size pt
\lbnormal=\f@baselineskip
\makeatother
%:BLOQUE 2 Idioma, Fuentes y codificación
%:Paquete relacionado con el idioma
\makeatletter
\ifdtsc@English
%:Inglés como idioma principal
\usepackage[spanish, main=english]{babel}
\selectlanguage{english}
\else
%:Castellano como idioma principal
\usepackage[english, spanish, es-ucroman, es-noshorthands, es-nosectiondot, es-noindentfirst, es-nolists, activeacute]{babel}
\spanishdecimal{.}
\selectlanguage{spanish}
\fi
\makeatother
%:Un conjunto de macros relacionados con el lenguaje
\makeatletter
\ifdtsc@English
\def\Prefacename{Preface}
\def\glossaryname{Glossary}%
\newcommand{\theoremname}{Theorem}
\newcommand{\lemmaname}{Lemma}
\newcommand{\propertyname}{Property}
\newcommand{\corollaryname}{Corollary}
\newcommand{\definitionname}{Definition}
\newcommand{\solutionname}{Solution}
\newcommand{\listprogram}{Programs}
\newcommand{\programname}{Code}
\newcommand{\summaryname}{Summary}
\newcommand{\examplename}{Example}
\def\lstlistingname{Code}
\def\lstlistlistingname{Code}
\def\lstlistlistingname{List of Codes}
\def\shortcontentsname{Short Contents}%
\def\notationname{Notation}%
\else
\addto\captionsspanish
{%
\def\figurename{Figura}%
\def\tablename{Tabla}%
\def\listfigurename{{\'I}ndice de Figuras}
\def\listtablename{{\'I}ndice de Tablas}
\def\lstlistlistingname{{\'I}ndice de C{\'o}digos}
\def\glossaryname{Glosario}%
\def\contentsname{{\'I}ndice}%
}
\def\glossaryname{Glosario}
\def\chaptername{Cap{\'i}tulo}
\def\Prefacename{Prefacio}%
\def\refname{Referencias}%
\def\abstractname{Resumen}%
\def\bibname{Bibliograf{\'i}a}
\def\appendixname{Ap\'endice}
\def\indexname{{\'I}ndice Alfab\'etico}
\def\listprogram{C{\'o}digos}
\def\lstlistingname{C{\'o}digos}
\def\programname{C{\'o}digo}
\def\theoremname{Teorema}
\def\lemmaname{Lema}
\def\propertyname{Propiedad}
\def\corollaryname{Corolario}
\def\definitionname{Definici{\'o}n}
\def\proofname{Demostraci{\'o}n}
\def\examplename{Ejemplo}
\def\solutionname{Soluci{\'o}n}
\def\summaryname{Resumen}
\def\shortcontentsname{{\'I}ndice Abreviado}%
\def\notationname{Notaci{\'o}n}%
\fi
\makeatother
%:Para la gestión de la codificación
\ifluatex
\else
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\fi
%:Gestión de fuentes matemáticas
\ifluatex
\usepackage[no-math]{fontspec}
\usepackage{lualatex-math}
\usepackage{luatextra}
\fi
%:Para mejorar el escalado de algunos símbolos matemáticos. Tiene que cargarse antes del paquete amsmath
\usepackage{exscale}
%:Paquetes matemáticos
\usepackage[cmex10]{amsmath}
\usepackage{mathtools}
%:Por si queremos (podemos) o no utilizar el paquete Minion como fuente matemática y los símbolos asociados
\makeatletter
\ifdtsc@Minion
\usepackage{MnSymbol}
\usepackage[fullfamily,opticals,lf, minionint, mnsy]{MinionPro}
\newcommand{\bm}{\ensuremath{\boldsymbol}}
\else
\usepackage{amssymb}
\usepackage{mathptmx}
\usepackage{amsfonts}
\usepackage{bm}
\fi
\makeatother
%:Para utilizar una fuente caligráfica rebuscada, con el comando \mathscr{}
\usepackage{mathrsfs}
%:Para utilizar algunos símbolos extendidos parecidos a el conjunto de los reales, etc.
\usepackage{dsfont}
%:Para permitir más de 16 alfabetos matemáticos en LuaLatex
\ifluatex
\makeatletter
\def\new@mathgroup{\alloc@8\mathgroup\mathchardef\@cclvi}
\patchcmd{\document@select@group}{\sixt@@n}{\@cclvi}{}{}
\patchcmd{\select@group}{\sixt@@n}{\@cclvi}{}{}
\makeatother
\fi
%:Problemas con lualatex y símbolos largos, como raíz cuadrada
\ifluatex
\DeclareSymbolFont{raizlua}{OMX}{yhex}{m}{n}
\DeclareMathRadical{\sqrtlua}{raizlua}{"70}{raizlua}{"70}
\else
\newcommand{\sqrtlua}{\sqrt}
\fi
%:Este paquete permite modificar el tamaño de la fuente a utilizar. Se recupera el tamaño con \normalsize. Por ejemplo, \fontsize{100}{120}\helveticam, suponiendo que el comando \helveticam está definido adecuadamente (ver más adelante) y el texto se escribirá en el formato indicado por \helveticam, con el tamaño que se indique, 100 y el interlineado del segundo parámetro, 120.
\usepackage{fix-cm}
%:Empieza todo lo relacionado con FUENTES
%:Definición de las fuentes sin serif
\ifluatex
\setsansfont[Ligatures=TeX, % Se puede obtener un texto sin serif con \ssfamily
Scale=0.95,
]{Arial Narrow}
% Declaración de nuevas familias de fuentes. Casi equivale a definir comandos
\newfontfamily\helveticam{Arial} % Helvética
\newfontfamily\helveticab{Arial Bold} % Helvética Bold
\newfontfamily\helveticai{Arial Italic} % Helvética itálica
\newfontfamily\helveticax{Arial Bold Italic} % Helvética Bold Itálica
% Estas declaraciones facilitan la utilización de las fuentes correspondientes
\newfontfamily\titular{ArialNarrow-Bold} % Para los titulares
\newfontfamily\titulart{ArialNarrow-Bold} % Para los titulos
\newfontfamily\titulari{ArialNarrow-BoldItalic} % Para los titulares oblicua
\newfontfamily\titulartoc{ArialNarrow} % Para el TOC
\newfontfamily\titulartocb{ArialNarrow-Bold} % Para el TOC bold
\newfontfamily\titulartoci{ArialNarrow-BoldItalic} % Para el TOC oblicua
% Para poner algunas marcas
\newfontfamily\marcaregistrada{ArialNarrow}
%:Fin de la definición de fuentes para LuaLatex
\else
%: -------------------------- Definición de las fuentes para Latex
\renewcommand{\sfdefault}{phv}
\newcommand{\helveticam}{\usefont{T1}{phv}{m}{n}\selectfont }
\newcommand{\helveticab}{\usefont{T1}{phv}{b}{n}\selectfont }
\newcommand{\helveticai}{\usefont{T1}{phv}{m}{it}\selectfont }
\newcommand{\helveticax}{\usefont{T1}{phv}{b}{it}\selectfont }
\newcommand{\titular}{\usefont{T1}{phv}{bc}{n}\selectfont }
\newcommand{\titulari}{\usefont{T1}{phv}{bc}{it}\selectfont }
\newcommand{\titulart}{\usefont{T1}{phv}{bc}{n}\selectfont }
\newcommand{\titulartoc}{\usefont{T1}{phv}{mc}{n}\selectfont }
\newcommand{\titulartocb}{\usefont{T1}{phv}{bc}{n}\selectfont }
\newcommand{\titulartoci}{\usefont{T1}{phv}{mc}{it}\selectfont }
% Para poner algunas marcas
\newcommand{\marcaregistrada}{\usefont{T1}{phv}{mc}{n}\selectfont }
%: Fin de la definición de las fuentes para Látex
\fi
% Declaremos las dimensiones. Las dimensiones corresponden a los valores 5, 9, 11, 13, 14, 21, 24, 28. Estas son las que corresponden cuando la normal es 10 hay que definir tanto las longitudes como el salto de línea, que se denominarán igual salvo por una b después de la l
\newdimen\lcinco
\newdimen\lbcinco
\newdimen\lnueve
\newdimen\lbnueve
\newdimen\lonce
\newdimen\lbonce
\newdimen\ltrece
\newdimen\lbtrece
\newdimen\lcatorce
\newdimen\lbcatorce
\newdimen\ldocho
\newdimen\lbdocho
\newdimen\lveinte
\newdimen\lbveinte
\newdimen\lvuno
\newdimen\lbvuno
\newdimen\lvcuatro
\newdimen\lbvcuatro
\newdimen\lvocho
\newdimen\lbvocho
\newdimen\ltdos
\newdimen\lbtdos
\lcinco=\dimexpr0.5\dimexpr\lnormal
\lbcinco=\dimexpr0.5\dimexpr\lbnormal
\lnueve=\dimexpr0.9\dimexpr\lnormal
\lbnueve=\dimexpr0.9\dimexpr\lbnormal
\lonce=\dimexpr1.1\dimexpr\lnormal
\lbonce=\dimexpr1.1\dimexpr\lbnormal
\ltrece=\dimexpr1.3\dimexpr\lnormal
\lbtrece=\dimexpr1.3\dimexpr\lbnormal
\lcatorce=\dimexpr1.4\dimexpr\lnormal
\lbcatorce=\dimexpr1.4\dimexpr\lbnormal
\ldocho=\dimexpr1.8\dimexpr\lnormal
\lbdocho=\dimexpr1.8\dimexpr\lbnormal
\lveinte=\dimexpr2.0\dimexpr\lnormal
\lbveinte=\dimexpr2.0\dimexpr\lbnormal
\lvuno=\dimexpr2.1\dimexpr\lnormal
\lbvuno=\dimexpr2.1\dimexpr\lbnormal
\lvcuatro=\dimexpr2.4\dimexpr\lnormal
\lbvcuatro=\dimexpr2.4\dimexpr\lbnormal
\lvocho=\dimexpr2.8\dimexpr\lnormal
\lbvocho=\dimexpr2.8\dimexpr\lbnormal
\ltdos=\dimexpr3.2\dimexpr\lnormal
\lbtdos=\dimexpr3.2\dimexpr\lbnormal
%:Comandos para las diferentes partes del texto
\newcommand{\achaptext}{\fontsize{\lvcuatro}{\lbvcuatro} \titular} % Para el texto de los capítulos
\newcommand{\achapnum}{\fontsize{\lvcuatro}{\lbvcuatro} \titular} % Para el número de los capítulos
\newcommand{\parttitlesans}{\fontsize{\lvocho}{\lbvocho} \titular } % Para las partes
\newcommand{\aheadsecc}{\fontsize{\ltrece}{\lbtrece} \titular} %Para las secciones
\newcommand{\aheadsubsecc}{\fontsize{\lnormal}{\lbnormal} \titular} %Para las subsecciones y demás
\newcommand{\aheadteoremas}{\fontsize{\lnormal}{\lbnormal}\titular} %Teoremas
\newcommand{\aheadpruebas}{\fontsize{\lnormal}{\lbnormal}\titulari} % Demostraciones
\newcommand{\rhfont}{\fontsize{\lnormal}{\lbnormal}\titular} %Cabeceras de páginas
\newcommand{\rhpagefont}{\fontsize{\lnueve}{\lbnueve}\titular} %Números de páginas
\newcommand{\tocchap}{\fontsize{\lonce}{\lbonce}\titulartocb} % Para el TOC
\newcommand{\tocschap}{\fontsize{\lonce}{\lbonce}\titulartocb}
\newcommand{\tocsecc}{\fontsize{\lnormal}{\lbnormal}\titulartoc}
\newcommand{\tocsubsecc}{\fontsize{\lnormal}{\lbnormal}\titulartoc}
\newcommand{\titulofont}{\fontsize{\lvcuatro}{\lbvcuatro}\titulart} %Título
\newcommand{\subtitulofont}{\fontsize{\lveinte}{\lbveinte}\titulart} %Subtítulo
\newcommand{\halftitlefont}{\fontsize{\lcatorce}{\lbcatorce}\titulart} %Título intermedio
\newcommand{\autorfont}{\fontsize{\lcatorce}{\lbcatorce}\titulart} %Autor
\newcommand{\afiliafont}{\fontsize{\lnueve}{\lbnueve}\sffamily} %Afiliación
\newcommand{\editionfont}{\fontsize{\lcatorce}{\lbcatorce}\titulart} %Editorial
\newcommand{\locfont}{\fontsize{\lcinco}{\lbcinco}\helveticam} %Lugar
\newcommand{\reffont}{\normalfont } % Para las referencias
\usepackage{textcomp}
\normalfont
%:Se acaba todo lo relacionado con las FUENTES
%:BLOQUE 3 TOC y listas diversas. Tiene que estar antes de hyperref para evitar problemas
%:Definiciones genéricas del TOC
\setcounter{tocdepth}{3} % El nivel hasta el que se muestra el índice, comienza en 0
\makeatletter
\renewcommand{\@tocrmarg}{4em} % Para despegar el final de la línea del número
\makeatother
%:Para definir cómo aparecen los capítulos en el TOC
\makeatletter
\ifdtsc@MyCap
\renewcommand*\l@chapter[2]
{
\addpenalty{-\@highpenalty}%
\vskip 0.5em \@plus\p@
\@dottedtocline{0}{0em}{1em}{\tocchap #1}{\tocchap #2}
}
\fi
\makeatother
%:Para definir cómo aparecen los subcapítulos en el TOC
\makeatletter
\ifdtsc@MyCap
\newcommand*\l@subchapter[2]
{
\addpenalty{-\@highpenalty}%
\vskip 0.5em \@plus\p@
\@dottedtocline{1}{1em}{2em}{\tocschap #1}{\tocschap #2}
}
\makeatother
%:Para definir cómo aparecen las secciones en el TOC
\makeatletter
\renewcommand*\l@section[2]
{
\addpenalty{-\@highpenalty}%
\vskip 0.1em \@plus\p@
\@dottedtocline{1}{1em}{2.5em}{\tocsecc #1}{\tocsecc #2}
}
\makeatother
%:Para definir cómo aparecen los problemas de los capítulos de problemas de un libro de problemas
\makeatletter
\newcommand*\l@problema[2]
{
\addpenalty{-\@highpenalty}%
\vskip 0.1em \@plus\p@
\@dottedtocline{1}{1em}{2.5em}{\tocsecc #1}{\tocsecc #2}
}
\makeatother
%:Para definir cómo aparecen las subsecciones en el TOC
\makeatletter
\renewcommand*\l@subsection[2]
{
\addpenalty{-\@highpenalty}%
\vskip 0.05em \@plus\p@
\@dottedtocline{2}{3.5em}{3em}{\tocsubsecc #1}{\tocsubsecc #2}
}
\makeatother
%:Para definir cómo aparecen las subsubsecciones en el TOC
\makeatletter
\renewcommand*\l@subsubsection[2]
{
\addpenalty{-\@highpenalty}%
\vskip 0.05em \@plus\p@
\@dottedtocline{3}{6.5em}{3em}{\tocsubsecc #1}{\tocsubsecc #2}
}
\makeatother
%:Para borrar los puntos en el TOC
\makeatletter
\renewcommand{\@dotsep}{10000}
\makeatother
%:Para definir cómo aparecen las listas de elementos del frontmatter y backmatter en el TOC
% Para evitar un warning sobre las listas
\makeatletter
\providecommand*{\toclevel@listasf}{0} % Listas del frontmatter (prefacio, notación, acrónimos)
\providecommand*{\toclevel@listasb}{0} % Listas del backmatter(índice de figuras, tablas, etc)
\makeatother
%:Para definir el formato de estas dos listas. Observar que está copiado de cómo aparecen los capítulos en el TOC y ligeramente modificado.
% frontmatter
\makeatletter
\newcommand*\l@listasf[2]
{
\addpenalty{-\@highpenalty}%
\vskip 0.05em \@plus\p@
\@dottedtocline{0}{0em}{2em}{\fontsize{\lnueve}{\lbnueve}\selectfont \helveticai #1}{\fontsize{\lnueve}{\lbnueve}\titulartoc #2}
}
\makeatother
% backmatter
\makeatletter
\newcommand*\l@listasb[2]
{
\addpenalty{-\@highpenalty}%
\vskip 0.05em \@plus\p@
\@dottedtocline{0}{0em}{2em}{\fontsize{\lnueve}{\lbnueve}\selectfont \helveticai #1}{\tocsecc #2}
}
\makeatother
%:Para cambiar la indentación de las captions de las figuras en la lista de figuras
\makeatletter
\renewcommand*\l@figure[2]{\@dottedtocline{1}{.1em}{2.8em}{\tocsecc #1}{\tocsecc #2}}
\makeatother
%:Para cambiar la indentación de las captions de las tablas en la lista de tablas
\makeatletter
\renewcommand*\l@table[2]{\@dottedtocline{1}{.1em}{2.8em}{\tocsecc #1}{\tocsecc #2}}
\makeatother
%:FIN del formato de las listas
%:Fin de definiciones del TOC
%:BLOQUE 04 Páginas, cabeceras de páginas y estilos de los elementos:capítulo, subcapítulo, sección, etc.
%:TITLESEC
%:Cabeceras y estilos de páginas
\usepackage[noindentafter, pagestyles, extramarks, explicit]{titlesec}
\newlength{\plusheadl}
\newlength{\plusheadr}
\makeatletter
\ifdtsc@MyCap
\setlength{\plusheadl}{2.5em}
\setlength{\plusheadr}{2.5em}
\else
\setlength{\plusheadl}{0em}
\setlength{\plusheadr}{0em}
\fi
\makeatother
\widenhead[\plusheadl][0pt]{0pt}{\plusheadr}
% Cómo hay que poner los números de las páginas
\newcommand{\numpagpar}{\makebox[\plusheadl][l]{\rhpagefont \thepage}}
\newcommand{\numpagodd}{\makebox[\plusheadr][r]{\rhpagefont \thepage}}
%:Definiendo la regla de la cabecera de las páginas normales
\makeatletter
\newcommand\esirulehead{\setesirulehead{0.5\p@}}
\newcommand\setesirulehead[1]{%
\ifdim#1=\z@
\let\makeheadrule\@empty
\else
\def\makeheadrule{\color{gray}\rule[-.3\baselineskip]{\linewidth}{#1}}%
\fi}
\makeatother
%:Estilos de páginas
% La definición del estilo de páginas es muy simple: \newpagestyle{nombre del estilo}{\comandos generales \sethead[izquierda pág par][centro pág par][derecha pág par]{izquierda pág impar}{centro pág impar}{derecha pág impar}\setfoot[izquierda pág par][centro pág par][derecha pág par]{izquierda pág impar}{centro pág impar}{derecha pág impar}}
\newpagestyle{esitscCD}
{
\esirulehead
\sethead[\numpagpar \rhfont\chaptername\ \thechapter. \;\chaptertitle][][]%
{}{}{\rhfont\thesection\ \;\sectiontitle \numpagodd}
}
\newpagestyle{primera}
{
\esirulehead \footrule
\sethead[][][]{\includegraphics[width=2 cm]{logoUS.pdf}}%
{\raisebox{0.8cm}{\begin{minipage}{0.515\textwidth}
\centering
{\aheadsubsecc \fromtitulacion}\\
\vspace*{.5ex}
{\normalfont \fromasignatura}\\
\vspace*{1ex}
\normalfont \fromconvocatoria \quad \fromfecha
\end{minipage}}
}%
{\includegraphics[width=4 cm]{logoTSC.pdf}
}
\setfoot{}{\rhpagefont Pág. \thepage\, de\, \zpageref{LastPage}}{}
}
\newpagestyle{examen}
{
\esirulehead
\sethead[\rhpagefont Pág. \thepage\, de\, \zpageref{LastPage}][\aheadsubsecc\fromasignatura][[\rhpagefont\fromfecha]%
{[\rhpagefont\fromfecha}{\aheadsubsecc\fromasignatura}{\rhpagefont Pág. \thepage\, de\, \zpageref{LastPage}}
}
\newpagestyle{apendice}
{
\esirulehead
\sethead[\numpagpar][][\rhfont\appendixname\ \thechapter. \;\chaptertitle]%
{\rhfont\thesection \;\;\sectiontitle}{}{\numpagodd}
}
\newpagestyle{problema}
{
\esirulehead
\sethead[\numpagpar][][\rhfont\chaptername \; \thechapter. \chaptertitle]% even
{\rhfont\theproblema \; \problematitle}{}{\numpagodd}% odd
}
\newpagestyle{Resumen}
{
\esirulehead
\sethead[\numpagpar \rhfont\chaptername\ \thechapter. \;\chaptertitle][][]%
{}{}{\rhfont \nombreresumen \numpagodd}
}
\newpagestyle{especial}
{
\esirulehead
\sethead[\numpagpar][\rhfont\chaptertitle][] {}{\rhfont\chaptertitle}{\numpagodd}
}
\newpagestyle{probprop}
{
\esirulehead
\sethead[\numpagpar][\rhfont Problemas Propuestos\;\chaptername \ \thechapter][]%
{}{\rhfont Problemas Propuestos\;\chaptername \ \thechapter}{\numpagodd}
}
\newpagestyle{paginablanco}
{
\sethead[][][]{}{}{}
\vspace*{0.2\textheight}
\begin{center}
{\emph{Página en blanco} }
\end{center}
}
\renewpagestyle{plain}
{
\setfoot[][\rhpagefont\thepage][]{}{\rhpagefont\thepage}{}
}
%:Elementos de segmentación de un texto
%:Estilo de capítulos con numeración
\titleformat{\chapter}{\vspace{75pt}\achapnum} {\makebox[25 pt]{\raggedright\thechapter}}{8pt}{\hspace*{-6pt}\raggedright\achaptext #1}[\vspace{0.3pc} {\color{gray!75}\titlerule[3.5pt]} \vspace{50pt}]
\titlespacing{\chapter}{0 pt}{0 pt}{0 pt}[0 pt]
%:Estilo de capítulos sin numeración
\titleformat{name=\chapter,numberless}{\vspace{75pt}}{}{0pc}{\filleft\achaptext #1}[\vspace{0.3pc} {\color{gray!75}\titlerule[3.5pt]} \vspace{50pt}]
\titlespacing{name=\chapter,numberless}{0 pt}{0 pt}{0 pt}[0 pt]
%:Estilo de sección
\titleformat{\section}{\aheadsecc}{\thesection}{10 pt}{#1}
\titlespacing{\section}{0 pt}{3ex plus .1ex minus .2ex}{3ex plus .1ex minus .2ex}
%:Estilo de sección sin numeración
\titleformat{name=\section,numberless} {\aheadsecc}{}{0 pt}{#1}
\titlespacing{name=\section,numberless}{0 pt}{3ex plus .1ex minus .2ex}{3ex plus .1ex minus .2ex}
%:Estilo de sección sin numeración personal
\titleclass{\misection}{straight}[\chapter]
\titleformat{name=\misection,numberless}{\aheadsecc}{}{0 pt}{#1}
\titlespacing{name=\misection,numberless}{0 pt}{3ex plus .1ex minus .2ex}{3ex plus .1ex minus .2ex}
%:Estilo de subsección
\titleformat{name=\subsection} {\aheadsubsecc}{\thesubsection}{10 pt}{#1}
\titlespacing{name=\subsection}{0 pt}{2ex plus .1ex minus .2ex}{2ex plus .1ex minus .2ex}
%:Estilo de subsección sin numeración
\titleformat{name=\subsection,numberless} {\aheadsubsecc}{}{0 pt}{#1}
\titlespacing{name=\subsection,numberless}{0 pt}{2ex plus .1ex minus .2ex}{2ex plus .1ex minus .2ex}
%:Estilo de subsubsección
\titleformat{name=\subsubsection}{\aheadsubsecc}{\thesubsubsection}{10 pt}{#1}
\titlespacing{name=\subsubsection}{0 pt}{1.0ex plus .1ex minus .15ex}{1.0ex plus .1ex minus .15ex}
%:Estilo de subsubsección sin numeración
\titleformat{name=\subsubsection,numberless}{\aheadsubsecc}{}{0 pt}{#1}
\titlespacing{name=\subsubsection,numberless}{0 pt}{1.0ex plus .1ex minus .15ex}{1.0ex plus .1ex minus .15ex}
%:Estilo de problema en un libro con capítulos de problemas
\newcounter {problema}[chapter]
\makeatletter
\renewcommand {\theproblema}{P. \thechapter.\@arabic\c@problema}
\makeatother
\newcommand{\problemtitle}{}
\titleclass{\problema}{straight}[\chapter]
\titleformat{name=\problema}{\aheadsecc}{\theproblema}{10 pt}{#1}[]
\titlespacing{name=\problema}{0 pt}{3ex plus .1ex minus .2ex}{3ex plus .1ex minus .2ex}
\makeatletter
\let\problemaint\problema
\def\problema{\@ifnextchar[\problemaii\problemai}
\def\problemai#1{\gdef\problematitle{#1}\problemaint{#1}}
\def\problemaii[#1]#2{\gdef\problematitle{#1}\problemaint[#1]{#2}}
\makeatother
%:Para que el cambio del tipo de página se gestione con los comandos
\makeatletter
\let\problema@without@pagestyle\problema
\def\problema{\pagestyle{problema}\problema@without@pagestyle}
\makeatother
\makeatletter
\let\section@without@pagestyle\section
\def\section{\pagestyle{esitscCD}\section@without@pagestyle}
\makeatother
%:BLOQUE 05 Gestión general del documento
%:Para que las páginas en blanco no tengan cabecera y el capítulo comience en página impar
\makeatletter
\def\cleardoublepage
{
\clearpage\if@twoside \ifodd\c@page\else
\vspace*{\fill}
\thispagestyle{empty}
\newpage
\if@twocolumn\hbox{}\newpage\fi\fi\fi
}
\makeatother
%:Definiendo un subcapítulo
\newcounter{subchapter}[chapter]
\makeatletter
\providecommand*{\toclevel@subchapter}{0}
\makeatother
\makeatletter
\newcommand\subchapter[1]
{
\newpage
%\if@openright\cleardoublepage\else\clearpage\fi
\thispagestyle{plain}%
\vspace*{30\p@}%
{
\parindent \z@ \raggedleft \reset@font%
\par\nobreak
{\achaptext{#1}}
\par\nobreak
\interlinepenalty\@M
\color{gray!75}\rule{\linewidth}{3.5pt}
\vspace*{10\p@}%
\vskip 70\p@
}
\addcontentsline{toc}{subchapter}{#1}
}
\makeatother
%:Para definir APÉNDICES
\usepackage[title, titletoc]{appendix}
\AtBeginEnvironment{appendices}
{
\titleformat{\chapter}[display] % Modifica, dentro del entorno, el formato del capítulo
{}
{\filleft{\fontsize{\ldocho}{\lbdocho}\titular \chaptertitlename} \achaptext \thechapter }
{0.2ex}
{\filleft \achaptext #1}
[\vspace{-10pt}%
\color{gray!75}\rule{\linewidth}{3.5pt}\vspace{7pc}]
\pagestyle{apendice}
}
%
%:Para utilizar colores
\usepackage[svgnames, x11names]{xcolor}
\definecolor{light-gray}{gray}{0.90}
\definecolor{shadecolor}{gray}{0.90}
\definecolor{refcolor}{named}{Black}
\definecolor{Matlabcolor}{RGB}{252,251,220}
%:Para definir el doble espaciado y espaciados especiales dentro de un entorno \begin{spacing}
\usepackage{setspace}
%:Para mejorar el espacio final dentro de la definición de un macro
\usepackage{xspace}
%:Para mejorar la apariencia de las fracciones en una fórmula dentro de un texto
\usepackage{nicefrac} % \nicefrac{2}{3}
%:Para que la separación de la coma decimal sea correcta
\usepackage{icomma}
%:Para que las comillas queden diferentes
\usepackage{csquotes}
%:Para incluir acentos especiales
\usepackage{ipa}
%:Para utilizar algunos logos
\usepackage{dtklogos}
%:Para que no haya guiones en algunas cosas
\usepackage{hyphenat}
%:Para mostrar el layout del documento
\usepackage{layout}
%:Para incluir una marca de agua dónde interese
\usepackage[some,bottom]{background}
%:Para que se numeren hasta las subsecciones
\setcounter{secnumdepth}{4}
%:Control de índices y superíndices
\ifluatex
% control de índices y superíndices para las ecuaciones en línea
\everymath=\expandafter{\the\everymath\luatexUmathsubshiftdown\textstyle=2.5pt}
\everymath=\expandafter{\the\everymath\luatexUmathsubshiftdrop\textstyle=2.5pt}
\everymath=\expandafter{\the\everymath\luatexUmathsubsupshiftdown\textstyle=2.5pt}
\everymath=\expandafter{\the\everymath\luatexUmathsupshiftup\textstyle=4pt}
\everymath=\expandafter{\the\everymath\luatexUmathsupshiftdrop\textstyle=2.5pt}
% control de índices y superíndices para las ecuaciones display
\everydisplay=\expandafter{\the\everydisplay\luatexUmathsubshiftdown\displaystyle=2.5pt}
\everydisplay=\expandafter{\the\everydisplay\luatexUmathsubshiftdrop\displaystyle=2.5pt}
\everydisplay=\expandafter{\the\everydisplay\luatexUmathsubsupshiftdown\displaystyle=2.5pt}
\everydisplay=\expandafter{\the\everydisplay\luatexUmathsupshiftup\displaystyle=4pt}
\everydisplay=\expandafter{\the\everydisplay\luatexUmathsupshiftdrop\displaystyle=2.5pt}
%Una redefinición del comando \sb para utilizar, por ejemplo, en g\sb{I_{n}} y que quede mejor.
\makeatletter
\newcommand{\raisemath}[1]{\mathpalette{\raisem@th{#1}}}
\newcommand{\raisem@th}[3]{\raisebox{#1}{$#2#3$}}
\makeatother
\newcommand{\xb}[1]{\ensuremath{_{\raisemath{-1.5pt}{#1}}}}
\else
\everymath{%
\fontdimen16\textfont2=2.5pt
\fontdimen17\textfont2=2.5pt
\fontdimen14\textfont2=4pt
\fontdimen13\textfont2=4pt
}
\let\xb\sb
\fi
%:Creando el superíndice y el subíndice en modo texto
\ifluatex
\newcommand{\tsp}[1]{\textsuperscript{\fontsize{8}{9.6}\titulartoc#1}}
\newcommand{\tsb}[1]{\textsubscript{\fontsize{8}{9.6}\titulartoc#1}}
\else
\newcommand{\tsp}[1]{\textsuperscript{#1}}
\newcommand{\tsb}[1]{\textsubscript{#1}}
\fi
%:Para escribir los epígrafos.
\usepackage{epigraph}
\setlength{\epigraphwidth}{8cm}
\setlength{\epigraphrule}{0pt}
\renewcommand{\textflush}{flushepinormal}
\makeatletter %% El texto
\renewcommand{\@epitext}[1]
{%
\begin{minipage}{\epigraphwidth}
\begin{\textflush} \itshape #1\\
\ifdim\epigraphrule>\z@ \@epirule \else \vspace*{1ex} \fi
\end{\textflush}
\end{minipage}
}
\makeatother
\makeatletter %% El autor
\renewcommand{\@episource}[1]
{%
\begin{minipage}{\epigraphwidth}
\begin{\sourceflush} \scshape #1\end{\sourceflush}
\end{minipage}
}
\makeatother
%:Para poner la primera letra en grande
\usepackage{lettrine}
\renewcommand*{\LettrineTextFont}{\normalfont}
\renewcommand{\LettrineFontHook}{\color[gray]{0.1}}
%:Para crear una tabla de contenidos abreviada
\usepackage[tight]{shorttoc}
%:Creando las marcas registradas de Matlab y Simulink
\newcommand{\matlab}{MATLAB\tsp{\textregistered} }
\newcommand{\simulink}{SIMULINK\tsp{\textregistered} }
%:Sugerencias de partición silábica
\hyphenation{in-alám-bri-cas in-ter-o-pe-ra-ble ci-vil dis-po-si-ti-vo FPGAs FPGA
de-sa-rro-llo di-gi-tal-men-te po-si-bi-li-da-des con-si-de-rar-se
Xi-linx di-fe-ren-tes Tool-bo-xes ob-te-ner si-mu-la-tor
es-cri-tu-ra va-lo-res ins-truc-cio-nes con-cu-rren-tes
di-fe-ren-tes re-a-li-za-do ma-ne-ra}
%:Para realizar notaciones en el texto
\usepackage[spanish, shadow]{todonotes}
\newcommand{\nota}[1]{\todo[color=green!40, noline]{#1}}
\newcommand{\faltafigura}[1]{\missingfigure{#1}}
\setlength{\marginparwidth}{3cm}
%:Para que las listas enumeradas puedan manejarse de forma diferente
\usepackage{enumitem}
%:Un nuevo comando para hacer listas numeradas dentro de cajas con mdframed
\newcommand{\MyItem}{\item}
\newtoggle{FirstItem}%
\toggletrue{FirstItem}%
\newenvironment{MyEnumerate}[1][]{%
\renewcommand{\MyItem}{%
\iftoggle{FirstItem}{%
\global\togglefalse{FirstItem}
%--------- start new frame
\begin{mdframed}[skipbelow=2pt]%
\begin{enumerate}[#1,series=MySeries]%
}{%
\end{enumerate}%
\end{mdframed}%
%--------- end previous frame and start new one
\begin{mdframed}[skipbelow=2pt]%
\begin{enumerate}[#1,resume*=MySeries]%
}%
\item%
}%
}{%
\end{enumerate}%
\end{mdframed}% --------- end last frame
\global\toggletrue{FirstItem}%
}%
% Para definir entornos parecidos a verbatim
\usepackage{newverbs}[2011/07/23]
\newcommand{\ttcolorv}{\collectverb{\ttcolor}}
%:Para realizar cálculos con los contadores y otras cosas
\usepackage{calc}
%:Definiendo la hora
\def\timestring{\begingroup
\count0 = \time \divide\count0 by 60
\count2 = \count0 % The hour.
\count4 = \time \multiply\count0 by 60
\advance\count4 by -\count0 % The minute.
\ifnum\count4<10 \toks1 = {0}% Get a leading zero.
\else \toks1 = {}%
\fi
\ifnum\count2<12 \toks0 = {a.m.}%
\else \toks0 = {p.m.}%
\advance\count2 by -12
\fi
\ifnum\count2=0 \count2 = 12 \fi % Make midnight ?12?.
\number\count2:\the\toks1 \number\count4
\thinspace \the\toks0
\endgroup}%
%:Para el formato y la inclusión de las figuras
\usepackage{graphicx}
%:Para establecer la distancia por arriba (o por abajo) de los elementos flotantes del texto
%http://tex.stackexchange.com/questions/39867/intextsep-gives-doubled-space
\setlength{\intextsep}{1\baselineskip}
\setlength{\textfloatsep}{1\baselineskip}
\makeatletter
\patchcmd{\@addtocurcol}%
{\ifnum\outputpenalty <-\@Mii \vskip -\parskip\fi}%
{}%
{\typeout{*** SUCCESS ***}}{\typeout{*** FAIL ***}}
\patchcmd{\@addtocurcol}%
{\vskip \intextsep}%
{\addvspace\intextsep
\ifnum\outputpenalty <-\@Mii \vskip\parskip\fi}%
{\typeout{*** SUCCESS ***}}{\typeout{*** FAIL ***}}
\patchcmd{\@addtocurcol}%
{\vskip\intextsep}{\fix@second@intextsep}%
{\typeout{*** SUCCESS ***}}%
{\typeout{*** FAIL ***}}
\def\fix@second@intextsep {%
% was the float seen in vertical mode?
\ifnum\outputpenalty <-\@Mii
\aftergroup\vskip\aftergroup\intextsep
\aftergroup\nointerlineskip
\else
\vskip\intextsep
\fi
}
\patchcmd{\float@endH}{\vskip\intextsep}%
{\addvspace\intextsep\ifnum\outputpenalty <-\@Mii \vskip\parskip\fi}{}{}
\patchcmd{\float@endH}{\@currbox\vskip\intextsep}%
{\@currbox\vskip7.5pt\def\fix@second@intextsep}{}{}