]> git.lyx.org Git - lyx.git/blob - lib/doc/es/Math.lyx
German UserGuide.lyx: update for Hartmut
[lyx.git] / lib / doc / es / Math.lyx
1 #LyX 1.6.0alpha1 created this file. For more info see http://www.lyx.org/
2 \lyxformat 324
3 \begin_document
4 \begin_header
5 \textclass scrartcl
6 \begin_preamble
7 % DO NOT ALTER THIS PREAMBLE!!!
8 %
9 % This preamble is designed to ensure that the file prints
10 % out as advertised. If you mess with this preamble,
11 % parts of this document may not print out as expected.  If you
12 % have problems LaTeXing this file, please contact 
13 % the documentation team
14 % email: lyx-docs@lists.lyx.org
15
16
17 % if pdflatex is used
18 \usepackage{ifpdf}
19 \ifpdf
20
21 % set fonts for nicer pdf view
22 \IfFileExists{lmodern.sty}
23  {\usepackage{lmodern}}{}
24
25 \fi % end if pdflatex is used
26
27 % Folgendes Problem lösen:
28 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
29 % Kapitelüberschrift im Inhaltsverzeichnis direkt an oder über
30 % die Kapitelnummer geschrieben.
31 % Als Lösung wird mehr Platz zwischen Nummer und
32 % Überschrift eingefügt.
33 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
34 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
35
36 % To be able to enter the character ° and · directly in LyX,
37 % see sec. 22.11
38 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
39 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
40
41 % increase link area for cross-references and autoname them,
42 % see sec. 22.18.1
43 \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
44 %\renewcommand{\sectionautorefname}{sec.\negthinspace}
45 \renewcommand{\subsectionautorefname}{sec.\negthinspace}
46 \renewcommand{\subsubsectionautorefname}{sec.\negthinspace}
47 \newlength{\abc}
48 \settowidth{\abc}{\space}
49 \renewcommand{\equationautorefname}{\hspace{-\abc}}
50
51 % don't load packages twice
52 % see first footnote in sec. 9.3
53 \@ifundefined{textcolor}{\usepackage{color}}{}
54
55 % the pages of the TOC are numbered roman
56 % and a PDF-bookmark for the TOC is added
57 \pagenumbering{Roman}
58 \let\myTOC\tableofcontents
59 \renewcommand{\tableofcontents}{%
60  \vspace{1cm}
61  \pdfbookmark[1]{Índice}{}
62  \myTOC
63  \cleardoublepage
64  \pagenumbering{arabic}}
65
66 % insert additional vertical space of 1.5 mm between footnotes,
67 % see sec. 22.16
68 \let\myFoot\footnote
69 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
70
71 % provides caption formatting
72 \setkomafont{captionlabel}{\bfseries}
73
74 % used in Kap. 22.4
75 \usepackage{braket}
76
77 % used in Kap. 22.6
78 \usepackage[samesize]{cancel}
79
80 % enables calculation of values,
81 \usepackage{calc}
82
83 % for multiple table row and column cells
84 \usepackage{multirow}
85 \usepackage{multicol}
86
87 % needed for diagrams
88 \usepackage{amscd}
89
90 % needed in sec. 19.4
91 \usepackage{remreset}
92
93 % center multirows (e.g. in sec. 13.3)
94 \renewcommand{\multirowsetup}{\centering}
95
96 % define a color, used in sec.9.3
97 \definecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
98
99 % declare operators (see sec. 10.4 and sec. 15.2)
100 \DeclareMathOperator*{\Lozenge}{\blacklozenge}
101 \DeclareMathOperator{\sgn}{sgn}
102 % declare operator example in Spanish (see sec.15.2)
103 \DeclareMathOperator{\mcd}{mcd}
104
105 \newcommand{\spce}{\textvisiblespace}
106
107 % example definitions for sec. 20.1 
108 \newcommand{\gr}{\Longrightarrow}
109 \newcommand{\us}[1]{\underline{#1}}
110 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
111 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
112 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
113
114 % example macro from sec. 19.4
115 %\def\tagform@#1{\maketag@@@{|#1|}}
116
117 % macro from sec. 10.2
118 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
119 \def\mathclap {\mathpalette \mathclapinternal}
120 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
121
122 % redefine the greyed out note
123 \renewenvironment{lyxgreyedout}
124  {\textcolor{blue}\bgroup}{\egroup}
125
126 % check for package eurosym
127 % used for the Euro symbol
128 \newboolean{eurosym}
129 \IfFileExists{eurosym.sty}
130  {\usepackage[gennarrow]{eurosym}
131   \setboolean{eurosym}{true}}
132  {\setboolean{eurosym}{false}}
133
134 % needed in sec. 22.4
135 % check for package braket
136 \newboolean{braket}
137 \IfFileExists{braket.sty}
138  {\usepackage{braket}
139   \setboolean{braket}{true}}
140  {\setboolean{braket}{false}}
141
142 % needed in sec. 22.10
143 % check for package upgreek
144 \newboolean{upgreek}
145 \IfFileExists{upgreek.sty}
146  {\usepackage{upgreek}
147   \setboolean{upgreek}{true}}
148  {\setboolean{upgreek}{false}}
149 \end_preamble
150 \options bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
151 \language spanish
152 \inputencoding auto
153 \font_roman default
154 \font_sans default
155 \font_typewriter default
156 \font_default_family default
157 \font_sc false
158 \font_osf false
159 \font_sf_scale 100
160 \font_tt_scale 100
161 \graphics default
162 \paperfontsize 12
163 \spacing single
164 \use_hyperref true
165 \pdf_title "Manual detallado de Matemáticas en LyX"
166 \pdf_author "LyX Team, Uwe Stöhr, translation: Ignacio Garcia"
167 \pdf_subject "LyX-documentation about math"
168 \pdf_keywords "LyX, Mathed"
169 \pdf_bookmarks true
170 \pdf_bookmarksnumbered true
171 \pdf_bookmarksopen true
172 \pdf_bookmarksopenlevel 1
173 \pdf_breaklinks false
174 \pdf_pdfborder false
175 \pdf_colorlinks true
176 \pdf_backref false
177 \pdf_pagebackref false
178 \pdf_pdfusetitle false
179 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,  pdfpagelayout=OneColumn, pdfnewwindow=true,  pdfstartview=XYZ, plainpages=false, pdfpagelabels"
180 \papersize a4paper
181 \use_geometry false
182 \use_amsmath 2
183 \use_esint 1
184 \cite_engine basic
185 \use_bibtopic false
186 \paperorientation portrait
187 \secnumdepth 4
188 \tocdepth 3
189 \paragraph_separation skip
190 \defskip medskip
191 \quotes_language french
192 \papercolumns 1
193 \papersides 2
194 \paperpagestyle plain
195 \bullet 1 0 6 -1
196 \bullet 2 2 35 -1
197 \bullet 3 2 7 -1
198 \tracking_changes false
199 \output_changes false
200 \author "" 
201 \author "" 
202 \extra_embedded_files ""
203 \end_header
204
205 \begin_body
206
207 \begin_layout Title
208 Manual detallado de
209 \begin_inset Newline newline
210 \end_inset
211
212 Matemáticas en LyX
213 \end_layout
214
215 \begin_layout Author
216 por el Equipo LyX
217 \begin_inset Foot
218 status collapsed
219
220 \begin_layout Plain Layout
221 Si tienes comentarios o correcciones de errores envíalos, por favor, a la
222  lista de correo de documentación de LyX
223 \family typewriter
224
225 \begin_inset CommandInset href
226 LatexCommand href
227 name "lyx-docs@lists.lyx.org"
228 target "lyx-docs@lists.lyx.org?subject=LyX's Math manual"
229
230 \end_inset
231
232
233 \end_layout
234
235 \end_inset
236
237
238 \begin_inset Note Note
239 status collapsed
240
241 \begin_layout Plain Layout
242 autor: Uwe Stöhr, translation: Ignacio Garcia
243 \end_layout
244
245 \end_inset
246
247
248 \begin_inset Newline newline
249 \end_inset
250
251
252 \begin_inset Newline newline
253 \end_inset
254
255 Versión 1.6svn
256 \end_layout
257
258 \begin_layout Standard
259 \begin_inset CommandInset toc
260 LatexCommand tableofcontents
261
262 \end_inset
263
264
265 \end_layout
266
267 \begin_layout Standard
268 \begin_inset Note Note
269 status open
270
271 \begin_layout Plain Layout
272 Para exportar este documento a PDF, PS, o DVI deben estar instalados los
273  paquetes LaTeX 
274 \series bold
275 eurosym
276 \series default
277
278 \series bold
279 multirow
280 \series default
281  y 
282 \series bold
283 was
284 \series default
285 .
286  Si no están instalados también puedes exportar el documento pero las secciones
287  en que se requieren dichos paquetes no aparecerán en la salida.
288 \end_layout
289
290 \begin_layout Plain Layout
291 La última versión PDF de este documento está disponible en:
292 \begin_inset Newline newline
293 \end_inset
294
295
296 \series bold
297 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
298 \end_layout
299
300 \end_inset
301
302
303 \begin_inset Newpage newpage
304 \end_inset
305
306
307 \end_layout
308
309 \begin_layout Section
310 Introducción
311 \begin_inset CommandInset label
312 LatexCommand label
313 name "sec:Introducción"
314
315 \end_inset
316
317
318 \end_layout
319
320 \begin_layout Standard
321 Este documento explica las características matemáticas de LyX y además es
322  una colección de comandos LaTeX para caracteres y estructuras matemáticas.
323  Las explicaciones están diseñadas para el uso de comandos.
324  Por consiguiente es preciso que hayas leído la sección 
325 \emph on
326 Ecuaciones matemáticas
327 \emph default
328  de la 
329 \emph on
330 Guía del usuario
331 \emph default
332 .
333 \end_layout
334
335 \begin_layout Standard
336 La mayoría de caracteres y muchas estructuras explicadas en este manual
337  también son accesibles mediante el menú 
338 \family sans
339 Insertar\SpecialChar \menuseparator
340 Ecuación
341 \family default
342  o la barra de herramientas
343 \family sans
344  Ecuaciones
345 \family default
346 .
347  Pero todo aquel que tenga que escribir muchas fórmulas observará que es
348  mucho más rápido usar comandos que la barra de herramientas.
349  Por tanto este manual está enfocado al uso de comandos, aunque también
350  se mencionan los botones correspondientes de las barras de herramientas
351  cuando están disponibles.
352 \end_layout
353
354 \begin_layout Standard
355 Si no se especifica lo contrario los comandos sólo están disponibles dentro
356  de las fórmulas.
357  Para poder usar todos los comandos explicados en este documento, debe usarse
358  la opción 
359 \family sans
360 Usar el paquete de ecuaciones AMS
361 \family default
362  en la configuración del documento (menú 
363 \family sans
364 Documento\SpecialChar \menuseparator
365 Configuración\SpecialChar \menuseparator
366 Ecuaciones
367 \family default
368 )
369 \begin_inset Foot
370 status collapsed
371
372 \begin_layout Plain Layout
373 La opción 
374 \family sans
375 Usar el paquete de ecuaciones AMS automáticamente
376 \family default
377  sólo usa ecuaciones 
378 \begin_inset ERT
379 status collapsed
380
381 \begin_layout Plain Layout
382
383
384 \backslash
385 AmS 
386 \end_layout
387
388 \end_inset
389
390
391 \begin_inset Space ~
392 \end_inset
393
394  si las estructuras matemáticas son soportadas por LyX.
395 \end_layout
396
397 \end_inset
398
399 .
400 \end_layout
401
402 \begin_layout Standard
403 Este documento no recoge todos los comandos de ecuaciones 
404 \begin_inset ERT
405 status collapsed
406
407 \begin_layout Plain Layout
408
409
410 \backslash
411 AmS 
412 \end_layout
413
414 \end_inset
415
416
417 \begin_inset Foot
418 status collapsed
419
420 \begin_layout Plain Layout
421 En el archivo 
422 \family sans
423
424 \begin_inset CommandInset href
425 LatexCommand href
426 name "amsguide.ps"
427 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
428
429 \end_inset
430
431
432 \family default
433 , que forma parte de todas las distribuciones estándar de LaTeX, hay una
434  lista con todos los comandos de ecuaciones 
435 \begin_inset ERT
436 status collapsed
437
438 \begin_layout Plain Layout
439
440
441 \backslash
442 AmS 
443 \end_layout
444
445 \end_inset
446
447 .
448 \end_layout
449
450 \end_inset
451
452  por razones de claridad.
453 \end_layout
454
455 \begin_layout Section
456 Instrucciones generales
457 \begin_inset CommandInset label
458 LatexCommand label
459 name "sec:Instrucciones-generales"
460
461 \end_inset
462
463
464 \end_layout
465
466 \begin_layout Standard
467 Para crear una ecuación en línea
468 \begin_inset Index
469 status collapsed
470
471 \begin_layout Plain Layout
472 Ecuación ! en línea
473 \end_layout
474
475 \end_inset
476
477 , insertada en una línea de texto, teclea 
478 \family sans
479 Ctrl-m
480 \family default
481  o pulsa el botón 
482 \begin_inset Graphics
483         filename ../../images/math-mode.png
484         embed ""
485         scale 85
486
487 \end_inset
488
489  de la barra de herramientas.
490 \begin_inset Newline newline
491 \end_inset
492
493 Para crear una ecuación en estilo presentación
494 \begin_inset Index
495 status collapsed
496
497 \begin_layout Plain Layout
498 Ecuación ! en presentación
499 \end_layout
500
501 \end_inset
502
503 , que se verá más grande y en su propio párrafo, teclea
504 \family sans
505  Ctrl-M
506 \family default
507 .
508 \end_layout
509
510 \begin_layout Standard
511 Para cambiar una ecuación en estilo presentación a estilo en línea, pon
512  el cursor dentro de la ecuación y teclea 
513 \family sans
514 Ctrl-M
515 \family default
516  o usa el menú 
517 \family sans
518 Editar\SpecialChar \menuseparator
519 Ecuación\SpecialChar \menuseparator
520 Cambiar tipo de ecuación
521 \family default
522 .
523  De igual forma se puede cambiar una ecuación en línea a estilo presentación.
524 \end_layout
525
526 \begin_layout Standard
527 Para mostrar partes de una ecuación en línea en el tamaño del estilo presentació
528 n, escribe el comando 
529 \series bold
530
531 \backslash
532 displaystyle
533 \series default
534
535 \begin_inset Index
536 status collapsed
537
538 \begin_layout Plain Layout
539 Comandos ! D ! 
540 \backslash
541 displaystyle
542 \end_layout
543
544 \end_inset
545
546  en la ecuación y pulsa espacio.
547  Entonces aparece un nuevo marco azul en el que se inserta la parte deseada
548  de la ecuación.
549 \end_layout
550
551 \begin_layout Standard
552 En las tablas sólo se permiten ecuaciones en línea.
553 \end_layout
554
555 \begin_layout Standard
556 Las barras 
557 \family sans
558 Ecuaciones
559 \family default
560  y 
561 \family sans
562 Panel de ecuaciones 
563 \family default
564 se pueden visualizar mediante el menú 
565 \family sans
566 Ver\SpecialChar \menuseparator
567 Barras de herramientas
568 \family default
569 .
570  Si ahí pulsas en 
571 \begin_inset Quotes fld
572 \end_inset
573
574 Ecuaciones
575 \begin_inset Quotes frd
576 \end_inset
577
578  y/o en 
579 \begin_inset Quotes fld
580 \end_inset
581
582 Panel de ecuaciones
583 \begin_inset Quotes frd
584 \end_inset
585
586 , una y/u otra se mostrarán de forma permanente en la parte inferior; este
587  estado se visualiza en el menú de las barras de herramientas con una marca.
588  Si en este estado pulsas de nuevo sobre 
589 \begin_inset Quotes fld
590 \end_inset
591
592 Ecuaciones
593 \begin_inset Quotes frd
594 \end_inset
595
596  y/o 
597 \begin_inset Quotes fld
598 \end_inset
599
600 Panel de ecuaciones
601 \begin_inset Quotes frd
602 \end_inset
603
604  en el menú, las barras sólo se visualizarán cuando el cursor esté dentro
605  de una ecuación; este estado se indica añadiendo a las entradas del menú
606  la palabra 
607 \begin_inset Quotes fld
608 \end_inset
609
610 (auto)
611 \begin_inset Quotes frd
612 \end_inset
613
614 .
615  
616 \end_layout
617
618 \begin_layout Standard
619 El modo TeX
620 \begin_inset Index
621 status collapsed
622
623 \begin_layout Plain Layout
624 T@
625 \begin_inset ERT
626 status collapsed
627
628 \begin_layout Plain Layout
629
630
631 \backslash
632
633 \begin_inset ERT
634 status collapsed
635
636 \begin_layout Plain Layout
637
638 {
639 \end_layout
640
641 \end_inset
642
643
644 \begin_inset ERT
645 status collapsed
646
647 \begin_layout Plain Layout
648
649 }
650 \end_layout
651
652 \end_inset
653
654
655 \end_layout
656
657 \end_inset
658
659 TeX ! modo
660 \end_layout
661
662 \end_inset
663
664  se invoca pulsando el botón 
665 \begin_inset Graphics
666         filename ../../images/ert-insert.png
667         embed ""
668         scale 85
669
670 \end_inset
671
672  de la barra de herramientas o con el menú 
673 \family sans
674 Insertar\SpecialChar \menuseparator
675 Código T
676 \begin_inset ERT
677 status collapsed
678
679 \begin_layout Plain Layout
680
681 {
682 \end_layout
683
684 \end_inset
685
686 e
687 \begin_inset ERT
688 status collapsed
689
690 \begin_layout Plain Layout
691
692 }
693 \end_layout
694
695 \end_inset
696
697 X
698 \family default
699 , (atajo 
700 \family sans
701 Ctrl-l
702 \family default
703 ).
704 \begin_inset Note Note
705 status collapsed
706
707 \begin_layout Plain Layout
708 En LyX hay tres 
709 \begin_inset Quotes fld
710 \end_inset
711
712 nombres propios
713 \begin_inset Quotes frd
714 \end_inset
715
716  que se ven en la salida con letras sobre o bajo la alineación normal: TeX,
717  LaTeX y LyX.
718 \end_layout
719
720 \begin_layout Plain Layout
721 Para evitar que estas palabras sean reconocidas como tales nombres propios,
722  se pone una de las letras entre llaves TeX.
723  
724 \end_layout
725
726 \end_inset
727
728
729 \end_layout
730
731 \begin_layout Standard
732 Para cambiar el preámbulo LaTeX
733 \begin_inset Index
734 status collapsed
735
736 \begin_layout Plain Layout
737 L@LaTeX preámbulo
738 \end_layout
739
740 \end_inset
741
742 , usa el menú 
743 \family sans
744 Documento\SpecialChar \menuseparator
745 Configuración\SpecialChar \menuseparator
746 Preámbulo La
747 \begin_inset ERT
748 status collapsed
749
750 \begin_layout Plain Layout
751
752 {
753 \end_layout
754
755 \end_inset
756
757 T
758 \begin_inset ERT
759 status collapsed
760
761 \begin_layout Plain Layout
762
763 }
764 \end_layout
765
766 \end_inset
767
768 eX
769 \family default
770 .
771 \end_layout
772
773 \begin_layout Standard
774 Para editar posteriormente matrices, diferenciaciones de casos y ecuaciones
775  multilínea, se pueden usar los menús 
776 \family sans
777 Editar\SpecialChar \menuseparator
778 Ecuación
779 \family default
780  y 
781 \family sans
782 Editar\SpecialChar \menuseparator
783 Filas y columnas
784 \family default
785  o la barra de herramientas de 
786 \family sans
787 Tabla
788 \family default
789 .
790  Cuando las líneas y columnas se intercambian mediante el menú, la columna
791  o línea en la que está se cambia con la columna de la derecha o con la
792  línea de abajo, respectivamente.
793  Si el cursor está en la última columna o fila, el cambio se hace con la
794  columna de la izquierda o la línea de arriba.
795 \end_layout
796
797 \begin_layout Standard
798 Para escribir texto en fórmulas se usa 
799 \emph on
800 texto de ecuaciones
801 \emph default
802
803 \begin_inset Index
804 status collapsed
805
806 \begin_layout Plain Layout
807 Texto ! en ecuaciones
808 \end_layout
809
810 \end_inset
811
812 .
813 \begin_inset Foot
814 status collapsed
815
816 \begin_layout Plain Layout
817 Para ecuaciones multilínea se usa el comando 
818 \series bold
819
820 \backslash
821 intertext
822 \series default
823 , véase
824 \begin_inset Space ~
825 \end_inset
826
827
828 \begin_inset CommandInset ref
829 LatexCommand ref
830 reference "sub:Texto-en-multilínea"
831
832 \end_inset
833
834 .
835 \end_layout
836
837 \end_inset
838
839  Este modo se invoca con el atajo 
840 \family sans
841 Alt-m
842 \begin_inset Space ~
843 \end_inset
844
845 m
846 \family default
847  o insertando el comando 
848 \series bold
849
850 \backslash
851 text
852 \series default
853
854 \begin_inset Index
855 status collapsed
856
857 \begin_layout Plain Layout
858 Comandos ! T ! 
859 \backslash
860 text
861 \end_layout
862
863 \end_inset
864
865 .
866  El texto se ve en negro en LyX y por tanto puede distinguirse de otras
867  partes de la ecuación que se ven en azul.
868  En la salida, el texto en una ecuación se imprime en letra redonda, a diferenci
869 a de otras partes de la fórmula.
870 \end_layout
871
872 \begin_layout Subsection*
873 Esquema de comandos
874 \end_layout
875
876 \begin_layout Standard
877 La mayoría de los comandos LaTeX para estructuras matemáticas tienen el
878  siguiente esquema:
879 \end_layout
880
881 \begin_layout Standard
882
883 \series bold
884
885 \backslash
886 nombre_del_comando[argumento opcional]{argumento requerido}
887 \end_layout
888
889 \begin_layout Standard
890 Un comando empieza siempre por una barra inversa, 
891 \series bold
892
893 \backslash
894
895 \series default
896 .
897  Para omitir argumentos opcionales, quita también los corchetes asociados.
898  En este documento, las llaves que encierran los argumentos requeridos se
899  denominan llaves TeX
900 \begin_inset Index
901 status collapsed
902
903 \begin_layout Plain Layout
904 T@
905 \begin_inset ERT
906 status collapsed
907
908 \begin_layout Plain Layout
909
910
911 \backslash
912
913 \begin_inset ERT
914 status collapsed
915
916 \begin_layout Plain Layout
917
918 {
919 \end_layout
920
921 \end_inset
922
923
924 \begin_inset ERT
925 status collapsed
926
927 \begin_layout Plain Layout
928
929 }
930 \end_layout
931
932 \end_inset
933
934
935 \end_layout
936
937 \end_inset
938
939 TeX ! llaves
940 \end_layout
941
942 \end_inset
943
944 .
945  Si en una ecuación añades una llave de apertura al nombre de un comando,
946  LyX crea automáticamente una llave TeX.
947  En todos los demás casos las llaves TeX se crean en las ecuaciones con
948  el comando 
949 \series bold
950
951 \backslash
952 {
953 \series default
954 .
955  Las llaves TeX se ven en rojo en LyX, a diferencia de las llaves normales,
956  que se muestran en azul.
957  En modo TeX no hace falta comando para poner llaves TeX.
958  Las llaves TeX no aparecen en la salida.
959 \end_layout
960
961 \begin_layout Standard
962 En el caso de comandos sin argumentos, como los comandos para símbolos que
963  se introducen en modo TeX, 
964 \emph on
965 siempre
966 \emph default
967  debe teclearse un espacio tras el comando para finalizarlo.
968  Este espacio no aparece en la salida.
969  Si ese espacio debiera mostrarse en la salida, el espacio debe ir seguido
970  de un espacio protegido en texto normal.
971 \end_layout
972
973 \begin_layout Standard
974 Un espacio protegido se inserta con 
975 \family sans
976 Ctrl-espacio
977 \family default
978 .
979 \begin_inset Newpage newpage
980 \end_inset
981
982
983 \end_layout
984
985 \begin_layout Subsection*
986 Explicación de la sintaxis
987 \end_layout
988
989 \begin_layout Itemize
990 El símbolo 
991 \begin_inset ERT
992 status collapsed
993
994 \begin_layout Plain Layout
995
996
997 \backslash
998 spce 
999 \end_layout
1000
1001 \end_inset
1002
1003
1004 \begin_inset Foot
1005 status collapsed
1006
1007 \begin_layout Plain Layout
1008 Este carácter, espacio visible, se puede componer con el comando 
1009 \series bold
1010
1011 \backslash
1012 textvisiblespace
1013 \series default
1014
1015 \begin_inset Index
1016 status collapsed
1017
1018 \begin_layout Plain Layout
1019 Comandos ! T ! 
1020 \backslash
1021 textvisiblespace
1022 \end_layout
1023
1024 \end_inset
1025
1026  insertado en código TeX.
1027 \end_layout
1028
1029 \end_inset
1030
1031  indica que hay que teclear un espacio.
1032 \end_layout
1033
1034 \begin_layout Itemize
1035 Una flecha como 
1036 \begin_inset Formula $\rightarrow$
1037 \end_inset
1038
1039  indica el uso de la correspondiente tecla de flecha.
1040  
1041 \end_layout
1042
1043 \begin_layout Subsection*
1044 Unidades empleadas
1045 \end_layout
1046
1047 \begin_layout Standard
1048 \align center
1049 \begin_inset Float table
1050 placement H
1051 wide false
1052 sideways false
1053 status open
1054
1055 \begin_layout Plain Layout
1056 \align center
1057 \begin_inset Caption
1058
1059 \begin_layout Plain Layout
1060 \begin_inset CommandInset label
1061 LatexCommand label
1062 name "tab:Unidades-empleadas"
1063
1064 \end_inset
1065
1066 Unidades empleadas
1067 \end_layout
1068
1069 \end_inset
1070
1071
1072 \end_layout
1073
1074 \begin_layout Plain Layout
1075 \align center
1076 \begin_inset Tabular
1077 <lyxtabular version="3" rows="13" columns="2">
1078 <features>
1079 <column alignment="center" valignment="top" width="0">
1080 <column alignment="center" valignment="top" width="0">
1081 <row>
1082 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1083 \begin_inset Text
1084
1085 \begin_layout Plain Layout
1086 Unidad
1087 \end_layout
1088
1089 \end_inset
1090 </cell>
1091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1092 \begin_inset Text
1093
1094 \begin_layout Plain Layout
1095 Nombre / Descripción
1096 \end_layout
1097
1098 \end_inset
1099 </cell>
1100 </row>
1101 <row>
1102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1103 \begin_inset Text
1104
1105 \begin_layout Plain Layout
1106 mm
1107 \end_layout
1108
1109 \end_inset
1110 </cell>
1111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1112 \begin_inset Text
1113
1114 \begin_layout Plain Layout
1115 Milímetro
1116 \end_layout
1117
1118 \end_inset
1119 </cell>
1120 </row>
1121 <row>
1122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1123 \begin_inset Text
1124
1125 \begin_layout Plain Layout
1126 cm
1127 \end_layout
1128
1129 \end_inset
1130 </cell>
1131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1132 \begin_inset Text
1133
1134 \begin_layout Plain Layout
1135 Centímetro
1136 \end_layout
1137
1138 \end_inset
1139 </cell>
1140 </row>
1141 <row>
1142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1143 \begin_inset Text
1144
1145 \begin_layout Plain Layout
1146 in
1147 \end_layout
1148
1149 \end_inset
1150 </cell>
1151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1152 \begin_inset Text
1153
1154 \begin_layout Plain Layout
1155 Pulgada (1
1156 \begin_inset Space \thinspace{}
1157 \end_inset
1158
1159 in = 2,54
1160 \begin_inset Space \thinspace{}
1161 \end_inset
1162
1163 cm)
1164 \end_layout
1165
1166 \end_inset
1167 </cell>
1168 </row>
1169 <row>
1170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1171 \begin_inset Text
1172
1173 \begin_layout Plain Layout
1174 pt
1175 \end_layout
1176
1177 \end_inset
1178 </cell>
1179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1180 \begin_inset Text
1181
1182 \begin_layout Plain Layout
1183 Punto (72.27
1184 \begin_inset Space \thinspace{}
1185 \end_inset
1186
1187 pt = 1
1188 \begin_inset Space \thinspace{}
1189 \end_inset
1190
1191 in)
1192 \end_layout
1193
1194 \end_inset
1195 </cell>
1196 </row>
1197 <row>
1198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1199 \begin_inset Text
1200
1201 \begin_layout Plain Layout
1202 pc
1203 \end_layout
1204
1205 \end_inset
1206 </cell>
1207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1208 \begin_inset Text
1209
1210 \begin_layout Plain Layout
1211 Pica (1
1212 \begin_inset Space \thinspace{}
1213 \end_inset
1214
1215 pc = 12
1216 \begin_inset Space \thinspace{}
1217 \end_inset
1218
1219 pt)
1220 \end_layout
1221
1222 \end_inset
1223 </cell>
1224 </row>
1225 <row>
1226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1227 \begin_inset Text
1228
1229 \begin_layout Plain Layout
1230 sp
1231 \end_layout
1232
1233 \end_inset
1234 </cell>
1235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1236 \begin_inset Text
1237
1238 \begin_layout Plain Layout
1239 Punto escalado (65536
1240 \begin_inset Space \thinspace{}
1241 \end_inset
1242
1243 sp = 1
1244 \begin_inset Space \thinspace{}
1245 \end_inset
1246
1247 pt)
1248 \end_layout
1249
1250 \end_inset
1251 </cell>
1252 </row>
1253 <row>
1254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1255 \begin_inset Text
1256
1257 \begin_layout Plain Layout
1258 bp
1259 \end_layout
1260
1261 \end_inset
1262 </cell>
1263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1264 \begin_inset Text
1265
1266 \begin_layout Plain Layout
1267 Punto grande (72
1268 \begin_inset Space \thinspace{}
1269 \end_inset
1270
1271 bp = 1
1272 \begin_inset Space \thinspace{}
1273 \end_inset
1274
1275 in)
1276 \end_layout
1277
1278 \end_inset
1279 </cell>
1280 </row>
1281 <row>
1282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1283 \begin_inset Text
1284
1285 \begin_layout Plain Layout
1286 dd
1287 \end_layout
1288
1289 \end_inset
1290 </cell>
1291 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1292 \begin_inset Text
1293
1294 \begin_layout Plain Layout
1295 Didot (1
1296 \begin_inset Space \thinspace{}
1297 \end_inset
1298
1299 dd 
1300 \begin_inset Formula $\approx$
1301 \end_inset
1302
1303  0.376
1304 \begin_inset Space \thinspace{}
1305 \end_inset
1306
1307 mm)
1308 \end_layout
1309
1310 \end_inset
1311 </cell>
1312 </row>
1313 <row>
1314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1315 \begin_inset Text
1316
1317 \begin_layout Plain Layout
1318 cc
1319 \end_layout
1320
1321 \end_inset
1322 </cell>
1323 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1324 \begin_inset Text
1325
1326 \begin_layout Plain Layout
1327 Cicero (1
1328 \begin_inset Space \thinspace{}
1329 \end_inset
1330
1331 cc = 12
1332 \begin_inset Space \thinspace{}
1333 \end_inset
1334
1335 dd)
1336 \end_layout
1337
1338 \end_inset
1339 </cell>
1340 </row>
1341 <row>
1342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1343 \begin_inset Text
1344
1345 \begin_layout Plain Layout
1346 ex
1347 \end_layout
1348
1349 \end_inset
1350 </cell>
1351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1352 \begin_inset Text
1353
1354 \begin_layout Plain Layout
1355 Altura de la letra 
1356 \begin_inset Quotes fld
1357 \end_inset
1358
1359
1360 \emph on
1361 x
1362 \emph default
1363
1364 \begin_inset Quotes frd
1365 \end_inset
1366
1367  en la fuente actual
1368 \end_layout
1369
1370 \end_inset
1371 </cell>
1372 </row>
1373 <row>
1374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1375 \begin_inset Text
1376
1377 \begin_layout Plain Layout
1378 em
1379 \end_layout
1380
1381 \end_inset
1382 </cell>
1383 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1384 \begin_inset Text
1385
1386 \begin_layout Plain Layout
1387 Anchura de la letra 
1388 \begin_inset Quotes fld
1389 \end_inset
1390
1391
1392 \emph on
1393 M
1394 \emph default
1395
1396 \begin_inset Quotes frd
1397 \end_inset
1398
1399  en la fuente actual
1400 \end_layout
1401
1402 \end_inset
1403 </cell>
1404 </row>
1405 <row>
1406 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1407 \begin_inset Text
1408
1409 \begin_layout Plain Layout
1410 mu
1411 \end_layout
1412
1413 \end_inset
1414 </cell>
1415 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1416 \begin_inset Text
1417
1418 \begin_layout Plain Layout
1419 Unidad matemática (1
1420 \begin_inset Space \thinspace{}
1421 \end_inset
1422
1423 mu = 
1424 \begin_inset Formula $\nicefrac{1}{18}$
1425 \end_inset
1426
1427
1428 \begin_inset Space \thinspace{}
1429 \end_inset
1430
1431 em)
1432 \end_layout
1433
1434 \end_inset
1435 </cell>
1436 </row>
1437 </lyxtabular>
1438
1439 \end_inset
1440
1441
1442 \end_layout
1443
1444 \end_inset
1445
1446
1447 \end_layout
1448
1449 \begin_layout Standard
1450 \align center
1451 \begin_inset Newpage newpage
1452 \end_inset
1453
1454
1455 \end_layout
1456
1457 \begin_layout Section
1458 Funciones básicas
1459 \end_layout
1460
1461 \begin_layout Subsection
1462 Exponentes
1463 \begin_inset Index
1464 status collapsed
1465
1466 \begin_layout Plain Layout
1467 Exponentes
1468 \end_layout
1469
1470 \end_inset
1471
1472  e índices
1473 \begin_inset Index
1474 status collapsed
1475
1476 \begin_layout Plain Layout
1477 In@Índices
1478 \end_layout
1479
1480 \end_inset
1481
1482
1483 \begin_inset Index
1484 status collapsed
1485
1486 \begin_layout Plain Layout
1487 Superíndices|see
1488 \begin_inset ERT
1489 status collapsed
1490
1491 \begin_layout Plain Layout
1492
1493 {
1494 \end_layout
1495
1496 \end_inset
1497
1498 Exponentes
1499 \begin_inset ERT
1500 status collapsed
1501
1502 \begin_layout Plain Layout
1503
1504 }
1505 \end_layout
1506
1507 \end_inset
1508
1509
1510 \end_layout
1511
1512 \end_inset
1513
1514
1515 \begin_inset Index
1516 status collapsed
1517
1518 \begin_layout Plain Layout
1519 Subíndices|see
1520 \begin_inset ERT
1521 status collapsed
1522
1523 \begin_layout Plain Layout
1524
1525 {
1526 \end_layout
1527
1528 \end_inset
1529
1530 Índices
1531 \begin_inset ERT
1532 status collapsed
1533
1534 \begin_layout Plain Layout
1535
1536 }
1537 \end_layout
1538
1539 \end_inset
1540
1541
1542 \end_layout
1543
1544 \end_inset
1545
1546
1547 \end_layout
1548
1549 \begin_layout Standard
1550 Los índices se componen con un guión bajo 
1551 \begin_inset Quotes fld
1552 \end_inset
1553
1554 _
1555 \begin_inset Quotes frd
1556 \end_inset
1557
1558  o con el botón de la barra de herramientas de ecuaciones 
1559 \begin_inset Graphics
1560         filename ../../images/math-subscript.png
1561         embed ""
1562         scale 85
1563
1564 \end_inset
1565
1566 , los exponentes con un circunflejo 
1567 \begin_inset Quotes fld
1568 \end_inset
1569
1570 ^
1571 \begin_inset Quotes frd
1572 \end_inset
1573
1574  o con el botón de la barra de herramientas de ecuaciones 
1575 \begin_inset Graphics
1576         filename ../../images/math-superscript.png
1577         embed ""
1578         scale 85
1579
1580 \end_inset
1581
1582 .
1583 \end_layout
1584
1585 \begin_layout Standard
1586 \noindent
1587 \align center
1588 \begin_inset Tabular
1589 <lyxtabular version="3" rows="4" columns="2">
1590 <features>
1591 <column alignment="center" valignment="top" width="0">
1592 <column alignment="center" valignment="top" width="0">
1593 <row>
1594 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1595 \begin_inset Text
1596
1597 \begin_layout Plain Layout
1598 Comando
1599 \end_layout
1600
1601 \end_inset
1602 </cell>
1603 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1604 \begin_inset Text
1605
1606 \begin_layout Plain Layout
1607 Resultado
1608 \begin_inset Note Note
1609 status collapsed
1610
1611 \begin_layout Plain Layout
1612
1613 \series bold
1614
1615 \backslash
1616 raisebox
1617 \series default
1618  sólo se usa como espaciador.
1619 \end_layout
1620
1621 \end_inset
1622
1623
1624 \end_layout
1625
1626 \end_inset
1627 </cell>
1628 </row>
1629 <row>
1630 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1631 \begin_inset Text
1632
1633 \begin_layout Plain Layout
1634 B_V
1635 \end_layout
1636
1637 \end_inset
1638 </cell>
1639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1640 \begin_inset Text
1641
1642 \begin_layout Plain Layout
1643 \begin_inset Formula $B_{V}$
1644 \end_inset
1645
1646
1647 \end_layout
1648
1649 \end_inset
1650 </cell>
1651 </row>
1652 <row>
1653 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1654 \begin_inset Text
1655
1656 \begin_layout Plain Layout
1657 B^V
1658 \end_layout
1659
1660 \end_inset
1661 </cell>
1662 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1663 \begin_inset Text
1664
1665 \begin_layout Plain Layout
1666 \begin_inset Formula $\raisebox {5mm}{}B^{V}$
1667 \end_inset
1668
1669
1670 \end_layout
1671
1672 \end_inset
1673 </cell>
1674 </row>
1675 <row>
1676 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1677 \begin_inset Text
1678
1679 \begin_layout Plain Layout
1680 B^
1681 \begin_inset ERT
1682 status collapsed
1683
1684 \begin_layout Plain Layout
1685
1686
1687 \backslash
1688 spce 
1689 \end_layout
1690
1691 \end_inset
1692
1693 A
1694 \end_layout
1695
1696 \end_inset
1697 </cell>
1698 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1699 \begin_inset Text
1700
1701 \begin_layout Plain Layout
1702 \begin_inset Formula $\raisebox {5mm}{}B^{A}$
1703 \end_inset
1704
1705
1706 \end_layout
1707
1708 \end_inset
1709 </cell>
1710 </row>
1711 </lyxtabular>
1712
1713 \end_inset
1714
1715
1716 \end_layout
1717
1718 \begin_layout Standard
1719 Como en algunos idiomas la tecla circunflejo funciona como acento, en ese
1720  caso acentuará las vocales y no funcionará como exponente.
1721 \begin_inset Foot
1722 status collapsed
1723
1724 \begin_layout Plain Layout
1725 Dependiendo de la configuración del teclado esto puede suceder también con
1726  otros caracteres además de las vocales.
1727 \end_layout
1728
1729 \end_inset
1730
1731  Para conseguir exponentes en estos casos debes pulsar 
1732 \family sans
1733 Espacio
1734 \family default
1735  tras el circunflejo, como en el último ejemplo.
1736  
1737 \end_layout
1738
1739 \begin_layout Subsection
1740 Fracciones
1741 \begin_inset CommandInset label
1742 LatexCommand label
1743 name "sub:Fracciones"
1744
1745 \end_inset
1746
1747
1748 \begin_inset Index
1749 status collapsed
1750
1751 \begin_layout Plain Layout
1752 Fracciones
1753 \end_layout
1754
1755 \end_inset
1756
1757
1758 \end_layout
1759
1760 \begin_layout Standard
1761 Las fracciones se generan con el comando 
1762 \series bold
1763
1764 \backslash
1765 frac
1766 \series default
1767
1768 \begin_inset Index
1769 status collapsed
1770
1771 \begin_layout Plain Layout
1772 Comandos ! F ! 
1773 \backslash
1774 frac
1775 \end_layout
1776
1777 \end_inset
1778
1779  o con el botón 
1780 \begin_inset Graphics
1781         filename ../../images/math/frac.png
1782         embed ""
1783         scale 50
1784
1785 \end_inset
1786
1787  de la barra de herramientas.
1788  El tamaño de fuente se ajusta automáticamente, dependiendo de si la fracción
1789  está en línea o en estilo presentación.
1790  Con el botón 
1791 \begin_inset Graphics
1792         filename ../../images/math/frac-square.png
1793         embed ""
1794         scale 85
1795
1796 \end_inset
1797
1798 de la barra de herramientas matemáticas puedes seleccionar distintos tipos
1799  de fracciones.
1800 \end_layout
1801
1802 \begin_layout Standard
1803 Con el comando 
1804 \series bold
1805
1806 \backslash
1807 dfrac
1808 \series default
1809
1810 \begin_inset Index
1811 status collapsed
1812
1813 \begin_layout Plain Layout
1814 Comandos ! D ! 
1815 \backslash
1816 dfrac
1817 \end_layout
1818
1819 \end_inset
1820
1821  se puede crear en cualquier caso una fracción que tenga el tamaño del estilo
1822  presentación.
1823  Con 
1824 \series bold
1825
1826 \backslash
1827 tfrac
1828 \series default
1829
1830 \begin_inset Index
1831 status collapsed
1832
1833 \begin_layout Plain Layout
1834 Comandos ! T ! 
1835 \backslash
1836 tfrac
1837 \end_layout
1838
1839 \end_inset
1840
1841  la fracción tiene siempre el tamaño del estilo en línea.
1842  Un ejemplo:
1843 \end_layout
1844
1845 \begin_layout Standard
1846 Una línea con la fracción 
1847 \begin_inset Formula $\frac{1}{2}$
1848 \end_inset
1849
1850  creada con el comando 
1851 \series bold
1852
1853 \backslash
1854 frac
1855 \series default
1856 .
1857  
1858 \end_layout
1859
1860 \begin_layout Standard
1861 Una línea con la fracción 
1862 \begin_inset Formula $\dfrac{1}{2}$
1863 \end_inset
1864
1865  creada con el comando 
1866 \series bold
1867
1868 \backslash
1869 dfrac
1870 \series default
1871 .
1872 \end_layout
1873
1874 \begin_layout Standard
1875 \noindent
1876 \align center
1877 \begin_inset Tabular
1878 <lyxtabular version="3" rows="4" columns="2">
1879 <features>
1880 <column alignment="center" valignment="top" width="0">
1881 <column alignment="center" valignment="top" width="0">
1882 <row>
1883 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1884 \begin_inset Text
1885
1886 \begin_layout Plain Layout
1887 Comando
1888 \end_layout
1889
1890 \end_inset
1891 </cell>
1892 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1893 \begin_inset Text
1894
1895 \begin_layout Plain Layout
1896 Resultado
1897 \begin_inset Note Note
1898 status collapsed
1899
1900 \begin_layout Plain Layout
1901
1902 \series bold
1903
1904 \backslash
1905 raisebox
1906 \series default
1907  se usa sólo como espaciador
1908 \end_layout
1909
1910 \end_inset
1911
1912
1913 \end_layout
1914
1915 \end_inset
1916 </cell>
1917 </row>
1918 <row>
1919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1920 \begin_inset Text
1921
1922 \begin_layout Plain Layout
1923
1924 \backslash
1925 frac
1926 \begin_inset ERT
1927 status collapsed
1928
1929 \begin_layout Plain Layout
1930
1931
1932 \backslash
1933 spce 
1934 \end_layout
1935
1936 \end_inset
1937
1938 A
1939 \begin_inset Formula $\downarrow$
1940 \end_inset
1941
1942 B
1943 \end_layout
1944
1945 \end_inset
1946 </cell>
1947 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1948 \begin_inset Text
1949
1950 \begin_layout Plain Layout
1951 \begin_inset Formula $\raisebox {4.5mm}{}\frac{A}{B}\raisebox {-2.5mm}{}$
1952 \end_inset
1953
1954
1955 \end_layout
1956
1957 \end_inset
1958 </cell>
1959 </row>
1960 <row>
1961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1962 \begin_inset Text
1963
1964 \begin_layout Plain Layout
1965
1966 \backslash
1967 dfrac
1968 \begin_inset ERT
1969 status collapsed
1970
1971 \begin_layout Plain Layout
1972
1973
1974 \backslash
1975 spce 
1976 \end_layout
1977
1978 \end_inset
1979
1980 A
1981 \begin_inset Formula $\downarrow$
1982 \end_inset
1983
1984 B
1985 \end_layout
1986
1987 \end_inset
1988 </cell>
1989 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1990 \begin_inset Text
1991
1992 \begin_layout Plain Layout
1993 \begin_inset Formula $\raisebox {7mm}{}\dfrac{A}{B}\raisebox {-4mm}{}$
1994 \end_inset
1995
1996
1997 \end_layout
1998
1999 \end_inset
2000 </cell>
2001 </row>
2002 <row>
2003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2004 \begin_inset Text
2005
2006 \begin_layout Plain Layout
2007
2008 \backslash
2009 dfrac
2010 \begin_inset ERT
2011 status collapsed
2012
2013 \begin_layout Plain Layout
2014
2015
2016 \backslash
2017 spce 
2018 \end_layout
2019
2020 \end_inset
2021
2022 e^
2023 \begin_inset ERT
2024 status collapsed
2025
2026 \begin_layout Plain Layout
2027
2028
2029 \backslash
2030 spce 
2031 \end_layout
2032
2033 \end_inset
2034
2035
2036 \backslash
2037 frac
2038 \begin_inset ERT
2039 status collapsed
2040
2041 \begin_layout Plain Layout
2042
2043
2044 \backslash
2045 spce 
2046 \end_layout
2047
2048 \end_inset
2049
2050 1
2051 \begin_inset Formula $\downarrow$
2052 \end_inset
2053
2054 2
2055 \begin_inset Formula $\downarrow$
2056 \end_inset
2057
2058 3
2059 \end_layout
2060
2061 \end_inset
2062 </cell>
2063 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2064 \begin_inset Text
2065
2066 \begin_layout Plain Layout
2067 \begin_inset Formula $\raisebox {8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox {-4mm}{}$
2068 \end_inset
2069
2070
2071 \end_layout
2072
2073 \end_inset
2074 </cell>
2075 </row>
2076 </lyxtabular>
2077
2078 \end_inset
2079
2080
2081 \begin_inset VSpace bigskip
2082 \end_inset
2083
2084
2085 \end_layout
2086
2087 \begin_layout Standard
2088 Para fracciones anidadas se puede usar el comando 
2089 \series bold
2090
2091 \backslash
2092 cfrac
2093 \series default
2094
2095 \begin_inset Index
2096 status collapsed
2097
2098 \begin_layout Plain Layout
2099 Comandos ! C ! 
2100 \backslash
2101 cfrac
2102 \end_layout
2103
2104 \end_inset
2105
2106 .
2107  Un ejemplo:
2108 \begin_inset VSpace -3mm
2109 \end_inset
2110
2111
2112 \end_layout
2113
2114 \begin_layout Standard
2115 \begin_inset Formula \begin{align*}
2116 \textrm{creada con \textbf{\textbackslash  frac} } &  & \textrm{creada con }\mathbf{\textbackslash \textbf{cfrac}}\\
2117 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac {A}{B+\cfrac {C+\cfrac {E}{F}}{D}}\end{align*}
2118
2119 \end_inset
2120
2121
2122 \end_layout
2123
2124 \begin_layout Standard
2125 El comando para el ejemplo de arriba es:
2126 \end_layout
2127
2128 \begin_layout Standard
2129
2130 \series bold
2131
2132 \backslash
2133 cfrac{A
2134 \begin_inset Formula $\to$
2135 \end_inset
2136
2137
2138 \backslash
2139 {B+
2140 \backslash
2141 cfrac{C+
2142 \backslash
2143 cfrac{E
2144 \begin_inset Formula $\to$
2145 \end_inset
2146
2147
2148 \backslash
2149 {F
2150 \begin_inset Formula $\to\to$
2151 \end_inset
2152
2153
2154 \backslash
2155 {D
2156 \end_layout
2157
2158 \begin_layout Standard
2159 \begin_inset VSpace medskip
2160 \end_inset
2161
2162
2163 \end_layout
2164
2165 \begin_layout Standard
2166
2167 \series bold
2168
2169 \backslash
2170 cfrac
2171 \series default
2172  compone la fracción siempre en el tamaño del estilo presentación, también
2173  cuando es parte de otra fracción.
2174  
2175 \series bold
2176
2177 \backslash
2178 cfrac
2179 \series default
2180  tiene el siguiente esquema de comando:
2181 \end_layout
2182
2183 \begin_layout Standard
2184
2185 \series bold
2186
2187 \backslash
2188 cfrac[posición del numerador]{numerador}{denominador}
2189 \end_layout
2190
2191 \begin_layout Standard
2192 La posición del numerador puede ser 
2193 \emph on
2194 l
2195 \emph default
2196
2197 \emph on
2198 c
2199 \emph default
2200  o 
2201 \emph on
2202 r
2203 \emph default
2204  .
2205  
2206 \emph on
2207 l
2208 \emph default
2209  o 
2210 \emph on
2211 r
2212 \emph default
2213  alinean el numerador a la izquierda o a la derecha, respectivamente, de
2214  la raya de fracción.
2215  Si se pone 
2216 \emph on
2217 c
2218 \emph default
2219  o no se especifica posición, el numerador aparece centrado.
2220  Estas fracciones muestran las distintas alineaciones:
2221 \end_layout
2222
2223 \begin_layout Standard
2224 \noindent
2225 \align center
2226 \begin_inset Formula $\cfrac [l]{A}{B+C}$
2227 \end_inset
2228
2229  ; 
2230 \begin_inset Formula $\cfrac {A}{B+C}$
2231 \end_inset
2232
2233  ; 
2234 \begin_inset Formula $\cfrac [r]{A}{B+C}$
2235 \end_inset
2236
2237  
2238 \begin_inset VSpace medskip
2239 \end_inset
2240
2241
2242 \end_layout
2243
2244 \begin_layout Standard
2245 Muchas veces es adecuado combinar 
2246 \series bold
2247
2248 \backslash
2249 cfrac
2250 \series default
2251  y 
2252 \series bold
2253
2254 \backslash
2255 frac
2256 \series default
2257 :
2258 \begin_inset Formula \[
2259 \cfrac {A}{B+\cfrac {C+\frac{E}{F}}{D}}\]
2260
2261 \end_inset
2262
2263
2264 \end_layout
2265
2266 \begin_layout Standard
2267 Para componer fracciones en línea con raya de fracción inclinada puedes
2268  usar el comando 
2269 \series bold
2270
2271 \backslash
2272 nicefrac
2273 \series default
2274
2275 \begin_inset Index
2276 status collapsed
2277
2278 \begin_layout Plain Layout
2279 Comandos ! N ! 
2280 \backslash
2281 nicefrac
2282 \end_layout
2283
2284 \end_inset
2285
2286
2287 \begin_inset Formula $\nicefrac{5}{31}$
2288 \end_inset
2289
2290  
2291 \end_layout
2292
2293 \begin_layout Standard
2294 En la 
2295 \begin_inset CommandInset ref
2296 LatexCommand ref
2297 reference "sub:Fracciones-personalizadas"
2298
2299 \end_inset
2300
2301  se explica cómo componer fracciones personalizadas en las que la raya de
2302  fracción se puede cambiar.
2303  
2304 \end_layout
2305
2306 \begin_layout Subsection
2307 Raíces
2308 \begin_inset Index
2309 status collapsed
2310
2311 \begin_layout Plain Layout
2312 Raíces
2313 \end_layout
2314
2315 \end_inset
2316
2317
2318 \end_layout
2319
2320 \begin_layout Standard
2321 Las raíces cuadradas se componen con 
2322 \series bold
2323
2324 \backslash
2325 sqrt
2326 \series default
2327
2328 \begin_inset Index
2329 status collapsed
2330
2331 \begin_layout Plain Layout
2332 Comandos ! S ! 
2333 \backslash
2334 sqrt
2335 \end_layout
2336
2337 \end_inset
2338
2339  o con el botón 
2340 \begin_inset Graphics
2341         filename ../../images/math/sqrt.png
2342         embed ""
2343         scale 85
2344
2345 \end_inset
2346
2347  de la barra de  ecuaciones; todas las demás raíces con el comando 
2348 \series bold
2349
2350 \backslash
2351 root
2352 \series default
2353
2354 \begin_inset Index
2355 status collapsed
2356
2357 \begin_layout Plain Layout
2358 Comandos ! R ! 
2359 \backslash
2360 root
2361 \end_layout
2362
2363 \end_inset
2364
2365  o con el botón 
2366 \begin_inset Graphics
2367         filename ../../images/math/root.png
2368         embed ""
2369         scale 85
2370
2371 \end_inset
2372
2373 .
2374 \end_layout
2375
2376 \begin_layout Standard
2377 \noindent
2378 \align center
2379 \begin_inset Tabular
2380 <lyxtabular version="3" rows="3" columns="2">
2381 <features>
2382 <column alignment="center" valignment="top" width="0">
2383 <column alignment="center" valignment="top" width="0">
2384 <row>
2385 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2386 \begin_inset Text
2387
2388 \begin_layout Plain Layout
2389 Comando
2390 \end_layout
2391
2392 \end_inset
2393 </cell>
2394 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2395 \begin_inset Text
2396
2397 \begin_layout Plain Layout
2398 Resultado
2399 \begin_inset Note Note
2400 status collapsed
2401
2402 \begin_layout Plain Layout
2403
2404 \series bold
2405
2406 \backslash
2407 raisebox
2408 \series default
2409  se usa sólo como espaciador
2410 \end_layout
2411
2412 \end_inset
2413
2414
2415 \end_layout
2416
2417 \end_inset
2418 </cell>
2419 </row>
2420 <row>
2421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2422 \begin_inset Text
2423
2424 \begin_layout Plain Layout
2425
2426 \backslash
2427 sqrt
2428 \begin_inset ERT
2429 status collapsed
2430
2431 \begin_layout Plain Layout
2432
2433
2434 \backslash
2435 spce 
2436 \end_layout
2437
2438 \end_inset
2439
2440 A-B
2441 \end_layout
2442
2443 \end_inset
2444 </cell>
2445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2446 \begin_inset Text
2447
2448 \begin_layout Plain Layout
2449 \begin_inset Formula $\raisebox {4.5mm}{}\sqrt{A-B}$
2450 \end_inset
2451
2452
2453 \end_layout
2454
2455 \end_inset
2456 </cell>
2457 </row>
2458 <row>
2459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2460 \begin_inset Text
2461
2462 \begin_layout Plain Layout
2463
2464 \backslash
2465 root
2466 \begin_inset ERT
2467 status collapsed
2468
2469 \begin_layout Plain Layout
2470
2471
2472 \backslash
2473 spce 
2474 \end_layout
2475
2476 \end_inset
2477
2478 3
2479 \begin_inset Formula $\downarrow$
2480 \end_inset
2481
2482 A-B
2483 \end_layout
2484
2485 \end_inset
2486 </cell>
2487 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2488 \begin_inset Text
2489
2490 \begin_layout Plain Layout
2491 \begin_inset Formula $\raisebox {4.5mm}{}\sqrt[3]{A-B}$
2492 \end_inset
2493
2494
2495 \end_layout
2496
2497 \end_inset
2498 </cell>
2499 </row>
2500 </lyxtabular>
2501
2502 \end_inset
2503
2504
2505 \end_layout
2506
2507 \begin_layout Standard
2508 Una raíz cuadrada se compone también con 
2509 \series bold
2510
2511 \backslash
2512 root
2513 \series default
2514  dejando vacío el campo del índice.
2515 \end_layout
2516
2517 \begin_layout Standard
2518 Con ciertos índices la distancia a la raíz es demasiado pequeña, como en
2519  la raíz: 
2520 \begin_inset Formula $\sqrt[\beta]{B}$
2521 \end_inset
2522
2523
2524 \begin_inset Newline newline
2525 \end_inset
2526
2527 La 
2528 \begin_inset Formula $\beta$
2529 \end_inset
2530
2531  toca la raíz.
2532  Para evitar esto se usan los comandos 
2533 \series bold
2534
2535 \backslash
2536 leftroot
2537 \series default
2538
2539 \begin_inset Index
2540 status collapsed
2541
2542 \begin_layout Plain Layout
2543 Comandos ! L ! 
2544 \backslash
2545 leftroot
2546 \end_layout
2547
2548 \end_inset
2549
2550  y 
2551 \series bold
2552
2553 \backslash
2554 uproot
2555 \series default
2556
2557 \begin_inset Index
2558 status collapsed
2559
2560 \begin_layout Plain Layout
2561 Comandos ! U ! 
2562 \backslash
2563 uproot
2564 \end_layout
2565
2566 \end_inset
2567
2568  con el esquema siguiente:
2569 \end_layout
2570
2571 \begin_layout Standard
2572
2573 \series bold
2574
2575 \backslash
2576 leftroot{distancia}
2577 \series default
2578  y 
2579 \series bold
2580
2581 \backslash
2582 uproot{distancia}
2583 \end_layout
2584
2585 \begin_layout Standard
2586 Distancia es el número de Puntos Grandes (
2587 \begin_inset Quotes fld
2588 \end_inset
2589
2590 Big Points
2591 \begin_inset Quotes frd
2592 \end_inset
2593
2594 , unidad bp; 
2595 \begin_inset Formula $\mathrm{72\, bp=1\, pulgada}$
2596 \end_inset
2597
2598 ) que debería moverse el índice a la izquierda o arriba, respectivamente.
2599  Los comandos se escriben en el índice.
2600  Así, el comando:
2601 \begin_inset Newline newline
2602 \end_inset
2603
2604
2605 \series bold
2606
2607 \backslash
2608 root
2609 \backslash
2610 leftroot{-1
2611 \begin_inset Formula $\to$
2612 \end_inset
2613
2614
2615 \backslash
2616 uproot{2
2617 \begin_inset Formula $\to$
2618 \end_inset
2619
2620
2621 \backslash
2622 beta
2623 \begin_inset ERT
2624 status collapsed
2625
2626 \begin_layout Plain Layout
2627
2628
2629 \backslash
2630 spce 
2631 \end_layout
2632
2633 \end_inset
2634
2635
2636 \begin_inset Formula $\to$
2637 \end_inset
2638
2639 B
2640 \begin_inset Newline newline
2641 \end_inset
2642
2643
2644 \series default
2645 genera una fórmula correctamente tipografiada: 
2646 \begin_inset Formula $\sqrt[\leftroot {-1}\uproot {2}\beta]{B}$
2647 \end_inset
2648
2649
2650 \end_layout
2651
2652 \begin_layout Subsection
2653 Coeficientes de un binomio
2654 \begin_inset Index
2655 status collapsed
2656
2657 \begin_layout Plain Layout
2658 Binomios
2659 \end_layout
2660
2661 \end_inset
2662
2663
2664 \end_layout
2665
2666 \begin_layout Standard
2667 Los coeficientes de un binomio se insertan con el comando 
2668 \series bold
2669
2670 \backslash
2671 binom
2672 \series default
2673
2674 \begin_inset Index
2675 status collapsed
2676
2677 \begin_layout Plain Layout
2678 Comandos ! B ! 
2679 \backslash
2680 binom
2681 \end_layout
2682
2683 \end_inset
2684
2685  o con el submenú del botón 
2686 \begin_inset Graphics
2687         filename ../../images/math/frac-square.png
2688         embed ""
2689         scale 85
2690
2691 \end_inset
2692
2693 de la barra de herramientas de ecuaciones.
2694  Como en las fracciones, además de 
2695 \series bold
2696
2697 \backslash
2698 binom
2699 \series default
2700  hay los comandos 
2701 \series bold
2702
2703 \backslash
2704 dbinom
2705 \begin_inset Index
2706 status collapsed
2707
2708 \begin_layout Plain Layout
2709 Comandos ! D ! 
2710 \backslash
2711 dbinom
2712 \end_layout
2713
2714 \end_inset
2715
2716
2717 \series default
2718  y 
2719 \series bold
2720
2721 \backslash
2722 tbinom
2723 \series default
2724
2725 \begin_inset Index
2726 status collapsed
2727
2728 \begin_layout Plain Layout
2729 Comandos ! T ! 
2730 \backslash
2731 tbinom
2732 \end_layout
2733
2734 \end_inset
2735
2736 .
2737 \end_layout
2738
2739 \begin_layout Standard
2740 \noindent
2741 \align center
2742 \begin_inset Tabular
2743 <lyxtabular version="3" rows="4" columns="2">
2744 <features>
2745 <column alignment="center" valignment="top" width="0">
2746 <column alignment="center" valignment="top" width="0">
2747 <row>
2748 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2749 \begin_inset Text
2750
2751 \begin_layout Plain Layout
2752 Comando
2753 \end_layout
2754
2755 \end_inset
2756 </cell>
2757 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2758 \begin_inset Text
2759
2760 \begin_layout Plain Layout
2761 Resultado
2762 \begin_inset Note Note
2763 status collapsed
2764
2765 \begin_layout Plain Layout
2766
2767 \series bold
2768
2769 \backslash
2770 raisebox
2771 \series default
2772  se usa sólo como espaciador
2773 \end_layout
2774
2775 \end_inset
2776
2777
2778 \end_layout
2779
2780 \end_inset
2781 </cell>
2782 </row>
2783 <row>
2784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2785 \begin_inset Text
2786
2787 \begin_layout Plain Layout
2788
2789 \backslash
2790 binom
2791 \begin_inset ERT
2792 status collapsed
2793
2794 \begin_layout Plain Layout
2795
2796
2797 \backslash
2798 spce 
2799 \end_layout
2800
2801 \end_inset
2802
2803 A
2804 \begin_inset Formula $\downarrow$
2805 \end_inset
2806
2807 B
2808 \end_layout
2809
2810 \end_inset
2811 </cell>
2812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2813 \begin_inset Text
2814
2815 \begin_layout Plain Layout
2816 \begin_inset Formula $\raisebox {5mm}{}\binom{A}{B}\raisebox {-2.5mm}{}$
2817 \end_inset
2818
2819
2820 \end_layout
2821
2822 \end_inset
2823 </cell>
2824 </row>
2825 <row>
2826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2827 \begin_inset Text
2828
2829 \begin_layout Plain Layout
2830
2831 \backslash
2832 dbinom
2833 \begin_inset ERT
2834 status collapsed
2835
2836 \begin_layout Plain Layout
2837
2838
2839 \backslash
2840 spce 
2841 \end_layout
2842
2843 \end_inset
2844
2845 A
2846 \begin_inset Formula $\downarrow$
2847 \end_inset
2848
2849 B
2850 \end_layout
2851
2852 \end_inset
2853 </cell>
2854 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2855 \begin_inset Text
2856
2857 \begin_layout Plain Layout
2858 \begin_inset Formula $\raisebox {5mm}{}\dbinom{A}{B}\raisebox {-2.5mm}{}$
2859 \end_inset
2860
2861
2862 \end_layout
2863
2864 \end_inset
2865 </cell>
2866 </row>
2867 <row>
2868 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2869 \begin_inset Text
2870
2871 \begin_layout Plain Layout
2872
2873 \backslash
2874 tbinom
2875 \begin_inset ERT
2876 status collapsed
2877
2878 \begin_layout Plain Layout
2879
2880
2881 \backslash
2882 spce 
2883 \end_layout
2884
2885 \end_inset
2886
2887 A
2888 \begin_inset Formula $\downarrow$
2889 \end_inset
2890
2891 B
2892 \end_layout
2893
2894 \end_inset
2895 </cell>
2896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2897 \begin_inset Text
2898
2899 \begin_layout Plain Layout
2900 \begin_inset Formula $\raisebox {5mm}{}\tbinom{A}{B}\raisebox {-2.5mm}{}$
2901 \end_inset
2902
2903
2904 \end_layout
2905
2906 \end_inset
2907 </cell>
2908 </row>
2909 </lyxtabular>
2910
2911 \end_inset
2912
2913
2914 \end_layout
2915
2916 \begin_layout Subsection
2917 Diferenciaciones de casos
2918 \begin_inset Index
2919 status collapsed
2920
2921 \begin_layout Plain Layout
2922 Casos
2923 \end_layout
2924
2925 \end_inset
2926
2927
2928 \end_layout
2929
2930 \begin_layout Standard
2931 \noindent
2932 \align center
2933 \begin_inset Tabular
2934 <lyxtabular version="3" rows="3" columns="2">
2935 <features>
2936 <column alignment="center" valignment="top" width="0">
2937 <column alignment="center" valignment="top" width="0">
2938 <row>
2939 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2940 \begin_inset Text
2941
2942 \begin_layout Plain Layout
2943 Comando
2944 \end_layout
2945
2946 \end_inset
2947 </cell>
2948 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2949 \begin_inset Text
2950
2951 \begin_layout Plain Layout
2952 Resultado
2953 \end_layout
2954
2955 \end_inset
2956 </cell>
2957 </row>
2958 <row>
2959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2960 \begin_inset Text
2961
2962 \begin_layout Plain Layout
2963
2964 \backslash
2965 cases
2966 \begin_inset ERT
2967 status collapsed
2968
2969 \begin_layout Plain Layout
2970
2971
2972 \backslash
2973 spce 
2974 \end_layout
2975
2976 \end_inset
2977
2978 A
2979 \begin_inset Formula $\to$
2980 \end_inset
2981
2982 B>0
2983 \begin_inset Index
2984 status collapsed
2985
2986 \begin_layout Plain Layout
2987 Comandos ! C ! 
2988 \backslash
2989 cases
2990 \end_layout
2991
2992 \end_inset
2993
2994
2995 \end_layout
2996
2997 \end_inset
2998 </cell>
2999 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3000 \begin_inset Text
3001
3002 \begin_layout Plain Layout
3003 \begin_inset Formula $\begin{cases}
3004 A & B>0\end{cases}$
3005 \end_inset
3006
3007
3008 \end_layout
3009
3010 \end_inset
3011 </cell>
3012 </row>
3013 <row>
3014 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3015 \begin_inset Text
3016
3017 \begin_layout Plain Layout
3018
3019 \backslash
3020 cases
3021 \begin_inset ERT
3022 status collapsed
3023
3024 \begin_layout Plain Layout
3025
3026
3027 \backslash
3028 spce 
3029 \end_layout
3030
3031 \end_inset
3032
3033 Ctrl-Intro
3034 \end_layout
3035
3036 \end_inset
3037 </cell>
3038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3039 \begin_inset Text
3040
3041 \begin_layout Plain Layout
3042 \begin_inset Formula $\begin{cases}
3043 A & \textrm{para }x>0\\
3044 B & \textrm{para }x=0\end{cases}$
3045 \end_inset
3046
3047
3048 \end_layout
3049
3050 \end_inset
3051 </cell>
3052 </row>
3053 </lyxtabular>
3054
3055 \end_inset
3056
3057
3058 \end_layout
3059
3060 \begin_layout Standard
3061 Después de insertar 
3062 \series bold
3063
3064 \backslash
3065 cases
3066 \series default
3067  o usar el botón 
3068 \begin_inset Graphics
3069         filename ../../images/math/cases.png
3070         embed ""
3071         scale 85
3072
3073 \end_inset
3074
3075  de la barra de ecuaciones puedes añadir líneas nuevas con el atajo 
3076 \family sans
3077 Ctrl-Intro
3078 \family default
3079  o con el botón
3080 \family sans
3081  
3082 \family default
3083
3084 \begin_inset Graphics
3085         filename ../../images/tabular-feature_append-row.png
3086         embed ""
3087         scale 85
3088
3089 \end_inset
3090
3091  de la barra de tablas.
3092 \end_layout
3093
3094 \begin_layout Standard
3095 El comando 
3096 \series bold
3097
3098 \backslash
3099 cases
3100 \series default
3101  también está disponible en el menú 
3102 \family sans
3103 Insertar\SpecialChar \menuseparator
3104 Ecuación\SpecialChar \menuseparator
3105 Entorno casos
3106 \family default
3107 .
3108 \end_layout
3109
3110 \begin_layout Subsection
3111 Negaciones
3112 \begin_inset Index
3113 status collapsed
3114
3115 \begin_layout Plain Layout
3116 Negaciones
3117 \end_layout
3118
3119 \end_inset
3120
3121
3122 \end_layout
3123
3124 \begin_layout Standard
3125 Con el comando 
3126 \series bold
3127
3128 \backslash
3129 not
3130 \series default
3131
3132 \begin_inset Index
3133 status collapsed
3134
3135 \begin_layout Plain Layout
3136 Comandos ! N ! 
3137 \backslash
3138 not
3139 \end_layout
3140
3141 \end_inset
3142
3143  todo carácter se puede mostrar cancelado.
3144  Los caracteres son casi tachados con una barra inclinada.
3145 \end_layout
3146
3147 \begin_layout Standard
3148 \noindent
3149 \align center
3150 \begin_inset Tabular
3151 <lyxtabular version="3" rows="4" columns="2">
3152 <features>
3153 <column alignment="center" valignment="top" width="0">
3154 <column alignment="center" valignment="top" width="0">
3155 <row>
3156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3157 \begin_inset Text
3158
3159 \begin_layout Plain Layout
3160 Comando
3161 \end_layout
3162
3163 \end_inset
3164 </cell>
3165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3166 \begin_inset Text
3167
3168 \begin_layout Plain Layout
3169 Resultado
3170 \end_layout
3171
3172 \end_inset
3173 </cell>
3174 </row>
3175 <row>
3176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3177 \begin_inset Text
3178
3179 \begin_layout Plain Layout
3180
3181 \backslash
3182 not=
3183 \end_layout
3184
3185 \end_inset
3186 </cell>
3187 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3188 \begin_inset Text
3189
3190 \begin_layout Plain Layout
3191 \begin_inset Formula $\not=$
3192 \end_inset
3193
3194
3195 \end_layout
3196
3197 \end_inset
3198 </cell>
3199 </row>
3200 <row>
3201 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3202 \begin_inset Text
3203
3204 \begin_layout Plain Layout
3205
3206 \backslash
3207 not 
3208 \backslash
3209 le
3210 \end_layout
3211
3212 \end_inset
3213 </cell>
3214 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3215 \begin_inset Text
3216
3217 \begin_layout Plain Layout
3218 \begin_inset Formula $\not\le$
3219 \end_inset
3220
3221
3222 \end_layout
3223
3224 \end_inset
3225 </cell>
3226 </row>
3227 <row>
3228 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3229 \begin_inset Text
3230
3231 \begin_layout Plain Layout
3232
3233 \backslash
3234 not 
3235 \backslash
3236 parallel
3237 \end_layout
3238
3239 \end_inset
3240 </cell>
3241 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3242 \begin_inset Text
3243
3244 \begin_layout Plain Layout
3245 \begin_inset Formula $\not\parallel$
3246 \end_inset
3247
3248
3249 \end_layout
3250
3251 \end_inset
3252 </cell>
3253 </row>
3254 </lyxtabular>
3255
3256 \end_inset
3257
3258
3259 \end_layout
3260
3261 \begin_layout Standard
3262 El último ejemplo muestra que no todas las negaciones tienen buen aspecto.
3263  Por tanto para algunas negaciones hay comandos especiales (véase 
3264 \begin_inset CommandInset ref
3265 LatexCommand ref
3266 reference "sub:Símbolos-matemáticos"
3267
3268 \end_inset
3269
3270  y 
3271 \begin_inset CommandInset ref
3272 LatexCommand ref
3273 reference "sec:Relaciones"
3274
3275 \end_inset
3276
3277 ).
3278 \end_layout
3279
3280 \begin_layout Subsection
3281 Espaciadores fantasma 
3282 \begin_inset CommandInset label
3283 LatexCommand label
3284 name "sub:Espaciadores-fantasma"
3285
3286 \end_inset
3287
3288
3289 \begin_inset Index
3290 status collapsed
3291
3292 \begin_layout Plain Layout
3293 Espaciadores fantasma
3294 \end_layout
3295
3296 \end_inset
3297
3298
3299 \begin_inset Index
3300 status collapsed
3301
3302 \begin_layout Plain Layout
3303 Química ! isótopos
3304 \end_layout
3305
3306 \end_inset
3307
3308
3309 \begin_inset Index
3310 status collapsed
3311
3312 \begin_layout Plain Layout
3313 Isótopos|see
3314 \begin_inset ERT
3315 status collapsed
3316
3317 \begin_layout Plain Layout
3318
3319 {
3320 \end_layout
3321
3322 \end_inset
3323
3324 Química
3325 \begin_inset ERT
3326 status collapsed
3327
3328 \begin_layout Plain Layout
3329
3330 }
3331 \end_layout
3332
3333 \end_inset
3334
3335
3336 \end_layout
3337
3338 \end_inset
3339
3340
3341 \end_layout
3342
3343 \begin_layout Standard
3344 En la presentación de isótopos
3345 \begin_inset Foot
3346 status collapsed
3347
3348 \begin_layout Plain Layout
3349 Más sobre símbolos químicos en 
3350 \begin_inset CommandInset ref
3351 LatexCommand ref
3352 reference "sub:Símbolos-y-ecuaciones-químicas"
3353
3354 \end_inset
3355
3356
3357 \end_layout
3358
3359 \end_inset
3360
3361 , p.
3362 \begin_inset Space \thinspace{}
3363 \end_inset
3364
3365 e., surge el problema siguiente:
3366 \end_layout
3367
3368 \begin_layout Standard
3369 \noindent
3370 \align center
3371 \begin_inset Tabular
3372 <lyxtabular version="3" rows="2" columns="2">
3373 <features>
3374 <column alignment="center" valignment="top" width="0">
3375 <column alignment="center" valignment="top" width="0">
3376 <row>
3377 <cell alignment="center" valignment="top" usebox="none">
3378 \begin_inset Text
3379
3380 \begin_layout Plain Layout
3381 Índices generados con sub- y superíndices:
3382 \end_layout
3383
3384 \end_inset
3385 </cell>
3386 <cell alignment="center" valignment="top" usebox="none">
3387 \begin_inset Text
3388
3389 \begin_layout Plain Layout
3390 \begin_inset Formula $_{9}^{19}\textrm{F}\raisebox {-3mm}{}$
3391 \end_inset
3392
3393
3394 \end_layout
3395
3396 \end_inset
3397 </cell>
3398 </row>
3399 <row>
3400 <cell alignment="center" valignment="top" usebox="none">
3401 \begin_inset Text
3402
3403 \begin_layout Plain Layout
3404 Índices correctos:
3405 \end_layout
3406
3407 \end_inset
3408 </cell>
3409 <cell alignment="center" valignment="top" usebox="none">
3410 \begin_inset Text
3411
3412 \begin_layout Plain Layout
3413 \begin_inset Formula $_{\phantom{1}9}^{19}\textrm{F}$
3414 \end_inset
3415
3416
3417 \end_layout
3418
3419 \end_inset
3420 </cell>
3421 </row>
3422 </lyxtabular>
3423
3424 \end_inset
3425
3426
3427 \begin_inset Note Note
3428 status collapsed
3429
3430 \begin_layout Plain Layout
3431
3432 \series bold
3433
3434 \backslash
3435 raisebox
3436 \series default
3437  se usa sólo como espaciador
3438 \end_layout
3439
3440 \end_inset
3441
3442
3443 \end_layout
3444
3445 \begin_layout Standard
3446 Por defecto, el índice más corto se coloca sobre o bajo el primer carácter
3447  del índice más largo.
3448  Para evitarlo está el comando 
3449 \series bold
3450
3451 \backslash
3452 phantom
3453 \series default
3454
3455 \begin_inset Index
3456 status collapsed
3457
3458 \begin_layout Plain Layout
3459 Comandos ! P ! 
3460 \backslash
3461 phantom
3462 \end_layout
3463
3464 \end_inset
3465
3466  o el botón 
3467 \begin_inset Space ~
3468 \end_inset
3469
3470
3471 \begin_inset Graphics
3472         filename ../../images/math/phantom.png
3473         embed ""
3474         scale 85
3475
3476 \end_inset
3477
3478  del submenú de espaciado de ecuaciones
3479 \begin_inset Foot
3480 status collapsed
3481
3482 \begin_layout Plain Layout
3483 Botón 
3484 \begin_inset Graphics
3485         filename ../../images/math/space.png
3486         embed ""
3487         scale 85
3488
3489 \end_inset
3490
3491  de la barra de ecuaciones
3492 \end_layout
3493
3494 \end_inset
3495
3496 , que genera uno o más caracteres fantasma.
3497  Al insertar 
3498 \series bold
3499
3500 \backslash
3501 phantom
3502 \series default
3503  aparece un pequeño marco azul con dos flechas rojas superpuestas
3504 \begin_inset Formula $\phantom{}$
3505 \end_inset
3506
3507 .
3508  Las flechas indican que se utilizarán como espaciador la anchura y altura
3509  totales del contenido del marco.
3510  Los caracteres fantasmas son espaciadores adecuados al tamaño de los caracteres.
3511 \end_layout
3512
3513 \begin_layout Standard
3514 \noindent
3515 \align center
3516 \begin_inset Tabular
3517 <lyxtabular version="3" rows="4" columns="2">
3518 <features>
3519 <column alignment="center" valignment="top" width="0">
3520 <column alignment="center" valignment="top" width="0">
3521 <row>
3522 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3523 \begin_inset Text
3524
3525 \begin_layout Plain Layout
3526 Comando
3527 \end_layout
3528
3529 \end_inset
3530 </cell>
3531 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3532 \begin_inset Text
3533
3534 \begin_layout Plain Layout
3535 Resultado
3536 \begin_inset Note Note
3537 status collapsed
3538
3539 \begin_layout Plain Layout
3540
3541 \series bold
3542
3543 \backslash
3544 raisebox
3545 \series default
3546  se usa sólo como espaciador
3547 \end_layout
3548
3549 \end_inset
3550
3551
3552 \end_layout
3553
3554 \end_inset
3555 </cell>
3556 </row>
3557 <row>
3558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3559 \begin_inset Text
3560
3561 \begin_layout Plain Layout
3562 ^19
3563 \begin_inset ERT
3564 status collapsed
3565
3566 \begin_layout Plain Layout
3567
3568
3569 \backslash
3570 spce 
3571 \end_layout
3572
3573 \end_inset
3574
3575 _
3576 \backslash
3577 phantom
3578 \begin_inset ERT
3579 status collapsed
3580
3581 \begin_layout Plain Layout
3582
3583
3584 \backslash
3585 spce 
3586 \end_layout
3587
3588 \end_inset
3589
3590 1
3591 \begin_inset Formula $\rightarrow$
3592 \end_inset
3593
3594 9
3595 \begin_inset ERT
3596 status collapsed
3597
3598 \begin_layout Plain Layout
3599
3600
3601 \backslash
3602 spce 
3603 \end_layout
3604
3605 \end_inset
3606
3607 F
3608 \end_layout
3609
3610 \end_inset
3611 </cell>
3612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3613 \begin_inset Text
3614
3615 \begin_layout Plain Layout
3616 \begin_inset Formula $\raisebox {4.5mm}{}{}_{\phantom{1}9}^{19}\textrm{F}\raisebox {-2.5mm}{}$
3617 \end_inset
3618
3619
3620 \end_layout
3621
3622 \end_inset
3623 </cell>
3624 </row>
3625 <row>
3626 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3627 \begin_inset Text
3628
3629 \begin_layout Plain Layout
3630 ^235
3631 \begin_inset ERT
3632 status collapsed
3633
3634 \begin_layout Plain Layout
3635
3636
3637 \backslash
3638 spce 
3639 \end_layout
3640
3641 \end_inset
3642
3643 _
3644 \backslash
3645 phantom
3646 \begin_inset ERT
3647 status collapsed
3648
3649 \begin_layout Plain Layout
3650
3651
3652 \backslash
3653 spce 
3654 \end_layout
3655
3656 \end_inset
3657
3658 23
3659 \begin_inset Formula $\rightarrow$
3660 \end_inset
3661
3662 9
3663 \begin_inset ERT
3664 status collapsed
3665
3666 \begin_layout Plain Layout
3667
3668
3669 \backslash
3670 spce 
3671 \end_layout
3672
3673 \end_inset
3674
3675 F
3676 \end_layout
3677
3678 \end_inset
3679 </cell>
3680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3681 \begin_inset Text
3682
3683 \begin_layout Plain Layout
3684 \begin_inset Formula $\raisebox {4.5mm}{}{}_{\phantom{23}9}^{235}\textrm{F}\raisebox {-2.5mm}{}$
3685 \end_inset
3686
3687
3688 \end_layout
3689
3690 \end_inset
3691 </cell>
3692 </row>
3693 <row>
3694 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3695 \begin_inset Text
3696
3697 \begin_layout Plain Layout
3698
3699 \backslash
3700 Lambda^
3701 \begin_inset ERT
3702 status collapsed
3703
3704 \begin_layout Plain Layout
3705
3706
3707 \backslash
3708 spce 
3709 \end_layout
3710
3711 \end_inset
3712
3713
3714 \backslash
3715 phantom
3716 \begin_inset ERT
3717 status collapsed
3718
3719 \begin_layout Plain Layout
3720
3721
3722 \backslash
3723 spce 
3724 \end_layout
3725
3726 \end_inset
3727
3728 ii
3729 \begin_inset Formula $\rightarrow$
3730 \end_inset
3731
3732 t
3733 \begin_inset ERT
3734 status collapsed
3735
3736 \begin_layout Plain Layout
3737
3738
3739 \backslash
3740 spce 
3741 \end_layout
3742
3743 \end_inset
3744
3745 _MMt
3746 \end_layout
3747
3748 \end_inset
3749 </cell>
3750 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3751 \begin_inset Text
3752
3753 \begin_layout Plain Layout
3754 \begin_inset Formula $\raisebox {4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox {-2.5mm}{}$
3755 \end_inset
3756
3757
3758 \end_layout
3759
3760 \end_inset
3761 </cell>
3762 </row>
3763 </lyxtabular>
3764
3765 \end_inset
3766
3767
3768 \end_layout
3769
3770 \begin_layout Standard
3771 Además hay los comandos 
3772 \series bold
3773
3774 \backslash
3775 vphantom
3776 \series default
3777
3778 \begin_inset Index
3779 status collapsed
3780
3781 \begin_layout Plain Layout
3782 Comandos ! V ! 
3783 \backslash
3784 vphantom
3785 \end_layout
3786
3787 \end_inset
3788
3789  (botón 
3790 \begin_inset Space ~
3791 \end_inset
3792
3793
3794 \begin_inset Graphics
3795         filename ../../images/math/vphantom.png
3796         embed ""
3797         scale 85
3798
3799 \end_inset
3800
3801 ) y 
3802 \series bold
3803
3804 \backslash
3805 hphantom
3806 \series default
3807
3808 \begin_inset Index
3809 status collapsed
3810
3811 \begin_layout Plain Layout
3812 Comandos ! H ! 
3813 \backslash
3814 hphantom
3815 \end_layout
3816
3817 \end_inset
3818
3819  (botón 
3820 \begin_inset Space ~
3821 \end_inset
3822
3823
3824 \begin_inset Graphics
3825         filename ../../images/math/hphantom.png
3826         embed ""
3827         scale 85
3828
3829 \end_inset
3830
3831 ).
3832  
3833 \series bold
3834
3835 \backslash
3836 hphantom
3837 \series default
3838  genera espacio en el marco sólo para la altura máxima de los caracteres,
3839  no para su anchura.
3840  
3841 \series bold
3842
3843 \backslash
3844 vphantom
3845 \series default
3846  genera espacio sólo para la anchura del contenido del marco.
3847  Por esto los marcos de estos comandos sólo tienen una flecha roja.
3848 \end_layout
3849
3850 \begin_layout Standard
3851 Por ejemplo, 
3852 \series bold
3853
3854 \backslash
3855 vphantom
3856 \series default
3857
3858 \begin_inset ERT
3859 status collapsed
3860
3861 \begin_layout Plain Layout
3862
3863
3864 \backslash
3865 spce 
3866 \end_layout
3867
3868 \end_inset
3869
3870
3871 \series bold
3872 a
3873 \backslash
3874 int
3875 \series default
3876  genera espacio de la altura del signo de la integral
3877 \begin_inset Foot
3878 status collapsed
3879
3880 \begin_layout Plain Layout
3881 El comando 
3882 \series bold
3883
3884 \backslash
3885 int
3886 \series default
3887  genera un signo de integral, véase 
3888 \begin_inset CommandInset ref
3889 LatexCommand ref
3890 reference "sub:Operadores-grandes"
3891
3892 \end_inset
3893
3894
3895 \end_layout
3896
3897 \end_inset
3898
3899 , porque este es el carácter más largo.
3900  Hay un ejemplo de aplicación en 
3901 \begin_inset CommandInset ref
3902 LatexCommand ref
3903 reference "sub:Delimitadores-multilínea"
3904
3905 \end_inset
3906
3907 .
3908 \end_layout
3909
3910 \begin_layout Subsection
3911 Barras
3912 \begin_inset Index
3913 status collapsed
3914
3915 \begin_layout Plain Layout
3916 Barras
3917 \end_layout
3918
3919 \end_inset
3920
3921
3922 \begin_inset Index
3923 status collapsed
3924
3925 \begin_layout Plain Layout
3926 Ecuación ! sub- o superrayada
3927 \end_layout
3928
3929 \end_inset
3930
3931
3932 \end_layout
3933
3934 \begin_layout Standard
3935 \noindent
3936 \align center
3937 \begin_inset Tabular
3938 <lyxtabular version="3" rows="4" columns="2">
3939 <features>
3940 <column alignment="center" valignment="top" width="0">
3941 <column alignment="center" valignment="top" width="0">
3942 <row>
3943 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3944 \begin_inset Text
3945
3946 \begin_layout Plain Layout
3947 Comando
3948 \end_layout
3949
3950 \end_inset
3951 </cell>
3952 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3953 \begin_inset Text
3954
3955 \begin_layout Plain Layout
3956 Resultado
3957 \begin_inset Note Note
3958 status collapsed
3959
3960 \begin_layout Plain Layout
3961
3962 \series bold
3963
3964 \backslash
3965 raisebox
3966 \series default
3967  se usa sólo como espaciador
3968 \end_layout
3969
3970 \end_inset
3971
3972
3973 \end_layout
3974
3975 \end_inset
3976 </cell>
3977 </row>
3978 <row>
3979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3980 \begin_inset Text
3981
3982 \begin_layout Plain Layout
3983
3984 \backslash
3985 overline
3986 \begin_inset ERT
3987 status collapsed
3988
3989 \begin_layout Plain Layout
3990
3991
3992 \backslash
3993 spce 
3994 \end_layout
3995
3996 \end_inset
3997
3998 A+B
3999 \begin_inset Index
4000 status collapsed
4001
4002 \begin_layout Plain Layout
4003 Comandos ! O ! 
4004 \backslash
4005 overline
4006 \end_layout
4007
4008 \end_inset
4009
4010
4011 \end_layout
4012
4013 \end_inset
4014 </cell>
4015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4016 \begin_inset Text
4017
4018 \begin_layout Plain Layout
4019 \begin_inset Formula $\raisebox {5mm}{}\overline{A+B}$
4020 \end_inset
4021
4022
4023 \end_layout
4024
4025 \end_inset
4026 </cell>
4027 </row>
4028 <row>
4029 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4030 \begin_inset Text
4031
4032 \begin_layout Plain Layout
4033
4034 \backslash
4035 underline
4036 \begin_inset ERT
4037 status collapsed
4038
4039 \begin_layout Plain Layout
4040
4041
4042 \backslash
4043 spce 
4044 \end_layout
4045
4046 \end_inset
4047
4048 A+B
4049 \begin_inset Index
4050 status collapsed
4051
4052 \begin_layout Plain Layout
4053 Comandos ! U ! 
4054 \backslash
4055 underline
4056 \end_layout
4057
4058 \end_inset
4059
4060
4061 \end_layout
4062
4063 \end_inset
4064 </cell>
4065 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4066 \begin_inset Text
4067
4068 \begin_layout Plain Layout
4069 \begin_inset Formula $\underline{A+B}\raisebox {-2.5mm}{}$
4070 \end_inset
4071
4072
4073 \end_layout
4074
4075 \end_inset
4076 </cell>
4077 </row>
4078 <row>
4079 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4080 \begin_inset Text
4081
4082 \begin_layout Plain Layout
4083
4084 \backslash
4085 overline
4086 \begin_inset ERT
4087 status collapsed
4088
4089 \begin_layout Plain Layout
4090
4091
4092 \backslash
4093 spce 
4094 \end_layout
4095
4096 \end_inset
4097
4098
4099 \backslash
4100 underline
4101 \begin_inset ERT
4102 status collapsed
4103
4104 \begin_layout Plain Layout
4105
4106
4107 \backslash
4108 spce 
4109 \end_layout
4110
4111 \end_inset
4112
4113 A+B
4114 \end_layout
4115
4116 \end_inset
4117 </cell>
4118 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4119 \begin_inset Text
4120
4121 \begin_layout Plain Layout
4122 \begin_inset Formula $\raisebox {5mm}{}\overline{\underline{A+B}}\raisebox {-2.5mm}{}$
4123 \end_inset
4124
4125
4126 \end_layout
4127
4128 \end_inset
4129 </cell>
4130 </row>
4131 </lyxtabular>
4132
4133 \end_inset
4134
4135
4136 \end_layout
4137
4138 \begin_layout Standard
4139 En el último ejemplo es indiferente poner primero 
4140 \series bold
4141
4142 \backslash
4143 overline
4144 \series default
4145  o 
4146 \series bold
4147
4148 \backslash
4149 underline
4150 \series default
4151 .
4152 \end_layout
4153
4154 \begin_layout Standard
4155 Para poner doble subrayado, p.
4156 \begin_inset Space \thinspace{}
4157 \end_inset
4158
4159 e.
4160  en resultados, se usa 
4161 \series bold
4162
4163 \backslash
4164 underline
4165 \series default
4166  dos veces.
4167 \end_layout
4168
4169 \begin_layout Standard
4170 Es posible colocar hasta 6 líneas sobre o bajo los caracteres.
4171 \end_layout
4172
4173 \begin_layout Subsection
4174 Puntos
4175 \begin_inset Index
4176 status collapsed
4177
4178 \begin_layout Plain Layout
4179 Puntos
4180 \end_layout
4181
4182 \end_inset
4183
4184
4185 \end_layout
4186
4187 \begin_layout Standard
4188 Hay distintos tipos de puntos disponibles.
4189 \begin_inset Foot
4190 status collapsed
4191
4192 \begin_layout Plain Layout
4193 En la barra de herramientas de ecuaciones, en el panel del botón 
4194 \begin_inset Graphics
4195         filename ../../images/math/ldots.png
4196         embed ""
4197         scale 85
4198
4199 \end_inset
4200
4201 .
4202 \end_layout
4203
4204 \end_inset
4205
4206  Para continuación en enumeraciones se usan puntos bajos, (
4207 \series bold
4208
4209 \backslash
4210 ldots
4211 \series default
4212
4213 \begin_inset Index
4214 status collapsed
4215
4216 \begin_layout Plain Layout
4217 Comandos ! L ! 
4218 \backslash
4219 ldots
4220 \end_layout
4221
4222 \end_inset
4223
4224 ), mientras que para operaciones se usan puntos centrados a la misma altura
4225  que los operadores, (
4226 \series bold
4227
4228 \backslash
4229 cdots
4230 \series default
4231
4232 \begin_inset Index
4233 status collapsed
4234
4235 \begin_layout Plain Layout
4236 Comandos ! C ! 
4237 \backslash
4238 cdots
4239 \end_layout
4240
4241 \end_inset
4242
4243 ).
4244  Si se usa el comando 
4245 \series bold
4246
4247 \backslash
4248 dots
4249 \series default
4250
4251 \begin_inset Index
4252 status collapsed
4253
4254 \begin_layout Plain Layout
4255 Comandos ! D ! 
4256 \backslash
4257 dots
4258 \end_layout
4259
4260 \end_inset
4261
4262 , LaTeX decide el tipo a usar en función del carácter siguiente.
4263 \end_layout
4264
4265 \begin_layout Standard
4266 \align center
4267 \begin_inset Tabular
4268 <lyxtabular version="3" rows="8" columns="2">
4269 <features>
4270 <column alignment="center" valignment="top" width="0pt">
4271 <column alignment="center" valignment="top" width="0pt">
4272 <row>
4273 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4274 \begin_inset Text
4275
4276 \begin_layout Plain Layout
4277 Comando
4278 \end_layout
4279
4280 \end_inset
4281 </cell>
4282 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4283 \begin_inset Text
4284
4285 \begin_layout Plain Layout
4286 Resultado
4287 \end_layout
4288
4289 \end_inset
4290 </cell>
4291 </row>
4292 <row>
4293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4294 \begin_inset Text
4295
4296 \begin_layout Plain Layout
4297 A_1
4298 \begin_inset ERT
4299 status collapsed
4300
4301 \begin_layout Plain Layout
4302
4303
4304 \backslash
4305 spce 
4306 \end_layout
4307
4308 \end_inset
4309
4310 ,
4311 \backslash
4312 dots
4313 \begin_inset ERT
4314 status collapsed
4315
4316 \begin_layout Plain Layout
4317
4318
4319 \backslash
4320 spce 
4321 \end_layout
4322
4323 \end_inset
4324
4325 ,A_n
4326 \end_layout
4327
4328 \end_inset
4329 </cell>
4330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4331 \begin_inset Text
4332
4333 \begin_layout Plain Layout
4334 \begin_inset Formula $A_{1},\dots,A_{n}$
4335 \end_inset
4336
4337
4338 \end_layout
4339
4340 \end_inset
4341 </cell>
4342 </row>
4343 <row>
4344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4345 \begin_inset Text
4346
4347 \begin_layout Plain Layout
4348 A_1
4349 \begin_inset ERT
4350 status collapsed
4351
4352 \begin_layout Plain Layout
4353
4354
4355 \backslash
4356 spce 
4357 \end_layout
4358
4359 \end_inset
4360
4361 +
4362 \backslash
4363 dots
4364 \begin_inset ERT
4365 status collapsed
4366
4367 \begin_layout Plain Layout
4368
4369
4370 \backslash
4371 spce 
4372 \end_layout
4373
4374 \end_inset
4375
4376 +A_n
4377 \end_layout
4378
4379 \end_inset
4380 </cell>
4381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4382 \begin_inset Text
4383
4384 \begin_layout Plain Layout
4385 \begin_inset Formula $A_{1}+\dots+A_{n}$
4386 \end_inset
4387
4388
4389 \end_layout
4390
4391 \end_inset
4392 </cell>
4393 </row>
4394 <row>
4395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4396 \begin_inset Text
4397
4398 \begin_layout Plain Layout
4399 A_1
4400 \begin_inset ERT
4401 status collapsed
4402
4403 \begin_layout Plain Layout
4404
4405
4406 \backslash
4407 spce 
4408 \end_layout
4409
4410 \end_inset
4411
4412 ,
4413 \backslash
4414 ldots
4415 \begin_inset ERT
4416 status collapsed
4417
4418 \begin_layout Plain Layout
4419
4420
4421 \backslash
4422 spce 
4423 \end_layout
4424
4425 \end_inset
4426
4427 ,A_n
4428 \end_layout
4429
4430 \end_inset
4431 </cell>
4432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4433 \begin_inset Text
4434
4435 \begin_layout Plain Layout
4436 \begin_inset Formula $A_{1},\ldots,A_{n}$
4437 \end_inset
4438
4439
4440 \end_layout
4441
4442 \end_inset
4443 </cell>
4444 </row>
4445 <row>
4446 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4447 \begin_inset Text
4448
4449 \begin_layout Plain Layout
4450 A_1
4451 \begin_inset ERT
4452 status collapsed
4453
4454 \begin_layout Plain Layout
4455
4456
4457 \backslash
4458 spce 
4459 \end_layout
4460
4461 \end_inset
4462
4463 +
4464 \backslash
4465 cdots
4466 \begin_inset ERT
4467 status collapsed
4468
4469 \begin_layout Plain Layout
4470
4471
4472 \backslash
4473 spce 
4474 \end_layout
4475
4476 \end_inset
4477
4478 +A_n
4479 \end_layout
4480
4481 \end_inset
4482 </cell>
4483 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4484 \begin_inset Text
4485
4486 \begin_layout Plain Layout
4487 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4488 \end_inset
4489
4490
4491 \end_layout
4492
4493 \end_inset
4494 </cell>
4495 </row>
4496 <row>
4497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4498 \begin_inset Text
4499
4500 \begin_layout Plain Layout
4501
4502 \backslash
4503 vdots
4504 \end_layout
4505
4506 \end_inset
4507 </cell>
4508 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4509 \begin_inset Text
4510
4511 \begin_layout Plain Layout
4512 \begin_inset Formula $\vdots$
4513 \end_inset
4514
4515
4516 \end_layout
4517
4518 \end_inset
4519 </cell>
4520 </row>
4521 <row>
4522 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4523 \begin_inset Text
4524
4525 \begin_layout Plain Layout
4526
4527 \backslash
4528 ddots
4529 \end_layout
4530
4531 \end_inset
4532 </cell>
4533 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4534 \begin_inset Text
4535
4536 \begin_layout Plain Layout
4537 \begin_inset Formula $\ddots$
4538 \end_inset
4539
4540
4541 \end_layout
4542
4543 \end_inset
4544 </cell>
4545 </row>
4546 <row>
4547 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4548 \begin_inset Text
4549
4550 \begin_layout Plain Layout
4551 Matriz
4552 \begin_inset Space \thinspace{}
4553 \end_inset
4554
4555 3×3 con los distintos puntos
4556 \end_layout
4557
4558 \end_inset
4559 </cell>
4560 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4561 \begin_inset Text
4562
4563 \begin_layout Plain Layout
4564 \begin_inset Formula $\begin{array}{ccc}
4565 A_{11} & \cdots & A_{1m}\\
4566 \vdots & \ddots & \vdots\\
4567 A_{n1} & \cdots & A_{nm}\end{array}$
4568 \end_inset
4569
4570
4571 \end_layout
4572
4573 \end_inset
4574 </cell>
4575 </row>
4576 </lyxtabular>
4577
4578 \end_inset
4579
4580
4581 \end_layout
4582
4583 \begin_layout Standard
4584 Los puntos suspensivos disponibles en el menú 
4585 \family sans
4586 Insertar\SpecialChar \menuseparator
4587 Carácter especial
4588 \family default
4589  son 
4590 \series bold
4591
4592 \backslash
4593 ldots
4594 \series default
4595 .
4596 \begin_inset VSpace medskip
4597 \end_inset
4598
4599
4600 \end_layout
4601
4602 \begin_layout Standard
4603 Hay puntos específicos para matrices que se extienden por varias columnas.
4604  Se generan con el comando 
4605 \series bold
4606
4607 \backslash
4608 hdotsfor
4609 \series default
4610
4611 \begin_inset Index
4612 status collapsed
4613
4614 \begin_layout Plain Layout
4615 Comandos ! H ! 
4616 \backslash
4617 hdotsfor
4618 \end_layout
4619
4620 \end_inset
4621
4622 , que tiene el siguiente esquema:
4623 \end_layout
4624
4625 \begin_layout Standard
4626
4627 \series bold
4628
4629 \backslash
4630 hdotsfor[distancia]{número de columnas}
4631 \end_layout
4632
4633 \begin_layout Standard
4634 Número de columnas especifica cuántas columnas deben abarcarse.
4635  Distancia es un factor para la separación entre los puntos.
4636 \end_layout
4637
4638 \begin_layout Standard
4639 En la siguiente matriz se ha insertado el comando 
4640 \series bold
4641
4642 \backslash
4643 hdotsfor[2]{4}
4644 \series default
4645  en el primer recuadro de la segunda línea para obtener puntos separados
4646  una distancia equivalente a dos veces la del comando 
4647 \series bold
4648
4649 \backslash
4650 dots
4651 \series default
4652 .
4653 \begin_inset Formula \[
4654 \left(\begin{array}{cccc}
4655 A & B & C & D\\
4656 \hdotsfor [2]{4}\\
4657 q & w & e & r\end{array}\right)\]
4658
4659 \end_inset
4660
4661
4662 \end_layout
4663
4664 \begin_layout Standard
4665 Ten en cuenta que los campos abarcados de la matriz deben estar vacíos,
4666  de lo contrario se producen errores de LaTeX.
4667 \end_layout
4668
4669 \begin_layout Standard
4670 \begin_inset VSpace bigskip
4671 \end_inset
4672
4673
4674 \end_layout
4675
4676 \begin_layout Standard
4677 Además, con el comando 
4678 \series bold
4679
4680 \backslash
4681 dotfill
4682 \series default
4683
4684 \begin_inset Index
4685 status collapsed
4686
4687 \begin_layout Plain Layout
4688 Comandos ! D ! 
4689 \backslash
4690 dotfill
4691 \end_layout
4692
4693 \end_inset
4694
4695  puedes completar con puntos una línea.
4696  El efecto de este tipo de comandos es como el de 
4697 \series bold
4698
4699 \backslash
4700 hfill
4701 \series default
4702 , véase 
4703 \begin_inset CommandInset ref
4704 LatexCommand ref
4705 reference "sub:Espacio-variable"
4706
4707 \end_inset
4708
4709 .
4710 \end_layout
4711
4712 \begin_layout Standard
4713 Por ejemplo el comando 
4714 \series bold
4715 A
4716 \backslash
4717 dotfill
4718 \series default
4719
4720 \begin_inset ERT
4721 status collapsed
4722
4723 \begin_layout Plain Layout
4724
4725
4726 \backslash
4727 spce 
4728 \end_layout
4729
4730 \end_inset
4731
4732
4733 \series bold
4734 B
4735 \series default
4736  genera
4737 \end_layout
4738
4739 \begin_layout Standard
4740 \begin_inset Formula $A\dotfill  B$
4741 \end_inset
4742
4743
4744 \end_layout
4745
4746 \begin_layout Standard
4747 Un comando análogo a 
4748 \series bold
4749
4750 \backslash
4751 dotfill
4752 \series default
4753  para rellenar con una línea es 
4754 \series bold
4755
4756 \backslash
4757 hrulefill
4758 \series default
4759
4760 \begin_inset Index
4761 status collapsed
4762
4763 \begin_layout Plain Layout
4764 Comandos ! H ! 
4765 \backslash
4766 hrulefill
4767 \end_layout
4768
4769 \end_inset
4770
4771 :
4772 \end_layout
4773
4774 \begin_layout Standard
4775 \begin_inset Formula $A\hrulefill  B$
4776 \end_inset
4777
4778
4779 \end_layout
4780
4781 \begin_layout Standard
4782 Para usar estos comandos en el texto, deben insertarse en modo TeX.
4783 \end_layout
4784
4785 \begin_layout Section
4786 Matrices
4787 \begin_inset CommandInset label
4788 LatexCommand label
4789 name "sec:Matrices"
4790
4791 \end_inset
4792
4793
4794 \begin_inset Index
4795 status collapsed
4796
4797 \begin_layout Plain Layout
4798 Matrices
4799 \end_layout
4800
4801 \end_inset
4802
4803
4804 \end_layout
4805
4806 \begin_layout Standard
4807 Se pueden insertar con el botón 
4808 \begin_inset Graphics
4809         filename ../../images/dialog-show_mathmatrix.png
4810         embed ""
4811         scale 85
4812
4813 \end_inset
4814
4815  de la barra de ecuaciones o con el menú 
4816 \family sans
4817 Insertar\SpecialChar \menuseparator
4818 Ecuación\SpecialChar \menuseparator
4819 Matriz
4820 \family default
4821 .
4822  Aparece una ventana en la que se pide el número de filas y columnas y la
4823  alineación.
4824  La alineación vertical sólo es relevante para matrices en línea:
4825 \end_layout
4826
4827 \begin_layout Standard
4828 Esta primera matriz tiene alineación superior 
4829 \begin_inset Formula $\begin{array}[t]{cccc}
4830 A & D & G & J\\
4831 B & E & H & K\\
4832 D & F & I & L\end{array}$
4833 \end_inset
4834
4835  , la segunda alineación central 
4836 \begin_inset Formula $\begin{array}{cccc}
4837 A & D & G & J\\
4838 B & E & H & K\\
4839 D & F & I & L\end{array}$
4840 \end_inset
4841
4842  , y la tercera alineación inferior 
4843 \begin_inset Formula $\begin{array}[b]{cccc}
4844 A & D & G & J\\
4845 B & E & H & K\\
4846 D & F & I & L\end{array}$
4847 \end_inset
4848
4849 .
4850 \end_layout
4851
4852 \begin_layout Standard
4853 La alineación horizontal especifica cómo deben alinearse las entradas de
4854  la columna.
4855  Se determina mediante una letra para cada columna.
4856  
4857 \emph on
4858 l
4859 \emph default
4860  indica alineación a la izquierda, 
4861 \emph on
4862 c
4863 \emph default
4864  alineación centrada y 
4865 \emph on
4866 r
4867 \emph default
4868  alineación a la derecha.
4869  Por ejemplo, para componer una matriz
4870 \begin_inset Space ~
4871 \end_inset
4872
4873 4×4 con la primera columna alineada a la izquierda, la segunda y la tercera
4874  centradas y la última a la derecha, se anota 
4875 \series bold
4876 lccr
4877 \series default
4878  en la alineación horizontal.
4879  Normalmente todas las columnas de una matriz están centradas, por tanto
4880  el valor por defecto es 
4881 \series bold
4882 c
4883 \series default
4884  para todas ellas.
4885 \end_layout
4886
4887 \begin_layout Standard
4888 Alineación horizontal:
4889 \end_layout
4890
4891 \begin_layout Standard
4892
4893 \series bold
4894 lll
4895 \series default
4896  : 
4897 \begin_inset Formula $\begin{array}{lll}
4898 10000 & D & G\\
4899 B & 10000 & H\\
4900 C & F & 10000\end{array}$
4901 \end_inset
4902
4903  , 
4904 \series bold
4905 ccc 
4906 \series default
4907
4908 \begin_inset Formula $\begin{array}{ccc}
4909 10000 & D & G\\
4910 B & 10000 & H\\
4911 C & F & 10000\end{array}$
4912 \end_inset
4913
4914  
4915 \series bold
4916 ,
4917 \series default
4918  
4919 \series bold
4920 rrr 
4921 \series default
4922
4923 \begin_inset Formula $\begin{array}{rrr}
4924 10000 & D & G\\
4925 B & 10000 & H\\
4926 C & F & 10000\end{array}$
4927 \end_inset
4928
4929
4930 \end_layout
4931
4932 \begin_layout Standard
4933 Para añadir o borrar filas y columnas posteriormente, se pueden usar los
4934  botones 
4935 \begin_inset Graphics
4936         filename ../../images/tabular-feature_append-row.png
4937         embed ""
4938         scale 85
4939
4940 \end_inset
4941
4942
4943 \begin_inset Graphics
4944         filename ../../images/tabular-feature_delete-row.png
4945         embed ""
4946         scale 85
4947
4948 \end_inset
4949
4950 , etc.
4951  de la barra de ecuaciones o el menú 
4952 \family sans
4953 Editar\SpecialChar \menuseparator
4954 Filas y columnas
4955 \family default
4956 .
4957  También se pueden añadir filas nuevas con 
4958 \family sans
4959 Ctrl-Intro
4960 \family default
4961 .
4962 \end_layout
4963
4964 \begin_layout Standard
4965 \begin_inset VSpace bigskip
4966 \end_inset
4967
4968
4969 \end_layout
4970
4971 \begin_layout Standard
4972 Se pueden poner paréntesis alrededor de una matriz con los comandos 
4973 \series bold
4974
4975 \backslash
4976 left
4977 \series default
4978
4979 \begin_inset Index
4980 status collapsed
4981
4982 \begin_layout Plain Layout
4983 Comandos ! L ! 
4984 \backslash
4985 left
4986 \end_layout
4987
4988 \end_inset
4989
4990  y 
4991 \series bold
4992
4993 \backslash
4994 right
4995 \series default
4996
4997 \begin_inset Index
4998 status collapsed
4999
5000 \begin_layout Plain Layout
5001 Comandos ! R ! 
5002 \backslash
5003 right
5004 \end_layout
5005
5006 \end_inset
5007
5008  (atajo 
5009 \family sans
5010 Alt-m
5011 \begin_inset Space ~
5012 \end_inset
5013
5014 paréntesis
5015 \family default
5016 ), véase 
5017 \begin_inset CommandInset ref
5018 LatexCommand ref
5019 reference "sub:Tamaño-automático-de"
5020
5021 \end_inset
5022
5023 , o usando los comandos siguientes:
5024 \end_layout
5025
5026 \begin_layout Standard
5027 \begin_inset VSpace medskip
5028 \end_inset
5029
5030
5031 \end_layout
5032
5033 \begin_layout Standard
5034 \begin_inset Space \hfill{}
5035 \end_inset
5036
5037
5038 \begin_inset Tabular
5039 <lyxtabular version="3" rows="4" columns="2">
5040 <features>
5041 <column alignment="center" valignment="top" width="0">
5042 <column alignment="center" valignment="top" width="0">
5043 <row>
5044 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5045 \begin_inset Text
5046
5047 \begin_layout Plain Layout
5048 Comando
5049 \end_layout
5050
5051 \end_inset
5052 </cell>
5053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5054 \begin_inset Text
5055
5056 \begin_layout Plain Layout
5057 Resultado
5058 \begin_inset Note Note
5059 status collapsed
5060
5061 \begin_layout Plain Layout
5062
5063 \series bold
5064
5065 \backslash
5066 raisebox
5067 \series default
5068  se usa sólo como espaciador
5069 \end_layout
5070
5071 \end_inset
5072
5073
5074 \end_layout
5075
5076 \end_inset
5077 </cell>
5078 </row>
5079 <row>
5080 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5081 \begin_inset Text
5082
5083 \begin_layout Plain Layout
5084
5085 \backslash
5086 bmatrix
5087 \begin_inset ERT
5088 status collapsed
5089
5090 \begin_layout Plain Layout
5091
5092
5093 \backslash
5094 spce 
5095 \end_layout
5096
5097 \end_inset
5098
5099 2
5100 \series bold
5101 ×
5102 \series default
5103 2
5104 \begin_inset Space \thinspace{}
5105 \end_inset
5106
5107 matriz
5108 \end_layout
5109
5110 \end_inset
5111 </cell>
5112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5113 \begin_inset Text
5114
5115 \begin_layout Plain Layout
5116 \begin_inset Formula $\raisebox {7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5117 0 & \textrm{-}\mathrm{i}\\
5118 \mathrm{i} & 0\end{array}\end{bmatrix}\raisebox {-5.3mm}{}$
5119 \end_inset
5120
5121
5122 \end_layout
5123
5124 \end_inset
5125 </cell>
5126 </row>
5127 <row>
5128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5129 \begin_inset Text
5130
5131 \begin_layout Plain Layout
5132
5133 \backslash
5134 Bmatrix
5135 \begin_inset ERT
5136 status collapsed
5137
5138 \begin_layout Plain Layout
5139
5140
5141 \backslash
5142 spce 
5143 \end_layout
5144
5145 \end_inset
5146
5147 2×2
5148 \begin_inset Space \thinspace{}
5149 \end_inset
5150
5151 matriz
5152 \end_layout
5153
5154 \end_inset
5155 </cell>
5156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5157 \begin_inset Text
5158
5159 \begin_layout Plain Layout
5160 \begin_inset Formula $\raisebox {7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5161 0 & \textrm{-}\mathrm{i}\\
5162 \mathrm{i} & 0\end{array}\end{Bmatrix}\raisebox {-5.3mm}{}$
5163 \end_inset
5164
5165
5166 \end_layout
5167
5168 \end_inset
5169 </cell>
5170 </row>
5171 <row>
5172 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5173 \begin_inset Text
5174
5175 \begin_layout Plain Layout
5176
5177 \backslash
5178 pmatrix
5179 \begin_inset ERT
5180 status collapsed
5181
5182 \begin_layout Plain Layout
5183
5184
5185 \backslash
5186 spce 
5187 \end_layout
5188
5189 \end_inset
5190
5191 2
5192 \series bold
5193 ×
5194 \series default
5195 2
5196 \begin_inset Space \thinspace{}
5197 \end_inset
5198
5199 matriz
5200 \end_layout
5201
5202 \end_inset
5203 </cell>
5204 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5205 \begin_inset Text
5206
5207 \begin_layout Plain Layout
5208 \begin_inset Formula $\raisebox {7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5209 0 & \textrm{-}\mathrm{i}\\
5210 \mathrm{i} & 0\end{array}\end{pmatrix}\raisebox {-5.3mm}{}$
5211 \end_inset
5212
5213
5214 \end_layout
5215
5216 \end_inset
5217 </cell>
5218 </row>
5219 </lyxtabular>
5220
5221 \end_inset
5222
5223
5224 \begin_inset Space \hfill{}
5225 \end_inset
5226
5227
5228 \begin_inset Tabular
5229 <lyxtabular version="3" rows="4" columns="2">
5230 <features>
5231 <column alignment="center" valignment="top" width="0">
5232 <column alignment="center" valignment="top" width="0">
5233 <row>
5234 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5235 \begin_inset Text
5236
5237 \begin_layout Plain Layout
5238 Comando
5239 \end_layout
5240
5241 \end_inset
5242 </cell>
5243 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5244 \begin_inset Text
5245
5246 \begin_layout Plain Layout
5247 Resultado
5248 \begin_inset Note Note
5249 status collapsed
5250
5251 \begin_layout Plain Layout
5252
5253 \series bold
5254
5255 \backslash
5256 raisebox
5257 \series default
5258  se usa sólo como espaciador
5259 \end_layout
5260
5261 \end_inset
5262
5263
5264 \end_layout
5265
5266 \end_inset
5267 </cell>
5268 </row>
5269 <row>
5270 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5271 \begin_inset Text
5272
5273 \begin_layout Plain Layout
5274
5275 \backslash
5276 vmatrix
5277 \begin_inset ERT
5278 status collapsed
5279
5280 \begin_layout Plain Layout
5281
5282
5283 \backslash
5284 spce 
5285 \end_layout
5286
5287 \end_inset
5288
5289 2
5290 \series bold
5291 ×
5292 \series default
5293 2
5294 \begin_inset Space \thinspace{}
5295 \end_inset
5296
5297 matriz
5298 \end_layout
5299
5300 \end_inset
5301 </cell>
5302 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5303 \begin_inset Text
5304
5305 \begin_layout Plain Layout
5306 \begin_inset Formula $\raisebox {7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5307 0 & \textrm{-}\mathrm{i}\\
5308 \mathrm{i} & 0\end{array}\end{vmatrix}\raisebox {-5.3mm}{}$
5309 \end_inset
5310
5311
5312 \end_layout
5313
5314 \end_inset
5315 </cell>
5316 </row>
5317 <row>
5318 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5319 \begin_inset Text
5320
5321 \begin_layout Plain Layout
5322
5323 \backslash
5324 Vmatrix
5325 \begin_inset ERT
5326 status collapsed
5327
5328 \begin_layout Plain Layout
5329
5330
5331 \backslash
5332 spce 
5333 \end_layout
5334
5335 \end_inset
5336
5337 2
5338 \series bold
5339 ×
5340 \series default
5341 2
5342 \begin_inset Space \thinspace{}
5343 \end_inset
5344
5345 matriz
5346 \end_layout
5347
5348 \end_inset
5349 </cell>
5350 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5351 \begin_inset Text
5352
5353 \begin_layout Plain Layout
5354 \begin_inset Formula $\raisebox {7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5355 0 & \textrm{-}\mathrm{i}\\
5356 \mathrm{i} & 0\end{array}\end{Vmatrix}\raisebox {-5.3mm}{}$
5357 \end_inset
5358
5359
5360 \end_layout
5361
5362 \end_inset
5363 </cell>
5364 </row>
5365 <row>
5366 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5367 \begin_inset Text
5368
5369 \begin_layout Plain Layout
5370
5371 \backslash
5372 matrix
5373 \begin_inset ERT
5374 status collapsed
5375
5376 \begin_layout Plain Layout
5377
5378
5379 \backslash
5380 spce 
5381 \end_layout
5382
5383 \end_inset
5384
5385 2
5386 \series bold
5387 ×
5388 \series default
5389 2
5390 \begin_inset Space \thinspace{}
5391 \end_inset
5392
5393 matriz
5394 \end_layout
5395
5396 \end_inset
5397 </cell>
5398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5399 \begin_inset Text
5400
5401 \begin_layout Plain Layout
5402 \begin_inset Formula $\raisebox {7.5mm}{}\begin{matrix}\begin{array}{cc}
5403 0 & \textrm{-}\mathrm{i}\\
5404 \mathrm{i} & 0\end{array}\end{matrix}\raisebox {-5.3mm}{}$
5405 \end_inset
5406
5407
5408 \end_layout
5409
5410 \end_inset
5411 </cell>
5412 </row>
5413 </lyxtabular>
5414
5415 \end_inset
5416
5417
5418 \begin_inset Space \hfill{}
5419 \end_inset
5420
5421
5422 \end_layout
5423
5424 \begin_layout Standard
5425 \begin_inset VSpace medskip
5426 \end_inset
5427
5428
5429 \end_layout
5430
5431 \begin_layout Standard
5432 Cuando se inserta p.
5433 \begin_inset Space \thinspace{}
5434 \end_inset
5435
5436 e.
5437 \begin_inset Space ~
5438 \end_inset
5439
5440
5441 \series bold
5442
5443 \backslash
5444 vmatrix
5445 \series default
5446 , aparece un recuadro azul entre dos líneas verticales donde se inserta
5447  la matriz.
5448 \end_layout
5449
5450 \begin_layout Standard
5451 \begin_inset VSpace bigskip
5452 \end_inset
5453
5454
5455 \end_layout
5456
5457 \begin_layout Standard
5458 Como todas las ecuaciones multilínea son matrices, la longitud 
5459 \series bold
5460
5461 \backslash
5462 arraycolsep
5463 \series default
5464
5465 \begin_inset Index
5466 status collapsed
5467
5468 \begin_layout Plain Layout
5469 Comandos ! A ! 
5470 \backslash
5471 arraycolsep
5472 \end_layout
5473
5474 \end_inset
5475
5476 , que se describe en 
5477 \begin_inset CommandInset ref
5478 LatexCommand ref
5479 reference "sub:Separación-de-columnas"
5480
5481 \end_inset
5482
5483 , también se puede usar para cambiar la separación de las columnas en una
5484  matriz.
5485  Para cambiar la separación de las filas, se usa el comando 
5486 \series bold
5487
5488 \backslash
5489 arraystretch
5490 \series default
5491
5492 \begin_inset Index
5493 status collapsed
5494
5495 \begin_layout Plain Layout
5496 Comandos ! A ! 
5497 \backslash
5498 arraystretch
5499 \end_layout
5500
5501 \end_inset
5502
5503  de la siguiente manera:
5504 \end_layout
5505
5506 \begin_layout Standard
5507
5508 \series bold
5509
5510 \backslash
5511 renewcommand{
5512 \backslash
5513 arraystretch}{factor de separación}
5514 \begin_inset Index
5515 status collapsed
5516
5517 \begin_layout Plain Layout
5518 Comandos ! R ! 
5519 \backslash
5520 renewcommand
5521 \end_layout
5522
5523 \end_inset
5524
5525
5526 \end_layout
5527
5528 \begin_layout Standard
5529 El comando 
5530 \series bold
5531
5532 \backslash
5533 renewcommand
5534 \series default
5535  asigna el factor de separación al comando predefinido 
5536 \series bold
5537
5538 \backslash
5539 arraystretch
5540 \series default
5541 .
5542  Por ejemplo, para doblar la separación de las filas, pones factor 2.
5543  Además, éste se usa para todas las matrices siguientes.
5544  Para volver a la separación original, asigna factor 1 a 
5545 \series bold
5546
5547 \backslash
5548 arraystretch
5549 \series default
5550 .
5551 \end_layout
5552
5553 \begin_layout Standard
5554 Para poner matrices en línea se usa el comando 
5555 \series bold
5556
5557 \backslash
5558 smallmatrix
5559 \series default
5560
5561 \begin_inset Index
5562 status collapsed
5563
5564 \begin_layout Plain Layout
5565 Comandos ! S ! 
5566 \backslash
5567 smallmatrix
5568 \end_layout
5569
5570 \end_inset
5571
5572 .
5573  Al insertarlo aparece un recuadro azul con dos líneas de trazos en el que
5574  se inserta la matriz.
5575  
5576 \end_layout
5577
5578 \begin_layout Standard
5579 Esto es una matriz 
5580 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5581 C & D\end{smallmatrix}\right)$
5582 \end_inset
5583
5584  en línea.
5585 \end_layout
5586
5587 \begin_layout Section
5588 Delimitadores
5589 \begin_inset Index
5590 status collapsed
5591
5592 \begin_layout Plain Layout
5593 Delimitadores
5594 \end_layout
5595
5596 \end_inset
5597
5598
5599 \end_layout
5600
5601 \begin_layout Subsection
5602 Delimitadores verticales
5603 \begin_inset Index
5604 status collapsed
5605
5606 \begin_layout Plain Layout
5607 Delimitadores ! verticales
5608 \end_layout
5609
5610 \end_inset
5611
5612
5613 \end_layout
5614
5615 \begin_layout Standard
5616 \begin_inset Space \hfill{}
5617 \end_inset
5618
5619
5620 \begin_inset Tabular
5621 <lyxtabular version="3" rows="9" columns="2">
5622 <features>
5623 <column alignment="center" valignment="top" width="0pt">
5624 <column alignment="center" valignment="top" width="0pt">
5625 <row>
5626 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5627 \begin_inset Text
5628
5629 \begin_layout Plain Layout
5630 Comando
5631 \end_layout
5632
5633 \end_inset
5634 </cell>
5635 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5636 \begin_inset Text
5637
5638 \begin_layout Plain Layout
5639 Resultado
5640 \end_layout
5641
5642 \end_inset
5643 </cell>
5644 </row>
5645 <row>
5646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5647 \begin_inset Text
5648
5649 \begin_layout Plain Layout
5650 (
5651 \end_layout
5652
5653 \end_inset
5654 </cell>
5655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5656 \begin_inset Text
5657
5658 \begin_layout Plain Layout
5659 \begin_inset Formula $($
5660 \end_inset
5661
5662
5663 \end_layout
5664
5665 \end_inset
5666 </cell>
5667 </row>
5668 <row>
5669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5670 \begin_inset Text
5671
5672 \begin_layout Plain Layout
5673 {
5674 \end_layout
5675
5676 \end_inset
5677 </cell>
5678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5679 \begin_inset Text
5680
5681 \begin_layout Plain Layout
5682 \begin_inset Formula $\{$
5683 \end_inset
5684
5685
5686 \end_layout
5687
5688 \end_inset
5689 </cell>
5690 </row>
5691 <row>
5692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5693 \begin_inset Text
5694
5695 \begin_layout Plain Layout
5696 [
5697 \end_layout
5698
5699 \end_inset
5700 </cell>
5701 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5702 \begin_inset Text
5703
5704 \begin_layout Plain Layout
5705 \begin_inset Formula $[$
5706 \end_inset
5707
5708
5709 \end_layout
5710
5711 \end_inset
5712 </cell>
5713 </row>
5714 <row>
5715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5716 \begin_inset Text
5717
5718 \begin_layout Plain Layout
5719
5720 \backslash
5721 langle
5722 \end_layout
5723
5724 \end_inset
5725 </cell>
5726 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5727 \begin_inset Text
5728
5729 \begin_layout Plain Layout
5730 \begin_inset Formula $\langle$
5731 \end_inset
5732
5733
5734 \end_layout
5735
5736 \end_inset
5737 </cell>
5738 </row>
5739 <row>
5740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5741 \begin_inset Text
5742
5743 \begin_layout Plain Layout
5744
5745 \backslash
5746 lceil
5747 \end_layout
5748
5749 \end_inset
5750 </cell>
5751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5752 \begin_inset Text
5753
5754 \begin_layout Plain Layout
5755 \begin_inset Formula $\lceil$
5756 \end_inset
5757
5758
5759 \end_layout
5760
5761 \end_inset
5762 </cell>
5763 </row>
5764 <row>
5765 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5766 \begin_inset Text
5767
5768 \begin_layout Plain Layout
5769
5770 \backslash
5771 lfloor
5772 \end_layout
5773
5774 \end_inset
5775 </cell>
5776 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5777 \begin_inset Text
5778
5779 \begin_layout Plain Layout
5780 \begin_inset Formula $\lfloor$
5781 \end_inset
5782
5783
5784 \end_layout
5785
5786 \end_inset
5787 </cell>
5788 </row>
5789 <row>
5790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5791 \begin_inset Text
5792
5793 \begin_layout Plain Layout
5794 /
5795 \end_layout
5796
5797 \end_inset
5798 </cell>
5799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5800 \begin_inset Text
5801
5802 \begin_layout Plain Layout
5803 \begin_inset Formula $/$
5804 \end_inset
5805
5806
5807 \end_layout
5808
5809 \end_inset
5810 </cell>
5811 </row>
5812 <row>
5813 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5814 \begin_inset Text
5815
5816 \begin_layout Plain Layout
5817 |
5818 \end_layout
5819
5820 \end_inset
5821 </cell>
5822 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5823 \begin_inset Text
5824
5825 \begin_layout Plain Layout
5826 \begin_inset Formula $|$
5827 \end_inset
5828
5829
5830 \end_layout
5831
5832 \end_inset
5833 </cell>
5834 </row>
5835 </lyxtabular>
5836
5837 \end_inset
5838
5839
5840 \begin_inset Space \hfill{}
5841 \end_inset
5842
5843
5844 \begin_inset Tabular
5845 <lyxtabular version="3" rows="9" columns="2">
5846 <features>
5847 <column alignment="center" valignment="top" width="0pt">
5848 <column alignment="center" valignment="top" width="0pt">
5849 <row>
5850 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5851 \begin_inset Text
5852
5853 \begin_layout Plain Layout
5854 Comando
5855 \end_layout
5856
5857 \end_inset
5858 </cell>
5859 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5860 \begin_inset Text
5861
5862 \begin_layout Plain Layout
5863 Resultado
5864 \end_layout
5865
5866 \end_inset
5867 </cell>
5868 </row>
5869 <row>
5870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5871 \begin_inset Text
5872
5873 \begin_layout Plain Layout
5874 )
5875 \end_layout
5876
5877 \end_inset
5878 </cell>
5879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5880 \begin_inset Text
5881
5882 \begin_layout Plain Layout
5883 \begin_inset Formula $)$
5884 \end_inset
5885
5886
5887 \end_layout
5888
5889 \end_inset
5890 </cell>
5891 </row>
5892 <row>
5893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5894 \begin_inset Text
5895
5896 \begin_layout Plain Layout
5897 }
5898 \end_layout
5899
5900 \end_inset
5901 </cell>
5902 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5903 \begin_inset Text
5904
5905 \begin_layout Plain Layout
5906 \begin_inset Formula $\}$
5907 \end_inset
5908
5909
5910 \end_layout
5911
5912 \end_inset
5913 </cell>
5914 </row>
5915 <row>
5916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5917 \begin_inset Text
5918
5919 \begin_layout Plain Layout
5920 ]
5921 \end_layout
5922
5923 \end_inset
5924 </cell>
5925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5926 \begin_inset Text
5927
5928 \begin_layout Plain Layout
5929 \begin_inset Formula $]$
5930 \end_inset
5931
5932
5933 \end_layout
5934
5935 \end_inset
5936 </cell>
5937 </row>
5938 <row>
5939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5940 \begin_inset Text
5941
5942 \begin_layout Plain Layout
5943
5944 \backslash
5945 rangle
5946 \end_layout
5947
5948 \end_inset
5949 </cell>
5950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5951 \begin_inset Text
5952
5953 \begin_layout Plain Layout
5954 \begin_inset Formula $\rangle$
5955 \end_inset
5956
5957
5958 \end_layout
5959
5960 \end_inset
5961 </cell>
5962 </row>
5963 <row>
5964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5965 \begin_inset Text
5966
5967 \begin_layout Plain Layout
5968
5969 \backslash
5970 rceil
5971 \end_layout
5972
5973 \end_inset
5974 </cell>
5975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5976 \begin_inset Text
5977
5978 \begin_layout Plain Layout
5979 \begin_inset Formula $\rceil$
5980 \end_inset
5981
5982
5983 \end_layout
5984
5985 \end_inset
5986 </cell>
5987 </row>
5988 <row>
5989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5990 \begin_inset Text
5991
5992 \begin_layout Plain Layout
5993
5994 \backslash
5995 rfloor
5996 \end_layout
5997
5998 \end_inset
5999 </cell>
6000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6001 \begin_inset Text
6002
6003 \begin_layout Plain Layout
6004 \begin_inset Formula $\rfloor$
6005 \end_inset
6006
6007
6008 \end_layout
6009
6010 \end_inset
6011 </cell>
6012 </row>
6013 <row>
6014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6015 \begin_inset Text
6016
6017 \begin_layout Plain Layout
6018
6019 \backslash
6020
6021 \backslash
6022
6023 \end_layout
6024
6025 \end_inset
6026 </cell>
6027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6028 \begin_inset Text
6029
6030 \begin_layout Plain Layout
6031 \begin_inset Formula $\backslash$
6032 \end_inset
6033
6034
6035 \end_layout
6036
6037 \end_inset
6038 </cell>
6039 </row>
6040 <row>
6041 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6042 \begin_inset Text
6043
6044 \begin_layout Plain Layout
6045
6046 \backslash
6047 |
6048 \end_layout
6049
6050 \end_inset
6051 </cell>
6052 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6053 \begin_inset Text
6054
6055 \begin_layout Plain Layout
6056 \begin_inset Formula $\|$
6057 \end_inset
6058
6059
6060 \end_layout
6061
6062 \end_inset
6063 </cell>
6064 </row>
6065 </lyxtabular>
6066
6067 \end_inset
6068
6069
6070 \begin_inset Space \hfill{}
6071 \end_inset
6072
6073
6074 \end_layout
6075
6076 \begin_layout Standard
6077 \begin_inset Note Greyedout
6078 status collapsed
6079
6080 \begin_layout Plain Layout
6081
6082 \series bold
6083 Nota
6084 \series default
6085 : En modo TeX hay que usar el comando 
6086 \series bold
6087
6088 \backslash
6089 textbackslash
6090 \series default
6091
6092 \begin_inset Index
6093 status collapsed
6094
6095 \begin_layout Plain Layout
6096 Comandos ! T ! 
6097 \backslash
6098 textbackslash
6099 \end_layout
6100
6101 \end_inset
6102
6103  para la barra invertida, porque si no el comando 
6104 \series bold
6105
6106 \backslash
6107
6108 \backslash
6109
6110 \series default
6111  genera un salto de línea.
6112 \end_layout
6113
6114 \end_inset
6115
6116
6117 \end_layout
6118
6119 \begin_layout Standard
6120 El tamaño de los caracteres listados arriba se puede ajustar con los comandos
6121  descritos en las dos subsecciones siguientes.
6122  Cuando se emplean esos comandos se pueden usar directamente los caracteres
6123  <
6124 \begin_inset Space ~
6125 \end_inset
6126
6127  y >
6128 \begin_inset Space ~
6129 \end_inset
6130
6131  en vez de los comandos 
6132 \series bold
6133
6134 \backslash
6135 langle
6136 \series default
6137  y 
6138 \series bold
6139
6140 \backslash
6141 rangle
6142 \series default
6143 .
6144  
6145 \end_layout
6146
6147 \begin_layout Subsubsection
6148 Tamaño manual de los delimitadores
6149 \begin_inset CommandInset label
6150 LatexCommand label
6151 name "sub:Tamaño-manual-de"
6152
6153 \end_inset
6154
6155
6156 \begin_inset Index
6157 status collapsed
6158
6159 \begin_layout Plain Layout
6160 Delimitadores ! tamaño manual
6161 \end_layout
6162
6163 \end_inset
6164
6165
6166 \end_layout
6167
6168 \begin_layout Standard
6169 El tamaño de los delimitadores se puede determinar manualmente con los comandos
6170  LaTeX 
6171 \series bold
6172
6173 \backslash
6174 big
6175 \series default
6176
6177 \begin_inset Index
6178 status collapsed
6179
6180 \begin_layout Plain Layout
6181 Comandos ! B ! 
6182 \backslash
6183 big
6184 \end_layout
6185
6186 \end_inset
6187
6188
6189 \series bold
6190
6191 \backslash
6192 Big
6193 \series default
6194
6195 \series bold
6196
6197 \backslash
6198 bigg
6199 \series default
6200 , y 
6201 \series bold
6202
6203 \backslash
6204 Bigg
6205 \series default
6206 .
6207  
6208 \series bold
6209
6210 \backslash
6211 big
6212 \series default
6213  indica el tamaño menor y 
6214 \series bold
6215
6216 \backslash
6217 Bigg
6218 \series default
6219  el mayor.
6220 \end_layout
6221
6222 \begin_layout Standard
6223 Estos comandos se usan para resaltar niveles de delimitación:
6224 \end_layout
6225
6226 \begin_layout Standard
6227 \noindent
6228 \align center
6229 \begin_inset Tabular
6230 <lyxtabular version="3" rows="2" columns="2">
6231 <features>
6232 <column alignment="center" valignment="top" width="0">
6233 <column alignment="center" valignment="top" width="0">
6234 <row>
6235 <cell alignment="center" valignment="top" usebox="none">
6236 \begin_inset Text
6237
6238 \begin_layout Plain Layout
6239 todos los delimitadores de igual tamaño:
6240 \end_layout
6241
6242 \end_inset
6243 </cell>
6244 <cell alignment="center" valignment="top" usebox="none">
6245 \begin_inset Text
6246
6247 \begin_layout Plain Layout
6248 \begin_inset Formula $((A+B)(A-B))^{C}{\normalcolor \raisebox {-4mm}{}}$
6249 \end_inset
6250
6251
6252 \end_layout
6253
6254 \end_inset
6255 </cell>
6256 </row>
6257 <row>
6258 <cell alignment="center" valignment="top" usebox="none">
6259 \begin_inset Text
6260
6261 \begin_layout Plain Layout
6262 así tiene mejor aspecto:
6263 \end_layout
6264
6265 \end_inset
6266 </cell>
6267 <cell alignment="center" valignment="top" usebox="none">
6268 \begin_inset Text
6269
6270 \begin_layout Plain Layout
6271 \begin_inset Formula $\Big ((A+B)(A-B)\Big )^{C}$
6272 \end_inset
6273
6274
6275 \end_layout
6276
6277 \end_inset
6278 </cell>
6279 </row>
6280 </lyxtabular>
6281
6282 \end_inset
6283
6284
6285 \begin_inset Note Note
6286 status collapsed
6287
6288 \begin_layout Plain Layout
6289
6290 \series bold
6291
6292 \backslash
6293 raisebox
6294 \series default
6295  se usa sólo como espaciador
6296 \end_layout
6297
6298 \end_inset
6299
6300
6301 \end_layout
6302
6303 \begin_layout Standard
6304 Para la segunda expresión se ha empleado el comando 
6305 \series bold
6306
6307 \backslash
6308 Big((A+B)(A-B)
6309 \backslash
6310 Big)^
6311 \series default
6312
6313 \begin_inset ERT
6314 status collapsed
6315
6316 \begin_layout Plain Layout
6317
6318
6319 \backslash
6320 spce 
6321 \end_layout
6322
6323 \end_inset
6324
6325
6326 \series bold
6327 C
6328 \series default
6329 .
6330 \end_layout
6331
6332 \begin_layout Standard
6333 He aquí una visión conjunta de todos los tamaños y delimitadores:
6334 \end_layout
6335
6336 \begin_layout Standard
6337 \noindent
6338 \align center
6339
6340 \backslash
6341 Bigg(
6342 \backslash
6343 exp
6344 \backslash
6345 bigg<
6346 \backslash
6347 Big[
6348 \backslash
6349 big{
6350 \backslash
6351 ln(3x)
6352 \backslash
6353 big}^2
6354 \begin_inset ERT
6355 status collapsed
6356
6357 \begin_layout Plain Layout
6358
6359
6360 \backslash
6361 spce 
6362 \end_layout
6363
6364 \end_inset
6365
6366
6367 \backslash
6368 sen(x)
6369 \backslash
6370 Big]^
6371 \begin_inset ERT
6372 status collapsed
6373
6374 \begin_layout Plain Layout
6375
6376
6377 \backslash
6378 spce 
6379 \end_layout
6380
6381 \end_inset
6382
6383 A
6384 \begin_inset ERT
6385 status collapsed
6386
6387 \begin_layout Plain Layout
6388
6389
6390 \backslash
6391 spce 
6392 \end_layout
6393
6394 \end_inset
6395
6396
6397 \backslash
6398 bigg>
6399 \backslash
6400 Bigg)^0,5
6401 \begin_inset Formula \[
6402 \Bigg (\exp\bigg <\Big [\big \{\ln(3x)\big \}^{2}\sen (x)\Big ]^{A}\bigg >\Bigg )^{0,5}\]
6403
6404 \end_inset
6405
6406
6407 \end_layout
6408
6409 \begin_layout Standard
6410 Además de los comandos 
6411 \series bold
6412
6413 \backslash
6414 big
6415 \series default
6416  hay la variante 
6417 \series bold
6418
6419 \backslash
6420 bigm
6421 \series default
6422
6423 \begin_inset Index
6424 status collapsed
6425
6426 \begin_layout Plain Layout
6427 Comandos ! B ! 
6428 \backslash
6429 bigm
6430 \end_layout
6431
6432 \end_inset
6433
6434 , que añade un poco más de espacio entre el delimitador y su contenido,
6435  y la variante 
6436 \series bold
6437
6438 \backslash
6439 bigl
6440 \series default
6441 -
6442 \series bold
6443
6444 \backslash
6445 bigr
6446 \series default
6447
6448 \begin_inset Index
6449 status collapsed
6450
6451 \begin_layout Plain Layout
6452 Comandos ! B ! 
6453 \backslash
6454 bigl - 
6455 \backslash
6456 bigr
6457 \end_layout
6458
6459 \end_inset
6460
6461 , que no añade espacio adicional.
6462  La 
6463 \emph on
6464 l
6465 \emph default
6466  al final del comando 
6467 \series bold
6468
6469 \backslash
6470 bigl 
6471 \series default
6472 es para el delimitador izquierdo, la 
6473 \emph on
6474 r
6475 \emph default
6476  es para el delimitador derecho.
6477  Un delimitador izquierdo o derecho puede ser cada uno un delimitador de
6478  apertura o de cierre.
6479 \end_layout
6480
6481 \begin_layout Standard
6482 En el siguiente cuadro hay una comparación de las variantes:
6483 \end_layout
6484
6485 \begin_layout Standard
6486 \noindent
6487 \align center
6488 \begin_inset Tabular
6489 <lyxtabular version="3" rows="5" columns="2">
6490 <features>
6491 <column alignment="center" valignment="top" width="0">
6492 <column alignment="center" valignment="top" width="0">
6493 <row>
6494 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6495 \begin_inset Text
6496
6497 \begin_layout Plain Layout
6498 Comando
6499 \end_layout
6500
6501 \end_inset
6502 </cell>
6503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6504 \begin_inset Text
6505
6506 \begin_layout Plain Layout
6507 Resultado
6508 \begin_inset Note Note
6509 status collapsed
6510
6511 \begin_layout Plain Layout
6512
6513 \series bold
6514
6515 \backslash
6516 raisebox
6517 \series default
6518  se usa sólo como espaciador
6519 \end_layout
6520
6521 \end_inset
6522
6523
6524 \end_layout
6525
6526 \end_inset
6527 </cell>
6528 </row>
6529 <row>
6530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6531 \begin_inset Text
6532
6533 \begin_layout Plain Layout
6534
6535 \backslash
6536 Bigm(
6537 \backslash
6538 bigm(
6539 \backslash
6540 ln(3x)
6541 \backslash
6542 bigm)^2
6543 \series bold
6544
6545 \begin_inset ERT
6546 status collapsed
6547
6548 \begin_layout Plain Layout
6549
6550
6551 \backslash
6552 spce 
6553 \end_layout
6554
6555 \end_inset
6556
6557
6558 \series default
6559
6560 \backslash
6561 Bigm)
6562 \end_layout
6563
6564 \end_inset
6565 </cell>
6566 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6567 \begin_inset Text
6568
6569 \begin_layout Plain Layout
6570 \begin_inset Formula $\raisebox {5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox {-3.25mm}{}$
6571 \end_inset
6572
6573
6574 \end_layout
6575
6576 \end_inset
6577 </cell>
6578 </row>
6579 <row>
6580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6581 \begin_inset Text
6582
6583 \begin_layout Plain Layout
6584
6585 \backslash
6586 Big(
6587 \backslash
6588 big(
6589 \backslash
6590 ln(3x)
6591 \backslash
6592 big)^2
6593 \series bold
6594
6595 \begin_inset ERT
6596 status collapsed
6597
6598 \begin_layout Plain Layout
6599
6600
6601 \backslash
6602 spce 
6603 \end_layout
6604
6605 \end_inset
6606
6607
6608 \series default
6609
6610 \backslash
6611 Big)
6612 \end_layout
6613
6614 \end_inset
6615 </cell>
6616 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6617 \begin_inset Text
6618
6619 \begin_layout Plain Layout
6620 \begin_inset Formula $\raisebox {5.5mm}{}\Big (\big (\ln(3x)\big )^{2}\Big )\raisebox {-3.25mm}{}$
6621 \end_inset
6622
6623
6624 \end_layout
6625
6626 \end_inset
6627 </cell>
6628 </row>
6629 <row>
6630 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6631 \begin_inset Text
6632
6633 \begin_layout Plain Layout
6634
6635 \backslash
6636 Bigl(
6637 \backslash
6638 bigl(
6639 \backslash
6640 ln(3x)
6641 \backslash
6642 bigr)^2
6643 \series bold
6644
6645 \begin_inset ERT
6646 status collapsed
6647
6648 \begin_layout Plain Layout
6649
6650
6651 \backslash
6652 spce 
6653 \end_layout
6654
6655 \end_inset
6656
6657
6658 \series default
6659
6660 \backslash
6661 Bigr)
6662 \end_layout
6663
6664 \end_inset
6665 </cell>
6666 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6667 \begin_inset Text
6668
6669 \begin_layout Plain Layout
6670 \begin_inset Formula $\raisebox {5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox {-3.2mm}{}$
6671 \end_inset
6672
6673
6674 \end_layout
6675
6676 \end_inset
6677 </cell>
6678 </row>
6679 <row>
6680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6681 \begin_inset Text
6682
6683 \begin_layout Plain Layout
6684
6685 \backslash
6686 bigl)
6687 \backslash
6688 ln(3x)
6689 \backslash
6690 bigr(
6691 \end_layout
6692
6693 \end_inset
6694 </cell>
6695 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6696 \begin_inset Text
6697
6698 \begin_layout Plain Layout
6699 \begin_inset Formula $\raisebox {4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox {-2mm}{}$
6700 \end_inset
6701
6702
6703 \end_layout
6704
6705 \end_inset
6706 </cell>
6707 </row>
6708 </lyxtabular>
6709
6710 \end_inset
6711
6712
6713 \end_layout
6714
6715 \begin_layout Subsubsection
6716 Tamaño automático de los delimitadores
6717 \begin_inset CommandInset label
6718 LatexCommand label
6719 name "sub:Tamaño-automático-de"
6720
6721 \end_inset
6722
6723
6724 \begin_inset Index
6725 status collapsed
6726
6727 \begin_layout Plain Layout
6728 Delimitadores ! tamaño automático
6729 \end_layout
6730
6731 \end_inset
6732
6733
6734 \end_layout
6735
6736 \begin_layout Standard
6737 Se pueden insertar delimitadores de tamaño variable con los comandos 
6738 \series bold
6739
6740 \backslash
6741 left
6742 \series default
6743
6744 \begin_inset Index
6745 status collapsed
6746
6747 \begin_layout Plain Layout
6748 Comandos ! L ! 
6749 \backslash
6750 left
6751 \end_layout
6752
6753 \end_inset
6754
6755  y 
6756 \series bold
6757
6758 \backslash
6759 right
6760 \series default
6761
6762 \begin_inset Index
6763 status collapsed
6764
6765 \begin_layout Plain Layout
6766 Comandos ! R ! 
6767 \backslash
6768 right
6769 \end_layout
6770
6771 \end_inset
6772
6773  o con el botón de la barra de ecuaciones 
6774 \begin_inset Graphics
6775         filename ../../images/dialog-show_mathdelimiter.png
6776         embed ""
6777         scale 85
6778
6779 \end_inset
6780
6781 .
6782  El delimitador deseado se debe insertar directamente detrás de 
6783 \series bold
6784
6785 \backslash
6786 left
6787 \series default
6788  y 
6789 \series bold
6790
6791 \backslash
6792 right
6793 \series default
6794 .
6795  El tamaño se calculará automáticamente después para la salida.
6796  
6797 \end_layout
6798
6799 \begin_layout Standard
6800 \noindent
6801 \align center
6802 delimitador normal: El comando 
6803 \series bold
6804
6805 \backslash
6806 ln(
6807 \backslash
6808 frac
6809 \series default
6810
6811 \begin_inset ERT
6812 status collapsed
6813
6814 \begin_layout Plain Layout
6815
6816
6817 \backslash
6818 spce 
6819 \end_layout
6820
6821 \end_inset
6822
6823
6824 \series bold
6825 A
6826 \begin_inset Formula $\downarrow$
6827 \end_inset
6828
6829 C
6830 \series default
6831
6832 \begin_inset ERT
6833 status collapsed
6834
6835 \begin_layout Plain Layout
6836
6837
6838 \backslash
6839 spce
6840 \end_layout
6841
6842 \end_inset
6843
6844
6845 \series bold
6846 )
6847 \series default
6848  genera
6849 \begin_inset Formula \[
6850 \ln(\frac{A}{C})\]
6851
6852 \end_inset
6853
6854
6855 \end_layout
6856
6857 \begin_layout Standard
6858 \noindent
6859 \align center
6860 delimitador multilínea: El comando 
6861 \series bold
6862
6863 \backslash
6864 ln
6865 \backslash
6866 left(
6867 \backslash
6868 frac
6869 \series default
6870
6871 \begin_inset ERT
6872 status collapsed
6873
6874 \begin_layout Plain Layout
6875
6876
6877 \backslash
6878 spce 
6879 \end_layout
6880
6881 \end_inset
6882
6883
6884 \series bold
6885 A
6886 \begin_inset Formula $\downarrow$
6887 \end_inset
6888
6889 C
6890 \series default
6891
6892 \begin_inset ERT
6893 status collapsed
6894
6895 \begin_layout Plain Layout
6896
6897
6898 \backslash
6899 spce 
6900 \end_layout
6901
6902 \end_inset
6903
6904
6905 \series bold
6906
6907 \backslash
6908 right)
6909 \series default
6910  genera
6911 \begin_inset Formula \[
6912 \ln\left(\frac{A}{C}\right)\]
6913
6914 \end_inset
6915
6916
6917 \end_layout
6918
6919 \begin_layout Standard
6920 En lugar de 
6921 \series bold
6922
6923 \backslash
6924 left
6925 \series default
6926  y 
6927 \series bold
6928
6929 \backslash
6930 right
6931 \series default
6932  se puede usar el atajo 
6933 \family sans
6934 Alt-m
6935 \begin_inset Space ~
6936 \end_inset
6937
6938 delimitador
6939 \family default
6940 .
6941  Esto tiene la ventaja de que puedes ver inmediatamente en LyX el tamaño
6942  real del delimitador y además se genera el correspondiente delimitador
6943  de cierre.
6944 \begin_inset Newline newline
6945 \end_inset
6946
6947 El comando para el último ejemplo sería 
6948 \series bold
6949
6950 \backslash
6951 ln Alt-m
6952 \series default
6953  
6954 \series bold
6955 (
6956 \backslash
6957 frac
6958 \begin_inset ERT
6959 status collapsed
6960
6961 \begin_layout Plain Layout
6962
6963
6964 \backslash
6965 spce 
6966 \end_layout
6967
6968 \end_inset
6969
6970 A
6971 \begin_inset Formula $\downarrow$
6972 \end_inset
6973
6974
6975 \end_layout
6976
6977 \begin_layout Standard
6978 Para omitir uno de los dos delimitadores se inserta un punto.
6979  Por ejemplo, el comando 
6980 \series bold
6981
6982 \backslash
6983 left.
6984 \backslash
6985 frac
6986 \series default
6987
6988 \begin_inset ERT
6989 status collapsed
6990
6991 \begin_layout Plain Layout
6992
6993
6994 \backslash
6995 spce 
6996 \end_layout
6997
6998 \end_inset
6999
7000
7001 \series bold
7002 A
7003 \begin_inset Formula $\downarrow$
7004 \end_inset
7005
7006 B
7007 \series default
7008
7009 \begin_inset ERT
7010 status collapsed
7011
7012 \begin_layout Plain Layout
7013
7014
7015 \backslash
7016 spce 
7017 \end_layout
7018
7019 \end_inset
7020
7021
7022 \series bold
7023
7024 \backslash
7025 right}
7026 \series default
7027  da lugar a:
7028 \begin_inset Formula \[
7029 \left.\frac{A}{B}\right\} \]
7030
7031 \end_inset
7032
7033
7034 \end_layout
7035
7036 \begin_layout Standard
7037 LyX convertirá los comandos 
7038 \series bold
7039
7040 \backslash
7041 left
7042 \series default
7043  y 
7044 \series bold
7045
7046 \backslash
7047 right
7048 \series default
7049  a su tamaño adecuado cuando el documento sea recargado y el delimitador
7050  omitido aparecerá como línea de trazos.
7051  
7052 \begin_inset VSpace bigskip
7053 \end_inset
7054
7055
7056 \end_layout
7057
7058 \begin_layout Standard
7059 Como todas las distribuciones habituales de LaTeX incluyen eTeX, una extensión
7060  de LaTeX, el comando 
7061 \series bold
7062
7063 \backslash
7064 middle
7065 \series default
7066
7067 \begin_inset Index
7068 status collapsed
7069
7070 \begin_layout Plain Layout
7071 Comandos ! M ! 
7072 \backslash
7073 middle
7074 \end_layout
7075
7076 \end_inset
7077
7078  está también disponible para todos los delimitadores y límites.
7079  Con este comando la altura del siguiente carácter se adapta a la de los
7080  delimitadores circundantes, lo que es necesario, p.
7081 \begin_inset Space \thinspace{}
7082 \end_inset
7083
7084 e., para vectores físicos: 
7085 \begin_inset Formula \[
7086 \left\langle \phi\;\middle |\; J=\frac{3}{2}\,,\, M_{J}\right\rangle \]
7087
7088 \end_inset
7089
7090
7091 \end_layout
7092
7093 \begin_layout Standard
7094 Para vectores físicos hay un paquete LaTeX especial que se describe en 
7095 \begin_inset CommandInset ref
7096 LatexCommand ref
7097 reference "sub:Vectores-físicos"
7098
7099 \end_inset
7100
7101 .
7102 \end_layout
7103
7104 \begin_layout Subsection
7105 Delimitadores horizontales
7106 \begin_inset Index
7107 status collapsed
7108
7109 \begin_layout Plain Layout
7110 Delimitadores ! horizontales
7111 \end_layout
7112
7113 \end_inset
7114
7115
7116 \end_layout
7117
7118 \begin_layout Standard
7119 \noindent
7120 \align center
7121 \begin_inset Tabular
7122 <lyxtabular version="3" rows="4" columns="2">
7123 <features>
7124 <column alignment="center" valignment="top" width="0">
7125 <column alignment="center" valignment="top" width="0">
7126 <row>
7127 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7128 \begin_inset Text
7129
7130 \begin_layout Plain Layout
7131 Comando
7132 \begin_inset Note Note
7133 status collapsed
7134
7135 \begin_layout Plain Layout
7136
7137 \series bold
7138
7139 \backslash
7140 raisebox
7141 \series default
7142  se usa sólo como espaciador
7143 \end_layout
7144
7145 \end_inset
7146
7147
7148 \end_layout
7149
7150 \end_inset
7151 </cell>
7152 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7153 \begin_inset Text
7154
7155 \begin_layout Plain Layout
7156 Resultado
7157 \end_layout
7158
7159 \end_inset
7160 </cell>
7161 </row>
7162 <row>
7163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7164 \begin_inset Text
7165
7166 \begin_layout Plain Layout
7167 \begin_inset ERT
7168 status collapsed
7169
7170 \begin_layout Plain Layout
7171
7172
7173 \backslash
7174 raisebox{2.3mm}{
7175 \end_layout
7176
7177 \end_inset
7178
7179
7180 \backslash
7181 overbrace
7182 \begin_inset ERT
7183 status collapsed
7184
7185 \begin_layout Plain Layout
7186
7187
7188 \backslash
7189 spce 
7190 \end_layout
7191
7192 \end_inset
7193
7194 A+B
7195 \begin_inset ERT
7196 status collapsed
7197
7198 \begin_layout Plain Layout
7199
7200
7201 \backslash
7202 spce 
7203 \end_layout
7204
7205 \end_inset
7206
7207 ^
7208 \begin_inset ERT
7209 status collapsed
7210
7211 \begin_layout Plain Layout
7212
7213
7214 \backslash
7215 spce 
7216 \end_layout
7217
7218 \end_inset
7219
7220 3
7221 \begin_inset ERT
7222 status collapsed
7223
7224 \begin_layout Plain Layout
7225
7226 }
7227 \end_layout
7228
7229 \end_inset
7230
7231
7232 \begin_inset Index
7233 status collapsed
7234
7235 \begin_layout Plain Layout
7236 Comandos ! O ! 
7237 \backslash
7238 overbrace
7239 \end_layout
7240
7241 \end_inset
7242
7243
7244 \end_layout
7245
7246 \end_inset
7247 </cell>
7248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7249 \begin_inset Text
7250
7251 \begin_layout Plain Layout
7252 \begin_inset Formula $\overbrace{A+B}^{3}$
7253 \end_inset
7254
7255
7256 \end_layout
7257
7258 \end_inset
7259 </cell>
7260 </row>
7261 <row>
7262 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7263 \begin_inset Text
7264
7265 \begin_layout Plain Layout
7266 \begin_inset ERT
7267 status collapsed
7268
7269 \begin_layout Plain Layout
7270
7271
7272 \backslash
7273 raisebox{-2.2mm}{
7274 \end_layout
7275
7276 \end_inset
7277
7278
7279 \backslash
7280 underbrace
7281 \begin_inset ERT
7282 status collapsed
7283
7284 \begin_layout Plain Layout
7285
7286
7287 \backslash
7288 spce 
7289 \end_layout
7290
7291 \end_inset
7292
7293 A+B
7294 \begin_inset ERT
7295 status collapsed
7296
7297 \begin_layout Plain Layout
7298
7299
7300 \backslash
7301 spce 
7302 \end_layout
7303
7304 \end_inset
7305
7306 _5
7307 \begin_inset ERT
7308 status collapsed
7309
7310 \begin_layout Plain Layout
7311
7312 }
7313 \end_layout
7314
7315 \end_inset
7316
7317
7318 \begin_inset Index
7319 status collapsed
7320
7321 \begin_layout Plain Layout
7322 Comandos ! U ! 
7323 \backslash
7324 underbrace
7325 \end_layout
7326
7327 \end_inset
7328
7329
7330 \end_layout
7331
7332 \end_inset
7333 </cell>
7334 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7335 \begin_inset Text
7336
7337 \begin_layout Plain Layout
7338 \begin_inset Formula $\underbrace{A+B}_{5}$
7339 \end_inset
7340
7341
7342 \end_layout
7343
7344 \end_inset
7345 </cell>
7346 </row>
7347 <row>
7348 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7349 \begin_inset Text
7350
7351 \begin_layout Plain Layout
7352
7353 \backslash
7354 overbrace
7355 \begin_inset ERT
7356 status collapsed
7357
7358 \begin_layout Plain Layout
7359
7360
7361 \backslash
7362 spce 
7363 \end_layout
7364
7365 \end_inset
7366
7367
7368 \backslash
7369 underbrace
7370 \begin_inset ERT
7371 status collapsed
7372
7373 \begin_layout Plain Layout
7374
7375
7376 \backslash
7377 spce 
7378 \end_layout
7379
7380 \end_inset
7381
7382 A+B_w
7383 \begin_inset ERT
7384 status collapsed
7385
7386 \begin_layout Plain Layout
7387
7388
7389 \backslash
7390 spce 
7391 \end_layout
7392
7393 \end_inset
7394
7395
7396 \begin_inset ERT
7397 status collapsed
7398
7399 \begin_layout Plain Layout
7400
7401
7402 \backslash
7403 spce 
7404 \end_layout
7405
7406 \end_inset
7407
7408 _7
7409 \begin_inset ERT
7410 status collapsed
7411
7412 \begin_layout Plain Layout
7413
7414
7415 \backslash
7416 spce 
7417 \end_layout
7418
7419 \end_inset
7420
7421
7422 \begin_inset ERT
7423 status collapsed
7424
7425 \begin_layout Plain Layout
7426
7427
7428 \backslash
7429 spce 
7430 \end_layout
7431
7432 \end_inset
7433
7434 ^
7435 \begin_inset ERT
7436 status collapsed
7437
7438 \begin_layout Plain Layout
7439
7440
7441 \backslash
7442 spce 
7443 \end_layout
7444
7445 \end_inset
7446
7447 C
7448 \end_layout
7449
7450 \end_inset
7451 </cell>
7452 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7453 \begin_inset Text
7454
7455 \begin_layout Plain Layout
7456 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7457 \end_inset
7458
7459
7460 \end_layout
7461
7462 \end_inset
7463 </cell>
7464 </row>
7465 </lyxtabular>
7466
7467 \end_inset
7468
7469
7470 \end_layout
7471
7472 \begin_layout Standard
7473 En el último ejemplo no importa en qué orden se introducen los comandos
7474  
7475 \series bold
7476
7477 \backslash
7478 overbrace
7479 \series default
7480  y 
7481 \series bold
7482
7483 \backslash
7484 underbrace
7485 \series default
7486 .
7487 \begin_inset VSpace bigskip
7488 \end_inset
7489
7490
7491 \end_layout
7492
7493 \begin_layout Standard
7494 Si un delimitador debe estar superpuesto a otro, hay que usar ecuaciones
7495  multilínea, como se describe en
7496 \begin_inset Space ~
7497 \end_inset
7498
7499
7500 \begin_inset CommandInset ref
7501 LatexCommand ref
7502 reference "sec:Ecuaciones-multilínea"
7503
7504 \end_inset
7505
7506 :
7507 \begin_inset Formula \begin{eqnarray*}
7508 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7509  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}\end{eqnarray*}
7510
7511 \end_inset
7512
7513 En la primera fila se insertan la ecuación y la primera llave.
7514  Aquí es importante insertar el comando de espacio
7515 \begin_inset Foot
7516 status collapsed
7517
7518 \begin_layout Plain Layout
7519 Los comandos para espacios se explican en 
7520 \begin_inset CommandInset ref
7521 LatexCommand ref
7522 reference "sub:Espacio-predefinido"
7523
7524 \end_inset
7525
7526
7527 \end_layout
7528
7529 \end_inset
7530
7531  
7532 \series bold
7533
7534 \backslash
7535 :
7536 \series default
7537  antes de la primera
7538 \series bold
7539  
7540 \series default
7541
7542 \begin_inset Formula $d$
7543 \end_inset
7544
7545 , porque la llave que termina detrás de 
7546 \begin_inset Formula $q$
7547 \end_inset
7548
7549  impide que el siguiente 
7550 \begin_inset Quotes fld
7551 \end_inset
7552
7553 +
7554 \begin_inset Quotes frd
7555 \end_inset
7556
7557  esté rodeado de espacio.
7558 \begin_inset Foot
7559 status collapsed
7560
7561 \begin_layout Plain Layout
7562 Debido a que la llave no es considerada como carácter, véase 
7563 \begin_inset CommandInset ref
7564 LatexCommand ref
7565 reference "sub:Operadores-binarios"
7566
7567 \end_inset
7568
7569
7570 \end_layout
7571
7572 \end_inset
7573
7574  En la segunda fila se inserta la segunda llave: como debe comenzar antes
7575  de 
7576 \begin_inset Formula $b$
7577 \end_inset
7578
7579  se inserta antes el comando 
7580 \series bold
7581
7582 \backslash
7583 hphantom{gggg+
7584 \backslash
7585 :}
7586 \series default
7587 .
7588 \begin_inset Foot
7589 status collapsed
7590
7591 \begin_layout Plain Layout
7592 Más sobre 
7593 \series bold
7594
7595 \backslash
7596 hphantom
7597 \series default
7598  en 
7599 \begin_inset CommandInset ref
7600 LatexCommand ref
7601 reference "sub:Espaciadores-fantasma"
7602
7603 \end_inset
7604
7605
7606 \end_layout
7607
7608 \end_inset
7609
7610  Ese espacio es necesario porque el signo 
7611 \begin_inset Quotes fld
7612 \end_inset
7613
7614 +
7615 \begin_inset Quotes frd
7616 \end_inset
7617
7618  va seguido de un espacio en la ecuación.
7619  La llave se coloca bajo el comando 
7620 \series bold
7621
7622 \backslash
7623 hphantom{bbqq+dddd}
7624 \series default
7625 .
7626  
7627 \end_layout
7628
7629 \begin_layout Standard
7630 Resulta más complicado cuando una llave debe solapar a otra como en el siguiente
7631  ejemplo:
7632 \begin_inset ERT
7633 status collapsed
7634
7635 \begin_layout Plain Layout
7636
7637
7638 \backslash
7639 setlength{
7640 \backslash
7641 jot}{-6pt}
7642 \end_layout
7643
7644 \end_inset
7645
7646
7647 \begin_inset Formula \begin{eqnarray*}
7648  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
7649 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\end{eqnarray*}
7650
7651 \end_inset
7652
7653
7654 \begin_inset ERT
7655 status collapsed
7656
7657 \begin_layout Plain Layout
7658
7659
7660 \backslash
7661 setlength{
7662 \backslash
7663 jot}{3pt}
7664 \end_layout
7665
7666 \end_inset
7667
7668 La primera fila de la ecuación es igual que la segunda fila del ejemplo
7669  anterior, con la diferencia de que la llave está encima.
7670  La segunda fila contiene la ecuación junto con la segunda llave.
7671  Para evitar que haya demasiado espacio entre la llave superior en la primera
7672  fila y la ecuación hay que reducirlo.
7673  Esto no es fácil de hacer debido a un fallo de LyX.
7674 \begin_inset Foot
7675 status collapsed
7676
7677 \begin_layout Plain Layout
7678 \begin_inset CommandInset href
7679 LatexCommand href
7680 name "LyX-bug #1505"
7681 target "http://bugzilla.lyx.org/show_bug.cgi?id=1505"
7682
7683 \end_inset
7684
7685
7686 \end_layout
7687
7688 \end_inset
7689
7690  Una solución es cambiar la separación global de filas en la ecuación, 
7691 \series bold
7692
7693 \backslash
7694 jot
7695 \series default
7696
7697 \begin_inset Index
7698 status collapsed
7699
7700 \begin_layout Plain Layout
7701 Comandos ! J ! 
7702 \backslash
7703 jot
7704 \end_layout
7705
7706 \end_inset
7707
7708 , en -6
7709 \begin_inset Space \thinspace{}
7710 \end_inset
7711
7712 pt insertando antes de la ecuación el comando 
7713 \series bold
7714
7715 \backslash
7716 setlength{
7717 \backslash
7718 jot}{-6pt}
7719 \series default
7720  en modo TeX.
7721  Después de la ecuación se vuelve al valor normal 3
7722 \begin_inset Space \thinspace{}
7723 \end_inset
7724
7725 pt de 
7726 \series bold
7727
7728 \backslash
7729 jot
7730 \series default
7731  usando el mismo comando.
7732  Más información sobre separación de filas en ecuaciones en
7733 \begin_inset Space ~
7734 \end_inset
7735
7736
7737 \begin_inset CommandInset ref
7738 LatexCommand ref
7739 reference "sub:Separación-de-líneas"
7740
7741 \end_inset
7742
7743 .
7744 \end_layout
7745
7746 \begin_layout Section
7747 Flechas
7748 \begin_inset Index
7749 status collapsed
7750
7751 \begin_layout Plain Layout
7752 Flechas
7753 \end_layout
7754
7755 \end_inset
7756
7757
7758 \end_layout
7759
7760 \begin_layout Standard
7761 Las flechas se pueden insertar con el botón 
7762 \begin_inset Graphics
7763         filename ../../images/math/leftarrow.png
7764         embed ""
7765         scale 85
7766
7767 \end_inset
7768
7769  de la barra de ecuaciones o mediante los comandos listados en las subsecciones
7770  siguientes.
7771 \end_layout
7772
7773 \begin_layout Subsection
7774 Flechas horizontales
7775 \begin_inset Index
7776 status collapsed
7777
7778 \begin_layout Plain Layout
7779 Flechas ! horizontales
7780 \end_layout
7781
7782 \end_inset
7783
7784
7785 \end_layout
7786
7787 \begin_layout Standard
7788 \begin_inset Space \hfill{}
7789 \end_inset
7790
7791
7792 \begin_inset Tabular
7793 <lyxtabular version="3" rows="8" columns="2">
7794 <features>
7795 <column alignment="center" valignment="top" width="0pt">
7796 <column alignment="center" valignment="top" width="0pt">
7797 <row>
7798 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7799 \begin_inset Text
7800
7801 \begin_layout Plain Layout
7802 Comando
7803 \end_layout
7804
7805 \end_inset
7806 </cell>
7807 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7808 \begin_inset Text
7809
7810 \begin_layout Plain Layout
7811 Resultado
7812 \end_layout
7813
7814 \end_inset
7815 </cell>
7816 </row>
7817 <row>
7818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7819 \begin_inset Text
7820
7821 \begin_layout Plain Layout
7822
7823 \backslash
7824 gets
7825 \end_layout
7826
7827 \end_inset
7828 </cell>
7829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7830 \begin_inset Text
7831
7832 \begin_layout Plain Layout
7833 \begin_inset Formula $\gets$
7834 \end_inset
7835
7836
7837 \end_layout
7838
7839 \end_inset
7840 </cell>
7841 </row>
7842 <row>
7843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7844 \begin_inset Text
7845
7846 \begin_layout Plain Layout
7847
7848 \backslash
7849 Leftarrow
7850 \end_layout
7851
7852 \end_inset
7853 </cell>
7854 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7855 \begin_inset Text
7856
7857 \begin_layout Plain Layout
7858 \begin_inset Formula $\Leftarrow$
7859 \end_inset
7860
7861
7862 \end_layout
7863
7864 \end_inset
7865 </cell>
7866 </row>
7867 <row>
7868 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7869 \begin_inset Text
7870
7871 \begin_layout Plain Layout
7872
7873 \backslash
7874 longleftarrow
7875 \end_layout
7876
7877 \end_inset
7878 </cell>
7879 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7880 \begin_inset Text
7881
7882 \begin_layout Plain Layout
7883 \begin_inset Formula $\longleftarrow$
7884 \end_inset
7885
7886
7887 \end_layout
7888
7889 \end_inset
7890 </cell>
7891 </row>
7892 <row>
7893 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7894 \begin_inset Text
7895
7896 \begin_layout Plain Layout
7897
7898 \backslash
7899 Longleftarrow
7900 \end_layout
7901
7902 \end_inset
7903 </cell>
7904 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7905 \begin_inset Text
7906
7907 \begin_layout Plain Layout
7908 \begin_inset Formula $\Longleftarrow$
7909 \end_inset
7910
7911
7912 \end_layout
7913
7914 \end_inset
7915 </cell>
7916 </row>
7917 <row>
7918 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7919 \begin_inset Text
7920
7921 \begin_layout Plain Layout
7922
7923 \backslash
7924 leftharpoonup
7925 \end_layout
7926
7927 \end_inset
7928 </cell>
7929 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7930 \begin_inset Text
7931
7932 \begin_layout Plain Layout
7933 \begin_inset Formula $\leftharpoonup$
7934 \end_inset
7935
7936
7937 \end_layout
7938
7939 \end_inset
7940 </cell>
7941 </row>
7942 <row>
7943 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7944 \begin_inset Text
7945
7946 \begin_layout Plain Layout
7947
7948 \backslash
7949 leftharpoondown
7950 \end_layout
7951
7952 \end_inset
7953 </cell>
7954 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7955 \begin_inset Text
7956
7957 \begin_layout Plain Layout
7958 \begin_inset Formula $\leftharpoondown$
7959 \end_inset
7960
7961
7962 \end_layout
7963
7964 \end_inset
7965 </cell>
7966 </row>
7967 <row>
7968 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7969 \begin_inset Text
7970
7971 \begin_layout Plain Layout
7972
7973 \backslash
7974 hookleftarrow
7975 \end_layout
7976
7977 \end_inset
7978 </cell>
7979 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7980 \begin_inset Text
7981
7982 \begin_layout Plain Layout
7983 \begin_inset Formula $\hookleftarrow$
7984 \end_inset
7985
7986
7987 \end_layout
7988
7989 \end_inset
7990 </cell>
7991 </row>
7992 </lyxtabular>
7993
7994 \end_inset
7995
7996
7997 \begin_inset Space \hfill{}
7998 \end_inset
7999
8000
8001 \begin_inset Tabular
8002 <lyxtabular version="3" rows="8" columns="2">
8003 <features>
8004 <column alignment="center" valignment="top" width="0pt">
8005 <column alignment="center" valignment="top" width="0pt">
8006 <row>
8007 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8008 \begin_inset Text
8009
8010 \begin_layout Plain Layout
8011 Comando
8012 \end_layout
8013
8014 \end_inset
8015 </cell>
8016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8017 \begin_inset Text
8018
8019 \begin_layout Plain Layout
8020 Resultado
8021 \end_layout
8022
8023 \end_inset
8024 </cell>
8025 </row>
8026 <row>
8027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8028 \begin_inset Text
8029
8030 \begin_layout Plain Layout
8031
8032 \backslash
8033 to
8034 \end_layout
8035
8036 \end_inset
8037 </cell>
8038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8039 \begin_inset Text
8040
8041 \begin_layout Plain Layout
8042 \begin_inset Formula $\to$
8043 \end_inset
8044
8045
8046 \end_layout
8047
8048 \end_inset
8049 </cell>
8050 </row>
8051 <row>
8052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8053 \begin_inset Text
8054
8055 \begin_layout Plain Layout
8056
8057 \backslash
8058 Rightarrow
8059 \end_layout
8060
8061 \end_inset
8062 </cell>
8063 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8064 \begin_inset Text
8065
8066 \begin_layout Plain Layout
8067 \begin_inset Formula $\Rightarrow$
8068 \end_inset
8069
8070
8071 \end_layout
8072
8073 \end_inset
8074 </cell>
8075 </row>
8076 <row>
8077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8078 \begin_inset Text
8079
8080 \begin_layout Plain Layout
8081
8082 \backslash
8083 longrightarrow
8084 \end_layout
8085
8086 \end_inset
8087 </cell>
8088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8089 \begin_inset Text
8090
8091 \begin_layout Plain Layout
8092 \begin_inset Formula $\longrightarrow$
8093 \end_inset
8094
8095
8096 \end_layout
8097
8098 \end_inset
8099 </cell>
8100 </row>
8101 <row>
8102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8103 \begin_inset Text
8104
8105 \begin_layout Plain Layout
8106
8107 \backslash
8108 Longrightarrow
8109 \end_layout
8110
8111 \end_inset
8112 </cell>
8113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8114 \begin_inset Text
8115
8116 \begin_layout Plain Layout
8117 \begin_inset Formula $\Longrightarrow$
8118 \end_inset
8119
8120
8121 \end_layout
8122
8123 \end_inset
8124 </cell>
8125 </row>
8126 <row>
8127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8128 \begin_inset Text
8129
8130 \begin_layout Plain Layout
8131
8132 \backslash
8133 rightharpoonup
8134 \end_layout
8135
8136 \end_inset
8137 </cell>
8138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8139 \begin_inset Text
8140
8141 \begin_layout Plain Layout
8142 \begin_inset Formula $\rightharpoonup$
8143 \end_inset
8144
8145
8146 \end_layout
8147
8148 \end_inset
8149 </cell>
8150 </row>
8151 <row>
8152 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8153 \begin_inset Text
8154
8155 \begin_layout Plain Layout
8156
8157 \backslash
8158 rightharpoondown
8159 \end_layout
8160
8161 \end_inset
8162 </cell>
8163 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8164 \begin_inset Text
8165
8166 \begin_layout Plain Layout
8167 \begin_inset Formula $\rightharpoondown$
8168 \end_inset
8169
8170
8171 \end_layout
8172
8173 \end_inset
8174 </cell>
8175 </row>
8176 <row>
8177 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8178 \begin_inset Text
8179
8180 \begin_layout Plain Layout
8181
8182 \backslash
8183 hookrightarrow
8184 \end_layout
8185
8186 \end_inset
8187 </cell>
8188 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8189 \begin_inset Text
8190
8191 \begin_layout Plain Layout
8192 \begin_inset Formula $\hookrightarrow$
8193 \end_inset
8194
8195
8196 \end_layout
8197
8198 \end_inset
8199 </cell>
8200 </row>
8201 </lyxtabular>
8202
8203 \end_inset
8204
8205
8206 \begin_inset Space \hfill{}
8207 \end_inset
8208
8209
8210 \end_layout
8211
8212 \begin_layout Standard
8213 \begin_inset Space \hfill{}
8214 \end_inset
8215
8216
8217 \begin_inset Tabular
8218 <lyxtabular version="3" rows="6" columns="2">
8219 <features>
8220 <column alignment="center" valignment="top" width="0pt">
8221 <column alignment="center" valignment="top" width="0pt">
8222 <row>
8223 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8224 \begin_inset Text
8225
8226 \begin_layout Plain Layout
8227 Comando
8228 \end_layout
8229
8230 \end_inset
8231 </cell>
8232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8233 \begin_inset Text
8234
8235 \begin_layout Plain Layout
8236 Resultado
8237 \end_layout
8238
8239 \end_inset
8240 </cell>
8241 </row>
8242 <row>
8243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8244 \begin_inset Text
8245
8246 \begin_layout Plain Layout
8247
8248 \backslash
8249 leftrightarrow
8250 \end_layout
8251
8252 \end_inset
8253 </cell>
8254 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8255 \begin_inset Text
8256
8257 \begin_layout Plain Layout
8258 \begin_inset Formula $\leftrightarrow$
8259 \end_inset
8260
8261
8262 \end_layout
8263
8264 \end_inset
8265 </cell>
8266 </row>
8267 <row>
8268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8269 \begin_inset Text
8270
8271 \begin_layout Plain Layout
8272
8273 \backslash
8274 Leftrightarrow
8275 \end_layout
8276
8277 \end_inset
8278 </cell>
8279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8280 \begin_inset Text
8281
8282 \begin_layout Plain Layout
8283 \begin_inset Formula $\Leftrightarrow$
8284 \end_inset
8285
8286
8287 \end_layout
8288
8289 \end_inset
8290 </cell>
8291 </row>
8292 <row>
8293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8294 \begin_inset Text
8295
8296 \begin_layout Plain Layout
8297
8298 \backslash
8299 longleftrightarrow
8300 \end_layout
8301
8302 \end_inset
8303 </cell>
8304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8305 \begin_inset Text
8306
8307 \begin_layout Plain Layout
8308 \begin_inset Formula $\longleftrightarrow$
8309 \end_inset
8310
8311
8312 \end_layout
8313
8314 \end_inset
8315 </cell>
8316 </row>
8317 <row>
8318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8319 \begin_inset Text
8320
8321 \begin_layout Plain Layout
8322
8323 \backslash
8324 Longleftrightarrow
8325 \end_layout
8326
8327 \end_inset
8328 </cell>
8329 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8330 \begin_inset Text
8331
8332 \begin_layout Plain Layout
8333 \begin_inset Formula $\Longleftrightarrow$
8334 \end_inset
8335
8336
8337 \end_layout
8338
8339 \end_inset
8340 </cell>
8341 </row>
8342 <row>
8343 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8344 \begin_inset Text
8345
8346 \begin_layout Plain Layout
8347
8348 \backslash
8349 rightleftharpoons
8350 \end_layout
8351
8352 \end_inset
8353 </cell>
8354 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8355 \begin_inset Text
8356
8357 \begin_layout Plain Layout
8358 \begin_inset Formula $\rightleftharpoons$
8359 \end_inset
8360
8361
8362 \end_layout
8363
8364 \end_inset
8365 </cell>
8366 </row>
8367 </lyxtabular>
8368
8369 \end_inset
8370
8371
8372 \begin_inset Space \hspace{}
8373 \length 25pt
8374 \end_inset
8375
8376
8377 \begin_inset Space \hfill{}
8378 \end_inset
8379
8380
8381 \begin_inset Tabular
8382 <lyxtabular version="3" rows="5" columns="2">
8383 <features>
8384 <column alignment="center" valignment="top" width="0pt">
8385 <column alignment="center" valignment="top" width="0pt">
8386 <row>
8387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8388 \begin_inset Text
8389
8390 \begin_layout Plain Layout
8391 Comando
8392 \end_layout
8393
8394 \end_inset
8395 </cell>
8396 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8397 \begin_inset Text
8398
8399 \begin_layout Plain Layout
8400 Resultado
8401 \end_layout
8402
8403 \end_inset
8404 </cell>
8405 </row>
8406 <row>
8407 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8408 \begin_inset Text
8409
8410 \begin_layout Plain Layout
8411
8412 \backslash
8413 mapsto
8414 \end_layout
8415
8416 \end_inset
8417 </cell>
8418 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8419 \begin_inset Text
8420
8421 \begin_layout Plain Layout
8422 \begin_inset Formula $\mapsto$
8423 \end_inset
8424
8425
8426 \end_layout
8427
8428 \end_inset
8429 </cell>
8430 </row>
8431 <row>
8432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8433 \begin_inset Text
8434
8435 \begin_layout Plain Layout
8436
8437 \backslash
8438 longmapsto
8439 \end_layout
8440
8441 \end_inset
8442 </cell>
8443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8444 \begin_inset Text
8445
8446 \begin_layout Plain Layout
8447 \begin_inset Formula $\longmapsto$
8448 \end_inset
8449
8450
8451 \end_layout
8452
8453 \end_inset
8454 </cell>
8455 </row>
8456 <row>
8457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8458 \begin_inset Text
8459
8460 \begin_layout Plain Layout
8461
8462 \backslash
8463 leadsto
8464 \end_layout
8465
8466 \end_inset
8467 </cell>
8468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8469 \begin_inset Text
8470
8471 \begin_layout Plain Layout
8472 \begin_inset Formula $\leadsto$
8473 \end_inset
8474
8475
8476 \end_layout
8477
8478 \end_inset
8479 </cell>
8480 </row>
8481 <row>
8482 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8483 \begin_inset Text
8484
8485 \begin_layout Plain Layout
8486
8487 \backslash
8488 dasharrow
8489 \end_layout
8490
8491 \end_inset
8492 </cell>
8493 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8494 \begin_inset Text
8495
8496 \begin_layout Plain Layout
8497 \begin_inset Formula $\dasharrow$
8498 \end_inset
8499
8500
8501 \end_layout
8502
8503 \end_inset
8504 </cell>
8505 </row>
8506 </lyxtabular>
8507
8508 \end_inset
8509
8510
8511 \begin_inset Space \hfill{}
8512 \end_inset
8513
8514
8515 \begin_inset VSpace medskip
8516 \end_inset
8517
8518
8519 \end_layout
8520
8521 \begin_layout Standard
8522 Las flechas que se utilizan como acentos, p.
8523 \begin_inset Space \thinspace{}
8524 \end_inset
8525
8526 e.
8527  en vectores, se describen en 
8528 \begin_inset CommandInset ref
8529 LatexCommand ref
8530 reference "sec:Acentos"
8531
8532 \end_inset
8533
8534 .
8535  
8536 \begin_inset VSpace bigskip
8537 \end_inset
8538
8539
8540 \end_layout
8541
8542 \begin_layout Standard
8543 Además hay las flechas etiquetadas
8544 \begin_inset Index
8545 status collapsed
8546
8547 \begin_layout Plain Layout
8548 Flechas ! etiquetadas
8549 \end_layout
8550
8551 \end_inset
8552
8553  
8554 \series bold
8555
8556 \backslash
8557 xleftarrow
8558 \series default
8559
8560 \begin_inset Index
8561 status collapsed
8562
8563 \begin_layout Plain Layout
8564 Comandos ! X ! 
8565 \backslash
8566 xleftarrow
8567 \end_layout
8568
8569 \end_inset
8570
8571  y 
8572 \series bold
8573
8574 \backslash
8575 xrightarrow
8576 \series default
8577
8578 \begin_inset Index
8579 status collapsed
8580
8581 \begin_layout Plain Layout
8582 Comandos ! X ! 
8583 \backslash
8584 xrightarrow
8585 \begin_inset VSpace 4mm
8586 \end_inset
8587
8588
8589 \end_layout
8590
8591 \end_inset
8592
8593 .
8594  Cuando se inserta uno de estos comandos en una ecuación aparece una flecha
8595  con dos marcos azules donde se puede insertar la etiqueta.
8596  La longitud de la flecha se adapta a la anchura de la etiqueta.
8597 \end_layout
8598
8599 \begin_layout Standard
8600 \noindent
8601 \align center
8602 \begin_inset Tabular
8603 <lyxtabular version="3" rows="3" columns="2">
8604 <features>
8605 <column alignment="center" valignment="top" width="0">
8606 <column alignment="center" valignment="top" width="0">
8607 <row>
8608 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8609 \begin_inset Text
8610
8611 \begin_layout Plain Layout
8612 Comando
8613 \end_layout
8614
8615 \end_inset
8616 </cell>
8617 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8618 \begin_inset Text
8619
8620 \begin_layout Plain Layout
8621 Resultado
8622 \begin_inset Note Note
8623 status collapsed
8624
8625 \begin_layout Plain Layout
8626
8627 \series bold
8628
8629 \backslash
8630 raisebox
8631 \series default
8632  se usa sólo como espaciador
8633 \end_layout
8634
8635 \end_inset
8636
8637
8638 \end_layout
8639
8640 \end_inset
8641 </cell>
8642 </row>
8643 <row>
8644 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8645 \begin_inset Text
8646
8647 \begin_layout Plain Layout
8648 F(a)
8649 \backslash
8650 xleftarrow
8651 \begin_inset ERT
8652 status collapsed
8653
8654 \begin_layout Plain Layout
8655
8656
8657 \backslash
8658 spce 
8659 \end_layout
8660
8661 \end_inset
8662
8663 x=a
8664 \begin_inset Formula $\downarrow$
8665 \end_inset
8666
8667 x>0
8668 \begin_inset Formula $\to$
8669 \end_inset
8670
8671 F(x)
8672 \end_layout
8673
8674 \end_inset
8675 </cell>
8676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8677 \begin_inset Text
8678
8679 \begin_layout Plain Layout
8680 \begin_inset Formula $\raisebox {5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox {-4mm}{}$
8681 \end_inset
8682
8683
8684 \end_layout
8685
8686 \end_inset
8687 </cell>
8688 </row>
8689 <row>
8690 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8691 \begin_inset Text
8692
8693 \begin_layout Plain Layout
8694 F(x)
8695 \backslash
8696 xrightarrow
8697 \begin_inset ERT
8698 status collapsed
8699
8700 \begin_layout Plain Layout
8701
8702
8703 \backslash
8704 spce 
8705 \end_layout
8706
8707 \end_inset
8708
8709 x=a
8710 \begin_inset Formula $\downarrow$
8711 \end_inset
8712
8713 x>0
8714 \begin_inset Formula $\to$
8715 \end_inset
8716
8717 F(a)
8718 \end_layout
8719
8720 \end_inset
8721 </cell>
8722 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8723 \begin_inset Text
8724
8725 \begin_layout Plain Layout
8726 \begin_inset Formula $\raisebox {5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox {-4mm}{}$
8727 \end_inset
8728
8729
8730 \end_layout
8731
8732 \end_inset
8733 </cell>
8734 </row>
8735 </lyxtabular>
8736
8737 \end_inset
8738
8739
8740 \end_layout
8741
8742 \begin_layout Subsection
8743 Flechas verticales y diagonales
8744 \begin_inset Index
8745 status collapsed
8746
8747 \begin_layout Plain Layout
8748 Flechas ! diagonales
8749 \end_layout
8750
8751 \end_inset
8752
8753
8754 \begin_inset Index
8755 status collapsed
8756
8757 \begin_layout Plain Layout
8758 Flechas ! verticales
8759 \end_layout
8760
8761 \end_inset
8762
8763
8764 \end_layout
8765
8766 \begin_layout Standard
8767 \begin_inset Space \hfill{}
8768 \end_inset
8769
8770
8771 \begin_inset Tabular
8772 <lyxtabular version="3" rows="7" columns="2">
8773 <features>
8774 <column alignment="center" valignment="top" width="0pt">
8775 <column alignment="center" valignment="top" width="0pt">
8776 <row>
8777 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8778 \begin_inset Text
8779
8780 \begin_layout Plain Layout
8781 Comando
8782 \end_layout
8783
8784 \end_inset
8785 </cell>
8786 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8787 \begin_inset Text
8788
8789 \begin_layout Plain Layout
8790 Resultado
8791 \end_layout
8792
8793 \end_inset
8794 </cell>
8795 </row>
8796 <row>
8797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8798 \begin_inset Text
8799
8800 \begin_layout Plain Layout
8801
8802 \backslash
8803 uparrow
8804 \end_layout
8805
8806 \end_inset
8807 </cell>
8808 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8809 \begin_inset Text
8810
8811 \begin_layout Plain Layout
8812 \begin_inset Formula $\uparrow$
8813 \end_inset
8814
8815
8816 \end_layout
8817
8818 \end_inset
8819 </cell>
8820 </row>
8821 <row>
8822 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8823 \begin_inset Text
8824
8825 \begin_layout Plain Layout
8826
8827 \backslash
8828 Uparrow
8829 \end_layout
8830
8831 \end_inset
8832 </cell>
8833 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8834 \begin_inset Text
8835
8836 \begin_layout Plain Layout
8837 \begin_inset Formula $\Uparrow$
8838 \end_inset
8839
8840
8841 \end_layout
8842
8843 \end_inset
8844 </cell>
8845 </row>
8846 <row>
8847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8848 \begin_inset Text
8849
8850 \begin_layout Plain Layout
8851
8852 \backslash
8853 updownarrow
8854 \end_layout
8855
8856 \end_inset
8857 </cell>
8858 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8859 \begin_inset Text
8860
8861 \begin_layout Plain Layout
8862 \begin_inset Formula $\updownarrow$
8863 \end_inset
8864
8865
8866 \end_layout
8867
8868 \end_inset
8869 </cell>
8870 </row>
8871 <row>
8872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8873 \begin_inset Text
8874
8875 \begin_layout Plain Layout
8876
8877 \backslash
8878 Updownarrow
8879 \end_layout
8880
8881 \end_inset
8882 </cell>
8883 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8884 \begin_inset Text
8885
8886 \begin_layout Plain Layout
8887 \begin_inset Formula $\Updownarrow$
8888 \end_inset
8889
8890
8891 \end_layout
8892
8893 \end_inset
8894 </cell>
8895 </row>
8896 <row>
8897 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8898 \begin_inset Text
8899
8900 \begin_layout Plain Layout
8901
8902 \backslash
8903 Downarrow
8904 \end_layout
8905
8906 \end_inset
8907 </cell>
8908 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8909 \begin_inset Text
8910
8911 \begin_layout Plain Layout
8912 \begin_inset Formula $\Downarrow$
8913 \end_inset
8914
8915
8916 \end_layout
8917
8918 \end_inset
8919 </cell>
8920 </row>
8921 <row>
8922 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8923 \begin_inset Text
8924
8925 \begin_layout Plain Layout
8926
8927 \backslash
8928 downarrow
8929 \end_layout
8930
8931 \end_inset
8932 </cell>
8933 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8934 \begin_inset Text
8935
8936 \begin_layout Plain Layout
8937 \begin_inset Formula $\downarrow$
8938 \end_inset
8939
8940
8941 \end_layout
8942
8943 \end_inset
8944 </cell>
8945 </row>
8946 </lyxtabular>
8947
8948 \end_inset
8949
8950
8951 \begin_inset Space \hfill{}
8952 \end_inset
8953
8954
8955 \begin_inset Tabular
8956 <lyxtabular version="3" rows="5" columns="2">
8957 <features>
8958 <column alignment="center" valignment="top" width="0pt">
8959 <column alignment="center" valignment="top" width="0pt">
8960 <row>
8961 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8962 \begin_inset Text
8963
8964 \begin_layout Plain Layout
8965 Comando
8966 \end_layout
8967
8968 \end_inset
8969 </cell>
8970 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8971 \begin_inset Text
8972
8973 \begin_layout Plain Layout
8974 Resultado
8975 \end_layout
8976
8977 \end_inset
8978 </cell>
8979 </row>
8980 <row>
8981 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8982 \begin_inset Text
8983
8984 \begin_layout Plain Layout
8985
8986 \backslash
8987 nearrow
8988 \end_layout
8989
8990 \end_inset
8991 </cell>
8992 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8993 \begin_inset Text
8994
8995 \begin_layout Plain Layout
8996 \begin_inset Formula $\nearrow$
8997 \end_inset
8998
8999
9000 \end_layout
9001
9002 \end_inset
9003 </cell>
9004 </row>
9005 <row>
9006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9007 \begin_inset Text
9008
9009 \begin_layout Plain Layout
9010
9011 \backslash
9012 searrow
9013 \end_layout
9014
9015 \end_inset
9016 </cell>
9017 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9018 \begin_inset Text
9019
9020 \begin_layout Plain Layout
9021 \begin_inset Formula $\searrow$
9022 \end_inset
9023
9024
9025 \end_layout
9026
9027 \end_inset
9028 </cell>
9029 </row>
9030 <row>
9031 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9032 \begin_inset Text
9033
9034 \begin_layout Plain Layout
9035
9036 \backslash
9037 swarrow
9038 \end_layout
9039
9040 \end_inset
9041 </cell>
9042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9043 \begin_inset Text
9044
9045 \begin_layout Plain Layout
9046 \begin_inset Formula $\swarrow$
9047 \end_inset
9048
9049
9050 \end_layout
9051
9052 \end_inset
9053 </cell>
9054 </row>
9055 <row>
9056 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9057 \begin_inset Text
9058
9059 \begin_layout Plain Layout
9060
9061 \backslash
9062 nwarrow
9063 \end_layout
9064
9065 \end_inset
9066 </cell>
9067 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9068 \begin_inset Text
9069
9070 \begin_layout Plain Layout
9071 \begin_inset Formula $\nwarrow$
9072 \end_inset
9073
9074
9075 \end_layout
9076
9077 \end_inset
9078 </cell>
9079 </row>
9080 </lyxtabular>
9081
9082 \end_inset
9083
9084
9085 \begin_inset Space \hfill{}
9086 \end_inset
9087
9088
9089 \end_layout
9090
9091 \begin_layout Standard
9092 \begin_inset VSpace medskip
9093 \end_inset
9094
9095
9096 \end_layout
9097
9098 \begin_layout Standard
9099 Las flechas verticales también se pueden usar como delimitadores junto con
9100  los comandos descritos en
9101 \begin_inset Space ~
9102 \end_inset
9103
9104
9105 \begin_inset CommandInset ref
9106 LatexCommand ref
9107 reference "sub:Tamaño-manual-de"
9108
9109 \end_inset
9110
9111  y 
9112 \begin_inset CommandInset ref
9113 LatexCommand ref
9114 reference "sub:Tamaño-automático-de"
9115
9116 \end_inset
9117
9118 .
9119 \end_layout
9120
9121 \begin_layout Standard
9122
9123 \end_layout
9124
9125 \begin_layout Section
9126 Acentos
9127 \begin_inset CommandInset label
9128 LatexCommand label
9129 name "sec:Acentos"
9130
9131 \end_inset
9132
9133
9134 \begin_inset Index
9135 status collapsed
9136
9137 \begin_layout Plain Layout
9138 Acentos
9139 \end_layout
9140
9141 \end_inset
9142
9143
9144 \end_layout
9145
9146 \begin_layout Standard
9147 Los acentos se pueden insertar con el botón 
9148 \begin_inset Graphics
9149         filename ../../images/math/hat.png
9150         embed ""
9151         scale 85
9152
9153 \end_inset
9154
9155  o mediante los comandos listados en las siguientes subsecciones.
9156 \end_layout
9157
9158 \begin_layout Subsection
9159 Acentos para un carácter
9160 \begin_inset ERT
9161 status collapsed
9162
9163 \begin_layout Plain Layout
9164
9165
9166 \backslash
9167 texorpdfstring{
9168 \end_layout
9169
9170 \end_inset
9171
9172
9173 \begin_inset Foot
9174 status open
9175
9176 \begin_layout Plain Layout
9177 Para acentos en texto, véase 
9178 \begin_inset CommandInset ref
9179 LatexCommand ref
9180 reference "sub:Acentos-en-texto"
9181
9182 \end_inset
9183
9184
9185 \end_layout
9186
9187 \end_inset
9188
9189
9190 \begin_inset ERT
9191 status collapsed
9192
9193 \begin_layout Plain Layout
9194
9195 }{}
9196 \end_layout
9197
9198 \end_inset
9199
9200
9201 \begin_inset Note Note
9202 status collapsed
9203
9204 \begin_layout Plain Layout
9205
9206 \backslash
9207 texorpdfstring se usa para evitar que la nota al pie aparezca en los marcadores
9208  PDF.
9209 \end_layout
9210
9211 \begin_layout Plain Layout
9212 Más sobre 
9213 \backslash
9214 texorpdfstring en la sección 
9215 \begin_inset CommandInset ref
9216 LatexCommand ref
9217 reference "sub:Ecuaciones-en-títulos"
9218
9219 \end_inset
9220
9221 .
9222 \end_layout
9223
9224 \end_inset
9225
9226
9227 \begin_inset CommandInset label
9228 LatexCommand label
9229 name "sub:Acentos-para-un"
9230
9231 \end_inset
9232
9233
9234 \begin_inset Index
9235 status collapsed
9236
9237 \begin_layout Plain Layout
9238 Acentos ! para un carácter
9239 \end_layout
9240
9241 \end_inset
9242
9243
9244 \end_layout
9245
9246 \begin_layout Standard
9247 \begin_inset Space \hfill{}
9248 \end_inset
9249
9250
9251 \begin_inset Tabular
9252 <lyxtabular version="3" rows="8" columns="2">
9253 <features>
9254 <column alignment="center" valignment="top" width="0pt">
9255 <column alignment="center" valignment="top" width="0pt">
9256 <row>
9257 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9258 \begin_inset Text
9259
9260 \begin_layout Plain Layout
9261 Comando
9262 \end_layout
9263
9264 \end_inset
9265 </cell>
9266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9267 \begin_inset Text
9268
9269 \begin_layout Plain Layout
9270 Resultado
9271 \begin_inset Note Note
9272 status collapsed
9273
9274 \begin_layout Plain Layout
9275
9276 \series bold
9277
9278 \backslash
9279 raisebox
9280 \series default
9281  se usa sólo como espaciador
9282 \end_layout
9283
9284 \end_inset
9285
9286
9287 \end_layout
9288
9289 \end_inset
9290 </cell>
9291 </row>
9292 <row>
9293 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9294 \begin_inset Text
9295
9296 \begin_layout Plain Layout
9297
9298 \backslash
9299 dot
9300 \begin_inset ERT
9301 status collapsed
9302
9303 \begin_layout Plain Layout
9304
9305
9306 \backslash
9307 spce 
9308 \end_layout
9309
9310 \end_inset
9311
9312 A
9313 \end_layout
9314
9315 \end_inset
9316 </cell>
9317 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9318 \begin_inset Text
9319
9320 \begin_layout Plain Layout
9321 \begin_inset Formula $\raisebox {5mm}{}\dot{A}$
9322 \end_inset
9323
9324
9325 \end_layout
9326
9327 \end_inset
9328 </cell>
9329 </row>
9330 <row>
9331 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9332 \begin_inset Text
9333
9334 \begin_layout Plain Layout
9335
9336 \backslash
9337 ddot
9338 \begin_inset ERT
9339 status collapsed
9340
9341 \begin_layout Plain Layout
9342
9343
9344 \backslash
9345 spce 
9346 \end_layout
9347
9348 \end_inset
9349
9350 A
9351 \end_layout
9352
9353 \end_inset
9354 </cell>
9355 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9356 \begin_inset Text
9357
9358 \begin_layout Plain Layout
9359 \begin_inset Formula $\raisebox {5mm}{}\ddot{A}$
9360 \end_inset
9361
9362
9363 \end_layout
9364
9365 \end_inset
9366 </cell>
9367 </row>
9368 <row>
9369 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9370 \begin_inset Text
9371
9372 \begin_layout Plain Layout
9373
9374 \backslash
9375 dddot
9376 \begin_inset ERT
9377 status collapsed
9378
9379 \begin_layout Plain Layout
9380
9381
9382 \backslash
9383 spce 
9384 \end_layout
9385
9386 \end_inset
9387
9388 A
9389 \end_layout
9390
9391 \end_inset
9392 </cell>
9393 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9394 \begin_inset Text
9395
9396 \begin_layout Plain Layout
9397 \begin_inset Formula $\raisebox {5mm}{}\dddot{A}$
9398 \end_inset
9399
9400
9401 \end_layout
9402
9403 \end_inset
9404 </cell>
9405 </row>
9406 <row>
9407 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9408 \begin_inset Text
9409
9410 \begin_layout Plain Layout
9411
9412 \backslash
9413 ddddot{A
9414 \end_layout
9415
9416 \end_inset
9417 </cell>
9418 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9419 \begin_inset Text
9420
9421 \begin_layout Plain Layout
9422 \begin_inset Formula $\raisebox {5mm}{}\ddddot {A}$
9423 \end_inset
9424
9425
9426 \end_layout
9427
9428 \end_inset
9429 </cell>
9430 </row>
9431 <row>
9432 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9433 \begin_inset Text
9434
9435 \begin_layout Plain Layout
9436
9437 \backslash
9438 vec
9439 \begin_inset ERT
9440 status collapsed
9441
9442 \begin_layout Plain Layout
9443
9444
9445 \backslash
9446 spce 
9447 \end_layout
9448
9449 \end_inset
9450
9451 A
9452 \begin_inset Index
9453 status collapsed
9454
9455 \begin_layout Plain Layout
9456 Vectores
9457 \end_layout
9458
9459 \end_inset
9460
9461
9462 \end_layout
9463
9464 \end_inset
9465 </cell>
9466 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9467 \begin_inset Text
9468
9469 \begin_layout Plain Layout
9470 \begin_inset Formula $\raisebox {5mm}{}\vec{A}$
9471 \end_inset
9472
9473
9474 \end_layout
9475
9476 \end_inset
9477 </cell>
9478 </row>
9479 <row>
9480 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9481 \begin_inset Text
9482
9483 \begin_layout Plain Layout
9484
9485 \backslash
9486 bar
9487 \begin_inset ERT
9488 status collapsed
9489
9490 \begin_layout Plain Layout
9491
9492
9493 \backslash
9494 spce 
9495 \end_layout
9496
9497 \end_inset
9498
9499 A
9500 \end_layout
9501
9502 \end_inset
9503 </cell>
9504 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9505 \begin_inset Text
9506
9507 \begin_layout Plain Layout
9508 \begin_inset Formula $\raisebox {5mm}{}\bar{A}$
9509 \end_inset
9510
9511
9512 \end_layout
9513
9514 \end_inset
9515 </cell>
9516 </row>
9517 <row>
9518 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9519 \begin_inset Text
9520
9521 \begin_layout Plain Layout
9522
9523 \backslash
9524 mathring
9525 \begin_inset ERT
9526 status collapsed
9527
9528 \begin_layout Plain Layout
9529
9530
9531 \backslash
9532 spce 
9533 \end_layout
9534
9535 \end_inset
9536
9537 A
9538 \end_layout
9539
9540 \end_inset
9541 </cell>
9542 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9543 \begin_inset Text
9544
9545 \begin_layout Plain Layout
9546 \begin_inset Formula $\raisebox {5mm}{}\mathring{A}$
9547 \end_inset
9548
9549
9550 \end_layout
9551
9552 \end_inset
9553 </cell>
9554 </row>
9555 </lyxtabular>
9556
9557 \end_inset
9558
9559
9560 \begin_inset Space \hfill{}
9561 \end_inset
9562
9563
9564 \begin_inset Tabular
9565 <lyxtabular version="3" rows="7" columns="2">
9566 <features>
9567 <column alignment="center" valignment="top" width="0pt">
9568 <column alignment="center" valignment="top" width="0pt">
9569 <row>
9570 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9571 \begin_inset Text
9572
9573 \begin_layout Plain Layout
9574 Comando
9575 \end_layout
9576
9577 \end_inset
9578 </cell>
9579 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9580 \begin_inset Text
9581
9582 \begin_layout Plain Layout
9583 Resultado
9584 \begin_inset Note Note
9585 status collapsed
9586
9587 \begin_layout Plain Layout
9588
9589 \series bold
9590
9591 \backslash
9592 raisebox
9593 \series default
9594  se usa sólo como espaciador
9595 \end_layout
9596
9597 \end_inset
9598
9599
9600 \end_layout
9601
9602 \end_inset
9603 </cell>
9604 </row>
9605 <row>
9606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9607 \begin_inset Text
9608
9609 \begin_layout Plain Layout
9610
9611 \backslash
9612 tilde
9613 \begin_inset ERT
9614 status collapsed
9615
9616 \begin_layout Plain Layout
9617
9618
9619 \backslash
9620 spce 
9621 \end_layout
9622
9623 \end_inset
9624
9625 A
9626 \end_layout
9627
9628 \end_inset
9629 </cell>
9630 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9631 \begin_inset Text
9632
9633 \begin_layout Plain Layout
9634 \begin_inset Formula $\raisebox {5mm}{}\tilde{A}$
9635 \end_inset
9636
9637
9638 \end_layout
9639
9640 \end_inset
9641 </cell>
9642 </row>
9643 <row>
9644 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9645 \begin_inset Text
9646
9647 \begin_layout Plain Layout
9648
9649 \backslash
9650 hat
9651 \begin_inset ERT
9652 status collapsed
9653
9654 \begin_layout Plain Layout
9655
9656
9657 \backslash
9658 spce 
9659 \end_layout
9660
9661 \end_inset
9662
9663 A
9664 \end_layout
9665
9666 \end_inset
9667 </cell>
9668 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9669 \begin_inset Text
9670
9671 \begin_layout Plain Layout
9672 \begin_inset Formula $\raisebox {5mm}{}\hat{A}$
9673 \end_inset
9674
9675
9676 \end_layout
9677
9678 \end_inset
9679 </cell>
9680 </row>
9681 <row>
9682 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9683 \begin_inset Text
9684
9685 \begin_layout Plain Layout
9686
9687 \backslash
9688 check
9689 \begin_inset ERT
9690 status collapsed
9691
9692 \begin_layout Plain Layout
9693
9694
9695 \backslash
9696 spce 
9697 \end_layout
9698
9699 \end_inset
9700
9701 A
9702 \end_layout
9703
9704 \end_inset
9705 </cell>
9706 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9707 \begin_inset Text
9708
9709 \begin_layout Plain Layout
9710 \begin_inset Formula $\raisebox {5mm}{}\check{A}$
9711 \end_inset
9712
9713
9714 \end_layout
9715
9716 \end_inset
9717 </cell>
9718 </row>
9719 <row>
9720 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9721 \begin_inset Text
9722
9723 \begin_layout Plain Layout
9724
9725 \backslash
9726 acute
9727 \begin_inset ERT
9728 status collapsed
9729
9730 \begin_layout Plain Layout
9731
9732
9733 \backslash
9734 spce 
9735 \end_layout
9736
9737 \end_inset
9738
9739 A
9740 \end_layout
9741
9742 \end_inset
9743 </cell>
9744 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9745 \begin_inset Text
9746
9747 \begin_layout Plain Layout
9748 \begin_inset Formula $\raisebox {5mm}{}\acute{A}$
9749 \end_inset
9750
9751
9752 \end_layout
9753
9754 \end_inset
9755 </cell>
9756 </row>
9757 <row>
9758 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9759 \begin_inset Text
9760
9761 \begin_layout Plain Layout
9762
9763 \backslash
9764 grave
9765 \begin_inset ERT
9766 status collapsed
9767
9768 \begin_layout Plain Layout
9769
9770
9771 \backslash
9772 spce 
9773 \end_layout
9774
9775 \end_inset
9776
9777 A
9778 \end_layout
9779
9780 \end_inset
9781 </cell>
9782 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9783 \begin_inset Text
9784
9785 \begin_layout Plain Layout
9786 \begin_inset Formula $\raisebox {5mm}{}\grave{A}$
9787 \end_inset
9788
9789
9790 \end_layout
9791
9792 \end_inset
9793 </cell>
9794 </row>
9795 <row>
9796 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9797 \begin_inset Text
9798
9799 \begin_layout Plain Layout
9800
9801 \backslash
9802 breve
9803 \begin_inset ERT
9804 status collapsed
9805
9806 \begin_layout Plain Layout
9807
9808
9809 \backslash
9810 spce 
9811 \end_layout
9812
9813 \end_inset
9814
9815 A
9816 \end_layout
9817
9818 \end_inset
9819 </cell>
9820 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9821 \begin_inset Text
9822
9823 \begin_layout Plain Layout
9824 \begin_inset Formula $\raisebox {5mm}{}\breve{A}$
9825 \end_inset
9826
9827
9828 \end_layout
9829
9830 \end_inset
9831 </cell>
9832 </row>
9833 </lyxtabular>
9834
9835 \end_inset
9836
9837
9838 \begin_inset Space \hfill{}
9839 \end_inset
9840
9841
9842 \end_layout
9843
9844 \begin_layout Standard
9845 \begin_inset VSpace bigskip
9846 \end_inset
9847
9848
9849 \end_layout
9850
9851 \begin_layout Standard
9852 Para poner diéresis
9853 \begin_inset Index
9854 status collapsed
9855
9856 \begin_layout Plain Layout
9857 Diéresis
9858 \end_layout
9859
9860 \end_inset
9861
9862  en una ecuación se insertan comillas antes de la vocal.
9863  Estos dos caracteres son considerados por LaTeX como 
9864 \emph on
9865 un solo
9866 \emph default
9867  carácter si la parte de la ecuación con la diéresis se marca con idioma
9868  alemán.
9869 \begin_inset Foot
9870 status collapsed
9871
9872 \begin_layout Plain Layout
9873 O algún otro idioma que use acentos, p.
9874 \begin_inset Space \thinspace{}
9875 \end_inset
9876
9877 e.
9878  catalán.
9879  Sin embargo, en español no funciona por algún conflicto con el estilo 
9880 \series bold
9881 spanish
9882 \series default
9883  de 
9884 \series bold
9885 babel
9886 \series default
9887 .
9888  Dicho estilo suministra la orden 
9889 \series bold
9890
9891 \backslash
9892 dotlessi
9893 \series default
9894  para generar una 
9895 \begin_inset Quotes fld
9896 \end_inset
9897
9898 i
9899 \begin_inset Quotes frd
9900 \end_inset
9901
9902  sin punto en modo matemático, que se puede usar como alternativa al comando
9903  
9904 \series bold
9905
9906 \begin_inset Quotes eld
9907 \end_inset
9908
9909 i
9910 \series default
9911 , p.e., el comando 
9912 \series bold
9913
9914 \backslash
9915 ddot
9916 \series default
9917
9918 \begin_inset ERT
9919 status collapsed
9920
9921 \begin_layout Plain Layout
9922
9923
9924 \backslash
9925 spce 
9926 \end_layout
9927
9928 \end_inset
9929
9930
9931 \series bold
9932
9933 \backslash
9934 dotlessi
9935 \series default
9936  genera
9937 \series bold
9938  
9939 \series default
9940
9941 \begin_inset Formula $\ddot{\dotlessi }$
9942 \end_inset
9943
9944 .
9945  Véase la documentación del estilo, 
9946 \begin_inset CommandInset citation
9947 LatexCommand cite
9948 key "spanish"
9949
9950 \end_inset
9951
9952 .
9953  También se puede usar 
9954 \series bold
9955
9956 \backslash
9957 imath
9958 \series default
9959  en vez de 
9960 \series bold
9961
9962 \backslash
9963 dotlessi
9964 \series default
9965 .
9966  (
9967 \emph on
9968 N.
9969 \begin_inset Space \thinspace{}
9970 \end_inset
9971
9972 del t.
9973 \emph default
9974 )
9975 \end_layout
9976
9977 \end_inset
9978
9979  A diferencia de 
9980 \series bold
9981
9982 \backslash
9983 ddot
9984 \series default
9985 , con este método se generan diéresis 
9986 \begin_inset Quotes fld
9987 \end_inset
9988
9989 reales
9990 \begin_inset Quotes frd
9991 \end_inset
9992
9993 , como se demuestra en el siguiente ejemplo:
9994 \begin_inset VSpace -2mm
9995 \end_inset
9996
9997
9998 \end_layout
9999
10000 \begin_layout Standard
10001 \noindent
10002 \align center
10003 \begin_inset Tabular
10004 <lyxtabular version="3" rows="3" columns="2">
10005 <features>
10006 <column alignment="center" valignment="top" width="0">
10007 <column alignment="center" valignment="top" width="0">
10008 <row>
10009 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10010 \begin_inset Text
10011
10012 \begin_layout Plain Layout
10013 Comando
10014 \end_layout
10015
10016 \end_inset
10017 </cell>
10018 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10019 \begin_inset Text
10020
10021 \begin_layout Plain Layout
10022 Resultado
10023 \begin_inset Note Note
10024 status collapsed
10025
10026 \begin_layout Plain Layout
10027
10028 \series bold
10029 \lang english
10030
10031 \backslash
10032 raisebox
10033 \series default
10034  se usa sólo como espaciador.
10035 \end_layout
10036
10037 \end_inset
10038
10039
10040 \end_layout
10041
10042 \end_inset
10043 </cell>
10044 </row>
10045 <row>
10046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10047 \begin_inset Text
10048
10049 \begin_layout Plain Layout
10050 \begin_inset Quotes grd
10051 \end_inset
10052
10053 i
10054 \end_layout
10055
10056 \end_inset
10057 </cell>
10058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10059 \begin_inset Text
10060
10061 \begin_layout Plain Layout
10062 \begin_inset Formula $\ddot{\dotlessi }$
10063 \end_inset
10064
10065
10066 \end_layout
10067
10068 \end_inset
10069 </cell>
10070 </row>
10071 <row>
10072 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10073 \begin_inset Text
10074
10075 \begin_layout Plain Layout
10076
10077 \backslash
10078 ddot
10079 \begin_inset ERT
10080 status collapsed
10081
10082 \begin_layout Plain Layout
10083
10084
10085 \backslash
10086 spce 
10087 \end_layout
10088
10089 \end_inset
10090
10091 i
10092 \end_layout
10093
10094 \end_inset
10095 </cell>
10096 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10097 \begin_inset Text
10098
10099 \begin_layout Plain Layout
10100 \begin_inset Formula $\raisebox {5mm}{}\ddot{i}$
10101 \end_inset
10102
10103
10104 \end_layout
10105
10106 \end_inset
10107 </cell>
10108 </row>
10109 </lyxtabular>
10110
10111 \end_inset
10112
10113
10114 \end_layout
10115
10116 \begin_layout Standard
10117 Otra ventaja con 
10118 \series bold
10119
10120 \backslash
10121 ddot
10122 \series default
10123  es que la diéresis puede convertirse directamente a texto matemático, porque
10124  los comandos para acentos de arriba 
10125 \emph on
10126 no están permitidos en texto matemático
10127 \emph default
10128 .
10129  Para convertir un carácter acentuado a texto matemático, se debe convertir
10130  sólo el carácter bajo el acento.
10131  Esto también se aplica para otras conversiones, p.
10132 \begin_inset Space \thinspace{}
10133 \end_inset
10134
10135 e.
10136 \begin_inset Space ~
10137 \end_inset
10138
10139 cursiva o negrita.
10140 \end_layout
10141
10142 \begin_layout Standard
10143 En texto matemático, la diéresis y otros acentos pueden insertarse directamente.
10144 \end_layout
10145
10146 \begin_layout Subsection
10147 Acentos para operadores
10148 \begin_inset Index
10149 status collapsed
10150
10151 \begin_layout Plain Layout
10152 Acentos ! en operadores
10153 \end_layout
10154
10155 \end_inset
10156
10157
10158 \end_layout
10159
10160 \begin_layout Standard
10161 Con los comandos 
10162 \series bold
10163
10164 \backslash
10165 overset
10166 \series default
10167
10168 \begin_inset Index
10169 status collapsed
10170
10171 \begin_layout Plain Layout
10172 Comandos ! O ! 
10173 \backslash
10174 overset
10175 \end_layout
10176
10177 \end_inset
10178
10179  y 
10180 \series bold
10181
10182 \backslash
10183 underset
10184 \series default
10185
10186 \begin_inset Index
10187 status collapsed
10188
10189 \begin_layout Plain Layout
10190 Comandos ! U ! 
10191 \backslash
10192 underset
10193 \end_layout
10194
10195 \end_inset
10196
10197  se pueden colocar caracteres sobre o bajo un operador, respectivamente.
10198  Con el comando 
10199 \series bold
10200
10201 \backslash
10202 sideset
10203 \series default
10204
10205 \begin_inset Index
10206 status collapsed
10207
10208 \begin_layout Plain Layout
10209 Comandos ! S ! 
10210 \backslash
10211 sideset
10212 \end_layout
10213
10214 \end_inset
10215
10216  se pueden poner caracteres delante y detrás de un operador.
10217  El esquema del comando es:
10218 \end_layout
10219
10220 \begin_layout Standard
10221
10222 \series bold
10223
10224 \backslash
10225 sideset{carácter
10226 \series default
10227  
10228 \series bold
10229 anterior}{carácter posterior}
10230 \end_layout
10231
10232 \begin_layout Standard
10233
10234 \series bold
10235
10236 \backslash
10237 sideset
10238 \series default
10239  siempre debe estar delante del operador que debe acentuarse.
10240  Se puede acentuar con varios caracteres e incluso con otros operadores
10241  y símbolos.
10242  Para colocar con
10243 \series bold
10244  
10245 \backslash
10246 sideset
10247 \series default
10248  caracteres sólo detrás del operador, por ejemplo, no se escribe nada en
10249  el primer par de llaves, pero sin quitarlas.
10250  
10251 \end_layout
10252
10253 \begin_layout Standard
10254 Por ejemplo, el comando 
10255 \series bold
10256
10257 \backslash
10258 sideset{
10259 \begin_inset Formula $\to$
10260 \end_inset
10261
10262
10263 \backslash
10264 {
10265 \series default
10266 '
10267 \series bold
10268
10269 \begin_inset Formula $\to$
10270 \end_inset
10271
10272
10273 \backslash
10274 sum_k=1
10275 \begin_inset ERT
10276 status collapsed
10277
10278 \begin_layout Plain Layout
10279
10280
10281 \backslash
10282 spce 
10283 \end_layout
10284
10285 \end_inset
10286
10287
10288 \series default
10289 ^
10290 \series bold
10291
10292 \begin_inset ERT
10293 status collapsed
10294
10295 \begin_layout Plain Layout
10296
10297
10298 \backslash
10299 spce 
10300 \end_layout
10301
10302 \end_inset
10303
10304 n
10305 \series default
10306  genera:
10307 \begin_inset Formula \[
10308 \sideset {}{'}\sum_{k=1}^{n}\]
10309
10310 \end_inset
10311
10312
10313 \end_layout
10314
10315 \begin_layout Standard
10316 El comando 
10317 \series bold
10318
10319 \backslash
10320 overset
10321 \begin_inset ERT
10322 status collapsed
10323
10324 \begin_layout Plain Layout
10325
10326
10327 \backslash
10328 spce 
10329 \end_layout
10330
10331 \end_inset
10332
10333
10334 \backslash
10335 maltese
10336 \begin_inset ERT
10337 status collapsed
10338
10339 \begin_layout Plain Layout
10340
10341
10342 \backslash
10343 spce 
10344 \end_layout
10345
10346 \end_inset
10347
10348
10349 \series default
10350
10351 \begin_inset Formula $\uparrow$
10352 \end_inset
10353
10354
10355 \series bold
10356 a
10357 \series default
10358  genera:
10359 \begin_inset Formula \[
10360 \overset{a}{\maltese}\]
10361
10362 \end_inset
10363
10364
10365 \end_layout
10366
10367 \begin_layout Standard
10368 Como se ve en el último ejemplo, con 
10369 \series bold
10370
10371 \backslash
10372 overset
10373 \series default
10374  y 
10375 \series bold
10376
10377 \backslash
10378 underset
10379 \series default
10380  también se pueden acentuar símbolos y caracteres; con 
10381 \series bold
10382
10383 \backslash
10384 sideset
10385 \series default
10386  esto no es posible.
10387 \end_layout
10388
10389 \begin_layout Subsection
10390 Acentos para varios caracteres
10391 \begin_inset CommandInset label
10392 LatexCommand label
10393 name "sub:Acentos-para-varios"
10394
10395 \end_inset
10396
10397
10398 \begin_inset Index
10399 status collapsed
10400
10401 \begin_layout Plain Layout
10402 Acentos ! en varios caracteres
10403 \end_layout
10404
10405 \end_inset
10406
10407
10408 \end_layout
10409
10410 \begin_layout Standard
10411 \begin_inset Space \hfill{}
10412 \end_inset
10413
10414
10415 \begin_inset Tabular
10416 <lyxtabular version="3" rows="5" columns="2">
10417 <features>
10418 <column alignment="center" valignment="top" width="0pt">
10419 <column alignment="center" valignment="top" width="0pt">
10420 <row>
10421 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10422 \begin_inset Text
10423
10424 \begin_layout Plain Layout
10425 Comando
10426 \end_layout
10427
10428 \end_inset
10429 </cell>
10430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10431 \begin_inset Text
10432
10433 \begin_layout Plain Layout
10434 Resultado
10435 \begin_inset Note Note
10436 status collapsed
10437
10438 \begin_layout Plain Layout
10439
10440 \series bold
10441
10442 \backslash
10443 raisebox
10444 \series default
10445  se usa sólo como espaciador
10446 \end_layout
10447
10448 \end_inset
10449
10450
10451 \end_layout
10452
10453 \end_inset
10454 </cell>
10455 </row>
10456 <row>
10457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10458 \begin_inset Text
10459
10460 \begin_layout Plain Layout
10461
10462 \backslash
10463 overleftarrow
10464 \begin_inset ERT
10465 status collapsed
10466
10467 \begin_layout Plain Layout
10468
10469
10470 \backslash
10471 spce 
10472 \end_layout
10473
10474 \end_inset
10475
10476 A=B
10477 \end_layout
10478
10479 \end_inset
10480 </cell>
10481 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10482 \begin_inset Text
10483
10484 \begin_layout Plain Layout
10485 \begin_inset Formula $\raisebox {6mm}{}\overleftarrow{A=B}\raisebox {-2mm}{}$
10486 \end_inset
10487
10488
10489 \end_layout
10490
10491 \end_inset
10492 </cell>
10493 </row>
10494 <row>
10495 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10496 \begin_inset Text
10497
10498 \begin_layout Plain Layout
10499
10500 \backslash
10501 underleftarrow
10502 \begin_inset ERT
10503 status collapsed
10504
10505 \begin_layout Plain Layout
10506
10507
10508 \backslash
10509 spce 
10510 \end_layout
10511
10512 \end_inset
10513
10514 A=B
10515 \end_layout
10516
10517 \end_inset
10518 </cell>
10519 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10520 \begin_inset Text
10521
10522 \begin_layout Plain Layout
10523 \begin_inset Formula $\raisebox {5mm}{}\underleftarrow{A=B}\raisebox {-3mm}{}$
10524 \end_inset
10525
10526
10527 \end_layout
10528
10529 \end_inset
10530 </cell>
10531 </row>
10532 <row>
10533 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10534 \begin_inset Text
10535
10536 \begin_layout Plain Layout
10537
10538 \backslash
10539 overleftrightarrow
10540 \begin_inset ERT
10541 status collapsed
10542
10543 \begin_layout Plain Layout
10544
10545
10546 \backslash
10547 spce 
10548 \end_layout
10549
10550 \end_inset
10551
10552 A=B
10553 \end_layout
10554
10555 \end_inset
10556 </cell>
10557 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10558 \begin_inset Text
10559
10560 \begin_layout Plain Layout
10561 \begin_inset Formula $\raisebox {6mm}{}\overleftrightarrow{A=B}\raisebox {-2mm}{}$
10562 \end_inset
10563
10564
10565 \end_layout
10566
10567 \end_inset
10568 </cell>
10569 </row>
10570 <row>
10571 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10572 \begin_inset Text
10573
10574 \begin_layout Plain Layout
10575
10576 \backslash
10577 underleftrightarrow
10578 \begin_inset ERT
10579 status collapsed
10580
10581 \begin_layout Plain Layout
10582
10583
10584 \backslash
10585 spce 
10586 \end_layout
10587
10588 \end_inset
10589
10590 A=B
10591 \end_layout
10592
10593 \end_inset
10594 </cell>
10595 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10596 \begin_inset Text
10597
10598 \begin_layout Plain Layout
10599 \begin_inset Formula $\raisebox {5mm}{}\underleftrightarrow{A=B}\raisebox {-3mm}{}$
10600 \end_inset
10601
10602
10603 \end_layout
10604
10605 \end_inset
10606 </cell>
10607 </row>
10608 </lyxtabular>
10609
10610 \end_inset
10611
10612
10613 \begin_inset Space \hfill{}
10614 \end_inset
10615
10616
10617 \begin_inset Tabular
10618 <lyxtabular version="3" rows="5" columns="2">
10619 <features>
10620 <column alignment="center" valignment="top" width="0pt">
10621 <column alignment="center" valignment="top" width="0pt">
10622 <row>
10623 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10624 \begin_inset Text
10625
10626 \begin_layout Plain Layout
10627 Comando
10628 \end_layout
10629
10630 \end_inset
10631 </cell>
10632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10633 \begin_inset Text
10634
10635 \begin_layout Plain Layout
10636 Resultado
10637 \begin_inset Note Note
10638 status collapsed
10639
10640 \begin_layout Plain Layout
10641
10642 \series bold
10643
10644 \backslash
10645 raisebox
10646 \series default
10647  se usa sólo como espaciador
10648 \end_layout
10649
10650 \end_inset
10651
10652
10653 \end_layout
10654
10655 \end_inset
10656 </cell>
10657 </row>
10658 <row>
10659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10660 \begin_inset Text
10661
10662 \begin_layout Plain Layout
10663
10664 \backslash
10665 overrightarrow
10666 \begin_inset ERT
10667 status collapsed
10668
10669 \begin_layout Plain Layout
10670
10671
10672 \backslash
10673 spce 
10674 \end_layout
10675
10676 \end_inset
10677
10678 A=B
10679 \end_layout
10680
10681 \end_inset
10682 </cell>
10683 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10684 \begin_inset Text
10685
10686 \begin_layout Plain Layout
10687 \begin_inset Formula $\raisebox {6mm}{}\overrightarrow{A=B}\raisebox {-2mm}{}$
10688 \end_inset
10689
10690
10691 \end_layout
10692
10693 \end_inset
10694 </cell>
10695 </row>
10696 <row>
10697 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10698 \begin_inset Text
10699
10700 \begin_layout Plain Layout
10701
10702 \backslash
10703 underrightarrow
10704 \begin_inset ERT
10705 status collapsed
10706
10707 \begin_layout Plain Layout
10708
10709
10710 \backslash
10711 spce 
10712 \end_layout
10713
10714 \end_inset
10715
10716 A=B
10717 \end_layout
10718
10719 \end_inset
10720 </cell>
10721 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10722 \begin_inset Text
10723
10724 \begin_layout Plain Layout
10725 \begin_inset Formula $\raisebox {5mm}{}\underrightarrow{A=B}\raisebox {-3mm}{}$
10726 \end_inset
10727
10728
10729 \end_layout
10730
10731 \end_inset
10732 </cell>
10733 </row>
10734 <row>
10735 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10736 \begin_inset Text
10737
10738 \begin_layout Plain Layout
10739
10740 \backslash
10741 widetilde
10742 \begin_inset ERT
10743 status collapsed
10744
10745 \begin_layout Plain Layout
10746
10747
10748 \backslash
10749 spce 
10750 \end_layout
10751
10752 \end_inset
10753
10754 A=B
10755 \end_layout
10756
10757 \end_inset
10758 </cell>
10759 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10760 \begin_inset Text
10761
10762 \begin_layout Plain Layout
10763 \begin_inset Formula $\raisebox {6mm}{}\widetilde{A=B}\raisebox {-2mm}{}$
10764 \end_inset
10765
10766
10767 \end_layout
10768
10769 \end_inset
10770 </cell>
10771 </row>
10772 <row>
10773 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10774 \begin_inset Text
10775
10776 \begin_layout Plain Layout
10777
10778 \backslash
10779 widehat
10780 \begin_inset ERT
10781 status collapsed
10782
10783 \begin_layout Plain Layout
10784
10785
10786 \backslash
10787 spce 
10788 \end_layout
10789
10790 \end_inset
10791
10792 A=B
10793 \end_layout
10794
10795 \end_inset
10796 </cell>
10797 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10798 \begin_inset Text
10799
10800 \begin_layout Plain Layout
10801 \begin_inset Formula $\raisebox {6mm}{}\widehat{A=B}\raisebox {-2mm}{}$
10802 \end_inset
10803
10804
10805 \end_layout
10806
10807 \end_inset
10808 </cell>
10809 </row>
10810 </lyxtabular>
10811
10812 \end_inset
10813
10814
10815 \begin_inset Space \hfill{}
10816 \end_inset
10817
10818
10819 \end_layout
10820
10821 \begin_layout Standard
10822 \begin_inset VSpace medskip
10823 \end_inset
10824
10825
10826 \end_layout
10827
10828 \begin_layout Standard
10829 Con estos comandos se pueden acentuar tantos caracteres como quieras.
10830  Pero los acentos 
10831 \series bold
10832
10833 \backslash
10834 widetilde
10835 \series default
10836  y 
10837 \series bold
10838
10839 \backslash
10840 widehat
10841 \series default
10842  sólo pueden abarcar tres caracteres en la salida, como se muestra en este
10843  ejemplo:
10844 \begin_inset Formula \[
10845 \widetilde{A+B=C-D}\]
10846
10847 \end_inset
10848
10849
10850 \end_layout
10851
10852 \begin_layout Standard
10853 Con los comandos 
10854 \series bold
10855
10856 \backslash
10857 overset
10858 \series default
10859
10860 \begin_inset Index
10861 status collapsed
10862
10863 \begin_layout Plain Layout
10864 Comandos ! O ! 
10865 \backslash
10866 overset
10867 \end_layout
10868
10869 \end_inset
10870
10871  y 
10872 \series bold
10873
10874 \backslash
10875 underset
10876 \series default
10877
10878 \begin_inset Index
10879 status collapsed
10880
10881 \begin_layout Plain Layout
10882 Comandos ! U ! 
10883 \backslash
10884 underset
10885 \end_layout
10886
10887 \end_inset
10888
10889 , descritos en la subsección anterior, también se pueden acentuar varios
10890  caracteres.
10891  El comando 
10892 \series bold
10893
10894 \backslash
10895 underset
10896 \begin_inset ERT
10897 status collapsed
10898
10899 \begin_layout Plain Layout
10900
10901
10902 \backslash
10903 spce 
10904 \end_layout
10905
10906 \end_inset
10907
10908 A=B
10909 \begin_inset Formula $\downarrow$
10910 \end_inset
10911
10912 ***
10913 \series default
10914  da:
10915 \begin_inset Formula \[
10916 \underset{***}{A=B}\]
10917
10918 \end_inset
10919
10920
10921 \end_layout
10922
10923 \begin_layout Section
10924 Espacios
10925 \begin_inset CommandInset label
10926 LatexCommand label
10927 name "sec:Espacio"
10928
10929 \end_inset
10930
10931
10932 \begin_inset Index
10933 status collapsed
10934
10935 \begin_layout Plain Layout
10936 Espacio ! horizontal
10937 \end_layout
10938
10939 \end_inset
10940
10941
10942 \end_layout
10943
10944 \begin_layout Subsection
10945 Espacio predefinido
10946 \begin_inset CommandInset label
10947 LatexCommand label
10948 name "sub:Espacio-predefinido"
10949
10950 \end_inset
10951
10952
10953 \begin_inset Index
10954 status collapsed
10955
10956 \begin_layout Plain Layout
10957 Espacio ! horizontal ! predefinido
10958 \end_layout
10959
10960 \end_inset
10961
10962
10963 \end_layout
10964
10965 \begin_layout Standard
10966 A veces es necesario insertar espacio horizontal en una ecuación.
10967  Esto se hace insertando un espacio protegido (atajo 
10968 \family sans
10969 Ctrl-Espacio
10970 \family default
10971 ).
10972  Aparece un 
10973 \begin_inset Quotes fld
10974 \end_inset
10975
10976
10977 \begin_inset ERT
10978 status open
10979
10980 \begin_layout Plain Layout
10981
10982
10983 \backslash
10984 spce 
10985 \end_layout
10986
10987 \end_inset
10988
10989
10990 \begin_inset Quotes frd
10991 \end_inset
10992
10993  azul, y pulsando 
10994 \family sans
10995 Espacio
10996 \family default
10997  sucesivas veces se pueden seleccionar hasta ocho diferentes tamaños de
10998  espacio.
10999  También se pueden insertar espacios mediante el botón 
11000 \begin_inset Graphics
11001         filename ../../images/math/space.png
11002         embed ""
11003         scale 85
11004
11005 \end_inset
11006
11007  de la barra de ecuaciones o con comandos especiales.
11008  Independientemente del comando insertado, se puede seleccionar de nuevo
11009  el tamaño pulsando acto seguido 
11010 \family sans
11011 Espacio.
11012  
11013 \end_layout
11014
11015 \begin_layout Standard
11016 \noindent
11017 \align center
11018 \begin_inset VSpace -5mm
11019 \end_inset
11020
11021
11022 \begin_inset Tabular
11023 <lyxtabular version="3" rows="3" columns="7">
11024 <features>
11025 <column alignment="center" valignment="middle" width="6.8cm">
11026 <column alignment="center" valignment="top" width="0">
11027 <column alignment="center" valignment="top" width="0">
11028 <column alignment="center" valignment="top" width="0">
11029 <column alignment="center" valignment="top" width="0">
11030 <column alignment="center" valignment="top" width="0">
11031 <column alignment="center" valignment="top" width="0">
11032 <row>
11033 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11034 \begin_inset Text
11035
11036 \begin_layout Plain Layout
11037 Comando
11038 \end_layout
11039
11040 \end_inset
11041 </cell>
11042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11043 \begin_inset Text
11044
11045 \begin_layout Plain Layout
11046
11047 \backslash
11048 ,
11049 \end_layout
11050
11051 \end_inset
11052 </cell>
11053 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11054 \begin_inset Text
11055
11056 \begin_layout Plain Layout
11057
11058 \backslash
11059 :
11060 \end_layout
11061
11062 \end_inset
11063 </cell>
11064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11065 \begin_inset Text
11066
11067 \begin_layout Plain Layout
11068
11069 \backslash
11070 ;
11071 \end_layout
11072
11073 \end_inset
11074 </cell>
11075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11076 \begin_inset Text
11077
11078 \begin_layout Plain Layout
11079
11080 \backslash
11081 quad
11082 \end_layout
11083
11084 \end_inset
11085 </cell>
11086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11087 \begin_inset Text
11088
11089 \begin_layout Plain Layout
11090
11091 \backslash
11092 qquad
11093 \end_layout
11094
11095 \end_inset
11096 </cell>
11097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11098 \begin_inset Text
11099
11100 \begin_layout Plain Layout
11101
11102 \backslash
11103 !
11104 \end_layout
11105
11106 \end_inset
11107 </cell>
11108 </row>
11109 <row>
11110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11111 \begin_inset Text
11112
11113 \begin_layout Plain Layout
11114 Número de pulsaciones de 
11115 \family sans
11116 Espacio
11117 \family default
11118  tras insertar el espacio protegido
11119 \end_layout
11120
11121 \end_inset
11122 </cell>
11123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11124 \begin_inset Text
11125
11126 \begin_layout Plain Layout
11127 0
11128 \end_layout
11129
11130 \end_inset
11131 </cell>
11132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11133 \begin_inset Text
11134
11135 \begin_layout Plain Layout
11136 1
11137 \end_layout
11138
11139 \end_inset
11140 </cell>
11141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11142 \begin_inset Text
11143
11144 \begin_layout Plain Layout
11145 2
11146 \end_layout
11147
11148 \end_inset
11149 </cell>
11150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11151 \begin_inset Text
11152
11153 \begin_layout Plain Layout
11154 3
11155 \end_layout
11156
11157 \end_inset
11158 </cell>
11159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11160 \begin_inset Text
11161
11162 \begin_layout Plain Layout
11163 4
11164 \end_layout
11165
11166 \end_inset
11167 </cell>
11168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11169 \begin_inset Text
11170
11171 \begin_layout Plain Layout
11172 5
11173 \end_layout
11174
11175 \end_inset
11176 </cell>
11177 </row>
11178 <row>
11179 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11180 \begin_inset Text
11181
11182 \begin_layout Plain Layout
11183 Resultado
11184 \end_layout
11185
11186 \end_inset
11187 </cell>
11188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11189 \begin_inset Text
11190
11191 \begin_layout Plain Layout
11192 \begin_inset Formula $A\, B$
11193 \end_inset
11194
11195
11196 \end_layout
11197
11198 \end_inset
11199 </cell>
11200 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11201 \begin_inset Text
11202
11203 \begin_layout Plain Layout
11204 \begin_inset Formula $A\: B$
11205 \end_inset
11206
11207
11208 \end_layout
11209
11210 \end_inset
11211 </cell>
11212 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11213 \begin_inset Text
11214
11215 \begin_layout Plain Layout
11216 \begin_inset Formula $A\; B$
11217 \end_inset
11218
11219
11220 \end_layout
11221
11222 \end_inset
11223 </cell>
11224 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11225 \begin_inset Text
11226
11227 \begin_layout Plain Layout
11228 \begin_inset Formula $A\quad B$
11229 \end_inset
11230
11231
11232 \end_layout
11233
11234 \end_inset
11235 </cell>
11236 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11237 \begin_inset Text
11238
11239 \begin_layout Plain Layout
11240 \begin_inset Formula $A\qquad B$
11241 \end_inset
11242
11243
11244 \end_layout
11245
11246 \end_inset
11247 </cell>
11248 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11249 \begin_inset Text
11250
11251 \begin_layout Plain Layout
11252 \begin_inset Formula $A\! B$
11253 \end_inset
11254
11255
11256 \end_layout
11257
11258 \end_inset
11259 </cell>
11260 </row>
11261 </lyxtabular>
11262
11263 \end_inset
11264
11265
11266 \end_layout
11267
11268 \begin_layout Standard
11269 El último tamaño parece no generar espacio.
11270  A diferencia de los otros se muestra en rojo en LyX, porque es un espacio
11271  negativo.
11272  Hay otros dos espacios negativos:
11273 \end_layout
11274
11275 \begin_layout Standard
11276 \align center
11277 \begin_inset Tabular
11278 <lyxtabular version="3" rows="3" columns="3">
11279 <features>
11280 <column alignment="center" valignment="middle" width="6.8cm">
11281 <column alignment="center" valignment="top" width="0pt">
11282 <column alignment="center" valignment="top" width="0pt">
11283 <row>
11284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11285 \begin_inset Text
11286
11287 \begin_layout Plain Layout
11288 Comando
11289 \end_layout
11290
11291 \end_inset
11292 </cell>
11293 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11294 \begin_inset Text
11295
11296 \begin_layout Plain Layout
11297
11298 \backslash
11299 negmedspace
11300 \end_layout
11301
11302 \end_inset
11303 </cell>
11304 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11305 \begin_inset Text
11306
11307 \begin_layout Plain Layout
11308
11309 \backslash
11310 negthickspace
11311 \end_layout
11312
11313 \end_inset
11314 </cell>
11315 </row>
11316 <row>
11317 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11318 \begin_inset Text
11319
11320 \begin_layout Plain Layout
11321 Número de pulsaciones de 
11322 \family sans
11323 Espacio
11324 \family default
11325  tras insertar el espacio protegido
11326 \end_layout
11327
11328 \end_inset
11329 </cell>
11330 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11331 \begin_inset Text
11332
11333 \begin_layout Plain Layout
11334 6
11335 \end_layout
11336
11337 \end_inset
11338 </cell>
11339 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11340 \begin_inset Text
11341
11342 \begin_layout Plain Layout
11343 7
11344 \end_layout
11345
11346 \end_inset
11347 </cell>
11348 </row>
11349 <row>
11350 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11351 \begin_inset Text
11352
11353 \begin_layout Plain Layout
11354 Resultado
11355 \end_layout
11356
11357 \end_inset
11358 </cell>
11359 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11360 \begin_inset Text
11361
11362 \begin_layout Plain Layout
11363 \begin_inset Formula $A\negmedspace B$
11364 \end_inset
11365
11366
11367 \end_layout
11368
11369 \end_inset
11370 </cell>
11371 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11372 \begin_inset Text
11373
11374 \begin_layout Plain Layout
11375 \begin_inset Formula $A\negthickspace B$
11376 \end_inset
11377
11378
11379 \end_layout
11380
11381 \end_inset
11382 </cell>
11383 </row>
11384 </lyxtabular>
11385
11386 \end_inset
11387
11388
11389 \end_layout
11390
11391 \begin_layout Standard
11392 Los espacios negativos pueden dar lugar a caracteres solapados con otros.
11393  Así, se pueden usar para forzar ligaduras, lo que es apropiado, p.
11394 \begin_inset Space \thinspace{}
11395 \end_inset
11396
11397 e., para operadores de suma: 
11398 \end_layout
11399
11400 \begin_layout Standard
11401 \noindent
11402 \align center
11403 \begin_inset Tabular
11404 <lyxtabular version="3" rows="3" columns="2">
11405 <features>
11406 <column alignment="center" valignment="top" width="0">
11407 <column alignment="center" valignment="top" width="0">
11408 <row>
11409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11410 \begin_inset Text
11411
11412 \begin_layout Plain Layout
11413 Comando
11414 \end_layout
11415
11416 \end_inset
11417 </cell>
11418 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11419 \begin_inset Text
11420
11421 \begin_layout Plain Layout
11422 Resultado
11423 \begin_inset Note Note
11424 status collapsed
11425
11426 \begin_layout Plain Layout
11427
11428 \series bold
11429
11430 \backslash
11431 raisebox
11432 \series default
11433  se usa sólo como espaciador
11434 \end_layout
11435
11436 \end_inset
11437
11438
11439 \end_layout
11440
11441 \end_inset
11442 </cell>
11443 </row>
11444 <row>
11445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11446 \begin_inset Text
11447
11448 \begin_layout Plain Layout
11449
11450 \backslash
11451 sum
11452 \backslash
11453 sum
11454 \begin_inset ERT
11455 status collapsed
11456
11457 \begin_layout Plain Layout
11458
11459
11460 \backslash
11461 spce 
11462 \end_layout
11463
11464 \end_inset
11465
11466 f_kl
11467 \end_layout
11468
11469 \end_inset
11470 </cell>
11471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11472 \begin_inset Text
11473
11474 \begin_layout Plain Layout
11475 \begin_inset Formula $\raisebox {4.5mm}{}\sum\sum f_{kl}\raisebox {-2.5mm}{}$
11476 \end_inset
11477
11478
11479 \end_layout
11480
11481 \end_inset
11482 </cell>
11483 </row>
11484 <row>
11485 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11486 \begin_inset Text
11487
11488 \begin_layout Plain Layout
11489
11490 \backslash
11491 sum
11492 \backslash
11493 negmedspace
11494 \backslash
11495 sum
11496 \begin_inset ERT
11497 status collapsed
11498
11499 \begin_layout Plain Layout
11500
11501
11502 \backslash
11503 spce 
11504 \end_layout
11505
11506 \end_inset
11507
11508 f_kl
11509 \end_layout
11510
11511 \end_inset
11512 </cell>
11513 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11514 \begin_inset Text
11515
11516 \begin_layout Plain Layout
11517 \begin_inset Formula $\raisebox {4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox {-2.5mm}{}$
11518 \end_inset
11519
11520
11521 \end_layout
11522
11523 \end_inset
11524 </cell>
11525 </row>
11526 </lyxtabular>
11527
11528 \end_inset
11529
11530
11531 \end_layout
11532
11533 \begin_layout Standard
11534 Relaciones como por ejemplo el signo igual siempre están rodeadas por espacios.
11535  Para suprimirlos, el signo igual se coloca entre llaves TeX.
11536  El siguiente ejemplo lo ilustra:
11537 \end_layout
11538
11539 \begin_layout Standard
11540 \noindent
11541 \align center
11542 \begin_inset Tabular
11543 <lyxtabular version="3" rows="2" columns="2">
11544 <features>
11545 <column alignment="center" valignment="top" width="0">
11546 <column alignment="center" valignment="top" width="0">
11547 <row>
11548 <cell alignment="center" valignment="top" usebox="none">
11549 \begin_inset Text
11550
11551 \begin_layout Plain Layout
11552 ecuación normal
11553 \end_layout
11554
11555 \end_inset
11556 </cell>
11557 <cell alignment="center" valignment="top" usebox="none">
11558 \begin_inset Text
11559
11560 \begin_layout Plain Layout
11561 \begin_inset Formula $A=B$
11562 \end_inset
11563
11564
11565 \end_layout
11566
11567 \end_inset
11568 </cell>
11569 </row>
11570 <row>
11571 <cell alignment="center" valignment="top" usebox="none">
11572 \begin_inset Text
11573
11574 \begin_layout Plain Layout
11575 \begin_inset Note Note
11576 status collapsed
11577
11578 \begin_layout Plain Layout
11579
11580 \series bold
11581
11582 \backslash
11583 raisebox
11584 \series default
11585  se usa sólo como espaciador
11586 \end_layout
11587
11588 \end_inset
11589
11590
11591 \begin_inset Formula $\raisebox {5mm}{}$
11592 \end_inset
11593
11594 ecuación sin espacio
11595 \end_layout
11596
11597 \end_inset
11598 </cell>
11599 <cell alignment="center" valignment="top" usebox="none">
11600 \begin_inset Text
11601
11602 \begin_layout Plain Layout
11603 \begin_inset Formula $A{=}B$
11604 \end_inset
11605
11606
11607 \end_layout
11608
11609 \end_inset
11610 </cell>
11611 </row>
11612 </lyxtabular>
11613
11614 \end_inset
11615
11616
11617 \end_layout
11618
11619 \begin_layout Standard
11620 El comando para la segunda ecuación es: 
11621 \series bold
11622 A
11623 \backslash
11624 {=
11625 \begin_inset Formula $\rightarrow$
11626 \end_inset
11627
11628 B
11629 \series default
11630  
11631 \begin_inset VSpace bigskip
11632 \end_inset
11633
11634
11635 \end_layout
11636
11637 \begin_layout Standard
11638 Para las unidades físicas hacen falta espacios, porque entre el valor y
11639  su unidad se pone un espacio más pequeño que el normal.
11640  Para unidades en el texto se inserta con el menú 
11641 \family sans
11642 Insertar\SpecialChar \menuseparator
11643 Formato\SpecialChar \menuseparator
11644 Espacio
11645 \begin_inset Space ~
11646 \end_inset
11647
11648 delgado
11649 \family default
11650  (atajo 
11651 \family sans
11652 Ctrl-Mayúscula-Espacio
11653 \family default
11654 ).
11655 \end_layout
11656
11657 \begin_layout Standard
11658 Un ejemplo para visualizar la diferencia:
11659 \end_layout
11660
11661 \begin_layout Standard
11662 \begin_inset Tabular
11663 <lyxtabular version="3" rows="2" columns="2">
11664 <features>
11665 <column alignment="center" valignment="top" width="0">
11666 <column alignment="left" valignment="top" width="0">
11667 <row>
11668 <cell alignment="center" valignment="top" usebox="none">
11669 \begin_inset Text
11670
11671 \begin_layout Plain Layout
11672 24 kW
11673 \begin_inset Formula $\cdot$
11674 \end_inset
11675
11676 h
11677 \end_layout
11678
11679 \end_inset
11680 </cell>
11681 <cell alignment="center" valignment="top" usebox="none">
11682 \begin_inset Text
11683
11684 \begin_layout Plain Layout
11685 espacio entre valor y unidad 
11686 \end_layout
11687
11688 \end_inset
11689 </cell>
11690 </row>
11691 <row>
11692 <cell alignment="center" valignment="top" usebox="none">
11693 \begin_inset Text
11694
11695 \begin_layout Plain Layout
11696 24
11697 \begin_inset Space \thinspace{}
11698 \end_inset
11699
11700 kW
11701 \begin_inset Formula $\cdot$
11702 \end_inset
11703
11704 h
11705 \end_layout
11706
11707 \end_inset
11708 </cell>
11709 <cell alignment="center" valignment="top" usebox="none">
11710 \begin_inset Text
11711
11712 \begin_layout Plain Layout
11713 espacio delgado entre valor y unidad
11714 \end_layout
11715
11716 \end_inset
11717 </cell>
11718 </row>
11719 </lyxtabular>
11720
11721 \end_inset
11722
11723
11724 \end_layout
11725
11726 \begin_layout Subsection
11727 Espacio variable
11728 \begin_inset ERT
11729 status collapsed
11730
11731 \begin_layout Plain Layout
11732
11733
11734 \backslash
11735 texorpdfstring{
11736 \end_layout
11737
11738 \end_inset
11739
11740
11741 \begin_inset Foot
11742 status collapsed
11743
11744 \begin_layout Plain Layout
11745 Para espacio vertical en ecuaciones véase 
11746 \begin_inset CommandInset ref
11747 LatexCommand ref
11748 reference "sub:Separación-de-líneas"
11749
11750 \end_inset
11751
11752
11753 \end_layout
11754
11755 \end_inset
11756
11757
11758 \begin_inset ERT
11759 status collapsed
11760
11761 \begin_layout Plain Layout
11762
11763 }{}
11764 \end_layout
11765
11766 \end_inset
11767
11768
11769 \begin_inset Note Note
11770 status collapsed
11771
11772 \begin_layout Plain Layout
11773
11774 \backslash
11775 texorpdfstring se usa para evitar que la nota al pie aparezca en los marcadores
11776  PDF.
11777 \end_layout
11778
11779 \begin_layout Plain Layout
11780 Más sobre 
11781 \backslash
11782 texorpdfstring en la sección 
11783 \begin_inset CommandInset ref
11784 LatexCommand ref
11785 reference "sub:Ecuaciones-en-títulos"
11786
11787 \end_inset
11788
11789 .
11790 \end_layout
11791
11792 \end_inset
11793
11794
11795 \begin_inset CommandInset label
11796 LatexCommand label
11797 name "sub:Espacio-variable"
11798
11799 \end_inset
11800
11801
11802 \begin_inset Index
11803 status collapsed
11804
11805 \begin_layout Plain Layout
11806 Espacio ! horizontal ! variable
11807 \end_layout
11808
11809 \end_inset
11810
11811
11812 \end_layout
11813
11814 \begin_layout Standard
11815 En LyX se puede insertar espacio con una longitud definida con el comando
11816 \begin_inset Newline newline
11817 \end_inset
11818
11819
11820 \series bold
11821
11822 \backslash
11823 hspace{longitud}
11824 \series default
11825
11826 \begin_inset Index
11827 status collapsed
11828
11829 \begin_layout Plain Layout
11830 Comandos ! H ! 
11831 \backslash
11832 hspace
11833 \end_layout
11834
11835 \end_inset
11836
11837 .
11838  Para la longitud están permitidas todas las unidades de la 
11839 \begin_inset CommandInset ref
11840 LatexCommand ref
11841 reference "tab:Unidades-empleadas"
11842
11843 \end_inset
11844
11845 , excepto la unidad 
11846 \begin_inset Quotes fld
11847 \end_inset
11848
11849 mu
11850 \begin_inset Quotes frd
11851 \end_inset
11852
11853 .
11854  La longitud también puede ser negativa.
11855  Para insertar en una ecuación tanto espacio como esté disponible se usa
11856  el comando 
11857 \series bold
11858
11859 \backslash
11860 hfill
11861 \series default
11862
11863 \begin_inset Index
11864 status collapsed
11865
11866 \begin_layout Plain Layout
11867 Comandos ! H ! 
11868 \backslash
11869 hfill
11870 \end_layout
11871
11872 \end_inset
11873
11874 .
11875 \begin_inset VSpace -1mm
11876 \end_inset
11877
11878
11879 \end_layout
11880
11881 \begin_layout Standard
11882 \noindent
11883 \align center
11884 \begin_inset Tabular
11885 <lyxtabular version="3" rows="4" columns="2">
11886 <features>
11887 <column alignment="center" valignment="top" width="0">
11888 <column alignment="center" valignment="top" width="0">
11889 <row>
11890 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11891 \begin_inset Text
11892
11893 \begin_layout Plain Layout
11894 Comando
11895 \end_layout
11896
11897 \end_inset
11898 </cell>
11899 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11900 \begin_inset Text
11901
11902 \begin_layout Plain Layout
11903 Resultado
11904 \end_layout
11905
11906 \end_inset
11907 </cell>
11908 </row>
11909 <row>
11910 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11911 \begin_inset Text
11912
11913 \begin_layout Plain Layout
11914 A=B
11915 \backslash
11916 hspace{3cm
11917 \begin_inset Formula $\to$
11918 \end_inset
11919
11920 A
11921 \backslash
11922 not=C
11923 \end_layout
11924
11925 \end_inset
11926 </cell>
11927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11928 \begin_inset Text
11929
11930 \begin_layout Plain Layout
11931 \begin_inset Formula $A=B\hspace {3cm}A\not=C$
11932 \end_inset
11933
11934
11935 \end_layout
11936
11937 \end_inset
11938 </cell>
11939 </row>
11940 <row>
11941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11942 \begin_inset Text
11943
11944 \begin_layout Plain Layout
11945 A
11946 \backslash
11947 hspace{-1mm
11948 \begin_inset Formula $\to$
11949 \end_inset
11950
11951 A
11952 \backslash
11953 not=A
11954 \end_layout
11955
11956 \end_inset
11957 </cell>
11958 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11959 \begin_inset Text
11960
11961 \begin_layout Plain Layout
11962 \begin_inset Formula $A\hspace {-1mm}A\not=A$
11963 \end_inset
11964
11965
11966 \end_layout
11967
11968 \end_inset
11969 </cell>
11970 </row>
11971 <row>
11972 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11973 \begin_inset Text
11974
11975 \begin_layout Plain Layout
11976 A=A
11977 \backslash
11978 hfill
11979 \begin_inset ERT
11980 status collapsed
11981
11982 \begin_layout Plain Layout
11983
11984
11985 \backslash
11986 spce 
11987 \end_layout
11988
11989 \end_inset
11990
11991 B=B
11992 \end_layout
11993
11994 \end_inset
11995 </cell>
11996 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11997 \begin_inset Text
11998
11999 \begin_layout Plain Layout
12000 \begin_inset Formula $A=A\hfill  B=B$
12001 \end_inset
12002
12003
12004 \end_layout
12005
12006 \end_inset
12007 </cell>
12008 </row>
12009 </lyxtabular>
12010
12011 \end_inset
12012
12013
12014 \end_layout
12015
12016 \begin_layout Standard
12017 En el último ejemplo el espacio disponible viene dado por la entrada más
12018  larga de columna en la tabla.
12019  En una ecuación en línea el espacio depende de la longitud de la línea
12020  en la que se inserta 
12021 \series bold
12022
12023 \backslash
12024 hfill
12025 \series default
12026 .
12027  Así, cuando la línea ocupa toda la anchura no se creará espacio.
12028  
12029 \series bold
12030
12031 \backslash
12032 hfill
12033 \series default
12034  sólo tiene efecto en ecuaciones presentadas cuando se usa el estilo 
12035 \series bold
12036 Sangrado
12037 \series default
12038 .
12039  (Los estilos de ecuaciones se explican en
12040 \begin_inset Space ~
12041 \end_inset
12042
12043
12044 \begin_inset CommandInset ref
12045 LatexCommand ref
12046 reference "sec:Estilos-de-ecuación"
12047
12048 \end_inset
12049
12050 ).
12051 \end_layout
12052
12053 \begin_layout Standard
12054
12055 \lang english
12056 For text, variable space can be inserted via the menu 
12057 \family sans
12058 Insert\SpecialChar \menuseparator
12059 Formatting\SpecialChar \menuseparator
12060 Horizontal
12061 \begin_inset Space ~
12062 \end_inset
12063
12064 Space
12065 \family default
12066 , what is not possible in formulas:
12067 \end_layout
12068
12069 \begin_layout Standard
12070 En esta línea hay un espacio
12071 \begin_inset Space \hspace{}
12072 \length 2cm
12073 \end_inset
12074
12075 de 2
12076 \begin_inset Space \thinspace{}
12077 \end_inset
12078
12079 cm.
12080 \end_layout
12081
12082 \begin_layout Standard
12083 En esta línea hay un
12084 \begin_inset Space \hfill{}
12085 \end_inset
12086
12087 espacio máximo.
12088 \end_layout
12089
12090 \begin_layout Subsection
12091 Espacio adicional en ecuaciones en línea
12092 \begin_inset Index
12093 status collapsed
12094
12095 \begin_layout Plain Layout
12096 Espacio ! adicional en línea
12097 \end_layout
12098
12099 \end_inset
12100
12101
12102 \end_layout
12103
12104 \begin_layout Standard
12105 El espacio que rodea a una ecuación en línea se puede ajustar con la longitud
12106  
12107 \series bold
12108
12109 \backslash
12110 mathsurround
12111 \begin_inset Index
12112 status collapsed
12113
12114 \begin_layout Plain Layout
12115 Comandos ! M ! 
12116 \backslash
12117 mathsurround
12118 \end_layout
12119
12120 \end_inset
12121
12122
12123 \series default
12124 .
12125  El valor de una longitud se establece con el comando 
12126 \series bold
12127
12128 \backslash
12129 setlength
12130 \series default
12131
12132 \begin_inset Index
12133 status collapsed
12134
12135 \begin_layout Plain Layout
12136 Comandos ! S ! 
12137 \backslash
12138 setlength
12139 \end_layout
12140
12141 \end_inset
12142
12143  según el siguiente esquema:
12144 \end_layout
12145
12146 \begin_layout Standard
12147
12148 \series bold
12149
12150 \backslash
12151 setlength{nombre de la longitud}{valor}
12152 \end_layout
12153
12154 \begin_layout Standard
12155 Para poner a 
12156 \series bold
12157
12158 \backslash
12159 mathsurround
12160 \series default
12161  un valor de 5
12162 \begin_inset Space \thinspace{}
12163 \end_inset
12164
12165 mm, se inserta el comando
12166 \end_layout
12167
12168 \begin_layout Standard
12169
12170 \series bold
12171
12172 \backslash
12173 setlength{
12174 \backslash
12175 mathsurround}{5mm}
12176 \end_layout
12177
12178 \begin_layout Standard
12179 en modo TeX.
12180  Se establecerá un espacio de 5
12181 \begin_inset Space \thinspace{}
12182 \end_inset
12183
12184 mm alrededor de todas las ecuaciones en línea:
12185 \begin_inset ERT
12186 status collapsed
12187
12188 \begin_layout Plain Layout
12189
12190
12191 \backslash
12192 setlength{
12193 \backslash
12194 mathsurround}{5mm}
12195 \end_layout
12196
12197 \end_inset
12198
12199
12200 \end_layout
12201
12202 \begin_layout Standard
12203 En esta línea hay una ecuación 
12204 \begin_inset Formula $A=B$
12205 \end_inset
12206
12207  rodeada por espacios de 5
12208 \begin_inset Space \thinspace{}
12209 \end_inset
12210
12211 mm.
12212 \begin_inset ERT
12213 status collapsed
12214
12215 \begin_layout Plain Layout
12216
12217
12218 \backslash
12219 setlength{
12220 \backslash
12221 mathsurround}{0mm}
12222 \end_layout
12223
12224 \end_inset
12225
12226
12227 \end_layout
12228
12229 \begin_layout Standard
12230 Para volver al espacio predeterminado, 
12231 \series bold
12232
12233 \backslash
12234 mathsurround
12235 \series default
12236  se restablece al valor 0
12237 \begin_inset Space \thinspace{}
12238 \end_inset
12239
12240 pt.
12241 \end_layout
12242
12243 \begin_layout Section
12244 Cuadros y marcos
12245 \begin_inset Index
12246 status collapsed
12247
12248 \begin_layout Plain Layout
12249 Marcos
12250 \end_layout
12251
12252 \end_inset
12253
12254
12255 \begin_inset Index
12256 status collapsed
12257
12258 \begin_layout Plain Layout
12259 Marcos | see 
12260 \begin_inset ERT
12261 status collapsed
12262
12263 \begin_layout Plain Layout
12264
12265 {
12266 \end_layout
12267
12268 \end_inset
12269
12270 Cuadros
12271 \begin_inset ERT
12272 status collapsed
12273
12274 \begin_layout Plain Layout
12275
12276 }
12277 \end_layout
12278
12279 \end_inset
12280
12281
12282 \end_layout
12283
12284 \end_inset
12285
12286
12287 \end_layout
12288
12289 \begin_layout Standard
12290 Los cuadros para texto se describen en el capítulo 
12291 \emph on
12292 Cuadros
12293 \emph default
12294  del manual 
12295 \emph on
12296 Objetos incrustados
12297 \emph default
12298 .
12299 \end_layout
12300
12301 \begin_layout Subsection
12302 Cuadros con marco
12303 \begin_inset CommandInset label
12304 LatexCommand label
12305 name "sub:Cuadros-con-marco"
12306
12307 \end_inset
12308
12309
12310 \begin_inset Index
12311 status collapsed
12312
12313 \begin_layout Plain Layout
12314 Cuadros ! con marco
12315 \end_layout
12316
12317 \end_inset
12318
12319
12320 \end_layout
12321
12322 \begin_layout Standard
12323 Es posible enmarcar ecuaciones o partes de ellas con los comandos 
12324 \series bold
12325
12326 \backslash
12327 fbox
12328 \series default
12329
12330 \begin_inset Index
12331 status collapsed
12332
12333 \begin_layout Plain Layout
12334 Comandos ! F ! 
12335 \backslash
12336 fbox
12337 \end_layout
12338
12339 \end_inset
12340
12341  y 
12342 \series bold
12343
12344 \backslash
12345 boxed
12346 \series default
12347
12348 \begin_inset Index
12349 status collapsed
12350
12351 \begin_layout Plain Layout
12352 Comandos ! B ! 
12353 \backslash
12354 boxed
12355 \end_layout
12356
12357 \end_inset
12358
12359 .
12360 \end_layout
12361
12362 \begin_layout Standard
12363 Cuando uno de estos comandos se inserta en una ecuación, aparece un recuadro
12364  azul en un marco donde se introduce parte de una ecuación.
12365  Para 
12366 \series bold
12367
12368 \backslash
12369 fbox
12370 \series default
12371  hay que generar una ecuación adicional con 
12372 \family sans
12373 Ctrl-m
12374 \family default
12375  dentro del recuadro,
12376 \begin_inset Foot
12377 status collapsed
12378
12379 \begin_layout Plain Layout
12380 Debido a un fallo de LyX, 
12381 \begin_inset CommandInset href
12382 LatexCommand href
12383 name "LyX-bug #1435"
12384 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
12385
12386 \end_inset
12387
12388 , no es posible crear una nueva ecuación con 
12389 \family sans
12390 Ctrl-m
12391 \family default
12392 .
12393 \end_layout
12394
12395 \end_inset
12396
12397  porque si no el contenido del mismo sería considerado texto matemático.
12398  Si se usa 
12399 \series bold
12400
12401 \backslash
12402 boxed
12403 \series default
12404  la nueva ecuación se genera automáticamente dentro del marco.
12405 \end_layout
12406
12407 \begin_layout Standard
12408 El comando 
12409 \series bold
12410
12411 \backslash
12412 fbox
12413 \series default
12414  no es adecuado para enmarcar ecuaciones en modo presentación, porque la
12415  ecuación tendría siempre el tamaño del texto.
12416  Por otra parte, 
12417 \series bold
12418
12419 \backslash
12420 fboxed
12421 \series default
12422  no es adecuada para enmarcar ecuaciones en línea porque la ecuación tendría
12423  siempre el tamaño de una ecuación en modo presentación.
12424 \end_layout
12425
12426 \begin_layout Standard
12427 El comando 
12428 \series bold
12429
12430 \backslash
12431 framebox
12432 \series default
12433
12434 \begin_inset Index
12435 status collapsed
12436
12437 \begin_layout Plain Layout
12438 Comandos ! F ! 
12439 \backslash
12440 framebox
12441 \end_layout
12442
12443 \end_inset
12444
12445  es una extensión de 
12446 \series bold
12447
12448 \backslash
12449 fbox
12450 \series default
12451 , que permite especificar además la anchura del marco yla alineación.
12452  
12453 \series bold
12454
12455 \backslash
12456 framebox
12457 \series default
12458  se usa con el siguiente esquema: 
12459 \end_layout
12460
12461 \begin_layout Standard
12462
12463 \series bold
12464
12465 \backslash
12466 framebox[anchura del marco][posición]{contenido del cuadro}
12467 \end_layout
12468
12469 \begin_layout Standard
12470 La posición puede ser 
12471 \emph on
12472 l
12473 \emph default
12474  o 
12475 \emph on
12476 r
12477 \emph default
12478
12479 \emph on
12480 l
12481 \emph default
12482  alinea la ecuación a la izquierda del cuadro, 
12483 \emph on
12484 r
12485 \emph default
12486  la alinea a la derecha.
12487  Si no se da posición la ecuación será centrada.
12488 \begin_inset Newline newline
12489 \end_inset
12490
12491 Si no se pone anchura tampoco puede darse posición.
12492  En este caso la anchura del marco se ajusta al contenido del cuadro, como
12493  con 
12494 \series bold
12495
12496 \backslash
12497 fbox
12498 \series default
12499 .
12500  
12501 \end_layout
12502
12503 \begin_layout Standard
12504 Cuando se inserta el comando 
12505 \series bold
12506
12507 \backslash
12508 framebox
12509 \series default
12510  aparece un recuadro con tres marcos azules.
12511  Los dos primeros marcos están encerrados entre corchetes e indican los
12512  dos argumentos opcionales.
12513  El tercer marco es para partes de la ecuación, como para 
12514 \series bold
12515
12516 \backslash
12517 fbox
12518 \series default
12519 .
12520 \end_layout
12521
12522 \begin_layout Standard
12523 \noindent
12524 \align center
12525 \begin_inset Note Note
12526 status open
12527
12528 \begin_layout Plain Layout
12529 La tabla se ha puesto en una minipágina para que aparezca la nota al pie.
12530  De lo contrario el texto de la nota no se mostraría.
12531 \end_layout
12532
12533 \end_inset
12534
12535
12536 \begin_inset Box Frameless
12537 position "t"
12538 hor_pos "c"
12539 has_inner_box 1
12540 inner_pos "t"
12541 use_parbox 0
12542 width "100col%"
12543 special "none"
12544 height "1in"
12545 height_special "totalheight"
12546 status open
12547
12548 \begin_layout Plain Layout
12549 \align center
12550 \begin_inset Tabular
12551 <lyxtabular version="3" rows="5" columns="2">
12552 <features>
12553 <column alignment="center" valignment="top" width="0">
12554 <column alignment="center" valignment="top" width="0">
12555 <row>
12556 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12557 \begin_inset Text
12558
12559 \begin_layout Plain Layout
12560 Comando
12561 \begin_inset Foot
12562 status collapsed
12563
12564 \begin_layout Plain Layout
12565 Debido a un fallo de LyX, 
12566 \begin_inset CommandInset href
12567 LatexCommand href
12568 name "LyX-bug #1435"
12569 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
12570
12571 \end_inset
12572
12573 , no es posible crear una nueva ecuación con 
12574 \family sans
12575 Ctrl-m
12576 \family default
12577 .
12578  
12579 \end_layout
12580
12581 \end_inset
12582
12583
12584 \end_layout
12585
12586 \end_inset
12587 </cell>
12588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12589 \begin_inset Text
12590
12591 \begin_layout Plain Layout
12592 Resultado
12593 \begin_inset Note Note
12594 status collapsed
12595
12596 \begin_layout Plain Layout
12597
12598 \series bold
12599
12600 \backslash
12601 raisebox
12602 \series default
12603  se usa sólo como espaciador
12604 \end_layout
12605
12606 \end_inset
12607
12608
12609 \end_layout
12610
12611 \end_inset
12612 </cell>
12613 </row>
12614 <row>
12615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12616 \begin_inset Text
12617
12618 \begin_layout Plain Layout
12619
12620 \backslash
12621 fbox
12622 \begin_inset ERT
12623 status collapsed
12624
12625 \begin_layout Plain Layout
12626
12627
12628 \backslash
12629 spce 
12630 \end_layout
12631
12632 \end_inset
12633
12634
12635 \family sans
12636 Ctrl-m
12637 \family default
12638  
12639 \backslash
12640 int
12641 \begin_inset ERT
12642 status collapsed
12643
12644 \begin_layout Plain Layout
12645
12646
12647 \backslash
12648 spce 
12649 \end_layout
12650
12651 \end_inset
12652
12653 A=B
12654 \end_layout
12655
12656 \end_inset
12657 </cell>
12658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12659 \begin_inset Text
12660
12661 \begin_layout Plain Layout
12662 \begin_inset Formula \raisebox {6mm}{}\fbox{$\int A=B$}\raisebox {-4mm}{}
12663
12664 \end_inset
12665
12666
12667 \end_layout
12668
12669 \end_inset
12670 </cell>
12671 </row>
12672 <row>
12673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12674 \begin_inset Text
12675
12676 \begin_layout Plain Layout
12677
12678 \backslash
12679 boxed
12680 \begin_inset ERT
12681 status collapsed
12682
12683 \begin_layout Plain Layout
12684
12685
12686 \backslash
12687 spce 
12688 \end_layout
12689
12690 \end_inset
12691
12692
12693 \backslash
12694 int
12695 \begin_inset ERT
12696 status collapsed
12697
12698 \begin_layout Plain Layout
12699
12700
12701 \backslash
12702 spce 
12703 \end_layout
12704
12705 \end_inset
12706
12707 A=B
12708 \end_layout
12709
12710 \end_inset
12711 </cell>
12712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12713 \begin_inset Text
12714
12715 \begin_layout Plain Layout
12716 \begin_inset Formula $\raisebox {8.5mm}{}\boxed{\int A=B}\raisebox {-6.5mm}{}$
12717 \end_inset
12718
12719
12720 \end_layout
12721
12722 \end_inset
12723 </cell>
12724 </row>
12725 <row>
12726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12727 \begin_inset Text
12728
12729 \begin_layout Plain Layout
12730 A+
12731 \backslash
12732 fbox
12733 \begin_inset ERT
12734 status collapsed
12735
12736 \begin_layout Plain Layout
12737
12738
12739 \backslash
12740 spce 
12741 \end_layout
12742
12743 \end_inset
12744
12745 B
12746 \end_layout
12747
12748 \end_inset
12749 </cell>
12750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12751 \begin_inset Text
12752
12753 \begin_layout Plain Layout
12754 \begin_inset Formula $\raisebox {6mm}{}A+\fbox{B}\raisebox {-3mm}{}$
12755 \end_inset
12756
12757
12758 \end_layout
12759
12760 \end_inset
12761 </cell>
12762 </row>
12763 <row>
12764 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12765 \begin_inset Text
12766
12767 \begin_layout Plain Layout
12768
12769 \backslash
12770 framebox
12771 \begin_inset ERT
12772 status collapsed
12773
12774 \begin_layout Plain Layout
12775
12776
12777 \backslash
12778 spce 
12779 \end_layout
12780
12781 \end_inset
12782
12783 20mm
12784 \begin_inset Formula $\to$
12785 \end_inset
12786
12787
12788 \begin_inset Formula $\to$
12789 \end_inset
12790
12791
12792 \family sans
12793 Ctrl-m
12794 \family default
12795  
12796 \backslash
12797 frac
12798 \begin_inset ERT
12799 status collapsed
12800
12801 \begin_layout Plain Layout
12802
12803
12804 \backslash
12805 spce 
12806 \end_layout
12807
12808 \end_inset
12809
12810 A
12811 \begin_inset Formula $\downarrow$
12812 \end_inset
12813
12814 B
12815 \end_layout
12816
12817 \end_inset
12818 </cell>
12819 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12820 \begin_inset Text
12821
12822 \begin_layout Plain Layout
12823 \begin_inset Formula $\raisebox {6mm}{}$
12824 \end_inset
12825
12826
12827 \begin_inset Formula $\framebox[20mm][]{$\frac{A}{B}$}$
12828 \end_inset
12829
12830
12831 \begin_inset Formula $\raisebox {-4mm}{}$
12832 \end_inset
12833
12834
12835 \end_layout
12836
12837 \end_inset
12838 </cell>
12839 </row>
12840 </lyxtabular>
12841
12842 \end_inset
12843
12844
12845 \end_layout
12846
12847 \end_inset
12848
12849
12850 \end_layout
12851
12852 \begin_layout Standard
12853 El grosor del marco también se puede ajustar.
12854  Para ello hay que insertar los siguientes comandos en modo TeX antes de
12855  la fórmula:
12856 \end_layout
12857
12858 \begin_layout Standard
12859
12860 \series bold
12861
12862 \backslash
12863 fboxrule
12864 \series default
12865  
12866 \series bold
12867
12868 \begin_inset Quotes fld
12869 \end_inset
12870
12871 grosor
12872 \begin_inset Quotes frd
12873 \end_inset
12874
12875
12876 \series default
12877  
12878 \series bold
12879
12880 \backslash
12881 fboxsep
12882 \series default
12883  
12884 \series bold
12885
12886 \begin_inset Quotes fld
12887 \end_inset
12888
12889 distancia
12890 \begin_inset Quotes frd
12891 \end_inset
12892
12893
12894 \end_layout
12895
12896 \begin_layout Standard
12897 \begin_inset Quotes fld
12898 \end_inset
12899
12900 distancia
12901 \begin_inset Quotes frd
12902 \end_inset
12903
12904  especifica la distancia mínima entre el marco y el primer carácter en el
12905  cuadro.
12906  Un ejemplo de esto es la siguiente ecuación enmarcada:
12907 \begin_inset ERT
12908 status collapsed
12909
12910 \begin_layout Plain Layout
12911
12912
12913 \backslash
12914 fboxrule 2mm 
12915 \backslash
12916 fboxsep 3mm
12917 \end_layout
12918
12919 \end_inset
12920
12921
12922 \begin_inset Formula \[
12923 \boxed{A+B=C}\]
12924
12925 \end_inset
12926
12927
12928 \end_layout
12929
12930 \begin_layout Standard
12931 Delante de esta ecuación se han insertado los comandos
12932 \end_layout
12933
12934 \begin_layout Standard
12935
12936 \series bold
12937
12938 \backslash
12939 fboxrule
12940 \series default
12941  
12942 \series bold
12943 2mm
12944 \series default
12945  
12946 \series bold
12947
12948 \backslash
12949 fboxsep
12950 \series default
12951  
12952 \series bold
12953 3mm
12954 \end_layout
12955
12956 \begin_layout Standard
12957 en modo TeX.
12958  Los valores dados se usan para todos los cuadros siguientes.
12959 \end_layout
12960
12961 \begin_layout Standard
12962 Para volver al tamaño estándar del marco se inserta el comando
12963 \end_layout
12964
12965 \begin_layout Standard
12966
12967 \series bold
12968
12969 \backslash
12970 fboxrule
12971 \series default
12972  
12973 \series bold
12974 0.4pt
12975 \series default
12976  
12977 \series bold
12978
12979 \backslash
12980 fboxsep
12981 \series default
12982  
12983 \series bold
12984 3pt
12985 \series default
12986
12987 \begin_inset ERT
12988 status collapsed
12989
12990 \begin_layout Plain Layout
12991
12992
12993 \backslash
12994 fboxrule 0.4pt 
12995 \backslash
12996 fboxsep 3pt
12997 \end_layout
12998
12999 \end_inset
13000
13001
13002 \end_layout
13003
13004 \begin_layout Standard
13005 en modo TeX antes de la ecuación siguiente.
13006 \end_layout
13007
13008 \begin_layout Subsection
13009 Cuadros sin marco
13010 \begin_inset CommandInset label
13011 LatexCommand label
13012 name "sub:Cuadros-sin-marco"
13013
13014 \end_inset
13015
13016
13017 \begin_inset Index
13018 status collapsed
13019
13020 \begin_layout Plain Layout
13021 Cuadros ! sin marco
13022 \end_layout
13023
13024 \end_inset
13025
13026
13027 \end_layout
13028
13029 \begin_layout Standard
13030 Para cuadros sin marco hay los comandos: 
13031 \series bold
13032
13033 \backslash
13034 mbox
13035 \series default
13036
13037 \begin_inset Index
13038 status collapsed
13039
13040 \begin_layout Plain Layout
13041 Comandos ! M ! 
13042 \backslash
13043 mbox
13044 \end_layout
13045
13046 \end_inset
13047
13048
13049 \series bold
13050
13051 \backslash
13052 makebox
13053 \series default
13054
13055 \begin_inset Index
13056 status collapsed
13057
13058 \begin_layout Plain Layout
13059 Comandos ! M ! 
13060 \backslash
13061 makebox
13062 \end_layout
13063
13064 \end_inset
13065
13066  y 
13067 \series bold
13068
13069 \backslash
13070 raisebox
13071 \series default
13072
13073 \begin_inset Index
13074 status collapsed
13075
13076 \begin_layout Plain Layout
13077 Comandos ! R ! 
13078 \backslash
13079 raisebox
13080 \end_layout
13081
13082 \end_inset
13083
13084 .
13085 \end_layout
13086
13087 \begin_layout Standard
13088 Con 
13089 \series bold
13090
13091 \backslash
13092 raisebox
13093 \series default
13094  se puede poner un cuadro subíndice o superíndice, pero a diferencia de
13095  los normales, los caracteres en el cuadro mantienen su tamaño de fuente.
13096  
13097 \series bold
13098
13099 \backslash
13100 raisebox
13101 \series default
13102  se usa con el siguiente esquema: 
13103 \end_layout
13104
13105 \begin_layout Standard
13106
13107 \series bold
13108
13109 \backslash
13110 raisebox{altura}{contenido del marco}
13111 \end_layout
13112
13113 \begin_layout Standard
13114 Cuando el cuadro tenga que contener una ecuación, hace falta una ecuación
13115  extra, como con 
13116 \series bold
13117
13118 \backslash
13119 fbox
13120 \series default
13121 .
13122 \end_layout
13123
13124 \begin_layout Standard
13125 \align center
13126 \begin_inset Tabular
13127 <lyxtabular version="3" rows="4" columns="2">
13128 <features>
13129 <column alignment="center" valignment="top" width="0">
13130 <column alignment="center" valignment="top" width="0">
13131 <row>
13132 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13133 \begin_inset Text
13134
13135 \begin_layout Plain Layout
13136 Comando
13137 \end_layout
13138
13139 \end_inset
13140 </cell>
13141 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13142 \begin_inset Text
13143
13144 \begin_layout Plain Layout
13145 Resultado
13146 \end_layout
13147
13148 \end_inset
13149 </cell>
13150 </row>
13151 <row>
13152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13153 \begin_inset Text
13154
13155 \begin_layout Plain Layout
13156 H
13157 \backslash
13158 raisebox{2mm
13159 \begin_inset Formula $\to$
13160 \end_inset
13161
13162
13163 \backslash
13164 {al
13165 \begin_inset Formula $\to$
13166 \end_inset
13167
13168  lo
13169 \end_layout
13170
13171 \end_inset
13172 </cell>
13173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13174 \begin_inset Text
13175
13176 \begin_layout Plain Layout
13177 \begin_inset Formula $H\raisebox {2mm}{al}lo$
13178 \end_inset
13179
13180
13181 \end_layout
13182
13183 \end_inset
13184 </cell>
13185 </row>
13186 <row>
13187 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13188 \begin_inset Text
13189
13190 \begin_layout Plain Layout
13191 H
13192 \backslash
13193 raisebox{-2mm
13194 \begin_inset Formula $\to$
13195 \end_inset
13196
13197
13198 \backslash
13199 {al
13200 \begin_inset Formula $\to$
13201 \end_inset
13202
13203 lo
13204 \end_layout
13205
13206 \end_inset
13207 </cell>
13208 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13209 \begin_inset Text
13210
13211 \begin_layout Plain Layout
13212 \begin_inset Formula $H\raisebox {-2mm}{al}lo$
13213 \end_inset
13214
13215
13216 \end_layout
13217
13218 \end_inset
13219 </cell>
13220 </row>
13221 <row>
13222 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13223 \begin_inset Text
13224
13225 \begin_layout Plain Layout
13226 A=
13227 \backslash
13228 raisebox{-2mm
13229 \begin_inset Formula $\to$
13230 \end_inset
13231
13232
13233 \backslash
13234 {
13235 \family sans
13236 Ctrl-m
13237 \family default
13238  
13239 \backslash
13240 sqrt
13241 \begin_inset ERT
13242 status collapsed
13243
13244 \begin_layout Plain Layout
13245
13246
13247 \backslash
13248 spce 
13249 \end_layout
13250
13251 \end_inset
13252
13253
13254 \end_layout
13255
13256 \end_inset
13257 </cell>
13258 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13259 \begin_inset Text
13260
13261 \begin_layout Plain Layout
13262 \begin_inset ERT
13263 status collapsed
13264
13265 \begin_layout Plain Layout
13266
13267 $A=
13268 \backslash
13269 raisebox{-2mm}{$
13270 \backslash
13271 sqrt{B}$}$
13272 \end_layout
13273
13274 \end_inset
13275
13276
13277 \end_layout
13278
13279 \end_inset
13280 </cell>
13281 </row>
13282 </lyxtabular>
13283
13284 \end_inset
13285
13286
13287 \end_layout
13288
13289 \begin_layout Standard
13290 La última ecuación sólo se puede componer, de momento, usando el modo TeX
13291  porque LyX inserta un cuadro en lugar de la ecuación extra que hace falta.
13292 \begin_inset Foot
13293 status collapsed
13294
13295 \begin_layout Plain Layout
13296 véase 
13297 \begin_inset CommandInset href
13298 LatexCommand href
13299 name "LyX-bug #1435"
13300 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
13301
13302 \end_inset
13303
13304
13305 \end_layout
13306
13307 \end_inset
13308
13309
13310 \end_layout
13311
13312 \begin_layout Standard
13313 El comando 
13314 \series bold
13315
13316 \backslash
13317 mbox
13318 \series default
13319  es equivalente a 
13320 \series bold
13321
13322 \backslash
13323 fbox
13324 \series default
13325  y 
13326 \series bold
13327
13328 \backslash
13329 makebox
13330 \series default
13331  es equivalente a 
13332 \series bold
13333
13334 \backslash
13335 framebox
13336 \series default
13337 , con la diferencia de que no hay marco.
13338 \end_layout
13339
13340 \begin_layout Subsection
13341 Cuadros coloreados
13342 \begin_inset CommandInset label
13343 LatexCommand label
13344 name "sub:Cuadros-coloreados"
13345
13346 \end_inset
13347
13348
13349 \begin_inset Index
13350 status collapsed
13351
13352 \begin_layout Plain Layout
13353 Cuadros ! coloreados
13354 \end_layout
13355
13356 \end_inset
13357
13358
13359 \end_layout
13360
13361 \begin_layout Standard
13362 Para poder usar todos los comandos explicados en esta sección hay que cargar
13363  en el preámbulo LaTeX el paquete LaTeX 
13364 \series bold
13365 color
13366 \series default
13367
13368 \begin_inset Foot
13369 status collapsed
13370
13371 \begin_layout Plain Layout
13372 El paquete LaTeX 
13373 \series bold
13374 color
13375 \series default
13376  forma parte de toda distribución LaTeX estándar.
13377 \end_layout
13378
13379 \end_inset
13380
13381
13382 \begin_inset Index
13383 status collapsed
13384
13385 \begin_layout Plain Layout
13386 Paquetes ! color
13387 \end_layout
13388
13389 \end_inset
13390
13391 , con la línea
13392 \begin_inset Foot
13393 status collapsed
13394
13395 \begin_layout Plain Layout
13396 Cuando hay texto coloreado con un color predefinido en alguna parte del
13397  documento, LyX carga automáticamente el paquete LaTeX 
13398 \series bold
13399 color
13400 \series default
13401 .
13402  Por tanto es posible que el paquete sea cargado dos veces, pero esto no
13403  origina problemas.
13404 \end_layout
13405
13406 \end_inset
13407
13408
13409 \begin_inset Note Note
13410 status open
13411
13412 \begin_layout Plain Layout
13413 Para evitar que el paquete sea cargado dos veces se ha insertado una macro
13414  en el preámbulo LaTeX.
13415 \end_layout
13416
13417 \end_inset
13418
13419
13420 \end_layout
13421
13422 \begin_layout Standard
13423
13424 \series bold
13425
13426 \backslash
13427 usepackage{color}
13428 \begin_inset VSpace medskip
13429 \end_inset
13430
13431
13432 \end_layout
13433
13434 \begin_layout Standard
13435 Para colorear cuadros se usa el comando 
13436 \series bold
13437
13438 \backslash
13439 colorbox
13440 \series default
13441
13442 \begin_inset Index
13443 status collapsed
13444
13445 \begin_layout Plain Layout
13446 Comandos ! C ! 
13447 \backslash
13448 colorbox
13449 \end_layout
13450
13451 \end_inset
13452
13453  con el siguiente esquema:
13454 \end_layout
13455
13456 \begin_layout Standard
13457
13458 \series bold
13459
13460 \backslash
13461 colorbox{color}{contenido del cuadro}
13462 \end_layout
13463
13464 \begin_layout Standard
13465 El contenido del cuadro puede ser otro cuadro, y también un 
13466 \backslash
13467
13468 \series bold
13469 colorbox
13470 \series default
13471  puede ser parte de otro cuadro (véanse los ejemplos 2º y 3º).
13472  Si el cuadro debe contener una ecuación debe crearse una ecuación extra,
13473  como con 
13474 \series bold
13475
13476 \backslash
13477 fbox
13478 \series default
13479 .
13480 \begin_inset Foot
13481 status collapsed
13482
13483 \begin_layout Plain Layout
13484 Esto también se aplica para el comando 
13485 \series bold
13486
13487 \backslash
13488 fcolorbox
13489 \series default
13490 .
13491  Por eso ten en cuenta 
13492 \begin_inset CommandInset href
13493 LatexCommand href
13494 name "LyX-bug #1435"
13495 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
13496
13497 \end_inset
13498
13499 .
13500 \end_layout
13501
13502 \end_inset
13503
13504  
13505 \end_layout
13506
13507 \begin_layout Standard
13508 Se puede elegir uno de los siguientes colores predefinidos:
13509 \end_layout
13510
13511 \begin_layout Standard
13512
13513 \series bold
13514 black
13515 \series default
13516
13517 \series bold
13518 blue
13519 \series default
13520
13521 \series bold
13522 cyan
13523 \series default
13524
13525 \series bold
13526 green
13527 \series default
13528
13529 \series bold
13530 magenta
13531 \series default
13532
13533 \series bold
13534 red
13535 \series default
13536
13537 \series bold
13538 white
13539 \series default
13540
13541 \series bold
13542 yellow
13543 \end_layout
13544
13545 \begin_layout Standard
13546 \align center
13547 \begin_inset Tabular
13548 <lyxtabular version="3" rows="4" columns="2">
13549 <features>
13550 <column alignment="center" valignment="top" width="0">
13551 <column alignment="center" valignment="top" width="0">
13552 <row>
13553 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13554 \begin_inset Text
13555
13556 \begin_layout Plain Layout
13557 Comando
13558 \end_layout
13559
13560 \end_inset
13561 </cell>
13562 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13563 \begin_inset Text
13564
13565 \begin_layout Plain Layout
13566 Resultado
13567 \begin_inset Note Note
13568 status collapsed
13569
13570 \begin_layout Plain Layout
13571
13572 \series bold
13573
13574 \backslash
13575 raisebox
13576 \series default
13577  se usa sólo como espaciador
13578 \end_layout
13579
13580 \end_inset
13581
13582
13583 \end_layout
13584
13585 \end_inset
13586 </cell>
13587 </row>
13588 <row>
13589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13590 \begin_inset Text
13591
13592 \begin_layout Plain Layout
13593
13594 \backslash
13595 colorbox{yellow
13596 \begin_inset Formula $\to$
13597 \end_inset
13598
13599
13600 \backslash
13601 {A=B
13602 \end_layout
13603
13604 \end_inset
13605 </cell>
13606 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13607 \begin_inset Text
13608
13609 \begin_layout Plain Layout
13610 \begin_inset Formula $\raisebox {6mm}{}\colorbox {yellow}{A=B}\raisebox {-3mm}{}$
13611 \end_inset
13612
13613
13614 \end_layout
13615
13616 \end_inset
13617 </cell>
13618 </row>
13619 <row>
13620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13621 \begin_inset Text
13622
13623 \begin_layout Plain Layout
13624
13625 \backslash
13626 colorbox{green
13627 \begin_inset Formula $\to$
13628 \end_inset
13629
13630
13631 \backslash
13632 {
13633 \backslash
13634 fbox
13635 \begin_inset ERT
13636 status collapsed
13637
13638 \begin_layout Plain Layout
13639
13640
13641 \backslash
13642 spce 
13643 \end_layout
13644
13645 \end_inset
13646
13647 A=B
13648 \end_layout
13649
13650 \end_inset
13651 </cell>
13652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13653 \begin_inset Text
13654
13655 \begin_layout Plain Layout
13656 \begin_inset Formula $\raisebox {6mm}{}\colorbox {green}{\fbox{A=B}}\raisebox {-3mm}{}$
13657 \end_inset
13658
13659
13660 \end_layout
13661
13662 \end_inset
13663 </cell>
13664 </row>
13665 <row>
13666 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13667 \begin_inset Text
13668
13669 \begin_layout Plain Layout
13670
13671 \backslash
13672 fbox
13673 \begin_inset ERT
13674 status collapsed
13675
13676 \begin_layout Plain Layout
13677
13678
13679 \backslash
13680 spce 
13681 \end_layout
13682
13683 \end_inset
13684
13685
13686 \backslash
13687 colorbox{green
13688 \begin_inset Formula $\to$
13689 \end_inset
13690
13691
13692 \backslash
13693 {A=B
13694 \end_layout
13695
13696 \end_inset
13697 </cell>
13698 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13699 \begin_inset Text
13700
13701 \begin_layout Plain Layout
13702 \begin_inset Formula $\raisebox {6mm}{}\fbox{\colorbox {green}{A=B}}\raisebox {-3mm}{}$
13703 \end_inset
13704
13705
13706 \end_layout
13707
13708 \end_inset
13709 </cell>
13710 </row>
13711 </lyxtabular>
13712
13713 \end_inset
13714
13715
13716 \end_layout
13717
13718 \begin_layout Standard
13719
13720 \series bold
13721
13722 \backslash
13723 colorbox
13724 \series default
13725  sólo colorea el cuadro pero no los caracteres.
13726  Para colorear todos los caracteres se selecciona toda la ecuación y se
13727  elige un color en el diálogo 
13728 \family sans
13729 Estilo
13730 \begin_inset Space ~
13731 \end_inset
13732
13733 del
13734 \begin_inset Space ~
13735 \end_inset
13736
13737 texto
13738 \family default
13739 .
13740  El diálogo puede abrirse con el botón 
13741 \begin_inset Graphics
13742         filename ../../images/dialog-show_character.png
13743         embed ""
13744         scale 85
13745
13746 \end_inset
13747
13748  de la barra de herramientas o con el menú 
13749 \family sans
13750 Editar\SpecialChar \menuseparator
13751 Estilo
13752 \begin_inset Space ~
13753 \end_inset
13754
13755 del
13756 \begin_inset Space ~
13757 \end_inset
13758
13759 texto\SpecialChar \menuseparator
13760 Personalizado
13761 \family default
13762 .
13763  El número de la ecuación tendrá en ese caso el mismo color que la ecuación.
13764  Si el número de la ecuación debe tener otro color que el de los caracteres
13765  de la ecuación, el color debe cambiarse dentro de la ecuación.
13766 \end_layout
13767
13768 \begin_layout Standard
13769 Un ejemplo:
13770 \color red
13771
13772 \begin_inset Formula \begin{equation}
13773 {\color{red}\int A=B}\label{eq:rojo}\end{equation}
13774
13775 \end_inset
13776
13777
13778 \end_layout
13779
13780 \begin_layout Standard
13781
13782 \color green
13783 \begin_inset Formula \begin{equation}
13784 {\color{green}{\color{red}\int A=B}}\label{eq:rojoverde}\end{equation}
13785
13786 \end_inset
13787
13788
13789 \end_layout
13790
13791 \begin_layout Standard
13792 La ecuación 
13793 \begin_inset CommandInset ref
13794 LatexCommand eqref
13795 reference "eq:rojo"
13796
13797 \end_inset
13798
13799  está toda coloreada en rojo.
13800 \begin_inset Newline newline
13801 \end_inset
13802
13803 La ecuación 
13804 \begin_inset CommandInset ref
13805 LatexCommand eqref
13806 reference "eq:rojoverde"
13807
13808 \end_inset
13809
13810  se ha coloreado en primer lugar toda en verde para colorear el número de
13811  la ecuación.
13812  Posteriormente se han coloreado en rojo los caracteres.
13813 \family sans
13814
13815 \begin_inset VSpace bigskip
13816 \end_inset
13817
13818
13819 \end_layout
13820
13821 \begin_layout Standard
13822 Para colorear diferente el marco y el resto del cuadro se usa el comando
13823  
13824 \series bold
13825
13826 \backslash
13827 fcolorbox
13828 \series default
13829
13830 \begin_inset Index
13831 status collapsed
13832
13833 \begin_layout Plain Layout
13834 Comandos ! F ! 
13835 \backslash
13836 fcolorbox
13837 \end_layout
13838
13839 \end_inset
13840
13841  con el siguiente esquema:
13842 \end_layout
13843
13844 \begin_layout Standard
13845
13846 \series bold
13847
13848 \backslash
13849 fcolorbox{color del marco}{color}{contenido del cuadro}
13850 \end_layout
13851
13852 \begin_layout Standard
13853 Así pues 
13854 \series bold
13855
13856 \backslash
13857 fcolorbox
13858 \series default
13859  es una extensión del comando 
13860 \series bold
13861
13862 \backslash
13863 colorbox
13864 \series default
13865 .
13866  La anchura del marco se establece, como para 
13867 \series bold
13868
13869 \backslash
13870 framebox
13871 \series default
13872 , con 
13873 \series bold
13874
13875 \backslash
13876 fboxrule
13877 \series default
13878  y 
13879 \series bold
13880
13881 \backslash
13882 fboxsep
13883 \series default
13884 .
13885  Un ejemplo:
13886 \begin_inset ERT
13887 status collapsed
13888
13889 \begin_layout Plain Layout
13890
13891
13892 \backslash
13893 fboxrule 1mm 
13894 \backslash
13895 fboxsep 1mm
13896 \end_layout
13897
13898 \end_inset
13899
13900
13901 \begin_inset Formula \[
13902 \fcolorbox {cyan}{magenta}{A=B}\]
13903
13904 \end_inset
13905
13906
13907 \end_layout
13908
13909 \begin_layout Standard
13910 \begin_inset ERT
13911 status collapsed
13912
13913 \begin_layout Plain Layout
13914
13915
13916 \backslash
13917 fboxrule 0.4pt 
13918 \backslash
13919 fboxsep 3pt
13920 \end_layout
13921
13922 \end_inset
13923
13924
13925 \end_layout
13926
13927 \begin_layout Standard
13928 Esta ecuación se ha compuesto con el comando
13929 \begin_inset Newline newline
13930 \end_inset
13931
13932
13933 \series bold
13934
13935 \backslash
13936 fcolorbox{cyan
13937 \begin_inset Formula $\to$
13938 \end_inset
13939
13940
13941 \backslash
13942 {magenta
13943 \begin_inset Formula $\to$
13944 \end_inset
13945
13946
13947 \backslash
13948 {A=B
13949 \end_layout
13950
13951 \begin_layout Standard
13952 \begin_inset VSpace bigskip
13953 \end_inset
13954
13955
13956 \end_layout
13957
13958 \begin_layout Standard
13959 Para usar colores distintos de los predefinidos deben ser definidos previamente.
13960 \end_layout
13961
13962 \begin_layout Standard
13963 Por ejemplo, se puede definir el color 
13964 \begin_inset Quotes fld
13965 \end_inset
13966
13967
13968 \series bold
13969 verdeoscuro
13970 \series default
13971
13972 \begin_inset Quotes frd
13973 \end_inset
13974
13975  con la línea de preámbulo LaTeX:
13976 \end_layout
13977
13978 \begin_layout Standard
13979
13980 \series bold
13981
13982 \backslash
13983 definecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
13984 \series default
13985
13986 \begin_inset Index
13987 status collapsed
13988
13989 \begin_layout Plain Layout
13990 Comandos ! D ! 
13991 \backslash
13992 definecolor
13993 \end_layout
13994
13995 \end_inset
13996
13997
13998 \end_layout
13999
14000 \begin_layout Standard
14001
14002 \series bold
14003 cmyk
14004 \series default
14005  es el espacio de color referido a los colores 
14006 \series bold
14007 cyan
14008 \series default
14009
14010 \series bold
14011 magenta
14012 \series default
14013
14014 \series bold
14015 yellow
14016 \series default
14017  y 
14018 \series bold
14019 black
14020 \series default
14021 .
14022  Los cuatro números separados por coma son el factor de cuota para los colores
14023  correspondientes del espacio de color.
14024  Los factores pueden estar en el rango 0-1.
14025  En vez de 
14026 \series bold
14027 cmyk
14028 \series default
14029  se puede usar el espacio de color 
14030 \series bold
14031 rgb
14032 \series default
14033 , que se refiere a 
14034 \series bold
14035 red
14036 \series default
14037
14038 \series bold
14039 green
14040 \series default
14041  y 
14042 \series bold
14043 blue
14044 \series default
14045 , así pues en este caso hay tres factores de cuota para los correspondientes
14046  colores.
14047  Además hay el espacio de color 
14048 \series bold
14049 gray
14050 \series default
14051  con un factor de cuota para el valor gris.
14052 \end_layout
14053
14054 \begin_layout Standard
14055 Como ejemplo he aquí un cuadro enmarcado con el nuevo color definido 
14056 \series bold
14057 verdeoscuro
14058 \series default
14059  y los caracteres en color amarillo:
14060 \color black
14061
14062 \begin_inset Formula \begin{equation}
14063 \colorbox {verdeoscuro}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[3]{B}}{\ln\left(\frac{1}{3}\right)}}}\end{equation}
14064
14065 \end_inset
14066
14067
14068 \end_layout
14069
14070 \begin_layout Standard
14071 Los colores personalizados también se pueden usar para texto con la ayuda
14072  del comando 
14073 \series bold
14074
14075 \backslash
14076 textcolor
14077 \series default
14078
14079 \begin_inset Index
14080 status collapsed
14081
14082 \begin_layout Plain Layout
14083 Texto ! coloreado
14084 \end_layout
14085
14086 \end_inset
14087
14088
14089 \end_layout
14090
14091 \begin_layout Standard
14092 \begin_inset ERT
14093 status open
14094
14095 \begin_layout Plain Layout
14096
14097
14098 \backslash
14099 textcolor{verdeoscuro}{
14100 \end_layout
14101
14102 \end_inset
14103
14104 Esta frase en 
14105 \begin_inset Quotes fld
14106 \end_inset
14107
14108 verdeoscuro
14109 \begin_inset Quotes frd
14110 \end_inset
14111
14112 .
14113 \begin_inset ERT
14114 status collapsed
14115
14116 \begin_layout Plain Layout
14117
14118 }
14119 \end_layout
14120
14121 \end_inset
14122
14123
14124 \end_layout
14125
14126 \begin_layout Standard
14127
14128 \series bold
14129
14130 \backslash
14131 textcolor
14132 \series default
14133
14134 \begin_inset Index
14135 status collapsed
14136
14137 \begin_layout Plain Layout
14138 Comandos ! T ! 
14139 \backslash
14140 textcolor
14141 \end_layout
14142
14143 \end_inset
14144
14145  se usa con el esquema 
14146 \series bold
14147
14148 \backslash
14149 textcolor{color}{caracteres a colorear}
14150 \series default
14151 .
14152 \end_layout
14153
14154 \begin_layout Subsection
14155 Cuadros de párrafo
14156 \begin_inset CommandInset label
14157 LatexCommand label
14158 name "sub:Cuadros-de-párrafo"
14159
14160 \end_inset
14161
14162
14163 \begin_inset Index
14164 status collapsed
14165
14166 \begin_layout Plain Layout
14167 Cuadros ! para párrafos
14168 \end_layout
14169
14170 \end_inset
14171
14172
14173 \end_layout
14174
14175 \begin_layout Standard
14176 Un cuadro que puede contener varias líneas y párrafos, denominado cuadro
14177  de párrafo (parbox), se puede generar con el menú 
14178 \family sans
14179 Insertar\SpecialChar \menuseparator
14180 Cuadro
14181 \family default
14182  o con el botón 
14183 \begin_inset Graphics
14184         filename ../../images/box-insert.png
14185         embed ""
14186         scale 85
14187
14188 \end_inset
14189
14190  de la barra de herramientas.
14191 \end_layout
14192
14193 \begin_layout Standard
14194 El siguiente ejemplo muestra un cuadro de párrafo enmarcado en una línea:
14195 \begin_inset VSpace medskip
14196 \end_inset
14197
14198 Esta línea contiene 
14199 \begin_inset Box Boxed
14200 position "c"
14201 hor_pos "c"
14202 has_inner_box 1
14203 inner_pos "c"
14204 use_parbox 1
14205 width "5cm"
14206 special "none"
14207 height "1in"
14208 height_special "totalheight"
14209 status collapsed
14210
14211 \begin_layout Plain Layout
14212 Esto es un cuadro de párrafo.
14213  Tiene exactamente 5
14214 \begin_inset Space \thinspace{}
14215 \end_inset
14216
14217 cm de largo y además puede contener ecuaciones: 
14218 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14219 \end_inset
14220
14221
14222 \end_layout
14223
14224 \end_inset
14225
14226
14227 \begin_inset Space ~
14228 \end_inset
14229
14230  un cuadro de párrafo.
14231 \begin_inset VSpace medskip
14232 \end_inset
14233
14234 Ese cuadro se compone haciendo clic derecho sobre el rectángulo gris insertado.
14235  Surge un diálogo con las propiedades del cuadro.
14236  En este caso: 
14237 \emph on
14238 Decoración
14239 \emph default
14240 : Marco rectangular, 
14241 \emph on
14242 Cuadro interior
14243 \emph default
14244 : Párrafo, 
14245 \emph on
14246 Ancho
14247 \emph default
14248 : 5
14249 \begin_inset Space \thinspace{}
14250 \end_inset
14251
14252 cm, 
14253 \emph on
14254 Alineación Vertical
14255 \emph default
14256  
14257 \emph on
14258 Cuadro
14259 \emph default
14260 : Medio.
14261 \end_layout
14262
14263 \begin_layout Standard
14264 \begin_inset VSpace medskip
14265 \end_inset
14266
14267 En LaTeX, un cuadro de párrafo se inserta con el comando 
14268 \series bold
14269
14270 \backslash
14271 parbox
14272 \series default
14273
14274 \begin_inset Index
14275 status collapsed
14276
14277 \begin_layout Plain Layout
14278 Comandos ! P ! 
14279 \backslash
14280 parbox
14281 \end_layout
14282
14283 \end_inset
14284
14285  con el esquema siguiente:
14286 \end_layout
14287
14288 \begin_layout Standard
14289
14290 \series bold
14291
14292 \backslash
14293 parbox[posición]{anchura}{contenido}
14294 \end_layout
14295
14296 \begin_layout Standard
14297 Son posibles las posiciones 
14298 \emph on
14299 b
14300 \emph default
14301  y 
14302 \emph on
14303 t
14304 \emph default
14305
14306 \emph on
14307 b
14308 \emph default
14309  por 
14310 \begin_inset Quotes fld
14311 \end_inset
14312
14313 bottom
14314 \begin_inset Quotes frd
14315 \end_inset
14316
14317  (abajo), que alinea la última línea del cuadro con el texto de alrededor.
14318  Con 
14319 \emph on
14320 t
14321 \emph default
14322 , por 
14323 \begin_inset Quotes fld
14324 \end_inset
14325
14326 top
14327 \begin_inset Quotes frd
14328 \end_inset
14329
14330  (arriba), la alineación se hace con la primera línea.
14331  Si no se da posición, el cuadro se centrará verticalmente, véase la sección
14332  
14333 \emph on
14334 Cuadros
14335 \emph default
14336  del manual 
14337 \emph on
14338 Objetos incrustados
14339 \emph default
14340  para ejemplos.
14341 \end_layout
14342
14343 \begin_layout Standard
14344 \begin_inset VSpace bigskip
14345 \end_inset
14346
14347 Para enmarcar ecuaciones completas, incluso el número de la ecuación, deben
14348  ponerse en un cuadro de párrafo.
14349  Para ello se inserta el comando
14350 \begin_inset Newline newline
14351 \end_inset
14352
14353
14354 \series bold
14355
14356 \backslash
14357 fbox{
14358 \backslash
14359 parbox{
14360 \backslash
14361 linewidth-2
14362 \backslash
14363 fboxsep-2
14364 \backslash
14365 fboxrule}{
14366 \begin_inset Newline newline
14367 \end_inset
14368
14369
14370 \series default
14371 en modo TeX delante de la ecuación.
14372  Aquí 
14373 \series bold
14374
14375 \backslash
14376 linewidth
14377 \begin_inset Index
14378 status collapsed
14379
14380 \begin_layout Plain Layout
14381 Comandos ! L ! 
14382 \backslash
14383 linewidth
14384 \end_layout
14385
14386 \end_inset
14387
14388
14389 \series default
14390  es la anchura de línea establecida para el documento.
14391  Como el marco está por fuera del cuadro de párrafo, hay que restar de dicha
14392  anchura dos veces la separación del marco y el grosor.
14393  Como LyX no lo hace automáticamente debido a un fallo,
14394 \begin_inset Foot
14395 status collapsed
14396
14397 \begin_layout Plain Layout
14398 \begin_inset CommandInset href
14399 LatexCommand href
14400 name "LyX-bug #4483"
14401 target "http://bugzilla.lyx.org/show_bug.cgi?id=4483"
14402
14403 \end_inset
14404
14405
14406 \end_layout
14407
14408 \end_inset
14409
14410  hay que usar modo TeX.
14411  Para poder multiplicar y restar en los argumentos hay que cargar en el
14412  preámbulo LaTeX el paquete LaTeX 
14413 \series bold
14414 calc
14415 \series default
14416 ,
14417 \begin_inset Foot
14418 status collapsed
14419
14420 \begin_layout Plain Layout
14421
14422 \series bold
14423 calc
14424 \series default
14425  es parte de toda instalación LaTeX estándar.
14426 \end_layout
14427
14428 \end_inset
14429
14430
14431 \begin_inset Index
14432 status collapsed
14433
14434 \begin_layout Plain Layout
14435 Paquetes ! calc
14436 \end_layout
14437
14438 \end_inset
14439
14440  con la línea
14441 \end_layout
14442
14443 \begin_layout Standard
14444
14445 \series bold
14446
14447 \backslash
14448 usepackage{calc}
14449 \end_layout
14450
14451 \begin_layout Standard
14452 Detrás de la ecuación se cierran ambos cuadros con 
14453 \series bold
14454 }}
14455 \series default
14456  en modo TeX.
14457  Aquí hay un ejemplo:
14458 \begin_inset ERT
14459 status collapsed
14460
14461 \begin_layout Plain Layout
14462
14463
14464 \backslash
14465 fboxsep 5mm 
14466 \backslash
14467 fboxrule 5mm
14468 \end_layout
14469
14470 \end_inset
14471
14472
14473 \end_layout
14474
14475 \begin_layout Standard
14476 \begin_inset ERT
14477 status collapsed
14478
14479 \begin_layout Plain Layout
14480
14481
14482 \backslash
14483 fbox{
14484 \backslash
14485 parbox{
14486 \backslash
14487 linewidth-2
14488 \backslash
14489 fboxsep-2
14490 \backslash
14491 fboxrule}{
14492 \end_layout
14493
14494 \end_inset
14495
14496
14497 \begin_inset Formula \begin{equation}
14498 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}\end{equation}
14499
14500 \end_inset
14501
14502
14503 \end_layout
14504
14505 \begin_layout Standard
14506 \begin_inset ERT
14507 status collapsed
14508
14509 \begin_layout Plain Layout
14510
14511 }}
14512 \end_layout
14513
14514 \end_inset
14515
14516
14517 \begin_inset ERT
14518 status collapsed
14519
14520 \begin_layout Plain Layout
14521
14522
14523 \backslash
14524 fboxrule 0.4pt 
14525 \backslash
14526 fboxsep 3pt
14527 \end_layout
14528
14529 \end_inset
14530
14531
14532 \end_layout
14533
14534 \begin_layout Standard
14535 \begin_inset VSpace medskip
14536 \end_inset
14537
14538
14539 \end_layout
14540
14541 \begin_layout Standard
14542 Como se ha usado el cuadro de párrafo como argumento de 
14543 \series bold
14544
14545 \backslash
14546 fbox
14547 \series default
14548 , en este caso no hay diferencia entre 
14549 \series bold
14550
14551 \backslash
14552 fbox
14553 \series default
14554  y 
14555 \series bold
14556
14557 \backslash
14558 boxed
14559 \series default
14560 .
14561  
14562 \end_layout
14563
14564 \begin_layout Standard
14565 \begin_inset VSpace bigskip
14566 \end_inset
14567
14568
14569 \end_layout
14570
14571 \begin_layout Standard
14572 Los cuadros de párrafo son muy útiles para comentar ecuaciones directamente.
14573  Para hacerlo, se usa 
14574 \series bold
14575
14576 \backslash
14577 parbox
14578 \series default
14579  en combinación con el comando 
14580 \series bold
14581
14582 \backslash
14583 tag
14584 \series default
14585 .
14586  (Véase más sobre 
14587 \series bold
14588
14589 \backslash
14590 tag
14591 \series default
14592  en 
14593 \begin_inset CommandInset ref
14594 LatexCommand ref
14595 reference "sub:Numeración-personalizada"
14596
14597 \end_inset
14598
14599 ).
14600 \end_layout
14601
14602 \begin_layout Standard
14603 Un ejemplo de ecuación comentada con 
14604 \series bold
14605
14606 \backslash
14607 parbox
14608 \series default
14609 :
14610 \end_layout
14611
14612 \begin_layout Standard
14613 \begin_inset ERT
14614 status collapsed
14615
14616 \begin_layout Plain Layout
14617
14618
14619 \backslash
14620 [5x-7b=3b
14621 \backslash
14622 tag*{
14623 \backslash
14624 parbox{5cm}{
14625 \end_layout
14626
14627 \end_inset
14628
14629 Esto es una descripción.
14630  Está claramente separada de la ecuación y es multilínea.
14631 \begin_inset ERT
14632 status collapsed
14633
14634 \begin_layout Plain Layout
14635
14636 }}
14637 \backslash
14638 ]
14639 \end_layout
14640
14641 \end_inset
14642
14643
14644 \end_layout
14645
14646 \begin_layout Standard
14647 Tales ecuaciones deben insertarse completamente en modo TeX porque LyX aún
14648  no soporta el comando 
14649 \series bold
14650
14651 \backslash
14652 parbox
14653 \series default
14654  en ecuaciones.
14655  La ecuación se compone con la siguiente secuencia de comandos:
14656 \end_layout
14657
14658 \begin_layout Standard
14659 El comando 
14660 \series bold
14661
14662 \backslash
14663 [5x-7b=3b
14664 \backslash
14665 tag*
14666 \backslash
14667 {
14668 \backslash
14669 parbox{5cm}{
14670 \series default
14671  se inserta en modo TeX.
14672 \begin_inset Foot
14673 status collapsed
14674
14675 \begin_layout Plain Layout
14676 Si se usa el estilo de ecuación 
14677 \series bold
14678 Sangrado
14679 \series default
14680
14681 \series bold
14682
14683 \backslash
14684 tag*
14685 \backslash
14686
14687 \series default
14688  se puede reemplazar por 
14689 \series bold
14690
14691 \backslash
14692 hfill
14693 \series default
14694 .
14695  (Véanse los estilos de ecuación en 
14696 \begin_inset CommandInset ref
14697 LatexCommand ref
14698 reference "sec:Estilos-de-ecuación"
14699
14700 \end_inset
14701
14702 ).
14703 \end_layout
14704
14705 \end_inset
14706
14707  Después sigue la descripción en texto normal, y por último 
14708 \series bold
14709 }}
14710 \backslash
14711 ]
14712 \series default
14713  en modo TeX.
14714  Aquí los comandos 
14715 \series bold
14716
14717 \backslash
14718 [
14719 \series default
14720  y 
14721 \series bold
14722
14723 \backslash
14724 ]
14725 \series default
14726  crean una ecuación presentada.
14727 \end_layout
14728
14729 \begin_layout Standard
14730 Las ventajas de 
14731 \series bold
14732
14733 \backslash
14734 parbox
14735 \series default
14736  pueden verse en este ejemplo que se ha 
14737 \begin_inset Quotes fld
14738 \end_inset
14739
14740 comentado
14741 \begin_inset Quotes frd
14742 \end_inset
14743
14744  usando el modo texto matemático:
14745 \begin_inset Formula \[
14746 5x-7b=3b\textrm{ Esto es una descripción. No está separada de la ecuación...}\]
14747
14748 \end_inset
14749
14750
14751 \end_layout
14752
14753 \begin_layout Section
14754 Operadores
14755 \begin_inset Index
14756 status collapsed
14757
14758 \begin_layout Plain Layout
14759 Operadores
14760 \end_layout
14761
14762 \end_inset
14763
14764
14765 \end_layout
14766
14767 \begin_layout Subsection
14768 Operadores grandes
14769 \begin_inset CommandInset label
14770 LatexCommand label
14771 name "sub:Operadores-grandes"
14772
14773 \end_inset
14774
14775
14776 \begin_inset Index
14777 status collapsed
14778
14779 \begin_layout Plain Layout
14780 Operadores ! grandes
14781 \end_layout
14782
14783 \end_inset
14784
14785
14786 \begin_inset Index
14787 status collapsed
14788
14789 \begin_layout Plain Layout
14790 Sumatorios
14791 \end_layout
14792
14793 \end_inset
14794
14795
14796 \begin_inset Index
14797 status collapsed
14798
14799 \begin_layout Plain Layout
14800 Integrales
14801 \end_layout
14802
14803 \end_inset
14804
14805
14806 \end_layout
14807
14808 \begin_layout Standard
14809 Para poder usar todos los comandos de integrales listados aquí, debe estar
14810  marcada la opción 
14811 \family sans
14812 Usar paquete esint automáticamente
14813 \family default
14814  en el apartado 
14815 \family sans
14816 Ecuaciones
14817 \family default
14818  de la configuración del documento.
14819  
14820 \end_layout
14821
14822 \begin_layout Standard
14823 \begin_inset Space \hfill{}
14824 \end_inset
14825
14826
14827 \begin_inset Tabular
14828 <lyxtabular version="3" rows="11" columns="2">
14829 <features>
14830 <column alignment="center" valignment="top" width="0pt">
14831 <column alignment="center" valignment="top" width="0pt">
14832 <row>
14833 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14834 \begin_inset Text
14835
14836 \begin_layout Plain Layout
14837 Comando
14838 \end_layout
14839
14840 \end_inset
14841 </cell>
14842 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14843 \begin_inset Text
14844
14845 \begin_layout Plain Layout
14846 Resultado
14847 \end_layout
14848
14849 \end_inset
14850 </cell>
14851 </row>
14852 <row>
14853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14854 \begin_inset Text
14855
14856 \begin_layout Plain Layout
14857
14858 \backslash
14859 sum
14860 \begin_inset Index
14861 status collapsed
14862
14863 \begin_layout Plain Layout
14864 Comandos ! S ! 
14865 \backslash
14866 sum
14867 \end_layout
14868
14869 \end_inset
14870
14871
14872 \end_layout
14873
14874 \end_inset
14875 </cell>
14876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14877 \begin_inset Text
14878
14879 \begin_layout Plain Layout
14880 \begin_inset Formula $\sum$
14881 \end_inset
14882
14883
14884 \end_layout
14885
14886 \end_inset
14887 </cell>
14888 </row>
14889 <row>
14890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14891 \begin_inset Text
14892
14893 \begin_layout Plain Layout
14894
14895 \backslash
14896 int
14897 \begin_inset Index
14898 status collapsed
14899
14900 \begin_layout Plain Layout
14901 Comandos ! I ! 
14902 \backslash
14903 int
14904 \end_layout
14905
14906 \end_inset
14907
14908
14909 \end_layout
14910
14911 \end_inset
14912 </cell>
14913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14914 \begin_inset Text
14915
14916 \begin_layout Plain Layout
14917 \begin_inset Formula $\int$
14918 \end_inset
14919
14920
14921 \end_layout
14922
14923 \end_inset
14924 </cell>
14925 </row>
14926 <row>
14927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14928 \begin_inset Text
14929
14930 \begin_layout Plain Layout
14931
14932 \backslash
14933 intop
14934 \end_layout
14935
14936 \end_inset
14937 </cell>
14938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14939 \begin_inset Text
14940
14941 \begin_layout Plain Layout
14942 \begin_inset Formula $\intop$
14943 \end_inset
14944
14945
14946 \end_layout
14947
14948 \end_inset
14949 </cell>
14950 </row>
14951 <row>
14952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14953 \begin_inset Text
14954
14955 \begin_layout Plain Layout
14956
14957 \backslash
14958 oint
14959 \end_layout
14960
14961 \end_inset
14962 </cell>
14963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14964 \begin_inset Text
14965
14966 \begin_layout Plain Layout
14967 \begin_inset Formula $\oint$
14968 \end_inset
14969
14970
14971 \end_layout
14972
14973 \end_inset
14974 </cell>
14975 </row>
14976 <row>
14977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14978 \begin_inset Text
14979
14980 \begin_layout Plain Layout
14981
14982 \backslash
14983 ointop
14984 \end_layout
14985
14986 \end_inset
14987 </cell>
14988 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14989 \begin_inset Text
14990
14991 \begin_layout Plain Layout
14992 \begin_inset Formula $\ointop$
14993 \end_inset
14994
14995
14996 \end_layout
14997
14998 \end_inset
14999 </cell>
15000 </row>
15001 <row>
15002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15003 \begin_inset Text
15004
15005 \begin_layout Plain Layout
15006
15007 \backslash
15008 ointctrclockwise
15009 \end_layout
15010
15011 \end_inset
15012 </cell>
15013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15014 \begin_inset Text
15015
15016 \begin_layout Plain Layout
15017 \begin_inset Formula $\ointctrclockwise$
15018 \end_inset
15019
15020
15021 \end_layout
15022
15023 \end_inset
15024 </cell>
15025 </row>
15026 <row>
15027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15028 \begin_inset Text
15029
15030 \begin_layout Plain Layout
15031
15032 \backslash
15033 ointclockwise
15034 \end_layout
15035
15036 \end_inset
15037 </cell>
15038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15039 \begin_inset Text
15040
15041 \begin_layout Plain Layout
15042 \begin_inset Formula $\ointclockwise$
15043 \end_inset
15044
15045
15046 \end_layout
15047
15048 \end_inset
15049 </cell>
15050 </row>
15051 <row>
15052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15053 \begin_inset Text
15054
15055 \begin_layout Plain Layout
15056
15057 \backslash
15058 sqint
15059 \end_layout
15060
15061 \end_inset
15062 </cell>
15063 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15064 \begin_inset Text
15065
15066 \begin_layout Plain Layout
15067 \begin_inset Formula $\sqint$
15068 \end_inset
15069
15070
15071 \end_layout
15072
15073 \end_inset
15074 </cell>
15075 </row>
15076 <row>
15077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15078 \begin_inset Text
15079
15080 \begin_layout Plain Layout
15081
15082 \backslash
15083 bigcap
15084 \end_layout
15085
15086 \end_inset
15087 </cell>
15088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15089 \begin_inset Text
15090
15091 \begin_layout Plain Layout
15092 \begin_inset Formula $\bigcap$
15093 \end_inset
15094
15095
15096 \end_layout
15097
15098 \end_inset
15099 </cell>
15100 </row>
15101 <row>
15102 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15103 \begin_inset Text
15104
15105 \begin_layout Plain Layout
15106
15107 \backslash
15108 bigcup
15109 \end_layout
15110
15111 \end_inset
15112 </cell>
15113 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15114 \begin_inset Text
15115
15116 \begin_layout Plain Layout
15117 \begin_inset Formula $\bigcup$
15118 \end_inset
15119
15120
15121 \end_layout
15122
15123 \end_inset
15124 </cell>
15125 </row>
15126 </lyxtabular>
15127
15128 \end_inset
15129
15130
15131 \begin_inset Space \hfill{}
15132 \end_inset
15133
15134
15135 \begin_inset Tabular
15136 <lyxtabular version="3" rows="10" columns="2">
15137 <features>
15138 <column alignment="center" valignment="top" width="0pt">
15139 <column alignment="center" valignment="top" width="0pt">
15140 <row>
15141 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15142 \begin_inset Text
15143
15144 \begin_layout Plain Layout
15145 Comando
15146 \end_layout
15147
15148 \end_inset
15149 </cell>
15150 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15151 \begin_inset Text
15152
15153 \begin_layout Plain Layout
15154 Resultado
15155 \end_layout
15156
15157 \end_inset
15158 </cell>
15159 </row>
15160 <row>
15161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15162 \begin_inset Text
15163
15164 \begin_layout Plain Layout
15165
15166 \backslash
15167 prod
15168 \begin_inset Index
15169 status collapsed
15170
15171 \begin_layout Plain Layout
15172 Comandos ! P ! 
15173 \backslash
15174 prod
15175 \end_layout
15176
15177 \end_inset
15178
15179
15180 \end_layout
15181
15182 \end_inset
15183 </cell>
15184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15185 \begin_inset Text
15186
15187 \begin_layout Plain Layout
15188 \begin_inset Formula $\prod$
15189 \end_inset
15190
15191
15192 \end_layout
15193
15194 \end_inset
15195 </cell>
15196 </row>
15197 <row>
15198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15199 \begin_inset Text
15200
15201 \begin_layout Plain Layout
15202
15203 \backslash
15204 coprod
15205 \end_layout
15206
15207 \end_inset
15208 </cell>
15209 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15210 \begin_inset Text
15211
15212 \begin_layout Plain Layout
15213 \begin_inset Formula $\coprod$
15214 \end_inset
15215
15216
15217 \end_layout
15218
15219 \end_inset
15220 </cell>
15221 </row>
15222 <row>
15223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15224 \begin_inset Text
15225
15226 \begin_layout Plain Layout
15227
15228 \backslash
15229 bigodot
15230 \end_layout
15231
15232 \end_inset
15233 </cell>
15234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15235 \begin_inset Text
15236
15237 \begin_layout Plain Layout
15238 \begin_inset Formula $\bigodot$
15239 \end_inset
15240
15241
15242 \end_layout
15243
15244 \end_inset
15245 </cell>
15246 </row>
15247 <row>
15248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15249 \begin_inset Text
15250
15251 \begin_layout Plain Layout
15252
15253 \backslash
15254 bigotimes
15255 \end_layout
15256
15257 \end_inset
15258 </cell>
15259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15260 \begin_inset Text
15261
15262 \begin_layout Plain Layout
15263 \begin_inset Formula $\bigotimes$
15264 \end_inset
15265
15266
15267 \end_layout
15268
15269 \end_inset
15270 </cell>
15271 </row>
15272 <row>
15273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15274 \begin_inset Text
15275
15276 \begin_layout Plain Layout
15277
15278 \backslash
15279 bigoplus
15280 \end_layout
15281
15282 \end_inset
15283 </cell>
15284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15285 \begin_inset Text
15286
15287 \begin_layout Plain Layout
15288 \begin_inset Formula $\bigoplus$
15289 \end_inset
15290
15291
15292 \end_layout
15293
15294 \end_inset
15295 </cell>
15296 </row>
15297 <row>
15298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15299 \begin_inset Text
15300
15301 \begin_layout Plain Layout
15302
15303 \backslash
15304 bigwedge
15305 \end_layout
15306
15307 \end_inset
15308 </cell>
15309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15310 \begin_inset Text
15311
15312 \begin_layout Plain Layout
15313 \begin_inset Formula $\bigwedge$
15314 \end_inset
15315
15316
15317 \end_layout
15318
15319 \end_inset
15320 </cell>
15321 </row>
15322 <row>
15323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15324 \begin_inset Text
15325
15326 \begin_layout Plain Layout
15327
15328 \backslash
15329 bigvee
15330 \end_layout
15331
15332 \end_inset
15333 </cell>
15334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15335 \begin_inset Text
15336
15337 \begin_layout Plain Layout
15338 \begin_inset Formula $\bigvee$
15339 \end_inset
15340
15341
15342 \end_layout
15343
15344 \end_inset
15345 </cell>
15346 </row>
15347 <row>
15348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15349 \begin_inset Text
15350
15351 \begin_layout Plain Layout
15352
15353 \backslash
15354 bigsqcup
15355 \end_layout
15356
15357 \end_inset
15358 </cell>
15359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15360 \begin_inset Text
15361
15362 \begin_layout Plain Layout
15363 \begin_inset Formula $\bigsqcup$
15364 \end_inset
15365
15366
15367 \end_layout
15368
15369 \end_inset
15370 </cell>
15371 </row>
15372 <row>
15373 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15374 \begin_inset Text
15375
15376 \begin_layout Plain Layout
15377
15378 \backslash
15379 biguplus
15380 \end_layout
15381
15382 \end_inset
15383 </cell>
15384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15385 \begin_inset Text
15386
15387 \begin_layout Plain Layout
15388 \begin_inset Formula $\biguplus$
15389 \end_inset
15390
15391
15392 \end_layout
15393
15394 \end_inset
15395 </cell>
15396 </row>
15397 </lyxtabular>
15398
15399 \end_inset
15400
15401
15402 \begin_inset Space \hfill{}
15403 \end_inset
15404
15405
15406 \end_layout
15407
15408 \begin_layout Standard
15409 Todos los operadores grandes se pueden insertar con el botón 
15410 \begin_inset Graphics
15411         filename ../../images/math/intop.png
15412         embed ""
15413         scale 85
15414
15415 \end_inset
15416
15417  de la barra de ecuaciones.
15418 \end_layout
15419
15420 \begin_layout Standard
15421 Estos operadores son llamados grandes porque son mayores que los operadores
15422  binarios de aspecto semejante.
15423  Todos los operadores grandes pueden tener límites, como se describe en
15424  la subsección siguiente.
15425 \end_layout
15426
15427 \begin_layout Standard
15428 Los operadores 
15429 \series bold
15430
15431 \backslash
15432 intop
15433 \series default
15434  y 
15435 \series bold
15436
15437 \backslash
15438 ointop
15439 \series default
15440  difieren de 
15441 \series bold
15442
15443 \backslash
15444 int
15445 \series default
15446  y 
15447 \series bold
15448
15449 \backslash
15450 oint
15451 \series default
15452  en el estilo en que se presentan los límites, véase
15453 \series bold
15454  
15455 \series default
15456
15457 \begin_inset CommandInset ref
15458 LatexCommand ref
15459 reference "sub:Límites-de-operadores"
15460
15461 \end_inset
15462
15463 .
15464 \end_layout
15465
15466 \begin_layout Subsubsection*
15467 Sugerencias para las integrales
15468 \end_layout
15469
15470 \begin_layout Standard
15471 La letra 
15472 \emph on
15473 d
15474 \emph default
15475  en una integral es un operador, por consiguiente debe escribirse en redonda.
15476  Esto se hace resaltando la 
15477 \emph on
15478 d
15479 \emph default
15480  y usando el atajo de teclado 
15481 \family sans
15482 Alt-c
15483 \begin_inset Space ~
15484 \end_inset
15485
15486 r
15487 \family default
15488 .
15489 \begin_inset Foot
15490 status open
15491
15492 \begin_layout Plain Layout
15493 véase estilos de letras en 
15494 \begin_inset CommandInset ref
15495 LatexCommand ref
15496 reference "sub:Estilos-de-fuentes"
15497
15498 \end_inset
15499
15500  
15501 \end_layout
15502
15503 \end_inset
15504
15505  Delante de la 
15506 \emph on
15507 d
15508 \emph default
15509  se inserta un espacio delgado, como es habitual en los operadores.
15510  Un ejemplo:
15511 \end_layout
15512
15513 \begin_layout Standard
15514 incorrecto: 
15515 \begin_inset Formula $\int A(x)dx$
15516 \end_inset
15517
15518
15519 \begin_inset Newline newline
15520 \end_inset
15521
15522
15523 \begin_inset ERT
15524 status collapsed
15525
15526 \begin_layout Plain Layout
15527
15528
15529 \backslash
15530 hphantom{in}
15531 \end_layout
15532
15533 \end_inset
15534
15535 correcto: 
15536 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15537 \end_inset
15538
15539
15540 \end_layout
15541
15542 \begin_layout Standard
15543 Para integrales múltiples hay los siguientes comandos:
15544 \begin_inset VSpace medskip
15545 \end_inset
15546
15547
15548 \end_layout
15549
15550 \begin_layout Standard
15551 \begin_inset Space \hfill{}
15552 \end_inset
15553
15554
15555 \begin_inset Tabular
15556 <lyxtabular version="3" rows="4" columns="2">
15557 <features>
15558 <column alignment="center" valignment="top" width="0">
15559 <column alignment="center" valignment="top" width="0">
15560 <row>
15561 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15562 \begin_inset Text
15563
15564 \begin_layout Plain Layout
15565 Comando
15566 \end_layout
15567
15568 \end_inset
15569 </cell>
15570 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15571 \begin_inset Text
15572
15573 \begin_layout Plain Layout
15574 Resultado
15575 \begin_inset Note Note
15576 status collapsed
15577
15578 \begin_layout Plain Layout
15579
15580 \series bold
15581
15582 \backslash
15583 raisebox
15584 \series default
15585  se usa sólo como espaciador
15586 \end_layout
15587
15588 \end_inset
15589
15590
15591 \end_layout
15592
15593 \end_inset
15594 </cell>
15595 </row>
15596 <row>
15597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15598 \begin_inset Text
15599
15600 \begin_layout Plain Layout
15601
15602 \backslash
15603 iint
15604 \end_layout
15605
15606 \end_inset
15607 </cell>
15608 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15609 \begin_inset Text
15610
15611 \begin_layout Plain Layout
15612 \begin_inset Formula $\raisebox {4.5mm}{}\iint\raisebox {-2.5mm}{}$
15613 \end_inset
15614
15615
15616 \end_layout
15617
15618 \end_inset
15619 </cell>
15620 </row>
15621 <row>
15622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15623 \begin_inset Text
15624
15625 \begin_layout Plain Layout
15626
15627 \backslash
15628 oiint
15629 \end_layout
15630
15631 \end_inset
15632 </cell>
15633 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15634 \begin_inset Text
15635
15636 \begin_layout Plain Layout
15637 \begin_inset Formula $\raisebox {4.5mm}{}\oiint\raisebox {-2.5mm}{}$
15638 \end_inset
15639
15640
15641 \end_layout
15642
15643 \end_inset
15644 </cell>
15645 </row>
15646 <row>
15647 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15648 \begin_inset Text
15649
15650 \begin_layout Plain Layout
15651
15652 \backslash
15653 sqiint
15654 \end_layout
15655
15656 \end_inset
15657 </cell>
15658 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15659 \begin_inset Text
15660
15661 \begin_layout Plain Layout
15662 \begin_inset Formula $\raisebox {4.5mm}{}\sqiint\raisebox {-2.5mm}{}$
15663 \end_inset
15664
15665
15666 \end_layout
15667
15668 \end_inset
15669 </cell>
15670 </row>
15671 </lyxtabular>
15672
15673 \end_inset
15674
15675
15676 \begin_inset Space \hfill{}
15677 \end_inset
15678
15679
15680 \begin_inset Tabular
15681 <lyxtabular version="3" rows="4" columns="2">
15682 <features>
15683 <column alignment="center" valignment="top" width="0">
15684 <column alignment="center" valignment="top" width="0">
15685 <row>
15686 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15687 \begin_inset Text
15688
15689 \begin_layout Plain Layout
15690 Comando
15691 \end_layout
15692
15693 \end_inset
15694 </cell>
15695 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15696 \begin_inset Text
15697
15698 \begin_layout Plain Layout
15699 Resultado
15700 \begin_inset Note Note
15701 status collapsed
15702
15703 \begin_layout Plain Layout
15704
15705 \series bold
15706
15707 \backslash
15708 raisebox
15709 \series default
15710  se usa sólo como espaciador
15711 \end_layout
15712
15713 \end_inset
15714
15715
15716 \end_layout
15717
15718 \end_inset
15719 </cell>
15720 </row>
15721 <row>
15722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15723 \begin_inset Text
15724
15725 \begin_layout Plain Layout
15726
15727 \backslash
15728 iiint
15729 \end_layout
15730
15731 \end_inset
15732 </cell>
15733 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15734 \begin_inset Text
15735
15736 \begin_layout Plain Layout
15737 \begin_inset Formula $\raisebox {4.5mm}{}\iiint\raisebox {-2.5mm}{}$
15738 \end_inset
15739
15740
15741 \end_layout
15742
15743 \end_inset
15744 </cell>
15745 </row>
15746 <row>
15747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15748 \begin_inset Text
15749
15750 \begin_layout Plain Layout
15751
15752 \backslash
15753 iiiint
15754 \end_layout
15755
15756 \end_inset
15757 </cell>
15758 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15759 \begin_inset Text
15760
15761 \begin_layout Plain Layout
15762 \begin_inset Formula $\raisebox {4.5mm}{}\iiiint\raisebox {-2.5mm}{}$
15763 \end_inset
15764
15765
15766 \end_layout
15767
15768 \end_inset
15769 </cell>
15770 </row>
15771 <row>
15772 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15773 \begin_inset Text
15774
15775 \begin_layout Plain Layout
15776
15777 \backslash
15778 dotsint
15779 \end_layout
15780
15781 \end_inset
15782 </cell>
15783 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15784 \begin_inset Text
15785
15786 \begin_layout Plain Layout
15787 \begin_inset Formula $\raisebox {4.5mm}{}\dotsint\raisebox {-2.5mm}{}$
15788 \end_inset
15789
15790
15791 \end_layout
15792
15793 \end_inset
15794 </cell>
15795 </row>
15796 </lyxtabular>
15797
15798 \end_inset
15799
15800
15801 \begin_inset Space \hfill{}
15802 \end_inset
15803
15804
15805 \end_layout
15806
15807 \begin_layout Subsection
15808 Límites de operadores
15809 \begin_inset CommandInset label
15810 LatexCommand label
15811 name "sub:Límites-de-operadores"
15812
15813 \end_inset
15814
15815
15816 \begin_inset Index
15817 status collapsed
15818
15819 \begin_layout Plain Layout
15820 Operadores ! límites de
15821 \end_layout
15822
15823 \end_inset
15824
15825
15826 \end_layout
15827
15828 \begin_layout Standard
15829 Los límites se crean mediante superíndices y subíndices:
15830 \end_layout
15831
15832 \begin_layout Standard
15833 \noindent
15834 \align center
15835 \begin_inset Tabular
15836 <lyxtabular version="3" rows="2" columns="2">
15837 <features>
15838 <column alignment="center" valignment="top" width="0">
15839 <column alignment="center" valignment="top" width="0">
15840 <row>
15841 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15842 \begin_inset Text
15843
15844 \begin_layout Plain Layout
15845 Comando
15846 \end_layout
15847
15848 \end_inset
15849 </cell>
15850 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15851 \begin_inset Text
15852
15853 \begin_layout Plain Layout
15854 Resultado
15855 \begin_inset Note Note
15856 status collapsed
15857
15858 \begin_layout Plain Layout
15859
15860 \series bold
15861
15862 \backslash
15863 raisebox
15864 \series default
15865  se usa sólo como espaciador
15866 \end_layout
15867
15868 \end_inset
15869
15870
15871 \end_layout
15872
15873 \end_inset
15874 </cell>
15875 </row>
15876 <row>
15877 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15878 \begin_inset Text
15879
15880 \begin_layout Plain Layout
15881
15882 \backslash
15883 prod^
15884 \backslash
15885 infty
15886 \begin_inset ERT
15887 status collapsed
15888
15889 \begin_layout Plain Layout
15890
15891
15892 \backslash
15893 spce 
15894 \end_layout
15895
15896 \end_inset
15897
15898
15899 \begin_inset Formula $\to$
15900 \end_inset
15901
15902 _0
15903 \begin_inset Formula $\to$
15904 \end_inset
15905
15906 A(x)
15907 \end_layout
15908
15909 \end_inset
15910 </cell>
15911 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15912 \begin_inset Text
15913
15914 \begin_layout Plain Layout
15915 \begin_inset Formula $\raisebox {5mm}{}\prod_{0}^{\infty}A(x)\raisebox {-2.5mm}{}$
15916 \end_inset
15917
15918
15919 \end_layout
15920
15921 \end_inset
15922 </cell>
15923 </row>
15924 </lyxtabular>
15925
15926 \end_inset
15927
15928
15929 \end_layout
15930
15931 \begin_layout Standard
15932 En ecuaciones en línea los límites se colocan al lado derecho del operador.
15933  En ecuaciones presentadas se colocan encima y debajo, excepto en las integrales.
15934 \end_layout
15935
15936 \begin_layout Standard
15937 Para forzar que los límites se coloquen junto al operador, se pone el cursor
15938  directamente detrás del operador y se elige 
15939 \series bold
15940 Insertado
15941 \series default
15942  en el menú 
15943 \family sans
15944 Editar\SpecialChar \menuseparator
15945 Ecuación\SpecialChar \menuseparator
15946 Cambiar tipo de límites
15947 \family default
15948  (atajo 
15949 \family sans
15950 Alt-m
15951 \begin_inset Space ~
15952 \end_inset
15953
15954 l
15955 \family default
15956 ).
15957  Un ejemplo:
15958 \end_layout
15959
15960 \begin_layout Standard
15961 Los límites por defecto son:
15962 \begin_inset Formula \[
15963 \sum_{x=0}^{\infty}\frac{1}{x^{2}}\]
15964
15965 \end_inset
15966
15967
15968 \end_layout
15969
15970 \begin_layout Standard
15971 Así se ven si se cambia el tipo de límites a 
15972 \series bold
15973 Insertado
15974 \series default
15975 :
15976 \begin_inset Formula \[
15977 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}\]
15978
15979 \end_inset
15980
15981
15982 \end_layout
15983
15984 \begin_layout Standard
15985 En integrales, excepto 
15986 \series bold
15987
15988 \backslash
15989 intop
15990 \series default
15991  y 
15992 \series bold
15993
15994 \backslash
15995 ointop
15996 \series default
15997 , los límites se colocan por defecto junto al operador.
15998  Pero en integrales múltiples los límites se ponen con frecuencia bajo el
15999  operador.
16000  Por tanto, en el siguiente ejemplo se ha elegido el tipo 
16001 \series bold
16002 Pantalla
16003 \series default
16004  para poner el límite debajo:
16005 \begin_inset Formula \begin{equation}
16006 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:IntVol}\end{equation}
16007
16008 \end_inset
16009
16010
16011 \begin_inset VSpace medskip
16012 \end_inset
16013
16014 Para especificar condiciones en los límites se usan los comandos 
16015 \series bold
16016
16017 \backslash
16018 subarray
16019 \series default
16020
16021 \begin_inset Index
16022 status collapsed
16023
16024 \begin_layout Plain Layout
16025 Comandos ! S ! 
16026 \backslash
16027 subarray
16028 \end_layout
16029
16030 \end_inset
16031
16032  y 
16033 \series bold
16034
16035 \backslash
16036 substack
16037 \series default
16038
16039 \begin_inset Index
16040 status collapsed
16041
16042 \begin_layout Plain Layout
16043 Comandos ! S ! 
16044 \backslash
16045 substack
16046 \end_layout
16047
16048 \end_inset
16049
16050 .
16051  Por ejemplo, para componer la expresión
16052 \begin_inset Formula \begin{equation}
16053 \sum_{\begin{subarray}{c}
16054 0<k<1000\\
16055 \\k\,\in\,\mathbb{N}\end{subarray}}^{n}k^{-2}\label{eq:substack}\end{equation}
16056
16057 \end_inset
16058
16059 se ha hecho lo siguiente: primero se escribe el comando 
16060 \series bold
16061
16062 \backslash
16063 sum^n
16064 \series default
16065
16066 \begin_inset ERT
16067 status collapsed
16068
16069 \begin_layout Plain Layout
16070
16071
16072 \backslash
16073 spce 
16074 \end_layout
16075
16076 \end_inset
16077
16078
16079 \series bold
16080 _
16081 \series default
16082 .
16083  Ahora el cursor está en un cuadro azul bajo el operador sumatorio y ahí
16084  se inserta el comando 
16085 \series bold
16086
16087 \backslash
16088 subarray
16089 \series default
16090
16091 \begin_inset ERT
16092 status collapsed
16093
16094 \begin_layout Plain Layout
16095
16096
16097 \backslash
16098 spce 
16099 \end_layout
16100
16101 \end_inset
16102
16103 .
16104  Ahora el cuadro azul está en un marco púrpura donde pueden escribirse líneas
16105  distintas.
16106  Cada línea nueva se crea con un salto de línea (
16107 \family sans
16108 Ctrl-Intro
16109 \family default
16110 ).
16111  Si ahora se escribe en ella
16112 \begin_inset Newline newline
16113 \end_inset
16114
16115
16116 \series bold
16117 0<k<1000 Ctrl-Intro
16118 \begin_inset Newline newline
16119 \end_inset
16120
16121
16122 \series default
16123 aparece debajo un nuevo marco para la línea nueva.
16124 \end_layout
16125
16126 \begin_layout Standard
16127 La alineación de las líneas puede cambiarse a la izquierda con la 
16128 \family sans
16129 barra de herramientas de tabla
16130 \family default
16131  o con el menú 
16132 \family sans
16133 Editar\SpecialChar \menuseparator
16134 Filas y columnas
16135 \family default
16136 .
16137  Para obtener alineación derecha se inserta 
16138 \series bold
16139
16140 \backslash
16141 hfill
16142 \series default
16143
16144 \begin_inset ERT
16145 status collapsed
16146
16147 \begin_layout Plain Layout
16148
16149
16150 \backslash
16151 spce 
16152 \end_layout
16153
16154 \end_inset
16155
16156  al principio de la línea.
16157 \end_layout
16158
16159 \begin_layout Standard
16160 El comando 
16161 \series bold
16162
16163 \backslash
16164 substack
16165 \series default
16166  es equivalente a 
16167 \series bold
16168
16169 \backslash
16170 subarray
16171 \series default
16172  con la diferencia de que las líneas están siempre centradas.
16173 \begin_inset VSpace bigskip
16174 \end_inset
16175
16176
16177 \end_layout
16178
16179 \begin_layout Standard
16180 Puede ocurrir que haya demasiado espacio entre el operador y los caracteres
16181  siguientes, como en la ecuación 
16182 \begin_inset CommandInset ref
16183 LatexCommand eqref
16184 reference "eq:substack"
16185
16186 \end_inset
16187
16188 , porque éstos se colocan junto a los límites.
16189 \end_layout
16190
16191 \begin_layout Standard
16192 Para evitarlo se puede usar la siguiente macro en el preámbulo:
16193 \end_layout
16194
16195 \begin_layout Standard
16196
16197 \series bold
16198
16199 \backslash
16200 def
16201 \backslash
16202 clap#1{
16203 \backslash
16204 hbox to 0pt{
16205 \backslash
16206 hss #1
16207 \backslash
16208 hss}}
16209 \begin_inset Newline newline
16210 \end_inset
16211
16212
16213 \backslash
16214 def
16215 \backslash
16216 mathclap {
16217 \backslash
16218 mathpalette 
16219 \backslash
16220 mathclapinternal}
16221 \begin_inset Newline newline
16222 \end_inset
16223
16224
16225 \backslash
16226 def
16227 \backslash
16228 mathclapinternal #1#2{
16229 \backslash
16230 clap{$
16231 \backslash
16232 mathsurround =0pt #1{#2}$}}
16233 \end_layout
16234
16235 \begin_layout Standard
16236 En ella se define el comando 
16237 \series bold
16238
16239 \backslash
16240 mathclap
16241 \series default
16242
16243 \begin_inset Index
16244 status collapsed
16245
16246 \begin_layout Plain Layout
16247 Comandos ! M ! 
16248 \backslash
16249 mathclap
16250 \end_layout
16251
16252 \end_inset
16253
16254  que establece la anchura del límite en 0
16255 \begin_inset Space \thinspace{}
16256 \end_inset
16257
16258 pt.
16259  El esquema del comando es:
16260 \end_layout
16261
16262 \begin_layout Standard
16263
16264 \series bold
16265
16266 \backslash
16267 mathclap{límite}
16268 \end_layout
16269
16270 \begin_layout Standard
16271 donde el límite puede consistir en varias condiciones.
16272 \end_layout
16273
16274 \begin_layout Standard
16275 Aplicado en la ecuación 
16276 \begin_inset CommandInset ref
16277 LatexCommand eqref
16278 reference "eq:substack"
16279
16280 \end_inset
16281
16282  se usa el comando
16283 \end_layout
16284
16285 \begin_layout Standard
16286
16287 \series bold
16288
16289 \backslash
16290 sum_
16291 \backslash
16292 mathclap{
16293 \backslash
16294 substack
16295 \begin_inset ERT
16296 status collapsed
16297
16298 \begin_layout Plain Layout
16299
16300
16301 \backslash
16302 spce 
16303 \end_layout
16304
16305 \end_inset
16306
16307 0<k<1000 Ctrl-Intro
16308 \end_layout
16309
16310 \begin_layout Standard
16311 para componer el límite inferior.
16312  Ahora el sumando está junto al sumatorio:
16313 \begin_inset Formula \[
16314 \sum_{\mathclap {\substack{0<k<1000\\
16315 \\k\,\in\,\mathbb{N}}
16316 }}^{n}k^{-2}\]
16317
16318 \end_inset
16319
16320
16321 \begin_inset VSpace bigskip
16322 \end_inset
16323
16324 Cómo utilizar un límite para varios operadores se describe en la 
16325 \begin_inset CommandInset ref
16326 LatexCommand ref
16327 reference "sub:Operadores-de-usuario"
16328
16329 \end_inset
16330
16331 .
16332 \end_layout
16333
16334 \begin_layout Subsection
16335 Operadores binarios
16336 \begin_inset CommandInset label
16337 LatexCommand label
16338 name "sub:Operadores-binarios"
16339
16340 \end_inset
16341
16342
16343 \begin_inset Index
16344 status collapsed
16345
16346 \begin_layout Plain Layout
16347 Operadores ! binarios
16348 \end_layout
16349
16350 \end_inset
16351
16352
16353 \end_layout
16354
16355 \begin_layout Standard
16356 Los operadores binarios se rodean por espacios si llevan un carácter delante
16357  o detrás.
16358 \begin_inset VSpace medskip
16359 \end_inset
16360
16361
16362 \end_layout
16363
16364 \begin_layout Standard
16365 \begin_inset Space \hfill{}
16366 \end_inset
16367
16368
16369 \begin_inset Tabular
16370 <lyxtabular version="3" rows="13" columns="2">
16371 <features>
16372 <column alignment="center" valignment="top" width="0pt">
16373 <column alignment="center" valignment="top" width="0pt">
16374 <row>
16375 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16376 \begin_inset Text
16377
16378 \begin_layout Plain Layout
16379 Comando
16380 \begin_inset Note Note
16381 status collapsed
16382
16383 \begin_layout Plain Layout
16384
16385 \series bold
16386
16387 \backslash
16388 raisebox
16389 \series default
16390  se usa sólo como espaciador
16391 \end_layout
16392
16393 \end_inset
16394
16395
16396 \end_layout
16397
16398 \end_inset
16399 </cell>
16400 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16401 \begin_inset Text
16402
16403 \begin_layout Plain Layout
16404 Operador
16405 \end_layout
16406
16407 \end_inset
16408 </cell>
16409 </row>
16410 <row>
16411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16412 \begin_inset Text
16413
16414 \begin_layout Plain Layout
16415 +
16416 \end_layout
16417
16418 \end_inset
16419 </cell>
16420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16421 \begin_inset Text
16422
16423 \begin_layout Plain Layout
16424 \begin_inset Formula $+$
16425 \end_inset
16426
16427
16428 \end_layout
16429
16430 \end_inset
16431 </cell>
16432 </row>
16433 <row>
16434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16435 \begin_inset Text
16436
16437 \begin_layout Plain Layout
16438 -
16439 \end_layout
16440
16441 \end_inset
16442 </cell>
16443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16444 \begin_inset Text
16445
16446 \begin_layout Plain Layout
16447 \begin_inset Formula $-$
16448 \end_inset
16449
16450
16451 \end_layout
16452
16453 \end_inset
16454 </cell>
16455 </row>
16456 <row>
16457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16458 \begin_inset Text
16459
16460 \begin_layout Plain Layout
16461
16462 \backslash
16463 pm
16464 \end_layout
16465
16466 \end_inset
16467 </cell>
16468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16469 \begin_inset Text
16470
16471 \begin_layout Plain Layout
16472 \begin_inset Formula $\pm$
16473 \end_inset
16474
16475
16476 \end_layout
16477
16478 \end_inset
16479 </cell>
16480 </row>
16481 <row>
16482 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16483 \begin_inset Text
16484
16485 \begin_layout Plain Layout
16486
16487 \backslash
16488 mp
16489 \end_layout
16490
16491 \end_inset
16492 </cell>
16493 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16494 \begin_inset Text
16495
16496 \begin_layout Plain Layout
16497 \begin_inset Formula $\mp$
16498 \end_inset
16499
16500
16501 \end_layout
16502
16503 \end_inset
16504 </cell>
16505 </row>
16506 <row>
16507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16508 \begin_inset Text
16509
16510 \begin_layout Plain Layout
16511
16512 \backslash
16513 cdot
16514 \end_layout
16515
16516 \end_inset
16517 </cell>
16518 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16519 \begin_inset Text
16520
16521 \begin_layout Plain Layout
16522 \begin_inset Formula $\cdot$
16523 \end_inset
16524
16525
16526 \end_layout
16527
16528 \end_inset
16529 </cell>
16530 </row>
16531 <row>
16532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16533 \begin_inset Text
16534
16535 \begin_layout Plain Layout
16536
16537 \backslash
16538 times
16539 \end_layout
16540
16541 \end_inset
16542 </cell>
16543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16544 \begin_inset Text
16545
16546 \begin_layout Plain Layout
16547 \begin_inset Formula $\times$
16548 \end_inset
16549
16550
16551 \end_layout
16552
16553 \end_inset
16554 </cell>
16555 </row>
16556 <row>
16557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16558 \begin_inset Text
16559
16560 \begin_layout Plain Layout
16561
16562 \backslash
16563 div
16564 \end_layout
16565
16566 \end_inset
16567 </cell>
16568 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16569 \begin_inset Text
16570
16571 \begin_layout Plain Layout
16572 \begin_inset Formula $\div$
16573 \end_inset
16574
16575
16576 \end_layout
16577
16578 \end_inset
16579 </cell>
16580 </row>
16581 <row>
16582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16583 \begin_inset Text
16584
16585 \begin_layout Plain Layout
16586 \begin_inset ERT
16587 status collapsed
16588
16589 \begin_layout Plain Layout
16590
16591
16592 \backslash
16593 raisebox{-1.2mm}{
16594 \end_layout
16595
16596 \end_inset
16597
16598 *
16599 \begin_inset ERT
16600 status collapsed
16601
16602 \begin_layout Plain Layout
16603
16604 }
16605 \end_layout
16606
16607 \end_inset
16608
16609
16610 \end_layout
16611
16612 \end_inset
16613 </cell>
16614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16615 \begin_inset Text
16616
16617 \begin_layout Plain Layout
16618 \begin_inset Formula $*$
16619 \end_inset
16620
16621
16622 \end_layout
16623
16624 \end_inset
16625 </cell>
16626 </row>
16627 <row>
16628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16629 \begin_inset Text
16630
16631 \begin_layout Plain Layout
16632
16633 \backslash
16634 star
16635 \end_layout
16636
16637 \end_inset
16638 </cell>
16639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16640 \begin_inset Text
16641
16642 \begin_layout Plain Layout
16643 \begin_inset Formula $\star$
16644 \end_inset
16645
16646
16647 \end_layout
16648
16649 \end_inset
16650 </cell>
16651 </row>
16652 <row>
16653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16654 \begin_inset Text
16655
16656 \begin_layout Plain Layout
16657
16658 \backslash
16659 circ
16660 \end_layout
16661
16662 \end_inset
16663 </cell>
16664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16665 \begin_inset Text
16666
16667 \begin_layout Plain Layout
16668 \begin_inset Formula $\circ$
16669 \end_inset
16670
16671
16672 \end_layout
16673
16674 \end_inset
16675 </cell>
16676 </row>
16677 <row>
16678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16679 \begin_inset Text
16680
16681 \begin_layout Plain Layout
16682
16683 \backslash
16684 diamond
16685 \end_layout
16686
16687 \end_inset
16688 </cell>
16689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16690 \begin_inset Text
16691
16692 \begin_layout Plain Layout
16693 \begin_inset Formula $\diamond$
16694 \end_inset
16695
16696
16697 \end_layout
16698
16699 \end_inset
16700 </cell>
16701 </row>
16702 <row>
16703 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16704 \begin_inset Text
16705
16706 \begin_layout Plain Layout
16707
16708 \backslash
16709 bullet
16710 \end_layout
16711
16712 \end_inset
16713 </cell>
16714 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16715 \begin_inset Text
16716
16717 \begin_layout Plain Layout
16718 \begin_inset Formula $\bullet$
16719 \end_inset
16720
16721
16722 \end_layout
16723
16724 \end_inset
16725 </cell>
16726 </row>
16727 </lyxtabular>
16728
16729 \end_inset
16730
16731
16732 \begin_inset Space \hfill{}
16733 \end_inset
16734
16735
16736 \begin_inset Tabular
16737 <lyxtabular version="3" rows="13" columns="2">
16738 <features>
16739 <column alignment="center" valignment="top" width="0pt">
16740 <column alignment="center" valignment="top" width="0pt">
16741 <row>
16742 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16743 \begin_inset Text
16744
16745 \begin_layout Plain Layout
16746 Comando
16747 \end_layout
16748
16749 \end_inset
16750 </cell>
16751 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16752 \begin_inset Text
16753
16754 \begin_layout Plain Layout
16755 Operador
16756 \end_layout
16757
16758 \end_inset
16759 </cell>
16760 </row>
16761 <row>
16762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16763 \begin_inset Text
16764
16765 \begin_layout Plain Layout
16766
16767 \backslash
16768 nabla
16769 \end_layout
16770
16771 \end_inset
16772 </cell>
16773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16774 \begin_inset Text
16775
16776 \begin_layout Plain Layout
16777 \begin_inset Formula $\nabla$
16778 \end_inset
16779
16780
16781 \end_layout
16782
16783 \end_inset
16784 </cell>
16785 </row>
16786 <row>
16787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16788 \begin_inset Text
16789
16790 \begin_layout Plain Layout
16791
16792 \backslash
16793 bigtriangledown
16794 \end_layout
16795
16796 \end_inset
16797 </cell>
16798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16799 \begin_inset Text
16800
16801 \begin_layout Plain Layout
16802 \begin_inset Formula $\bigtriangledown$
16803 \end_inset
16804
16805
16806 \end_layout
16807
16808 \end_inset
16809 </cell>
16810 </row>
16811 <row>
16812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16813 \begin_inset Text
16814
16815 \begin_layout Plain Layout
16816
16817 \backslash
16818 bigtriangleup
16819 \end_layout
16820
16821 \end_inset
16822 </cell>
16823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16824 \begin_inset Text
16825
16826 \begin_layout Plain Layout
16827 \begin_inset Formula $\bigtriangleup$
16828 \end_inset
16829
16830
16831 \end_layout
16832
16833 \end_inset
16834 </cell>
16835 </row>
16836 <row>
16837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16838 \begin_inset Text
16839
16840 \begin_layout Plain Layout
16841
16842 \backslash
16843 Box
16844 \end_layout
16845
16846 \end_inset
16847 </cell>
16848 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16849 \begin_inset Text
16850
16851 \begin_layout Plain Layout
16852 \begin_inset Formula $\Box$
16853 \end_inset
16854
16855
16856 \end_layout
16857
16858 \end_inset
16859 </cell>
16860 </row>
16861 <row>
16862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16863 \begin_inset Text
16864
16865 \begin_layout Plain Layout
16866
16867 \backslash
16868 cap 
16869 \end_layout
16870
16871 \end_inset
16872 </cell>
16873 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16874 \begin_inset Text
16875
16876 \begin_layout Plain Layout
16877 \begin_inset Formula $\cap$
16878 \end_inset
16879
16880
16881 \end_layout
16882
16883 \end_inset
16884 </cell>
16885 </row>
16886 <row>
16887 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16888 \begin_inset Text
16889
16890 \begin_layout Plain Layout
16891
16892 \backslash
16893 cup
16894 \end_layout
16895
16896 \end_inset
16897 </cell>
16898 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16899 \begin_inset Text
16900
16901 \begin_layout Plain Layout
16902 \begin_inset Formula $\cup$
16903 \end_inset
16904
16905
16906 \end_layout
16907
16908 \end_inset
16909 </cell>
16910 </row>
16911 <row>
16912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16913 \begin_inset Text
16914
16915 \begin_layout Plain Layout
16916
16917 \backslash
16918 dagger
16919 \end_layout
16920
16921 \end_inset
16922 </cell>
16923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16924 \begin_inset Text
16925
16926 \begin_layout Plain Layout
16927 \begin_inset Formula $\dagger$
16928 \end_inset
16929
16930
16931 \end_layout
16932
16933 \end_inset
16934 </cell>
16935 </row>
16936 <row>
16937 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16938 \begin_inset Text
16939
16940 \begin_layout Plain Layout
16941
16942 \backslash
16943 ddagger
16944 \end_layout
16945
16946 \end_inset
16947 </cell>
16948 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16949 \begin_inset Text
16950
16951 \begin_layout Plain Layout
16952 \begin_inset Formula $\ddagger$
16953 \end_inset
16954
16955
16956 \end_layout
16957
16958 \end_inset
16959 </cell>
16960 </row>
16961 <row>
16962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16963 \begin_inset Text
16964
16965 \begin_layout Plain Layout
16966
16967 \backslash
16968 wr
16969 \end_layout
16970
16971 \end_inset
16972 </cell>
16973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16974 \begin_inset Text
16975
16976 \begin_layout Plain Layout
16977 \begin_inset Formula $\wr$
16978 \end_inset
16979
16980
16981 \end_layout
16982
16983 \end_inset
16984 </cell>
16985 </row>
16986 <row>
16987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16988 \begin_inset Text
16989
16990 \begin_layout Plain Layout
16991
16992 \backslash
16993 bigcirc
16994 \end_layout
16995
16996 \end_inset
16997 </cell>
16998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16999 \begin_inset Text
17000
17001 \begin_layout Plain Layout
17002 \begin_inset Formula $\bigcirc$
17003 \end_inset
17004
17005
17006 \end_layout
17007
17008 \end_inset
17009 </cell>
17010 </row>
17011 <row>
17012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17013 \begin_inset Text
17014
17015 \begin_layout Plain Layout
17016
17017 \backslash
17018 wedge
17019 \end_layout
17020
17021 \end_inset
17022 </cell>
17023 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17024 \begin_inset Text
17025
17026 \begin_layout Plain Layout
17027 \begin_inset Formula $\wedge$
17028 \end_inset
17029
17030
17031 \end_layout
17032
17033 \end_inset
17034 </cell>
17035 </row>
17036 <row>
17037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17038 \begin_inset Text
17039
17040 \begin_layout Plain Layout
17041
17042 \backslash
17043 vee
17044 \end_layout
17045
17046 \end_inset
17047 </cell>
17048 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17049 \begin_inset Text
17050
17051 \begin_layout Plain Layout
17052 \begin_inset Formula $\vee$
17053 \end_inset
17054
17055
17056 \end_layout
17057
17058 \end_inset
17059 </cell>
17060 </row>
17061 </lyxtabular>
17062
17063 \end_inset
17064
17065
17066 \begin_inset Space \hfill{}
17067 \end_inset
17068
17069
17070 \begin_inset Tabular
17071 <lyxtabular version="3" rows="13" columns="2">
17072 <features>
17073 <column alignment="center" valignment="top" width="0pt">
17074 <column alignment="center" valignment="top" width="0pt">
17075 <row>
17076 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17077 \begin_inset Text
17078
17079 \begin_layout Plain Layout
17080 Comando
17081 \end_layout
17082
17083 \end_inset
17084 </cell>
17085 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17086 \begin_inset Text
17087
17088 \begin_layout Plain Layout
17089 Operador
17090 \end_layout
17091
17092 \end_inset
17093 </cell>
17094 </row>
17095 <row>
17096 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17097 \begin_inset Text
17098
17099 \begin_layout Plain Layout
17100
17101 \backslash
17102 oplus
17103 \end_layout
17104
17105 \end_inset
17106 </cell>
17107 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17108 \begin_inset Text
17109
17110 \begin_layout Plain Layout
17111 \begin_inset Formula $\oplus$
17112 \end_inset
17113
17114
17115 \end_layout
17116
17117 \end_inset
17118 </cell>
17119 </row>
17120 <row>
17121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17122 \begin_inset Text
17123
17124 \begin_layout Plain Layout
17125
17126 \backslash
17127 ominus
17128 \end_layout
17129
17130 \end_inset
17131 </cell>
17132 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17133 \begin_inset Text
17134
17135 \begin_layout Plain Layout
17136 \begin_inset Formula $\ominus$
17137 \end_inset
17138
17139
17140 \end_layout
17141
17142 \end_inset
17143 </cell>
17144 </row>
17145 <row>
17146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17147 \begin_inset Text
17148
17149 \begin_layout Plain Layout
17150
17151 \backslash
17152 otimes
17153 \end_layout
17154
17155 \end_inset
17156 </cell>
17157 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17158 \begin_inset Text
17159
17160 \begin_layout Plain Layout
17161 \begin_inset Formula $\otimes$
17162 \end_inset
17163
17164
17165 \end_layout
17166
17167 \end_inset
17168 </cell>
17169 </row>
17170 <row>
17171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17172 \begin_inset Text
17173
17174 \begin_layout Plain Layout
17175
17176 \backslash
17177 oslash
17178 \end_layout
17179
17180 \end_inset
17181 </cell>
17182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17183 \begin_inset Text
17184
17185 \begin_layout Plain Layout
17186 \begin_inset Formula $\oslash$
17187 \end_inset
17188
17189
17190 \end_layout
17191
17192 \end_inset
17193 </cell>
17194 </row>
17195 <row>
17196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17197 \begin_inset Text
17198
17199 \begin_layout Plain Layout
17200
17201 \backslash
17202 odot
17203 \end_layout
17204
17205 \end_inset
17206 </cell>
17207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17208 \begin_inset Text
17209
17210 \begin_layout Plain Layout
17211 \begin_inset Formula $\odot$
17212 \end_inset
17213
17214
17215 \end_layout
17216
17217 \end_inset
17218 </cell>
17219 </row>
17220 <row>
17221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17222 \begin_inset Text
17223
17224 \begin_layout Plain Layout
17225
17226 \backslash
17227 amalg
17228 \end_layout
17229
17230 \end_inset
17231 </cell>
17232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17233 \begin_inset Text
17234
17235 \begin_layout Plain Layout
17236 \begin_inset Formula $\amalg$
17237 \end_inset
17238
17239
17240 \end_layout
17241
17242 \end_inset
17243 </cell>
17244 </row>
17245 <row>
17246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17247 \begin_inset Text
17248
17249 \begin_layout Plain Layout
17250
17251 \backslash
17252 uplus
17253 \end_layout
17254
17255 \end_inset
17256 </cell>
17257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17258 \begin_inset Text
17259
17260 \begin_layout Plain Layout
17261 \begin_inset Formula $\uplus$
17262 \end_inset
17263
17264
17265 \end_layout
17266
17267 \end_inset
17268 </cell>
17269 </row>
17270 <row>
17271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17272 \begin_inset Text
17273
17274 \begin_layout Plain Layout
17275
17276 \backslash
17277 setminus
17278 \end_layout
17279
17280 \end_inset
17281 </cell>
17282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17283 \begin_inset Text
17284
17285 \begin_layout Plain Layout
17286 \begin_inset Formula $\setminus$
17287 \end_inset
17288
17289
17290 \end_layout
17291
17292 \end_inset
17293 </cell>
17294 </row>
17295 <row>
17296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17297 \begin_inset Text
17298
17299 \begin_layout Plain Layout
17300
17301 \backslash
17302 sqcap
17303 \end_layout
17304
17305 \end_inset
17306 </cell>
17307 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17308 \begin_inset Text
17309
17310 \begin_layout Plain Layout
17311 \begin_inset Formula $\sqcap$
17312 \end_inset
17313
17314
17315 \end_layout
17316
17317 \end_inset
17318 </cell>
17319 </row>
17320 <row>
17321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17322 \begin_inset Text
17323
17324 \begin_layout Plain Layout
17325
17326 \backslash
17327 sqcup
17328 \end_layout
17329
17330 \end_inset
17331 </cell>
17332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17333 \begin_inset Text
17334
17335 \begin_layout Plain Layout
17336 \begin_inset Formula $\sqcup$
17337 \end_inset
17338
17339
17340 \end_layout
17341
17342 \end_inset
17343 </cell>
17344 </row>
17345 <row>
17346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17347 \begin_inset Text
17348
17349 \begin_layout Plain Layout
17350
17351 \backslash
17352 triangleleft
17353 \end_layout
17354
17355 \end_inset
17356 </cell>
17357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17358 \begin_inset Text
17359
17360 \begin_layout Plain Layout
17361 \begin_inset Formula $\triangleleft$
17362 \end_inset
17363
17364
17365 \end_layout
17366
17367 \end_inset
17368 </cell>
17369 </row>
17370 <row>
17371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17372 \begin_inset Text
17373
17374 \begin_layout Plain Layout
17375
17376 \backslash
17377 triangleright
17378 \end_layout
17379
17380 \end_inset
17381 </cell>
17382 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17383 \begin_inset Text
17384
17385 \begin_layout Plain Layout
17386 \begin_inset Formula $\triangleright$
17387 \end_inset
17388
17389
17390 \end_layout
17391
17392 \end_inset
17393 </cell>
17394 </row>
17395 </lyxtabular>
17396
17397 \end_inset
17398
17399
17400 \begin_inset Space \hfill{}
17401 \end_inset
17402
17403
17404 \end_layout
17405
17406 \begin_layout Standard
17407 Todos los operadores binarios se pueden insertar también con el botón 
17408 \begin_inset Graphics
17409         filename ../../images/math/pm.png
17410         embed ""
17411         scale 85
17412
17413 \end_inset
17414
17415  de la barra de ecuaciones.
17416 \end_layout
17417
17418 \begin_layout Standard
17419 Para imprimir el operador Laplace se pueden usar 
17420 \series bold
17421
17422 \backslash
17423 Delta
17424 \series default
17425  o 
17426 \series bold
17427
17428 \backslash
17429 nabla
17430 \series default
17431 ^
17432 \series bold
17433 2
17434 \series default
17435  (
17436 \begin_inset Formula $\nabla^{2}$
17437 \end_inset
17438
17439 ) en vez de 
17440 \series bold
17441
17442 \backslash
17443 bigtriangleup
17444 \series default
17445 .
17446 \end_layout
17447
17448 \begin_layout Standard
17449 El carácter 
17450 \family sans
17451 Separador de menú
17452 \family default
17453  del menú 
17454 \family sans
17455 Insertar\SpecialChar \menuseparator
17456 Carácter especial
17457 \family default
17458  es el operador 
17459 \series bold
17460
17461 \backslash
17462 triangleright
17463 \series default
17464 .
17465 \end_layout
17466
17467 \begin_layout Subsection
17468 Operadores definidos por el usuario
17469 \begin_inset CommandInset label
17470 LatexCommand label
17471 name "sub:Operadores-de-usuario"
17472
17473 \end_inset
17474
17475
17476 \begin_inset Index
17477 status collapsed
17478
17479 \begin_layout Plain Layout
17480 Operadores ! personalizados
17481 \end_layout
17482
17483 \end_inset
17484
17485
17486 \end_layout
17487
17488 \begin_layout Standard
17489 Con ayuda del comando 
17490 \series bold
17491
17492 \backslash
17493 DeclareMathOperator
17494 \series default
17495
17496 \begin_inset Index
17497 status collapsed
17498
17499 \begin_layout Plain Layout
17500 Comandos ! D ! 
17501 \backslash
17502 dbinom@
17503 \backslash
17504 DeclareMathOperator
17505 \end_layout
17506
17507 \end_inset
17508
17509  se pueden definir operadores personalizados en el preámbulo LaTeX.
17510  Su esquema es:
17511 \end_layout
17512
17513 \begin_layout Standard
17514
17515 \series bold
17516
17517 \backslash
17518 DeclareMathOperator{comando nuevo}{presentación}
17519 \end_layout
17520
17521 \begin_layout Standard
17522 Presentación puede ser un carácter o símbolo que define el aspecto del operador
17523  en la salida.
17524  Para definir un operador grande hay que añadirle un * detrás.
17525  Todos los operadores grandes personalizados pueden tener límites como se
17526  describe en 
17527 \begin_inset CommandInset ref
17528 LatexCommand ref
17529 reference "sub:Límites-de-operadores"
17530
17531 \end_inset
17532
17533 .
17534 \end_layout
17535
17536 \begin_layout Standard
17537 Por ejemplo, la línea en el preámbulo LaTeX
17538 \end_layout
17539
17540 \begin_layout Standard
17541
17542 \series bold
17543
17544 \backslash
17545 DeclareMathOperator*{
17546 \backslash
17547 Lozenge}{
17548 \backslash
17549 blacklozenge}
17550 \end_layout
17551
17552 \begin_layout Standard
17553 define el comando 
17554 \series bold
17555
17556 \backslash
17557 Lozenge
17558 \series default
17559 , que inserta un operador grande que es el símbolo blacklozenge de la 
17560 \begin_inset CommandInset ref
17561 LatexCommand ref
17562 reference "sub:Símbolos-misceláneos"
17563
17564 \end_inset
17565
17566 .
17567 \begin_inset Formula \[
17568 \Lozenge _{n=1}^{\infty}\]
17569
17570 \end_inset
17571
17572 El comando para esta expresión es: 
17573 \series bold
17574
17575 \backslash
17576 Lozenge^
17577 \backslash
17578 infty
17579 \begin_inset Formula $\rightarrow$
17580 \end_inset
17581
17582 _n=1
17583 \begin_inset VSpace bigskip
17584 \end_inset
17585
17586
17587 \end_layout
17588
17589 \begin_layout Standard
17590 Si los operadores personalizados no se van a usar varias veces en el documento,
17591  se pueden también definir con los comandos 
17592 \series bold
17593
17594 \backslash
17595 mathop
17596 \series default
17597
17598 \begin_inset Index
17599 status collapsed
17600
17601 \begin_layout Plain Layout
17602 Comandos ! M ! 
17603 \backslash
17604 mathop
17605 \end_layout
17606
17607 \end_inset
17608
17609  y 
17610 \series bold
17611
17612 \backslash
17613 mathbin
17614 \series default
17615
17616 \begin_inset Index
17617 status collapsed
17618
17619 \begin_layout Plain Layout
17620 Comandos ! M ! 
17621 \backslash
17622 mathbin
17623 \end_layout
17624
17625 \end_inset
17626
17627 , con el siguiente esquema:
17628 \end_layout
17629
17630 \begin_layout Standard
17631
17632 \series bold
17633
17634 \backslash
17635 mathop{presentación}
17636 \series default
17637  y 
17638 \series bold
17639
17640 \backslash
17641 mathbin{presentación}
17642 \end_layout
17643
17644 \begin_layout Standard
17645
17646 \series bold
17647
17648 \backslash
17649 mathop
17650 \series default
17651  define operadores grandes, 
17652 \series bold
17653
17654 \backslash
17655 mathbin
17656 \series default
17657  operadores binarios.
17658 \end_layout
17659
17660 \begin_layout Standard
17661
17662 \series bold
17663
17664 \backslash
17665 mathop
17666 \series default
17667  se puede usar, p.e., para poner un límite a varios operadores:
17668 \begin_inset Formula \[
17669 \mathop {\sum\negmedspace\sum}_{i,j=1}^{N}\]
17670
17671 \end_inset
17672
17673
17674 \end_layout
17675
17676 \begin_layout Standard
17677 El comando para la expresión anterior es:
17678 \begin_inset Newline newline
17679 \end_inset
17680
17681
17682 \series bold
17683
17684 \backslash
17685 mathop{
17686 \backslash
17687 sum
17688 \backslash
17689 negmedspace
17690 \backslash
17691 sum
17692 \series default
17693
17694 \begin_inset ERT
17695 status collapsed
17696
17697 \begin_layout Plain Layout
17698
17699
17700 \backslash
17701 spce 
17702 \end_layout
17703
17704 \end_inset
17705
17706
17707 \series bold
17708
17709 \begin_inset Formula $\to$
17710 \end_inset
17711
17712 ^N
17713 \series default
17714
17715 \begin_inset ERT
17716 status collapsed
17717
17718 \begin_layout Plain Layout
17719
17720
17721 \backslash
17722 spce 
17723 \end_layout
17724
17725 \end_inset
17726
17727
17728 \series bold
17729 _i,j=1
17730 \end_layout
17731
17732 \begin_layout Section
17733 Fuentes
17734 \begin_inset Index
17735 status collapsed
17736
17737 \begin_layout Plain Layout
17738 Fuentes
17739 \end_layout
17740
17741 \end_inset
17742
17743
17744 \end_layout
17745
17746 \begin_layout Subsection
17747 Estilos de fuentes
17748 \begin_inset CommandInset label
17749 LatexCommand label
17750 name "sub:Estilos-de-fuentes"
17751
17752 \end_inset
17753
17754
17755 \begin_inset Index
17756 status collapsed
17757
17758 \begin_layout Plain Layout
17759 Fuentes ! estilos de
17760 \end_layout
17761
17762 \end_inset
17763
17764
17765 \end_layout
17766
17767 \begin_layout Standard
17768 Las letras latinas en las ecuaciones se pueden poner en uno de los siguientes
17769  estilos:
17770 \end_layout
17771
17772 \begin_layout Standard
17773 \begin_inset VSpace -2mm
17774 \end_inset
17775
17776
17777 \end_layout
17778
17779 \begin_layout Standard
17780 \align center
17781 \begin_inset Tabular
17782 <lyxtabular version="3" rows="6" columns="3">
17783 <features>
17784 <column alignment="center" valignment="top" width="0">
17785 <column alignment="center" valignment="top" width="0">
17786 <column alignment="center" valignment="top" width="0">
17787 <row>
17788 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17789 \begin_inset Text
17790
17791 \begin_layout Plain Layout
17792 Comando
17793 \end_layout
17794
17795 \end_inset
17796 </cell>
17797 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17798 \begin_inset Text
17799
17800 \begin_layout Plain Layout
17801 Resultado
17802 \end_layout
17803
17804 \end_inset
17805 </cell>
17806 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17807 \begin_inset Text
17808
17809 \begin_layout Plain Layout
17810 atajo
17811 \end_layout
17812
17813 \end_inset
17814 </cell>
17815 </row>
17816 <row>
17817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17818 \begin_inset Text
17819
17820 \begin_layout Plain Layout
17821
17822 \backslash
17823 mathbb
17824 \series bold
17825
17826 \begin_inset ERT
17827 status collapsed
17828
17829 \begin_layout Plain Layout
17830
17831
17832 \backslash
17833 spce 
17834 \end_layout
17835
17836 \end_inset
17837
17838
17839 \series default
17840 ABC
17841 \end_layout
17842
17843 \end_inset
17844 </cell>
17845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17846 \begin_inset Text
17847
17848 \begin_layout Plain Layout
17849 \begin_inset Formula $\mathbb{ABC}$
17850 \end_inset
17851
17852
17853 \end_layout
17854
17855 \end_inset
17856 </cell>
17857 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17858 \begin_inset Text
17859
17860 \begin_layout Plain Layout
17861 Alt-c c
17862 \end_layout
17863
17864 \end_inset
17865 </cell>
17866 </row>
17867 <row>
17868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17869 \begin_inset Text
17870
17871 \begin_layout Plain Layout
17872
17873 \backslash
17874 mathbf
17875 \series bold
17876
17877 \begin_inset ERT
17878 status collapsed
17879
17880 \begin_layout Plain Layout
17881
17882
17883 \backslash
17884 spce 
17885 \end_layout
17886
17887 \end_inset
17888
17889
17890 \series default
17891 AbC
17892 \end_layout
17893
17894 \end_inset
17895 </cell>
17896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17897 \begin_inset Text
17898
17899 \begin_layout Plain Layout
17900 \begin_inset Formula $\mathbf{AbC}$
17901 \end_inset
17902
17903
17904 \end_layout
17905
17906 \end_inset
17907 </cell>
17908 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17909 \begin_inset Text
17910
17911 \begin_layout Plain Layout
17912 -
17913 \end_layout
17914
17915 \end_inset
17916 </cell>
17917 </row>
17918 <row>
17919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17920 \begin_inset Text
17921
17922 \begin_layout Plain Layout
17923
17924 \backslash
17925 boldsymbol
17926 \series bold
17927
17928 \begin_inset ERT
17929 status collapsed
17930
17931 \begin_layout Plain Layout
17932
17933
17934 \backslash
17935 spce 
17936 \end_layout
17937
17938 \end_inset
17939
17940
17941 \series default
17942 AbC
17943 \end_layout
17944
17945 \end_inset
17946 </cell>
17947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17948 \begin_inset Text
17949
17950 \begin_layout Plain Layout
17951 \begin_inset Formula $\boldsymbol{AbC}$
17952 \end_inset
17953
17954
17955 \end_layout
17956
17957 \end_inset
17958 </cell>
17959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17960 \begin_inset Text
17961
17962 \begin_layout Plain Layout
17963 Alt-c b
17964 \end_layout
17965
17966 \end_inset
17967 </cell>
17968 </row>
17969 <row>
17970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17971 \begin_inset Text
17972
17973 \begin_layout Plain Layout
17974
17975 \backslash
17976 mathcal
17977 \series bold
17978
17979 \begin_inset ERT
17980 status collapsed
17981
17982 \begin_layout Plain Layout
17983
17984
17985 \backslash
17986 spce 
17987 \end_layout
17988
17989 \end_inset
17990
17991
17992 \series default
17993 ABC
17994 \end_layout
17995
17996 \end_inset
17997 </cell>
17998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17999 \begin_inset Text
18000
18001 \begin_layout Plain Layout
18002 \begin_inset Formula $\mathcal{ABC}$
18003 \end_inset
18004
18005
18006 \end_layout
18007
18008 \end_inset
18009 </cell>
18010 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18011 \begin_inset Text
18012
18013 \begin_layout Plain Layout
18014 Alt-c e
18015 \end_layout
18016
18017 \end_inset
18018 </cell>
18019 </row>
18020 <row>
18021 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18022 \begin_inset Text
18023
18024 \begin_layout Plain Layout
18025
18026 \backslash
18027 mathfrak
18028 \series bold
18029
18030 \begin_inset ERT
18031 status collapsed
18032
18033 \begin_layout Plain Layout
18034
18035
18036 \backslash
18037 spce 
18038 \end_layout
18039
18040 \end_inset
18041
18042
18043 \series default
18044 AbC
18045 \end_layout
18046
18047 \end_inset
18048 </cell>
18049 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18050 \begin_inset Text
18051
18052 \begin_layout Plain Layout
18053 \begin_inset Formula $\mathfrak{AbC}$
18054 \end_inset
18055
18056
18057 \end_layout
18058
18059 \end_inset
18060 </cell>
18061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18062 \begin_inset Text
18063
18064 \begin_layout Plain Layout
18065 -
18066 \end_layout
18067
18068 \end_inset
18069 </cell>
18070 </row>
18071 </lyxtabular>
18072
18073 \end_inset
18074
18075
18076 \end_layout
18077
18078 \begin_layout Standard
18079 \align center
18080 \begin_inset Tabular
18081 <lyxtabular version="3" rows="5" columns="3">
18082 <features>
18083 <column alignment="center" valignment="top" width="0">
18084 <column alignment="center" valignment="top" width="0">
18085 <column alignment="center" valignment="top" width="0">
18086 <row>
18087 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18088 \begin_inset Text
18089
18090 \begin_layout Plain Layout
18091 Comando
18092 \end_layout
18093
18094 \end_inset
18095 </cell>
18096 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18097 \begin_inset Text
18098
18099 \begin_layout Plain Layout
18100 Resultado
18101 \end_layout
18102
18103 \end_inset
18104 </cell>
18105 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18106 \begin_inset Text
18107
18108 \begin_layout Plain Layout
18109 atajo
18110 \end_layout
18111
18112 \end_inset
18113 </cell>
18114 </row>
18115 <row>
18116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18117 \begin_inset Text
18118
18119 \begin_layout Plain Layout
18120
18121 \backslash
18122 mathit
18123 \series bold
18124
18125 \begin_inset ERT
18126 status collapsed
18127
18128 \begin_layout Plain Layout
18129
18130
18131 \backslash
18132 spce 
18133 \end_layout
18134
18135 \end_inset
18136
18137
18138 \series default
18139 AbC
18140 \end_layout
18141
18142 \end_inset
18143 </cell>
18144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18145 \begin_inset Text
18146
18147 \begin_layout Plain Layout
18148 \begin_inset Formula $\mathit{AbC}$
18149 \end_inset
18150
18151
18152 \end_layout
18153
18154 \end_inset
18155 </cell>
18156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18157 \begin_inset Text
18158
18159 \begin_layout Plain Layout
18160 -
18161 \end_layout
18162
18163 \end_inset
18164 </cell>
18165 </row>
18166 <row>
18167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18168 \begin_inset Text
18169
18170 \begin_layout Plain Layout
18171
18172 \backslash
18173 mathrm
18174 \series bold
18175
18176 \begin_inset ERT
18177 status collapsed
18178
18179 \begin_layout Plain Layout
18180
18181
18182 \backslash
18183 spce 
18184 \end_layout
18185
18186 \end_inset
18187
18188
18189 \series default
18190 AbC
18191 \end_layout
18192
18193 \end_inset
18194 </cell>
18195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18196 \begin_inset Text
18197
18198 \begin_layout Plain Layout
18199 \begin_inset Formula $\mathrm{AbC}$
18200 \end_inset
18201
18202
18203 \end_layout
18204
18205 \end_inset
18206 </cell>
18207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18208 \begin_inset Text
18209
18210 \begin_layout Plain Layout
18211 Alt-c r
18212 \end_layout
18213
18214 \end_inset
18215 </cell>
18216 </row>
18217 <row>
18218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18219 \begin_inset Text
18220
18221 \begin_layout Plain Layout
18222
18223 \backslash
18224 mathsf
18225 \series bold
18226
18227 \begin_inset ERT
18228 status collapsed
18229
18230 \begin_layout Plain Layout
18231
18232
18233 \backslash
18234 spce 
18235 \end_layout
18236
18237 \end_inset
18238
18239
18240 \series default
18241 AbC
18242 \end_layout
18243
18244 \end_inset
18245 </cell>
18246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18247 \begin_inset Text
18248
18249 \begin_layout Plain Layout
18250 \begin_inset Formula $\mathsf{AbC}$
18251 \end_inset
18252
18253
18254 \end_layout
18255
18256 \end_inset
18257 </cell>
18258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18259 \begin_inset Text
18260
18261 \begin_layout Plain Layout
18262 Alt-c s
18263 \end_layout
18264
18265 \end_inset
18266 </cell>
18267 </row>
18268 <row>
18269 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18270 \begin_inset Text
18271
18272 \begin_layout Plain Layout
18273
18274 \backslash
18275 mathtt
18276 \series bold
18277
18278 \begin_inset ERT
18279 status collapsed
18280
18281 \begin_layout Plain Layout
18282
18283
18284 \backslash
18285 spce 
18286 \end_layout
18287
18288 \end_inset
18289
18290
18291 \series default
18292 AbC
18293 \end_layout
18294
18295 \end_inset
18296 </cell>
18297 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18298 \begin_inset Text
18299
18300 \begin_layout Plain Layout
18301 \begin_inset Formula $\mathtt{AbC}$
18302 \end_inset
18303
18304
18305 \end_layout
18306
18307 \end_inset
18308 </cell>
18309 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18310 \begin_inset Text
18311
18312 \begin_layout Plain Layout
18313 Alt-c p
18314 \end_layout
18315
18316 \end_inset
18317 </cell>
18318 </row>
18319 </lyxtabular>
18320
18321 \end_inset
18322
18323
18324 \end_layout
18325
18326 \begin_layout Standard
18327 \begin_inset Note Greyedout
18328 status open
18329
18330 \begin_layout Plain Layout
18331
18332 \series bold
18333 Nota
18334 \series default
18335 : Los estilos 
18336 \series bold
18337
18338 \backslash
18339 mathbb
18340 \series default
18341  y 
18342 \series bold
18343
18344 \backslash
18345 mathcal
18346 \series default
18347  sólo se aplican a letras mayúsculas.
18348 \end_layout
18349
18350 \end_inset
18351
18352
18353 \end_layout
18354
18355 \begin_layout Standard
18356 El estilo predeterminado es 
18357 \series bold
18358
18359 \backslash
18360 mathnormal
18361 \series default
18362 .
18363 \end_layout
18364
18365 \begin_layout Standard
18366 Los comandos de estilo funcionan también en estructuras matemáticas:
18367 \begin_inset Formula \[
18368 \mathfrak{A=\frac{b}{C}}\]
18369
18370 \end_inset
18371
18372
18373 \end_layout
18374
18375 \begin_layout Standard
18376 Los caracteres en texto matemático no aparecen en un estilo de letra de
18377  ecuaciones sino en el estilo 
18378 \series bold
18379
18380 \backslash
18381 textrm
18382 \series default
18383 .
18384  Este estilo no se puede poner correctamente con el diálogo de estilo de
18385  texto por un fallo de LyX.
18386 \begin_inset Foot
18387 status collapsed
18388
18389 \begin_layout Plain Layout
18390 \begin_inset CommandInset href
18391 LatexCommand href
18392 name "LyX-bug #4091"
18393 target "http://bugzilla.lyx.org/show_bug.cgi?id=4091"
18394
18395 \end_inset
18396
18397
18398 \end_layout
18399
18400 \end_inset
18401
18402
18403 \end_layout
18404
18405 \begin_layout Standard
18406 En vez de comandos se puede usar el menú 
18407 \family sans
18408 Editar\SpecialChar \menuseparator
18409 Ecuación\SpecialChar \menuseparator
18410 Estilo del texto
18411 \family default
18412  o el botón 
18413 \begin_inset Graphics
18414         filename ../../images/math/font.png
18415         embed ""
18416         scale 85
18417
18418 \end_inset
18419
18420 .
18421 \end_layout
18422
18423 \begin_layout Subsection
18424 Ecuaciones en negrita
18425 \begin_inset CommandInset label
18426 LatexCommand label
18427 name "sub:Ecuaciones-en-negrita"
18428
18429 \end_inset
18430
18431
18432 \begin_inset Index
18433 status collapsed
18434
18435 \begin_layout Plain Layout
18436 Ecuación ! en negrita
18437 \end_layout
18438
18439 \end_inset
18440
18441
18442 \end_layout
18443
18444 \begin_layout Standard
18445 Para poner en negrita una ecuación completa no se puede usar el comando
18446  
18447 \series bold
18448
18449 \backslash
18450 mathbf
18451 \series default
18452 , porque no funciona con minúsculas griegas.
18453  Además, siempre imprime en redonda las letras latinas, como en la ecuación:
18454 \begin_inset Formula \[
18455 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{ecuación con \textbackslash  mathbf}\]
18456
18457 \end_inset
18458
18459
18460 \end_layout
18461
18462 \begin_layout Standard
18463 Para presentar la ecuación correctamente se usa el comando 
18464 \series bold
18465 boldsymbol
18466 \series default
18467 :
18468 \begin_inset Formula \[
18469 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{ecuación con \textbackslash  boldsymbol}\]
18470
18471 \end_inset
18472
18473
18474 \end_layout
18475
18476 \begin_layout Standard
18477 También es posible poner la fórmula en un 
18478 \series bold
18479 entorno boldmath
18480 \series default
18481 , que se inserta con el comando 
18482 \series bold
18483
18484 \backslash
18485 boldmath
18486 \series default
18487
18488 \begin_inset Index
18489 status collapsed
18490
18491 \begin_layout Plain Layout
18492 Comandos ! B ! 
18493 \backslash
18494 boldmath
18495 \end_layout
18496
18497 \end_inset
18498
18499  en modo TeX.
18500  Para finalizar el entorno se usa el comando 
18501 \series bold
18502
18503 \backslash
18504 unboldmath
18505 \series default
18506
18507 \begin_inset Index
18508 status collapsed
18509
18510 \begin_layout Plain Layout
18511 Comandos ! U ! 
18512 \backslash
18513 unboldmath
18514 \end_layout
18515
18516 \end_inset
18517
18518  en modo TeX.
18519 \begin_inset ERT
18520 status collapsed
18521
18522 \begin_layout Plain Layout
18523
18524
18525 \backslash
18526 boldmath
18527 \end_layout
18528
18529 \end_inset
18530
18531
18532 \begin_inset Formula \[
18533 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{ecuación en un entorno boldmath}\]
18534
18535 \end_inset
18536
18537
18538 \end_layout
18539
18540 \begin_layout Standard
18541 \begin_inset ERT
18542 status collapsed
18543
18544 \begin_layout Plain Layout
18545
18546
18547 \backslash
18548 unboldmath
18549 \end_layout
18550
18551 \end_inset
18552
18553
18554 \end_layout
18555
18556 \begin_layout Subsection
18557 Tamaños de fuentes
18558 \begin_inset CommandInset label
18559 LatexCommand label
18560 name "sub:Tamaños-de-fuentes"
18561
18562 \end_inset
18563
18564
18565 \begin_inset Index
18566 status collapsed
18567
18568 \begin_layout Plain Layout
18569 Fuentes ! tamaño
18570 \end_layout
18571
18572 \end_inset
18573
18574
18575 \end_layout
18576
18577 \begin_layout Standard
18578 Para los caracteres en ecuaciones hay, como para caracteres en texto, los
18579  siguientes comandos de tamaño:
18580 \end_layout
18581
18582 \begin_layout Standard
18583
18584 \series bold
18585
18586 \backslash
18587 Huge
18588 \series default
18589
18590 \series bold
18591
18592 \backslash
18593 huge
18594 \series default
18595
18596 \series bold
18597
18598 \backslash
18599 LARGE
18600 \series default
18601
18602 \series bold
18603
18604 \backslash
18605 Large
18606 \series default
18607
18608 \series bold
18609
18610 \backslash
18611 large
18612 \series default
18613
18614 \series bold
18615
18616 \backslash
18617 normalsize
18618 \series default
18619
18620 \series bold
18621
18622 \backslash
18623 small
18624 \series default
18625 ,
18626 \begin_inset Newline newline
18627 \end_inset
18628
18629
18630 \series bold
18631
18632 \backslash
18633 footnotesize
18634 \series default
18635
18636 \series bold
18637
18638 \backslash
18639 scriptsize
18640 \series default
18641 , y 
18642 \series bold
18643
18644 \backslash
18645 tiny
18646 \end_layout
18647
18648 \begin_layout Standard
18649 El tamaño dado por los comandos depende del tamaño base de la fuente en
18650  el documento, dado por el comando 
18651 \series bold
18652
18653 \backslash
18654 normalsize
18655 \series default
18656 .
18657  Los demás comandos producen tamaños menores o mayores que 
18658 \series bold
18659
18660 \backslash
18661 normalsize
18662 \series default
18663 .
18664  No obstante, puede que el tamaño de fuente no exceda de cierto valor.
18665  Si, por ejemplo, la fuente del documento es de 12
18666 \begin_inset Space \thinspace{}
18667 \end_inset
18668
18669 pt, el comando 
18670 \series bold
18671
18672 \backslash
18673 Huge
18674 \series default
18675  da el mismo tamaño que 
18676 \series bold
18677
18678 \backslash
18679 huge
18680 \series default
18681 .
18682 \end_layout
18683
18684 \begin_layout Standard
18685 Un comando de tamaño se inserta en modo TeX antes de la ecuación, y se aplica
18686  a todas las ecuaciones y texto siguientes.
18687  Para volver al tamaño anterior hay que insertar el comando 
18688 \series bold
18689
18690 \backslash
18691 normalsize
18692 \series default
18693  en modo TeX detrás de la ecuación.
18694  
18695 \end_layout
18696
18697 \begin_layout Standard
18698 Dentro de una fórmula el tamaño sólo se puede cambiar para símbolos o letras
18699  en texto matemático.
18700  Para hacerlo se inserta el comando en texto matemático.
18701  Todos los caracteres siguientes, hasta el final del texto matemático o
18702  hasta otro comando de tamaño, tendrán el tamaño seleccionado.
18703  Dos ejemplos:
18704 \end_layout
18705
18706 \begin_layout Standard
18707 \begin_inset VSpace -2mm
18708 \end_inset
18709
18710
18711 \end_layout
18712
18713 \begin_layout Standard
18714 \begin_inset ERT
18715 status collapsed
18716
18717 \begin_layout Plain Layout
18718
18719
18720 \backslash
18721 huge
18722 \end_layout
18723
18724 \end_inset
18725
18726
18727 \begin_inset Formula \[
18728 A=\frac{B}{c}\cdot\maltese\]
18729
18730 \end_inset
18731
18732
18733 \begin_inset Formula \[
18734 \maltese A\textrm{\Large \maltese\textit{A}}\textrm{\tiny \maltese\textit{A}}\]
18735
18736 \end_inset
18737
18738
18739 \end_layout
18740
18741 \begin_layout Standard
18742 \begin_inset ERT
18743 status collapsed
18744
18745 \begin_layout Plain Layout
18746
18747
18748 \backslash
18749 normalsize
18750 \end_layout
18751
18752 \end_inset
18753
18754
18755 \begin_inset VSpace medskip
18756 \end_inset
18757
18758
18759 \end_layout
18760
18761 \begin_layout Standard
18762 Antes de las ecuaciones se ha insertado el comando 
18763 \series bold
18764
18765 \backslash
18766 huge
18767 \series default
18768 .
18769  Para la segunda ecuación el comando es:
18770 \begin_inset Newline newline
18771 \end_inset
18772
18773
18774 \series bold
18775
18776 \backslash
18777 maltese
18778 \begin_inset ERT
18779 status collapsed
18780
18781 \begin_layout Plain Layout
18782
18783
18784 \backslash
18785 spce 
18786 \end_layout
18787
18788 \end_inset
18789
18790 A Alt-m m 
18791 \backslash
18792 Large
18793 \begin_inset ERT
18794 status collapsed
18795
18796 \begin_layout Plain Layout
18797
18798
18799 \backslash
18800 spce 
18801 \end_layout
18802
18803 \end_inset
18804
18805
18806 \backslash
18807 maltese
18808 \begin_inset ERT
18809 status collapsed
18810
18811 \begin_layout Plain Layout
18812
18813
18814 \backslash
18815 spce 
18816 \end_layout
18817
18818 \end_inset
18819
18820
18821 \backslash
18822 textit
18823 \begin_inset ERT
18824 status collapsed
18825
18826 \begin_layout Plain Layout
18827
18828
18829 \backslash
18830 spce 
18831 \end_layout
18832
18833 \end_inset
18834
18835 A
18836 \begin_inset Formula $\to$
18837 \end_inset
18838
18839
18840 \begin_inset Formula $\to$
18841 \end_inset
18842
18843
18844 \begin_inset Newline newline
18845 \end_inset
18846
18847
18848 \begin_inset Space \hspace*{}
18849 \length 1cm
18850 \end_inset
18851
18852 Alt-m
18853 \series default
18854  
18855 \series bold
18856
18857 \backslash
18858 tiny
18859 \begin_inset ERT
18860 status collapsed
18861
18862 \begin_layout Plain Layout
18863
18864
18865 \backslash
18866 spce 
18867 \end_layout
18868
18869 \end_inset
18870
18871
18872 \backslash
18873 maltese
18874 \begin_inset ERT
18875 status collapsed
18876
18877 \begin_layout Plain Layout
18878
18879
18880 \backslash
18881 spce 
18882 \end_layout
18883
18884 \end_inset
18885
18886
18887 \backslash
18888 textit
18889 \begin_inset ERT
18890 status collapsed
18891
18892 \begin_layout Plain Layout
18893
18894
18895 \backslash
18896 spce 
18897 \end_layout
18898
18899 \end_inset
18900
18901 A
18902 \end_layout
18903
18904 \begin_layout Standard
18905 Si un símbolo no se puede mostrar en distintos tamaños se usará siempre
18906  el tamaño por defecto.
18907 \end_layout
18908
18909 \begin_layout Section
18910 Letras griegas
18911 \begin_inset Index
18912 status collapsed
18913
18914 \begin_layout Plain Layout
18915 Letras griegas
18916 \end_layout
18917
18918 \end_inset
18919
18920
18921 \end_layout
18922
18923 \begin_layout Standard
18924 Todas las letras griegas se pueden insertar además mediante el botón 
18925 \begin_inset Graphics
18926         filename ../../images/math/alpha.png
18927         embed ""
18928         scale 85
18929
18930 \end_inset
18931
18932  de la barra de ecuaciones.
18933 \end_layout
18934
18935 \begin_layout Subsection
18936 Minúsculas
18937 \begin_inset CommandInset label
18938 LatexCommand label
18939 name "sub:Minúsculas"
18940
18941 \end_inset
18942
18943
18944 \begin_inset Index
18945 status collapsed
18946
18947 \begin_layout Plain Layout
18948 Letras griegas ! minúsculas
18949 \end_layout
18950
18951 \end_inset
18952
18953
18954 \end_layout
18955
18956 \begin_layout Standard
18957 \begin_inset Space \hfill{}
18958 \end_inset
18959
18960
18961 \begin_inset Tabular
18962 <lyxtabular version="3" rows="11" columns="2">
18963 <features>
18964 <column alignment="center" valignment="top" width="0pt">
18965 <column alignment="center" valignment="top" width="0pt">
18966 <row>
18967 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18968 \begin_inset Text
18969
18970 \begin_layout Plain Layout
18971 Comando
18972 \end_layout
18973
18974 \end_inset
18975 </cell>
18976 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18977 \begin_inset Text
18978
18979 \begin_layout Plain Layout
18980 Símbolo
18981 \end_layout
18982
18983 \end_inset
18984 </cell>
18985 </row>
18986 <row>
18987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18988 \begin_inset Text
18989
18990 \begin_layout Plain Layout
18991
18992 \backslash
18993 alpha
18994 \end_layout
18995
18996 \end_inset
18997 </cell>
18998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18999 \begin_inset Text
19000
19001 \begin_layout Plain Layout
19002 \begin_inset Formula $\alpha$
19003 \end_inset
19004
19005
19006 \end_layout
19007
19008 \end_inset
19009 </cell>
19010 </row>
19011 <row>
19012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19013 \begin_inset Text
19014
19015 \begin_layout Plain Layout
19016
19017 \backslash
19018 beta
19019 \end_layout
19020
19021 \end_inset
19022 </cell>
19023 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19024 \begin_inset Text
19025
19026 \begin_layout Plain Layout
19027 \begin_inset Formula $\beta$
19028 \end_inset
19029
19030
19031 \end_layout
19032
19033 \end_inset
19034 </cell>
19035 </row>
19036 <row>
19037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19038 \begin_inset Text
19039
19040 \begin_layout Plain Layout
19041
19042 \backslash
19043 gamma
19044 \end_layout
19045
19046 \end_inset
19047 </cell>
19048 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19049 \begin_inset Text
19050
19051 \begin_layout Plain Layout
19052 \begin_inset Formula $\gamma$
19053 \end_inset
19054
19055
19056 \end_layout
19057
19058 \end_inset
19059 </cell>
19060 </row>
19061 <row>
19062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19063 \begin_inset Text
19064
19065 \begin_layout Plain Layout
19066
19067 \backslash
19068 delta
19069 \end_layout
19070
19071 \end_inset
19072 </cell>
19073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19074 \begin_inset Text
19075
19076 \begin_layout Plain Layout
19077 \begin_inset Formula $\delta$
19078 \end_inset
19079
19080
19081 \end_layout
19082
19083 \end_inset
19084 </cell>
19085 </row>
19086 <row>
19087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19088 \begin_inset Text
19089
19090 \begin_layout Plain Layout
19091
19092 \backslash
19093 epsilon
19094 \end_layout
19095
19096 \end_inset
19097 </cell>
19098 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19099 \begin_inset Text
19100
19101 \begin_layout Plain Layout
19102 \begin_inset Formula $\epsilon$
19103 \end_inset
19104
19105
19106 \end_layout
19107
19108 \end_inset
19109 </cell>
19110 </row>
19111 <row>
19112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19113 \begin_inset Text
19114
19115 \begin_layout Plain Layout
19116
19117 \backslash
19118 varepsilon
19119 \end_layout
19120
19121 \end_inset
19122 </cell>
19123 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19124 \begin_inset Text
19125
19126 \begin_layout Plain Layout
19127 \begin_inset Formula $\varepsilon$
19128 \end_inset
19129
19130
19131 \end_layout
19132
19133 \end_inset
19134 </cell>
19135 </row>
19136 <row>
19137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19138 \begin_inset Text
19139
19140 \begin_layout Plain Layout
19141
19142 \backslash
19143 zeta
19144 \end_layout
19145
19146 \end_inset
19147 </cell>
19148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19149 \begin_inset Text
19150
19151 \begin_layout Plain Layout
19152 \begin_inset Formula $\zeta$
19153 \end_inset
19154
19155
19156 \end_layout
19157
19158 \end_inset
19159 </cell>
19160 </row>
19161 <row>
19162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19163 \begin_inset Text
19164
19165 \begin_layout Plain Layout
19166
19167 \backslash
19168 eta
19169 \end_layout
19170
19171 \end_inset
19172 </cell>
19173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19174 \begin_inset Text
19175
19176 \begin_layout Plain Layout
19177 \begin_inset Formula $\eta$
19178 \end_inset
19179
19180
19181 \end_layout
19182
19183 \end_inset
19184 </cell>
19185 </row>
19186 <row>
19187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19188 \begin_inset Text
19189
19190 \begin_layout Plain Layout
19191
19192 \backslash
19193 theta
19194 \end_layout
19195
19196 \end_inset
19197 </cell>
19198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19199 \begin_inset Text
19200
19201 \begin_layout Plain Layout
19202 \begin_inset Formula $\theta$
19203 \end_inset
19204
19205
19206 \end_layout
19207
19208 \end_inset
19209 </cell>
19210 </row>
19211 <row>
19212 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19213 \begin_inset Text
19214
19215 \begin_layout Plain Layout
19216
19217 \backslash
19218 vartheta
19219 \end_layout
19220
19221 \end_inset
19222 </cell>
19223 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19224 \begin_inset Text
19225
19226 \begin_layout Plain Layout
19227 \begin_inset Formula $\vartheta$
19228 \end_inset
19229
19230
19231 \end_layout
19232
19233 \end_inset
19234 </cell>
19235 </row>
19236 </lyxtabular>
19237
19238 \end_inset
19239
19240
19241 \begin_inset Space \hfill{}
19242 \end_inset
19243
19244
19245 \begin_inset Tabular
19246 <lyxtabular version="3" rows="12" columns="2">
19247 <features>
19248 <column alignment="center" valignment="top" width="0pt">
19249 <column alignment="center" valignment="top" width="0pt">
19250 <row>
19251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19252 \begin_inset Text
19253
19254 \begin_layout Plain Layout
19255 Comando
19256 \end_layout
19257
19258 \end_inset
19259 </cell>
19260 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19261 \begin_inset Text
19262
19263 \begin_layout Plain Layout
19264 Símbolo
19265 \end_layout
19266
19267 \end_inset
19268 </cell>
19269 </row>
19270 <row>
19271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19272 \begin_inset Text
19273
19274 \begin_layout Plain Layout
19275
19276 \backslash
19277 iota
19278 \end_layout
19279
19280 \end_inset
19281 </cell>
19282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19283 \begin_inset Text
19284
19285 \begin_layout Plain Layout
19286 \begin_inset Formula $\iota$
19287 \end_inset
19288
19289
19290 \end_layout
19291
19292 \end_inset
19293 </cell>
19294 </row>
19295 <row>
19296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19297 \begin_inset Text
19298
19299 \begin_layout Plain Layout
19300
19301 \backslash
19302 kappa
19303 \end_layout
19304
19305 \end_inset
19306 </cell>
19307 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19308 \begin_inset Text
19309
19310 \begin_layout Plain Layout
19311 \begin_inset Formula $\kappa$
19312 \end_inset
19313
19314
19315 \end_layout
19316
19317 \end_inset
19318 </cell>
19319 </row>
19320 <row>
19321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19322 \begin_inset Text
19323
19324 \begin_layout Plain Layout
19325
19326 \backslash
19327 varkappa
19328 \end_layout
19329
19330 \end_inset
19331 </cell>
19332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19333 \begin_inset Text
19334
19335 \begin_layout Plain Layout
19336 \begin_inset Formula $\varkappa$
19337 \end_inset
19338
19339
19340 \end_layout
19341
19342 \end_inset
19343 </cell>
19344 </row>
19345 <row>
19346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19347 \begin_inset Text
19348
19349 \begin_layout Plain Layout
19350
19351 \backslash
19352 lambda
19353 \end_layout
19354
19355 \end_inset
19356 </cell>
19357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19358 \begin_inset Text
19359
19360 \begin_layout Plain Layout
19361 \begin_inset Formula $\lambda$
19362 \end_inset
19363
19364
19365 \end_layout
19366
19367 \end_inset
19368 </cell>
19369 </row>
19370 <row>
19371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19372 \begin_inset Text
19373
19374 \begin_layout Plain Layout
19375
19376 \backslash
19377 mu
19378 \end_layout
19379
19380 \end_inset
19381 </cell>
19382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19383 \begin_inset Text
19384
19385 \begin_layout Plain Layout
19386 \begin_inset Formula $\mu$
19387 \end_inset
19388
19389
19390 \end_layout
19391
19392 \end_inset
19393 </cell>
19394 </row>
19395 <row>
19396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19397 \begin_inset Text
19398
19399 \begin_layout Plain Layout
19400
19401 \backslash
19402 nu
19403 \end_layout
19404
19405 \end_inset
19406 </cell>
19407 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19408 \begin_inset Text
19409
19410 \begin_layout Plain Layout
19411 \begin_inset Formula $\nu$
19412 \end_inset
19413
19414
19415 \end_layout
19416
19417 \end_inset
19418 </cell>
19419 </row>
19420 <row>
19421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19422 \begin_inset Text
19423
19424 \begin_layout Plain Layout
19425
19426 \backslash
19427 xi
19428 \end_layout
19429
19430 \end_inset
19431 </cell>
19432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19433 \begin_inset Text
19434
19435 \begin_layout Plain Layout
19436 \begin_inset Formula $\xi$
19437 \end_inset
19438
19439
19440 \end_layout
19441
19442 \end_inset
19443 </cell>
19444 </row>
19445 <row>
19446 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19447 \begin_inset Text
19448
19449 \begin_layout Plain Layout
19450 o
19451 \end_layout
19452
19453 \end_inset
19454 </cell>
19455 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19456 \begin_inset Text
19457
19458 \begin_layout Plain Layout
19459 \begin_inset Formula $o$
19460 \end_inset
19461
19462
19463 \end_layout
19464
19465 \end_inset
19466 </cell>
19467 </row>
19468 <row>
19469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19470 \begin_inset Text
19471
19472 \begin_layout Plain Layout
19473
19474 \backslash
19475 pi
19476 \end_layout
19477
19478 \end_inset
19479 </cell>
19480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19481 \begin_inset Text
19482
19483 \begin_layout Plain Layout
19484 \begin_inset Formula $\pi$
19485 \end_inset
19486
19487
19488 \end_layout
19489
19490 \end_inset
19491 </cell>
19492 </row>
19493 <row>
19494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19495 \begin_inset Text
19496
19497 \begin_layout Plain Layout
19498
19499 \backslash
19500 varpi
19501 \end_layout
19502
19503 \end_inset
19504 </cell>
19505 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19506 \begin_inset Text
19507
19508 \begin_layout Plain Layout
19509 \begin_inset Formula $\varpi$
19510 \end_inset
19511
19512
19513 \end_layout
19514
19515 \end_inset
19516 </cell>
19517 </row>
19518 <row>
19519 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19520 \begin_inset Text
19521
19522 \begin_layout Plain Layout
19523
19524 \backslash
19525 rho
19526 \end_layout
19527
19528 \end_inset
19529 </cell>
19530 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19531 \begin_inset Text
19532
19533 \begin_layout Plain Layout
19534 \begin_inset Formula $\rho$
19535 \end_inset
19536
19537
19538 \end_layout
19539
19540 \end_inset
19541 </cell>
19542 </row>
19543 </lyxtabular>
19544
19545 \end_inset
19546
19547
19548 \begin_inset Space \hfill{}
19549 \end_inset
19550
19551
19552 \begin_inset Tabular
19553 <lyxtabular version="3" rows="11" columns="2">
19554 <features>
19555 <column alignment="center" valignment="top" width="0pt">
19556 <column alignment="center" valignment="top" width="0pt">
19557 <row>
19558 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19559 \begin_inset Text
19560
19561 \begin_layout Plain Layout
19562 Comando
19563 \end_layout
19564
19565 \end_inset
19566 </cell>
19567 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19568 \begin_inset Text
19569
19570 \begin_layout Plain Layout
19571 Símbolo
19572 \end_layout
19573
19574 \end_inset
19575 </cell>
19576 </row>
19577 <row>
19578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19579 \begin_inset Text
19580
19581 \begin_layout Plain Layout
19582
19583 \backslash
19584 varrho
19585 \end_layout
19586
19587 \end_inset
19588 </cell>
19589 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19590 \begin_inset Text
19591
19592 \begin_layout Plain Layout
19593 \begin_inset Formula $\varrho$
19594 \end_inset
19595
19596
19597 \end_layout
19598
19599 \end_inset
19600 </cell>
19601 </row>
19602 <row>
19603 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19604 \begin_inset Text
19605
19606 \begin_layout Plain Layout
19607
19608 \backslash
19609 sigma
19610 \end_layout
19611
19612 \end_inset
19613 </cell>
19614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19615 \begin_inset Text
19616
19617 \begin_layout Plain Layout
19618 \begin_inset Formula $\sigma$
19619 \end_inset
19620
19621
19622 \end_layout
19623
19624 \end_inset
19625 </cell>
19626 </row>
19627 <row>
19628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19629 \begin_inset Text
19630
19631 \begin_layout Plain Layout
19632
19633 \backslash
19634 varsigma
19635 \end_layout
19636
19637 \end_inset
19638 </cell>
19639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19640 \begin_inset Text
19641
19642 \begin_layout Plain Layout
19643 \begin_inset Formula $\varsigma$
19644 \end_inset
19645
19646
19647 \end_layout
19648
19649 \end_inset
19650 </cell>
19651 </row>
19652 <row>
19653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19654 \begin_inset Text
19655
19656 \begin_layout Plain Layout
19657
19658 \backslash
19659 tau
19660 \end_layout
19661
19662 \end_inset
19663 </cell>
19664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19665 \begin_inset Text
19666
19667 \begin_layout Plain Layout
19668 \begin_inset Formula $\tau$
19669 \end_inset
19670
19671
19672 \end_layout
19673
19674 \end_inset
19675 </cell>
19676 </row>
19677 <row>
19678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19679 \begin_inset Text
19680
19681 \begin_layout Plain Layout
19682
19683 \backslash
19684 upsilon
19685 \end_layout
19686
19687 \end_inset
19688 </cell>
19689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19690 \begin_inset Text
19691
19692 \begin_layout Plain Layout
19693 \begin_inset Formula $\upsilon$
19694 \end_inset
19695
19696
19697 \end_layout
19698
19699 \end_inset
19700 </cell>
19701 </row>
19702 <row>
19703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19704 \begin_inset Text
19705
19706 \begin_layout Plain Layout
19707
19708 \backslash
19709 phi
19710 \end_layout
19711
19712 \end_inset
19713 </cell>
19714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19715 \begin_inset Text
19716
19717 \begin_layout Plain Layout
19718 \begin_inset Formula $\phi$
19719 \end_inset
19720
19721
19722 \end_layout
19723
19724 \end_inset
19725 </cell>
19726 </row>
19727 <row>
19728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19729 \begin_inset Text
19730
19731 \begin_layout Plain Layout
19732
19733 \backslash
19734 varphi
19735 \end_layout
19736
19737 \end_inset
19738 </cell>
19739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19740 \begin_inset Text
19741
19742 \begin_layout Plain Layout
19743 \begin_inset Formula $\varphi$
19744 \end_inset
19745
19746
19747 \end_layout
19748
19749 \end_inset
19750 </cell>
19751 </row>
19752 <row>
19753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19754 \begin_inset Text
19755
19756 \begin_layout Plain Layout
19757
19758 \backslash
19759 chi
19760 \end_layout
19761
19762 \end_inset
19763 </cell>
19764 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19765 \begin_inset Text
19766
19767 \begin_layout Plain Layout
19768 \begin_inset Formula $\chi$
19769 \end_inset
19770
19771
19772 \end_layout
19773
19774 \end_inset
19775 </cell>
19776 </row>
19777 <row>
19778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19779 \begin_inset Text
19780
19781 \begin_layout Plain Layout
19782
19783 \backslash
19784 psi
19785 \end_layout
19786
19787 \end_inset
19788 </cell>
19789 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19790 \begin_inset Text
19791
19792 \begin_layout Plain Layout
19793 \begin_inset Formula $\psi$
19794 \end_inset
19795
19796
19797 \end_layout
19798
19799 \end_inset
19800 </cell>
19801 </row>
19802 <row>
19803 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19804 \begin_inset Text
19805
19806 \begin_layout Plain Layout
19807
19808 \backslash
19809 omega
19810 \end_layout
19811
19812 \end_inset
19813 </cell>
19814 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19815 \begin_inset Text
19816
19817 \begin_layout Plain Layout
19818 \begin_inset Formula $\omega$
19819 \end_inset
19820
19821
19822 \end_layout
19823
19824 \end_inset
19825 </cell>
19826 </row>
19827 </lyxtabular>
19828
19829 \end_inset
19830
19831
19832 \begin_inset Space \hfill{}
19833 \end_inset
19834
19835
19836 \end_layout
19837
19838 \begin_layout Standard
19839 \begin_inset VSpace medskip
19840 \end_inset
19841
19842
19843 \end_layout
19844
19845 \begin_layout Standard
19846 Cómo escribir letras griegas en redonda se explica en 
19847 \begin_inset CommandInset ref
19848 LatexCommand ref
19849 reference "sub:Griegas-en-redonda"
19850
19851 \end_inset
19852
19853 .
19854 \end_layout
19855
19856 \begin_layout Subsection
19857 Mayúsculas
19858 \begin_inset Index
19859 status collapsed
19860
19861 \begin_layout Plain Layout
19862 Letras griegas ! mayúsculas
19863 \end_layout
19864
19865 \end_inset
19866
19867
19868 \end_layout
19869
19870 \begin_layout Standard
19871 \begin_inset Space \hfill{}
19872 \end_inset
19873
19874
19875 \begin_inset Tabular
19876 <lyxtabular version="3" rows="7" columns="2">
19877 <features>
19878 <column alignment="center" valignment="top" width="0pt">
19879 <column alignment="center" valignment="top" width="0pt">
19880 <row>
19881 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19882 \begin_inset Text
19883
19884 \begin_layout Plain Layout
19885 Comando
19886 \end_layout
19887
19888 \end_inset
19889 </cell>
19890 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19891 \begin_inset Text
19892
19893 \begin_layout Plain Layout
19894 Símbolo
19895 \end_layout
19896
19897 \end_inset
19898 </cell>
19899 </row>
19900 <row>
19901 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19902 \begin_inset Text
19903
19904 \begin_layout Plain Layout
19905
19906 \backslash
19907 Gamma
19908 \end_layout
19909
19910 \end_inset
19911 </cell>
19912 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19913 \begin_inset Text
19914
19915 \begin_layout Plain Layout
19916 \begin_inset Formula $\Gamma$
19917 \end_inset
19918
19919
19920 \end_layout
19921
19922 \end_inset
19923 </cell>
19924 </row>
19925 <row>
19926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19927 \begin_inset Text
19928
19929 \begin_layout Plain Layout
19930
19931 \backslash
19932 Delta
19933 \end_layout
19934
19935 \end_inset
19936 </cell>
19937 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19938 \begin_inset Text
19939
19940 \begin_layout Plain Layout
19941 \begin_inset Formula $\Delta$
19942 \end_inset
19943
19944
19945 \end_layout
19946
19947 \end_inset
19948 </cell>
19949 </row>
19950 <row>
19951 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19952 \begin_inset Text
19953
19954 \begin_layout Plain Layout
19955
19956 \backslash
19957 Theta
19958 \end_layout
19959
19960 \end_inset
19961 </cell>
19962 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19963 \begin_inset Text
19964
19965 \begin_layout Plain Layout
19966 \begin_inset Formula $\Theta$
19967 \end_inset
19968
19969
19970 \end_layout
19971
19972 \end_inset
19973 </cell>
19974 </row>
19975 <row>
19976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19977 \begin_inset Text
19978
19979 \begin_layout Plain Layout
19980
19981 \backslash
19982 Lambda
19983 \end_layout
19984
19985 \end_inset
19986 </cell>
19987 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19988 \begin_inset Text
19989
19990 \begin_layout Plain Layout
19991 \begin_inset Formula $\Lambda$
19992 \end_inset
19993
19994
19995 \end_layout
19996
19997 \end_inset
19998 </cell>
19999 </row>
20000 <row>
20001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20002 \begin_inset Text
20003
20004 \begin_layout Plain Layout
20005
20006 \backslash
20007 Xi
20008 \end_layout
20009
20010 \end_inset
20011 </cell>
20012 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20013 \begin_inset Text
20014
20015 \begin_layout Plain Layout
20016 \begin_inset Formula $\Xi$
20017 \end_inset
20018
20019
20020 \end_layout
20021
20022 \end_inset
20023 </cell>
20024 </row>
20025 <row>
20026 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20027 \begin_inset Text
20028
20029 \begin_layout Plain Layout
20030
20031 \backslash
20032 Pi
20033 \end_layout
20034
20035 \end_inset
20036 </cell>
20037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20038 \begin_inset Text
20039
20040 \begin_layout Plain Layout
20041 \begin_inset Formula $\Pi$
20042 \end_inset
20043
20044
20045 \end_layout
20046
20047 \end_inset
20048 </cell>
20049 </row>
20050 </lyxtabular>
20051
20052 \end_inset
20053
20054
20055 \begin_inset Space \hfill{}
20056 \end_inset
20057
20058
20059 \begin_inset Tabular
20060 <lyxtabular version="3" rows="6" columns="2">
20061 <features>
20062 <column alignment="center" valignment="top" width="0pt">
20063 <column alignment="center" valignment="top" width="0pt">
20064 <row>
20065 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20066 \begin_inset Text
20067
20068 \begin_layout Plain Layout
20069 Comando
20070 \end_layout
20071
20072 \end_inset
20073 </cell>
20074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20075 \begin_inset Text
20076
20077 \begin_layout Plain Layout
20078 Símbolo
20079 \end_layout
20080
20081 \end_inset
20082 </cell>
20083 </row>
20084 <row>
20085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20086 \begin_inset Text
20087
20088 \begin_layout Plain Layout
20089
20090 \backslash
20091 Sigma
20092 \end_layout
20093
20094 \end_inset
20095 </cell>
20096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20097 \begin_inset Text
20098
20099 \begin_layout Plain Layout
20100 \begin_inset Formula $\Sigma$
20101 \end_inset
20102
20103
20104 \end_layout
20105
20106 \end_inset
20107 </cell>
20108 </row>
20109 <row>
20110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20111 \begin_inset Text
20112
20113 \begin_layout Plain Layout
20114
20115 \backslash
20116 Upsilon
20117 \end_layout
20118
20119 \end_inset
20120 </cell>
20121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20122 \begin_inset Text
20123
20124 \begin_layout Plain Layout
20125 \begin_inset Formula $\Upsilon$
20126 \end_inset
20127
20128
20129 \end_layout
20130
20131 \end_inset
20132 </cell>
20133 </row>
20134 <row>
20135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20136 \begin_inset Text
20137
20138 \begin_layout Plain Layout
20139
20140 \backslash
20141 Phi
20142 \end_layout
20143
20144 \end_inset
20145 </cell>
20146 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20147 \begin_inset Text
20148
20149 \begin_layout Plain Layout
20150 \begin_inset Formula $\Phi$
20151 \end_inset
20152
20153
20154 \end_layout
20155
20156 \end_inset
20157 </cell>
20158 </row>
20159 <row>
20160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20161 \begin_inset Text
20162
20163 \begin_layout Plain Layout
20164
20165 \backslash
20166 Psi
20167 \end_layout
20168
20169 \end_inset
20170 </cell>
20171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20172 \begin_inset Text
20173
20174 \begin_layout Plain Layout
20175 \begin_inset Formula $\Psi$
20176 \end_inset
20177
20178
20179 \end_layout
20180
20181 \end_inset
20182 </cell>
20183 </row>
20184 <row>
20185 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20186 \begin_inset Text
20187
20188 \begin_layout Plain Layout
20189
20190 \backslash
20191 Omega
20192 \end_layout
20193
20194 \end_inset
20195 </cell>
20196 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20197 \begin_inset Text
20198
20199 \begin_layout Plain Layout
20200 \begin_inset Formula $\Omega$
20201 \end_inset
20202
20203
20204 \end_layout
20205
20206 \end_inset
20207 </cell>
20208 </row>
20209 </lyxtabular>
20210
20211 \end_inset
20212
20213
20214 \begin_inset Space \hfill{}
20215 \end_inset
20216
20217
20218 \end_layout
20219
20220 \begin_layout Standard
20221 \begin_inset VSpace medskip
20222 \end_inset
20223
20224
20225 \end_layout
20226
20227 \begin_layout Standard
20228 Las mayúsculas griegas se imprimen en redonda debido a un fallo de diseño
20229  cuando se desarrolló TeX.
20230  Para obtener mayúsculas en cursiva, inicia cada comando con 
20231 \series bold
20232 var
20233 \series default
20234 .
20235  Por ejemplo, el comando 
20236 \series bold
20237
20238 \backslash
20239 varGamma
20240 \series default
20241  genera: 
20242 \begin_inset Formula $\varGamma $
20243 \end_inset
20244
20245
20246 \end_layout
20247
20248 \begin_layout Subsection
20249 Letras en negrita
20250 \begin_inset Index
20251 status collapsed
20252
20253 \begin_layout Plain Layout
20254 Letras griegas ! en negrita
20255 \end_layout
20256
20257 \end_inset
20258
20259
20260 \end_layout
20261
20262 \begin_layout Standard
20263 Las letras griegas no admiten diferentes estilos de fuente como las latinas.
20264  Sólo se pueden poner en negrita con el comando 
20265 \series bold
20266
20267 \backslash
20268 boldsymbol
20269 \series default
20270
20271 \begin_inset Index
20272 status collapsed
20273
20274 \begin_layout Plain Layout
20275 Comandos ! B ! 
20276 \backslash
20277 boldsymbol
20278 \end_layout
20279
20280 \end_inset
20281
20282 .
20283 \end_layout
20284
20285 \begin_layout Standard
20286 \align center
20287 \begin_inset Tabular
20288 <lyxtabular version="3" rows="3" columns="2">
20289 <features>
20290 <column alignment="center" valignment="top" width="0">
20291 <column alignment="center" valignment="top" width="0">
20292 <row>
20293 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20294 \begin_inset Text
20295
20296 \begin_layout Plain Layout
20297 Comando
20298 \end_layout
20299
20300 \end_inset
20301 </cell>
20302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20303 \begin_inset Text
20304
20305 \begin_layout Plain Layout
20306 Símbolo
20307 \end_layout
20308
20309 \end_inset
20310 </cell>
20311 </row>
20312 <row>
20313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20314 \begin_inset Text
20315
20316 \begin_layout Plain Layout
20317
20318 \backslash
20319 Upsilon
20320 \backslash
20321 boldsymbol
20322 \backslash
20323 Upsilon
20324 \end_layout
20325
20326 \end_inset
20327 </cell>
20328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20329 \begin_inset Text
20330
20331 \begin_layout Plain Layout
20332 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
20333 \end_inset
20334
20335
20336 \end_layout
20337
20338 \end_inset
20339 </cell>
20340 </row>
20341 <row>
20342 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20343 \begin_inset Text
20344
20345 \begin_layout Plain Layout
20346
20347 \backslash
20348 theta
20349 \backslash
20350 boldsymbol
20351 \backslash
20352 theta
20353 \end_layout
20354
20355 \end_inset
20356 </cell>
20357 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20358 \begin_inset Text
20359
20360 \begin_layout Plain Layout
20361 \begin_inset Formula $\theta\boldsymbol{\theta}$
20362 \end_inset
20363
20364
20365 \end_layout
20366
20367 \end_inset
20368 </cell>
20369 </row>
20370 </lyxtabular>
20371
20372 \end_inset
20373
20374
20375 \end_layout
20376
20377 \begin_layout Section
20378 Símbolos
20379 \begin_inset ERT
20380 status collapsed
20381
20382 \begin_layout Plain Layout
20383
20384
20385 \backslash
20386 texorpdfstring{
20387 \end_layout
20388
20389 \end_inset
20390
20391
20392 \begin_inset Foot
20393 status collapsed
20394
20395 \begin_layout Plain Layout
20396 Se puede encontrar una lista con todos los símbolos de la mayoría de paquetes
20397  LaTeX en 
20398 \begin_inset CommandInset citation
20399 LatexCommand cite
20400 key "Symbole"
20401
20402 \end_inset
20403
20404 .
20405 \end_layout
20406
20407 \end_inset
20408
20409
20410 \begin_inset ERT
20411 status collapsed
20412
20413 \begin_layout Plain Layout
20414
20415 }{}
20416 \end_layout
20417
20418 \end_inset
20419
20420
20421 \begin_inset Note Note
20422 status collapsed
20423
20424 \begin_layout Plain Layout
20425
20426 \backslash
20427 texorpdfstring se usa para evitar que la nota al pie aparezca en los marcadores
20428  PDF.
20429 \end_layout
20430
20431 \begin_layout Plain Layout
20432 Más sobre 
20433 \backslash
20434 texorpdfstring en la sección 
20435 \begin_inset CommandInset ref
20436 LatexCommand ref
20437 reference "sub:Ecuaciones-en-títulos"
20438
20439 \end_inset
20440
20441 .
20442 \end_layout
20443
20444 \end_inset
20445
20446
20447 \begin_inset Index
20448 status collapsed
20449
20450 \begin_layout Plain Layout
20451 Símbolos
20452 \end_layout
20453
20454 \end_inset
20455
20456
20457 \end_layout
20458
20459 \begin_layout Standard
20460 Muchos de los símbolos listados en esta sección se pueden insertar además
20461  mediante los botones 
20462 \begin_inset Graphics
20463         filename ../../images/math/nabla.png
20464         embed ""
20465         scale 85
20466
20467 \end_inset
20468
20469  y 
20470 \begin_inset Graphics
20471         filename ../../images/math/digamma.png
20472         embed ""
20473         scale 85
20474
20475 \end_inset
20476
20477  de la barra de ecuaciones.
20478 \end_layout
20479
20480 \begin_layout Subsection
20481 Símbolos matemáticos
20482 \begin_inset CommandInset label
20483 LatexCommand label
20484 name "sub:Símbolos-matemáticos"
20485
20486 \end_inset
20487
20488
20489 \begin_inset Index
20490 status collapsed
20491
20492 \begin_layout Plain Layout
20493 Símbolos ! matemáticos
20494 \end_layout
20495
20496 \end_inset
20497
20498
20499 \end_layout
20500
20501 \begin_layout Standard
20502 \begin_inset Space \hfill{}
20503 \end_inset
20504
20505
20506 \begin_inset Tabular
20507 <lyxtabular version="3" rows="10" columns="2">
20508 <features>
20509 <column alignment="center" valignment="top" width="0pt">
20510 <column alignment="center" valignment="top" width="0pt">
20511 <row>
20512 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20513 \begin_inset Text
20514
20515 \begin_layout Plain Layout
20516 Comando
20517 \end_layout
20518
20519 \end_inset
20520 </cell>
20521 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20522 \begin_inset Text
20523
20524 \begin_layout Plain Layout
20525 Símbolo
20526 \end_layout
20527
20528 \end_inset
20529 </cell>
20530 </row>
20531 <row>
20532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20533 \begin_inset Text
20534
20535 \begin_layout Plain Layout
20536
20537 \backslash
20538 neg
20539 \end_layout
20540
20541 \end_inset
20542 </cell>
20543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20544 \begin_inset Text
20545
20546 \begin_layout Plain Layout
20547 \begin_inset Formula $\neg$
20548 \end_inset
20549
20550
20551 \end_layout
20552
20553 \end_inset
20554 </cell>
20555 </row>
20556 <row>
20557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20558 \begin_inset Text
20559
20560 \begin_layout Plain Layout
20561
20562 \backslash
20563 Im
20564 \end_layout
20565
20566 \end_inset
20567 </cell>
20568 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20569 \begin_inset Text
20570
20571 \begin_layout Plain Layout
20572 \begin_inset Formula $\Im$
20573 \end_inset
20574
20575
20576 \end_layout
20577
20578 \end_inset
20579 </cell>
20580 </row>
20581 <row>
20582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20583 \begin_inset Text
20584
20585 \begin_layout Plain Layout
20586
20587 \backslash
20588 Re
20589 \end_layout
20590
20591 \end_inset
20592 </cell>
20593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20594 \begin_inset Text
20595
20596 \begin_layout Plain Layout
20597 \begin_inset Formula $\Re$
20598 \end_inset
20599
20600
20601 \end_layout
20602
20603 \end_inset
20604 </cell>
20605 </row>
20606 <row>
20607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20608 \begin_inset Text
20609
20610 \begin_layout Plain Layout
20611
20612 \backslash
20613 aleph
20614 \end_layout
20615
20616 \end_inset
20617 </cell>
20618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20619 \begin_inset Text
20620
20621 \begin_layout Plain Layout
20622 \begin_inset Formula $\aleph$
20623 \end_inset
20624
20625
20626 \end_layout
20627
20628 \end_inset
20629 </cell>
20630 </row>
20631 <row>
20632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20633 \begin_inset Text
20634
20635 \begin_layout Plain Layout
20636
20637 \backslash
20638 partial
20639 \end_layout
20640
20641 \end_inset
20642 </cell>
20643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20644 \begin_inset Text
20645
20646 \begin_layout Plain Layout
20647 \begin_inset Formula $\partial$
20648 \end_inset
20649
20650
20651 \end_layout
20652
20653 \end_inset
20654 </cell>
20655 </row>
20656 <row>
20657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20658 \begin_inset Text
20659
20660 \begin_layout Plain Layout
20661
20662 \backslash
20663 infty
20664 \end_layout
20665
20666 \end_inset
20667 </cell>
20668 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20669 \begin_inset Text
20670
20671 \begin_layout Plain Layout
20672 \begin_inset Formula $\infty$
20673 \end_inset
20674
20675
20676 \end_layout
20677
20678 \end_inset
20679 </cell>
20680 </row>
20681 <row>
20682 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20683 \begin_inset Text
20684
20685 \begin_layout Plain Layout
20686
20687 \backslash
20688 wp
20689 \end_layout
20690
20691 \end_inset
20692 </cell>
20693 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20694 \begin_inset Text
20695
20696 \begin_layout Plain Layout
20697 \begin_inset Formula $\wp$
20698 \end_inset
20699
20700
20701 \end_layout
20702
20703 \end_inset
20704 </cell>
20705 </row>
20706 <row>
20707 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20708 \begin_inset Text
20709
20710 \begin_layout Plain Layout
20711
20712 \backslash
20713 imath
20714 \end_layout
20715
20716 \end_inset
20717 </cell>
20718 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20719 \begin_inset Text
20720
20721 \begin_layout Plain Layout
20722 \begin_inset Formula $\imath$
20723 \end_inset
20724
20725
20726 \end_layout
20727
20728 \end_inset
20729 </cell>
20730 </row>
20731 <row>
20732 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20733 \begin_inset Text
20734
20735 \begin_layout Plain Layout
20736
20737 \backslash
20738 jmath
20739 \end_layout
20740
20741 \end_inset
20742 </cell>
20743 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20744 \begin_inset Text
20745
20746 \begin_layout Plain Layout
20747 \begin_inset Formula $\jmath$
20748 \end_inset
20749
20750
20751 \end_layout
20752
20753 \end_inset
20754 </cell>
20755 </row>
20756 </lyxtabular>
20757
20758 \end_inset
20759
20760
20761 \begin_inset Space \hfill{}
20762 \end_inset
20763
20764
20765 \begin_inset Tabular
20766 <lyxtabular version="3" rows="10" columns="2">
20767 <features>
20768 <column alignment="center" valignment="top" width="0pt">
20769 <column alignment="center" valignment="top" width="0pt">
20770 <row>
20771 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20772 \begin_inset Text
20773
20774 \begin_layout Plain Layout
20775 Comando
20776 \end_layout
20777
20778 \end_inset
20779 </cell>
20780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20781 \begin_inset Text
20782
20783 \begin_layout Plain Layout
20784 Símbolo
20785 \begin_inset Note Note
20786 status collapsed
20787
20788 \begin_layout Plain Layout
20789
20790 \series bold
20791
20792 \backslash
20793 raisebox
20794 \series default
20795  se usa sólo como espaciador
20796 \end_layout
20797
20798 \end_inset
20799
20800
20801 \end_layout
20802
20803 \end_inset
20804 </cell>
20805 </row>
20806 <row>
20807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20808 \begin_inset Text
20809
20810 \begin_layout Plain Layout
20811
20812 \backslash
20813 forall
20814 \end_layout
20815
20816 \end_inset
20817 </cell>
20818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20819 \begin_inset Text
20820
20821 \begin_layout Plain Layout
20822 \begin_inset Formula $\forall$
20823 \end_inset
20824
20825
20826 \end_layout
20827
20828 \end_inset
20829 </cell>
20830 </row>
20831 <row>
20832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20833 \begin_inset Text
20834
20835 \begin_layout Plain Layout
20836
20837 \backslash
20838 exists
20839 \end_layout
20840
20841 \end_inset
20842 </cell>
20843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20844 \begin_inset Text
20845
20846 \begin_layout Plain Layout
20847 \begin_inset Formula $\exists$
20848 \end_inset
20849
20850
20851 \end_layout
20852
20853 \end_inset
20854 </cell>
20855 </row>
20856 <row>
20857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20858 \begin_inset Text
20859
20860 \begin_layout Plain Layout
20861
20862 \backslash
20863 nexists
20864 \end_layout
20865
20866 \end_inset
20867 </cell>
20868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20869 \begin_inset Text
20870
20871 \begin_layout Plain Layout
20872 \begin_inset Formula $\nexists$
20873 \end_inset
20874
20875
20876 \end_layout
20877
20878 \end_inset
20879 </cell>
20880 </row>
20881 <row>
20882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20883 \begin_inset Text
20884
20885 \begin_layout Plain Layout
20886
20887 \backslash
20888 emptyset
20889 \end_layout
20890
20891 \end_inset
20892 </cell>
20893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20894 \begin_inset Text
20895
20896 \begin_layout Plain Layout
20897 \begin_inset Formula $\emptyset$
20898 \end_inset
20899
20900
20901 \end_layout
20902
20903 \end_inset
20904 </cell>
20905 </row>
20906 <row>
20907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20908 \begin_inset Text
20909
20910 \begin_layout Plain Layout
20911
20912 \backslash
20913 varnothing
20914 \end_layout
20915
20916 \end_inset
20917 </cell>
20918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20919 \begin_inset Text
20920
20921 \begin_layout Plain Layout
20922 \begin_inset Formula $\varnothing$
20923 \end_inset
20924
20925
20926 \end_layout
20927
20928 \end_inset
20929 </cell>
20930 </row>
20931 <row>
20932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20933 \begin_inset Text
20934
20935 \begin_layout Plain Layout
20936
20937 \backslash
20938 dag
20939 \end_layout
20940
20941 \end_inset
20942 </cell>
20943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20944 \begin_inset Text
20945
20946 \begin_layout Plain Layout
20947 \begin_inset Formula $\dag $
20948 \end_inset
20949
20950
20951 \end_layout
20952
20953 \end_inset
20954 </cell>
20955 </row>
20956 <row>
20957 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20958 \begin_inset Text
20959
20960 \begin_layout Plain Layout
20961
20962 \backslash
20963 ddag
20964 \end_layout
20965
20966 \end_inset
20967 </cell>
20968 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20969 \begin_inset Text
20970
20971 \begin_layout Plain Layout
20972 \begin_inset Formula $\ddag $
20973 \end_inset
20974
20975
20976 \end_layout
20977
20978 \end_inset
20979 </cell>
20980 </row>
20981 <row>
20982 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20983 \begin_inset Text
20984
20985 \begin_layout Plain Layout
20986
20987 \backslash
20988 complement
20989 \end_layout
20990
20991 \end_inset
20992 </cell>
20993 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20994 \begin_inset Text
20995
20996 \begin_layout Plain Layout
20997 \begin_inset ERT
20998 status collapsed
20999
21000 \begin_layout Plain Layout
21001
21002
21003 \backslash
21004 raisebox{-0.8mm}{
21005 \end_layout
21006
21007 \end_inset
21008
21009
21010 \begin_inset Formula $\complement$
21011 \end_inset
21012
21013
21014 \begin_inset ERT
21015 status collapsed
21016
21017 \begin_layout Plain Layout
21018
21019 }
21020 \end_layout
21021
21022 \end_inset
21023
21024
21025 \end_layout
21026
21027 \end_inset
21028 </cell>
21029 </row>
21030 <row>
21031 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21032 \begin_inset Text
21033
21034 \begin_layout Plain Layout
21035
21036 \backslash
21037 Bbbk
21038 \end_layout
21039
21040 \end_inset
21041 </cell>
21042 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21043 \begin_inset Text
21044
21045 \begin_layout Plain Layout
21046 \begin_inset Formula $\Bbbk$
21047 \end_inset
21048
21049
21050 \end_layout
21051
21052 \end_inset
21053 </cell>
21054 </row>
21055 </lyxtabular>
21056
21057 \end_inset
21058
21059
21060 \begin_inset Space \hfill{}
21061 \end_inset
21062
21063
21064 \begin_inset Tabular
21065 <lyxtabular version="3" rows="10" columns="2">
21066 <features>
21067 <column alignment="center" valignment="top" width="0pt">
21068 <column alignment="center" valignment="top" width="0pt">
21069 <row>
21070 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21071 \begin_inset Text
21072
21073 \begin_layout Plain Layout
21074 Comando
21075 \end_layout
21076
21077 \end_inset
21078 </cell>
21079 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21080 \begin_inset Text
21081
21082 \begin_layout Plain Layout
21083 Símbolo
21084 \end_layout
21085
21086 \end_inset
21087 </cell>
21088 </row>
21089 <row>
21090 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21091 \begin_inset Text
21092
21093 \begin_layout Plain Layout
21094
21095 \backslash
21096 prime
21097 \end_layout
21098
21099 \end_inset
21100 </cell>
21101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21102 \begin_inset Text
21103
21104 \begin_layout Plain Layout
21105 \begin_inset Formula $\prime$
21106 \end_inset
21107
21108
21109 \end_layout
21110
21111 \end_inset
21112 </cell>
21113 </row>
21114 <row>
21115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21116 \begin_inset Text
21117
21118 \begin_layout Plain Layout
21119
21120 \backslash
21121 backprime
21122 \end_layout
21123
21124 \end_inset
21125 </cell>
21126 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21127 \begin_inset Text
21128
21129 \begin_layout Plain Layout
21130 \begin_inset Formula $\backprime$
21131 \end_inset
21132
21133
21134 \end_layout
21135
21136 \end_inset
21137 </cell>
21138 </row>
21139 <row>
21140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21141 \begin_inset Text
21142
21143 \begin_layout Plain Layout
21144
21145 \backslash
21146 mho
21147 \end_layout
21148
21149 \end_inset
21150 </cell>
21151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21152 \begin_inset Text
21153
21154 \begin_layout Plain Layout
21155 \begin_inset Formula $\mho$
21156 \end_inset
21157
21158
21159 \end_layout
21160
21161 \end_inset
21162 </cell>
21163 </row>
21164 <row>
21165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21166 \begin_inset Text
21167
21168 \begin_layout Plain Layout
21169
21170 \backslash
21171 triangle
21172 \end_layout
21173
21174 \end_inset
21175 </cell>
21176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21177 \begin_inset Text
21178
21179 \begin_layout Plain Layout
21180 \begin_inset Formula $\triangle$
21181 \end_inset
21182
21183
21184 \end_layout
21185
21186 \end_inset
21187 </cell>
21188 </row>
21189 <row>
21190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21191 \begin_inset Text
21192
21193 \begin_layout Plain Layout
21194
21195 \backslash
21196 angle
21197 \end_layout
21198
21199 \end_inset
21200 </cell>
21201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21202 \begin_inset Text
21203
21204 \begin_layout Plain Layout
21205 \begin_inset Formula $\angle$
21206 \end_inset
21207
21208
21209 \end_layout
21210
21211 \end_inset
21212 </cell>
21213 </row>
21214 <row>
21215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21216 \begin_inset Text
21217
21218 \begin_layout Plain Layout
21219
21220 \backslash
21221 measuredangle
21222 \end_layout
21223
21224 \end_inset
21225 </cell>
21226 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21227 \begin_inset Text
21228
21229 \begin_layout Plain Layout
21230 \begin_inset Formula $\measuredangle$
21231 \end_inset
21232
21233
21234 \end_layout
21235
21236 \end_inset
21237 </cell>
21238 </row>
21239 <row>
21240 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21241 \begin_inset Text
21242
21243 \begin_layout Plain Layout
21244
21245 \backslash
21246 sphericalangle
21247 \end_layout
21248
21249 \end_inset
21250 </cell>
21251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21252 \begin_inset Text
21253
21254 \begin_layout Plain Layout
21255 \begin_inset Formula $\sphericalangle$
21256 \end_inset
21257
21258
21259 \end_layout
21260
21261 \end_inset
21262 </cell>
21263 </row>
21264 <row>
21265 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21266 \begin_inset Text
21267
21268 \begin_layout Plain Layout
21269
21270 \backslash
21271 top
21272 \end_layout
21273
21274 \end_inset
21275 </cell>
21276 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21277 \begin_inset Text
21278
21279 \begin_layout Plain Layout
21280 \begin_inset Formula $\top$
21281 \end_inset
21282
21283
21284 \end_layout
21285
21286 \end_inset
21287 </cell>
21288 </row>
21289 <row>
21290 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21291 \begin_inset Text
21292
21293 \begin_layout Plain Layout
21294
21295 \backslash
21296 bot
21297 \end_layout
21298
21299 \end_inset
21300 </cell>
21301 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21302 \begin_inset Text
21303
21304 \begin_layout Plain Layout
21305 \begin_inset Formula $\bot$
21306 \end_inset
21307
21308
21309 \end_layout
21310
21311 \end_inset
21312 </cell>
21313 </row>
21314 </lyxtabular>
21315
21316 \end_inset
21317
21318
21319 \begin_inset Space \hfill{}
21320 \end_inset
21321
21322
21323 \end_layout
21324
21325 \begin_layout Subsection
21326 Símbolos misceláneos
21327 \begin_inset CommandInset label
21328 LatexCommand label
21329 name "sub:Símbolos-misceláneos"
21330
21331 \end_inset
21332
21333
21334 \begin_inset Index
21335 status collapsed
21336
21337 \begin_layout Plain Layout
21338 Símbolos ! misceláneos
21339 \end_layout
21340
21341 \end_inset
21342
21343
21344 \end_layout
21345
21346 \begin_layout Standard
21347 \noindent
21348 \align center
21349 \begin_inset Tabular
21350 <lyxtabular version="3" rows="10" columns="2">
21351 <features>
21352 <column alignment="center" valignment="top" width="0pt">
21353 <column alignment="center" valignment="top" width="0pt">
21354 <row>
21355 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21356 \begin_inset Text
21357
21358 \begin_layout Plain Layout
21359 Comando
21360 \end_layout
21361
21362 \end_inset
21363 </cell>
21364 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21365 \begin_inset Text
21366
21367 \begin_layout Plain Layout
21368 Símbolo
21369 \end_layout
21370
21371 \end_inset
21372 </cell>
21373 </row>
21374 <row>
21375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21376 \begin_inset Text
21377
21378 \begin_layout Plain Layout
21379
21380 \backslash
21381 flat
21382 \end_layout
21383
21384 \end_inset
21385 </cell>
21386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21387 \begin_inset Text
21388
21389 \begin_layout Plain Layout
21390 \begin_inset Formula $\flat$
21391 \end_inset
21392
21393
21394 \end_layout
21395
21396 \end_inset
21397 </cell>
21398 </row>
21399 <row>
21400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21401 \begin_inset Text
21402
21403 \begin_layout Plain Layout
21404
21405 \backslash
21406 natural
21407 \end_layout
21408
21409 \end_inset
21410 </cell>
21411 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21412 \begin_inset Text
21413
21414 \begin_layout Plain Layout
21415 \begin_inset Formula $\natural$
21416 \end_inset
21417
21418
21419 \end_layout
21420
21421 \end_inset
21422 </cell>
21423 </row>
21424 <row>
21425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21426 \begin_inset Text
21427
21428 \begin_layout Plain Layout
21429
21430 \backslash
21431 sharp
21432 \end_layout
21433
21434 \end_inset
21435 </cell>
21436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21437 \begin_inset Text
21438
21439 \begin_layout Plain Layout
21440 \begin_inset Formula $\sharp$
21441 \end_inset
21442
21443
21444 \end_layout
21445
21446 \end_inset
21447 </cell>
21448 </row>
21449 <row>
21450 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21451 \begin_inset Text
21452
21453 \begin_layout Plain Layout
21454
21455 \backslash
21456 surd
21457 \end_layout
21458
21459 \end_inset
21460 </cell>
21461 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21462 \begin_inset Text
21463
21464 \begin_layout Plain Layout
21465 \begin_inset Formula $\surd$
21466 \end_inset
21467
21468
21469 \end_layout
21470
21471 \end_inset
21472 </cell>
21473 </row>
21474 <row>
21475 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21476 \begin_inset Text
21477
21478 \begin_layout Plain Layout
21479
21480 \backslash
21481 checkmark
21482 \end_layout
21483
21484 \end_inset
21485 </cell>
21486 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21487 \begin_inset Text
21488
21489 \begin_layout Plain Layout
21490 \begin_inset Formula $\checkmark$
21491 \end_inset
21492
21493
21494 \end_layout
21495
21496 \end_inset
21497 </cell>
21498 </row>
21499 <row>
21500 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21501 \begin_inset Text
21502
21503 \begin_layout Plain Layout
21504
21505 \backslash
21506 yen
21507 \end_layout
21508
21509 \end_inset
21510 </cell>
21511 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21512 \begin_inset Text
21513
21514 \begin_layout Plain Layout
21515 \begin_inset Formula $\yen$
21516 \end_inset
21517
21518
21519 \end_layout
21520
21521 \end_inset
21522 </cell>
21523 </row>
21524 <row>
21525 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21526 \begin_inset Text
21527
21528 \begin_layout Plain Layout
21529
21530 \backslash
21531 pounds
21532 \end_layout
21533
21534 \end_inset
21535 </cell>
21536 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21537 \begin_inset Text
21538
21539 \begin_layout Plain Layout
21540 \begin_inset Formula $\pounds $
21541 \end_inset
21542
21543
21544 \end_layout
21545
21546 \end_inset
21547 </cell>
21548 </row>
21549 <row>
21550 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21551 \begin_inset Text
21552
21553 \begin_layout Plain Layout
21554 $
21555 \end_layout
21556
21557 \end_inset
21558 </cell>
21559 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21560 \begin_inset Text
21561
21562 \begin_layout Plain Layout
21563 \begin_inset Formula $\$$
21564 \end_inset
21565
21566
21567 \end_layout
21568
21569 \end_inset
21570 </cell>
21571 </row>
21572 <row>
21573 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21574 \begin_inset Text
21575
21576 \begin_layout Plain Layout
21577 §
21578 \end_layout
21579
21580 \end_inset
21581 </cell>
21582 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21583 \begin_inset Text
21584
21585 \begin_layout Plain Layout
21586 \begin_inset Formula $§$
21587 \end_inset
21588
21589
21590 \end_layout
21591
21592 \end_inset
21593 </cell>
21594 </row>
21595 </lyxtabular>
21596
21597 \end_inset
21598
21599
21600 \begin_inset Tabular
21601 <lyxtabular version="3" rows="10" columns="2">
21602 <features>
21603 <column alignment="center" valignment="top" width="0">
21604 <column alignment="center" valignment="top" width="0">
21605 <row>
21606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21607 \begin_inset Text
21608
21609 \begin_layout Plain Layout
21610 Comando
21611 \end_layout
21612
21613 \end_inset
21614 </cell>
21615 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21616 \begin_inset Text
21617
21618 \begin_layout Plain Layout
21619 Símbolo
21620 \end_layout
21621
21622 \end_inset
21623 </cell>
21624 </row>
21625 <row>
21626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21627 \begin_inset Text
21628
21629 \begin_layout Plain Layout
21630
21631 \backslash
21632 hbar
21633 \end_layout
21634
21635 \end_inset
21636 </cell>
21637 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21638 \begin_inset Text
21639
21640 \begin_layout Plain Layout
21641 \begin_inset Formula $\hbar$
21642 \end_inset
21643
21644
21645 \end_layout
21646
21647 \end_inset
21648 </cell>
21649 </row>
21650 <row>
21651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21652 \begin_inset Text
21653
21654 \begin_layout Plain Layout
21655
21656 \backslash
21657 hslash
21658 \end_layout
21659
21660 \end_inset
21661 </cell>
21662 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21663 \begin_inset Text
21664
21665 \begin_layout Plain Layout
21666 \begin_inset Formula $\hslash$
21667 \end_inset
21668
21669
21670 \end_layout
21671
21672 \end_inset
21673 </cell>
21674 </row>
21675 <row>
21676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21677 \begin_inset Text
21678
21679 \begin_layout Plain Layout
21680
21681 \backslash
21682 clubsuit
21683 \end_layout
21684
21685 \end_inset
21686 </cell>
21687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21688 \begin_inset Text
21689
21690 \begin_layout Plain Layout
21691 \begin_inset Formula $\clubsuit$
21692 \end_inset
21693
21694
21695 \end_layout
21696
21697 \end_inset
21698 </cell>
21699 </row>
21700 <row>
21701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21702 \begin_inset Text
21703
21704 \begin_layout Plain Layout
21705
21706 \backslash
21707 spadesuit
21708 \end_layout
21709
21710 \end_inset
21711 </cell>
21712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21713 \begin_inset Text
21714
21715 \begin_layout Plain Layout
21716 \begin_inset Formula $\spadesuit$
21717 \end_inset
21718
21719
21720 \end_layout
21721
21722 \end_inset
21723 </cell>
21724 </row>
21725 <row>
21726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21727 \begin_inset Text
21728
21729 \begin_layout Plain Layout
21730
21731 \backslash
21732 bigstar
21733 \end_layout
21734
21735 \end_inset
21736 </cell>
21737 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21738 \begin_inset Text
21739
21740 \begin_layout Plain Layout
21741 \begin_inset Formula $\bigstar$
21742 \end_inset
21743
21744
21745 \end_layout
21746
21747 \end_inset
21748 </cell>
21749 </row>
21750 <row>
21751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21752 \begin_inset Text
21753
21754 \begin_layout Plain Layout
21755
21756 \backslash
21757 blacklozenge
21758 \end_layout
21759
21760 \end_inset
21761 </cell>
21762 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21763 \begin_inset Text
21764
21765 \begin_layout Plain Layout
21766 \begin_inset Formula $\blacklozenge$
21767 \end_inset
21768
21769
21770 \end_layout
21771
21772 \end_inset
21773 </cell>
21774 </row>
21775 <row>
21776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21777 \begin_inset Text
21778
21779 \begin_layout Plain Layout
21780
21781 \backslash
21782 blacktriangle
21783 \end_layout
21784
21785 \end_inset
21786 </cell>
21787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21788 \begin_inset Text
21789
21790 \begin_layout Plain Layout
21791 \begin_inset Formula $\blacktriangle$
21792 \end_inset
21793
21794
21795 \end_layout
21796
21797 \end_inset
21798 </cell>
21799 </row>
21800 <row>
21801 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21802 \begin_inset Text
21803
21804 \begin_layout Plain Layout
21805
21806 \backslash
21807 blacktiangledown
21808 \end_layout
21809
21810 \end_inset
21811 </cell>
21812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21813 \begin_inset Text
21814
21815 \begin_layout Plain Layout
21816 \begin_inset Formula $\blacktriangledown$
21817 \end_inset
21818
21819
21820 \end_layout
21821
21822 \end_inset
21823 </cell>
21824 </row>
21825 <row>
21826 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21827 \begin_inset Text
21828
21829 \begin_layout Plain Layout
21830
21831 \backslash
21832 bullet
21833 \end_layout
21834
21835 \end_inset
21836 </cell>
21837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21838 \begin_inset Text
21839
21840 \begin_layout Plain Layout
21841 \begin_inset Formula $\bullet$
21842 \end_inset
21843
21844
21845 \end_layout
21846
21847 \end_inset
21848 </cell>
21849 </row>
21850 </lyxtabular>
21851
21852 \end_inset
21853
21854
21855 \begin_inset Tabular
21856 <lyxtabular version="3" rows="10" columns="2">
21857 <features>
21858 <column alignment="center" valignment="top" width="0pt">
21859 <column alignment="center" valignment="top" width="0pt">
21860 <row>
21861 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21862 \begin_inset Text
21863
21864 \begin_layout Plain Layout
21865 Comando
21866 \end_layout
21867
21868 \end_inset
21869 </cell>
21870 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21871 \begin_inset Text
21872
21873 \begin_layout Plain Layout
21874 Símbolo
21875 \end_layout
21876
21877 \end_inset
21878 </cell>
21879 </row>
21880 <row>
21881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21882 \begin_inset Text
21883
21884 \begin_layout Plain Layout
21885
21886 \backslash
21887 diamondsuit
21888 \end_layout
21889
21890 \end_inset
21891 </cell>
21892 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21893 \begin_inset Text
21894
21895 \begin_layout Plain Layout
21896 \begin_inset Formula $\diamondsuit$
21897 \end_inset
21898
21899
21900 \end_layout
21901
21902 \end_inset
21903 </cell>
21904 </row>
21905 <row>
21906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21907 \begin_inset Text
21908
21909 \begin_layout Plain Layout
21910
21911 \backslash
21912 Diamond
21913 \end_layout
21914
21915 \end_inset
21916 </cell>
21917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21918 \begin_inset Text
21919
21920 \begin_layout Plain Layout
21921 \begin_inset Formula $\Diamond$
21922 \end_inset
21923
21924
21925 \end_layout
21926
21927 \end_inset
21928 </cell>
21929 </row>
21930 <row>
21931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21932 \begin_inset Text
21933
21934 \begin_layout Plain Layout
21935
21936 \backslash
21937 heartsuit
21938 \end_layout
21939
21940 \end_inset
21941 </cell>
21942 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21943 \begin_inset Text
21944
21945 \begin_layout Plain Layout
21946 \begin_inset Formula $\heartsuit$
21947 \end_inset
21948
21949
21950 \end_layout
21951
21952 \end_inset
21953 </cell>
21954 </row>
21955 <row>
21956 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21957 \begin_inset Text
21958
21959 \begin_layout Plain Layout
21960
21961 \backslash
21962 P
21963 \end_layout
21964
21965 \end_inset
21966 </cell>
21967 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21968 \begin_inset Text
21969
21970 \begin_layout Plain Layout
21971 \begin_inset Formula $\P $
21972 \end_inset
21973
21974
21975 \end_layout
21976
21977 \end_inset
21978 </cell>
21979 </row>
21980 <row>
21981 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21982 \begin_inset Text
21983
21984 \begin_layout Plain Layout
21985
21986 \backslash
21987 copyright
21988 \end_layout
21989
21990 \end_inset
21991 </cell>
21992 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21993 \begin_inset Text
21994
21995 \begin_layout Plain Layout
21996 \begin_inset Formula $\copyright $
21997 \end_inset
21998
21999
22000 \end_layout
22001
22002 \end_inset
22003 </cell>
22004 </row>
22005 <row>
22006 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22007 \begin_inset Text
22008
22009 \begin_layout Plain Layout
22010
22011 \backslash
22012 circledR
22013 \end_layout
22014
22015 \end_inset
22016 </cell>
22017 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22018 \begin_inset Text
22019
22020 \begin_layout Plain Layout
22021 \begin_inset Formula $\circledR$
22022 \end_inset
22023
22024
22025 \end_layout
22026
22027 \end_inset
22028 </cell>
22029 </row>
22030 <row>
22031 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22032 \begin_inset Text
22033
22034 \begin_layout Plain Layout
22035
22036 \backslash
22037 maltese
22038 \end_layout
22039
22040 \end_inset
22041 </cell>
22042 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22043 \begin_inset Text
22044
22045 \begin_layout Plain Layout
22046 \begin_inset Formula $\maltese$
22047 \end_inset
22048
22049
22050 \end_layout
22051
22052 \end_inset
22053 </cell>
22054 </row>
22055 <row>
22056 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22057 \begin_inset Text
22058
22059 \begin_layout Plain Layout
22060
22061 \backslash
22062 diagup
22063 \end_layout
22064
22065 \end_inset
22066 </cell>
22067 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22068 \begin_inset Text
22069
22070 \begin_layout Plain Layout
22071 \begin_inset Formula $\diagup$
22072 \end_inset
22073
22074
22075 \end_layout
22076
22077 \end_inset
22078 </cell>
22079 </row>
22080 <row>
22081 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22082 \begin_inset Text
22083
22084 \begin_layout Plain Layout
22085
22086 \backslash
22087 diagdown
22088 \end_layout
22089
22090 \end_inset
22091 </cell>
22092 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22093 \begin_inset Text
22094
22095 \begin_layout Plain Layout
22096 \begin_inset Formula $\diagdown$
22097 \end_inset
22098
22099
22100 \end_layout
22101
22102 \end_inset
22103 </cell>
22104 </row>
22105 </lyxtabular>
22106
22107 \end_inset
22108
22109
22110 \end_layout
22111
22112 \begin_layout Standard
22113 \begin_inset VSpace medskip
22114 \end_inset
22115
22116
22117 \end_layout
22118
22119 \begin_layout Standard
22120 Hay más símbolos en 
22121 \begin_inset CommandInset ref
22122 LatexCommand ref
22123 reference "sub:Caracteres-especiales-misceláneos"
22124
22125 \end_inset
22126
22127 .
22128 \end_layout
22129
22130 \begin_layout Standard
22131 Algunos símbolos pueden presentarse en distintos tamaños, véase 
22132 \begin_inset CommandInset ref
22133 LatexCommand ref
22134 reference "sub:Tamaños-de-fuentes"
22135
22136 \end_inset
22137
22138
22139 \end_layout
22140
22141 \begin_layout Subsection
22142 El símbolo del euro, €
22143 \begin_inset Index
22144 status collapsed
22145
22146 \begin_layout Plain Layout
22147 Símbolos ! euro
22148 \end_layout
22149
22150 \end_inset
22151
22152
22153 \begin_inset Index
22154 status collapsed
22155
22156 \begin_layout Plain Layout
22157 \begin_inset ERT
22158 status collapsed
22159
22160 \begin_layout Plain Layout
22161
22162
22163 \backslash
22164 officialeuro
22165 \end_layout
22166
22167 \end_inset
22168
22169
22170 \end_layout
22171
22172 \end_inset
22173
22174
22175 \end_layout
22176
22177 \begin_layout Standard
22178 Para usar el símbolo del euro en ecuaciones debe estar instalado el paquete
22179  LaTeX 
22180 \series bold
22181 eurosym
22182 \series default
22183
22184 \begin_inset Index
22185 status collapsed
22186
22187 \begin_layout Plain Layout
22188 Paquetes ! eurosym
22189 \end_layout
22190
22191 \end_inset
22192
22193 , y cargado en el preámbulo LaTeX con la línea
22194 \end_layout
22195
22196 \begin_layout Standard
22197
22198 \series bold
22199
22200 \backslash
22201 usepackage[gennarrow]{eurosym}
22202 \end_layout
22203
22204 \begin_layout Standard
22205 Actualmente también se puede insertar con el comando 
22206 \series bold
22207
22208 \backslash
22209 euro
22210 \series default
22211
22212 \begin_inset Index
22213 status collapsed
22214
22215 \begin_layout Plain Layout
22216 Comandos ! E ! 
22217 \backslash
22218 euro
22219 \end_layout
22220
22221 \end_inset
22222
22223 .
22224 \end_layout
22225
22226 \begin_layout Standard
22227 El símbolo del euro puede insertarse directamente con la tecla € en texto
22228  matemático sin tener 
22229 \series bold
22230 eurosym
22231 \series default
22232  instalado.
22233  Si 
22234 \series bold
22235 eurosym
22236 \series default
22237  está instalado, se puede insertar 
22238 \series bold
22239
22240 \backslash
22241 euro
22242 \series default
22243  en modo TeX.
22244  El símbolo oficial de la moneda se puede insertar con el comando 
22245 \series bold
22246
22247 \backslash
22248 officialeuro
22249 \series default
22250
22251 \begin_inset Index
22252 status collapsed
22253
22254 \begin_layout Plain Layout
22255 Comandos ! O ! 
22256 \backslash
22257 officialeuro
22258 \end_layout
22259
22260 \end_inset
22261
22262 , que sólo está disponible en modo TeX.
22263 \end_layout
22264
22265 \begin_layout Standard
22266 \begin_inset ERT
22267 status collapsed
22268
22269 \begin_layout Plain Layout
22270
22271
22272 \backslash
22273 ifeurosym
22274 \end_layout
22275
22276 \end_inset
22277
22278
22279 \begin_inset Note Note
22280 status collapsed
22281
22282 \begin_layout Plain Layout
22283 La tabla siguiente sólo se mostrará si está instalado el paquete LaTeX 
22284 \series bold
22285 eurosym
22286 \series default
22287 .
22288 \end_layout
22289
22290 \end_inset
22291
22292
22293 \end_layout
22294
22295 \begin_layout Standard
22296 Un vistazo a los diferentes símbolos del euro.
22297 \end_layout
22298
22299 \begin_layout Standard
22300 \noindent
22301 \align center
22302 \begin_inset Tabular
22303 <lyxtabular version="3" rows="4" columns="3">
22304 <features>
22305 <column alignment="center" valignment="top" width="0">
22306 <column alignment="center" valignment="top" width="0">
22307 <column alignment="center" valignment="top" width="0">
22308 <row>
22309 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
22310 \begin_inset Text
22311
22312 \begin_layout Plain Layout
22313
22314 \end_layout
22315
22316 \end_inset
22317 </cell>
22318 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22319 \begin_inset Text
22320
22321 \begin_layout Plain Layout
22322 Comando
22323 \end_layout
22324
22325 \end_inset
22326 </cell>
22327 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22328 \begin_inset Text
22329
22330 \begin_layout Plain Layout
22331 Símbolo
22332 \end_layout
22333
22334 \end_inset
22335 </cell>
22336 </row>
22337 <row>
22338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22339 \begin_inset Text
22340
22341 \begin_layout Plain Layout
22342 ecuación
22343 \end_layout
22344
22345 \end_inset
22346 </cell>
22347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22348 \begin_inset Text
22349
22350 \begin_layout Plain Layout
22351
22352 \backslash
22353 euro
22354 \end_layout
22355
22356 \end_inset
22357 </cell>
22358 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22359 \begin_inset Text
22360
22361 \begin_layout Plain Layout
22362 \begin_inset Formula $\euro $
22363 \end_inset
22364
22365
22366 \end_layout
22367
22368 \end_inset
22369 </cell>
22370 </row>
22371 <row>
22372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22373 \begin_inset Text
22374
22375 \begin_layout Plain Layout
22376 texto matemático
22377 \end_layout
22378
22379 \end_inset
22380 </cell>
22381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22382 \begin_inset Text
22383
22384 \begin_layout Plain Layout
22385
22386 \end_layout
22387
22388 \end_inset
22389 </cell>
22390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22391 \begin_inset Text
22392
22393 \begin_layout Plain Layout
22394 \begin_inset Formula $\mbox{€}$
22395 \end_inset
22396
22397
22398 \end_layout
22399
22400 \end_inset
22401 </cell>
22402 </row>
22403 <row>
22404 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22405 \begin_inset Text
22406
22407 \begin_layout Plain Layout
22408 modo TeX
22409 \end_layout
22410
22411 \end_inset
22412 </cell>
22413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22414 \begin_inset Text
22415
22416 \begin_layout Plain Layout
22417
22418 \backslash
22419 officialeuro
22420 \end_layout
22421
22422 \end_inset
22423 </cell>
22424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22425 \begin_inset Text
22426
22427 \begin_layout Plain Layout
22428 \begin_inset ERT
22429 status collapsed
22430
22431 \begin_layout Plain Layout
22432
22433
22434 \backslash
22435 officialeuro
22436 \end_layout
22437
22438 \end_inset
22439
22440
22441 \end_layout
22442
22443 \end_inset
22444 </cell>
22445 </row>
22446 </lyxtabular>
22447
22448 \end_inset
22449
22450
22451 \end_layout
22452
22453 \begin_layout Standard
22454 \begin_inset ERT
22455 status collapsed
22456
22457 \begin_layout Plain Layout
22458
22459
22460 \backslash
22461 else
22462 \end_layout
22463
22464 \end_inset
22465
22466
22467 \begin_inset Note Note
22468 status collapsed
22469
22470 \begin_layout Plain Layout
22471 Se mostrará lo siguiente si no está instalado el paquete LaTeX 
22472 \series bold
22473 eurosym
22474 \series default
22475 :
22476 \end_layout
22477
22478 \end_inset
22479
22480
22481 \end_layout
22482
22483 \begin_layout Standard
22484 Para ver la salida completa de esta subsección debe estar instalado el paquete
22485  LaTeX 
22486 \series bold
22487 eurosym
22488 \series default
22489 .
22490 \end_layout
22491
22492 \begin_layout Standard
22493 \begin_inset ERT
22494 status collapsed
22495
22496 \begin_layout Plain Layout
22497
22498
22499 \backslash
22500 fi
22501 \end_layout
22502
22503 \end_inset
22504
22505
22506 \end_layout
22507
22508 \begin_layout Section
22509 Relaciones
22510 \begin_inset CommandInset label
22511 LatexCommand label
22512 name "sec:Relaciones"
22513
22514 \end_inset
22515
22516
22517 \begin_inset Index
22518 status collapsed
22519
22520 \begin_layout Plain Layout
22521 Relaciones
22522 \end_layout
22523
22524 \end_inset
22525
22526
22527 \begin_inset Index
22528 status collapsed
22529
22530 \begin_layout Plain Layout
22531 Comparaciones|see
22532 \begin_inset ERT
22533 status collapsed
22534
22535 \begin_layout Plain Layout
22536
22537 {
22538 \end_layout
22539
22540 \end_inset
22541
22542 Relaciones
22543 \begin_inset ERT
22544 status collapsed
22545
22546 \begin_layout Plain Layout
22547
22548 }
22549 \end_layout
22550
22551 \end_inset
22552
22553
22554 \end_layout
22555
22556 \end_inset
22557
22558
22559 \end_layout
22560
22561 \begin_layout Standard
22562 Todas las relaciones se pueden insertar también con el botón 
22563 \begin_inset Graphics
22564         filename ../../images/math/leq.png
22565         embed ""
22566         scale 85
22567
22568 \end_inset
22569
22570  de la barra de ecuaciones.
22571 \end_layout
22572
22573 \begin_layout Standard
22574 \begin_inset Space \hfill{}
22575 \end_inset
22576
22577
22578 \begin_inset Tabular
22579 <lyxtabular version="3" rows="17" columns="2">
22580 <features>
22581 <column alignment="center" valignment="top" width="0pt">
22582 <column alignment="center" valignment="top" width="0pt">
22583 <row>
22584 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22585 \begin_inset Text
22586
22587 \begin_layout Plain Layout
22588 Comando
22589 \end_layout
22590
22591 \end_inset
22592 </cell>
22593 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22594 \begin_inset Text
22595
22596 \begin_layout Plain Layout
22597 Relación
22598 \end_layout
22599
22600 \end_inset
22601 </cell>
22602 </row>
22603 <row>
22604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22605 \begin_inset Text
22606
22607 \begin_layout Plain Layout
22608 <
22609 \end_layout
22610
22611 \end_inset
22612 </cell>
22613 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22614 \begin_inset Text
22615
22616 \begin_layout Plain Layout
22617 \begin_inset Formula $<$
22618 \end_inset
22619
22620
22621 \end_layout
22622
22623 \end_inset
22624 </cell>
22625 </row>
22626 <row>
22627 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22628 \begin_inset Text
22629
22630 \begin_layout Plain Layout
22631
22632 \backslash
22633 le
22634 \end_layout
22635
22636 \end_inset
22637 </cell>
22638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22639 \begin_inset Text
22640
22641 \begin_layout Plain Layout
22642 \begin_inset Formula $\le$
22643 \end_inset
22644
22645
22646 \end_layout
22647
22648 \end_inset
22649 </cell>
22650 </row>
22651 <row>
22652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22653 \begin_inset Text
22654
22655 \begin_layout Plain Layout
22656
22657 \backslash
22658 ll
22659 \end_layout
22660
22661 \end_inset
22662 </cell>
22663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22664 \begin_inset Text
22665
22666 \begin_layout Plain Layout
22667 \begin_inset Formula $\ll$
22668 \end_inset
22669
22670
22671 \end_layout
22672
22673 \end_inset
22674 </cell>
22675 </row>
22676 <row>
22677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22678 \begin_inset Text
22679
22680 \begin_layout Plain Layout
22681
22682 \backslash
22683 prec
22684 \end_layout
22685
22686 \end_inset
22687 </cell>
22688 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22689 \begin_inset Text
22690
22691 \begin_layout Plain Layout
22692 \begin_inset Formula $\prec$
22693 \end_inset
22694
22695
22696 \end_layout
22697
22698 \end_inset
22699 </cell>
22700 </row>
22701 <row>
22702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22703 \begin_inset Text
22704
22705 \begin_layout Plain Layout
22706
22707 \backslash
22708 preceq
22709 \end_layout
22710
22711 \end_inset
22712 </cell>
22713 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22714 \begin_inset Text
22715
22716 \begin_layout Plain Layout
22717 \begin_inset Formula $\preceq$
22718 \end_inset
22719
22720
22721 \end_layout
22722
22723 \end_inset
22724 </cell>
22725 </row>
22726 <row>
22727 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22728 \begin_inset Text
22729
22730 \begin_layout Plain Layout
22731
22732 \backslash
22733 subset
22734 \end_layout
22735
22736 \end_inset
22737 </cell>
22738 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22739 \begin_inset Text
22740
22741 \begin_layout Plain Layout
22742 \begin_inset Formula $\subset$
22743 \end_inset
22744
22745
22746 \end_layout
22747
22748 \end_inset
22749 </cell>
22750 </row>
22751 <row>
22752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22753 \begin_inset Text
22754
22755 \begin_layout Plain Layout
22756
22757 \backslash
22758 subseteq
22759 \end_layout
22760
22761 \end_inset
22762 </cell>
22763 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22764 \begin_inset Text
22765
22766 \begin_layout Plain Layout
22767 \begin_inset Formula $\subseteq$
22768 \end_inset
22769
22770
22771 \end_layout
22772
22773 \end_inset
22774 </cell>
22775 </row>
22776 <row>
22777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22778 \begin_inset Text
22779
22780 \begin_layout Plain Layout
22781
22782 \backslash
22783 sqsubseteq
22784 \end_layout
22785
22786 \end_inset
22787 </cell>
22788 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22789 \begin_inset Text
22790
22791 \begin_layout Plain Layout
22792 \begin_inset Formula $\sqsubseteq$
22793 \end_inset
22794
22795
22796 \end_layout
22797
22798 \end_inset
22799 </cell>
22800 </row>
22801 <row>
22802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22803 \begin_inset Text
22804
22805 \begin_layout Plain Layout
22806
22807 \backslash
22808 in
22809 \end_layout
22810
22811 \end_inset
22812 </cell>
22813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22814 \begin_inset Text
22815
22816 \begin_layout Plain Layout
22817 \begin_inset Formula $\in$
22818 \end_inset
22819
22820
22821 \end_layout
22822
22823 \end_inset
22824 </cell>
22825 </row>
22826 <row>
22827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22828 \begin_inset Text
22829
22830 \begin_layout Plain Layout
22831
22832 \backslash
22833 vdash
22834 \end_layout
22835
22836 \end_inset
22837 </cell>
22838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22839 \begin_inset Text
22840
22841 \begin_layout Plain Layout
22842 \begin_inset Formula $\vdash$
22843 \end_inset
22844
22845
22846 \end_layout
22847
22848 \end_inset
22849 </cell>
22850 </row>
22851 <row>
22852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22853 \begin_inset Text
22854
22855 \begin_layout Plain Layout
22856
22857 \backslash
22858 smile
22859 \end_layout
22860
22861 \end_inset
22862 </cell>
22863 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22864 \begin_inset Text
22865
22866 \begin_layout Plain Layout
22867 \begin_inset Formula $\smile$
22868 \end_inset
22869
22870
22871 \end_layout
22872
22873 \end_inset
22874 </cell>
22875 </row>
22876 <row>
22877 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22878 \begin_inset Text
22879
22880 \begin_layout Plain Layout
22881
22882 \backslash
22883 lhd
22884 \end_layout
22885
22886 \end_inset
22887 </cell>
22888 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22889 \begin_inset Text
22890
22891 \begin_layout Plain Layout
22892 \begin_inset Formula $\lhd$
22893 \end_inset
22894
22895
22896 \end_layout
22897
22898 \end_inset
22899 </cell>
22900 </row>
22901 <row>
22902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22903 \begin_inset Text
22904
22905 \begin_layout Plain Layout
22906
22907 \backslash
22908 unlhd
22909 \end_layout
22910
22911 \end_inset
22912 </cell>
22913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22914 \begin_inset Text
22915
22916 \begin_layout Plain Layout
22917 \begin_inset Formula $\unlhd$
22918 \end_inset
22919
22920
22921 \end_layout
22922
22923 \end_inset
22924 </cell>
22925 </row>
22926 <row>
22927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22928 \begin_inset Text
22929
22930 \begin_layout Plain Layout
22931
22932 \backslash
22933 gtrless
22934 \end_layout
22935
22936 \end_inset
22937 </cell>
22938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22939 \begin_inset Text
22940
22941 \begin_layout Plain Layout
22942 \begin_inset Formula $\gtrless$
22943 \end_inset
22944
22945
22946 \end_layout
22947
22948 \end_inset
22949 </cell>
22950 </row>
22951 <row>
22952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22953 \begin_inset Text
22954
22955 \begin_layout Plain Layout
22956
22957 \backslash
22958 mid
22959 \end_layout
22960
22961 \end_inset
22962 </cell>
22963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22964 \begin_inset Text
22965
22966 \begin_layout Plain Layout
22967 \begin_inset Formula $\mid$
22968 \end_inset
22969
22970
22971 \end_layout
22972
22973 \end_inset
22974 </cell>
22975 </row>
22976 <row>
22977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22978 \begin_inset Text
22979
22980 \begin_layout Plain Layout
22981
22982 \backslash
22983 nmid
22984 \end_layout
22985
22986 \end_inset
22987 </cell>
22988 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22989 \begin_inset Text
22990
22991 \begin_layout Plain Layout
22992 \begin_inset Formula $\nmid$
22993 \end_inset
22994
22995
22996 \end_layout
22997
22998 \end_inset
22999 </cell>
23000 </row>
23001 </lyxtabular>
23002
23003 \end_inset
23004
23005
23006 \begin_inset Space \hfill{}
23007 \end_inset
23008
23009
23010 \begin_inset Tabular
23011 <lyxtabular version="3" rows="17" columns="2">
23012 <features>
23013 <column alignment="center" valignment="top" width="0pt">
23014 <column alignment="center" valignment="top" width="0pt">
23015 <row>
23016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23017 \begin_inset Text
23018
23019 \begin_layout Plain Layout
23020 Comando
23021 \end_layout
23022
23023 \end_inset
23024 </cell>
23025 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23026 \begin_inset Text
23027
23028 \begin_layout Plain Layout
23029 Relación
23030 \end_layout
23031
23032 \end_inset
23033 </cell>
23034 </row>
23035 <row>
23036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23037 \begin_inset Text
23038
23039 \begin_layout Plain Layout
23040 =
23041 \end_layout
23042
23043 \end_inset
23044 </cell>
23045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23046 \begin_inset Text
23047
23048 \begin_layout Plain Layout
23049 \begin_inset Formula $=$
23050 \end_inset
23051
23052
23053 \end_layout
23054
23055 \end_inset
23056 </cell>
23057 </row>
23058 <row>
23059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23060 \begin_inset Text
23061
23062 \begin_layout Plain Layout
23063
23064 \backslash
23065 not=
23066 \end_layout
23067
23068 \end_inset
23069 </cell>
23070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23071 \begin_inset Text
23072
23073 \begin_layout Plain Layout
23074 \begin_inset Formula $\not=$
23075 \end_inset
23076
23077
23078 \end_layout
23079
23080 \end_inset
23081 </cell>
23082 </row>
23083 <row>
23084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23085 \begin_inset Text
23086
23087 \begin_layout Plain Layout
23088
23089 \backslash
23090 equiv
23091 \end_layout
23092
23093 \end_inset
23094 </cell>
23095 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23096 \begin_inset Text
23097
23098 \begin_layout Plain Layout
23099 \begin_inset Formula $\equiv$
23100 \end_inset
23101
23102
23103 \end_layout
23104
23105 \end_inset
23106 </cell>
23107 </row>
23108 <row>
23109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23110 \begin_inset Text
23111
23112 \begin_layout Plain Layout
23113
23114 \backslash
23115 sim
23116 \end_layout
23117
23118 \end_inset
23119 </cell>
23120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23121 \begin_inset Text
23122
23123 \begin_layout Plain Layout
23124 \begin_inset Formula $\sim$
23125 \end_inset
23126
23127
23128 \end_layout
23129
23130 \end_inset
23131 </cell>
23132 </row>
23133 <row>
23134 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23135 \begin_inset Text
23136
23137 \begin_layout Plain Layout
23138
23139 \backslash
23140 simeq
23141 \end_layout
23142
23143 \end_inset
23144 </cell>
23145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23146 \begin_inset Text
23147
23148 \begin_layout Plain Layout
23149 \begin_inset Formula $\simeq$
23150 \end_inset
23151
23152
23153 \end_layout
23154
23155 \end_inset
23156 </cell>
23157 </row>
23158 <row>
23159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23160 \begin_inset Text
23161
23162 \begin_layout Plain Layout
23163
23164 \backslash
23165 approx
23166 \end_layout
23167
23168 \end_inset
23169 </cell>
23170 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23171 \begin_inset Text
23172
23173 \begin_layout Plain Layout
23174 \begin_inset Formula $\approx$
23175 \end_inset
23176
23177
23178 \end_layout
23179
23180 \end_inset
23181 </cell>
23182 </row>
23183 <row>
23184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23185 \begin_inset Text
23186
23187 \begin_layout Plain Layout
23188
23189 \backslash
23190 cong
23191 \end_layout
23192
23193 \end_inset
23194 </cell>
23195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23196 \begin_inset Text
23197
23198 \begin_layout Plain Layout
23199 \begin_inset Formula $\cong$
23200 \end_inset
23201
23202
23203 \end_layout
23204
23205 \end_inset
23206 </cell>
23207 </row>
23208 <row>
23209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23210 \begin_inset Text
23211
23212 \begin_layout Plain Layout
23213
23214 \backslash
23215 bowtie
23216 \end_layout
23217
23218 \end_inset
23219 </cell>
23220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23221 \begin_inset Text
23222
23223 \begin_layout Plain Layout
23224 \begin_inset Formula $\bowtie$
23225 \end_inset
23226
23227
23228 \end_layout
23229
23230 \end_inset
23231 </cell>
23232 </row>
23233 <row>
23234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23235 \begin_inset Text
23236
23237 \begin_layout Plain Layout
23238
23239 \backslash
23240 notin
23241 \end_layout
23242
23243 \end_inset
23244 </cell>
23245 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23246 \begin_inset Text
23247
23248 \begin_layout Plain Layout
23249 \begin_inset Formula $\notin$
23250 \end_inset
23251
23252
23253 \end_layout
23254
23255 \end_inset
23256 </cell>
23257 </row>
23258 <row>
23259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23260 \begin_inset Text
23261
23262 \begin_layout Plain Layout
23263
23264 \backslash
23265 perp
23266 \end_layout
23267
23268 \end_inset
23269 </cell>
23270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23271 \begin_inset Text
23272
23273 \begin_layout Plain Layout
23274 \begin_inset Formula $\perp$
23275 \end_inset
23276
23277
23278 \end_layout
23279
23280 \end_inset
23281 </cell>
23282 </row>
23283 <row>
23284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23285 \begin_inset Text
23286
23287 \begin_layout Plain Layout
23288
23289 \backslash
23290 propto
23291 \end_layout
23292
23293 \end_inset
23294 </cell>
23295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23296 \begin_inset Text
23297
23298 \begin_layout Plain Layout
23299 \begin_inset Formula $\propto$
23300 \end_inset
23301
23302
23303 \end_layout
23304
23305 \end_inset
23306 </cell>
23307 </row>
23308 <row>
23309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23310 \begin_inset Text
23311
23312 \begin_layout Plain Layout
23313
23314 \backslash
23315 asymp
23316 \end_layout
23317
23318 \end_inset
23319 </cell>
23320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23321 \begin_inset Text
23322
23323 \begin_layout Plain Layout
23324 \begin_inset Formula $\asymp$
23325 \end_inset
23326
23327
23328 \end_layout
23329
23330 \end_inset
23331 </cell>
23332 </row>
23333 <row>
23334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23335 \begin_inset Text
23336
23337 \begin_layout Plain Layout
23338
23339 \backslash
23340 doteq
23341 \end_layout
23342
23343 \end_inset
23344 </cell>
23345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23346 \begin_inset Text
23347
23348 \begin_layout Plain Layout
23349 \begin_inset Formula $\doteq$
23350 \end_inset
23351
23352
23353 \end_layout
23354
23355 \end_inset
23356 </cell>
23357 </row>
23358 <row>
23359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23360 \begin_inset Text
23361
23362 \begin_layout Plain Layout
23363
23364 \backslash
23365 circeq
23366 \end_layout
23367
23368 \end_inset
23369 </cell>
23370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23371 \begin_inset Text
23372
23373 \begin_layout Plain Layout
23374 \begin_inset Formula $\circeq$
23375 \end_inset
23376
23377
23378 \end_layout
23379
23380 \end_inset
23381 </cell>
23382 </row>
23383 <row>
23384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23385 \begin_inset Text
23386
23387 \begin_layout Plain Layout
23388
23389 \backslash
23390 models
23391 \end_layout
23392
23393 \end_inset
23394 </cell>
23395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23396 \begin_inset Text
23397
23398 \begin_layout Plain Layout
23399 \begin_inset Formula $\models$
23400 \end_inset
23401
23402
23403 \end_layout
23404
23405 \end_inset
23406 </cell>
23407 </row>
23408 <row>
23409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23410 \begin_inset Text
23411
23412 \begin_layout Plain Layout
23413
23414 \backslash
23415 widehat=
23416 \end_layout
23417
23418 \end_inset
23419 </cell>
23420 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23421 \begin_inset Text
23422
23423 \begin_layout Plain Layout
23424 \begin_inset Formula $\widehat{=}$
23425 \end_inset
23426
23427
23428 \end_layout
23429
23430 \end_inset
23431 </cell>
23432 </row>
23433 </lyxtabular>
23434
23435 \end_inset
23436
23437
23438 \begin_inset Space \hfill{}
23439 \end_inset
23440
23441
23442 \begin_inset Tabular
23443 <lyxtabular version="3" rows="17" columns="2">
23444 <features>
23445 <column alignment="center" valignment="top" width="0pt">
23446 <column alignment="center" valignment="top" width="0pt">
23447 <row>
23448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23449 \begin_inset Text
23450
23451 \begin_layout Plain Layout
23452 Comando
23453 \end_layout
23454
23455 \end_inset
23456 </cell>
23457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23458 \begin_inset Text
23459
23460 \begin_layout Plain Layout
23461 Relación
23462 \end_layout
23463
23464 \end_inset
23465 </cell>
23466 </row>
23467 <row>
23468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23469 \begin_inset Text
23470
23471 \begin_layout Plain Layout
23472 >
23473 \end_layout
23474
23475 \end_inset
23476 </cell>
23477 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23478 \begin_inset Text
23479
23480 \begin_layout Plain Layout
23481 \begin_inset Formula $>$
23482 \end_inset
23483
23484
23485 \end_layout
23486
23487 \end_inset
23488 </cell>
23489 </row>
23490 <row>
23491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23492 \begin_inset Text
23493
23494 \begin_layout Plain Layout
23495
23496 \backslash
23497 ge
23498 \end_layout
23499
23500 \end_inset
23501 </cell>
23502 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23503 \begin_inset Text
23504
23505 \begin_layout Plain Layout
23506 \begin_inset Formula $\ge$
23507 \end_inset
23508
23509
23510 \end_layout
23511
23512 \end_inset
23513 </cell>
23514 </row>
23515 <row>
23516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23517 \begin_inset Text
23518
23519 \begin_layout Plain Layout
23520
23521 \backslash
23522 gg
23523 \end_layout
23524
23525 \end_inset
23526 </cell>
23527 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23528 \begin_inset Text
23529
23530 \begin_layout Plain Layout
23531 \begin_inset Formula $\gg$
23532 \end_inset
23533
23534
23535 \end_layout
23536
23537 \end_inset
23538 </cell>
23539 </row>
23540 <row>
23541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23542 \begin_inset Text
23543
23544 \begin_layout Plain Layout
23545
23546 \backslash
23547 succ
23548 \end_layout
23549
23550 \end_inset
23551 </cell>
23552 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23553 \begin_inset Text
23554
23555 \begin_layout Plain Layout
23556 \begin_inset Formula $\succ$
23557 \end_inset
23558
23559
23560 \end_layout
23561
23562 \end_inset
23563 </cell>
23564 </row>
23565 <row>
23566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23567 \begin_inset Text
23568
23569 \begin_layout Plain Layout
23570
23571 \backslash
23572 succeq
23573 \end_layout
23574
23575 \end_inset
23576 </cell>
23577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23578 \begin_inset Text
23579
23580 \begin_layout Plain Layout
23581 \begin_inset Formula $\succeq$
23582 \end_inset
23583
23584
23585 \end_layout
23586
23587 \end_inset
23588 </cell>
23589 </row>
23590 <row>
23591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23592 \begin_inset Text
23593
23594 \begin_layout Plain Layout
23595
23596 \backslash
23597 supset
23598 \end_layout
23599
23600 \end_inset
23601 </cell>
23602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23603 \begin_inset Text
23604
23605 \begin_layout Plain Layout
23606 \begin_inset Formula $\supset$
23607 \end_inset
23608
23609
23610 \end_layout
23611
23612 \end_inset
23613 </cell>
23614 </row>
23615 <row>
23616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23617 \begin_inset Text
23618
23619 \begin_layout Plain Layout
23620
23621 \backslash
23622 supseteq
23623 \end_layout
23624
23625 \end_inset
23626 </cell>
23627 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23628 \begin_inset Text
23629
23630 \begin_layout Plain Layout
23631 \begin_inset Formula $\supseteq$
23632 \end_inset
23633
23634
23635 \end_layout
23636
23637 \end_inset
23638 </cell>
23639 </row>
23640 <row>
23641 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23642 \begin_inset Text
23643
23644 \begin_layout Plain Layout
23645
23646 \backslash
23647 sqsupseteq
23648 \end_layout
23649
23650 \end_inset
23651 </cell>
23652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23653 \begin_inset Text
23654
23655 \begin_layout Plain Layout
23656 \begin_inset Formula $\sqsupseteq$
23657 \end_inset
23658
23659
23660 \end_layout
23661
23662 \end_inset
23663 </cell>
23664 </row>
23665 <row>
23666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23667 \begin_inset Text
23668
23669 \begin_layout Plain Layout
23670
23671 \backslash
23672 ni
23673 \end_layout
23674
23675 \end_inset
23676 </cell>
23677 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23678 \begin_inset Text
23679
23680 \begin_layout Plain Layout
23681 \begin_inset Formula $\ni$
23682 \end_inset
23683
23684
23685 \end_layout
23686
23687 \end_inset
23688 </cell>
23689 </row>
23690 <row>
23691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23692 \begin_inset Text
23693
23694 \begin_layout Plain Layout
23695
23696 \backslash
23697 dashv
23698 \end_layout
23699
23700 \end_inset
23701 </cell>
23702 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23703 \begin_inset Text
23704
23705 \begin_layout Plain Layout
23706 \begin_inset Formula $\dashv$
23707 \end_inset
23708
23709
23710 \end_layout
23711
23712 \end_inset
23713 </cell>
23714 </row>
23715 <row>
23716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23717 \begin_inset Text
23718
23719 \begin_layout Plain Layout
23720
23721 \backslash
23722 frown
23723 \end_layout
23724
23725 \end_inset
23726 </cell>
23727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23728 \begin_inset Text
23729
23730 \begin_layout Plain Layout
23731 \begin_inset Formula $\frown$
23732 \end_inset
23733
23734
23735 \end_layout
23736
23737 \end_inset
23738 </cell>
23739 </row>
23740 <row>
23741 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23742 \begin_inset Text
23743
23744 \begin_layout Plain Layout
23745
23746 \backslash
23747 rhd
23748 \end_layout
23749
23750 \end_inset
23751 </cell>
23752 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23753 \begin_inset Text
23754
23755 \begin_layout Plain Layout
23756 \begin_inset Formula $\rhd$
23757 \end_inset
23758
23759
23760 \end_layout
23761
23762 \end_inset
23763 </cell>
23764 </row>
23765 <row>
23766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23767 \begin_inset Text
23768
23769 \begin_layout Plain Layout
23770
23771 \backslash
23772 unrhd
23773 \end_layout
23774
23775 \end_inset
23776 </cell>
23777 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23778 \begin_inset Text
23779
23780 \begin_layout Plain Layout
23781 \begin_inset Formula $\unrhd$
23782 \end_inset
23783
23784
23785 \end_layout
23786
23787 \end_inset
23788 </cell>
23789 </row>
23790 <row>
23791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23792 \begin_inset Text
23793
23794 \begin_layout Plain Layout
23795
23796 \backslash
23797 lessgtr
23798 \end_layout
23799
23800 \end_inset
23801 </cell>
23802 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23803 \begin_inset Text
23804
23805 \begin_layout Plain Layout
23806 \begin_inset Formula $\lessgtr$
23807 \end_inset
23808
23809
23810 \end_layout
23811
23812 \end_inset
23813 </cell>
23814 </row>
23815 <row>
23816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23817 \begin_inset Text
23818
23819 \begin_layout Plain Layout
23820
23821 \backslash
23822 parallel
23823 \end_layout
23824
23825 \end_inset
23826 </cell>
23827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23828 \begin_inset Text
23829
23830 \begin_layout Plain Layout
23831 \begin_inset Formula $\parallel$
23832 \end_inset
23833
23834
23835 \end_layout
23836
23837 \end_inset
23838 </cell>
23839 </row>
23840 <row>
23841 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23842 \begin_inset Text
23843
23844 \begin_layout Plain Layout
23845
23846 \backslash
23847 nparallel
23848 \end_layout
23849
23850 \end_inset
23851 </cell>
23852 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23853 \begin_inset Text
23854
23855 \begin_layout Plain Layout
23856 \begin_inset Formula $\nparallel$
23857 \end_inset
23858
23859
23860 \end_layout
23861
23862 \end_inset
23863 </cell>
23864 </row>
23865 </lyxtabular>
23866
23867 \end_inset
23868
23869
23870 \begin_inset Space \hfill{}
23871 \end_inset
23872
23873
23874 \end_layout
23875
23876 \begin_layout Standard
23877 \begin_inset VSpace medskip
23878 \end_inset
23879
23880
23881 \end_layout
23882
23883 \begin_layout Standard
23884 Los caracteres 
23885 \series bold
23886
23887 \backslash
23888 lhd
23889 \series default
23890  y 
23891 \series bold
23892
23893 \backslash
23894 rhd
23895 \series default
23896  son mayores que los operadores de aspecto similar 
23897 \series bold
23898
23899 \backslash
23900 triangleleft
23901 \series default
23902  y 
23903 \series bold
23904
23905 \backslash
23906 triangleright
23907 \series default
23908 , respectivamente.
23909 \end_layout
23910
23911 \begin_layout Standard
23912 Las relaciones, a diferencia de los símbolos, siempre se rodean de espacios.
23913 \end_layout
23914
23915 \begin_layout Standard
23916 Se pueden componer relaciones con etiquetas con el comando 
23917 \series bold
23918
23919 \backslash
23920 stackrel
23921 \series default
23922
23923 \begin_inset Index
23924 status collapsed
23925
23926 \begin_layout Plain Layout
23927 Comandos ! S ! 
23928 \backslash
23929 stackrel
23930 \end_layout
23931
23932 \end_inset
23933
23934 :
23935 \end_layout
23936
23937 \begin_layout Standard
23938 \align center
23939 \begin_inset Tabular
23940 <lyxtabular version="3" rows="2" columns="2">
23941 <features>
23942 <column alignment="center" valignment="top" width="0">
23943 <column alignment="center" valignment="top" width="0">
23944 <row>
23945 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23946 \begin_inset Text
23947
23948 \begin_layout Plain Layout
23949 Comando
23950 \end_layout
23951
23952 \end_inset
23953 </cell>
23954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23955 \begin_inset Text
23956
23957 \begin_layout Plain Layout
23958 Resultado
23959 \begin_inset Note Note
23960 status collapsed
23961
23962 \begin_layout Plain Layout
23963
23964 \series bold
23965
23966 \backslash
23967 raisebox
23968 \series default
23969  se usa sólo como espaciador
23970 \end_layout
23971
23972 \end_inset
23973
23974
23975 \end_layout
23976
23977 \end_inset
23978 </cell>
23979 </row>
23980 <row>
23981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23982 \begin_inset Text
23983
23984 \begin_layout Plain Layout
23985 A(r)
23986 \backslash
23987 stackrel
23988 \begin_inset ERT
23989 status collapsed
23990
23991 \begin_layout Plain Layout
23992
23993
23994 \backslash
23995 spce 
23996 \end_layout
23997
23998 \end_inset
23999
24000 r
24001 \backslash
24002 to
24003 \backslash
24004 infty
24005 \begin_inset ERT
24006 status collapsed
24007
24008 \begin_layout Plain Layout
24009
24010
24011 \backslash
24012 spce 
24013 \end_layout
24014
24015 \end_inset
24016
24017
24018 \begin_inset Formula $\downarrow$
24019 \end_inset
24020
24021
24022 \backslash
24023 approx
24024 \begin_inset ERT
24025 status collapsed
24026
24027 \begin_layout Plain Layout
24028
24029
24030 \backslash
24031 spce 
24032 \end_layout
24033
24034 \end_inset
24035
24036
24037 \begin_inset ERT
24038 status collapsed
24039
24040 \begin_layout Plain Layout
24041
24042
24043 \backslash
24044 spce 
24045 \end_layout
24046
24047 \end_inset
24048
24049 B
24050 \end_layout
24051
24052 \end_inset
24053 </cell>
24054 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24055 \begin_inset Text
24056
24057 \begin_layout Plain Layout
24058 \begin_inset Formula $\raisebox {5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24059 \end_inset
24060
24061
24062 \end_layout
24063
24064 \end_inset
24065 </cell>
24066 </row>
24067 </lyxtabular>
24068
24069 \end_inset
24070
24071
24072 \end_layout
24073
24074 \begin_layout Section
24075 Funciones
24076 \end_layout
24077
24078 \begin_layout Subsection
24079 Funciones predefinidas
24080 \begin_inset CommandInset label
24081 LatexCommand label
24082 name "sub:Funciones-predefinidas"
24083
24084 \end_inset
24085
24086
24087 \begin_inset Index
24088 status collapsed
24089
24090 \begin_layout Plain Layout
24091 Funciones ! predefinidas
24092 \end_layout
24093
24094 \end_inset
24095
24096
24097 \end_layout
24098
24099 \begin_layout Standard
24100 En general las variables se escriben en 
24101 \emph on
24102 cursiva
24103 \emph default
24104  en expresiones matemáticas, pero no los nombres de las funciones, porque
24105  
24106 \begin_inset Formula $sen$
24107 \end_inset
24108
24109  podría confundirse con 
24110 \begin_inset Formula $s\cdot e\cdot n$
24111 \end_inset
24112
24113 .
24114  Por eso hay funciones predefinidas, que además se separan un poco del factor
24115  precedente.
24116  Se insertan como comandos con una barra inversa  delante de su nombre.
24117 \end_layout
24118
24119 \begin_layout Standard
24120 \align center
24121 \begin_inset Tabular
24122 <lyxtabular version="3" rows="2" columns="4">
24123 <features>
24124 <column alignment="center" valignment="top" width="0pt">
24125 <column alignment="center" valignment="top" width="0pt">
24126 <column alignment="center" valignment="top" width="0pt">
24127 <column alignment="center" valignment="top" width="0pt">
24128 <row>
24129 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24130 \begin_inset Text
24131
24132 \begin_layout Plain Layout
24133 Comando
24134 \end_layout
24135
24136 \end_inset
24137 </cell>
24138 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24139 \begin_inset Text
24140
24141 \begin_layout Plain Layout
24142 Resultado
24143 \end_layout
24144
24145 \end_inset
24146 </cell>
24147 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24148 \begin_inset Text
24149
24150 \begin_layout Plain Layout
24151 Comando
24152 \end_layout
24153
24154 \end_inset
24155 </cell>
24156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24157 \begin_inset Text
24158
24159 \begin_layout Plain Layout
24160 Resultado
24161 \end_layout
24162
24163 \end_inset
24164 </cell>
24165 </row>
24166 <row>
24167 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24168 \begin_inset Text
24169
24170 \begin_layout Plain Layout
24171 Asen(x)+B
24172 \end_layout
24173
24174 \end_inset
24175 </cell>
24176 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24177 \begin_inset Text
24178
24179 \begin_layout Plain Layout
24180 \begin_inset Formula $Asen(x)+B$
24181 \end_inset
24182
24183
24184 \end_layout
24185
24186 \end_inset
24187 </cell>
24188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24189 \begin_inset Text
24190
24191 \begin_layout Plain Layout
24192 A
24193 \backslash
24194 sen(x)+B
24195 \end_layout
24196
24197 \end_inset
24198 </cell>
24199 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24200 \begin_inset Text
24201
24202 \begin_layout Plain Layout
24203 \begin_inset Formula $A\sen (x)+B$
24204 \end_inset
24205
24206
24207 \end_layout
24208
24209 \end_inset
24210 </cell>
24211 </row>
24212 </lyxtabular>
24213
24214 \end_inset
24215
24216
24217 \end_layout
24218
24219 \begin_layout Standard
24220 \align center
24221 \begin_inset Newpage newpage
24222 \end_inset
24223
24224
24225 \end_layout
24226
24227 \begin_layout Standard
24228 Las funciones siguientes están predefinidas
24229 \begin_inset Foot
24230 status collapsed
24231
24232 \begin_layout Plain Layout
24233 Se han añadido tres columnas con los comandos suministrados por el estilo
24234  
24235 \series bold
24236 spanish
24237 \series default
24238  de 
24239 \series bold
24240 babel
24241 \series default
24242 , adaptados a las convenciones hispanohablantes.
24243  Además, en su caso, las funciones serán acentuadas automáticamente, p.
24244 \begin_inset Space \thinspace{}
24245 \end_inset
24246
24247 e.
24248  
24249 \begin_inset Quotes fld
24250 \end_inset
24251
24252 lím
24253 \begin_inset Quotes frd
24254 \end_inset
24255
24256  o 
24257 \begin_inset Quotes fld
24258 \end_inset
24259
24260 máx
24261 \begin_inset Quotes frd
24262 \end_inset
24263
24264 .
24265  Véase la documentación de 
24266 \begin_inset CommandInset citation
24267 LatexCommand cite
24268 key "spanish"
24269
24270 \end_inset
24271
24272 .
24273  (
24274 \emph on
24275 N.
24276 \begin_inset Space \thinspace{}
24277 \end_inset
24278
24279 del t.
24280 \emph default
24281 )
24282 \end_layout
24283
24284 \end_inset
24285
24286 :
24287 \end_layout
24288
24289 \begin_layout Standard
24290 \begin_inset VSpace -2mm
24291 \end_inset
24292
24293
24294 \end_layout
24295
24296 \begin_layout Standard
24297 \align center
24298 \begin_inset Tabular
24299 <lyxtabular version="3" rows="9" columns="7">
24300 <features>
24301 <column alignment="center" valignment="top" width="0pt">
24302 <column alignment="center" valignment="top" width="0pt">
24303 <column alignment="center" valignment="top" width="0pt">
24304 <column alignment="center" valignment="top" width="0pt">
24305 <column alignment="center" valignment="top" width="0pt">
24306 <column alignment="center" valignment="top" width="0pt">
24307 <column alignment="center" valignment="top" width="0pt">
24308 <row>
24309 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24310 \begin_inset Text
24311
24312 \begin_layout Plain Layout
24313 Comando
24314 \end_layout
24315
24316 \end_inset
24317 </cell>
24318 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24319 \begin_inset Text
24320
24321 \begin_layout Plain Layout
24322 español
24323 \end_layout
24324
24325 \end_inset
24326 </cell>
24327 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24328 \begin_inset Text
24329
24330 \begin_layout Plain Layout
24331 Comando
24332 \end_layout
24333
24334 \end_inset
24335 </cell>
24336 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24337 \begin_inset Text
24338
24339 \begin_layout Plain Layout
24340 español
24341 \end_layout
24342
24343 \end_inset
24344 </cell>
24345 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24346 \begin_inset Text
24347
24348 \begin_layout Plain Layout
24349 Comando
24350 \end_layout
24351
24352 \end_inset
24353 </cell>
24354 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24355 \begin_inset Text
24356
24357 \begin_layout Plain Layout
24358 español
24359 \end_layout
24360
24361 \end_inset
24362 </cell>
24363 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24364 \begin_inset Text
24365
24366 \begin_layout Plain Layout
24367 Comando
24368 \end_layout
24369
24370 \end_inset
24371 </cell>
24372 </row>
24373 <row>
24374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24375 \begin_inset Text
24376
24377 \begin_layout Plain Layout
24378
24379 \backslash
24380 sin
24381 \end_layout
24382
24383 \end_inset
24384 </cell>
24385 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24386 \begin_inset Text
24387
24388 \begin_layout Plain Layout
24389
24390 \backslash
24391 sen
24392 \end_layout
24393
24394 \end_inset
24395 </cell>
24396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24397 \begin_inset Text
24398
24399 \begin_layout Plain Layout
24400
24401 \backslash
24402 sinh
24403 \end_layout
24404
24405 \end_inset
24406 </cell>
24407 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24408 \begin_inset Text
24409
24410 \begin_layout Plain Layout
24411
24412 \backslash
24413 senh
24414 \end_layout
24415
24416 \end_inset
24417 </cell>
24418 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24419 \begin_inset Text
24420
24421 \begin_layout Plain Layout
24422
24423 \backslash
24424 arcsin
24425 \end_layout
24426
24427 \end_inset
24428 </cell>
24429 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24430 \begin_inset Text
24431
24432 \begin_layout Plain Layout
24433
24434 \backslash
24435 arcsen
24436 \end_layout
24437
24438 \end_inset
24439 </cell>
24440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24441 \begin_inset Text
24442
24443 \begin_layout Plain Layout
24444
24445 \backslash
24446 sup
24447 \end_layout
24448
24449 \end_inset
24450 </cell>
24451 </row>
24452 <row>
24453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24454 \begin_inset Text
24455
24456 \begin_layout Plain Layout
24457
24458 \backslash
24459 cos
24460 \end_layout
24461
24462 \end_inset
24463 </cell>
24464 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24465 \begin_inset Text
24466
24467 \begin_layout Plain Layout
24468
24469 \end_layout
24470
24471 \end_inset
24472 </cell>
24473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24474 \begin_inset Text
24475
24476 \begin_layout Plain Layout
24477
24478 \backslash
24479 cosh
24480 \end_layout
24481
24482 \end_inset
24483 </cell>
24484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24485 \begin_inset Text
24486
24487 \begin_layout Plain Layout
24488
24489 \end_layout
24490
24491 \end_inset
24492 </cell>
24493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24494 \begin_inset Text
24495
24496 \begin_layout Plain Layout
24497
24498 \backslash
24499 arccos
24500 \end_layout
24501
24502 \end_inset
24503 </cell>
24504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24505 \begin_inset Text
24506
24507 \begin_layout Plain Layout
24508
24509 \backslash
24510 arccos
24511 \end_layout
24512
24513 \end_inset
24514 </cell>
24515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24516 \begin_inset Text
24517
24518 \begin_layout Plain Layout
24519
24520 \backslash
24521 inf
24522 \end_layout
24523
24524 \end_inset
24525 </cell>
24526 </row>
24527 <row>
24528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24529 \begin_inset Text
24530
24531 \begin_layout Plain Layout
24532
24533 \backslash
24534 tan
24535 \end_layout
24536
24537 \end_inset
24538 </cell>
24539 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24540 \begin_inset Text
24541
24542 \begin_layout Plain Layout
24543
24544 \backslash
24545 tg
24546 \end_layout
24547
24548 \end_inset
24549 </cell>
24550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24551 \begin_inset Text
24552
24553 \begin_layout Plain Layout
24554
24555 \backslash
24556 tanh
24557 \end_layout
24558
24559 \end_inset
24560 </cell>
24561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24562 \begin_inset Text
24563
24564 \begin_layout Plain Layout
24565
24566 \backslash
24567 tgh
24568 \end_layout
24569
24570 \end_inset
24571 </cell>
24572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24573 \begin_inset Text
24574
24575 \begin_layout Plain Layout
24576
24577 \backslash
24578 arctan
24579 \end_layout
24580
24581 \end_inset
24582 </cell>
24583 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24584 \begin_inset Text
24585
24586 \begin_layout Plain Layout
24587
24588 \backslash
24589 arctg
24590 \end_layout
24591
24592 \end_inset
24593 </cell>
24594 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24595 \begin_inset Text
24596
24597 \begin_layout Plain Layout
24598
24599 \backslash
24600 lim
24601 \end_layout
24602
24603 \end_inset
24604 </cell>
24605 </row>
24606 <row>
24607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24608 \begin_inset Text
24609
24610 \begin_layout Plain Layout
24611
24612 \backslash
24613 cot
24614 \end_layout
24615
24616 \end_inset
24617 </cell>
24618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24619 \begin_inset Text
24620
24621 \begin_layout Plain Layout
24622 \begin_inset Formula $ $
24623 \end_inset
24624
24625
24626 \backslash
24627 cotg
24628 \end_layout
24629
24630 \end_inset
24631 </cell>
24632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24633 \begin_inset Text
24634
24635 \begin_layout Plain Layout
24636
24637 \backslash
24638 coth
24639 \end_layout
24640
24641 \end_inset
24642 </cell>
24643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24644 \begin_inset Text
24645
24646 \begin_layout Plain Layout
24647
24648 \end_layout
24649
24650 \end_inset
24651 </cell>
24652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24653 \begin_inset Text
24654
24655 \begin_layout Plain Layout
24656
24657 \backslash
24658 arg
24659 \end_layout
24660
24661 \end_inset
24662 </cell>
24663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24664 \begin_inset Text
24665
24666 \begin_layout Plain Layout
24667
24668 \end_layout
24669
24670 \end_inset
24671 </cell>
24672 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24673 \begin_inset Text
24674
24675 \begin_layout Plain Layout
24676
24677 \backslash
24678 liminf
24679 \end_layout
24680
24681 \end_inset
24682 </cell>
24683 </row>
24684 <row>
24685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24686 \begin_inset Text
24687
24688 \begin_layout Plain Layout
24689
24690 \backslash
24691 sec
24692 \end_layout
24693
24694 \end_inset
24695 </cell>
24696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24697 \begin_inset Text
24698
24699 \begin_layout Plain Layout
24700
24701 \end_layout
24702
24703 \end_inset
24704 </cell>
24705 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24706 \begin_inset Text
24707
24708 \begin_layout Plain Layout
24709
24710 \backslash
24711 min
24712 \end_layout
24713
24714 \end_inset
24715 </cell>
24716 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24717 \begin_inset Text
24718
24719 \begin_layout Plain Layout
24720
24721 \end_layout
24722
24723 \end_inset
24724 </cell>
24725 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24726 \begin_inset Text
24727
24728 \begin_layout Plain Layout
24729
24730 \backslash
24731 deg
24732 \end_layout
24733
24734 \end_inset
24735 </cell>
24736 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24737 \begin_inset Text
24738
24739 \begin_layout Plain Layout
24740
24741 \end_layout
24742
24743 \end_inset
24744 </cell>
24745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24746 \begin_inset Text
24747
24748 \begin_layout Plain Layout
24749
24750 \backslash
24751 limsup
24752 \end_layout
24753
24754 \end_inset
24755 </cell>
24756 </row>
24757 <row>
24758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24759 \begin_inset Text
24760
24761 \begin_layout Plain Layout
24762
24763 \backslash
24764 csc
24765 \end_layout
24766
24767 \end_inset
24768 </cell>
24769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24770 \begin_inset Text
24771
24772 \begin_layout Plain Layout
24773
24774 \backslash
24775 cosec
24776 \end_layout
24777
24778 \end_inset
24779 </cell>
24780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24781 \begin_inset Text
24782
24783 \begin_layout Plain Layout
24784
24785 \backslash
24786 max
24787 \end_layout
24788
24789 \end_inset
24790 </cell>
24791 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24792 \begin_inset Text
24793
24794 \begin_layout Plain Layout
24795
24796 \end_layout
24797
24798 \end_inset
24799 </cell>
24800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24801 \begin_inset Text
24802
24803 \begin_layout Plain Layout
24804
24805 \backslash
24806 det
24807 \end_layout
24808
24809 \end_inset
24810 </cell>
24811 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24812 \begin_inset Text
24813
24814 \begin_layout Plain Layout
24815
24816 \end_layout
24817
24818 \end_inset
24819 </cell>
24820 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24821 \begin_inset Text
24822
24823 \begin_layout Plain Layout
24824
24825 \backslash
24826 Pr
24827 \end_layout
24828
24829 \end_inset
24830 </cell>
24831 </row>
24832 <row>
24833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24834 \begin_inset Text
24835
24836 \begin_layout Plain Layout
24837
24838 \backslash
24839 ln
24840 \end_layout
24841
24842 \end_inset
24843 </cell>
24844 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24845 \begin_inset Text
24846
24847 \begin_layout Plain Layout
24848
24849 \end_layout
24850
24851 \end_inset
24852 </cell>
24853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24854 \begin_inset Text
24855
24856 \begin_layout Plain Layout
24857
24858 \backslash
24859 exp
24860 \end_layout
24861
24862 \end_inset
24863 </cell>
24864 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24865 \begin_inset Text
24866
24867 \begin_layout Plain Layout
24868
24869 \end_layout
24870
24871 \end_inset
24872 </cell>
24873 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24874 \begin_inset Text
24875
24876 \begin_layout Plain Layout
24877
24878 \backslash
24879 dim
24880 \end_layout
24881
24882 \end_inset
24883 </cell>
24884 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24885 \begin_inset Text
24886
24887 \begin_layout Plain Layout
24888
24889 \end_layout
24890
24891 \end_inset
24892 </cell>
24893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24894 \begin_inset Text
24895
24896 \begin_layout Plain Layout
24897
24898 \backslash
24899 hom
24900 \end_layout
24901
24902 \end_inset
24903 </cell>
24904 </row>
24905 <row>
24906 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24907 \begin_inset Text
24908
24909 \begin_layout Plain Layout
24910
24911 \backslash
24912 lg
24913 \end_layout
24914
24915 \end_inset
24916 </cell>
24917 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24918 \begin_inset Text
24919
24920 \begin_layout Plain Layout
24921
24922 \end_layout
24923
24924 \end_inset
24925 </cell>
24926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24927 \begin_inset Text
24928
24929 \begin_layout Plain Layout
24930
24931 \backslash
24932 log
24933 \end_layout
24934
24935 \end_inset
24936 </cell>
24937 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24938 \begin_inset Text
24939
24940 \begin_layout Plain Layout
24941
24942 \end_layout
24943
24944 \end_inset
24945 </cell>
24946 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24947 \begin_inset Text
24948
24949 \begin_layout Plain Layout
24950
24951 \backslash
24952 ker
24953 \end_layout
24954
24955 \end_inset
24956 </cell>
24957 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24958 \begin_inset Text
24959
24960 \begin_layout Plain Layout
24961
24962 \end_layout
24963
24964 \end_inset
24965 </cell>
24966 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24967 \begin_inset Text
24968
24969 \begin_layout Plain Layout
24970
24971 \backslash
24972 gcd
24973 \end_layout
24974
24975 \end_inset
24976 </cell>
24977 </row>
24978 </lyxtabular>
24979
24980 \end_inset
24981
24982
24983 \end_layout
24984
24985 \begin_layout Standard
24986 También se pueden insertar con el botón 
24987 \begin_inset Graphics
24988         filename ../../images/math/functions.png
24989         embed ""
24990         scale 85
24991
24992 \end_inset
24993
24994  de la barra de ecuaciones.
24995 \end_layout
24996
24997 \begin_layout Subsection
24998 Funciones definidas por el usuario
24999 \begin_inset Index
25000 status collapsed
25001
25002 \begin_layout Plain Layout
25003 Funciones ! personalizadas
25004 \end_layout
25005
25006 \end_inset
25007
25008
25009 \end_layout
25010
25011 \begin_layout Standard
25012 Para usar una función no predefinida, como por ejemplo la función máximo
25013  común divisor, mcd
25014 \begin_inset Foot
25015 status collapsed
25016
25017 \begin_layout Plain Layout
25018 Se ha sustituido el ejemplo del original en inglés, 
25019 \backslash
25020
25021 \series bold
25022 sgn
25023 \series default
25024 , por la función máximo común divisor, 
25025 \series bold
25026
25027 \backslash
25028 mcd
25029 \series default
25030 , equivalente a la predefinida en inglés 
25031 \series bold
25032
25033 \backslash
25034 gcd
25035 \series default
25036 .
25037  (
25038 \emph on
25039 N.
25040 \begin_inset Space \thinspace{}
25041 \end_inset
25042
25043 del t.
25044 \emph default
25045 )
25046 \end_layout
25047
25048 \end_inset
25049
25050 , hay dos posibilidades:
25051 \end_layout
25052
25053 \begin_layout Itemize
25054 Define la función añadiendo al preámbulo LaTeX la línea
25055 \begin_inset Foot
25056 status collapsed
25057
25058 \begin_layout Plain Layout
25059 Más sobre 
25060 \series bold
25061
25062 \backslash
25063 DeclareMathOperator
25064 \series default
25065  en 
25066 \begin_inset CommandInset ref
25067 LatexCommand ref
25068 reference "sub:Operadores-de-usuario"
25069
25070 \end_inset
25071
25072
25073 \end_layout
25074
25075 \end_inset
25076
25077
25078 \begin_inset Newline newline
25079 \end_inset
25080
25081
25082 \begin_inset VSpace -3mm
25083 \end_inset
25084
25085
25086 \begin_inset Newline newline
25087 \end_inset
25088
25089
25090 \series bold
25091
25092 \backslash
25093 DeclareMathOperator{
25094 \backslash
25095 mcd}{mcd}
25096 \series default
25097
25098 \begin_inset Index
25099 status collapsed
25100
25101 \begin_layout Plain Layout
25102 Comandos ! D ! 
25103 \backslash
25104 dbinom@
25105 \backslash
25106 DeclareMathOperator
25107 \end_layout
25108
25109 \end_inset
25110
25111
25112 \begin_inset Newline newline
25113 \end_inset
25114
25115
25116 \begin_inset VSpace -2mm
25117 \end_inset
25118
25119
25120 \begin_inset Newline newline
25121 \end_inset
25122
25123 Ahora la función recién definida se puede obtener con el comando 
25124 \series bold
25125
25126 \backslash
25127 mcd
25128 \series default
25129 .
25130 \end_layout
25131
25132 \begin_layout Itemize
25133 Escribe la ecuación de la forma habitual, marca el nombre de la ecuación,
25134  en nuestro ejemplo las letras 
25135 \emph on
25136 mcd
25137 \emph default
25138 , y cámbialo a texto matemático.
25139  Entre el factor precedente y la función se inserta un espacio.
25140 \end_layout
25141
25142 \begin_layout Standard
25143 El resultado con ambos métodos es el mismo que con una función predefinida:
25144 \begin_inset Foot
25145 status collapsed
25146
25147 \begin_layout Plain Layout
25148 En LyX, las funciones personalizadas se ven en rojo, las predefinidas en
25149  negro.
25150 \end_layout
25151
25152 \end_inset
25153
25154
25155 \end_layout
25156
25157 \begin_layout Standard
25158 \align center
25159 \begin_inset Tabular
25160 <lyxtabular version="3" rows="3" columns="2">
25161 <features>
25162 <column alignment="center" valignment="top" width="0pt">
25163 <column alignment="center" valignment="top" width="0pt">
25164 <row>
25165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25166 \begin_inset Text
25167
25168 \begin_layout Plain Layout
25169 Comando
25170 \end_layout
25171
25172 \end_inset
25173 </cell>
25174 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25175 \begin_inset Text
25176
25177 \begin_layout Plain Layout
25178 Resultado
25179 \end_layout
25180
25181 \end_inset
25182 </cell>
25183 </row>
25184 <row>
25185 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25186 \begin_inset Text
25187
25188 \begin_layout Plain Layout
25189 A
25190 \backslash
25191 mcd(x)+B
25192 \end_layout
25193
25194 \end_inset
25195 </cell>
25196 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25197 \begin_inset Text
25198
25199 \begin_layout Plain Layout
25200 \begin_inset Formula $A\mcd (x)+B$
25201 \end_inset
25202
25203
25204 \end_layout
25205
25206 \end_inset
25207 </cell>
25208 </row>
25209 <row>
25210 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25211 \begin_inset Text
25212
25213 \begin_layout Plain Layout
25214 A
25215 \backslash
25216 ,
25217 \begin_inset Formula $\underbrace{\textrm{mcd}}_{\textrm{Alt-m}\,\textrm{m}}$
25218 \end_inset
25219
25220 (x)+B
25221 \end_layout
25222
25223 \end_inset
25224 </cell>
25225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25226 \begin_inset Text
25227
25228 \begin_layout Plain Layout
25229 \begin_inset Formula $A\,\mbox{mcd}(x)+B$
25230 \end_inset
25231
25232
25233 \end_layout
25234
25235 \end_inset
25236 </cell>
25237 </row>
25238 </lyxtabular>
25239
25240 \end_inset
25241
25242
25243 \end_layout
25244
25245 \begin_layout Standard
25246 El primer método es preferible si la función se va a usar varias veces.
25247 \end_layout
25248
25249 \begin_layout Subsection
25250 Límites
25251 \begin_inset Index
25252 status collapsed
25253
25254 \begin_layout Plain Layout
25255 Límites
25256 \end_layout
25257
25258 \end_inset
25259
25260
25261 \end_layout
25262
25263 \begin_layout Standard
25264 Para límites, además de 
25265 \series bold
25266
25267 \backslash
25268 lim
25269 \series default
25270
25271 \begin_inset Index
25272 status collapsed
25273
25274 \begin_layout Plain Layout
25275 Comandos ! L ! 
25276 \backslash
25277 lim
25278 \end_layout
25279
25280 \end_inset
25281
25282
25283 \series bold
25284
25285 \backslash
25286 liminf
25287 \series default
25288  y 
25289 \series bold
25290
25291 \backslash
25292 limsup
25293 \series default
25294  están definidas las siguientes funciones:
25295 \series bold
25296  
25297 \end_layout
25298
25299 \begin_layout Standard
25300 \noindent
25301 \align center
25302 \begin_inset Tabular
25303 <lyxtabular version="3" rows="5" columns="2">
25304 <features>
25305 <column alignment="center" valignment="top" width="0">
25306 <column alignment="center" valignment="top" width="0">
25307 <row>
25308 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25309 \begin_inset Text
25310
25311 \begin_layout Plain Layout
25312 Comando
25313 \end_layout
25314
25315 \end_inset
25316 </cell>
25317 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25318 \begin_inset Text
25319
25320 \begin_layout Plain Layout
25321 Resultado
25322 \begin_inset Note Note
25323 status collapsed
25324
25325 \begin_layout Plain Layout
25326
25327 \series bold
25328
25329 \backslash
25330 raisebox
25331 \series default
25332  se usa sólo como espaciador
25333 \end_layout
25334
25335 \end_inset
25336
25337
25338 \end_layout
25339
25340 \end_inset
25341 </cell>
25342 </row>
25343 <row>
25344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25345 \begin_inset Text
25346
25347 \begin_layout Plain Layout
25348
25349 \backslash
25350 varliminf
25351 \end_layout
25352
25353 \end_inset
25354 </cell>
25355 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25356 \begin_inset Text
25357
25358 \begin_layout Plain Layout
25359 \begin_inset Formula $\varliminf $
25360 \end_inset
25361
25362
25363 \end_layout
25364
25365 \end_inset
25366 </cell>
25367 </row>
25368 <row>
25369 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25370 \begin_inset Text
25371
25372 \begin_layout Plain Layout
25373
25374 \backslash
25375 varlimsup
25376 \end_layout
25377
25378 \end_inset
25379 </cell>
25380 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25381 \begin_inset Text
25382
25383 \begin_layout Plain Layout
25384 \begin_inset Formula $\varlimsup $
25385 \end_inset
25386
25387
25388 \end_layout
25389
25390 \end_inset
25391 </cell>
25392 </row>
25393 <row>
25394 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25395 \begin_inset Text
25396
25397 \begin_layout Plain Layout
25398
25399 \backslash
25400 varprojlim
25401 \end_layout
25402
25403 \end_inset
25404 </cell>
25405 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25406 \begin_inset Text
25407
25408 \begin_layout Plain Layout
25409 \begin_inset Formula $\varprojlim $
25410 \end_inset
25411
25412
25413 \end_layout
25414
25415 \end_inset
25416 </cell>
25417 </row>
25418 <row>
25419 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25420 \begin_inset Text
25421
25422 \begin_layout Plain Layout
25423
25424 \backslash
25425 varinjlim
25426 \end_layout
25427
25428 \end_inset
25429 </cell>
25430 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25431 \begin_inset Text
25432
25433 \begin_layout Plain Layout
25434 \begin_inset Formula $\varinjlim $
25435 \end_inset
25436
25437
25438 \begin_inset Formula $\raisebox {-2.5mm}{}$
25439 \end_inset
25440
25441
25442 \end_layout
25443
25444 \end_inset
25445 </cell>
25446 </row>
25447 </lyxtabular>
25448
25449 \end_inset
25450
25451
25452 \end_layout
25453
25454 \begin_layout Standard
25455 \begin_inset VSpace medskip
25456 \end_inset
25457
25458
25459 \end_layout
25460
25461 \begin_layout Standard
25462 El límite se crea insertando un subíndice.
25463  Se imprime a la derecha junto a la función en una fórmula en línea:
25464 \end_layout
25465
25466 \begin_layout Standard
25467 \noindent
25468 \align center
25469 \begin_inset Tabular
25470 <lyxtabular version="3" rows="2" columns="2">
25471 <features>
25472 <column alignment="center" valignment="top" width="0pt">
25473 <column alignment="center" valignment="top" width="0pt">
25474 <row>
25475 <cell alignment="center" valignment="top" usebox="none">
25476 \begin_inset Text
25477
25478 \begin_layout Plain Layout
25479 Comando
25480 \end_layout
25481
25482 \end_inset
25483 </cell>
25484 <cell alignment="center" valignment="top" usebox="none">
25485 \begin_inset Text
25486
25487 \begin_layout Plain Layout
25488 \begin_inset Space \hspace{}
25489 \length 1cm
25490 \end_inset
25491
25492 Resultado
25493 \begin_inset Note Note
25494 status collapsed
25495
25496 \begin_layout Plain Layout
25497
25498 \series bold
25499
25500 \backslash
25501 raisebox
25502 \series default
25503  se usa sólo como espaciador
25504 \end_layout
25505
25506 \end_inset
25507
25508
25509 \end_layout
25510
25511 \end_inset
25512 </cell>
25513 </row>
25514 <row>
25515 <cell alignment="center" valignment="top" usebox="none">
25516 \begin_inset Text
25517
25518 \begin_layout Plain Layout
25519
25520 \backslash
25521 lim_x
25522 \backslash
25523 to
25524 \begin_inset ERT
25525 status collapsed
25526
25527 \begin_layout Plain Layout
25528
25529
25530 \backslash
25531 spce 
25532 \end_layout
25533
25534 \end_inset
25535
25536 A
25537 \begin_inset ERT
25538 status collapsed
25539
25540 \begin_layout Plain Layout
25541
25542
25543 \backslash
25544 spce 
25545 \end_layout
25546
25547 \end_inset
25548
25549 x=B
25550 \end_layout
25551
25552 \end_inset
25553 </cell>
25554 <cell alignment="center" valignment="top" usebox="none">
25555 \begin_inset Text
25556
25557 \begin_layout Plain Layout
25558 \begin_inset Formula $\hspace {1cm}\raisebox {5mm}{}\lim_{x\rightarrow A}x=B$
25559 \end_inset
25560
25561
25562 \end_layout
25563
25564 \end_inset
25565 </cell>
25566 </row>
25567 </lyxtabular>
25568
25569 \end_inset
25570
25571
25572 \end_layout
25573
25574 \begin_layout Standard
25575 En una ecuación presentada el límite se imprime debajo, como es habitual:
25576 \begin_inset Foot
25577 status collapsed
25578
25579 \begin_layout Plain Layout
25580 El estilo 
25581 \series bold
25582 spanish
25583 \series default
25584  de 
25585 \series bold
25586 babel
25587 \series default
25588  lo imprime como en línea.
25589  Para evitarlo, se puede insertar el comando 
25590 \series bold
25591
25592 \backslash
25593 limits
25594 \series default
25595  justo detrás de 
25596 \series bold
25597
25598 \backslash
25599 lim
25600 \series default
25601 , o usar el menú 
25602 \family sans
25603 Editar\SpecialChar \menuseparator
25604 Ecuación\SpecialChar \menuseparator
25605 Cambiar tipo de límites\SpecialChar \menuseparator
25606 Pantalla
25607 \family default
25608 , como se explica en 
25609 \begin_inset CommandInset ref
25610 LatexCommand ref
25611 reference "sub:Límites-de-operadores"
25612
25613 \end_inset
25614
25615 .
25616  Véase 
25617 \begin_inset CommandInset citation
25618 LatexCommand cite
25619 key "spanish"
25620
25621 \end_inset
25622
25623 .
25624  (
25625 \emph on
25626 N.
25627 \begin_inset Space \thinspace{}
25628 \end_inset
25629
25630 del t.
25631 \emph default
25632
25633 \end_layout
25634
25635 \end_inset
25636
25637
25638 \begin_inset Formula \[
25639 \lim\limits _{x\rightarrow A}=B\]
25640
25641 \end_inset
25642
25643
25644 \end_layout
25645
25646 \begin_layout Subsection
25647 Función módulo
25648 \begin_inset Index
25649 status collapsed
25650
25651 \begin_layout Plain Layout
25652 Funciones ! módulo
25653 \end_layout
25654
25655 \end_inset
25656
25657
25658 \end_layout
25659
25660 \begin_layout Standard
25661 La función módulo es especial, porque existe en cuatro variantes.
25662 \end_layout
25663
25664 \begin_layout Standard
25665 En una ecuación presentada:
25666 \begin_inset Formula \begin{align*}
25667 \underline{\textrm{Comando}} &  & \underline{\textrm{Resultado}}\\
25668 \mathrm{a\backslash mod\textrm{\spce }b} &  & a\mod  b\\
25669 \mathrm{a\backslash pmod\textrm{\spce }b} &  & a\pmod  b\\
25670 \mathrm{a\backslash bmod\textrm{\spce }b} &  & a\bmod b\\
25671 \mathrm{a\backslash pod\textrm{\spce }b} &  & a\pod  b\end{align*}
25672
25673 \end_inset
25674
25675 En una ecuación en línea se pone menos espacio delante del nombre de la
25676  función para todas las variantes.
25677 \end_layout
25678
25679 \begin_layout Section
25680 Caracteres especiales
25681 \begin_inset Index
25682 status collapsed
25683
25684 \begin_layout Plain Layout
25685 Caracteres especiales
25686 \end_layout
25687
25688 \end_inset
25689
25690
25691 \end_layout
25692
25693 \begin_layout Subsection
25694 Caracteres especiales en texto matemático
25695 \end_layout
25696
25697 \begin_layout Standard
25698 Los siguientes comandos sólo se pueden usar en texto matemático o en modo
25699  TeX:
25700 \end_layout
25701
25702 \begin_layout Standard
25703 \begin_inset Space \hfill{}
25704 \end_inset
25705
25706
25707 \begin_inset Tabular
25708 <lyxtabular version="3" rows="8" columns="2">
25709 <features>
25710 <column alignment="block" valignment="top" width="0">
25711 <column alignment="block" valignment="top" width="0">
25712 <row>
25713 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25714 \begin_inset Text
25715
25716 \begin_layout Plain Layout
25717 Comando
25718 \end_layout
25719
25720 \end_inset
25721 </cell>
25722 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25723 \begin_inset Text
25724
25725 \begin_layout Plain Layout
25726 Resultado
25727 \end_layout
25728
25729 \end_inset
25730 </cell>
25731 </row>
25732 <row>
25733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25734 \begin_inset Text
25735
25736 \begin_layout Plain Layout
25737
25738 \backslash
25739 oe
25740 \end_layout
25741
25742 \end_inset
25743 </cell>
25744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25745 \begin_inset Text
25746
25747 \begin_layout Plain Layout
25748 \begin_inset Formula $\textrm{\oe }$
25749 \end_inset
25750
25751
25752 \end_layout
25753
25754 \end_inset
25755 </cell>
25756 </row>
25757 <row>
25758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25759 \begin_inset Text
25760
25761 \begin_layout Plain Layout
25762
25763 \backslash
25764 OE
25765 \end_layout
25766
25767 \end_inset
25768 </cell>
25769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25770 \begin_inset Text
25771
25772 \begin_layout Plain Layout
25773 \begin_inset Formula $\textrm{\OE }$
25774 \end_inset
25775
25776
25777 \end_layout
25778
25779 \end_inset
25780 </cell>
25781 </row>
25782 <row>
25783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25784 \begin_inset Text
25785
25786 \begin_layout Plain Layout
25787
25788 \backslash
25789 ae
25790 \end_layout
25791
25792 \end_inset
25793 </cell>
25794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25795 \begin_inset Text
25796
25797 \begin_layout Plain Layout
25798 \begin_inset Formula $\textrm{\ae }$
25799 \end_inset
25800
25801
25802 \end_layout
25803
25804 \end_inset
25805 </cell>
25806 </row>
25807 <row>
25808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25809 \begin_inset Text
25810
25811 \begin_layout Plain Layout
25812
25813 \backslash
25814 AE
25815 \end_layout
25816
25817 \end_inset
25818 </cell>
25819 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25820 \begin_inset Text
25821
25822 \begin_layout Plain Layout
25823 \begin_inset Formula $\textrm{\AE }$
25824 \end_inset
25825
25826
25827 \end_layout
25828
25829 \end_inset
25830 </cell>
25831 </row>
25832 <row>
25833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25834 \begin_inset Text
25835
25836 \begin_layout Plain Layout
25837
25838 \backslash
25839 aa
25840 \end_layout
25841
25842 \end_inset
25843 </cell>
25844 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25845 \begin_inset Text
25846
25847 \begin_layout Plain Layout
25848 \begin_inset Formula $\textrm{\aa }$
25849 \end_inset
25850
25851
25852 \end_layout
25853
25854 \end_inset
25855 </cell>
25856 </row>
25857 <row>
25858 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25859 \begin_inset Text
25860
25861 \begin_layout Plain Layout
25862
25863 \backslash
25864 AA
25865 \begin_inset Index
25866 status collapsed
25867
25868 \begin_layout Plain Layout
25869 \begin_inset ERT
25870 status collapsed
25871
25872 \begin_layout Plain Layout
25873
25874
25875 \backslash
25876
25877 \begin_inset ERT
25878 status collapsed
25879
25880 \begin_layout Plain Layout
25881
25882 {
25883 \end_layout
25884
25885 \end_inset
25886
25887
25888 \begin_inset ERT
25889 status collapsed
25890
25891 \begin_layout Plain Layout
25892
25893 }
25894 \end_layout
25895
25896 \end_inset
25897
25898
25899 \end_layout
25900
25901 \end_inset
25902
25903 @
25904 \begin_inset ERT
25905 status collapsed
25906
25907 \begin_layout Plain Layout
25908
25909
25910 \backslash
25911
25912 \begin_inset ERT
25913 status collapsed
25914
25915 \begin_layout Plain Layout
25916
25917 {
25918 \end_layout
25919
25920 \end_inset
25921
25922
25923 \begin_inset ERT
25924 status collapsed
25925
25926 \begin_layout Plain Layout
25927
25928 }
25929 \end_layout
25930
25931 \end_inset
25932
25933
25934 \end_layout
25935
25936 \end_inset
25937
25938 textrm
25939 \begin_inset ERT
25940 status collapsed
25941
25942 \begin_layout Plain Layout
25943
25944 {
25945 \end_layout
25946
25947 \end_inset
25948
25949
25950 \begin_inset ERT
25951 status collapsed
25952
25953 \begin_layout Plain Layout
25954
25955
25956 \backslash
25957
25958 \begin_inset ERT
25959 status collapsed
25960
25961 \begin_layout Plain Layout
25962
25963 {
25964 \end_layout
25965
25966 \end_inset
25967
25968
25969 \begin_inset ERT
25970 status collapsed
25971
25972 \begin_layout Plain Layout
25973
25974 }
25975 \end_layout
25976
25977 \end_inset
25978
25979
25980 \end_layout
25981
25982 \end_inset
25983
25984 AA
25985 \begin_inset ERT
25986 status collapsed
25987
25988 \begin_layout Plain Layout
25989
25990 }
25991 \end_layout
25992
25993 \end_inset
25994
25995
25996 \end_layout
25997
25998 \end_inset
25999
26000
26001 \end_layout
26002
26003 \end_inset
26004 </cell>
26005 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26006 \begin_inset Text
26007
26008 \begin_layout Plain Layout
26009 \begin_inset Formula $\textrm{\AA}$
26010 \end_inset
26011
26012
26013 \end_layout
26014
26015 \end_inset
26016 </cell>
26017 </row>
26018 <row>
26019 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26020 \begin_inset Text
26021
26022 \begin_layout Plain Layout
26023
26024 \backslash
26025 i
26026 \end_layout
26027
26028 \end_inset
26029 </cell>
26030 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26031 \begin_inset Text
26032
26033 \begin_layout Plain Layout
26034 \begin_inset Formula $\textrm{\i }$
26035 \end_inset
26036
26037
26038 \end_layout
26039
26040 \end_inset
26041 </cell>
26042 </row>
26043 </lyxtabular>
26044
26045 \end_inset
26046
26047
26048 \begin_inset Space \hfill{}
26049 \end_inset
26050
26051
26052 \begin_inset Tabular
26053 <lyxtabular version="3" rows="8" columns="2">
26054 <features>
26055 <column alignment="block" valignment="top" width="0">
26056 <column alignment="center" valignment="top" width="0">
26057 <row>
26058 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26059 \begin_inset Text
26060
26061 \begin_layout Plain Layout
26062 Comando
26063 \begin_inset Note Note
26064 status collapsed
26065
26066 \begin_layout Plain Layout
26067
26068 \series bold
26069
26070 \backslash
26071 raisebox
26072 \series default
26073  se usa sólo como espaciador
26074 \end_layout
26075
26076 \end_inset
26077
26078
26079 \end_layout
26080
26081 \end_inset
26082 </cell>
26083 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26084 \begin_inset Text
26085
26086 \begin_layout Plain Layout
26087 Resultado
26088 \end_layout
26089
26090 \end_inset
26091 </cell>
26092 </row>
26093 <row>
26094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26095 \begin_inset Text
26096
26097 \begin_layout Plain Layout
26098
26099 \backslash
26100 o
26101 \end_layout
26102
26103 \end_inset
26104 </cell>
26105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26106 \begin_inset Text
26107
26108 \begin_layout Plain Layout
26109 \begin_inset Formula $\textrm{\o }$
26110 \end_inset
26111
26112
26113 \end_layout
26114
26115 \end_inset
26116 </cell>
26117 </row>
26118 <row>
26119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26120 \begin_inset Text
26121
26122 \begin_layout Plain Layout
26123
26124 \backslash
26125 O
26126 \end_layout
26127
26128 \end_inset
26129 </cell>
26130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26131 \begin_inset Text
26132
26133 \begin_layout Plain Layout
26134 \begin_inset Formula $\textrm{\O}$
26135 \end_inset
26136
26137
26138 \end_layout
26139
26140 \end_inset
26141 </cell>
26142 </row>
26143 <row>
26144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26145 \begin_inset Text
26146
26147 \begin_layout Plain Layout
26148
26149 \backslash
26150 l
26151 \end_layout
26152
26153 \end_inset
26154 </cell>
26155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26156 \begin_inset Text
26157
26158 \begin_layout Plain Layout
26159 \begin_inset Formula $\textrm{\l }$
26160 \end_inset
26161
26162
26163 \end_layout
26164
26165 \end_inset
26166 </cell>
26167 </row>
26168 <row>
26169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26170 \begin_inset Text
26171
26172 \begin_layout Plain Layout
26173
26174 \backslash
26175 L
26176 \end_layout
26177
26178 \end_inset
26179 </cell>
26180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26181 \begin_inset Text
26182
26183 \begin_layout Plain Layout
26184 \begin_inset Formula $\textrm{\L }$
26185 \end_inset
26186
26187
26188 \end_layout
26189
26190 \end_inset
26191 </cell>
26192 </row>
26193 <row>
26194 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26195 \begin_inset Text
26196
26197 \begin_layout Plain Layout
26198 !
26199 \begin_inset Space \hspace{}
26200 \length 0mm
26201 \end_inset
26202
26203 `
26204 \begin_inset ERT
26205 status collapsed
26206
26207 \begin_layout Plain Layout
26208
26209
26210 \backslash
26211 spce 
26212 \end_layout
26213
26214 \end_inset
26215
26216
26217 \end_layout
26218
26219 \end_inset
26220 </cell>
26221 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26222 \begin_inset Text
26223
26224 \begin_layout Plain Layout
26225 \begin_inset Formula $\textrm{!`}$
26226 \end_inset
26227
26228
26229 \end_layout
26230
26231 \end_inset
26232 </cell>
26233 </row>
26234 <row>
26235 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26236 \begin_inset Text
26237
26238 \begin_layout Plain Layout
26239 ?
26240 \begin_inset Space \hspace{}
26241 \length 0mm
26242 \end_inset
26243
26244 `
26245 \begin_inset ERT
26246 status collapsed
26247
26248 \begin_layout Plain Layout
26249
26250
26251 \backslash
26252 spce 
26253 \end_layout
26254
26255 \end_inset
26256
26257
26258 \end_layout
26259
26260 \end_inset
26261 </cell>
26262 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26263 \begin_inset Text
26264
26265 \begin_layout Plain Layout
26266 \begin_inset Formula $\textrm{?`}$
26267 \end_inset
26268
26269
26270 \end_layout
26271
26272 \end_inset
26273 </cell>
26274 </row>
26275 <row>
26276 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26277 \begin_inset Text
26278
26279 \begin_layout Plain Layout
26280
26281 \backslash
26282 j
26283 \end_layout
26284
26285 \end_inset
26286 </cell>
26287 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26288 \begin_inset Text
26289
26290 \begin_layout Plain Layout
26291 \begin_inset Formula $\textrm{\j }$
26292 \end_inset
26293
26294
26295 \end_layout
26296
26297 \end_inset
26298 </cell>
26299 </row>
26300 </lyxtabular>
26301
26302 \end_inset
26303
26304
26305 \begin_inset Space \hfill{}
26306 \end_inset
26307
26308
26309 \end_layout
26310
26311 \begin_layout Standard
26312 Los caracteres 
26313 \begin_inset Formula $\textrm{\textrm{Å}}$
26314 \end_inset
26315
26316  y 
26317 \begin_inset Formula $\textrm{\textrm{Ø}}$
26318 \end_inset
26319
26320  también se pueden insertar mediante el botón 
26321 \begin_inset Graphics
26322         filename ../../images/math/digamma.png
26323         embed ""
26324         scale 85
26325
26326 \end_inset
26327
26328  de la barra de ecuaciones.
26329 \end_layout
26330
26331 \begin_layout Standard
26332 Los comandos 
26333 \series bold
26334 !
26335 \begin_inset Space \hspace{}
26336 \length 0mm
26337 \end_inset
26338
26339 `
26340 \series default
26341  y 
26342 \series bold
26343 ?
26344 \begin_inset Space \hspace{}
26345 \length 0mm
26346 \end_inset
26347
26348 `
26349 \series default
26350  son una excepción porque se pueden insertar directamente a texto en LyX.
26351  
26352 \end_layout
26353
26354 \begin_layout Subsection
26355 Acentos en texto
26356 \begin_inset CommandInset label
26357 LatexCommand label
26358 name "sub:Acentos-en-texto"
26359
26360 \end_inset
26361
26362
26363 \begin_inset Index
26364 status collapsed
26365
26366 \begin_layout Plain Layout
26367 Acentos ! en texto
26368 \end_layout
26369
26370 \end_inset
26371
26372
26373 \end_layout
26374
26375 \begin_layout Standard
26376 Con los siguientes comandos se pueden acentuar todas las letras.
26377  Los comandos deben ponerse en modo TeX.
26378 \end_layout
26379
26380 \begin_layout Standard
26381 \begin_inset Space \hfill{}
26382 \end_inset
26383
26384
26385 \begin_inset Tabular
26386 <lyxtabular version="3" rows="8" columns="2">
26387 <features>
26388 <column alignment="block" valignment="top" width="0">
26389 <column alignment="block" valignment="top" width="0">
26390 <row>
26391 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26392 \begin_inset Text
26393
26394 \begin_layout Plain Layout
26395 Comando
26396 \end_layout
26397
26398 \end_inset
26399 </cell>
26400 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26401 \begin_inset Text
26402
26403 \begin_layout Plain Layout
26404 Resultado
26405 \end_layout
26406
26407 \end_inset
26408 </cell>
26409 </row>
26410 <row>
26411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26412 \begin_inset Text
26413
26414 \begin_layout Plain Layout
26415
26416 \backslash
26417
26418 \begin_inset Quotes grd
26419 \end_inset
26420
26421 e
26422 \end_layout
26423
26424 \end_inset
26425 </cell>
26426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26427 \begin_inset Text
26428
26429 \begin_layout Plain Layout
26430 \begin_inset ERT
26431 status collapsed
26432
26433 \begin_layout Plain Layout
26434
26435
26436 \backslash
26437 "e
26438 \end_layout
26439
26440 \end_inset
26441
26442
26443 \end_layout
26444
26445 \end_inset
26446 </cell>
26447 </row>
26448 <row>
26449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26450 \begin_inset Text
26451
26452 \begin_layout Plain Layout
26453
26454 \backslash
26455 `e
26456 \end_layout
26457
26458 \end_inset
26459 </cell>
26460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26461 \begin_inset Text
26462
26463 \begin_layout Plain Layout
26464 \begin_inset ERT
26465 status collapsed
26466
26467 \begin_layout Plain Layout
26468
26469
26470 \backslash
26471 `e
26472 \end_layout
26473
26474 \end_inset
26475
26476
26477 \end_layout
26478
26479 \end_inset
26480 </cell>
26481 </row>
26482 <row>
26483 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26484 \begin_inset Text
26485
26486 \begin_layout Plain Layout
26487
26488 \backslash
26489 ^
26490 \begin_inset ERT
26491 status collapsed
26492
26493 \begin_layout Plain Layout
26494
26495
26496 \backslash
26497 spce 
26498 \end_layout
26499
26500 \end_inset
26501
26502 e
26503 \end_layout
26504
26505 \end_inset
26506 </cell>
26507 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26508 \begin_inset Text
26509
26510 \begin_layout Plain Layout
26511 \begin_inset ERT
26512 status collapsed
26513
26514 \begin_layout Plain Layout
26515
26516
26517 \backslash
26518 ^e
26519 \end_layout
26520
26521 \end_inset
26522
26523
26524 \end_layout
26525
26526 \end_inset
26527 </cell>
26528 </row>
26529 <row>
26530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26531 \begin_inset Text
26532
26533 \begin_layout Plain Layout
26534
26535 \backslash
26536 =e
26537 \end_layout
26538
26539 \end_inset
26540 </cell>
26541 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26542 \begin_inset Text
26543
26544 \begin_layout Plain Layout
26545 \begin_inset ERT
26546 status collapsed
26547
26548 \begin_layout Plain Layout
26549
26550
26551 \backslash
26552 =e
26553 \end_layout
26554
26555 \end_inset
26556
26557
26558 \end_layout
26559
26560 \end_inset
26561 </cell>
26562 </row>
26563 <row>
26564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26565 \begin_inset Text
26566
26567 \begin_layout Plain Layout
26568
26569 \backslash
26570 u
26571 \begin_inset ERT
26572 status collapsed
26573
26574 \begin_layout Plain Layout
26575
26576
26577 \backslash
26578 spce 
26579 \end_layout
26580
26581 \end_inset
26582
26583 e
26584 \end_layout
26585
26586 \end_inset
26587 </cell>
26588 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26589 \begin_inset Text
26590
26591 \begin_layout Plain Layout
26592 \begin_inset ERT
26593 status collapsed
26594
26595 \begin_layout Plain Layout
26596
26597
26598 \backslash
26599 u e
26600 \end_layout
26601
26602 \end_inset
26603
26604
26605 \end_layout
26606
26607 \end_inset
26608 </cell>
26609 </row>
26610 <row>
26611 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26612 \begin_inset Text
26613
26614 \begin_layout Plain Layout
26615
26616 \backslash
26617 b
26618 \begin_inset ERT
26619 status collapsed
26620
26621 \begin_layout Plain Layout
26622
26623
26624 \backslash
26625 spce 
26626 \end_layout
26627
26628 \end_inset
26629
26630 e
26631 \end_layout
26632
26633 \end_inset
26634 </cell>
26635 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26636 \begin_inset Text
26637
26638 \begin_layout Plain Layout
26639 \begin_inset ERT
26640 status collapsed
26641
26642 \begin_layout Plain Layout
26643
26644
26645 \backslash
26646 b e
26647 \end_layout
26648
26649 \end_inset
26650
26651
26652 \end_layout
26653
26654 \end_inset
26655 </cell>
26656 </row>
26657 <row>
26658 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26659 \begin_inset Text
26660
26661 \begin_layout Plain Layout
26662
26663 \backslash
26664 t
26665 \begin_inset ERT
26666 status collapsed
26667
26668 \begin_layout Plain Layout
26669
26670
26671 \backslash
26672 spce 
26673 \end_layout
26674
26675 \end_inset
26676
26677 ee
26678 \end_layout
26679
26680 \end_inset
26681 </cell>
26682 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26683 \begin_inset Text
26684
26685 \begin_layout Plain Layout
26686 \begin_inset ERT
26687 status collapsed
26688
26689 \begin_layout Plain Layout
26690
26691
26692 \backslash
26693 t ee
26694 \end_layout
26695
26696 \end_inset
26697
26698
26699 \end_layout
26700
26701 \end_inset
26702 </cell>
26703 </row>
26704 </lyxtabular>
26705
26706 \end_inset
26707
26708
26709 \begin_inset Space \hfill{}
26710 \end_inset
26711
26712
26713 \begin_inset Tabular
26714 <lyxtabular version="3" rows="8" columns="2">
26715 <features>
26716 <column alignment="block" valignment="top" width="0">
26717 <column alignment="center" valignment="top" width="0">
26718 <row>
26719 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26720 \begin_inset Text
26721
26722 \begin_layout Plain Layout
26723 Comando
26724 \end_layout
26725
26726 \end_inset
26727 </cell>
26728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26729 \begin_inset Text
26730
26731 \begin_layout Plain Layout
26732 Resultado
26733 \end_layout
26734
26735 \end_inset
26736 </cell>
26737 </row>
26738 <row>
26739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26740 \begin_inset Text
26741
26742 \begin_layout Plain Layout
26743
26744 \backslash
26745 H
26746 \begin_inset ERT
26747 status collapsed
26748
26749 \begin_layout Plain Layout
26750
26751
26752 \backslash
26753 spce 
26754 \end_layout
26755
26756 \end_inset
26757
26758 e
26759 \end_layout
26760
26761 \end_inset
26762 </cell>
26763 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26764 \begin_inset Text
26765
26766 \begin_layout Plain Layout
26767 \begin_inset ERT
26768 status collapsed
26769
26770 \begin_layout Plain Layout
26771
26772
26773 \backslash
26774 H e
26775 \end_layout
26776
26777 \end_inset
26778
26779
26780 \end_layout
26781
26782 \end_inset
26783 </cell>
26784 </row>
26785 <row>
26786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26787 \begin_inset Text
26788
26789 \begin_layout Plain Layout
26790
26791 \backslash
26792 'e
26793 \end_layout
26794
26795 \end_inset
26796 </cell>
26797 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26798 \begin_inset Text
26799
26800 \begin_layout Plain Layout
26801 \begin_inset ERT
26802 status collapsed
26803
26804 \begin_layout Plain Layout
26805
26806
26807 \backslash
26808 'e
26809 \end_layout
26810
26811 \end_inset
26812
26813
26814 \end_layout
26815
26816 \end_inset
26817 </cell>
26818 </row>
26819 <row>
26820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26821 \begin_inset Text
26822
26823 \begin_layout Plain Layout
26824
26825 \backslash
26826 ~e
26827 \begin_inset Index
26828 status collapsed
26829
26830 \begin_layout Plain Layout
26831 Tilde
26832 \end_layout
26833
26834 \end_inset
26835
26836
26837 \end_layout
26838
26839 \end_inset
26840 </cell>
26841 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26842 \begin_inset Text
26843
26844 \begin_layout Plain Layout
26845 \begin_inset ERT
26846 status collapsed
26847
26848 \begin_layout Plain Layout
26849
26850
26851 \backslash
26852 ~e
26853 \end_layout
26854
26855 \end_inset
26856
26857
26858 \end_layout
26859
26860 \end_inset
26861 </cell>
26862 </row>
26863 <row>
26864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26865 \begin_inset Text
26866
26867 \begin_layout Plain Layout
26868
26869 \backslash
26870 .e
26871 \end_layout
26872
26873 \end_inset
26874 </cell>
26875 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26876 \begin_inset Text
26877
26878 \begin_layout Plain Layout
26879 \begin_inset ERT
26880 status collapsed
26881
26882 \begin_layout Plain Layout
26883
26884
26885 \backslash
26886 .e
26887 \end_layout
26888
26889 \end_inset
26890
26891
26892 \end_layout
26893
26894 \end_inset
26895 </cell>
26896 </row>
26897 <row>
26898 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26899 \begin_inset Text
26900
26901 \begin_layout Plain Layout
26902
26903 \backslash
26904 v
26905 \begin_inset ERT
26906 status collapsed
26907
26908 \begin_layout Plain Layout
26909
26910
26911 \backslash
26912 spce 
26913 \end_layout
26914
26915 \end_inset
26916
26917 e
26918 \end_layout
26919
26920 \end_inset
26921 </cell>
26922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26923 \begin_inset Text
26924
26925 \begin_layout Plain Layout
26926 \begin_inset ERT
26927 status collapsed
26928
26929 \begin_layout Plain Layout
26930
26931
26932 \backslash
26933 v e
26934 \end_layout
26935
26936 \end_inset
26937
26938
26939 \end_layout
26940
26941 \end_inset
26942 </cell>
26943 </row>
26944 <row>
26945 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26946 \begin_inset Text
26947
26948 \begin_layout Plain Layout
26949
26950 \backslash
26951 d
26952 \begin_inset ERT
26953 status collapsed
26954
26955 \begin_layout Plain Layout
26956
26957
26958 \backslash
26959 spce 
26960 \end_layout
26961
26962 \end_inset
26963
26964 e
26965 \end_layout
26966
26967 \end_inset
26968 </cell>
26969 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26970 \begin_inset Text
26971
26972 \begin_layout Plain Layout
26973 \begin_inset ERT
26974 status collapsed
26975
26976 \begin_layout Plain Layout
26977
26978
26979 \backslash
26980 d e
26981 \end_layout
26982
26983 \end_inset
26984
26985
26986 \end_layout
26987
26988 \end_inset
26989 </cell>
26990 </row>
26991 <row>
26992 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26993 \begin_inset Text
26994
26995 \begin_layout Plain Layout
26996
26997 \backslash
26998 c
26999 \begin_inset ERT
27000 status collapsed
27001
27002 \begin_layout Plain Layout
27003
27004
27005 \backslash
27006 spce 
27007 \end_layout
27008
27009 \end_inset
27010
27011 e
27012 \end_layout
27013
27014 \end_inset
27015 </cell>
27016 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27017 \begin_inset Text
27018
27019 \begin_layout Plain Layout
27020 \begin_inset ERT
27021 status collapsed
27022
27023 \begin_layout Plain Layout
27024
27025
27026 \backslash
27027 c e
27028 \end_layout
27029
27030 \end_inset
27031
27032
27033 \end_layout
27034
27035 \end_inset
27036 </cell>
27037 </row>
27038 </lyxtabular>
27039
27040 \end_inset
27041
27042
27043 \begin_inset Space \hfill{}
27044 \end_inset
27045
27046
27047 \end_layout
27048
27049 \begin_layout Standard
27050 \begin_inset VSpace medskip
27051 \end_inset
27052
27053
27054 \end_layout
27055
27056 \begin_layout Standard
27057 Con el comando 
27058 \series bold
27059
27060 \backslash
27061 t
27062 \series default
27063  también se pueden acentuar dos caracteres distintos.
27064  El comando 
27065 \series bold
27066
27067 \backslash
27068 t
27069 \begin_inset ERT
27070 status collapsed
27071
27072 \begin_layout Plain Layout
27073
27074
27075 \backslash
27076 spce 
27077 \end_layout
27078
27079 \end_inset
27080
27081 sz
27082 \series default
27083  genera 
27084 \begin_inset ERT
27085 status collapsed
27086
27087 \begin_layout Plain Layout
27088
27089
27090 \backslash
27091 t sz
27092 \end_layout
27093
27094 \end_inset
27095
27096
27097 \end_layout
27098
27099 \begin_layout Standard
27100 Los acentos 
27101 \series bold
27102 `
27103 \series default
27104  , 
27105 \series bold
27106 '
27107 \series default
27108  y 
27109 \series bold
27110 ^
27111 \series default
27112  se pueden insertar directamente con el teclado sobre vocales sin usar modo
27113  TeX.
27114  Lo mismo se aplica a la tilde
27115 \begin_inset Foot
27116 status collapsed
27117
27118 \begin_layout Plain Layout
27119 Esto sólo se aplica a teclados en los que la tilde está definida como acento.
27120 \end_layout
27121
27122 \end_inset
27123
27124  con 
27125 \emph on
27126 a
27127 \emph default
27128
27129 \emph on
27130 o
27131 \emph default
27132  y 
27133 \emph on
27134 n.
27135 \end_layout
27136
27137 \begin_layout Standard
27138 Los comandos 
27139 \series bold
27140
27141 \backslash
27142 b
27143 \series default
27144  , 
27145 \series bold
27146
27147 \backslash
27148 c
27149 \series default
27150  , 
27151 \series bold
27152
27153 \backslash
27154 d
27155 \series default
27156  , 
27157 \series bold
27158
27159 \backslash
27160 H
27161 \series default
27162  , 
27163 \series bold
27164
27165 \backslash
27166 t
27167 \series default
27168  , 
27169 \series bold
27170
27171 \backslash
27172 u
27173 \series default
27174  , 
27175 \series bold
27176
27177 \backslash
27178 v
27179 \series default
27180 , y acentos insertados directamente con el teclado también están disponibles
27181  en texto matemático.
27182  Para otros acentos hay comandos especiales para usar en ecuaciones, véase
27183  
27184 \begin_inset CommandInset ref
27185 LatexCommand ref
27186 reference "sub:Acentos-para-un"
27187
27188 \end_inset
27189
27190 .
27191 \end_layout
27192
27193 \begin_layout Standard
27194 \begin_inset VSpace bigskip
27195 \end_inset
27196
27197
27198 \end_layout
27199
27200 \begin_layout Standard
27201 Además, con el comando 
27202 \series bold
27203
27204 \backslash
27205 textcircled
27206 \series default
27207
27208 \begin_inset Index
27209 status collapsed
27210
27211 \begin_layout Plain Layout
27212 Comandos ! T ! 
27213 \backslash
27214 textcircled
27215 \end_layout
27216
27217 \end_inset
27218
27219  se pueden insertar en un círculo todos los números y letras, de forma parecida
27220  al símbolo copyright.
27221 \end_layout
27222
27223 \begin_layout Standard
27224 \noindent
27225 \align center
27226 \begin_inset Tabular
27227 <lyxtabular version="3" rows="3" columns="2">
27228 <features>
27229 <column alignment="center" valignment="top" width="0">
27230 <column alignment="center" valignment="top" width="0">
27231 <row>
27232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27233 \begin_inset Text
27234
27235 \begin_layout Plain Layout
27236 Comando
27237 \end_layout
27238
27239 \end_inset
27240 </cell>
27241 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27242 \begin_inset Text
27243
27244 \begin_layout Plain Layout
27245 Resultado
27246 \begin_inset Note Note
27247 status collapsed
27248
27249 \begin_layout Plain Layout
27250
27251 \series bold
27252
27253 \backslash
27254 raisebox
27255 \series default
27256  se usa sólo como espaciador
27257 \end_layout
27258
27259 \end_inset
27260
27261
27262 \end_layout
27263
27264 \end_inset
27265 </cell>
27266 </row>
27267 <row>
27268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27269 \begin_inset Text
27270
27271 \begin_layout Plain Layout
27272
27273 \backslash
27274 textcircled{w}
27275 \end_layout
27276
27277 \end_inset
27278 </cell>
27279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27280 \begin_inset Text
27281
27282 \begin_layout Plain Layout
27283 \begin_inset ERT
27284 status collapsed
27285
27286 \begin_layout Plain Layout
27287
27288
27289 \backslash
27290 textcircled{w}
27291 \end_layout
27292
27293 \end_inset
27294
27295
27296 \end_layout
27297
27298 \end_inset
27299 </cell>
27300 </row>
27301 <row>
27302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27303 \begin_inset Text
27304
27305 \begin_layout Plain Layout
27306
27307 \backslash
27308 Large 
27309 \backslash
27310 textcircled{
27311 \backslash
27312 normalsize
27313 \backslash
27314 protect
27315 \backslash
27316 raisebox{-1.5pt}{W}}
27317 \end_layout
27318
27319 \end_inset
27320 </cell>
27321 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27322 \begin_inset Text
27323
27324 \begin_layout Plain Layout
27325 \begin_inset Formula $\raisebox {4.5mm}{}$
27326 \end_inset
27327
27328
27329 \begin_inset ERT
27330 status collapsed
27331
27332 \begin_layout Plain Layout
27333
27334
27335 \backslash
27336 Large 
27337 \backslash
27338 textcircled{
27339 \backslash
27340 normalsize
27341 \backslash
27342 protect
27343 \backslash
27344 raisebox{-1.5pt}W}
27345 \end_layout
27346
27347 \end_inset
27348
27349
27350 \begin_inset Formula $\raisebox {-2mm}{}$
27351 \end_inset
27352
27353
27354 \end_layout
27355
27356 \end_inset
27357 </cell>
27358 </row>
27359 </lyxtabular>
27360
27361 \end_inset
27362
27363
27364 \end_layout
27365
27366 \begin_layout Standard
27367 Hay que tener cuidado que el carácter se ajuste al círculo.
27368  Por eso 
27369 \series bold
27370
27371 \backslash
27372 Large
27373 \begin_inset Foot
27374 status collapsed
27375
27376 \begin_layout Plain Layout
27377 véase 
27378 \begin_inset CommandInset ref
27379 LatexCommand ref
27380 reference "sub:Tamaños-de-fuentes"
27381
27382 \end_inset
27383
27384
27385 \end_layout
27386
27387 \end_inset
27388
27389
27390 \series default
27391  especifica el tamaño del círculo.
27392  Con ayuda de 
27393 \series bold
27394
27395 \backslash
27396 raisebox
27397 \begin_inset Foot
27398 status collapsed
27399
27400 \begin_layout Plain Layout
27401 véase 
27402 \begin_inset CommandInset ref
27403 LatexCommand ref
27404 reference "sub:Cuadros-sin-marco"
27405
27406 \end_inset
27407
27408
27409 \end_layout
27410
27411 \end_inset
27412
27413
27414 \series default
27415  se puede centrar el carácter.
27416 \end_layout
27417
27418 \begin_layout Subsection
27419 Números minúsculos
27420 \begin_inset Index
27421 status collapsed
27422
27423 \begin_layout Plain Layout
27424 Números ! minúsculos
27425 \end_layout
27426
27427 \end_inset
27428
27429
27430 \end_layout
27431
27432 \begin_layout Standard
27433 Los números minúsculos se componen con el comando 
27434 \series bold
27435
27436 \backslash
27437 oldstylenums
27438 \series default
27439
27440 \begin_inset Index
27441 status collapsed
27442
27443 \begin_layout Plain Layout
27444 Comandos ! O ! 
27445 \backslash
27446 oldstylenums
27447 \end_layout
27448
27449 \end_inset
27450
27451 .
27452  El comando se puede usar en ecuaciones y en modo TeX.
27453  Su esquema es:
27454 \end_layout
27455
27456 \begin_layout Standard
27457
27458 \series bold
27459
27460 \backslash
27461 oldstylenums{número}
27462 \end_layout
27463
27464 \begin_layout Standard
27465 El comando 
27466 \series bold
27467
27468 \backslash
27469 oldstylenums{0123456789}
27470 \series default
27471  genera: 
27472 \begin_inset Formula $\oldstylenums {0123456789}$
27473 \end_inset
27474
27475
27476 \end_layout
27477
27478 \begin_layout Subsection
27479 Caracteres especiales misceláneos
27480 \begin_inset CommandInset label
27481 LatexCommand label
27482 name "sub:Caracteres-especiales-misceláneos"
27483
27484 \end_inset
27485
27486
27487 \begin_inset Index
27488 status collapsed
27489
27490 \begin_layout Plain Layout
27491 Caracteres especiales ! misceláneos
27492 \end_layout
27493
27494 \end_inset
27495
27496
27497 \end_layout
27498
27499 \begin_layout Standard
27500 Los siguientes caracteres sólo pueden insertarse en ecuaciones mediante
27501  comandos:
27502 \end_layout
27503
27504 \begin_layout Standard
27505 \noindent
27506 \align center
27507 \begin_inset Tabular
27508 <lyxtabular version="3" rows="4" columns="2">
27509 <features>
27510 <column alignment="center" valignment="top" width="0">
27511 <column alignment="center" valignment="top" width="0">
27512 <row>
27513 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27514 \begin_inset Text
27515
27516 \begin_layout Plain Layout
27517 Comando
27518 \end_layout
27519
27520 \end_inset
27521 </cell>
27522 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27523 \begin_inset Text
27524
27525 \begin_layout Plain Layout
27526 Resultado
27527 \end_layout
27528
27529 \end_inset
27530 </cell>
27531 </row>
27532 <row>
27533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27534 \begin_inset Text
27535
27536 \begin_layout Plain Layout
27537
27538 \backslash
27539 ^
27540 \begin_inset ERT
27541 status collapsed
27542
27543 \begin_layout Plain Layout
27544
27545
27546 \backslash
27547 spce 
27548 \end_layout
27549
27550 \end_inset
27551
27552
27553 \end_layout
27554
27555 \end_inset
27556 </cell>
27557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27558 \begin_inset Text
27559
27560 \begin_layout Plain Layout
27561 \begin_inset Formula $\mathcircumflex$
27562 \end_inset
27563
27564
27565 \end_layout
27566
27567 \end_inset
27568 </cell>
27569 </row>
27570 <row>
27571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27572 \begin_inset Text
27573
27574 \begin_layout Plain Layout
27575
27576 \backslash
27577 _
27578 \begin_inset Formula $ $
27579 \end_inset
27580
27581
27582 \end_layout
27583
27584 \end_inset
27585 </cell>
27586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27587 \begin_inset Text
27588
27589 \begin_layout Plain Layout
27590 \begin_inset Formula $\_{} {}{}$
27591 \end_inset
27592
27593
27594 \end_layout
27595
27596 \end_inset
27597 </cell>
27598 </row>
27599 <row>
27600 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27601 \begin_inset Text
27602
27603 \begin_layout Plain Layout
27604 ^
27605 \begin_inset ERT
27606 status collapsed
27607
27608 \begin_layout Plain Layout
27609
27610
27611 \backslash
27612 spce 
27613 \end_layout
27614
27615 \end_inset
27616
27617
27618 \backslash
27619 circ
27620 \begin_inset Index
27621 status collapsed
27622
27623 \begin_layout Plain Layout
27624 °
27625 \end_layout
27626
27627 \end_inset
27628
27629
27630 \end_layout
27631
27632 \end_inset
27633 </cell>
27634 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27635 \begin_inset Text
27636
27637 \begin_layout Plain Layout
27638 \begin_inset Formula $^{\circ}$
27639 \end_inset
27640
27641
27642 \end_layout
27643
27644 \end_inset
27645 </cell>
27646 </row>
27647 </lyxtabular>
27648
27649 \end_inset
27650
27651
27652 \end_layout
27653
27654 \begin_layout Standard
27655 El símbolo grado ° puede no obstante insertarse directamente si el preámbulo
27656  LaTeX contiene la línea:
27657 \begin_inset Foot
27658 status collapsed
27659
27660 \begin_layout Plain Layout
27661 Más sobre este asunto en 
27662 \begin_inset CommandInset ref
27663 LatexCommand ref
27664 reference "sub:Caracteres-de-texto"
27665
27666 \end_inset
27667
27668
27669 \end_layout
27670
27671 \end_inset
27672
27673  
27674 \end_layout
27675
27676 \begin_layout Standard
27677
27678 \series bold
27679
27680 \backslash
27681 DeclareInputtext{176}{
27682 \backslash
27683 ifmmode^
27684 \backslash
27685 circ
27686 \backslash
27687 else
27688 \backslash
27689 textdegree
27690 \backslash
27691 f\SpecialChar \textcompwordmark{}
27692 i}
27693 \end_layout
27694
27695 \begin_layout Section
27696 Estilos de ecuación
27697 \begin_inset CommandInset label
27698 LatexCommand label
27699 name "sec:Estilos-de-ecuación"
27700
27701 \end_inset
27702
27703
27704 \begin_inset Index
27705 status collapsed
27706
27707 \begin_layout Plain Layout
27708 Ecuación ! estilos de
27709 \end_layout
27710
27711 \end_inset
27712
27713
27714 \end_layout
27715
27716 \begin_layout Itemize
27717 Hay dos estilos diferentes de alineación:
27718 \end_layout
27719
27720 \begin_deeper
27721 \begin_layout Description
27722 Centrado es el estándar predefinido
27723 \end_layout
27724
27725 \begin_layout Description
27726 Sangrado para este estilo debe insertarse la opción 
27727 \series bold
27728 fleqn
27729 \series default
27730  en el menú 
27731 \family sans
27732 Documento\SpecialChar \menuseparator
27733 Configuración
27734 \family default
27735  bajo 
27736 \family sans
27737 Clase de documento
27738 \end_layout
27739
27740 \begin_layout Standard
27741 Cuando se usa 
27742 \series bold
27743 Sangrado
27744 \series default
27745 , éste se puede ajustar con la longitud 
27746 \series bold
27747
27748 \backslash
27749 mathindent
27750 \series default
27751
27752 \begin_inset Index
27753 status collapsed
27754
27755 \begin_layout Plain Layout
27756 Comandos ! M ! 
27757 \backslash
27758 mathindent
27759 \end_layout
27760
27761 \end_inset
27762
27763 .
27764  Para 15
27765 \begin_inset Space \thinspace{}
27766 \end_inset
27767
27768 mm, p.
27769 \begin_inset Space \thinspace{}
27770 \end_inset
27771
27772 e., se inserta esta línea de comando en el preámbulo LaTeX:
27773 \end_layout
27774
27775 \begin_layout Standard
27776
27777 \series bold
27778
27779 \backslash
27780 setlength{
27781 \backslash
27782 mathindent}{15mm}
27783 \end_layout
27784
27785 \begin_layout Standard
27786 Si no se especifica longitud se usa el valor predeterminado de 30
27787 \begin_inset Space \thinspace{}
27788 \end_inset
27789
27790 pt.
27791 \end_layout
27792
27793 \end_deeper
27794 \begin_layout Itemize
27795 Y dos estilos diferentes de numeración:
27796 \end_layout
27797
27798 \begin_deeper
27799 \begin_layout Description
27800 Derecha es el estándar predefinido
27801 \end_layout
27802
27803 \begin_layout Description
27804 Izquierda para este estilo debe insertarse la opción 
27805 \series bold
27806 fleqn
27807 \series default
27808  en el menú 
27809 \family sans
27810 Documento\SpecialChar \menuseparator
27811 Configuración
27812 \family default
27813  bajo 
27814 \family sans
27815 Clase de documento
27816 \end_layout
27817
27818 \end_deeper
27819 \begin_layout Standard
27820
27821 \series bold
27822 fleqn
27823 \series default
27824  y 
27825 \series bold
27826 leqno
27827 \series default
27828  también se pueden usar juntos.
27829  En ese caso se insertan ambas opciones, separadas por una coma.
27830 \end_layout
27831
27832 \begin_layout Standard
27833 Los estilos escogidos se aplican a todas las ecuaciones en presentación
27834  del documento.
27835  Si un documento debe tener ecuaciones centradas y sangradas, se usa el
27836  estilo 
27837 \series bold
27838 Centrado
27839 \series default
27840  y las ecuaciones sangradas se ponen en un entorno flalign; véase 
27841 \begin_inset CommandInset ref
27842 LatexCommand ref
27843 reference "sub:Entorno-flalign"
27844
27845 \end_inset
27846
27847 .
27848 \end_layout
27849
27850 \begin_layout Section
27851 Ecuaciones multilínea
27852 \begin_inset CommandInset label
27853 LatexCommand label
27854 name "sec:Ecuaciones-multilínea"
27855
27856 \end_inset
27857
27858
27859 \begin_inset Index
27860 status collapsed
27861
27862 \begin_layout Plain Layout
27863 Ecuación ! multilínea
27864 \end_layout
27865
27866 \end_inset
27867
27868
27869 \end_layout
27870
27871 \begin_layout Subsection
27872 General
27873 \end_layout
27874
27875 \begin_layout Standard
27876 En LyX se generan nuevas líneas en una ecuación con 
27877 \family sans
27878 \series bold
27879 Ctrl-Intro
27880 \family default
27881 \series default
27882 .
27883  Esto crea un 
27884 \series bold
27885 entorno align
27886 \series default
27887 , que se describe en la 
27888 \begin_inset CommandInset ref
27889 LatexCommand ref
27890 reference "sub:Entorno-align-estándar"
27891
27892 \end_inset
27893
27894 .
27895 \end_layout
27896
27897 \begin_layout Standard
27898 Hay otros entornos para fórmulas multilínea que se pueden introducir mediante
27899  el menú 
27900 \family sans
27901 Insertar\SpecialChar \menuseparator
27902 Ecuación
27903 \family default
27904 .
27905  En las siguientes secciones se describen estos entornos.
27906 \end_layout
27907
27908 \begin_layout Standard
27909 En todos los entornos de ecuación multilínea la combinación 
27910 \family sans
27911 Ctrl-Intro
27912 \family default
27913  genera una línea nueva.
27914  Para añadir o quitar líneas se pueden usar los botones 
27915 \begin_inset Graphics
27916         filename ../../images/tabular-feature_append-row.png
27917         embed ""
27918         scale 85
27919
27920 \end_inset
27921
27922  o 
27923 \begin_inset Graphics
27924         filename ../../images/tabular-feature_delete-row.png
27925         embed ""
27926         scale 85
27927
27928 \end_inset
27929
27930 de la barra de herramientas, respectivamente, o el menú 
27931 \family sans
27932 Editar\SpecialChar \menuseparator
27933 Filas y columnas
27934 \family default
27935 .
27936 \end_layout
27937
27938 \begin_layout Subsubsection
27939 Separación de líneas
27940 \begin_inset CommandInset label
27941 LatexCommand label
27942 name "sub:Separación-de-líneas"
27943
27944 \end_inset
27945
27946
27947 \begin_inset Index
27948 status collapsed
27949
27950 \begin_layout Plain Layout
27951 Ecuación ! multilínea ! separación de filas
27952 \end_layout
27953
27954 \end_inset
27955
27956
27957 \end_layout
27958
27959 \begin_layout Standard
27960 A veces no hay suficiente espacio entre las líneas de una ecuación multilínea:
27961 \begin_inset Formula \begin{eqnarray*}
27962 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD & = & \textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}\\
27963 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right) & = & 0\end{eqnarray*}
27964
27965 \end_inset
27966
27967 En LaTeX un espacio adicional para una línea se especifica como argumento
27968  opcional del comando de nueva línea.
27969  Esto aún no es posible en LYX
27970 \begin_inset Foot
27971 status collapsed
27972
27973 \begin_layout Plain Layout
27974 véase 
27975 \begin_inset CommandInset href
27976 LatexCommand href
27977 name "LyX-bug #1505"
27978 target "http://bugzilla.lyx.org/show_bug.cgi?id=1505"
27979
27980 \end_inset
27981
27982
27983 \end_layout
27984
27985 \end_inset
27986
27987 , por lo que toda la ecuación debe insertarse en modo TeX.
27988  Para añadir espacio en nuestro ejemplo se inserta el comando 
27989 \series bold
27990
27991 \backslash
27992
27993 \backslash
27994 [3mm]
27995 \series default
27996  al final de la primera línea.
27997  Así: 
27998 \begin_inset ERT
27999 status collapsed
28000
28001 \begin_layout Plain Layout
28002
28003
28004 \backslash
28005 begin{eqnarray*}
28006 \end_layout
28007
28008 \begin_layout Plain Layout
28009
28010 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28011  = & 
28012 \backslash
28013 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28014 \backslash
28015
28016 \backslash
28017 [3mm]
28018 \end_layout
28019
28020 \begin_layout Plain Layout
28021
28022 4x^{2}
28023 \backslash
28024 left(B^{2}+x_{0}^{2}
28025 \backslash
28026 right)+4x_{0}x
28027 \backslash
28028 left(D-B^{2}
28029 \backslash
28030 right)+B^{2}
28031 \backslash
28032 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28033 \backslash
28034 right) & = & 0
28035 \end_layout
28036
28037 \begin_layout Plain Layout
28038
28039
28040 \backslash
28041 end{eqnarray*}
28042 \end_layout
28043
28044 \end_inset
28045
28046
28047 \begin_inset VSpace bigskip
28048 \end_inset
28049
28050
28051 \end_layout
28052
28053 \begin_layout Standard
28054 Para obtener separación en todas las líneas hay que cambiar la longitud
28055  
28056 \series bold
28057
28058 \backslash
28059 jot
28060 \series default
28061
28062 \begin_inset Index
28063 status collapsed
28064
28065 \begin_layout Plain Layout
28066 Comandos ! J ! 
28067 \backslash
28068 jot
28069 \end_layout
28070
28071 \end_inset
28072
28073 .
28074  La definición es: 
28075 \begin_inset Formula $\mbox{separación de línea}=\mathrm{6\, pt+\backslash jot}$
28076 \end_inset
28077
28078 .
28079  El valor predeterminado para 
28080 \series bold
28081
28082 \backslash
28083 jot
28084 \series default
28085  es 3
28086 \begin_inset Space \thinspace{}
28087 \end_inset
28088
28089 pt.
28090  Para establecer una separación adicional de 3
28091 \begin_inset Space \thinspace{}
28092 \end_inset
28093
28094 mm como en el ejemplo anterior, se inserta el comando
28095 \end_layout
28096
28097 \begin_layout Standard
28098
28099 \series bold
28100
28101 \backslash
28102 setlength{
28103 \backslash
28104 jot}{3mm+3pt}
28105 \end_layout
28106
28107 \begin_layout Standard
28108 en modo TeX antes de la ecuación.
28109  Es necesario cargar el paquete 
28110 \series bold
28111 calc
28112 \series default
28113
28114 \begin_inset Foot
28115 status collapsed
28116
28117 \begin_layout Plain Layout
28118
28119 \series bold
28120 calc
28121 \series default
28122  forma parte de toda instalación LaTeX estándar.
28123 \end_layout
28124
28125 \end_inset
28126
28127
28128 \begin_inset Index
28129 status collapsed
28130
28131 \begin_layout Plain Layout
28132 Paquetes ! calc
28133 \end_layout
28134
28135 \end_inset
28136
28137  en el preámbulo con la línea
28138 \end_layout
28139
28140 \begin_layout Standard
28141
28142 \series bold
28143
28144 \backslash
28145 usepackage{calc}
28146 \end_layout
28147
28148 \begin_layout Standard
28149 Se obtiene:
28150 \begin_inset ERT
28151 status collapsed
28152
28153 \begin_layout Plain Layout
28154
28155
28156 \backslash
28157 setlength{
28158 \backslash
28159 jot}{3mm+3pt}
28160 \end_layout
28161
28162 \end_inset
28163
28164
28165 \begin_inset Formula \begin{eqnarray*}
28166 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD & = & \textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}\\
28167 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right) & = & 0\end{eqnarray*}
28168
28169 \end_inset
28170
28171
28172 \begin_inset ERT
28173 status collapsed
28174
28175 \begin_layout Plain Layout
28176
28177
28178 \backslash
28179 setlength{
28180 \backslash
28181 jot}{3pt}
28182 \end_layout
28183
28184 \end_inset
28185
28186  Para volver a la distancia predeterminada, 
28187 \series bold
28188
28189 \backslash
28190 jot
28191 \series default
28192  se establece en 3
28193 \begin_inset Space \thinspace{}
28194 \end_inset
28195
28196 pt.
28197 \end_layout
28198
28199 \begin_layout Subsubsection
28200 Separación de columnas
28201 \begin_inset CommandInset label
28202 LatexCommand label
28203 name "sub:Separación-de-columnas"
28204
28205 \end_inset
28206
28207
28208 \begin_inset Index
28209 status collapsed
28210
28211 \begin_layout Plain Layout
28212 Ecuación ! multilínea !separación de columnas
28213 \end_layout
28214
28215 \end_inset
28216
28217
28218 \end_layout
28219
28220 \begin_layout Standard
28221 Una ecuación multilínea forma una matriz.
28222  Una ecuación en un entorno eqnarray, por ejemplo, es una matriz con tres
28223  columnas.
28224  Cambiando la separación de columnas en este entorno se puede cambiar el
28225  espacio junto al signo de relación.
28226 \end_layout
28227
28228 \begin_layout Standard
28229 La separación de columnas se especifica con la longitud
28230 \series bold
28231  
28232 \backslash
28233 arraycolsep
28234 \series default
28235
28236 \begin_inset Index
28237 status collapsed
28238
28239 \begin_layout Plain Layout
28240 Comandos ! A ! 
28241 \backslash
28242 arraycolsep
28243 \end_layout
28244
28245 \end_inset
28246
28247  según:
28248 \begin_inset Newline newline
28249 \end_inset
28250
28251 separación de columnas = 2
28252 \begin_inset Space \thinspace{}
28253 \end_inset
28254
28255
28256 \series bold
28257
28258 \backslash
28259 arraycolsep
28260 \series default
28261
28262 \begin_inset Newline newline
28263 \end_inset
28264
28265 Así, el comando en modo TeX
28266 \end_layout
28267
28268 \begin_layout Standard
28269
28270 \series bold
28271
28272 \backslash
28273 setlength{
28274 \backslash
28275 arraycolsep}{1cm}
28276 \end_layout
28277
28278 \begin_layout Standard
28279 establece para todas las ecuaciones siguientes una separación de columnas
28280  de 2
28281 \begin_inset Space \thinspace{}
28282 \end_inset
28283
28284 cm.
28285  Para volver al valor predefinido, 
28286 \series bold
28287
28288 \backslash
28289 arraycolsep
28290 \series default
28291  se pone en 5
28292 \begin_inset Space \thinspace{}
28293 \end_inset
28294
28295 pt.
28296 \end_layout
28297
28298 \begin_layout Standard
28299 Una ecuación con separación de 2
28300 \begin_inset Space \thinspace{}
28301 \end_inset
28302
28303 cm entre columnas:
28304 \begin_inset ERT
28305 status collapsed
28306
28307 \begin_layout Plain Layout
28308
28309
28310 \backslash
28311 setlength{
28312 \backslash
28313 arraycolsep}{1cm}
28314 \end_layout
28315
28316 \end_inset
28317
28318
28319 \begin_inset Formula \begin{eqnarray*}
28320 A & = & B\\
28321 C & \ne & A\end{eqnarray*}
28322
28323 \end_inset
28324
28325 Una ecuación con la separación predefinida para matrices, 10
28326 \begin_inset Space \thinspace{}
28327 \end_inset
28328
28329 pt:
28330 \begin_inset ERT
28331 status collapsed
28332
28333 \begin_layout Plain Layout
28334
28335
28336 \backslash
28337 setlength{
28338 \backslash
28339 arraycolsep}{5pt}
28340 \end_layout
28341
28342 \end_inset
28343
28344
28345 \begin_inset Formula \begin{eqnarray*}
28346 A & = & B\\
28347 C & \ne & A\end{eqnarray*}
28348
28349 \end_inset
28350
28351
28352 \end_layout
28353
28354 \begin_layout Subsubsection
28355 Ecuaciones largas
28356 \begin_inset Index
28357 status collapsed
28358
28359 \begin_layout Plain Layout
28360 Ecuación ! larga
28361 \end_layout
28362
28363 \end_inset
28364
28365
28366 \end_layout
28367
28368 \begin_layout Standard
28369 Se pueden componer ecuaciones largas mediante estos métodos:
28370 \end_layout
28371
28372 \begin_layout Itemize
28373 Si un lado de la ecuación es mucho más corto que la anchura de línea, este
28374  se elige para el lado izquierdo y el derecho se imprime en dos líneas:
28375 \begin_inset Formula \begin{eqnarray}
28376 H & = & W_{SB}+W_{mv}+W_{D}-\frac{\hbar^{2}}{2m_{0}}\Delta-\frac{\hbar^{2}}{2m_{1}}\Delta_{1}-\frac{\hbar^{2}}{2m_{2}}\Delta_{2}-\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{1}|}\nonumber \\
28377  &  & -\hspace {3pt}\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{2}|}+\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{R}_{1}-\mathbf{R}_{2}|}\label{eq:kurzlang}\end{eqnarray}
28378
28379 \end_inset
28380
28381 El signo menos al principio de la segunda línea normalmente no aparece como
28382  operador porque es el primer carácter de la línea.
28383  No se rodearía de espacio y podría no distinguirse de la raya de fracción.
28384  Para evitarlo se ha insertado espacio detrás del menos con el comando 
28385 \series bold
28386
28387 \backslash
28388 hspace{3pt}
28389 \series default
28390
28391 \begin_inset Index
28392 status collapsed
28393
28394 \begin_layout Plain Layout
28395 Comandos ! H ! 
28396 \backslash
28397 hspace
28398 \end_layout
28399
28400 \end_inset
28401
28402 .
28403 \begin_inset Foot
28404 status collapsed
28405
28406 \begin_layout Plain Layout
28407 véase más sobre 
28408 \series bold
28409
28410 \backslash
28411 hspace
28412 \series default
28413  en 
28414 \begin_inset CommandInset ref
28415 LatexCommand ref
28416 reference "sub:Espacio-variable"
28417
28418 \end_inset
28419
28420
28421 \end_layout
28422
28423 \end_inset
28424
28425
28426 \end_layout
28427
28428 \begin_layout Itemize
28429 Si ambos lados de la ecuación son demasiado largos se usa el comando 
28430 \series bold
28431
28432 \backslash
28433 lefteqn
28434 \series default
28435
28436 \begin_inset Index
28437 status collapsed
28438
28439 \begin_layout Plain Layout
28440 Comandos ! L ! 
28441 \backslash
28442 lefteqn
28443 \end_layout
28444
28445 \end_inset
28446
28447 .
28448  Se inserta en la primer columna de la primera línea y hace que todas las
28449  inserciones posteriores sobreescriban las columnas siguientes:
28450 \begin_inset Formula \begin{eqnarray}
28451 \lefteqn{4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}}\nonumber \\
28452  &  & -\hspace {3pt}B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}\nonumber \\
28453  &  & =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}\label{eq:lefteqn}\end{eqnarray}
28454
28455 \end_inset
28456
28457 Tras la inserción de 
28458 \series bold
28459
28460 \backslash
28461 lefteqn
28462 \series default
28463  el cursor está en un marco púrpura un poco a la izquierda del azul.
28464  La ecuación se inserta en éste.
28465 \begin_inset Newline newline
28466 \end_inset
28467
28468 El contenido de las restantes líneas se inserta en la segunda columna o
28469  en otra.
28470  A mayor número de columna donde se inserte, mayor sangrado.
28471 \begin_inset ERT
28472 status collapsed
28473
28474 \begin_layout Plain Layout
28475
28476
28477 \backslash
28478 medskip
28479 \end_layout
28480
28481 \end_inset
28482
28483
28484 \begin_inset Newline newline
28485 \end_inset
28486
28487
28488 \begin_inset Note Greyedout
28489 status open
28490
28491 \begin_layout Plain Layout
28492 Ten en cuenta lo siguiente si usas 
28493 \series bold
28494
28495 \backslash
28496 lefteqn
28497 \series default
28498 :
28499 \end_layout
28500
28501 \begin_layout Itemize
28502 La ecuación no usa la anchura total de la página.
28503  Cuando se añade, p.
28504 \begin_inset Space \thinspace{}
28505 \end_inset
28506
28507 e., el término 
28508 \begin_inset Formula $-B^{2}$
28509 \end_inset
28510
28511  en la primera línea del ejemplo, debería estar fuera del margen.
28512  Para aprovechar mejor la anchura, se puede insertar espacio negativo al
28513  principio de la primera línea.
28514 \end_layout
28515
28516 \begin_layout Itemize
28517 Debido a un fallo en LyX el cursor no se puede poner con el ratón en la
28518  primera línea.
28519 \begin_inset Foot
28520 status collapsed
28521
28522 \begin_layout Plain Layout
28523 \begin_inset CommandInset href
28524 LatexCommand href
28525 name "LyX-bug #1429"
28526 target "http://bugzilla.lyx.org/show_bug.cgi?id=1429"
28527
28528 \end_inset
28529
28530
28531 \end_layout
28532
28533 \end_inset
28534
28535  Sólo se puede poner el cursor al principio de la línea y moverlo con las
28536  teclas de flecha.
28537 \end_layout
28538
28539 \end_inset
28540
28541  
28542 \end_layout
28543
28544 \begin_layout Itemize
28545 Se describen otros métodos para escribir fórmulas largas en 
28546 \begin_inset CommandInset ref
28547 LatexCommand ref
28548 reference "sub:Entorno-multilínea"
28549
28550 \end_inset
28551
28552  y 
28553 \begin_inset CommandInset ref
28554 LatexCommand ref
28555 reference "sub:Partes-de-una-multilínea"
28556
28557 \end_inset
28558
28559 .
28560 \end_layout
28561
28562 \begin_layout Subsubsection
28563 Delimitadores multilínea
28564 \begin_inset CommandInset label
28565 LatexCommand label
28566 name "sub:Delimitadores-multilínea"
28567
28568 \end_inset
28569
28570
28571 \begin_inset Index
28572 status collapsed
28573
28574 \begin_layout Plain Layout
28575 Delimitadores ! para varias líneas
28576 \end_layout
28577
28578 \end_inset
28579
28580
28581 \end_layout
28582
28583 \begin_layout Standard
28584 Para poner delimitadores que cubran varias líneas hay un problema:
28585 \begin_inset Formula \begin{eqnarray*}
28586 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28587  &  & \left.\cdots+B-D\right]\end{eqnarray*}
28588
28589 \end_inset
28590
28591 El delimitador de cierre es más pequeño que el de apertura porque los delimitado
28592 res con tamaño variable no abarcan líneas múltiples.
28593 \end_layout
28594
28595 \begin_layout Standard
28596 Para obtener el tamaño adecuado de delimitador para la segunda línea, la
28597  primera línea se finaliza con 
28598 \series bold
28599
28600 \backslash
28601 right.
28602 \series default
28603
28604 \begin_inset Index
28605 status collapsed
28606
28607 \begin_layout Plain Layout
28608 Comandos ! R ! 
28609 \backslash
28610 right
28611 \end_layout
28612
28613 \end_inset
28614
28615  y la segunda con 
28616 \series bold
28617
28618 \backslash
28619 left.
28620 \series default
28621 .
28622 \begin_inset Foot
28623 status collapsed
28624
28625 \begin_layout Plain Layout
28626
28627 \series bold
28628 Más sobre 
28629 \series default
28630
28631 \backslash
28632 left.
28633
28634 \series bold
28635  y 
28636 \series default
28637
28638 \backslash
28639 right.
28640
28641 \series bold
28642  en 
28643 \begin_inset CommandInset ref
28644 LatexCommand ref
28645 reference "sub:Tamaño-automático-de"
28646
28647 \end_inset
28648
28649
28650 \end_layout
28651
28652 \end_inset
28653
28654
28655 \begin_inset Index
28656 status collapsed
28657
28658 \begin_layout Plain Layout
28659 Comandos ! L ! 
28660 \backslash
28661 left
28662 \end_layout
28663
28664 \end_inset
28665
28666  Después de 
28667 \series bold
28668
28669 \backslash
28670 left.
28671
28672 \series default
28673  se inserta el comando 
28674 \series bold
28675
28676 \backslash
28677 vphantom
28678 \series default
28679
28680 \begin_inset ERT
28681 status collapsed
28682
28683 \begin_layout Plain Layout
28684
28685
28686 \backslash
28687 spce 
28688 \end_layout
28689
28690 \end_inset
28691
28692
28693 \series bold
28694
28695 \backslash
28696 prod
28697 \series default
28698 ^
28699 \begin_inset ERT
28700 status collapsed
28701
28702 \begin_layout Plain Layout
28703
28704
28705 \backslash
28706 spce 
28707 \end_layout
28708
28709 \end_inset
28710
28711
28712 \series bold
28713
28714 \backslash
28715 infty
28716 \series default
28717
28718 \begin_inset ERT
28719 status collapsed
28720
28721 \begin_layout Plain Layout
28722
28723
28724 \backslash
28725 spce 
28726 \end_layout
28727
28728 \end_inset
28729
28730
28731 \series bold
28732
28733 \begin_inset Formula $\downarrow$
28734 \end_inset
28735
28736 _R=1}
28737 \series default
28738
28739 \begin_inset Index
28740 status collapsed
28741
28742 \begin_layout Plain Layout
28743 Comandos ! V ! 
28744 \backslash
28745 vphantom
28746 \end_layout
28747
28748 \end_inset
28749
28750 , porque el operador de multiplicación con sus límites es el símbolo mayor
28751  en la primera línea y ese debería ser el tamaño para el delimitador en
28752  la segunda línea.
28753 \end_layout
28754
28755 \begin_layout Standard
28756 El resultado es: 
28757 \begin_inset Formula \begin{eqnarray*}
28758 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28759  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]\end{eqnarray*}
28760
28761 \end_inset
28762
28763
28764 \end_layout
28765
28766 \begin_layout Subsection
28767 Entornos align
28768 \end_layout
28769
28770 \begin_layout Standard
28771 Los entornos align se pueden usar para todo tipo de ecuaciones multilínea.
28772  Son especialmente apropiados para poner ecuaciones adosadas.
28773 \end_layout
28774
28775 \begin_layout Standard
28776 Los entornos align constan de columnas.
28777  Las columnas impares se alinean a la derecha, las pares a la izquierda.
28778  En un entorno align se puede numerar cada línea.
28779 \end_layout
28780
28781 \begin_layout Standard
28782 Los entornos align se crean con el menú 
28783 \family sans
28784 Insertar\SpecialChar \menuseparator
28785 Ecuación
28786 \family default
28787 .
28788  Una ecuación existente se puede convertir a align con el menú 
28789 \family sans
28790 Editar\SpecialChar \menuseparator
28791 Ecuación\SpecialChar \menuseparator
28792 Cambiar tipo de ecuación
28793 \family default
28794 .
28795 \end_layout
28796
28797 \begin_layout Standard
28798 Para añadir o quitar columnas se pueden usar los botones 
28799 \begin_inset Graphics
28800         filename ../../images/tabular-feature_append-row.png
28801         embed ""
28802         scale 85
28803
28804 \end_inset
28805
28806  o 
28807 \begin_inset Graphics
28808         filename ../../images/tabular-feature_delete-row.png
28809         embed ""
28810         scale 85
28811
28812 \end_inset
28813
28814 de la barra de ecuaciones o el menú 
28815 \family sans
28816 Editar\SpecialChar \menuseparator
28817 Filas y columnas
28818 \family default
28819 .
28820 \end_layout
28821
28822 \begin_layout Subsubsection
28823 Entorno align estándar
28824 \begin_inset CommandInset label
28825 LatexCommand label
28826 name "sub:Entorno-align-estándar"
28827
28828 \end_inset
28829
28830
28831 \begin_inset Index
28832 status collapsed
28833
28834 \begin_layout Plain Layout
28835 Ecuación ! multilínea ! entorno align
28836 \end_layout
28837
28838 \end_inset
28839
28840
28841 \end_layout
28842
28843 \begin_layout Standard
28844 Este entorno align se crea pulsando 
28845 \family sans
28846 Ctrl-Intro
28847 \family default
28848  en una ecuación o con el menú 
28849 \family sans
28850 Insertar\SpecialChar \menuseparator
28851 Ecuación\SpecialChar \menuseparator
28852 Entorno AMS align
28853 \family default
28854 .
28855 \end_layout
28856
28857 \begin_layout Standard
28858 Un ejemplo para dos ecuaciones adosadas, que se componen con un entorno
28859  align de cuatro columnas:
28860 \begin_inset Formula \begin{align*}
28861 A & =\sen (B) & C & =D\\
28862 C & \neq A & B & \neq D\end{align*}
28863
28864 \end_inset
28865
28866 Como se puede ver, las ecuaciones en este entorno se colocan como si hubiera
28867  un 
28868 \series bold
28869
28870 \backslash
28871 hfill
28872 \series default
28873
28874 \begin_inset Foot
28875 status collapsed
28876
28877 \begin_layout Plain Layout
28878 Más sobre 
28879 \series bold
28880
28881 \backslash
28882 hfill
28883 \series default
28884  en 
28885 \begin_inset CommandInset ref
28886 LatexCommand ref
28887 reference "sub:Espacio-variable"
28888
28889 \end_inset
28890
28891
28892 \end_layout
28893
28894 \end_inset
28895
28896  antes de la primera y detrás de cada columna par.
28897  Si se pone en estilo 
28898 \series bold
28899 Sangrado
28900 \series default
28901 ,
28902 \begin_inset Foot
28903 status collapsed
28904
28905 \begin_layout Plain Layout
28906 véase estilos de ecuación en 
28907 \begin_inset CommandInset ref
28908 LatexCommand ref
28909 reference "sec:Estilos-de-ecuación"
28910
28911 \end_inset
28912
28913
28914 \end_layout
28915
28916 \end_inset
28917
28918  la ecuación queda sin el 
28919 \series bold
28920
28921 \backslash
28922 hfill
28923 \series default
28924  ante la primera columna.
28925 \end_layout
28926
28927 \begin_layout Subsubsection
28928 Entorno alignat
28929 \begin_inset Index
28930 status collapsed
28931
28932 \begin_layout Plain Layout
28933 Ecuación ! multilínea ! entorno alignat
28934 \end_layout
28935
28936 \end_inset
28937
28938
28939 \end_layout
28940
28941 \begin_layout Standard
28942 El entorno alignat no tiene separación predefinida de columnas.
28943  Se puede insertar manualmente con los espacios descritos en 
28944 \begin_inset CommandInset ref
28945 LatexCommand ref
28946 reference "sec:Espacio"
28947
28948 \end_inset
28949
28950 .
28951 \end_layout
28952
28953 \begin_layout Standard
28954 El ejemplo anterior en el entorno alignat, con un espacio de 1
28955 \begin_inset Space \thinspace{}
28956 \end_inset
28957
28958 cm al comienzo da la segunda ecuación:
28959 \begin_inset Formula \begin{alignat*}{2}
28960 A & =\sen (B)\hspace {1cm} & C & =D\\
28961 C & \neq A & B & \neq D\end{alignat*}
28962
28963 \end_inset
28964
28965 Como cada columna puede tener un espacio diferente, este entorno es especialment
28966 e apropiado para poner tres o más ecuaciones adosadas.
28967 \end_layout
28968
28969 \begin_layout Subsubsection
28970 Entorno flalign
28971 \begin_inset CommandInset label
28972 LatexCommand label
28973 name "sub:Entorno-flalign"
28974
28975 \end_inset
28976
28977
28978 \begin_inset Index
28979 status collapsed
28980
28981 \begin_layout Plain Layout
28982 Ecuación ! multilínea ! entorno flalign
28983 \end_layout
28984
28985 \end_inset
28986
28987
28988 \end_layout
28989
28990 \begin_layout Standard
28991 En este entorno las dos primeras columnas están siempre tan a la izquierda
28992  como sea posible y las dos últimas a la derecha.
28993  Ejemplo:
28994 \begin_inset Formula \begin{flalign*}
28995 A & =1 & B & =2 & C & =3\\
28996 X & =\mbox{-}1 & Y & =\mbox{-}2 & Z & =4\end{flalign*}
28997
28998 \end_inset
28999
29000 En un entorno flalign con un número impar de columnas, en la última de las
29001  cuales se inserta una llave TeX vacía, se pueden poner varias ecuaciones
29002  alineadas a la izquierda, aunque se use el estilo 
29003 \series bold
29004 Centrado
29005 \series default
29006 .
29007  Un ejemplo de fórmula sangrada 
29008 \begin_inset CommandInset ref
29009 LatexCommand eqref
29010 reference "eq:IntVol"
29011
29012 \end_inset
29013
29014 :
29015 \begin_inset Formula \begin{flalign}
29016 \hspace {30pt}\iiint_{V}X\mbox{d}V & =U & {}\end{flalign}
29017
29018 \end_inset
29019
29020 Las dos primeras columnas contienen la fórmula.
29021  Para sangrarla como con el estilo 
29022 \series bold
29023 Sangrado
29024 \series default
29025 , se añade un espacio de 30
29026 \begin_inset Space \thinspace{}
29027 \end_inset
29028
29029 pt al comienzo de la primera columna.
29030  
29031 \end_layout
29032
29033 \begin_layout Subsection
29034 Entorno eqnarray
29035 \begin_inset Index
29036 status collapsed
29037
29038 \begin_layout Plain Layout
29039 Ecuación ! multilínea ! entorno eqnarray
29040 \end_layout
29041
29042 \end_inset
29043
29044
29045 \begin_inset Index
29046 status collapsed
29047
29048 \begin_layout Plain Layout
29049 Ecuación ! multilínea ! entorno eqnarray
29050 \end_layout
29051
29052 \end_inset
29053
29054
29055 \end_layout
29056
29057 \begin_layout Standard
29058 Al introducir este entorno aparecen tres marcos azules.
29059  El contenido del primero se alinea a la derecha, el del último a la izquierda.
29060  El contenido del marco central está centrado y algo más pequeño, porque
29061  está diseñado para insertar sólo caracteres de relación.
29062 \begin_inset Formula \begin{eqnarray*}
29063 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29064 AB & AB & AB\\
29065 A & = & A\end{eqnarray*}
29066
29067 \end_inset
29068
29069
29070 \end_layout
29071
29072 \begin_layout Subsection
29073 Entorno gather
29074 \begin_inset Index
29075 status collapsed
29076
29077 \begin_layout Plain Layout
29078 Ecuación ! multilínea ! entorno gather
29079 \end_layout
29080
29081 \end_inset
29082
29083
29084 \end_layout
29085
29086 \begin_layout Standard
29087 Este entorno consta de una sola columna centrada.
29088  Se puede numerar cada línea.
29089 \begin_inset Formula \begin{gather}
29090 A=1\\
29091 X=\mbox{-}1\end{gather}
29092
29093 \end_inset
29094
29095
29096 \end_layout
29097
29098 \begin_layout Subsection
29099 Entorno multilínea
29100 \begin_inset CommandInset label
29101 LatexCommand label
29102 name "sub:Entorno-multilínea"
29103
29104 \end_inset
29105
29106
29107 \begin_inset Index
29108 status collapsed
29109
29110 \begin_layout Plain Layout
29111 Ecuación ! multilínea ! entorno multilínea
29112 \end_layout
29113
29114 \end_inset
29115
29116
29117 \end_layout
29118
29119 \begin_layout Standard
29120 El entorno multilínea, como gather, consta de una sola columna.
29121  Pero la primera línea está alineada a la izquierda, la última a la derecha.
29122  Las demás están centradas.
29123  Por tanto este entorno es apropiado para ecuaciones largas.
29124  Como ejemplo, la ecuación
29125 \begin_inset Space ~
29126 \end_inset
29127
29128
29129 \begin_inset CommandInset ref
29130 LatexCommand eqref
29131 reference "eq:lefteqn"
29132
29133 \end_inset
29134
29135  en entorno multilínea:
29136 \begin_inset Formula \begin{multline}
29137 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}\\
29138 -B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}\\
29139 =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}\end{multline}
29140
29141 \end_inset
29142
29143 En la salida sólo aparece numerada la última (primera) línea si la numeración
29144  del documento es a la derecha (izquierda).
29145 \begin_inset Foot
29146 status collapsed
29147
29148 \begin_layout Plain Layout
29149 véanse los estilos de numeración en 
29150 \begin_inset CommandInset ref
29151 LatexCommand ref
29152 reference "sec:Estilos-de-ecuación"
29153
29154 \end_inset
29155
29156
29157 \end_layout
29158
29159 \end_inset
29160
29161
29162 \end_layout
29163
29164 \begin_layout Standard
29165 Con los comandos 
29166 \series bold
29167
29168 \backslash
29169 shoveright
29170 \begin_inset Index
29171 status collapsed
29172
29173 \begin_layout Plain Layout
29174 Comandos ! S ! 
29175 \backslash
29176 shoveright
29177 \end_layout
29178
29179 \end_inset
29180
29181
29182 \series default
29183  y 
29184 \series bold
29185
29186 \backslash
29187 shoveleft
29188 \series default
29189
29190 \begin_inset Index
29191 status collapsed
29192
29193 \begin_layout Plain Layout
29194 Comandos ! S ! 
29195 \backslash
29196 shoveleft
29197 \end_layout
29198
29199 \end_inset
29200
29201 , una línea centrada se puede alinear a la derecha o a la izquierda, respectivam
29202 ente.
29203  Los comandos se usan como sigue:
29204 \end_layout
29205
29206 \begin_layout Standard
29207
29208 \series bold
29209
29210 \backslash
29211 shoveright{contenido de la línea}
29212 \series default
29213  y 
29214 \series bold
29215
29216 \backslash
29217 shoveleft{contenido de la línea}
29218 \end_layout
29219
29220 \begin_layout Standard
29221 \begin_inset VSpace medskip
29222 \end_inset
29223
29224
29225 \end_layout
29226
29227 \begin_layout Standard
29228 La longitud 
29229 \series bold
29230
29231 \backslash
29232 multlinegap
29233 \series default
29234
29235 \begin_inset Index
29236 status collapsed
29237
29238 \begin_layout Plain Layout
29239 Comandos ! M ! 
29240 \backslash
29241 multlinegap
29242 \end_layout
29243
29244 \end_inset
29245
29246  especifica la distancia de la primera línea desde el margen izquierdo de
29247  la página.
29248  Esta longitud es 0
29249 \begin_inset Space \thinspace{}
29250 \end_inset
29251
29252 pt por defecto.
29253 \end_layout
29254
29255 \begin_layout Standard
29256 Como ejemplo la ecuación anterior con el comando
29257 \end_layout
29258
29259 \begin_layout Standard
29260
29261 \series bold
29262
29263 \backslash
29264 setlength{
29265 \backslash
29266 multlinegap}{2cm}
29267 \end_layout
29268
29269 \begin_layout Standard
29270 insertado previamente en modo TeX:
29271 \begin_inset ERT
29272 status collapsed
29273
29274 \begin_layout Plain Layout
29275
29276
29277 \backslash
29278 setlength{
29279 \backslash
29280 multlinegap}{2cm}
29281 \end_layout
29282
29283 \end_inset
29284
29285
29286 \begin_inset Formula \begin{multline}
29287 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}\\
29288 \shoveleft {-B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}\\
29289 =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}\end{multline}
29290
29291 \end_inset
29292
29293
29294 \begin_inset ERT
29295 status collapsed
29296
29297 \begin_layout Plain Layout
29298
29299
29300 \backslash
29301 setlength{
29302 \backslash
29303 multlinegap}{0pt}
29304 \end_layout
29305
29306 \end_inset
29307
29308 La segunda línea se ha alineado a la izquierda con 
29309 \series bold
29310
29311 \backslash
29312 shoveleft
29313 \series default
29314 .
29315 \end_layout
29316
29317 \begin_layout Subsection
29318 Partes de una ecuación multilínea
29319 \begin_inset CommandInset label
29320 LatexCommand label
29321 name "sub:Partes-de-una-multilínea"
29322
29323 \end_inset
29324
29325
29326 \begin_inset Index
29327 status collapsed
29328
29329 \begin_layout Plain Layout
29330 Ecuación ! multilínea ! partes de
29331 \end_layout
29332
29333 \end_inset
29334
29335
29336 \end_layout
29337
29338 \begin_layout Standard
29339 Para mostrar sólo partes de una ecuación multilínea se
29340 \family roman
29341 \series medium
29342 \shape up
29343 \size normal
29344 \emph off
29345 \bar no
29346 \noun off
29347 \color none
29348
29349 \backslash
29350 left.
29351 \backslash
29352 right
29353 \backslash
29354 }
29355 \family default
29356 \series default
29357 \shape default
29358 \size default
29359 \emph default
29360 \bar default
29361 \noun default
29362 \color inherit
29363  usa uno de los siguientes métodos: 
29364 \series bold
29365 aligned
29366 \series default
29367
29368 \series bold
29369 alignedat
29370 \series default
29371
29372 \series bold
29373 gathered
29374 \series default
29375  o 
29376 \series bold
29377 split
29378 \series default
29379 .
29380  Se pueden elegir en el menú 
29381 \family sans
29382 Insertar\SpecialChar \menuseparator
29383 Ecuación
29384 \family default
29385  o usando los comandos aquí descritos.
29386 \end_layout
29387
29388 \begin_layout Standard
29389 Los tres primeros tienen las mismas propiedades que los correspondientes
29390  entornos multilínea, pero es posible poner al lado más partes de la ecuación.
29391  Un ejemplo:
29392 \begin_inset Formula \[
29393 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29394 \Delta E\Delta t & \ge\frac{\hbar}{2}\end{aligned}
29395 \right\} \mbox{Relaciones de incertidumbre}\]
29396
29397 \end_inset
29398
29399 Para componer esta expresión se inserta una ecuación en presentación y en
29400  ella se introduce el comando 
29401 \series bold
29402
29403 \backslash
29404 aligned
29405 \series default
29406
29407 \begin_inset Index
29408 status collapsed
29409
29410 \begin_layout Plain Layout
29411 Comandos ! A ! 
29412 \backslash
29413 aligned
29414 \end_layout
29415
29416 \end_inset
29417
29418 .
29419  Aparece un marco púrpura alrededor del marco azul en el que ahora se pueden
29420  añadir filas y columnas.
29421  Fuera del entorno multilínea se pueden poner otras partes de la ecuación,
29422  como la llave.
29423 \end_layout
29424
29425 \begin_layout Standard
29426 El entorno aligned también es apropiado para ecuaciones largas cuyas líneas
29427  se alinean horizontalmente.
29428  Usar aligned en una ecuación en presentación tiene la ventaja de que el
29429  número de ecuación se centra verticalmente con las líneas.
29430  Como ejemplo, la ecuación 
29431 \begin_inset CommandInset ref
29432 LatexCommand eqref
29433 reference "eq:kurzlang"
29434
29435 \end_inset
29436
29437  en entorno aligned: 
29438 \begin_inset Formula \begin{equation}
29439 \begin{aligned}H=\; & W_{SB}+W_{mv}+W_{D}-\frac{\hbar^{2}}{2m_{0}}\Delta-\frac{\hbar^{2}}{2m_{1}}\Delta_{1}-\frac{\hbar^{2}}{2m_{2}}\Delta_{2}-\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{1}|}\\
29440  & -\hspace {3pt}\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{2}|}+\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{R}_{1}-\mathbf{R}_{2}|}\end{aligned}
29441 \end{equation}
29442
29443 \end_inset
29444
29445 Para usar los entornos 
29446 \series bold
29447 alignedat
29448 \series default
29449
29450 \series bold
29451 gathered
29452 \series default
29453 , o 
29454 \series bold
29455 split
29456 \series default
29457 , se insertan respectivamente los comandos
29458 \series bold
29459  
29460 \backslash
29461 alignedat
29462 \series default
29463 ,
29464 \begin_inset Index
29465 status collapsed
29466
29467 \begin_layout Plain Layout
29468 Comandos ! A ! 
29469 \backslash
29470 alignedat
29471 \end_layout
29472
29473 \end_inset
29474
29475  
29476 \series bold
29477
29478 \backslash
29479 gathered
29480 \series default
29481
29482 \begin_inset Index
29483 status collapsed
29484
29485 \begin_layout Plain Layout
29486 Comandos ! G ! 
29487 \backslash
29488 gathered
29489 \end_layout
29490
29491 \end_inset
29492
29493 , o 
29494 \series bold
29495
29496 \backslash
29497 split
29498 \series default
29499
29500 \begin_inset Index
29501 status collapsed
29502
29503 \begin_layout Plain Layout
29504 Comandos ! S ! 
29505 \backslash
29506 split
29507 \end_layout
29508
29509 \end_inset
29510
29511 .
29512  El entorno split tiene las mismas propiedades que aligned pero sólo puede
29513  tener dos columnas.
29514 \end_layout
29515
29516 \begin_layout Subsection
29517 Texto en ecuaciones multilínea
29518 \begin_inset CommandInset label
29519 LatexCommand label
29520 name "sub:Texto-en-multilínea"
29521
29522 \end_inset
29523
29524
29525 \begin_inset Index
29526 status collapsed
29527
29528 \begin_layout Plain Layout
29529 Texto ! en ecuaciones
29530 \end_layout
29531
29532 \end_inset
29533
29534
29535 \begin_inset Index
29536 status collapsed
29537
29538 \begin_layout Plain Layout
29539 Ecuación ! multilínea ! texto en
29540 \end_layout
29541
29542 \end_inset
29543
29544
29545 \end_layout
29546
29547 \begin_layout Standard
29548 En los entornos Align, multilínea y gather, se puede insertar texto que
29549  se mostrará en una línea separada y que no afecta la alineación de columna.
29550  Para esto se usa el comando 
29551 \series bold
29552
29553 \backslash
29554 intertext
29555 \series default
29556
29557 \begin_inset Index
29558 status collapsed
29559
29560 \begin_layout Plain Layout
29561 Comandos ! I ! 
29562 \backslash
29563 intertext
29564 \end_layout
29565
29566 \end_inset
29567
29568  con el siguiente esquema:
29569 \end_layout
29570
29571 \begin_layout Standard
29572
29573 \series bold
29574
29575 \backslash
29576 intertext{texto}
29577 \end_layout
29578
29579 \begin_layout Standard
29580 El texto no debería ocupar más de una línea porque no se puede partir con
29581  guión.
29582  Como LyX aún no soporta 
29583 \series bold
29584
29585 \backslash
29586 intertext
29587 \series default
29588  directamente, el texto se escribe como texto matemático.
29589  
29590 \series bold
29591
29592 \backslash
29593 intertext
29594 \series default
29595  debe por tanto estar al comienzo de una línea y en la salida se presenta
29596  sobre esta línea.
29597  Un ejemplo en el que se ha insertado texto al inicio de la segunda línea:
29598 \begin_inset Formula \begin{align}
29599 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29600 \intertext {\text{el integrando es simétrico para $\phi=\pi$, por tanto}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\end{align}
29601
29602 \end_inset
29603
29604
29605 \end_layout
29606
29607 \begin_layout Section
29608 Numeración de ecuaciones
29609 \begin_inset Index
29610 status collapsed
29611
29612 \begin_layout Plain Layout
29613 Ecuación ! numeración|see
29614 \begin_inset ERT
29615 status collapsed
29616
29617 \begin_layout Plain Layout
29618
29619 {
29620 \end_layout
29621
29622 \end_inset
29623
29624 Numeración de ecuaciones
29625 \begin_inset ERT
29626 status collapsed
29627
29628 \begin_layout Plain Layout
29629
29630 }
29631 \end_layout
29632
29633 \end_inset
29634
29635
29636 \end_layout
29637
29638 \end_inset
29639
29640
29641 \begin_inset Index
29642 status collapsed
29643
29644 \begin_layout Plain Layout
29645 Numeración de ecuaciones
29646 \end_layout
29647
29648 \end_inset
29649
29650
29651 \end_layout
29652
29653 \begin_layout Subsection
29654 General
29655 \end_layout
29656
29657 \begin_layout Standard
29658 Las ecuaciones numeradas se insertan con el menú 
29659 \family sans
29660 Insertar\SpecialChar \menuseparator
29661 Ecuación
29662 \family default
29663  
29664 \family sans
29665 \SpecialChar \menuseparator
29666 Ecuación
29667 \begin_inset Space ~
29668 \end_inset
29669
29670 numerada
29671 \family default
29672  (atajo 
29673 \family sans
29674 Ctrl-Alt
29675 \begin_inset Space ~
29676 \end_inset
29677
29678 n
29679 \family default
29680 ).
29681  Ecuaciones existentes se pueden numerar con el menú 
29682 \family sans
29683 Editar\SpecialChar \menuseparator
29684 Ecuación\SpecialChar \menuseparator
29685 Conmutar
29686 \begin_inset Space ~
29687 \end_inset
29688
29689 numeración
29690 \family default
29691  (atajo
29692 \family sans
29693  Alt-m
29694 \begin_inset Space ~
29695 \end_inset
29696
29697 n
29698 \family default
29699 ).
29700  En LyX se muestra detrás de la ecuación el signo almohadilla entre paréntesis.
29701  En la salida se muestra el número real.
29702 \end_layout
29703
29704 \begin_layout Standard
29705 Si se activa la numeración en ecuaciones multilínea se numerarán todas las
29706  líneas.
29707  No obstante, la numeración se puede controlar en cada línea con el menú
29708  
29709 \family sans
29710 Editar\SpecialChar \menuseparator
29711 Ecuación\SpecialChar \menuseparator
29712 \SpecialChar \menuseparator
29713 Conmutar
29714 \begin_inset Space ~
29715 \end_inset
29716
29717 numeración
29718 \begin_inset Space ~
29719 \end_inset
29720
29721 de
29722 \begin_inset Space ~
29723 \end_inset
29724
29725 línea
29726 \family default
29727  (atajo
29728 \family sans
29729  Alt-m
29730 \begin_inset Space ~
29731 \end_inset
29732
29733 N
29734 \family default
29735 ).
29736 \end_layout
29737
29738 \begin_layout Standard
29739 Todas las ecuaciones, excepto en línea, pueden numerarse con dos estilos
29740  distintos, véase 
29741 \begin_inset CommandInset ref
29742 LatexCommand ref
29743 reference "sec:Estilos-de-ecuación"
29744
29745 \end_inset
29746
29747 .
29748 \end_layout
29749
29750 \begin_layout Subsection
29751 Referencias cruzadas
29752 \begin_inset CommandInset label
29753 LatexCommand label
29754 name "sub:Referencias-cruzadas"
29755
29756 \end_inset
29757
29758
29759 \begin_inset Index
29760 status collapsed
29761
29762 \begin_layout Plain Layout
29763 Referencias cruzadas ! a ecuaciones
29764 \end_layout
29765
29766 \end_inset
29767
29768
29769 \end_layout
29770
29771 \begin_layout Standard
29772 Todas las ecuaciones con etiqueta se pueden referenciar.
29773  La etiqueta se añade con el menú 
29774 \family sans
29775 Insertar\SpecialChar \menuseparator
29776 Etiqueta
29777 \family default
29778  o con el botón 
29779 \begin_inset Graphics
29780         filename ../../images/label-insert.png
29781         embed ""
29782         scale 85
29783
29784 \end_inset
29785
29786  de la barra de herramientas.
29787  El cursor debe estar dentro de una ecuación en presentación.
29788  Surge un diálogo con el prefijo 
29789 \series bold
29790 eq:
29791 \series default
29792 , detrás del cual se escribe el texto de la etiqueta.
29793  El prefijo significa 
29794 \begin_inset Quotes fld
29795 \end_inset
29796
29797 equation
29798 \begin_inset Quotes frd
29799 \end_inset
29800
29801  y hace más fácil encontrar etiquetas en documentos extensos porque así
29802  se distingue p.
29803 \begin_inset Space \thinspace{}
29804 \end_inset
29805
29806 e.
29807 \begin_inset Space ~
29808 \end_inset
29809
29810 de las etiquetas de sección.
29811  Para cambiar una etiqueta se usa de nuevo el menú 
29812 \family sans
29813 Insertar\SpecialChar \menuseparator
29814 Etiqueta
29815 \family default
29816 .
29817 \end_layout
29818
29819 \begin_layout Standard
29820 En LyX, el nombre de la etiqueta se muestra entre paréntesis detrás de la
29821  ecuación.
29822  Una ecuación con etiqueta se numera siempre.
29823 \end_layout
29824
29825 \begin_layout Standard
29826 Las referencias cruzadas se insertan mediante el menú 
29827 \family sans
29828 Insertar\SpecialChar \menuseparator
29829 Referencia cruzada
29830 \family default
29831  o con el botón 
29832 \begin_inset Graphics
29833         filename ../../images/dialog-show-new-inset_ref.png
29834         embed ""
29835         scale 85
29836
29837 \end_inset
29838
29839 .
29840  Una referencia a una ecuación aparece en la salida con su número.
29841  Si en el diálogo de referencia cruzada se elige el formato 
29842 \series bold
29843 (<referencia>)
29844 \series default
29845 , la referencia se muestra en la salida entre paréntesis.
29846  
29847 \begin_inset Newline newline
29848 \end_inset
29849
29850 En LyX, pulsando clic derecho sobre una referencia cruzada el cursor salta
29851  a la ecuación de referencia.
29852 \end_layout
29853
29854 \begin_layout Standard
29855 He aquí ejemplos de referencias cruzadas a ecuaciones de las subsecciones
29856  siguientes:
29857 \begin_inset Note Note
29858 status collapsed
29859
29860 \begin_layout Plain Layout
29861 Observa los distintos tipos de referencias cruzadas.
29862 \end_layout
29863
29864 \end_inset
29865
29866
29867 \end_layout
29868
29869 \begin_layout Standard
29870 Las ecuaciones 
29871 \begin_inset CommandInset ref
29872 LatexCommand eqref
29873 reference "eq:tag"
29874
29875 \end_inset
29876
29877  y 
29878 \begin_inset CommandInset ref
29879 LatexCommand eqref
29880 reference "eq:c"
29881
29882 \end_inset
29883
29884  son equivalentes.
29885  En (
29886 \begin_inset CommandInset ref
29887 LatexCommand ref
29888 reference "eq:Lat"
29889
29890 \end_inset
29891
29892 ) se usan mayúsculas latinas para la numeración, a diferencia de (
29893 \begin_inset CommandInset ref
29894 LatexCommand ref
29895 reference "eq:Rom"
29896
29897 \end_inset
29898
29899 ).
29900 \begin_inset VSpace medskip
29901 \end_inset
29902
29903
29904 \end_layout
29905
29906 \begin_layout Standard
29907 Si el argumento de 
29908 \series bold
29909
29910 \backslash
29911 tag
29912 \begin_inset Foot
29913 status collapsed
29914
29915 \begin_layout Plain Layout
29916
29917 \series bold
29918
29919 \backslash
29920 tag
29921 \series default
29922  se describe en 
29923 \begin_inset CommandInset ref
29924 LatexCommand ref
29925 reference "sub:Numeración-personalizada"
29926
29927 \end_inset
29928
29929
29930 \end_layout
29931
29932 \end_inset
29933
29934
29935 \series default
29936  contiene un marco, como se describe en la 
29937 \begin_inset CommandInset ref
29938 LatexCommand ref
29939 reference "sub:Cuadros-de-párrafo"
29940
29941 \end_inset
29942
29943 , no se puede referenciar la ecuación.
29944 \end_layout
29945
29946 \begin_layout Subsection
29947 Subnumeración
29948 \begin_inset Index
29949 status collapsed
29950
29951 \begin_layout Plain Layout
29952 Numeración de ecuaciones ! subnumeración
29953 \end_layout
29954
29955 \end_inset
29956
29957
29958 \end_layout
29959
29960 \begin_layout Standard
29961 Con ayuda de los comandos 
29962 \series bold
29963
29964 \backslash
29965 begin{subequations}
29966 \series default
29967  y 
29968 \series bold
29969
29970 \backslash
29971 end{subequations}
29972 \series default
29973  en modo TeX se pueden subnumerar ecuaciones.
29974 \end_layout
29975
29976 \begin_layout Standard
29977 Ejemplo:
29978 \begin_inset Formula \begin{equation}
29979 A=C-B\label{eq:a}\end{equation}
29980
29981 \end_inset
29982
29983
29984 \begin_inset ERT
29985 status collapsed
29986
29987 \begin_layout Plain Layout
29988
29989
29990 \backslash
29991 addtocounter{equation}{-1}
29992 \end_layout
29993
29994 \end_inset
29995
29996
29997 \begin_inset ERT
29998 status collapsed
29999
30000 \begin_layout Plain Layout
30001
30002
30003 \backslash
30004 begin{subequations}
30005 \end_layout
30006
30007 \end_inset
30008
30009
30010 \begin_inset VSpace -5mm
30011 \end_inset
30012
30013
30014 \begin_inset Formula \begin{equation}
30015 B=C-A\label{eq:b}\end{equation}
30016
30017 \end_inset
30018
30019
30020 \begin_inset Formula \begin{equation}
30021 C=A+B\label{eq:c}\end{equation}
30022
30023 \end_inset
30024
30025
30026 \end_layout
30027
30028 \begin_layout Standard
30029 \begin_inset ERT
30030 status collapsed
30031
30032 \begin_layout Plain Layout
30033
30034
30035 \backslash
30036 end{subequations}
30037 \end_layout
30038
30039 \end_inset
30040
30041
30042 \end_layout
30043
30044 \begin_layout Standard
30045 Para este ejemplo se ha hecho lo siguiente:
30046 \end_layout
30047
30048 \begin_layout Enumerate
30049 se inserta la primera ecuación
30050 \end_layout
30051
30052 \begin_layout Enumerate
30053 después de ella se inserta
30054 \series bold
30055
30056 \begin_inset Newline newline
30057 \end_inset
30058
30059
30060 \backslash
30061 addtocounter{equation}{-1} 
30062 \backslash
30063 begin{subequations}
30064 \begin_inset Index
30065 status collapsed
30066
30067 \begin_layout Plain Layout
30068 Comandos ! A ! 
30069 \backslash
30070 addtocounter
30071 \end_layout
30072
30073 \end_inset
30074
30075
30076 \end_layout
30077
30078 \begin_layout Enumerate
30079 se inserta la segunda ecuación
30080 \end_layout
30081
30082 \begin_layout Enumerate
30083 se inserta la tercera ecuación
30084 \end_layout
30085
30086 \begin_layout Enumerate
30087 se inserta 
30088 \series bold
30089
30090 \backslash
30091 end{subequations}
30092 \series default
30093  tras la tercera ecuación
30094 \end_layout
30095
30096 \begin_layout Standard
30097 Toda ecuación entre los comandos 
30098 \series bold
30099
30100 \backslash
30101 begin
30102 \series default
30103  y 
30104 \series bold
30105
30106 \backslash
30107 end
30108 \series default
30109  se subnumera con a, b, c\SpecialChar \ldots{}
30110  En ecuaciones multilínea se subnumerará cada línea.
30111  Todas las ecuaciones subnumeradas son tratadas como 
30112 \emph on
30113 una
30114 \emph default
30115  ecuación numerada.
30116  Pero como cada ecuación numerada aumenta el contador 
30117 \series bold
30118 equation
30119 \series default
30120  en uno, hay que disminuir el comando 
30121 \series bold
30122
30123 \backslash
30124 addtocounter
30125 \series default
30126 .
30127  De lo contrario, las ecuaciones 
30128 \begin_inset CommandInset ref
30129 LatexCommand eqref
30130 reference "eq:a"
30131
30132 \end_inset
30133
30134
30135 \begin_inset CommandInset ref
30136 LatexCommand eqref
30137 reference "eq:b"
30138
30139 \end_inset
30140
30141
30142 \begin_inset CommandInset ref
30143 LatexCommand eqref
30144 reference "eq:c"
30145
30146 \end_inset
30147
30148  se numerarían 
30149 \begin_inset CommandInset ref
30150 LatexCommand eqref
30151 reference "eq:a"
30152
30153 \end_inset
30154
30155
30156 \begin_inset CommandInset ref
30157 LatexCommand eqref
30158 reference "eq:d"
30159
30160 \end_inset
30161
30162
30163 \begin_inset CommandInset ref
30164 LatexCommand eqref
30165 reference "eq:f"
30166
30167 \end_inset
30168
30169 .
30170 \end_layout
30171
30172 \begin_layout Standard
30173 Al insertar los comandos en modo TeX se crea un espacio entre las dos primeras
30174  ecuaciones.
30175  Para evitarlo se inserta ese espacio vertical de -5
30176 \begin_inset Space \thinspace{}
30177 \end_inset
30178
30179 mm detrás del comando 
30180 \series bold
30181
30182 \backslash
30183 begin{subequations}
30184 \series default
30185 .
30186
30187 \series bold
30188  
30189 \series default
30190 Si se usa el estilo 
30191 \series bold
30192 Sangrado
30193 \series default
30194
30195 \begin_inset Foot
30196 status open
30197
30198 \begin_layout Plain Layout
30199 véase estilos de ecuación en 
30200 \begin_inset CommandInset ref
30201 LatexCommand ref
30202 reference "sec:Estilos-de-ecuación"
30203
30204 \end_inset
30205
30206
30207 \end_layout
30208
30209 \end_inset
30210
30211 , entonces se inserta -7
30212 \begin_inset Space \thinspace{}
30213 \end_inset
30214
30215 mm.
30216 \end_layout
30217
30218 \begin_layout Standard
30219 Un ejemplo de ecuación multilínea en la que se ha eliminado la numeración
30220  de la segunda línea:
30221 \begin_inset ERT
30222 status collapsed
30223
30224 \begin_layout Plain Layout
30225
30226
30227 \backslash
30228 begin{subequations}
30229 \end_layout
30230
30231 \end_inset
30232
30233
30234 \begin_inset Formula \begin{eqnarray}
30235 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30236  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
30237  & = & B^{2}-2BZ+Z^{2}\label{eq:f}\end{eqnarray}
30238
30239 \end_inset
30240
30241
30242 \begin_inset ERT
30243 status collapsed
30244
30245 \begin_layout Plain Layout
30246
30247
30248 \backslash
30249 end{subequations}
30250 \end_layout
30251
30252 \end_inset
30253
30254
30255 \end_layout
30256
30257 \begin_layout Subsection
30258 Numeración definida por el usuario
30259 \begin_inset CommandInset label
30260 LatexCommand label
30261 name "sub:Numeración-personalizada"
30262
30263 \end_inset
30264
30265
30266 \begin_inset Index
30267 status collapsed
30268
30269 \begin_layout Plain Layout
30270 Numeración de ecuaciones ! personalizada
30271 \end_layout
30272
30273 \end_inset
30274
30275
30276 \end_layout
30277
30278 \begin_layout Standard
30279 Con la numeración estándar el número se coloca entre paréntesis.
30280  Para reemplazar los paréntesis con barras verticales, p.
30281 \begin_inset Space \thinspace{}
30282 \end_inset
30283
30284 e., se añade al preámbulo LaTeX la línea: 
30285 \end_layout
30286
30287 \begin_layout Standard
30288
30289 \series bold
30290
30291 \backslash
30292 def
30293 \backslash
30294 tagform@#1{
30295 \backslash
30296 maketag@@@{|#1|}}
30297 \series default
30298
30299 \begin_inset Note Note
30300 status collapsed
30301
30302 \begin_layout Plain Layout
30303 Esta macro ya está declarada en el preámbulo LaTeX para pruebas.
30304  Para activarlo, quita el % del principio.
30305 \end_layout
30306
30307 \end_inset
30308
30309
30310 \end_layout
30311
30312 \begin_layout Standard
30313 Para usar otros caracteres, se reemplazan las barras al lado de 
30314 \series bold
30315 #1
30316 \series default
30317  por ellos.
30318  Para obtener sólo el número de ecuación se omiten las barras verticales.
30319 \begin_inset VSpace bigskip
30320 \end_inset
30321
30322
30323 \end_layout
30324
30325 \begin_layout Standard
30326 Si quieres poner una expresión entre paréntesis en vez del número de ecuación
30327  consecutivo, se usa el comando 
30328 \series bold
30329
30330 \backslash
30331 tag
30332 \begin_inset Index
30333 status collapsed
30334
30335 \begin_layout Plain Layout
30336 Comandos ! T ! 
30337 \backslash
30338 tag
30339 \end_layout
30340
30341 \end_inset
30342
30343
30344 \series default
30345 :
30346 \begin_inset Formula \begin{equation}
30347 A+B=C\tag{algo}\label{eq:tag}\end{equation}
30348
30349 \end_inset
30350
30351 En este ejemplo se ha insertado el comando
30352 \series bold
30353  
30354 \backslash
30355 tag
30356 \begin_inset ERT
30357 status collapsed
30358
30359 \begin_layout Plain Layout
30360
30361
30362 \backslash
30363 spce 
30364 \end_layout
30365
30366 \end_inset
30367
30368 algo
30369 \series default
30370  en la ecuación.
30371 \end_layout
30372
30373 \begin_layout Standard
30374 Si se usa en su lugar el comando con asterisco 
30375 \series bold
30376
30377 \backslash
30378 tag*
30379 \begin_inset ERT
30380 status collapsed
30381
30382 \begin_layout Plain Layout
30383
30384
30385 \backslash
30386 spce 
30387 \end_layout
30388
30389 \end_inset
30390
30391 algo
30392 \series default
30393  no se imprimen los paréntesis:
30394 \begin_inset Formula \[
30395 A+B=C\tag*{algo}\]
30396
30397 \end_inset
30398
30399
30400 \end_layout
30401
30402 \begin_layout Standard
30403 \begin_inset VSpace bigskip
30404 \end_inset
30405
30406
30407 \end_layout
30408
30409 \begin_layout Standard
30410 Para reiniciar la numeración en nuevas partes o secciones del documento
30411  se usan los siguientes comandos:
30412 \end_layout
30413
30414 \begin_layout Standard
30415
30416 \series bold
30417
30418 \backslash
30419 @addtoreset{equation}{part}
30420 \series default
30421
30422 \begin_inset Index
30423 status collapsed
30424
30425 \begin_layout Plain Layout
30426 Comandos ! 
30427 \begin_inset ERT
30428 status collapsed
30429
30430 \begin_layout Plain Layout
30431
30432 "
30433 \end_layout
30434
30435 \end_inset
30436
30437 @
30438 \begin_inset ERT
30439 status collapsed
30440
30441 \begin_layout Plain Layout
30442
30443 "
30444 \end_layout
30445
30446 \end_inset
30447
30448  ! 
30449 \backslash
30450
30451 \begin_inset ERT
30452 status collapsed
30453
30454 \begin_layout Plain Layout
30455
30456 "
30457 \end_layout
30458
30459 \end_inset
30460
30461 @
30462 \begin_inset ERT
30463 status collapsed
30464
30465 \begin_layout Plain Layout
30466
30467 "
30468 \end_layout
30469
30470 \end_inset
30471
30472 addtoreset
30473 \end_layout
30474
30475 \end_inset
30476
30477
30478 \begin_inset Newline newline
30479 \end_inset
30480
30481
30482 \series bold
30483
30484 \backslash
30485 @addtoreset{equation}{section}
30486 \end_layout
30487
30488 \begin_layout Standard
30489 Pata poder usar estos comandos en modo TeX, el carácter 
30490 \begin_inset Quotes fld
30491 \end_inset
30492
30493 @
30494 \begin_inset Quotes frd
30495 \end_inset
30496
30497  debe 
30498 \begin_inset Quotes fld
30499 \end_inset
30500
30501 activarse
30502 \begin_inset Quotes frd
30503 \end_inset
30504
30505  para LaTeX con el comando 
30506 \series bold
30507
30508 \backslash
30509 makeatletter
30510 \series default
30511 .
30512  El comando 
30513 \series bold
30514
30515 \backslash
30516 makeatother
30517 \series default
30518  deshace esto.
30519  Así pues, la secuencia de comandos en modo TeX es:
30520 \end_layout
30521
30522 \begin_layout Standard
30523
30524 \series bold
30525
30526 \backslash
30527 makeatletter
30528 \begin_inset Newline newline
30529 \end_inset
30530
30531
30532 \backslash
30533 @addtoreset{equation}{section}
30534 \begin_inset Newline newline
30535 \end_inset
30536
30537
30538 \backslash
30539 makeatother
30540 \end_layout
30541
30542 \begin_layout Standard
30543 En el preámbulo LaTeX se pueden omitir 
30544 \series bold
30545
30546 \backslash
30547 makeatletter
30548 \series default
30549  y 
30550 \series bold
30551
30552 \backslash
30553 makeatother
30554 \series default
30555  pues son automáticamente insertados por LyX.
30556 \end_layout
30557
30558 \begin_layout Standard
30559 Para el comando 
30560 \series bold
30561
30562 \backslash
30563 @addtoreset
30564 \series default
30565 ,
30566 \series bold
30567  
30568 \series default
30569 hay que cargar en el preámbulo LaTeX el archivo 
30570 \series bold
30571 remreset.sty
30572 \series default
30573
30574 \begin_inset Foot
30575 status open
30576
30577 \begin_layout Plain Layout
30578
30579 \series bold
30580 remreset
30581 \series default
30582  es parte del paquete LaTeX 
30583 \series bold
30584 carlisle
30585 \series default
30586
30587 \begin_inset Index
30588 status collapsed
30589
30590 \begin_layout Plain Layout
30591 Paquetes ! carlisle
30592 \end_layout
30593
30594 \end_inset
30595
30596 , incluido en las instalaciones estándar de LaTeX.
30597 \end_layout
30598
30599 \end_inset
30600
30601
30602 \begin_inset Index
30603 status collapsed
30604
30605 \begin_layout Plain Layout
30606 Paquetes ! remreset
30607 \end_layout
30608
30609 \end_inset
30610
30611  con la línea
30612 \end_layout
30613
30614 \begin_layout Standard
30615
30616 \series bold
30617
30618 \backslash
30619 usepackage{remreset}
30620 \end_layout
30621
30622 \begin_layout Standard
30623 Entonces se puede usar el comando 
30624 \series bold
30625
30626 \backslash
30627 @removefromreset
30628 \series default
30629
30630 \begin_inset Index
30631 status collapsed
30632
30633 \begin_layout Plain Layout
30634 Comandos ! 
30635 \begin_inset ERT
30636 status collapsed
30637
30638 \begin_layout Plain Layout
30639
30640 "
30641 \end_layout
30642
30643 \end_inset
30644
30645 @
30646 \begin_inset ERT
30647 status collapsed
30648
30649 \begin_layout Plain Layout
30650
30651 "
30652 \end_layout
30653
30654 \end_inset
30655
30656  ! 
30657 \backslash
30658
30659 \begin_inset ERT
30660 status collapsed
30661
30662 \begin_layout Plain Layout
30663
30664 "
30665 \end_layout
30666
30667 \end_inset
30668
30669 @
30670 \begin_inset ERT
30671 status collapsed
30672
30673 \begin_layout Plain Layout
30674
30675 "
30676 \end_layout
30677
30678 \end_inset
30679
30680 removefromreset
30681 \end_layout
30682
30683 \end_inset
30684
30685  con el mismo esquema que 
30686 \series bold
30687
30688 \backslash
30689 @addtoreset
30690 \series default
30691 .
30692 \begin_inset VSpace bigskip
30693 \end_inset
30694
30695
30696 \end_layout
30697
30698 \begin_layout Standard
30699 A veces las ecuaciones deberían numerarse de la siguiente manera:
30700 \end_layout
30701
30702 \begin_layout Standard
30703
30704 \family typewriter
30705 (número de sección.número de ecuación)
30706 \end_layout
30707
30708 \begin_layout Standard
30709 El número de ecuación empezaría con 
30710 \begin_inset Quotes fld
30711 \end_inset
30712
30713 1
30714 \begin_inset Quotes frd
30715 \end_inset
30716
30717  en cada sección.
30718 \end_layout
30719
30720 \begin_layout Standard
30721 Para este caso hay el comando 
30722 \series bold
30723
30724 \backslash
30725 numberwithin
30726 \series default
30727
30728 \begin_inset Index
30729 status collapsed
30730
30731 \begin_layout Plain Layout
30732 Comandos ! N ! 
30733 \backslash
30734 numberwithin
30735 \end_layout
30736
30737 \end_inset
30738
30739 , que se usa con el esquema:
30740 \end_layout
30741
30742 \begin_layout Standard
30743
30744 \series bold
30745
30746 \backslash
30747 numberwithin{counter}{sectioning}
30748 \end_layout
30749
30750 \begin_layout Standard
30751 \begin_inset Quotes fld
30752 \end_inset
30753
30754 counter
30755 \begin_inset Quotes frd
30756 \end_inset
30757
30758  indica qué clase de numeración es afectada, 
30759 \begin_inset Quotes fld
30760 \end_inset
30761
30762 sectioning
30763 \begin_inset Quotes frd
30764 \end_inset
30765
30766  indica qué número va delante del punto.
30767  
30768 \end_layout
30769
30770 \begin_layout Standard
30771 Así pues, en nuestro caso se ha usado la siguiente línea ERT o de preámbulo
30772  LaTeX:
30773 \end_layout
30774
30775 \begin_layout Standard
30776
30777 \series bold
30778
30779 \backslash
30780 numberwithin{equation}{section}
30781 \end_layout
30782
30783 \begin_layout Standard
30784 Este es el resultado::
30785 \begin_inset ERT
30786 status collapsed
30787
30788 \begin_layout Plain Layout
30789
30790
30791 \backslash
30792 numberwithin{equation}{section}
30793 \end_layout
30794
30795 \end_inset
30796
30797
30798 \begin_inset Formula \begin{equation}
30799 A+B=C\end{equation}
30800
30801 \end_inset
30802
30803
30804 \end_layout
30805
30806 \begin_layout Standard
30807 Para numerar p.
30808 \begin_inset Space \thinspace{}
30809 \end_inset
30810
30811 e.
30812 \begin_inset Space ~
30813 \end_inset
30814
30815 tablas de modo que 
30816 \begin_inset Quotes fld
30817 \end_inset
30818
30819 sectioning
30820 \begin_inset Quotes frd
30821 \end_inset
30822
30823  es el número de la parte se usa
30824 \begin_inset Newline newline
30825 \end_inset
30826
30827
30828 \series bold
30829
30830 \backslash
30831 numberwithin{table}{part}
30832 \end_layout
30833
30834 \begin_layout Standard
30835 Para volver a la numeración estándar o evitar esta clase numeración cuando
30836  es definida por la clase de documento, se inserta el siguiente comando
30837  como ERT o en el preámbulo LaTeX:
30838 \end_layout
30839
30840 \begin_layout Standard
30841
30842 \series bold
30843
30844 \backslash
30845 renewcommand{
30846 \backslash
30847 theequation}{
30848 \backslash
30849 arabic{equation}}
30850 \begin_inset Index
30851 status collapsed
30852
30853 \begin_layout Plain Layout
30854 Comandos ! A ! 
30855 \backslash
30856 arabic
30857 \end_layout
30858
30859 \end_inset
30860
30861
30862 \series default
30863
30864 \begin_inset ERT
30865 status collapsed
30866
30867 \begin_layout Plain Layout
30868
30869
30870 \backslash
30871 renewcommand{
30872 \backslash
30873 theequation}{
30874 \backslash
30875 arabic{equation}}
30876 \end_layout
30877
30878 \end_inset
30879
30880
30881 \series bold
30882
30883 \begin_inset Newline newline
30884 \end_inset
30885
30886
30887 \series default
30888 o
30889 \series bold
30890
30891 \begin_inset Newline newline
30892 \end_inset
30893
30894
30895 \backslash
30896 renewcommand{
30897 \backslash
30898 thetable}{
30899 \backslash
30900 arabic{table}}
30901 \end_layout
30902
30903 \begin_layout Standard
30904
30905 \series bold
30906
30907 \backslash
30908 numberwithin
30909 \series default
30910  usa internamente el comando 
30911 \series bold
30912
30913 \backslash
30914 @addtoreset
30915 \series default
30916 , descrito arriba, que también necesita ser restaurado.
30917 \begin_inset ERT
30918 status collapsed
30919
30920 \begin_layout Plain Layout
30921
30922
30923 \backslash
30924 makeatletter
30925 \end_layout
30926
30927 \begin_layout Plain Layout
30928
30929
30930 \backslash
30931 @removefromreset{equation}{section}
30932 \end_layout
30933
30934 \begin_layout Plain Layout
30935
30936
30937 \backslash
30938 makeatother
30939 \end_layout
30940
30941 \end_inset
30942
30943
30944 \end_layout
30945
30946 \begin_layout Subsection
30947 Numeración con números romanos y letras
30948 \begin_inset CommandInset label
30949 LatexCommand label
30950 name "sub:Numeración-con-romanos"
30951
30952 \end_inset
30953
30954
30955 \begin_inset Index
30956 status collapsed
30957
30958 \begin_layout Plain Layout
30959 Numeración de ecuaciones ! con números romanos
30960 \end_layout
30961
30962 \end_inset
30963
30964
30965 \begin_inset Index
30966 status collapsed
30967
30968 \begin_layout Plain Layout
30969 Numeración de ecuaciones ! con letras
30970 \end_layout
30971
30972 \end_inset
30973
30974
30975 \end_layout
30976
30977 \begin_layout Standard
30978 Las ecuaciones también se pueden numerar con números romanos y letras latinas.
30979  Por ejemplo, para numerar con romanos en minúscula,
30980 \begin_inset Foot
30981 status collapsed
30982
30983 \begin_layout Plain Layout
30984 Como en español no se usan romanos en minúscula, el estilo 
30985 \series bold
30986 spanish
30987 \series default
30988  del sistema 
30989 \series bold
30990 babel
30991 \series default
30992  redefine 
30993 \series bold
30994
30995 \backslash
30996 roman
30997 \series default
30998  para que los dé en versalitas.
30999  Véase 
31000 \begin_inset CommandInset citation
31001 LatexCommand cite
31002 key "spanish"
31003
31004 \end_inset
31005
31006  (
31007 \emph on
31008 N.
31009 \begin_inset Space \thinspace{}
31010 \end_inset
31011
31012 del t
31013 \emph default
31014 ).
31015 \end_layout
31016
31017 \end_inset
31018
31019  se inserta el comando
31020 \end_layout
31021
31022 \begin_layout Standard
31023
31024 \series bold
31025
31026 \backslash
31027 renewcommand{
31028 \backslash
31029 theequation}{
31030 \backslash
31031 roman{equation}}
31032 \end_layout
31033
31034 \begin_layout Standard
31035 antes de la ecuación en modo TeX.
31036  
31037 \series bold
31038
31039 \backslash
31040 renewcommand
31041 \series default
31042
31043 \begin_inset Index
31044 status collapsed
31045
31046 \begin_layout Plain Layout
31047 Comandos ! R ! 
31048 \backslash
31049 renewcommand
31050 \end_layout
31051
31052 \end_inset
31053
31054  redefine el comando predefinido 
31055 \series bold
31056
31057 \backslash
31058 theequation
31059 \series default
31060  como 
31061 \series bold
31062
31063 \backslash
31064 roman{equation}
31065 \series default
31066 .
31067 \begin_inset Foot
31068 status collapsed
31069
31070 \begin_layout Plain Layout
31071 El comando 
31072 \series bold
31073
31074 \backslash
31075 renewcommand
31076 \series default
31077  tiene el mismo esquema que el comando 
31078 \series bold
31079
31080 \backslash
31081 newcommand
31082 \series default
31083 , descrito en 
31084 \begin_inset CommandInset ref
31085 LatexCommand ref
31086 reference "sec:Comandos-de-usuario"
31087
31088 \end_inset
31089
31090 .
31091 \end_layout
31092
31093 \end_inset
31094
31095  
31096 \series bold
31097 equation
31098 \series default
31099  es el contador de ecuaciones.
31100  Si se usa el comando 
31101 \series bold
31102
31103 \backslash
31104 the
31105 \series default
31106  como prefijo de un contador, el valor del contador sale en números arábigos.
31107  Si una ecuación es numerada, LaTeX pone internamente el comando 
31108 \series bold
31109
31110 \backslash
31111 theequation
31112 \series default
31113  detrás de la ecuación.
31114  
31115 \series bold
31116
31117 \backslash
31118 roman{equation}
31119 \series default
31120
31121 \begin_inset Index
31122 status collapsed
31123
31124 \begin_layout Plain Layout
31125 Comandos ! R ! 
31126 \backslash
31127 roman
31128 \end_layout
31129
31130 \end_inset
31131
31132  pone el contador en romanos en minúscula.
31133 \end_layout
31134
31135 \begin_layout Standard
31136 Todas las ecuaciones siguientes a 
31137 \series bold
31138
31139 \backslash
31140 renew
31141 \series default
31142 c
31143 \series bold
31144 ommand
31145 \series default
31146  se numerarán en romanos.
31147  Para cambiar a números romanos en mayúscula se inserta de nuevo el comando,
31148  cambiando 
31149 \series bold
31150
31151 \backslash
31152 roman
31153 \series default
31154  por 
31155 \series bold
31156
31157 \backslash
31158 Roman
31159 \series default
31160  
31161 \begin_inset Index
31162 status collapsed
31163
31164 \begin_layout Plain Layout
31165 Comandos ! R ! 
31166 \backslash
31167 roman@
31168 \backslash
31169 Roman
31170 \end_layout
31171
31172 \end_inset
31173
31174 .
31175  Para 
31176 \begin_inset Quotes fld
31177 \end_inset
31178
31179 numerar
31180 \begin_inset Quotes frd
31181 \end_inset
31182
31183  con minúsculas latinas hay el comando 
31184 \series bold
31185
31186 \backslash
31187 alph
31188 \series default
31189
31190 \begin_inset Index
31191 status collapsed
31192
31193 \begin_layout Plain Layout
31194 Comandos ! A ! 
31195 \backslash
31196 alph
31197 \end_layout
31198
31199 \end_inset
31200
31201 , y para mayúsculas el comando 
31202 \series bold
31203
31204 \backslash
31205 Alph
31206 \series default
31207
31208 \begin_inset Index
31209 status collapsed
31210
31211 \begin_layout Plain Layout
31212 Comandos ! A ! 
31213 \backslash
31214 alph@
31215 \backslash
31216 Alph
31217 \end_layout
31218
31219 \end_inset
31220
31221 .
31222 \end_layout
31223
31224 \begin_layout Standard
31225 \begin_inset Note Greyedout
31226 status collapsed
31227
31228 \begin_layout Plain Layout
31229
31230 \series bold
31231 Nota:
31232 \series default
31233  Con letras latinas sólo se puede numerar hasta un máximo de 26 ecuaciones.
31234 \end_layout
31235
31236 \end_inset
31237
31238
31239 \begin_inset ERT
31240 status collapsed
31241
31242 \begin_layout Plain Layout
31243
31244
31245 \backslash
31246 renewcommand{
31247 \backslash
31248 theequation}{
31249 \backslash
31250 roman{equation}}
31251 \end_layout
31252
31253 \end_inset
31254
31255
31256 \begin_inset Formula \begin{equation}
31257 A=\textrm{romanos en minúscula}\label{eq:rom}\end{equation}
31258
31259 \end_inset
31260
31261
31262 \begin_inset ERT
31263 status collapsed
31264
31265 \begin_layout Plain Layout
31266
31267
31268 \backslash
31269 renewcommand{
31270 \backslash
31271 theequation}{
31272 \backslash
31273 Roman{equation}}
31274 \end_layout
31275
31276 \end_inset
31277
31278
31279 \begin_inset Formula \begin{equation}
31280 B=\textrm{romanos en mayúscula}\label{eq:Rom}\end{equation}
31281
31282 \end_inset
31283
31284
31285 \begin_inset ERT
31286 status collapsed
31287
31288 \begin_layout Plain Layout
31289
31290
31291 \backslash
31292 renewcommand{
31293 \backslash
31294 theequation}{
31295 \backslash
31296 alph{equation}}
31297 \end_layout
31298
31299 \end_inset
31300
31301
31302 \begin_inset Formula \begin{equation}
31303 C=\textrm{latinas en minúscula}\label{eq:lat}\end{equation}
31304
31305 \end_inset
31306
31307
31308 \begin_inset ERT
31309 status collapsed
31310
31311 \begin_layout Plain Layout
31312
31313
31314 \backslash
31315 renewcommand{
31316 \backslash
31317 theequation}{
31318 \backslash
31319 Alph{equation}}
31320 \end_layout
31321
31322 \end_inset
31323
31324
31325 \begin_inset Formula \begin{equation}
31326 D=\textrm{latinas en mayúscula}\label{eq:Lat}\end{equation}
31327
31328 \end_inset
31329
31330
31331 \end_layout
31332
31333 \begin_layout Standard
31334 Para volver a la numeración por defecto se inserta el comando:
31335 \end_layout
31336
31337 \begin_layout Standard
31338
31339 \series bold
31340
31341 \backslash
31342 renewcommand{
31343 \backslash
31344 theequation}{
31345 \backslash
31346 arabic{equation}}
31347 \begin_inset Index
31348 status collapsed
31349
31350 \begin_layout Plain Layout
31351 Comandos ! A ! 
31352 \backslash
31353 arabic
31354 \end_layout
31355
31356 \end_inset
31357
31358
31359 \end_layout
31360
31361 \begin_layout Standard
31362 \begin_inset ERT
31363 status collapsed
31364
31365 \begin_layout Plain Layout
31366
31367
31368 \backslash
31369 renewcommand{
31370 \backslash
31371 theequation}{
31372 \backslash
31373 arabic{equation}}
31374 \end_layout
31375
31376 \end_inset
31377
31378
31379 \begin_inset Formula \begin{equation}
31380 E=\mbox{arábigos}\label{eq:arab}\end{equation}
31381
31382 \end_inset
31383
31384
31385 \end_layout
31386
31387 \begin_layout Standard
31388 \begin_inset VSpace medskip
31389 \end_inset
31390
31391
31392 \end_layout
31393
31394 \begin_layout Standard
31395 Como ves, las ecuaciones se numeran consecutivamente independientemente
31396  del estilo de numeración.
31397  Cuando la numeración haya de empezar con 
31398 \begin_inset Quotes fld
31399 \end_inset
31400
31401 1
31402 \begin_inset Quotes frd
31403 \end_inset
31404
31405  al cambiar el estilo, hay que definir nuevos contadores de ecuación.
31406  Una descripción sobre esto se encuentra en el archivo 
31407 \begin_inset CommandInset href
31408 LatexCommand href
31409 target "Formula-numbering.lyx"
31410
31411 \end_inset
31412
31413 .
31414 \end_layout
31415
31416 \begin_layout Section
31417 Comandos definidos por el usuario
31418 \begin_inset CommandInset label
31419 LatexCommand label
31420 name "sec:Comandos-de-usuario"
31421
31422 \end_inset
31423
31424
31425 \begin_inset Index
31426 status collapsed
31427
31428 \begin_layout Plain Layout
31429 Comandos personalizados
31430 \end_layout
31431
31432 \end_inset
31433
31434
31435 \end_layout
31436
31437 \begin_layout Standard
31438 Muchos comandos LaTeX son demasiado largos para usarlos con frecuencia.
31439  Pero es posible definir nuevos comandos más cortos con el comando 
31440 \series bold
31441
31442 \backslash
31443 newcommand
31444 \series default
31445
31446 \begin_inset Index
31447 status collapsed
31448
31449 \begin_layout Plain Layout
31450 Comandos ! N ! 
31451 \backslash
31452 newcommand
31453 \end_layout
31454
31455 \end_inset
31456
31457 .
31458  
31459 \end_layout
31460
31461 \begin_layout Standard
31462 El esquema del comando 
31463 \series bold
31464
31465 \backslash
31466 newcommand
31467 \series default
31468  es:
31469 \end_layout
31470
31471 \begin_layout Standard
31472
31473 \series bold
31474
31475 \backslash
31476 newcommand{nombre nuevo de comando}[número de argumentos]
31477 \begin_inset Newline newline
31478 \end_inset
31479
31480
31481 \begin_inset ERT
31482 status collapsed
31483
31484 \begin_layout Plain Layout
31485
31486
31487 \backslash
31488 phantom{
31489 \end_layout
31490
31491 \end_inset
31492
31493
31494 \backslash
31495 newcommand
31496 \begin_inset ERT
31497 status collapsed
31498
31499 \begin_layout Plain Layout
31500
31501 }
31502 \end_layout
31503
31504 \end_inset
31505
31506 [valor opcional]{definición de comando}
31507 \end_layout
31508
31509 \begin_layout Standard
31510 \begin_inset Note Greyedout
31511 status collapsed
31512
31513 \begin_layout Plain Layout
31514
31515 \series bold
31516 Nota:
31517 \series default
31518  Asegúrate de que el nombre del nuevo comando no está definido ya en el
31519  documento o en paquetes LaTeX que uses.
31520  Si p.
31521 \begin_inset Space \thinspace{}
31522 \end_inset
31523
31524 e.
31525  defines el comando 
31526 \series bold
31527
31528 \backslash
31529 le
31530 \series default
31531  para 
31532 \series bold
31533
31534 \backslash
31535 Leftarrow,
31536 \series default
31537  se producirán errores porque 
31538 \series bold
31539
31540 \backslash
31541 le
31542 \series default
31543  ya existe como comando para 
31544 \begin_inset Quotes fld
31545 \end_inset
31546
31547
31548 \begin_inset Formula $\le$
31549 \end_inset
31550
31551
31552 \begin_inset Quotes frd
31553 \end_inset
31554
31555 .
31556
31557 \series bold
31558  
31559 \end_layout
31560
31561 \end_inset
31562
31563
31564 \end_layout
31565
31566 \begin_layout Standard
31567 \begin_inset Note Greyedout
31568 status collapsed
31569
31570 \begin_layout Plain Layout
31571
31572 \series bold
31573 Nota:
31574 \series default
31575  Los nombres de comandos personalizados sólo pueden tener letras latinas.
31576 \end_layout
31577
31578 \end_inset
31579
31580
31581 \end_layout
31582
31583 \begin_layout Standard
31584 El número de argumentos es un entero en el rango 0-9 y especifica cuántos
31585  argumentos debería tener el nuevo comando.
31586  Con el valor opcional se puede predefinir un valor para un argumento opcional.
31587  Cuando se hace esto, el 
31588 \emph on
31589 primer
31590 \emph default
31591  argumento del nuevo comando es automáticamente opcional.
31592 \end_layout
31593
31594 \begin_layout Standard
31595 Veamos unos ejemplos:
31596 \end_layout
31597
31598 \begin_layout Itemize
31599 Para definir el comando 
31600 \series bold
31601
31602 \backslash
31603 gr
31604 \series default
31605  para 
31606 \series bold
31607
31608 \backslash
31609 Longrightarrow
31610 \series default
31611 , la línea de preámbulo LaTeX es:
31612 \begin_inset ERT
31613 status collapsed
31614
31615 \begin_layout Plain Layout
31616
31617
31618 \backslash
31619 medskip
31620 \end_layout
31621
31622 \end_inset
31623
31624
31625 \series bold
31626
31627 \begin_inset Newline newline
31628 \end_inset
31629
31630
31631 \backslash
31632 newcommand{
31633 \backslash
31634 gr}{
31635 \backslash
31636 Longrightarrow}
31637 \end_layout
31638
31639 \begin_layout Itemize
31640 Para definir el comando 
31641 \series bold
31642
31643 \backslash
31644 us
31645 \series default
31646  para 
31647 \series bold
31648
31649 \backslash
31650 underline
31651 \series default
31652 , el argumento (que sería subrayado) debe tenerse en cuenta.
31653  Para esto la línea de preámbulo es: :
31654 \begin_inset ERT
31655 status collapsed
31656
31657 \begin_layout Plain Layout
31658
31659
31660 \backslash
31661 medskip
31662 \end_layout
31663
31664 \end_inset
31665
31666
31667 \series bold
31668
31669 \begin_inset Newline newline
31670 \end_inset
31671
31672
31673 \backslash
31674 newcommand{
31675 \backslash
31676 us}[1]{
31677 \backslash
31678 underline{#1}}
31679 \series default
31680
31681 \begin_inset ERT
31682 status collapsed
31683
31684 \begin_layout Plain Layout
31685
31686
31687 \backslash
31688 medskip
31689 \end_layout
31690
31691 \end_inset
31692
31693
31694 \begin_inset Newline newline
31695 \end_inset
31696
31697 El carácter 
31698 \series bold
31699 #
31700 \series default
31701  actúa como colocador del argumento, el 
31702 \series bold
31703 1
31704 \series default
31705  indica que es el colocador para el primer argumento.
31706 \end_layout
31707
31708 \begin_layout Itemize
31709 Para 
31710 \series bold
31711
31712 \backslash
31713 framebox
31714 \series default
31715  se puede p.
31716 \begin_inset Space \thinspace{}
31717 \end_inset
31718
31719 e.
31720  definir el comando 
31721 \series bold
31722
31723 \backslash
31724 fb
31725 \series default
31726 :
31727 \begin_inset ERT
31728 status collapsed
31729
31730 \begin_layout Plain Layout
31731
31732
31733 \backslash
31734 medskip
31735 \end_layout
31736
31737 \end_inset
31738
31739
31740 \series bold
31741
31742 \begin_inset Newline newline
31743 \end_inset
31744
31745
31746 \backslash
31747 newcommand{
31748 \backslash
31749 fb}[3]{
31750 \backslash
31751 framebox#1#2{$#3$}}
31752 \series default
31753
31754 \begin_inset ERT
31755 status collapsed
31756
31757 \begin_layout Plain Layout
31758
31759
31760 \backslash
31761 medskip
31762 \end_layout
31763
31764 \end_inset
31765
31766
31767 \begin_inset Newline newline
31768 \end_inset
31769
31770 Los dos signos dólar generan la ecuación extra necesaria para 
31771 \series bold
31772
31773 \backslash
31774 framebox
31775 \series default
31776 , véase 
31777 \begin_inset CommandInset ref
31778 LatexCommand ref
31779 reference "sub:Cuadros-con-marco"
31780
31781 \end_inset
31782
31783 .
31784 \end_layout
31785
31786 \begin_layout Itemize
31787 Para crear un nuevo comando para 
31788 \series bold
31789
31790 \backslash
31791 fcolorbox
31792 \series default
31793  donde no es necesario especificar el color para el cuadro, el argumento
31794  para el color se define opcional:
31795 \begin_inset ERT
31796 status collapsed
31797
31798 \begin_layout Plain Layout
31799
31800
31801 \backslash
31802 medskip
31803 \end_layout
31804
31805 \end_inset
31806
31807
31808 \series bold
31809
31810 \begin_inset Newline newline
31811 \end_inset
31812
31813
31814 \backslash
31815 newcommand{
31816 \backslash
31817 cb}[3][white]{
31818 \backslash
31819 fcolorbox{#2}{#1}{$#3$}}
31820 \series default
31821
31822 \begin_inset ERT
31823 status collapsed
31824
31825 \begin_layout Plain Layout
31826
31827
31828 \backslash
31829 medskip
31830 \end_layout
31831
31832 \end_inset
31833
31834
31835 \begin_inset Newline newline
31836 \end_inset
31837
31838 Si el color no es especificado al usar 
31839 \series bold
31840
31841 \backslash
31842 cb
31843 \series default
31844 , se elige el color 
31845 \series bold
31846 white
31847 \series default
31848  predefinido.
31849 \end_layout
31850
31851 \begin_layout Standard
31852 Un ensayo con los nuevos comandos definidos:
31853 \end_layout
31854
31855 \begin_layout Standard
31856 \noindent
31857 \align center
31858 \begin_inset Tabular
31859 <lyxtabular version="3" rows="6" columns="2">
31860 <features>
31861 <column alignment="center" valignment="top" width="0">
31862 <column alignment="center" valignment="top" width="0">
31863 <row>
31864 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31865 \begin_inset Text
31866
31867 \begin_layout Plain Layout
31868 Comando
31869 \end_layout
31870
31871 \end_inset
31872 </cell>
31873 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31874 \begin_inset Text
31875
31876 \begin_layout Plain Layout
31877 Resultado
31878 \begin_inset Note Note
31879 status collapsed
31880
31881 \begin_layout Plain Layout
31882
31883 \series bold
31884
31885 \backslash
31886 raisebox
31887 \series default
31888  se usa sólo como espaciador
31889 \end_layout
31890
31891 \end_inset
31892
31893
31894 \end_layout
31895
31896 \end_inset
31897 </cell>
31898 </row>
31899 <row>
31900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31901 \begin_inset Text
31902
31903 \begin_layout Plain Layout
31904 A
31905 \backslash
31906 gr
31907 \begin_inset ERT
31908 status collapsed
31909
31910 \begin_layout Plain Layout
31911
31912
31913 \backslash
31914 spce 
31915 \end_layout
31916
31917 \end_inset
31918
31919 B
31920 \end_layout
31921
31922 \end_inset
31923 </cell>
31924 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31925 \begin_inset Text
31926
31927 \begin_layout Plain Layout
31928 \begin_inset Formula $A\gr  B$
31929 \end_inset
31930
31931
31932 \end_layout
31933
31934 \end_inset
31935 </cell>
31936 </row>
31937 <row>
31938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31939 \begin_inset Text
31940
31941 \begin_layout Plain Layout
31942
31943 \backslash
31944 us{ABcd
31945 \end_layout
31946
31947 \end_inset
31948 </cell>
31949 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31950 \begin_inset Text
31951
31952 \begin_layout Plain Layout
31953 \begin_inset Formula $\raisebox {4.5mm}{}\us {ABcd}\raisebox {-2mm}{}$
31954 \end_inset
31955
31956
31957 \end_layout
31958
31959 \end_inset
31960 </cell>
31961 </row>
31962 <row>
31963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31964 \begin_inset Text
31965
31966 \begin_layout Plain Layout
31967
31968 \backslash
31969 fb{[2cm]
31970 \begin_inset Formula $\to$
31971 \end_inset
31972
31973
31974 \backslash
31975 {
31976 \begin_inset Formula $\to$
31977 \end_inset
31978
31979
31980 \backslash
31981 {
31982 \backslash
31983 int
31984 \begin_inset ERT
31985 status collapsed
31986
31987 \begin_layout Plain Layout
31988
31989
31990 \backslash
31991 spce 
31992 \end_layout
31993
31994 \end_inset
31995
31996 A=B
31997 \end_layout
31998
31999 \end_inset
32000 </cell>
32001 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32002 \begin_inset Text
32003
32004 \begin_layout Plain Layout
32005 \begin_inset Formula $\raisebox {6mm}{}\fb {[2cm]}{}{\int A=B}\raisebox {-4mm}{}$
32006 \end_inset
32007
32008
32009 \end_layout
32010
32011 \end_inset
32012 </cell>
32013 </row>
32014 <row>
32015 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32016 \begin_inset Text
32017
32018 \begin_layout Plain Layout
32019
32020 \backslash
32021 cb{red
32022 \begin_inset Formula $\to$
32023 \end_inset
32024
32025
32026 \backslash
32027 {
32028 \backslash
32029 int
32030 \begin_inset ERT
32031 status collapsed
32032
32033 \begin_layout Plain Layout
32034
32035
32036 \backslash
32037 spce 
32038 \end_layout
32039
32040 \end_inset
32041
32042 A=B
32043 \end_layout
32044
32045 \end_inset
32046 </cell>
32047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32048 \begin_inset Text
32049
32050 \begin_layout Plain Layout
32051 \begin_inset Formula $\raisebox {6mm}{}\cb {red}{\int A=B}\raisebox {-4mm}{}$
32052 \end_inset
32053
32054
32055 \end_layout
32056
32057 \end_inset
32058 </cell>
32059 </row>
32060 <row>
32061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32062 \begin_inset Text
32063
32064 \begin_layout Plain Layout
32065
32066 \backslash
32067 cb[green]
32068 \backslash
32069 {red
32070 \begin_inset Formula $\to$
32071 \end_inset
32072
32073
32074 \backslash
32075 {
32076 \backslash
32077 int
32078 \begin_inset ERT
32079 status collapsed
32080
32081 \begin_layout Plain Layout
32082
32083
32084 \backslash
32085 spce 
32086 \end_layout
32087
32088 \end_inset
32089
32090 A=B
32091 \end_layout
32092
32093 \end_inset
32094 </cell>
32095 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32096 \begin_inset Text
32097
32098 \begin_layout Plain Layout
32099 \begin_inset Formula $\raisebox {6mm}{}\cb [green]{red}{\int A=B}\raisebox {-4mm}{}$
32100 \end_inset
32101
32102
32103 \end_layout
32104
32105 \end_inset
32106 </cell>
32107 </row>
32108 </lyxtabular>
32109
32110 \end_inset
32111
32112
32113 \end_layout
32114
32115 \begin_layout Section
32116 Diagramas
32117 \begin_inset Index
32118 status collapsed
32119
32120 \begin_layout Plain Layout
32121 Diagramas
32122 \end_layout
32123
32124 \end_inset
32125
32126
32127 \end_layout
32128
32129 \begin_layout Standard
32130 Para componer diagramas se necesita el paquete LaTeX 
32131 \series bold
32132 amscd
32133 \series default
32134 .
32135 \series bold
32136
32137 \begin_inset Foot
32138 status collapsed
32139
32140 \begin_layout Plain Layout
32141
32142 \series bold
32143 amscd
32144 \series default
32145  forma parte de las instalaciones estándar de LaTeX.
32146 \end_layout
32147
32148 \end_inset
32149
32150
32151 \series default
32152
32153 \begin_inset Index
32154 status collapsed
32155
32156 \begin_layout Plain Layout
32157 Paquetes ! amscd
32158 \end_layout
32159
32160 \end_inset
32161
32162  Se carga en el preámbulo LaTeX con la línea:
32163 \end_layout
32164
32165 \begin_layout Standard
32166
32167 \series bold
32168
32169 \backslash
32170 usepackage{amscd}
32171 \end_layout
32172
32173 \begin_layout Standard
32174 Los diagramas visualizan relaciones y su aspecto es como este:
32175 \begin_inset Formula \[
32176 \begin{CD}A@)))B@)))C\\
32177 @AAA@.@VVV\\
32178 F@(((E@(((D\end{CD}\]
32179
32180 \end_inset
32181
32182 Para obtener el diagrama se inserta en la ecuación el comando 
32183 \series bold
32184
32185 \backslash
32186 CD
32187 \begin_inset Index
32188 status collapsed
32189
32190 \begin_layout Plain Layout
32191 Comandos ! C ! 
32192 \backslash
32193 CD
32194 \end_layout
32195
32196 \end_inset
32197
32198
32199 \series default
32200 .
32201  Surge un marco azul entre dos líneas de trazos en el que se insertan a
32202  continuación comandos.
32203  Con 
32204 \family sans
32205 Ctrl-Intro
32206 \family default
32207  se inicia una nueva línea.
32208  En las líneas impares se insertan relaciones horizontales, en las pares
32209  verticales.
32210 \end_layout
32211
32212 \begin_layout Standard
32213 Para componer las relaciones hay los siguientes comandos:
32214 \begin_inset Foot
32215 status collapsed
32216
32217 \begin_layout Plain Layout
32218 \begin_inset CommandInset label
32219 LatexCommand label
32220 name "fn:sinónimos"
32221
32222 \end_inset
32223
32224 Los comandos con 
32225 \series bold
32226 >
32227 \series default
32228  o 
32229 \series bold
32230 <
32231 \series default
32232  pueden generar errores con el estilo 
32233 \series bold
32234 spanish
32235 \series default
32236  de 
32237 \series bold
32238 babel
32239 \series default
32240 .
32241  Para evitarlo se pueden sustituir por sus sinónimos 
32242 \series bold
32243 )
32244 \series default
32245  o 
32246 \series bold
32247 (
32248 \series default
32249  respectivamente.
32250  Véase 
32251 \begin_inset CommandInset citation
32252 LatexCommand cite
32253 key "spanish"
32254
32255 \end_inset
32256
32257 .
32258  (
32259 \emph on
32260 N.
32261 \begin_inset Space \thinspace{}
32262 \end_inset
32263
32264 del t.
32265 \emph default
32266 )
32267 \end_layout
32268
32269 \end_inset
32270
32271
32272 \end_layout
32273
32274 \begin_layout Itemize
32275
32276 \series bold
32277 @<<<
32278 \series default
32279  genera una flecha hacia la izquierda, 
32280 \series bold
32281 @>>>
32282 \series default
32283  una hacia la derecha, y 
32284 \series bold
32285 @=
32286 \series default
32287  un signo igual largo
32288 \end_layout
32289
32290 \begin_layout Itemize
32291
32292 \series bold
32293 @AAA
32294 \series default
32295  genera una flecha hacia arriba, 
32296 \series bold
32297 @VVV
32298 \series default
32299  una hacia abajo, y 
32300 \series bold
32301 @|
32302 \series default
32303  un signo igual vertical
32304 \end_layout
32305
32306 \begin_layout Itemize
32307
32308 \series bold
32309 @.
32310
32311 \series default
32312  genera una ubicación vacía para relaciones inexistentes
32313 \end_layout
32314
32315 \begin_layout Standard
32316 Todas las flechas pueden etiquetarse como sigue:
32317 \end_layout
32318
32319 \begin_layout Itemize
32320 Si se inserta texto entre la primera y segunda <
32321 \begin_inset Space ~
32322 \end_inset
32323
32324  o >, respectivamente, se muestra sobre la flecha.
32325  Si se inserta entre la segunda y la tercera, bajo la flecha.
32326 \end_layout
32327
32328 \begin_layout Itemize
32329 Para flechas verticales, si se inserta texto entre la primera y la segunda
32330  A o V, respectivamente, se muestra al lado izquierdo de la flecha.
32331  Si se inserta entre la segunda y la tercera, al lado derecho.
32332  Si el texto contiene A o V, estas letras deben ponerse entre llaves TeX.
32333 \end_layout
32334
32335 \begin_layout Standard
32336 Como ejemplo un diagrama con todas las relaciones posibles:
32337 \begin_inset Formula \[
32338 \begin{CD}A@)j))B@))k)C@=F\\
32339 @AmAA@.@VV{V}V@|\\
32340 D@((j\,(E@)k))F@=C\end{CD}\]
32341
32342 \end_inset
32343
32344 El comando para este diagrama es:
32345 \begin_inset Newline newline
32346 \end_inset
32347
32348
32349 \series bold
32350
32351 \backslash
32352 CD
32353 \begin_inset ERT
32354 status collapsed
32355
32356 \begin_layout Plain Layout
32357
32358
32359 \backslash
32360 spce 
32361 \end_layout
32362
32363 \end_inset
32364
32365 A@>j>>B@>>k>C@=F Ctrl-Intro
32366 \begin_inset Newline newline
32367 \end_inset
32368
32369
32370 \begin_inset ERT
32371 status collapsed
32372
32373 \begin_layout Plain Layout
32374
32375
32376 \backslash
32377 hphantom{
32378 \end_layout
32379
32380 \end_inset
32381
32382
32383 \backslash
32384 CD
32385 \begin_inset ERT
32386 status collapsed
32387
32388 \begin_layout Plain Layout
32389
32390
32391 \backslash
32392 spce 
32393 \end_layout
32394
32395 \end_inset
32396
32397
32398 \begin_inset ERT
32399 status collapsed
32400
32401 \begin_layout Plain Layout
32402
32403 }
32404 \end_layout
32405
32406 \end_inset
32407
32408 @AmAA@.@VV
32409 \backslash
32410 {V
32411 \series default
32412
32413 \begin_inset Formula $\to$
32414 \end_inset
32415
32416
32417 \series bold
32418 V@| Ctrl-Intro
32419 \begin_inset Newline newline
32420 \end_inset
32421
32422
32423 \begin_inset ERT
32424 status collapsed
32425
32426 \begin_layout Plain Layout
32427
32428
32429 \backslash
32430 hphantom{
32431 \end_layout
32432
32433 \end_inset
32434
32435
32436 \backslash
32437 CD
32438 \begin_inset ERT
32439 status collapsed
32440
32441 \begin_layout Plain Layout
32442
32443
32444 \backslash
32445 spce 
32446 \end_layout
32447
32448 \end_inset
32449
32450
32451 \begin_inset ERT
32452 status collapsed
32453
32454 \begin_layout Plain Layout
32455
32456 }
32457 \end_layout
32458
32459 \end_inset
32460
32461 D@<<j<E@>k>>F@=C
32462 \end_layout
32463
32464 \begin_layout Standard
32465 \begin_inset Newpage newpage
32466 \end_inset
32467
32468
32469 \end_layout
32470
32471 \begin_layout Section
32472 Indicaciones
32473 \begin_inset ERT
32474 status collapsed
32475
32476 \begin_layout Plain Layout
32477
32478
32479 \backslash
32480 texorpdfstring{
32481 \end_layout
32482
32483 \end_inset
32484
32485
32486 \begin_inset Foot
32487 status collapsed
32488
32489 \begin_layout Plain Layout
32490 Otras sugerencias útiles para matemáticas en 
32491 \begin_inset CommandInset citation
32492 LatexCommand cite
32493 key "Voss"
32494
32495 \end_inset
32496
32497 .
32498 \end_layout
32499
32500 \end_inset
32501
32502
32503 \begin_inset ERT
32504 status collapsed
32505
32506 \begin_layout Plain Layout
32507
32508 }{}
32509 \end_layout
32510
32511 \end_inset
32512
32513
32514 \begin_inset Note Note
32515 status collapsed
32516
32517 \begin_layout Plain Layout
32518
32519 \backslash
32520 texorpdfstring se usa para evitar que la nota al pie aparezca en los marcadores
32521  PDF.
32522 \end_layout
32523
32524 \begin_layout Plain Layout
32525 Más sobre 
32526 \backslash
32527 texorpdfstring hay en la sección 
32528 \begin_inset CommandInset ref
32529 LatexCommand ref
32530 reference "sub:Ecuaciones-en-Sección"
32531
32532 \end_inset
32533
32534 .
32535 \end_layout
32536
32537 \end_inset
32538
32539
32540 \begin_inset Index
32541 status collapsed
32542
32543 \begin_layout Plain Layout
32544 Indicaciones
32545 \end_layout
32546
32547 \end_inset
32548
32549
32550 \end_layout
32551
32552 \begin_layout Subsection
32553 Símbolos y ecuaciones químicas
32554 \begin_inset CommandInset label
32555 LatexCommand label
32556 name "sub:Símbolos-y-ecuaciones-químicas"
32557
32558 \end_inset
32559
32560
32561 \begin_inset Index
32562 status collapsed
32563
32564 \begin_layout Plain Layout
32565 Química ! símbolos
32566 \end_layout
32567
32568 \end_inset
32569
32570
32571 \begin_inset Index
32572 status collapsed
32573
32574 \begin_layout Plain Layout
32575 Ecuación química
32576 \end_layout
32577
32578 \end_inset
32579
32580
32581 \begin_inset Index
32582 status collapsed
32583
32584 \begin_layout Plain Layout
32585 Química ! caracteres
32586 \end_layout
32587
32588 \end_inset
32589
32590
32591 \begin_inset Index
32592 status collapsed
32593
32594 \begin_layout Plain Layout
32595 Iones|see
32596 \begin_inset ERT
32597 status collapsed
32598
32599 \begin_layout Plain Layout
32600
32601 {
32602 \end_layout
32603
32604 \end_inset
32605
32606 Química ! caracteres
32607 \begin_inset ERT
32608 status collapsed
32609
32610 \begin_layout Plain Layout
32611
32612 }
32613 \end_layout
32614
32615 \end_inset
32616
32617
32618 \end_layout
32619
32620 \end_inset
32621
32622
32623 \end_layout
32624
32625 \begin_layout Standard
32626 Un ejemplo de texto de química:
32627 \end_layout
32628
32629 \begin_layout Quote
32630 El ión 
32631 \begin_inset Formula $ $
32632 \end_inset
32633
32634
32635 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
32636 \end_inset
32637
32638  reacciona con dos iones 
32639 \begin_inset Formula $\mathrm{Na^{+}}$
32640 \end_inset
32641
32642  para dar sulfato de sodio 
32643 \begin_inset Formula $\mathrm{(Na_{2}SO_{4})}$
32644 \end_inset
32645
32646 .
32647  La ecuación química es:
32648 \begin_inset Formula \[
32649 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\]
32650
32651 \end_inset
32652
32653
32654 \end_layout
32655
32656 \begin_layout Standard
32657 Esta ecuación química puede componerse directamente en modo ecuación.
32658  Para evitar que los símbolos se impriman en cursiva, se selecciona todo
32659  y con el atajo 
32660 \family sans
32661 Alt-c
32662 \begin_inset Space ~
32663 \end_inset
32664
32665 r
32666 \family default
32667  se cambia en redonda.
32668 \begin_inset Foot
32669 status open
32670
32671 \begin_layout Plain Layout
32672 véase estilos de fuentes en 
32673 \begin_inset CommandInset ref
32674 LatexCommand ref
32675 reference "sub:Estilos-de-fuentes"
32676
32677 \end_inset
32678
32679 .
32680 \end_layout
32681
32682 \end_inset
32683
32684
32685 \end_layout
32686
32687 \begin_layout Subsection
32688 Números negativos
32689 \begin_inset Index
32690 status collapsed
32691
32692 \begin_layout Plain Layout
32693 Números ! negativos
32694 \end_layout
32695
32696 \end_inset
32697
32698
32699 \end_layout
32700
32701 \begin_layout Standard
32702 Los números negativos a veces se ven feos en las ecuaciones porque el signo
32703  menos delante del número tiene la misma longitud que el operador signo
32704  menos.
32705  Si se escribe el número negativo en texto normal el signo menos aparece
32706  correctamente.
32707 \end_layout
32708
32709 \begin_layout Standard
32710 Así pues, el problema desaparece si se convierte el signo menos a texto
32711  matemático.
32712 \end_layout
32713
32714 \begin_layout Standard
32715 Un ejemplo para visualizar el problema:
32716 \end_layout
32717
32718 \begin_layout Standard
32719 \noindent
32720 \align center
32721 \begin_inset Tabular
32722 <lyxtabular version="3" rows="3" columns="2">
32723 <features>
32724 <column alignment="center" valignment="top" width="0">
32725 <column alignment="center" valignment="top" width="0">
32726 <row>
32727 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32728 \begin_inset Text
32729
32730 \begin_layout Plain Layout
32731 texto normal:
32732 \end_layout
32733
32734 \end_inset
32735 </cell>
32736 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
32737 \begin_inset Text
32738
32739 \begin_layout Plain Layout
32740 x = -2
32741 \end_layout
32742
32743 \end_inset
32744 </cell>
32745 </row>
32746 <row>
32747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32748 \begin_inset Text
32749
32750 \begin_layout Plain Layout
32751 ecuación:
32752 \end_layout
32753
32754 \end_inset
32755 </cell>
32756 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
32757 \begin_inset Text
32758
32759 \begin_layout Plain Layout
32760 \begin_inset Formula $x=-2$
32761 \end_inset
32762
32763
32764 \end_layout
32765
32766 \end_inset
32767 </cell>
32768 </row>
32769 <row>
32770 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32771 \begin_inset Text
32772
32773 \begin_layout Plain Layout
32774 solución:
32775 \end_layout
32776
32777 \end_inset
32778 </cell>
32779 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
32780 \begin_inset Text
32781
32782 \begin_layout Plain Layout
32783 \begin_inset Formula $x=\mbox{-}2$
32784 \end_inset
32785
32786
32787 \end_layout
32788
32789 \end_inset
32790 </cell>
32791 </row>
32792 </lyxtabular>
32793
32794 \end_inset
32795
32796
32797 \end_layout
32798
32799 \begin_layout Subsection
32800 Coma como separador decimal
32801 \begin_inset Index
32802 status collapsed
32803
32804 \begin_layout Plain Layout
32805 Coma decimal
32806 \end_layout
32807
32808 \end_inset
32809
32810
32811 \end_layout
32812
32813 \begin_layout Standard
32814 En LaTeX, de acuerdo con la convención inglesa, se usa la coma como separador
32815  de grupos numéricos.
32816  Entonces en las fórmulas habrá un espacio añadido detrás de todas las comas.
32817 \end_layout
32818
32819 \begin_layout Standard
32820 Para evitarlo, se selecciona la coma y se cambia a texto matemático (atajo
32821  
32822 \family sans
32823 Alt-m
32824 \begin_inset Space ~
32825 \end_inset
32826
32827 m
32828 \family default
32829 ).
32830 \end_layout
32831
32832 \begin_layout Standard
32833 Para usar las comas en todas las fórmulas del documento como separador decimal,
32834  se carga el archivo 
32835 \series bold
32836 icomma.sty
32837 \series default
32838
32839 \begin_inset Foot
32840 status collapsed
32841
32842 \begin_layout Plain Layout
32843
32844 \series bold
32845 icomma
32846 \series default
32847  forma parte del paquete LaTeX 
32848 \series bold
32849 was
32850 \series default
32851
32852 \begin_inset Index
32853 status collapsed
32854
32855 \begin_layout Plain Layout
32856 Paquetes ! was
32857 \begin_inset VSpace 4mm
32858 \end_inset
32859
32860
32861 \end_layout
32862
32863 \end_inset
32864
32865 .
32866 \end_layout
32867
32868 \end_inset
32869
32870
32871 \begin_inset Index
32872 status collapsed
32873
32874 \begin_layout Plain Layout
32875 Paquetes ! icomma
32876 \end_layout
32877
32878 \end_inset
32879
32880  en el preámbulo LaTeX con la línea: 
32881 \end_layout
32882
32883 \begin_layout Standard
32884
32885 \series bold
32886
32887 \backslash
32888 usepackage{icomma}
32889 \end_layout
32890
32891 \begin_layout Subsection
32892 Vectores físicos
32893 \begin_inset CommandInset label
32894 LatexCommand label
32895 name "sub:Vectores-físicos"
32896
32897 \end_inset
32898
32899
32900 \begin_inset Index
32901 status collapsed
32902
32903 \begin_layout Plain Layout
32904 Vectores físicos
32905 \end_layout
32906
32907 \end_inset
32908
32909
32910 \end_layout
32911
32912 \begin_layout Standard
32913 El paquete LaTeX 
32914 \series bold
32915 braket
32916 \series default
32917
32918 \begin_inset Foot
32919 status collapsed
32920
32921 \begin_layout Plain Layout
32922
32923 \series bold
32924 braket
32925 \series default
32926  es parte de una instalación LaTeX estándar.
32927 \end_layout
32928
32929 \end_inset
32930
32931
32932 \begin_inset Index
32933 status collapsed
32934
32935 \begin_layout Plain Layout
32936 Paquetes ! braket
32937 \end_layout
32938
32939 \end_inset
32940
32941  suministra vectores predefinidos; se carga con la línea de preámbulo LaTeX:
32942 \end_layout
32943
32944 \begin_layout Standard
32945
32946 \series bold
32947
32948 \backslash
32949 usepackage{braket}
32950 \end_layout
32951
32952 \begin_layout Standard
32953 \begin_inset ERT
32954 status collapsed
32955
32956 \begin_layout Plain Layout
32957
32958
32959 \backslash
32960 ifbraket 
32961 \end_layout
32962
32963 \end_inset
32964
32965
32966 \begin_inset Note Note
32967 status collapsed
32968
32969 \begin_layout Plain Layout
32970 La tabla siguiente sólo se mostrará en la salida si el paquete LaTeX 
32971 \series bold
32972 braket
32973 \series default
32974  está instalado.
32975 \end_layout
32976
32977 \end_inset
32978
32979
32980 \end_layout
32981
32982 \begin_layout Standard
32983 Están definidos los siguientes comandos:
32984 \end_layout
32985
32986 \begin_layout Standard
32987 \noindent
32988 \align center
32989 \begin_inset Tabular
32990 <lyxtabular version="3" rows="4" columns="2">
32991 <features>
32992 <column alignment="center" valignment="top" width="0">
32993 <column alignment="center" valignment="top" width="0">
32994 <row>
32995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32996 \begin_inset Text
32997
32998 \begin_layout Plain Layout
32999 Comando
33000 \end_layout
33001
33002 \end_inset
33003 </cell>
33004 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33005 \begin_inset Text
33006
33007 \begin_layout Plain Layout
33008 Resultado
33009 \end_layout
33010
33011 \end_inset
33012 </cell>
33013 </row>
33014 <row>
33015 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33016 \begin_inset Text
33017
33018 \begin_layout Plain Layout
33019
33020 \backslash
33021 Bra{
33022 \backslash
33023 psi
33024 \end_layout
33025
33026 \end_inset
33027 </cell>
33028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33029 \begin_inset Text
33030
33031 \begin_layout Plain Layout
33032 \begin_inset Formula $\Bra {\psi}$
33033 \end_inset
33034
33035
33036 \end_layout
33037
33038 \end_inset
33039 </cell>
33040 </row>
33041 <row>
33042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33043 \begin_inset Text
33044
33045 \begin_layout Plain Layout
33046
33047 \backslash
33048 Ket{
33049 \backslash
33050 psi
33051 \end_layout
33052
33053 \end_inset
33054 </cell>
33055 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33056 \begin_inset Text
33057
33058 \begin_layout Plain Layout
33059 \begin_inset Formula $\Ket {\psi}$
33060 \end_inset
33061
33062
33063 \end_layout
33064
33065 \end_inset
33066 </cell>
33067 </row>
33068 <row>
33069 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33070 \begin_inset Text
33071
33072 \begin_layout Plain Layout
33073
33074 \backslash
33075 Braket{
33076 \backslash
33077 psi|
33078 \backslash
33079 phi
33080 \end_layout
33081
33082 \end_inset
33083 </cell>
33084 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33085 \begin_inset Text
33086
33087 \begin_layout Plain Layout
33088 \begin_inset Formula $\Braket {\psi|\phi}$
33089 \end_inset
33090
33091
33092 \end_layout
33093
33094 \end_inset
33095 </cell>
33096 </row>
33097 </lyxtabular>
33098
33099 \end_inset
33100
33101
33102 \end_layout
33103
33104 \begin_layout Standard
33105 El comando 
33106 \series bold
33107
33108 \backslash
33109 Braket
33110 \series default
33111  asegura que todas las barras verticales tienen el tamaño de los delimitadores
33112  circundantes:
33113 \begin_inset Formula \[
33114 \Braket {\phi|J=\frac{3}{2}\,,\, M_{J}}\]
33115
33116 \end_inset
33117
33118
33119 \begin_inset ERT
33120 status collapsed
33121
33122 \begin_layout Plain Layout
33123
33124
33125 \backslash
33126 else
33127 \end_layout
33128
33129 \end_inset
33130
33131
33132 \begin_inset Note Note
33133 status collapsed
33134
33135 \begin_layout Plain Layout
33136 Lo que sigue se verá en la salida si el paquete LaTeX 
33137 \series bold
33138 braket
33139 \series default
33140  no está instalado:
33141 \end_layout
33142
33143 \end_inset
33144
33145
33146 \end_layout
33147
33148 \begin_layout Standard
33149 Debes instalar el paquete LaTeX 
33150 \series bold
33151 braket
33152 \series default
33153  para ver en la salida el resto de esta subsección.
33154 \end_layout
33155
33156 \begin_layout Standard
33157 \begin_inset ERT
33158 status collapsed
33159
33160 \begin_layout Plain Layout
33161
33162
33163 \backslash
33164 fi
33165 \end_layout
33166
33167 \end_inset
33168
33169
33170 \end_layout
33171
33172 \begin_layout Standard
33173 El efecto de 
33174 \series bold
33175
33176 \backslash
33177 Braket
33178 \series default
33179  también se puede conseguir con el comando 
33180 \series bold
33181
33182 \backslash
33183 middle
33184 \series default
33185 , que se describe en 
33186 \begin_inset CommandInset ref
33187 LatexCommand ref
33188 reference "sub:Tamaño-automático-de"
33189
33190 \end_inset
33191
33192 .
33193 \end_layout
33194
33195 \begin_layout Subsection
33196 Fracciones definidas por el usuario
33197 \begin_inset CommandInset label
33198 LatexCommand label
33199 name "sub:Fracciones-personalizadas"
33200
33201 \end_inset
33202
33203
33204 \begin_inset Index
33205 status collapsed
33206
33207 \begin_layout Plain Layout
33208 Fracciones ! personalizadas
33209 \end_layout
33210
33211 \end_inset
33212
33213
33214 \end_layout
33215
33216 \begin_layout Standard
33217 Para definir comandos personalizados para fracciones, se usa el comando
33218  
33219 \series bold
33220
33221 \backslash
33222 genfrac
33223 \series default
33224
33225 \begin_inset Index
33226 status collapsed
33227
33228 \begin_layout Plain Layout
33229 Comandos ! G ! 
33230 \backslash
33231 genfrac
33232 \end_layout
33233
33234 \end_inset
33235
33236  con el siguiente esquema:
33237 \end_layout
33238
33239 \begin_layout Standard
33240
33241 \series bold
33242
33243 \backslash
33244 genfrac{delimitador izquierdo}{delimitador derecho}{grosor raya de
33245 \begin_inset Newline newline
33246 \end_inset
33247
33248
33249 \begin_inset ERT
33250 status collapsed
33251
33252 \begin_layout Plain Layout
33253
33254
33255 \backslash
33256 phantom{
33257 \end_layout
33258
33259 \end_inset
33260
33261
33262 \backslash
33263 genfrac{
33264 \begin_inset ERT
33265 status collapsed
33266
33267 \begin_layout Plain Layout
33268
33269 }
33270 \end_layout
33271
33272 \end_inset
33273
33274 fracción}{estilo}{numerador}{denominador}
33275 \end_layout
33276
33277 \begin_layout Standard
33278 El estilo es un número en el rango 0-3.
33279 \end_layout
33280
33281 \begin_layout Standard
33282 \align center
33283 \begin_inset Tabular
33284 <lyxtabular version="3" rows="5" columns="2">
33285 <features>
33286 <column alignment="center" valignment="top" width="0">
33287 <column alignment="center" valignment="top" width="0">
33288 <row>
33289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33290 \begin_inset Text
33291
33292 \begin_layout Plain Layout
33293 Número
33294 \end_layout
33295
33296 \end_inset
33297 </cell>
33298 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33299 \begin_inset Text
33300
33301 \begin_layout Plain Layout
33302 Estilo (tamaño)
33303 \end_layout
33304
33305 \end_inset
33306 </cell>
33307 </row>
33308 <row>
33309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33310 \begin_inset Text
33311
33312 \begin_layout Plain Layout
33313 0
33314 \end_layout
33315
33316 \end_inset
33317 </cell>
33318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33319 \begin_inset Text
33320
33321 \begin_layout Plain Layout
33322 ecuación en presentación
33323 \end_layout
33324
33325 \end_inset
33326 </cell>
33327 </row>
33328 <row>
33329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33330 \begin_inset Text
33331
33332 \begin_layout Plain Layout
33333 1
33334 \end_layout
33335
33336 \end_inset
33337 </cell>
33338 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33339 \begin_inset Text
33340
33341 \begin_layout Plain Layout
33342 ecuación en línea
33343 \end_layout
33344
33345 \end_inset
33346 </cell>
33347 </row>
33348 <row>
33349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33350 \begin_inset Text
33351
33352 \begin_layout Plain Layout
33353 2
33354 \end_layout
33355
33356 \end_inset
33357 </cell>
33358 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33359 \begin_inset Text
33360
33361 \begin_layout Plain Layout
33362 pequeño
33363 \end_layout
33364
33365 \end_inset
33366 </cell>
33367 </row>
33368 <row>
33369 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33370 \begin_inset Text
33371
33372 \begin_layout Plain Layout
33373 3
33374 \end_layout
33375
33376 \end_inset
33377 </cell>
33378 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33379 \begin_inset Text
33380
33381 \begin_layout Plain Layout
33382 muy pequeño
33383 \end_layout
33384
33385 \end_inset
33386 </cell>
33387 </row>
33388 </lyxtabular>
33389
33390 \end_inset
33391
33392
33393 \end_layout
33394
33395 \begin_layout Standard
33396 Si no se pone estilo el tamaño se ajusta al entorno, como con el comando
33397  
33398 \series bold
33399
33400 \backslash
33401 frac
33402 \series default
33403 .
33404 \end_layout
33405
33406 \begin_layout Standard
33407 Si no se pone grosor de la raya de fracción se usará el valor predefinido
33408  de 0.4
33409 \begin_inset Space \thinspace{}
33410 \end_inset
33411
33412 pt.
33413 \end_layout
33414
33415 \begin_layout Standard
33416 Por ejemplo, los comandos 
33417 \series bold
33418
33419 \backslash
33420 dfrac
33421 \series default
33422  y 
33423 \series bold
33424
33425 \backslash
33426 tbinom
33427 \series default
33428  de la 
33429 \begin_inset CommandInset ref
33430 LatexCommand ref
33431 reference "sub:Fracciones"
33432
33433 \end_inset
33434
33435  se definen con los comandos:
33436 \end_layout
33437
33438 \begin_layout Standard
33439
33440 \series bold
33441
33442 \backslash
33443 newcommand{
33444 \backslash
33445 dfrac}[2]{
33446 \backslash
33447 genfrac{}{}{}{0}{#1}{#2}}
33448 \end_layout
33449
33450 \begin_layout Standard
33451 y
33452 \end_layout
33453
33454 \begin_layout Standard
33455
33456 \series bold
33457
33458 \backslash
33459 newcommand{
33460 \backslash
33461 tbinom}[2]{
33462 \backslash
33463 genfrac{(}{)}{0pt}{1}{#1}{#2}}
33464 \end_layout
33465
33466 \begin_layout Standard
33467 \begin_inset VSpace medskip
33468 \end_inset
33469
33470
33471 \end_layout
33472
33473 \begin_layout Standard
33474 Para definir una fracción en la que el grosor de la raya se pueda definir
33475  como argumento opcional, se inserta la siguiente línea en el preámbulo
33476  LaTeX:
33477 \end_layout
33478
33479 \begin_layout Standard
33480
33481 \series bold
33482
33483 \backslash
33484 newcommand{
33485 \backslash
33486 fracS}[3][]{
33487 \backslash
33488 genfrac{}{}{#1}{}{#2}{#3}}
33489 \end_layout
33490
33491 \begin_layout Standard
33492 Un ensayo:
33493 \begin_inset Formula \begin{align*}
33494 \text{Comando} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
33495 \text{Resultado} &  & \fracS [1mm]{A}{B} &  & \fracS [5mm]{A}{B}\end{align*}
33496
33497 \end_inset
33498
33499 Como se puede ver, la distancia del numerador y el denominador a la raya
33500  de fracción se redondea a unas tres veces el grosor de la raya.
33501 \end_layout
33502
33503 \begin_layout Subsection
33504 Ecuaciones canceladas
33505 \begin_inset CommandInset label
33506 LatexCommand label
33507 name "sub:Ecuaciones-canceladas"
33508
33509 \end_inset
33510
33511
33512 \begin_inset Index
33513 status collapsed
33514
33515 \begin_layout Plain Layout
33516 Ecuación ! cancelada
33517 \end_layout
33518
33519 \end_inset
33520
33521
33522 \end_layout
33523
33524 \begin_layout Standard
33525 Para cancelar ecuaciones o partes de ellas hay que cargar el paquete LaTeX
33526  
33527 \series bold
33528 cancel
33529 \series default
33530
33531 \begin_inset Foot
33532 status collapsed
33533
33534 \begin_layout Plain Layout
33535
33536 \series bold
33537 cancel
33538 \series default
33539  forma parte de las distribuciones estándar de LaTeX.
33540 \end_layout
33541
33542 \end_inset
33543
33544
33545 \begin_inset Index
33546 status collapsed
33547
33548 \begin_layout Plain Layout
33549 Paquetes ! cancel
33550 \end_layout
33551
33552 \end_inset
33553
33554  con la línea de preámbulo LaTeX
33555 \end_layout
33556
33557 \begin_layout Standard
33558
33559 \series bold
33560
33561 \backslash
33562 usepackage[samesize]{cancel}
33563 \end_layout
33564
33565 \begin_layout Standard
33566 Hay cuatro formas de cancelar ecuaciones:
33567 \end_layout
33568
33569 \begin_layout Standard
33570 \align center
33571 \begin_inset Tabular
33572 <lyxtabular version="3" rows="5" columns="2">
33573 <features>
33574 <column alignment="center" valignment="top" width="0">
33575 <column alignment="center" valignment="top" width="0">
33576 <row>
33577 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33578 \begin_inset Text
33579
33580 \begin_layout Plain Layout
33581 Comando
33582 \end_layout
33583
33584 \end_inset
33585 </cell>
33586 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33587 \begin_inset Text
33588
33589 \begin_layout Plain Layout
33590 Resultado
33591 \begin_inset Note Note
33592 status collapsed
33593
33594 \begin_layout Plain Layout
33595
33596 \series bold
33597
33598 \backslash
33599 hspace
33600 \series default
33601  y 
33602 \series bold
33603
33604 \backslash
33605 raisebox
33606 \series default
33607  se usa sólo como espaciador
33608 \end_layout
33609
33610 \end_inset
33611
33612
33613 \end_layout
33614
33615 \end_inset
33616 </cell>
33617 </row>
33618 <row>
33619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33620 \begin_inset Text
33621
33622 \begin_layout Plain Layout
33623
33624 \backslash
33625 cancel{
33626 \backslash
33627 int
33628 \begin_inset ERT
33629 status collapsed
33630
33631 \begin_layout Plain Layout
33632
33633
33634 \backslash
33635 spce 
33636 \end_layout
33637
33638 \end_inset
33639
33640 A=B
33641 \end_layout
33642
33643 \end_inset
33644 </cell>
33645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33646 \begin_inset Text
33647
33648 \begin_layout Plain Layout
33649 \begin_inset Formula $\raisebox {4.5mm}{}\cancel {\int A=B}\raisebox {-2.5mm}{}$
33650 \end_inset
33651
33652
33653 \end_layout
33654
33655 \end_inset
33656 </cell>
33657 </row>
33658 <row>
33659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33660 \begin_inset Text
33661
33662 \begin_layout Plain Layout
33663
33664 \backslash
33665 bcancel{
33666 \backslash
33667 int
33668 \begin_inset ERT
33669 status collapsed
33670
33671 \begin_layout Plain Layout
33672
33673
33674 \backslash
33675 spce 
33676 \end_layout
33677
33678 \end_inset
33679
33680 A=B
33681 \end_layout
33682
33683 \end_inset
33684 </cell>
33685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33686 \begin_inset Text
33687
33688 \begin_layout Plain Layout
33689 \begin_inset Formula $\raisebox {4.5mm}{}\bcancel {\int A=B}\raisebox {-2.5mm}{}$
33690 \end_inset
33691
33692
33693 \end_layout
33694
33695 \end_inset
33696 </cell>
33697 </row>
33698 <row>
33699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33700 \begin_inset Text
33701
33702 \begin_layout Plain Layout
33703
33704 \backslash
33705 xcancel{
33706 \backslash
33707 int
33708 \begin_inset ERT
33709 status collapsed
33710
33711 \begin_layout Plain Layout
33712
33713
33714 \backslash
33715 spce 
33716 \end_layout
33717
33718 \end_inset
33719
33720 A=B
33721 \end_layout
33722
33723 \end_inset
33724 </cell>
33725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33726 \begin_inset Text
33727
33728 \begin_layout Plain Layout
33729 \begin_inset Formula $\raisebox {4.5mm}{}\xcancel {\int A=B}\raisebox {-2.5mm}{}$
33730 \end_inset
33731
33732
33733 \end_layout
33734
33735 \end_inset
33736 </cell>
33737 </row>
33738 <row>
33739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33740 \begin_inset Text
33741
33742 \begin_layout Plain Layout
33743
33744 \backslash
33745 cancelto{1
33746 \begin_inset Formula $\to$
33747 \end_inset
33748
33749
33750 \backslash
33751 {
33752 \backslash
33753 int
33754 \begin_inset ERT
33755 status collapsed
33756
33757 \begin_layout Plain Layout
33758
33759
33760 \backslash
33761 spce 
33762 \end_layout
33763
33764 \end_inset
33765
33766 A=B
33767 \end_layout
33768
33769 \end_inset
33770 </cell>
33771 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33772 \begin_inset Text
33773
33774 \begin_layout Plain Layout
33775 \begin_inset Formula $\raisebox {7mm}{}\cancelto {1}{\int A=B}\raisebox {-2.5mm}{}\hspace {3mm}$
33776 \end_inset
33777
33778
33779 \end_layout
33780
33781 \end_inset
33782 </cell>
33783 </row>
33784 </lyxtabular>
33785
33786 \end_inset
33787
33788
33789 \end_layout
33790
33791 \begin_layout Standard
33792
33793 \series bold
33794
33795 \backslash
33796 cancelto
33797 \series default
33798  es especialmente apropiada para visualizar la simplificación de fracciones
33799  en una ecuación:
33800 \begin_inset Formula \[
33801 \frac{\left(x_{0}+bB\right)^{2}}{\left(1+b^{2}\right)^{\cancelto {2}{3}}}=\frac{x_{0}^{2}+B^{2}-r_{g}^{2}}{\cancel {1+b^{2}}}\]
33802
33803 \end_inset
33804
33805
33806 \end_layout
33807
33808 \begin_layout Subsection
33809 Ecuaciones en encabezados de sección
33810 \begin_inset CommandInset label
33811 LatexCommand label
33812 name "sub:Ecuaciones-en-encabezados"
33813
33814 \end_inset
33815
33816
33817 \begin_inset Index
33818 status collapsed
33819
33820 \begin_layout Plain Layout
33821 Ecuación ! en encabezados de sección
33822 \end_layout
33823
33824 \end_inset
33825
33826
33827 \end_layout
33828
33829 \begin_layout Standard
33830 Si se quiere poner una ecuación en un encabezado de sección hay que tener
33831  en cuenta lo siguiente:
33832 \end_layout
33833
33834 \begin_layout Standard
33835 \begin_inset Note Greyedout
33836 status open
33837
33838 \begin_layout Plain Layout
33839
33840 \lang english
33841 When 
33842 \series bold
33843 \lang spanish
33844 hyperref
33845 \series default
33846
33847 \begin_inset Index
33848 status collapsed
33849
33850 \begin_layout Plain Layout
33851 Paquetes ! hyperref
33852 \end_layout
33853
33854 \end_inset
33855
33856
33857 \series bold
33858 \lang english
33859  
33860 \series default
33861 support is enabled in the document settings dialog under 
33862 \family sans
33863 PDF
33864 \begin_inset Space ~
33865 \end_inset
33866
33867 Properties
33868 \family default
33869 \lang spanish
33870 , los marcadores PDF se generan para cada encabezado de sección en el índice.
33871  Si el encabezado contiene ecuaciones, se muestran incorrectamente en el
33872  texto del marcador, porque se infringen las convenciones PDF.
33873 \end_layout
33874
33875 \end_inset
33876
33877
33878 \end_layout
33879
33880 \begin_layout Standard
33881 Estos problemas se pueden solucionar insertando al final del encabezado
33882  un título breve con el menú 
33883 \family sans
33884 Insertar\SpecialChar \menuseparator
33885 Título
33886 \begin_inset Space ~
33887 \end_inset
33888
33889 breve
33890 \family default
33891 .
33892  Los títulos breves se usan como alternativa para encabezados de sección
33893  con más de una línea para mantener el buen aspecto del índice.
33894  En éste sólo aparece el título breve y por tanto también en los marcadores.
33895 \end_layout
33896
33897 \begin_layout Standard
33898 Si hay que poner ecuaciones en el índice y se usa 
33899 \series bold
33900 hyperref
33901 \series default
33902 , se puede insertar el siguiente comando en modo TeX:
33903 \end_layout
33904
33905 \begin_layout Standard
33906
33907 \series bold
33908
33909 \backslash
33910 texorpdfstring{parte}{alternativa}
33911 \begin_inset Index
33912 status collapsed
33913
33914 \begin_layout Plain Layout
33915 Comandos ! T ! 
33916 \backslash
33917 texorpdfstring
33918 \end_layout
33919
33920 \end_inset
33921
33922
33923 \end_layout
33924
33925 \begin_layout Standard
33926 Parte se refiere a la parte del encabezado que no debería aparecer en el
33927  marcador PDF.
33928  Puede ser caracteres, ecuaciones, notas al pie, y también referencias cruzadas.
33929  La alternativa se usa para el marcador en vez de la parte.
33930 \end_layout
33931
33932 \begin_layout Standard
33933 Aquí hay dos ejemplo de encabezados:
33934 \end_layout
33935
33936 \begin_layout Standard
33937 \begin_inset VSpace -3mm
33938 \end_inset
33939
33940
33941 \end_layout
33942
33943 \begin_layout Standard
33944 \begin_inset ERT
33945 status collapsed
33946
33947 \begin_layout Plain Layout
33948
33949
33950 \backslash
33951 boldmath 
33952 \end_layout
33953
33954 \end_inset
33955
33956
33957 \end_layout
33958
33959 \begin_layout Subsubsection
33960 Encabezado sin ecuación en el índice 
33961 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
33962 \end_inset
33963
33964
33965 \begin_inset OptArg
33966 status collapsed
33967
33968 \begin_layout Plain Layout
33969 Encabezado sin ecuación en el índice
33970 \end_layout
33971
33972 \end_inset
33973
33974
33975 \end_layout
33976
33977 \begin_layout Subsubsection
33978 Encabezado con ecuación en el índice
33979 \begin_inset ERT
33980 status collapsed
33981
33982 \begin_layout Plain Layout
33983
33984
33985 \backslash
33986 texorpdfstring{
33987 \end_layout
33988
33989 \end_inset
33990
33991  
33992 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
33993 \end_inset
33994
33995
33996 \begin_inset ERT
33997 status collapsed
33998
33999 \begin_layout Plain Layout
34000
34001 }{}
34002 \end_layout
34003
34004 \end_inset
34005
34006
34007 \end_layout
34008
34009 \begin_layout Standard
34010 \begin_inset ERT
34011 status collapsed
34012
34013 \begin_layout Plain Layout
34014
34015
34016 \backslash
34017 unboldmath 
34018 \end_layout
34019
34020 \end_inset
34021
34022 En el primer encabezado se ha puesto un título breve, en el segundo un 
34023 \series bold
34024
34025 \backslash
34026 texorpdfstring
34027 \series default
34028 .
34029 \end_layout
34030
34031 \begin_layout Standard
34032 Para obtener el mismo formato que en los demás encabezados se han puesto
34033  ambos en un 
34034 \series bold
34035 entorno boldmath
34036 \series default
34037 .
34038 \begin_inset Foot
34039 status collapsed
34040
34041 \begin_layout Plain Layout
34042 véase 
34043 \begin_inset CommandInset ref
34044 LatexCommand ref
34045 reference "sub:Ecuaciones-en-negrita"
34046
34047 \end_inset
34048
34049
34050 \end_layout
34051
34052 \end_inset
34053
34054
34055 \end_layout
34056
34057 \begin_layout Subsection
34058 Ecuaciones en texto multicolumna
34059 \begin_inset Index
34060 status collapsed
34061
34062 \begin_layout Plain Layout
34063 Ecuación ! en texto multicolumna
34064 \end_layout
34065
34066 \end_inset
34067
34068
34069 \end_layout
34070
34071 \begin_layout Standard
34072 Las ecuaciones en texto multicolumna son con frecuencia demasiado anchas
34073  para ajustarse a la columna y entonces es preciso abarcar la anchura total
34074  de la página.
34075  Esto se hace usando el paquete LaTeX 
34076 \series bold
34077 multicol
34078 \series default
34079 ,
34080 \begin_inset Foot
34081 status collapsed
34082
34083 \begin_layout Plain Layout
34084
34085 \series bold
34086 multicol
34087 \series default
34088  forma parte de las distribuciones LaTeX estándar.
34089 \end_layout
34090
34091 \end_inset
34092
34093
34094 \begin_inset Index
34095 status collapsed
34096
34097 \begin_layout Plain Layout
34098 Paquetes ! multicol
34099 \end_layout
34100
34101 \end_inset
34102
34103  que se carga en el preámbulo LaTeX con la línea
34104 \end_layout
34105
34106 \begin_layout Standard
34107
34108 \series bold
34109
34110 \backslash
34111 usepackage{multicol}
34112 \end_layout
34113
34114 \begin_layout Standard
34115 \begin_inset Note Greyedout
34116 status collapsed
34117
34118 \begin_layout Plain Layout
34119 Ten en cuenta que la opción 
34120 \family sans
34121 Documento
34122 \begin_inset Space ~
34123 \end_inset
34124
34125 con
34126 \begin_inset Space ~
34127 \end_inset
34128
34129 dos
34130 \begin_inset Space ~
34131 \end_inset
34132
34133 caras
34134 \family default
34135 , bajo 
34136 \family sans
34137 Diseño
34138 \begin_inset Space ~
34139 \end_inset
34140
34141 de
34142 \begin_inset Space ~
34143 \end_inset
34144
34145 página 
34146 \family default
34147 en el menú 
34148 \family sans
34149 Documento\SpecialChar \menuseparator
34150 Configuración
34151 \family default
34152  
34153 \emph on
34154 debe
34155 \emph default
34156  estar desmarcada.
34157 \end_layout
34158
34159 \end_inset
34160
34161
34162 \end_layout
34163
34164 \begin_layout Standard
34165 Antes del texto multicolumna se inserta en modo TeX el comando
34166 \end_layout
34167
34168 \begin_layout Standard
34169
34170 \series bold
34171
34172 \backslash
34173 begin{multicols}{número de columnas}
34174 \end_layout
34175
34176 \begin_layout Standard
34177 El número de columnas está en el rango 2-10.
34178  Antes de la ecuación, se finaliza el texto multicolumna insertando en modo
34179  TeX el comando
34180 \end_layout
34181
34182 \begin_layout Standard
34183
34184 \series bold
34185
34186 \backslash
34187 end{multicols}
34188 \end_layout
34189
34190 \begin_layout Standard
34191 Debido al comando se añade automáticamente algún espacio delante de la ecuación.
34192  Para quitarlo se inserta un espacio vertical de -6
34193 \begin_inset Space \thinspace{}
34194 \end_inset
34195
34196 mm antes de la ecuación.
34197  Si se usa el estilo 
34198 \series bold
34199 Sangrado
34200 \series default
34201 ,
34202 \begin_inset Foot
34203 status collapsed
34204
34205 \begin_layout Plain Layout
34206 véase estilos de ecuación en 
34207 \begin_inset CommandInset ref
34208 LatexCommand ref
34209 reference "sec:Estilos-de-ecuación"
34210
34211 \end_inset
34212
34213
34214 \end_layout
34215
34216 \end_inset
34217
34218  se inserta un espacio de -9
34219 \begin_inset Space \thinspace{}
34220 \end_inset
34221
34222 mm.
34223 \end_layout
34224
34225 \begin_layout Standard
34226 Un ejemplo de texto multicolumna con una ecuación en modo presentación:
34227 \end_layout
34228
34229 \begin_layout Standard
34230 \begin_inset ERT
34231 status collapsed
34232
34233 \begin_layout Plain Layout
34234
34235
34236 \backslash
34237 begin{multicols}{2}
34238 \end_layout
34239
34240 \end_inset
34241
34242 Das Spektrum wird fouriertransformiert.
34243  the Fouriertransformation wird verwendet, um the überlagerten Signale (Netzwerk
34244 , Lösungsmittel) zu trennen.
34245  Nachdem wir the Phasenverschiebung bestimmen konnten, interessiert uns
34246  nun das Aussehen des Ausgangssignals.
34247  Im Experiment haben wir es with sehr vielen Teilchen zu tun, so that man
34248  über alle Phasen integrieren muss.
34249  Sei nun 
34250 \begin_inset Formula $S$
34251 \end_inset
34252
34253  unser normiertes Ausgangssignal and 
34254 \begin_inset Formula $P$
34255 \end_inset
34256
34257  the Phasenverteilungsfunktion, so ergibt sich the Beziehung
34258 \begin_inset ERT
34259 status collapsed
34260
34261 \begin_layout Plain Layout
34262
34263
34264 \backslash
34265 end{multicols}
34266 \end_layout
34267
34268 \end_inset
34269
34270
34271 \begin_inset VSpace -6mm
34272 \end_inset
34273
34274
34275 \begin_inset Formula \begin{equation}
34276 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi\label{eq:fouriertrafo}\end{equation}
34277
34278 \end_inset
34279
34280
34281 \begin_inset ERT
34282 status collapsed
34283
34284 \begin_layout Plain Layout
34285
34286
34287 \backslash
34288 begin{multicols}{2}
34289 \end_layout
34290
34291 \end_inset
34292
34293 wobei 
34294 \begin_inset Formula $S_{0}$
34295 \end_inset
34296
34297  das Signal ohne Gradient ist and the Normierungsbedingung 
34298 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
34299 \end_inset
34300
34301  gilt.
34302  Nun dürfen wir aber nicht the Relaxationsprozess außer Acht lassen.
34303  Direkt nach the 
34304 \begin_inset Formula $\nicefrac{\pi}{2}$
34305 \end_inset
34306
34307
34308 \begin_inset Space \thinspace{}
34309 \end_inset
34310
34311 -rf-Puls beginnt sich the Magnetisierung zu entfokussieren, wodurch sich
34312  das Signal zusätzlich abschwächt.
34313  Diese Abschwächung verläuft exponentiell in Abhängigkeit the so genannten
34314  
34315 \begin_inset Formula $T_{2}$
34316 \end_inset
34317
34318 -Zeit.
34319 \end_layout
34320
34321 \begin_layout Standard
34322 \begin_inset ERT
34323 status collapsed
34324
34325 \begin_layout Plain Layout
34326
34327
34328 \backslash
34329 end{multicols}
34330 \end_layout
34331
34332 \end_inset
34333
34334  
34335 \end_layout
34336
34337 \begin_layout Subsection
34338 Ecuaciones con descripción de variables
34339 \begin_inset Index
34340 status collapsed
34341
34342 \begin_layout Plain Layout
34343 Ecuación ! con descripción de variables
34344 \end_layout
34345
34346 \end_inset
34347
34348
34349 \end_layout
34350
34351 \begin_layout Standard
34352 Para describir variables en una ecuación, como en la fórmula 
34353 \begin_inset CommandInset ref
34354 LatexCommand eqref
34355 reference "eq:within"
34356
34357 \end_inset
34358
34359 , se inserta una matriz 2×
34360 \begin_inset Formula $n$
34361 \end_inset
34362
34363  con columnas alineadas a la izquierda para las 
34364 \emph on
34365
34366 \begin_inset Formula $n$
34367 \end_inset
34368
34369
34370 \emph default
34371  variables usadas.
34372 \begin_inset Foot
34373 status collapsed
34374
34375 \begin_layout Plain Layout
34376 véase matrices en 
34377 \begin_inset CommandInset ref
34378 LatexCommand ref
34379 reference "sec:Matrices"
34380
34381 \end_inset
34382
34383
34384 \end_layout
34385
34386 \end_inset
34387
34388  Para poner la descripción en tamaño más pequeño se inserta, p.e, el comando
34389  
34390 \series bold
34391
34392 \backslash
34393 footnotesize
34394 \series default
34395  antes de la matriz.
34396 \begin_inset Foot
34397 status collapsed
34398
34399 \begin_layout Plain Layout
34400 véase tamaños de fuentes en 
34401 \begin_inset CommandInset ref
34402 LatexCommand ref
34403 reference "sub:Tamaños-de-fuentes"
34404
34405 \end_inset
34406
34407 .
34408 \end_layout
34409
34410 \end_inset
34411
34412
34413 \end_layout
34414
34415 \begin_layout Standard
34416 Si se usa el estilo 
34417 \series bold
34418 Sangrado
34419 \series default
34420 ,
34421 \begin_inset Foot
34422 status collapsed
34423
34424 \begin_layout Plain Layout
34425 véase estilos de ecuación en 
34426 \begin_inset CommandInset ref
34427 LatexCommand ref
34428 reference "sec:Estilos-de-ecuación"
34429
34430 \end_inset
34431
34432
34433 \end_layout
34434
34435 \end_inset
34436
34437  se inserta un 
34438 \series bold
34439
34440 \backslash
34441 hfill
34442 \series default
34443
34444 \begin_inset Foot
34445 status collapsed
34446
34447 \begin_layout Plain Layout
34448
34449 \series bold
34450
34451 \backslash
34452 hfill
34453 \series default
34454  sólo funciona en ecuaciones en estilo 
34455 \series bold
34456 Sangrado
34457 \series default
34458 , véase 
34459 \begin_inset CommandInset ref
34460 LatexCommand ref
34461 reference "sub:Espacio-variable"
34462
34463 \end_inset
34464
34465
34466 \end_layout
34467
34468 \end_inset
34469
34470  delante y detrás de la matriz para que tenga la misma separación con la
34471  ecuación y con el margen.
34472 \end_layout
34473
34474 \begin_layout Standard
34475 Si se usa el estilo 
34476 \series bold
34477 Centrado
34478 \series default
34479  se emplea el método descrito en la 
34480 \begin_inset CommandInset ref
34481 LatexCommand ref
34482 reference "sub:Entorno-flalign"
34483
34484 \end_inset
34485
34486  para sangrar la ecuación.
34487  La ecuación 
34488 \begin_inset CommandInset ref
34489 LatexCommand eqref
34490 reference "eq:within"
34491
34492 \end_inset
34493
34494  consta de cinco columnas ya que las dos primeras contienen la fórmula,
34495  la tercera la matriz y la última una llave TeX vacía.
34496 \begin_inset Formula \begin{flalign}
34497 \hspace {30pt} & F_{A}=\rho\cdot V\cdot g & \footnotesize \begin{array}{ll}
34498 \rho & \mbox{densidad}\\
34499 V & \mbox{volumen}\\
34500 g & \mbox{aceleración gravitatoria}\end{array} &  & {}\label{eq:within}\end{flalign}
34501
34502 \end_inset
34503
34504
34505 \end_layout
34506
34507 \begin_layout Subsection
34508 Letras griegas minúsculas en redonda
34509 \begin_inset CommandInset label
34510 LatexCommand label
34511 name "sub:Griegas-en-redonda"
34512
34513 \end_inset
34514
34515
34516 \begin_inset Index
34517 status collapsed
34518
34519 \begin_layout Plain Layout
34520 Letras griegas ! en redonda
34521 \end_layout
34522
34523 \end_inset
34524
34525
34526 \end_layout
34527
34528 \begin_layout Standard
34529 La mayoría de las fuentes sólo suministran letras griegas minúsculas en
34530  cursiva.
34531  Pero para símbolos de partículas elementales como piones y neutrinos hacen
34532  falta letras griegas en redonda.
34533  El archivo 
34534 \series bold
34535 upgreek.sty
34536 \series default
34537
34538 \begin_inset Foot
34539 status collapsed
34540
34541 \begin_layout Plain Layout
34542
34543 \series bold
34544 upgreek
34545 \series default
34546  forma parte del paquete LaTeX 
34547 \series bold
34548 was
34549 \series default
34550
34551 \begin_inset Index
34552 status collapsed
34553
34554 \begin_layout Plain Layout
34555 Paquetes ! was
34556 \begin_inset VSpace 4mm
34557 \end_inset
34558
34559
34560 \end_layout
34561
34562 \end_inset
34563
34564 .
34565 \end_layout
34566
34567 \end_inset
34568
34569
34570 \begin_inset Index
34571 status collapsed
34572
34573 \begin_layout Plain Layout
34574 Paquetes ! upgreek
34575 \end_layout
34576
34577 \end_inset
34578
34579 , que se carga en el preámbulo LaTeX con la línea
34580 \end_layout
34581
34582 \begin_layout Standard
34583
34584 \series bold
34585
34586 \backslash
34587 usepackage{upgreek}
34588 \end_layout
34589
34590 \begin_layout Standard
34591 las suministra.
34592  
34593 \begin_inset ERT
34594 status collapsed
34595
34596 \begin_layout Plain Layout
34597
34598
34599 \backslash
34600 ifupgreek 
34601 \end_layout
34602
34603 \end_inset
34604
34605
34606 \begin_inset Note Note
34607 status collapsed
34608
34609 \begin_layout Plain Layout
34610 La tabla siguiente sólo se podrá ver si está instalado el paquete LaTeX
34611  
34612 \series bold
34613 upgreek
34614 \series default
34615 .
34616 \end_layout
34617
34618 \end_inset
34619
34620  Se imprimen con el comando de la letra correspondiente precedido de 
34621 \series bold
34622 up
34623 \series default
34624 .
34625  Por ejemplo, el comando 
34626 \series bold
34627
34628 \backslash
34629 uptau
34630 \series default
34631  genera: 
34632 \begin_inset Formula $\uptau $
34633 \end_inset
34634
34635
34636 \end_layout
34637
34638 \begin_layout Standard
34639 Con estos comandos se pueden escribir reacciones entre partículas elementales:
34640 \begin_inset Formula \[
34641 \uppi ^{+}\rightarrow\upmu ^{+}+\upnu _{\upmu }\]
34642
34643 \end_inset
34644
34645
34646 \end_layout
34647
34648 \begin_layout Standard
34649 Las letras en redonda son más remarcadas y más grandes que las correspondientes
34650  en cursiva.
34651  Por tanto no deberían emplearse para unidades como 
34652 \begin_inset Quotes fld
34653 \end_inset
34654
34655 µm
34656 \begin_inset Quotes frd
34657 \end_inset
34658
34659 .
34660 \end_layout
34661
34662 \begin_layout Standard
34663 \begin_inset ERT
34664 status collapsed
34665
34666 \begin_layout Plain Layout
34667
34668
34669 \backslash
34670 else 
34671 \end_layout
34672
34673 \end_inset
34674
34675
34676 \begin_inset Note Note
34677 status collapsed
34678
34679 \begin_layout Plain Layout
34680 Lo siguiente se mostrará si el paquete LaTeX 
34681 \series bold
34682 upgreek
34683 \series default
34684  no está instalado:
34685 \end_layout
34686
34687 \end_inset
34688
34689
34690 \end_layout
34691
34692 \begin_layout Standard
34693 Debes instalar el paquete LaTeX 
34694 \series bold
34695 upgreek
34696 \series default
34697  para ver en la salida el resto de esta subsección.
34698  
34699 \end_layout
34700
34701 \begin_layout Standard
34702 \begin_inset ERT
34703 status collapsed
34704
34705 \begin_layout Plain Layout
34706
34707
34708 \backslash
34709 fi
34710 \end_layout
34711
34712 \end_inset
34713
34714
34715 \end_layout
34716
34717 \begin_layout Subsection
34718 Caracteres de texto en ecuaciones
34719 \begin_inset CommandInset label
34720 LatexCommand label
34721 name "sub:Caracteres-de-texto"
34722
34723 \end_inset
34724
34725
34726 \begin_inset Index
34727 status collapsed
34728
34729 \begin_layout Plain Layout
34730 Texto ! en ecuaciones
34731 \end_layout
34732
34733 \end_inset
34734
34735
34736 \end_layout
34737
34738 \begin_layout Standard
34739 En algunos casos podrías querer insertar caracteres de texto directamente
34740  en ecuaciones.
34741  Por ejemplo, cuando se usa con frecuencia el punto centrado 
34742 \begin_inset Formula $\cdot$
34743 \end_inset
34744
34745  en expresiones como 
34746 \begin_inset Formula $v=5\cdot10^{5}\,\mathrm{Hz}$
34747 \end_inset
34748
34749 , habría que insertar el comando 
34750 \series bold
34751
34752 \backslash
34753 cdot
34754 \series default
34755
34756 \begin_inset Foot
34757 status collapsed
34758
34759 \begin_layout Plain Layout
34760 véase 
34761 \begin_inset CommandInset ref
34762 LatexCommand ref
34763 reference "sub:Operadores-binarios"
34764
34765 \end_inset
34766
34767
34768 \end_layout
34769
34770 \end_inset
34771
34772  continuamente, porque este carácter está definido en todas las codificaciones
34773  como carácter de texto.
34774  Pero la codificación se puede cambiar con la línea de preámbulo LaTeX:
34775 \end_layout
34776
34777 \begin_layout Standard
34778
34779 \series bold
34780
34781 \backslash
34782 Declare Inputtext{183}{
34783 \backslash
34784 ifmmode
34785 \backslash
34786 cdot
34787 \backslash
34788 else
34789 \backslash
34790 textperiodcentered
34791 \backslash
34792 f\SpecialChar \textcompwordmark{}
34793 i}
34794 \end_layout
34795
34796 \begin_layout Standard
34797 La codificación de caracteres (menú 
34798 \family sans
34799 Documento\SpecialChar \menuseparator
34800 Configuración\SpecialChar \menuseparator
34801 Idioma
34802 \family default
34803 ) especifica el carácter que se muestra al pulsar una tecla.
34804  Si se pulsa la tecla para el carácter '·', se usa internamente el comando
34805  
34806 \series bold
34807
34808 \backslash
34809 textperiodcentered
34810 \series default
34811 .
34812  Pero este comando no está disponible en ecuaciones así que obtendrías errores
34813  de LaTeX.
34814  Con la codificación cambiada se escoge automáticamente el comando correcto,
34815  dependiendo de si el carácter se ha insertado en una ecuación o no.
34816 \end_layout
34817
34818 \begin_layout Standard
34819 La codificación de diversos caracteres se guarda en archivos de definición.
34820  Por ejemplo la codificación 
34821 \series bold
34822 latin9
34823 \series default
34824  se define en el archivo 
34825 \series bold
34826 latin9.def
34827 \series default
34828  que está en el directorio de LaTeX.
34829  La codificación sólo debería cambiarse en el preámbulo LaTeX y no en el
34830  archivo de definición, de lo contrario nuestros documentos no podrían ser
34831  editados en otros ordenadores.
34832 \begin_inset VSpace medskip
34833 \end_inset
34834
34835
34836 \end_layout
34837
34838 \begin_layout Standard
34839 Además del punto centrado, en este documento se ha definido el signo grado
34840  ° con la siguiente línea de preámbulo LaTeX, para que se pueda insertar
34841  directamente en una fórmula:
34842 \end_layout
34843
34844 \begin_layout Standard
34845
34846 \series bold
34847
34848 \backslash
34849 DeclareInputtext{176}{
34850 \backslash
34851 ifmmode^
34852 \backslash
34853 circ
34854 \backslash
34855 else
34856 \backslash
34857 textdegree
34858 \backslash
34859 f\SpecialChar \textcompwordmark{}
34860 i}
34861 \begin_inset Newpage newpage
34862 \end_inset
34863
34864
34865 \end_layout
34866
34867 \begin_layout Section
34868 \start_of_appendix
34869 Notas sobre tipografía
34870 \begin_inset Index
34871 status collapsed
34872
34873 \begin_layout Plain Layout
34874 Tipografía, notas
34875 \end_layout
34876
34877 \end_inset
34878
34879
34880 \end_layout
34881
34882 \begin_layout Standard
34883 Esta sección es un resumen de las normas tipográficas ISO más importantes.
34884 \begin_inset Foot
34885 status collapsed
34886
34887 \begin_layout Plain Layout
34888 Este compendio se ha tomado parcialmente del diccionario semioficial alemán
34889  
34890 \begin_inset Quotes fld
34891 \end_inset
34892
34893 Duden
34894 \begin_inset Quotes frd
34895 \end_inset
34896
34897  
34898 \begin_inset CommandInset citation
34899 LatexCommand cite
34900 key "Duden"
34901
34902 \end_inset
34903
34904 , que incluye algunas de las normas ISO.
34905  
34906 \begin_inset Newline newline
34907 \end_inset
34908
34909 (
34910 \emph on
34911 N.
34912 \begin_inset Space \thinspace{}
34913 \end_inset
34914
34915 del t.
34916 \emph default
34917 : Para documentación en español sobre el tema, véase 
34918 \begin_inset CommandInset citation
34919 LatexCommand cite
34920 key "Bezos"
34921
34922 \end_inset
34923
34924 .)
34925 \end_layout
34926
34927 \end_inset
34928
34929
34930 \end_layout
34931
34932 \begin_layout Itemize
34933 Las unidades físicas se escriben 
34934 \emph on
34935 siempre 
34936 \emph default
34937 en redonda
34938 \begin_inset Foot
34939 status collapsed
34940
34941 \begin_layout Plain Layout
34942 véase estilos de fuentes en 
34943 \begin_inset CommandInset ref
34944 LatexCommand ref
34945 reference "sub:Estilos-de-fuentes"
34946
34947 \end_inset
34948
34949
34950 \end_layout
34951
34952 \end_inset
34953
34954 : 30
34955 \begin_inset Space \thinspace{}
34956 \end_inset
34957
34958 km/h
34959 \begin_inset Newline newline
34960 \end_inset
34961
34962 Entre el valor y la unidad hay un espacio delgado, véase 
34963 \begin_inset CommandInset ref
34964 LatexCommand ref
34965 reference "sub:Espacio-predefinido"
34966
34967 \end_inset
34968
34969 .
34970 \end_layout
34971
34972 \begin_layout Itemize
34973 Los signos por ciento y por mil se escriben como las unidades físicas:
34974 \begin_inset Newline newline
34975 \end_inset
34976
34977 1,2
34978 \begin_inset Space \thinspace{}
34979 \end_inset
34980
34981
34982 \begin_inset ERT
34983 status collapsed
34984
34985 \begin_layout Plain Layout
34986
34987
34988 \backslash
34989 textperthousand 
34990 \end_layout
34991
34992 \end_inset
34993
34994  
34995 \begin_inset Space ~
34996 \end_inset
34997
34998 de alcohol en sangre.
34999 \end_layout
35000
35001 \begin_layout Itemize
35002 El signo grado sigue directamente al valor: 15°, excepto si acompaña a otra
35003  unidad: 15
35004 \begin_inset Space \thinspace{}
35005 \end_inset
35006
35007 °C
35008 \end_layout
35009
35010 \begin_layout Itemize
35011 En números con más de cuatro dígitos se inserta un espacio delgado para
35012  separarlos en grupos de tres cifras: 18
35013 \begin_inset Space \thinspace{}
35014 \end_inset
35015
35016 473
35017 \begin_inset Space \thinspace{}
35018 \end_inset
35019
35020 588
35021 \end_layout
35022
35023 \begin_layout Itemize
35024 Para dimensiones como 120×90×40
35025 \begin_inset Space \thinspace{}
35026 \end_inset
35027
35028 cm se usa el aspa de multiplicar 
35029 \begin_inset Quotes fld
35030 \end_inset
35031
35032 ×
35033 \begin_inset Quotes frd
35034 \end_inset
35035
35036 .
35037  Se puede insertar con el comando LaTeX 
35038 \series bold
35039
35040 \backslash
35041 texttimes
35042 \series default
35043  o directamente con alguna combinación de teclas.
35044 \end_layout
35045
35046 \begin_layout Itemize
35047 Las funciones con nombres que constan de varias letras se escriben en redonda
35048  para evitar confusiones, véase 
35049 \begin_inset CommandInset ref
35050 LatexCommand ref
35051 reference "sub:Funciones-predefinidas"
35052
35053 \end_inset
35054
35055 .
35056 \end_layout
35057
35058 \begin_layout Itemize
35059 Los índices que constan de varias letras se escriben en redonda: 
35060 \begin_inset Formula $E_{\mbox{cin}}$
35061 \end_inset
35062
35063
35064 \begin_inset Newline newline
35065 \end_inset
35066
35067 Los componentes de una matriz se escriben en cursiva: 
35068 \begin_inset Formula $\hat{H}_{kl}$
35069 \end_inset
35070
35071
35072 \end_layout
35073
35074 \begin_layout Itemize
35075 El operador de diferenciación/integración 'd', el número de Euler 'e' y
35076  el número imaginario 'i' deberían escribirse en redonda para evitar confundirlo
35077 s con otras variables.
35078  
35079 \end_layout
35080
35081 \begin_layout Standard
35082 \begin_inset Newpage newpage
35083 \end_inset
35084
35085
35086 \end_layout
35087
35088 \begin_layout Section
35089 Sinónimos
35090 \begin_inset Index
35091 status collapsed
35092
35093 \begin_layout Plain Layout
35094 Sinónimos
35095 \end_layout
35096
35097 \end_inset
35098
35099
35100 \end_layout
35101
35102 \begin_layout Standard
35103 Algunos caracteres y símbolos se pueden componer con varios comandos sinónimos
35104  como los que se recogen en esta lista:
35105 \begin_inset Foot
35106 status collapsed
35107
35108 \begin_layout Plain Layout
35109 véase también 
35110 \begin_inset CommandInset ref
35111 LatexCommand ref
35112 reference "fn:sinónimos"
35113
35114 \end_inset
35115
35116 .
35117 \end_layout
35118
35119 \end_inset
35120
35121
35122 \end_layout
35123
35124 \begin_layout Standard
35125
35126 \end_layout
35127
35128 \begin_layout Standard
35129 \begin_inset VSpace bigskip
35130 \end_inset
35131
35132
35133 \begin_inset Space \hfill{}
35134 \end_inset
35135
35136
35137 \begin_inset Tabular
35138 <lyxtabular version="3" rows="12" columns="2">
35139 <features>
35140 <column alignment="center" valignment="top" width="0pt">
35141 <column alignment="center" valignment="top" width="0pt">
35142 <row>
35143 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35144 \begin_inset Text
35145
35146 \begin_layout Plain Layout
35147 Comando
35148 \end_layout
35149
35150 \end_inset
35151 </cell>
35152 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35153 \begin_inset Text
35154
35155 \begin_layout Plain Layout
35156 equivalente a
35157 \begin_inset Note Note
35158 status collapsed
35159
35160 \begin_layout Plain Layout
35161
35162 \series bold
35163
35164 \backslash
35165 raisebox
35166 \series default
35167  se usa sólo como espaciador
35168 \end_layout
35169
35170 \end_inset
35171
35172
35173 \end_layout
35174
35175 \end_inset
35176 </cell>
35177 </row>
35178 <row>
35179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35180 \begin_inset Text
35181
35182 \begin_layout Plain Layout
35183
35184 \backslash
35185 ast
35186 \end_layout
35187
35188 \end_inset
35189 </cell>
35190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35191 \begin_inset Text
35192
35193 \begin_layout Plain Layout
35194 \begin_inset ERT
35195 status collapsed
35196
35197 \begin_layout Plain Layout
35198
35199
35200 \backslash
35201 raisebox{-1.2mm}{
35202 \end_layout
35203
35204 \end_inset
35205
35206 *
35207 \begin_inset ERT
35208 status collapsed
35209
35210 \begin_layout Plain Layout
35211
35212 }
35213 \end_layout
35214
35215 \end_inset
35216
35217
35218 \end_layout
35219
35220 \end_inset
35221 </cell>
35222 </row>
35223 <row>
35224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35225 \begin_inset Text
35226
35227 \begin_layout Plain Layout
35228
35229 \backslash
35230 choose
35231 \end_layout
35232
35233 \end_inset
35234 </cell>
35235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35236 \begin_inset Text
35237
35238 \begin_layout Plain Layout
35239
35240 \backslash
35241 binom
35242 \end_layout
35243
35244 \end_inset
35245 </cell>
35246 </row>
35247 <row>
35248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35249 \begin_inset Text
35250
35251 \begin_layout Plain Layout
35252
35253 \backslash
35254 geq
35255 \end_layout
35256
35257 \end_inset
35258 </cell>
35259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35260 \begin_inset Text
35261
35262 \begin_layout Plain Layout
35263
35264 \backslash
35265 ge
35266 \end_layout
35267
35268 \end_inset
35269 </cell>
35270 </row>
35271 <row>
35272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35273 \begin_inset Text
35274
35275 \begin_layout Plain Layout
35276
35277 \backslash
35278 lbrace
35279 \end_layout
35280
35281 \end_inset
35282 </cell>
35283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35284 \begin_inset Text
35285
35286 \begin_layout Plain Layout
35287 {
35288 \end_layout
35289
35290 \end_inset
35291 </cell>
35292 </row>
35293 <row>
35294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35295 \begin_inset Text
35296
35297 \begin_layout Plain Layout
35298
35299 \backslash
35300 lbracket
35301 \end_layout
35302
35303 \end_inset
35304 </cell>
35305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35306 \begin_inset Text
35307
35308 \begin_layout Plain Layout
35309 [
35310 \end_layout
35311
35312 \end_inset
35313 </cell>
35314 </row>
35315 <row>
35316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35317 \begin_inset Text
35318
35319 \begin_layout Plain Layout
35320
35321 \backslash
35322 leftarrow
35323 \end_layout
35324
35325 \end_inset
35326 </cell>
35327 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35328 \begin_inset Text
35329
35330 \begin_layout Plain Layout
35331
35332 \backslash
35333 gets
35334 \end_layout
35335
35336 \end_inset
35337 </cell>
35338 </row>
35339 <row>
35340 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35341 \begin_inset Text
35342
35343 \begin_layout Plain Layout
35344
35345 \backslash
35346 leq
35347 \end_layout
35348
35349 \end_inset
35350 </cell>
35351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35352 \begin_inset Text
35353
35354 \begin_layout Plain Layout
35355
35356 \backslash
35357 le
35358 \end_layout
35359
35360 \end_inset
35361 </cell>
35362 </row>
35363 <row>
35364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35365 \begin_inset Text
35366
35367 \begin_layout Plain Layout
35368
35369 \backslash
35370 lor
35371 \end_layout
35372
35373 \end_inset
35374 </cell>
35375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35376 \begin_inset Text
35377
35378 \begin_layout Plain Layout
35379
35380 \backslash
35381 vee
35382 \end_layout
35383
35384 \end_inset
35385 </cell>
35386 </row>
35387 <row>
35388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35389 \begin_inset Text
35390
35391 \begin_layout Plain Layout
35392
35393 \backslash
35394 neq
35395 \end_layout
35396
35397 \end_inset
35398 </cell>
35399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35400 \begin_inset Text
35401
35402 \begin_layout Plain Layout
35403
35404 \backslash
35405 not=
35406 \end_layout
35407
35408 \end_inset
35409 </cell>
35410 </row>
35411 <row>
35412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35413 \begin_inset Text
35414
35415 \begin_layout Plain Layout
35416
35417 \backslash
35418 slash
35419 \end_layout
35420
35421 \end_inset
35422 </cell>
35423 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35424 \begin_inset Text
35425
35426 \begin_layout Plain Layout
35427 /
35428 \end_layout
35429
35430 \end_inset
35431 </cell>
35432 </row>
35433 <row>
35434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35435 \begin_inset Text
35436
35437 \begin_layout Plain Layout
35438
35439 \backslash
35440 vert
35441 \end_layout
35442
35443 \end_inset
35444 </cell>
35445 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35446 \begin_inset Text
35447
35448 \begin_layout Plain Layout
35449 |
35450 \end_layout
35451
35452 \end_inset
35453 </cell>
35454 </row>
35455 </lyxtabular>
35456
35457 \end_inset
35458
35459
35460 \begin_inset Space \hfill{}
35461 \end_inset
35462
35463
35464 \begin_inset Tabular
35465 <lyxtabular version="3" rows="12" columns="2">
35466 <features>
35467 <column alignment="center" valignment="top" width="0pt">
35468 <column alignment="center" valignment="top" width="0pt">
35469 <row>
35470 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35471 \begin_inset Text
35472
35473 \begin_layout Plain Layout
35474 Comando
35475 \end_layout
35476
35477 \end_inset
35478 </cell>
35479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35480 \begin_inset Text
35481
35482 \begin_layout Plain Layout
35483 equivalente a
35484 \end_layout
35485
35486 \end_inset
35487 </cell>
35488 </row>
35489 <row>
35490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35491 \begin_inset Text
35492
35493 \begin_layout Plain Layout
35494
35495 \backslash
35496 backslash
35497 \end_layout
35498
35499 \end_inset
35500 </cell>
35501 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35502 \begin_inset Text
35503
35504 \begin_layout Plain Layout
35505
35506 \backslash
35507
35508 \backslash
35509
35510 \end_layout
35511
35512 \end_inset
35513 </cell>
35514 </row>
35515 <row>
35516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35517 \begin_inset Text
35518
35519 \begin_layout Plain Layout
35520
35521 \backslash
35522 dasharrow
35523 \end_layout
35524
35525 \end_inset
35526 </cell>
35527 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35528 \begin_inset Text
35529
35530 \begin_layout Plain Layout
35531
35532 \backslash
35533 dashrightarrow
35534 \end_layout
35535
35536 \end_inset
35537 </cell>
35538 </row>
35539 <row>
35540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35541 \begin_inset Text
35542
35543 \begin_layout Plain Layout
35544
35545 \backslash
35546 land
35547 \end_layout
35548
35549 \end_inset
35550 </cell>
35551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35552 \begin_inset Text
35553
35554 \begin_layout Plain Layout
35555
35556 \backslash
35557 wedge
35558 \end_layout
35559
35560 \end_inset
35561 </cell>
35562 </row>
35563 <row>
35564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35565 \begin_inset Text
35566
35567 \begin_layout Plain Layout
35568
35569 \backslash
35570 rbrace
35571 \end_layout
35572
35573 \end_inset
35574 </cell>
35575 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35576 \begin_inset Text
35577
35578 \begin_layout Plain Layout
35579 }
35580 \end_layout
35581
35582 \end_inset
35583 </cell>
35584 </row>
35585 <row>
35586 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35587 \begin_inset Text
35588
35589 \begin_layout Plain Layout
35590
35591 \backslash
35592 rbracket
35593 \end_layout
35594
35595 \end_inset
35596 </cell>
35597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35598 \begin_inset Text
35599
35600 \begin_layout Plain Layout
35601 ]
35602 \end_layout
35603
35604 \end_inset
35605 </cell>
35606 </row>
35607 <row>
35608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35609 \begin_inset Text
35610
35611 \begin_layout Plain Layout
35612
35613 \backslash
35614 rightarrow
35615 \end_layout
35616
35617 \end_inset
35618 </cell>
35619 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35620 \begin_inset Text
35621
35622 \begin_layout Plain Layout
35623
35624 \backslash
35625 to
35626 \end_layout
35627
35628 \end_inset
35629 </cell>
35630 </row>
35631 <row>
35632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35633 \begin_inset Text
35634
35635 \begin_layout Plain Layout
35636
35637 \backslash
35638 lnot
35639 \end_layout
35640
35641 \end_inset
35642 </cell>
35643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35644 \begin_inset Text
35645
35646 \begin_layout Plain Layout
35647
35648 \backslash
35649 neg
35650 \end_layout
35651
35652 \end_inset
35653 </cell>
35654 </row>
35655 <row>
35656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35657 \begin_inset Text
35658
35659 \begin_layout Plain Layout
35660
35661 \backslash
35662 ne
35663 \end_layout
35664
35665 \end_inset
35666 </cell>
35667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35668 \begin_inset Text
35669
35670 \begin_layout Plain Layout
35671
35672 \backslash
35673 not=
35674 \end_layout
35675
35676 \end_inset
35677 </cell>
35678 </row>
35679 <row>
35680 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35681 \begin_inset Text
35682
35683 \begin_layout Plain Layout
35684
35685 \backslash
35686 owns
35687 \end_layout
35688
35689 \end_inset
35690 </cell>
35691 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35692 \begin_inset Text
35693
35694 \begin_layout Plain Layout
35695
35696 \backslash
35697 ni
35698 \end_layout
35699
35700 \end_inset
35701 </cell>
35702 </row>
35703 <row>
35704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35705 \begin_inset Text
35706
35707 \begin_layout Plain Layout
35708
35709 \backslash
35710 square
35711 \end_layout
35712
35713 \end_inset
35714 </cell>
35715 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35716 \begin_inset Text
35717
35718 \begin_layout Plain Layout
35719
35720 \backslash
35721 Box
35722 \end_layout
35723
35724 \end_inset
35725 </cell>
35726 </row>
35727 <row>
35728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35729 \begin_inset Text
35730
35731 \begin_layout Plain Layout
35732
35733 \backslash
35734 Vert
35735 \end_layout
35736
35737 \end_inset
35738 </cell>
35739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35740 \begin_inset Text
35741
35742 \begin_layout Plain Layout
35743
35744 \backslash
35745 |
35746 \end_layout
35747
35748 \end_inset
35749 </cell>
35750 </row>
35751 </lyxtabular>
35752
35753 \end_inset
35754
35755
35756 \begin_inset Space \hfill{}
35757 \end_inset
35758
35759
35760 \end_layout
35761
35762 \begin_layout Standard
35763 \begin_inset Newpage newpage
35764 \end_inset
35765
35766
35767 \end_layout
35768
35769 \begin_layout Bibliography
35770 \begin_inset CommandInset bibitem
35771 LatexCommand bibitem
35772 key "TLC2"
35773
35774 \end_inset
35775
35776
35777 \shape smallcaps
35778 Mittelbach, F.
35779  ; Goossens, M.
35780 \shape default
35781
35782 \shape italic
35783 The LaTeX Companion
35784 \shape default
35785 .
35786  Addison Wesley, 2004
35787 \end_layout
35788
35789 \begin_layout Bibliography
35790 \begin_inset CommandInset bibitem
35791 LatexCommand bibitem
35792 key "Mathmode"
35793
35794 \end_inset
35795
35796
35797 \lang english
35798
35799 \begin_inset CommandInset href
35800 LatexCommand href
35801 name "Description"
35802 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
35803
35804 \end_inset
35805
35806  of LaTeX's math abilities
35807 \end_layout
35808
35809 \begin_layout Bibliography
35810 \begin_inset CommandInset bibitem
35811 LatexCommand bibitem
35812 key "Voss"
35813
35814 \end_inset
35815
35816
35817 \lang english
35818 LaTeX tips and tricks-
35819 \begin_inset CommandInset href
35820 LatexCommand href
35821 name "page"
35822 target "http://tug.org/TeXnik/"
35823
35824 \end_inset
35825
35826
35827 \end_layout
35828
35829 \begin_layout Bibliography
35830 \begin_inset CommandInset bibitem
35831 LatexCommand bibitem
35832 key "AMS"
35833
35834 \end_inset
35835
35836
35837 \lang english
35838
35839 \begin_inset CommandInset href
35840 LatexCommand href
35841 name "Description"
35842 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
35843
35844 \end_inset
35845
35846  of 
35847 \begin_inset ERT
35848 status collapsed
35849
35850 \begin_layout Plain Layout
35851
35852
35853 \backslash
35854 AmS
35855 \end_layout
35856
35857 \end_inset
35858
35859 -LaTeX
35860 \end_layout
35861
35862 \begin_layout Bibliography
35863 \begin_inset CommandInset bibitem
35864 LatexCommand bibitem
35865 key "Symbole"
35866
35867 \end_inset
35868
35869
35870 \lang english
35871
35872 \begin_inset CommandInset href
35873 LatexCommand href
35874 name "List"
35875 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
35876
35877 \end_inset
35878
35879  of all symbols available with LaTeX-packages
35880 \end_layout
35881
35882 \begin_layout Bibliography
35883 \begin_inset CommandInset bibitem
35884 LatexCommand bibitem
35885 key "hyperref"
35886
35887 \end_inset
35888
35889
35890 \lang english
35891
35892 \begin_inset CommandInset href
35893 LatexCommand href
35894 name "Documentation"
35895 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
35896
35897 \end_inset
35898
35899  of the LaTeX-package
35900 \lang spanish
35901  
35902 \series bold
35903 hyperref
35904 \series default
35905
35906 \begin_inset Index
35907 status collapsed
35908
35909 \begin_layout Plain Layout
35910 Paquetes ! hyperref
35911 \end_layout
35912
35913 \end_inset
35914
35915
35916 \end_layout
35917
35918 \begin_layout Bibliography
35919 \begin_inset CommandInset bibitem
35920 LatexCommand bibitem
35921 key "Mathclap"
35922
35923 \end_inset
35924
35925
35926 \lang english
35927
35928 \begin_inset CommandInset href
35929 LatexCommand href
35930 name "Description"
35931 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
35932
35933 \end_inset
35934
35935  of the command
35936 \lang spanish
35937  
35938 \series bold
35939
35940 \backslash
35941 mathclap
35942 \series default
35943 , descrito en 
35944 \begin_inset CommandInset ref
35945 LatexCommand ref
35946 reference "sub:Límites-de-operadores"
35947
35948 \end_inset
35949
35950
35951 \begin_inset Index
35952 status collapsed
35953
35954 \begin_layout Plain Layout
35955 Comandos ! M ! 
35956 \backslash
35957 mathclap
35958 \end_layout
35959
35960 \end_inset
35961
35962
35963 \end_layout
35964
35965 \begin_layout Bibliography
35966 \begin_inset CommandInset bibitem
35967 LatexCommand bibitem
35968 key "Duden"
35969
35970 \end_inset
35971
35972
35973 \emph on
35974 Duden Band 1
35975 \emph default
35976 .
35977  22.
35978  Auflage, Duden 2001
35979 \end_layout
35980
35981 \begin_layout Bibliography
35982 \begin_inset CommandInset bibitem
35983 LatexCommand bibitem
35984 key "spanish"
35985
35986 \end_inset
35987
35988
35989 \begin_inset CommandInset href
35990 LatexCommand href
35991 name "Documentación"
35992 target "http://www.texytipografia.com/archive/spanish.pdf"
35993
35994 \end_inset
35995
35996  del estilo 
35997 \series bold
35998 spanish
35999 \family sans
36000 \series default
36001  
36002 \family default
36003 incluido en el paquete 
36004 \series bold
36005 babel
36006 \end_layout
36007
36008 \begin_layout Bibliography
36009 \begin_inset CommandInset bibitem
36010 LatexCommand bibitem
36011 key "Bezos"
36012
36013 \end_inset
36014
36015
36016 \begin_inset CommandInset href
36017 LatexCommand href
36018 name "Documento"
36019 target "http://www.texytipografia.com/archive/ortomatem.pdf"
36020
36021 \end_inset
36022
36023  sobre ortotipografía y notaciones matemáticas en español
36024 \end_layout
36025
36026 \begin_layout Standard
36027
36028 \family sans
36029 \series bold
36030 \begin_inset CommandInset index_print
36031 LatexCommand printindex
36032
36033 \end_inset
36034
36035
36036 \end_layout
36037
36038 \end_body
36039 \end_document