]> git.lyx.org Git - lyx.git/blob - lib/doc/es/Math.lyx
Math.lyx:
[lyx.git] / lib / doc / es / Math.lyx
1 #LyX 2.0.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 401
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 % if pdflatex is used
17 \usepackage{ifpdf}
18 \ifpdf
19
20 % set fonts for nicer pdf view
21 \IfFileExists{lmodern.sty}
22  {\usepackage{lmodern}}{}
23
24 \fi % end if pdflatex is used
25
26 % Folgendes Problem lösen:
27 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
28 % Kapitelüberschrift im Inhaltsverzeichnis direkt an oder über
29 % die Kapitelnummer geschrieben.
30 % Als Lösung wird mehr Platz zwischen Nummer und
31 % Überschrift eingefügt.
32 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
33 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
34
35 % To be able to enter the character ° and · directly in LyX,
36 % see sec. 22.11
37 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
38 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
39
40 % increase link area for cross-references and autoname them,
41 \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
42 \newlength{\abc}
43 \settowidth{\abc}{\space}
44 \addto\extrasspanish{
45  \renewcommand{\equationautorefname}{\hspace{-\abc}}
46  \renewcommand{\sectionautorefname}{sec.\negthinspace}
47  \renewcommand{\subsectionautorefname}{sec.\negthinspace}
48  \renewcommand{\subsubsectionautorefname}{sec.\negthinspace}}
49
50 % don't load packages twice
51 % see first footnote in sec. 9.3
52 \@ifundefined{textcolor}{\usepackage{color}}{}
53
54 % the pages of the TOC are numbered roman
55 % and a PDF-bookmark for the TOC is added
56 \pagenumbering{roman}
57 \let\myTOC\tableofcontents
58 \renewcommand{\tableofcontents}{%
59  \vspace{1cm}
60  \pdfbookmark[1]{\contentsname}{}
61  \myTOC
62  \cleardoublepage
63  \pagenumbering{arabic}}
64
65 % insert additional vertical space of 1.5 mm between footnotes,
66 \let\myFoot\footnote
67 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
68
69 % provides caption formatting
70 \setkomafont{captionlabel}{\bfseries}
71
72 % used in Kap. 22.6
73 \usepackage[samesize]{cancel}
74
75 % enables calculation of values,
76 \usepackage{calc}
77
78 % for multiple table row and column cells
79 \usepackage{multirow}
80 \usepackage{multicol}
81
82 % needed in sec. 19.4
83 \usepackage{remreset}
84
85 % for the Fourier transformation symbol
86 \usepackage{mathrsfs}
87
88 % center multirows (e.g. in sec. 13.3)
89 \renewcommand{\multirowsetup}{\centering}
90
91 % define a color, used in sec.9.3
92 \definecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
93
94 % declare operators (see sec. 10.4 and sec. 15.2)
95 \DeclareMathOperator*{\Lozenge}{\blacklozenge}
96 \DeclareMathOperator{\sgn}{sgn}
97
98 \newcommand{\spce}{\textvisiblespace}
99
100 % example definitions for sec. 20.1 
101 \newcommand{\gr}{\Longrightarrow}
102 \newcommand{\us}[1]{\underline{#1}}
103 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
104 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
105 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
106
107 % example macro from sec. 19.4
108 %\def\tagform@#1{\maketag@@@{|#1|}}
109
110 % macro from sec. 10.2
111 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
112 \def\mathclap {\mathpalette \mathclapinternal}
113 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
114
115 % redefine the greyed out note
116 \renewenvironment{lyxgreyedout}
117  {\textcolor{blue}\bgroup}{\egroup}
118
119 % ------------------------------------
120 % used to check for needed LaTeX packages
121 \usepackage{ifthen}
122
123 % check for package eurosym
124 % used for the Euro symbol
125 \newboolean{eurosym}
126 \IfFileExists{eurosym.sty}
127  {\usepackage[gennarrow]{eurosym}
128   \setboolean{eurosym}{true}}
129  {\setboolean{eurosym}{false}}
130
131 % check for package braket
132 % used for physical vectors
133 \newboolean{braket}
134 \IfFileExists{braket.sty}
135  {\usepackage{braket}
136   \setboolean{braket}{true}}
137  {\setboolean{braket}{false}}
138
139 % check for package cancel
140 \newboolean{cancel}
141 \IfFileExists{cancel.sty}
142  {\usepackage{cancel}
143   \setboolean{cancel}{true}}
144  {\setboolean{cancel}{false}}
145
146 % check for package upgreek
147 \newboolean{upgreek}
148 \IfFileExists{upgreek.sty}
149  {\usepackage{upgreek}
150   \setboolean{upgreek}{true}}
151  {\setboolean{upgreek}{false}}
152 \end_preamble
153 \options bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
154 \use_default_options false
155 \maintain_unincluded_children false
156 \language spanish
157 \inputencoding auto
158 \fontencoding global
159 \font_roman default
160 \font_sans default
161 \font_typewriter default
162 \font_default_family default
163 \use_xetex false
164 \font_sc false
165 \font_osf false
166 \font_sf_scale 100
167 \font_tt_scale 100
168
169 \graphics default
170 \default_output_format default
171 \output_sync 0
172 \bibtex_command default
173 \index_command default
174 \paperfontsize 12
175 \spacing single
176 \use_hyperref true
177 \pdf_title "Manual detallado de Matemáticas en LyX"
178 \pdf_author "LyX Team, Uwe Stöhr, Spanish translation: Ignacio Garcia"
179 \pdf_subject "LyX-documentation about math"
180 \pdf_keywords "LyX, Mathed"
181 \pdf_bookmarks true
182 \pdf_bookmarksnumbered true
183 \pdf_bookmarksopen true
184 \pdf_bookmarksopenlevel 1
185 \pdf_breaklinks false
186 \pdf_pdfborder false
187 \pdf_colorlinks true
188 \pdf_backref false
189 \pdf_pdfusetitle false
190 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,  pdfpagelayout=OneColumn, pdfnewwindow=true,  pdfstartview=XYZ, plainpages=false, pdfpagelabels"
191 \papersize a4paper
192 \use_geometry false
193 \use_amsmath 2
194 \use_esint 1
195 \use_mhchem 1
196 \use_mathdots 1
197 \cite_engine basic
198 \use_bibtopic false
199 \use_indices false
200 \paperorientation portrait
201 \suppress_date false
202 \index Índice
203 \shortcut idx
204 \color #008000
205 \end_index
206 \secnumdepth 4
207 \tocdepth 3
208 \paragraph_separation skip
209 \defskip medskip
210 \quotes_language french
211 \papercolumns 1
212 \papersides 2
213 \paperpagestyle plain
214 \bullet 1 0 6 -1
215 \bullet 2 2 35 -1
216 \bullet 3 2 7 -1
217 \tracking_changes false
218 \output_changes false
219 \html_math_output 0
220 \html_be_strict false
221 \end_header
222
223 \begin_body
224
225 \begin_layout Title
226 Manual detallado de
227 \begin_inset Newline newline
228 \end_inset
229
230 Matemáticas en LyX
231 \end_layout
232
233 \begin_layout Author
234 por el Equipo LyX
235 \begin_inset Foot
236 status collapsed
237
238 \begin_layout Plain Layout
239 Si tienes comentarios o correcciones de errores envíalos, por favor, a la
240  lista de correo de documentación de LyX
241 \family typewriter
242
243 \begin_inset CommandInset href
244 LatexCommand href
245 name "lyx-docs@lists.lyx.org"
246 target "lyx-docs@lists.lyx.org?subject=LyX's Math manual"
247
248 \end_inset
249
250
251 \end_layout
252
253 \end_inset
254
255
256 \begin_inset Note Note
257 status collapsed
258
259 \begin_layout Plain Layout
260 autor: Uwe Stöhr, traducción: Ignacio Garcia
261 \end_layout
262
263 \end_inset
264
265
266 \begin_inset Newline newline
267 \end_inset
268
269
270 \begin_inset Newline newline
271 \end_inset
272
273 Versión 2.0.x
274 \end_layout
275
276 \begin_layout Standard
277 \begin_inset CommandInset toc
278 LatexCommand tableofcontents
279
280 \end_inset
281
282
283 \end_layout
284
285 \begin_layout Standard
286 \begin_inset Note Note
287 status open
288
289 \begin_layout Plain Layout
290 Para exportar este documento a PDF, PS o DVI deberían estar instalados los
291  paquetes LaTeX 
292 \series bold
293 braket, cancel, eurosym
294 \series default
295
296 \series bold
297 mhchem
298 \series default
299 ,
300 \series bold
301  multirow
302 \series default
303  y 
304 \series bold
305 was
306 \series default
307 .
308  Si
309 \series bold
310  
311 \series default
312 no están instalados también puedes exportar el documento pero las secciones
313  en que se requieren dichos paquetes no aparecerán en la salida.
314  
315 \series bold
316 mhchem
317 \series default
318  es una excepción: si no está instalado no se puede exportar este archivo.
319 \end_layout
320
321 \begin_layout Plain Layout
322 La última versión PDF de este documento está disponible en:
323 \begin_inset Newline newline
324 \end_inset
325
326
327 \series bold
328 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
329 \end_layout
330
331 \end_inset
332
333
334 \begin_inset Newpage newpage
335 \end_inset
336
337
338 \end_layout
339
340 \begin_layout Section
341 Introducción
342 \end_layout
343
344 \begin_layout Standard
345 Este documento explica las características matemáticas de LyX y además es
346  una colección de comandos LaTeX para caracteres y estructuras matemáticas.
347  Las explicaciones están diseñadas para el uso de comandos.
348  Por consiguiente es preciso que hayas leído la sección 
349 \emph on
350 Ecuaciones matemáticas
351 \emph default
352  de la 
353 \emph on
354 Guía del usuario
355 \emph default
356 .
357 \end_layout
358
359 \begin_layout Standard
360 La mayoría de caracteres y muchas estructuras explicadas en este manual
361  también son accesibles mediante el menú 
362 \family sans
363 Insertar\SpecialChar \menuseparator
364 Ecuación
365 \family default
366  o la barra de herramientas
367 \family sans
368  Ecuaciones
369 \family default
370 .
371  Pero todo aquel que tenga que escribir muchas fórmulas observará que es
372  mucho más rápido usar comandos que la barra de herramientas.
373  Por tanto este manual está enfocado al uso de comandos, aunque también
374  se mencionan los botones correspondientes de las barras de herramientas
375  cuando están disponibles.
376 \end_layout
377
378 \begin_layout Standard
379 Si no se especifica lo contrario los comandos sólo están disponibles dentro
380  de las fórmulas.
381  Para poder usar todos los comandos explicados en este documento, debe usarse
382  la opción 
383 \family sans
384 Usar el paquete de ecuaciones AMS
385 \family default
386  en la configuración del documento (menú 
387 \family sans
388 Documento\SpecialChar \menuseparator
389 Configuración\SpecialChar \menuseparator
390 Ecuaciones
391 \family default
392 )
393 \begin_inset Foot
394 status collapsed
395
396 \begin_layout Plain Layout
397 La opción 
398 \family sans
399 Usar el paquete de ecuaciones AMS automáticamente
400 \family default
401  sólo usa ecuaciones 
402 \begin_inset ERT
403 status collapsed
404
405 \begin_layout Plain Layout
406
407
408 \backslash
409 AmS 
410 \end_layout
411
412 \end_inset
413
414
415 \begin_inset space ~
416 \end_inset
417
418  si las estructuras matemáticas son soportadas por LyX.
419 \end_layout
420
421 \end_inset
422
423 .
424 \end_layout
425
426 \begin_layout Standard
427 Este documento no recoge todos los comandos de ecuaciones 
428 \begin_inset ERT
429 status collapsed
430
431 \begin_layout Plain Layout
432
433
434 \backslash
435 AmS 
436 \end_layout
437
438 \end_inset
439
440
441 \begin_inset Foot
442 status collapsed
443
444 \begin_layout Plain Layout
445 En el archivo 
446 \family sans
447
448 \begin_inset CommandInset href
449 LatexCommand href
450 name "amsguide.ps"
451 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
452
453 \end_inset
454
455
456 \family default
457 , que forma parte de todas las distribuciones estándar de LaTeX, hay una
458  lista con todos los comandos de ecuaciones 
459 \begin_inset ERT
460 status collapsed
461
462 \begin_layout Plain Layout
463
464
465 \backslash
466 AmS 
467 \end_layout
468
469 \end_inset
470
471 .
472 \end_layout
473
474 \end_inset
475
476  por razones de claridad.
477 \end_layout
478
479 \begin_layout Section
480 Instrucciones generales
481 \end_layout
482
483 \begin_layout Standard
484 Para crear una ecuación en línea
485 \begin_inset Index idx
486 status collapsed
487
488 \begin_layout Plain Layout
489 Ecuación ! en línea
490 \end_layout
491
492 \end_inset
493
494  insertada en una línea de texto, teclea una de las combinaciones 
495 \family sans
496 Ctrl+M, Alt+C M, Alt+M M
497 \family default
498  o pulsa el botón 
499 \begin_inset Graphics
500         filename ../../images/math-mode.png
501         scale 85
502
503 \end_inset
504
505  de la barra de herramientas.
506 \begin_inset Newline newline
507 \end_inset
508
509 Para crear una ecuación en estilo presentación
510 \begin_inset Index idx
511 status collapsed
512
513 \begin_layout Plain Layout
514 Ecuación ! presentada
515 \end_layout
516
517 \end_inset
518
519 , que se verá más grande y en su propio párrafo, teclea
520 \family sans
521  
522 \family default
523 una de estas combinaciones: 
524 \family sans
525 Ctrl+Mayúsculas+M, Alt+M D.
526 \end_layout
527
528 \begin_layout Standard
529 Para cambiar una ecuación presentada a ecuación en línea, pon el cursor
530  dentro de la ecuación y teclea
531 \family sans
532  Ctrl+M, Alt+C M, Alt+M M 
533 \family default
534 o usa el menú 
535 \family sans
536 Editar\SpecialChar \menuseparator
537 Ecuación\SpecialChar \menuseparator
538 Cambiar tipo de ecuación
539 \family default
540 .
541  De igual forma se puede cambiar una ecuación en línea a estilo presentación.
542 \end_layout
543
544 \begin_layout Standard
545 Para mostrar partes de una ecuación en línea en el tamaño de una ecuación
546  presentada, escribe el comando 
547 \series bold
548
549 \backslash
550 displaystyle
551 \series default
552
553 \begin_inset Index idx
554 status collapsed
555
556 \begin_layout Plain Layout
557 Comandos ! D ! 
558 \backslash
559 displaystyle
560 \end_layout
561
562 \end_inset
563
564  en la ecuación y pulsa espacio.
565  Entonces aparece un nuevo marco azul en el que se inserta la parte deseada
566  de la ecuación.
567 \end_layout
568
569 \begin_layout Standard
570 En las tablas sólo se permiten ecuaciones en línea.
571 \end_layout
572
573 \begin_layout Standard
574 Las barras 
575 \family sans
576 Ecuaciones
577 \family default
578  y 
579 \family sans
580 Panel de ecuaciones 
581 \family default
582 se pueden visualizar mediante el menú 
583 \family sans
584 Ver\SpecialChar \menuseparator
585 Barras de herramientas
586 \family default
587 .
588  Si ahí pulsas en 
589 \begin_inset Quotes fld
590 \end_inset
591
592 Ecuaciones
593 \begin_inset Quotes frd
594 \end_inset
595
596  y/o en 
597 \begin_inset Quotes fld
598 \end_inset
599
600 Panel de ecuaciones
601 \begin_inset Quotes frd
602 \end_inset
603
604 , una y/u otra se mostrarán de forma permanente en la parte inferior; este
605  estado se visualiza en el menú de las barras de herramientas con una marca.
606  Si en este estado pulsas de nuevo sobre 
607 \begin_inset Quotes fld
608 \end_inset
609
610 Ecuaciones
611 \begin_inset Quotes frd
612 \end_inset
613
614  y/o 
615 \begin_inset Quotes fld
616 \end_inset
617
618 Panel de ecuaciones
619 \begin_inset Quotes frd
620 \end_inset
621
622  en el menú, las barras sólo se visualizarán cuando el cursor esté dentro
623  de una ecuación; este estado se indica añadiendo a las entradas del menú
624  la palabra 
625 \begin_inset Quotes fld
626 \end_inset
627
628 (auto)
629 \begin_inset Quotes frd
630 \end_inset
631
632 .
633  
634 \end_layout
635
636 \begin_layout Standard
637 El modo TeX
638 \begin_inset Index idx
639 status collapsed
640
641 \begin_layout Plain Layout
642 T@TeX ! modo
643 \end_layout
644
645 \end_inset
646
647  se invoca pulsando el botón 
648 \begin_inset Graphics
649         filename ../../images/ert-insert.png
650         scale 85
651
652 \end_inset
653
654  de la barra de herramientas o con el menú 
655 \family sans
656 Insertar\SpecialChar \menuseparator
657 Código Te
658 \begin_inset ERT
659 status collapsed
660
661 \begin_layout Plain Layout
662
663 {}
664 \end_layout
665
666 \end_inset
667
668 X
669 \family default
670 , (atajo 
671 \family sans
672 Ctrl+L
673 \family default
674 ).
675 \begin_inset Note Note
676 status collapsed
677
678 \begin_layout Plain Layout
679 En LyX hay tres 
680 \begin_inset Quotes fld
681 \end_inset
682
683 nombres propios
684 \begin_inset Quotes frd
685 \end_inset
686
687  que se ven en la salida con letras sobre o bajo la alineación normal: TeX,
688  LaTeX y LyX.
689 \end_layout
690
691 \begin_layout Plain Layout
692 Para evitar que estas palabras sean reconocidas como tales nombres propios,
693  se inserta un par de llaves TeX.
694  
695 \end_layout
696
697 \end_inset
698
699
700 \end_layout
701
702 \begin_layout Standard
703 Para cambiar el preámbulo LaTeX
704 \begin_inset Index idx
705 status collapsed
706
707 \begin_layout Plain Layout
708 LaTeX, preámbulo
709 \end_layout
710
711 \end_inset
712
713 , usa el menú 
714 \family sans
715 Documento\SpecialChar \menuseparator
716 Configuración\SpecialChar \menuseparator
717 Preámbulo LaT
718 \begin_inset ERT
719 status collapsed
720
721 \begin_layout Plain Layout
722
723 {}
724 \end_layout
725
726 \end_inset
727
728 eX
729 \family default
730 .
731 \end_layout
732
733 \begin_layout Standard
734 Para editar posteriormente matrices, diferenciaciones de casos y ecuaciones
735  multilínea, se pueden usar los menús 
736 \family sans
737 Editar\SpecialChar \menuseparator
738 Ecuación
739 \family default
740  y 
741 \family sans
742 Editar\SpecialChar \menuseparator
743 Filas y columnas
744 \family default
745  o la barra de herramientas de 
746 \family sans
747 Tabla
748 \family default
749 .
750  Cuando las líneas y columnas se intercambian mediante el menú, la columna
751  o línea en la que está se cambia con la columna de la derecha o con la
752  línea de abajo, respectivamente.
753  Si el cursor está en la última columna o fila, el cambio se hace con la
754  columna de la izquierda o la línea de arriba.
755 \end_layout
756
757 \begin_layout Standard
758 Para escribir texto en fórmulas se usa 
759 \emph on
760 texto de ecuaciones
761 \emph default
762
763 \begin_inset Index idx
764 status collapsed
765
766 \begin_layout Plain Layout
767 Texto ! en ecuaciones
768 \end_layout
769
770 \end_inset
771
772 .
773 \begin_inset Foot
774 status collapsed
775
776 \begin_layout Plain Layout
777 Para ecuaciones multilínea se usa el comando 
778 \series bold
779
780 \backslash
781 intertext
782 \series default
783 , véase
784 \begin_inset space ~
785 \end_inset
786
787
788 \begin_inset CommandInset ref
789 LatexCommand ref
790 reference "sub:Texto-en-multilínea"
791
792 \end_inset
793
794 .
795 \end_layout
796
797 \end_inset
798
799  Este modo se invoca con el atajo 
800 \family sans
801 Alt+M
802 \begin_inset space ~
803 \end_inset
804
805 M
806 \family default
807  o
808 \family sans
809  Ctrl+M
810 \family default
811  o insertando el comando 
812 \series bold
813
814 \backslash
815 text
816 \series default
817
818 \begin_inset Index idx
819 status collapsed
820
821 \begin_layout Plain Layout
822 Comandos ! T ! 
823 \backslash
824 text
825 \end_layout
826
827 \end_inset
828
829 .
830  El texto se ve en negro en LyX y por tanto puede distinguirse de otras
831  partes de la ecuación que se ven en azul.
832  En la salida, el texto en una ecuación se imprime en letra redonda, a diferenci
833 a de otras partes de la fórmula.
834 \end_layout
835
836 \begin_layout Subsection*
837 Esquema de comandos
838 \end_layout
839
840 \begin_layout Standard
841 La mayoría de los comandos LaTeX para estructuras matemáticas tienen el
842  siguiente esquema:
843 \end_layout
844
845 \begin_layout Standard
846
847 \series bold
848
849 \backslash
850 nombre_del_comando[argumento opcional]{argumento requerido}
851 \end_layout
852
853 \begin_layout Standard
854 Un comando empieza siempre por una barra inversa, 
855 \begin_inset Quotes fld
856 \end_inset
857
858
859 \series bold
860
861 \backslash
862
863 \series default
864
865 \begin_inset Quotes frd
866 \end_inset
867
868 .
869  Para omitir argumentos opcionales, quita también los corchetes asociados.
870  En este documento, las llaves que encierran los argumentos requeridos se
871  denominan llaves TeX
872 \begin_inset Index idx
873 status collapsed
874
875 \begin_layout Plain Layout
876 T@TeX ! llaves
877 \end_layout
878
879 \end_inset
880
881 .
882  Si en una ecuación añades una llave de apertura al nombre de un comando,
883  LyX crea automáticamente una llave TeX.
884  En todos los demás casos las llaves TeX se crean en las ecuaciones con
885  el comando 
886 \series bold
887
888 \backslash
889 {
890 \series default
891 .
892  Las llaves TeX se ven en rojo en LyX, a diferencia de las llaves normales,
893  que se muestran en azul.
894  En modo TeX no hace falta comando para poner llaves TeX.
895  Las llaves TeX no aparecen en la salida.
896 \end_layout
897
898 \begin_layout Standard
899 En el caso de comandos sin argumentos, como los comandos para símbolos que
900  se introducen en modo TeX, 
901 \emph on
902 siempre
903 \emph default
904  debe teclearse un espacio tras el comando para finalizarlo.
905  Este espacio no aparece en la salida.
906  Si ese espacio debiera mostrarse en la salida, el espacio debe ir seguido
907  de un espacio protegido en texto normal.
908 \end_layout
909
910 \begin_layout Standard
911 Un espacio protegido se inserta con 
912 \family sans
913 Ctrl+Espacio
914 \family default
915 .
916 \end_layout
917
918 \begin_layout Subsection*
919 Explicación de la sintaxis
920 \end_layout
921
922 \begin_layout Itemize
923 El símbolo 
924 \begin_inset ERT
925 status collapsed
926
927 \begin_layout Plain Layout
928
929
930 \backslash
931 spce 
932 \end_layout
933
934 \end_inset
935
936
937 \begin_inset Foot
938 status collapsed
939
940 \begin_layout Plain Layout
941 Este carácter, espacio visible, se puede componer con el comando 
942 \series bold
943
944 \backslash
945 textvisiblespace
946 \series default
947
948 \begin_inset Index idx
949 status collapsed
950
951 \begin_layout Plain Layout
952 Comandos ! T ! 
953 \backslash
954 textvisiblespace
955 \end_layout
956
957 \end_inset
958
959  insertado en código TeX.
960 \end_layout
961
962 \end_inset
963
964  indica que hay que teclear un espacio.
965 \end_layout
966
967 \begin_layout Itemize
968 Una flecha como 
969 \begin_inset Formula $\rightarrow$
970 \end_inset
971
972  indica el uso de la correspondiente tecla de flecha.
973  
974 \end_layout
975
976 \begin_layout Subsection*
977 Unidades disponibles
978 \end_layout
979
980 \begin_layout Standard
981 \align center
982 \begin_inset Float table
983 placement H
984 wide false
985 sideways false
986 status open
987
988 \begin_layout Plain Layout
989 \align center
990 \begin_inset Caption
991
992 \begin_layout Plain Layout
993 \begin_inset CommandInset label
994 LatexCommand label
995 name "tab:Unidades-disponibles"
996
997 \end_inset
998
999 Unidades disponibles
1000 \end_layout
1001
1002 \end_inset
1003
1004
1005 \end_layout
1006
1007 \begin_layout Plain Layout
1008 \align center
1009 \begin_inset Tabular
1010 <lyxtabular version="3" rows="13" columns="2">
1011 <features tabularvalignment="middle">
1012 <column alignment="center" valignment="top" width="0">
1013 <column alignment="center" valignment="top" width="0">
1014 <row>
1015 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1016 \begin_inset Text
1017
1018 \begin_layout Plain Layout
1019 Unidad
1020 \end_layout
1021
1022 \end_inset
1023 </cell>
1024 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1025 \begin_inset Text
1026
1027 \begin_layout Plain Layout
1028 Nombre / Descripción
1029 \end_layout
1030
1031 \end_inset
1032 </cell>
1033 </row>
1034 <row>
1035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1036 \begin_inset Text
1037
1038 \begin_layout Plain Layout
1039 mm
1040 \end_layout
1041
1042 \end_inset
1043 </cell>
1044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1045 \begin_inset Text
1046
1047 \begin_layout Plain Layout
1048 Milímetro
1049 \end_layout
1050
1051 \end_inset
1052 </cell>
1053 </row>
1054 <row>
1055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1056 \begin_inset Text
1057
1058 \begin_layout Plain Layout
1059 cm
1060 \end_layout
1061
1062 \end_inset
1063 </cell>
1064 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1065 \begin_inset Text
1066
1067 \begin_layout Plain Layout
1068 Centímetro
1069 \end_layout
1070
1071 \end_inset
1072 </cell>
1073 </row>
1074 <row>
1075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1076 \begin_inset Text
1077
1078 \begin_layout Plain Layout
1079 in
1080 \end_layout
1081
1082 \end_inset
1083 </cell>
1084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1085 \begin_inset Text
1086
1087 \begin_layout Plain Layout
1088 Pulgada (1
1089 \begin_inset space \thinspace{}
1090 \end_inset
1091
1092 in = 2,54
1093 \begin_inset space \thinspace{}
1094 \end_inset
1095
1096 cm)
1097 \end_layout
1098
1099 \end_inset
1100 </cell>
1101 </row>
1102 <row>
1103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1104 \begin_inset Text
1105
1106 \begin_layout Plain Layout
1107 pt
1108 \end_layout
1109
1110 \end_inset
1111 </cell>
1112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1113 \begin_inset Text
1114
1115 \begin_layout Plain Layout
1116 Punto (72.27
1117 \begin_inset space \thinspace{}
1118 \end_inset
1119
1120 pt = 1
1121 \begin_inset space \thinspace{}
1122 \end_inset
1123
1124 in)
1125 \end_layout
1126
1127 \end_inset
1128 </cell>
1129 </row>
1130 <row>
1131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1132 \begin_inset Text
1133
1134 \begin_layout Plain Layout
1135 pc
1136 \end_layout
1137
1138 \end_inset
1139 </cell>
1140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1141 \begin_inset Text
1142
1143 \begin_layout Plain Layout
1144 Pica (1
1145 \begin_inset space \thinspace{}
1146 \end_inset
1147
1148 pc = 12
1149 \begin_inset space \thinspace{}
1150 \end_inset
1151
1152 pt)
1153 \end_layout
1154
1155 \end_inset
1156 </cell>
1157 </row>
1158 <row>
1159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1160 \begin_inset Text
1161
1162 \begin_layout Plain Layout
1163 sp
1164 \end_layout
1165
1166 \end_inset
1167 </cell>
1168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1169 \begin_inset Text
1170
1171 \begin_layout Plain Layout
1172 Punto escalado (65536
1173 \begin_inset space \thinspace{}
1174 \end_inset
1175
1176 sp = 1
1177 \begin_inset space \thinspace{}
1178 \end_inset
1179
1180 pt)
1181 \end_layout
1182
1183 \end_inset
1184 </cell>
1185 </row>
1186 <row>
1187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1188 \begin_inset Text
1189
1190 \begin_layout Plain Layout
1191 bp
1192 \end_layout
1193
1194 \end_inset
1195 </cell>
1196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1197 \begin_inset Text
1198
1199 \begin_layout Plain Layout
1200 Punto grande (72
1201 \begin_inset space \thinspace{}
1202 \end_inset
1203
1204 bp = 1
1205 \begin_inset space \thinspace{}
1206 \end_inset
1207
1208 in)
1209 \end_layout
1210
1211 \end_inset
1212 </cell>
1213 </row>
1214 <row>
1215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1216 \begin_inset Text
1217
1218 \begin_layout Plain Layout
1219 dd
1220 \end_layout
1221
1222 \end_inset
1223 </cell>
1224 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1225 \begin_inset Text
1226
1227 \begin_layout Plain Layout
1228 Didot (1
1229 \begin_inset space \thinspace{}
1230 \end_inset
1231
1232 dd 
1233 \begin_inset Formula $\approx$
1234 \end_inset
1235
1236  0.376
1237 \begin_inset space \thinspace{}
1238 \end_inset
1239
1240 mm)
1241 \end_layout
1242
1243 \end_inset
1244 </cell>
1245 </row>
1246 <row>
1247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1248 \begin_inset Text
1249
1250 \begin_layout Plain Layout
1251 cc
1252 \end_layout
1253
1254 \end_inset
1255 </cell>
1256 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1257 \begin_inset Text
1258
1259 \begin_layout Plain Layout
1260 Cicero (1
1261 \begin_inset space \thinspace{}
1262 \end_inset
1263
1264 cc = 12
1265 \begin_inset space \thinspace{}
1266 \end_inset
1267
1268 dd)
1269 \end_layout
1270
1271 \end_inset
1272 </cell>
1273 </row>
1274 <row>
1275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1276 \begin_inset Text
1277
1278 \begin_layout Plain Layout
1279 ex
1280 \end_layout
1281
1282 \end_inset
1283 </cell>
1284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1285 \begin_inset Text
1286
1287 \begin_layout Plain Layout
1288 Altura de la letra 
1289 \begin_inset Quotes fld
1290 \end_inset
1291
1292
1293 \emph on
1294 x
1295 \emph default
1296
1297 \begin_inset Quotes frd
1298 \end_inset
1299
1300  en la fuente actual
1301 \end_layout
1302
1303 \end_inset
1304 </cell>
1305 </row>
1306 <row>
1307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1308 \begin_inset Text
1309
1310 \begin_layout Plain Layout
1311 em
1312 \end_layout
1313
1314 \end_inset
1315 </cell>
1316 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1317 \begin_inset Text
1318
1319 \begin_layout Plain Layout
1320 Anchura de la letra 
1321 \begin_inset Quotes fld
1322 \end_inset
1323
1324
1325 \emph on
1326 M
1327 \emph default
1328
1329 \begin_inset Quotes frd
1330 \end_inset
1331
1332  en la fuente actual
1333 \end_layout
1334
1335 \end_inset
1336 </cell>
1337 </row>
1338 <row>
1339 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1340 \begin_inset Text
1341
1342 \begin_layout Plain Layout
1343 mu
1344 \end_layout
1345
1346 \end_inset
1347 </cell>
1348 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1349 \begin_inset Text
1350
1351 \begin_layout Plain Layout
1352 Unidad matemática (1
1353 \begin_inset space \thinspace{}
1354 \end_inset
1355
1356 mu = 
1357 \begin_inset Formula $\nicefrac{1}{18}$
1358 \end_inset
1359
1360
1361 \begin_inset space \thinspace{}
1362 \end_inset
1363
1364 em)
1365 \end_layout
1366
1367 \end_inset
1368 </cell>
1369 </row>
1370 </lyxtabular>
1371
1372 \end_inset
1373
1374
1375 \end_layout
1376
1377 \end_inset
1378
1379
1380 \end_layout
1381
1382 \begin_layout Standard
1383 \align center
1384 \begin_inset Newpage newpage
1385 \end_inset
1386
1387
1388 \end_layout
1389
1390 \begin_layout Section
1391 Funciones básicas
1392 \end_layout
1393
1394 \begin_layout Subsection
1395 Exponentes
1396 \begin_inset Index idx
1397 status collapsed
1398
1399 \begin_layout Plain Layout
1400 Exponentes
1401 \end_layout
1402
1403 \end_inset
1404
1405  e índices
1406 \begin_inset Index idx
1407 status collapsed
1408
1409 \begin_layout Plain Layout
1410 Indices@Índices
1411 \end_layout
1412
1413 \end_inset
1414
1415
1416 \begin_inset Index idx
1417 status collapsed
1418
1419 \begin_layout Plain Layout
1420 Superíndices|see
1421 \begin_inset ERT
1422 status collapsed
1423
1424 \begin_layout Plain Layout
1425
1426 {
1427 \end_layout
1428
1429 \end_inset
1430
1431 Exponentes
1432 \begin_inset ERT
1433 status collapsed
1434
1435 \begin_layout Plain Layout
1436
1437 }
1438 \end_layout
1439
1440 \end_inset
1441
1442
1443 \end_layout
1444
1445 \end_inset
1446
1447
1448 \begin_inset Index idx
1449 status collapsed
1450
1451 \begin_layout Plain Layout
1452 Subíndices|see
1453 \begin_inset ERT
1454 status collapsed
1455
1456 \begin_layout Plain Layout
1457
1458 {
1459 \end_layout
1460
1461 \end_inset
1462
1463 Índices
1464 \begin_inset ERT
1465 status collapsed
1466
1467 \begin_layout Plain Layout
1468
1469 }
1470 \end_layout
1471
1472 \end_inset
1473
1474
1475 \end_layout
1476
1477 \end_inset
1478
1479
1480 \end_layout
1481
1482 \begin_layout Standard
1483 Los subíndices se componen con un guión bajo 
1484 \begin_inset Quotes fld
1485 \end_inset
1486
1487 _
1488 \begin_inset Quotes frd
1489 \end_inset
1490
1491  o con el botón de la barra de herramientas de ecuaciones 
1492 \begin_inset Graphics
1493         filename ../../images/math-subscript.png
1494         scale 85
1495
1496 \end_inset
1497
1498 , los superíndices con un circunflejo 
1499 \begin_inset Quotes fld
1500 \end_inset
1501
1502 ^
1503 \begin_inset Quotes frd
1504 \end_inset
1505
1506  o con el botón de la barra de herramientas de ecuaciones 
1507 \begin_inset Graphics
1508         filename ../../images/math-superscript.png
1509         scale 85
1510
1511 \end_inset
1512
1513 .
1514 \end_layout
1515
1516 \begin_layout Standard
1517 \noindent
1518 \align center
1519 \begin_inset Tabular
1520 <lyxtabular version="3" rows="4" columns="2">
1521 <features tabularvalignment="middle">
1522 <column alignment="center" valignment="top" width="0">
1523 <column alignment="center" valignment="top" width="0">
1524 <row>
1525 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1526 \begin_inset Text
1527
1528 \begin_layout Plain Layout
1529 Comando
1530 \end_layout
1531
1532 \end_inset
1533 </cell>
1534 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1535 \begin_inset Text
1536
1537 \begin_layout Plain Layout
1538 Resultado
1539 \begin_inset Note Note
1540 status collapsed
1541
1542 \begin_layout Plain Layout
1543
1544 \series bold
1545
1546 \backslash
1547 raisebox
1548 \series default
1549  sólo se usa como espaciador.
1550 \end_layout
1551
1552 \end_inset
1553
1554
1555 \end_layout
1556
1557 \end_inset
1558 </cell>
1559 </row>
1560 <row>
1561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1562 \begin_inset Text
1563
1564 \begin_layout Plain Layout
1565 B_V
1566 \end_layout
1567
1568 \end_inset
1569 </cell>
1570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1571 \begin_inset Text
1572
1573 \begin_layout Plain Layout
1574 \begin_inset Formula $B_{V}$
1575 \end_inset
1576
1577
1578 \end_layout
1579
1580 \end_inset
1581 </cell>
1582 </row>
1583 <row>
1584 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1585 \begin_inset Text
1586
1587 \begin_layout Plain Layout
1588 B^V
1589 \end_layout
1590
1591 \end_inset
1592 </cell>
1593 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1594 \begin_inset Text
1595
1596 \begin_layout Plain Layout
1597 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1598 \end_inset
1599
1600
1601 \end_layout
1602
1603 \end_inset
1604 </cell>
1605 </row>
1606 <row>
1607 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1608 \begin_inset Text
1609
1610 \begin_layout Plain Layout
1611 B^
1612 \begin_inset ERT
1613 status collapsed
1614
1615 \begin_layout Plain Layout
1616
1617
1618 \backslash
1619 spce 
1620 \end_layout
1621
1622 \end_inset
1623
1624 A
1625 \end_layout
1626
1627 \end_inset
1628 </cell>
1629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1630 \begin_inset Text
1631
1632 \begin_layout Plain Layout
1633 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1634 \end_inset
1635
1636
1637 \end_layout
1638
1639 \end_inset
1640 </cell>
1641 </row>
1642 </lyxtabular>
1643
1644 \end_inset
1645
1646
1647 \end_layout
1648
1649 \begin_layout Standard
1650 Como en algunos idiomas la tecla circunflejo funciona como acento, en ese
1651  caso acentuará las vocales y no servirá para entrar en modo exponente.
1652 \begin_inset Foot
1653 status collapsed
1654
1655 \begin_layout Plain Layout
1656 Dependiendo de la configuración del teclado esto puede suceder también con
1657  otros caracteres además de las vocales.
1658 \end_layout
1659
1660 \end_inset
1661
1662  Para conseguir exponentes en estos casos debes pulsar 
1663 \family sans
1664 Espacio
1665 \family default
1666  tras el circunflejo, como en el último ejemplo, o dos circunflejos seguidos.
1667  
1668 \end_layout
1669
1670 \begin_layout Subsection
1671 Fracciones
1672 \begin_inset CommandInset label
1673 LatexCommand label
1674 name "sub:Fracciones"
1675
1676 \end_inset
1677
1678
1679 \begin_inset Index idx
1680 status collapsed
1681
1682 \begin_layout Plain Layout
1683 Fracciones
1684 \end_layout
1685
1686 \end_inset
1687
1688
1689 \end_layout
1690
1691 \begin_layout Standard
1692 Las fracciones se generan con el comando 
1693 \series bold
1694
1695 \backslash
1696 frac
1697 \series default
1698
1699 \begin_inset Index idx
1700 status collapsed
1701
1702 \begin_layout Plain Layout
1703 Comandos ! F ! 
1704 \backslash
1705 frac
1706 \end_layout
1707
1708 \end_inset
1709
1710  o con el botón 
1711 \begin_inset Graphics
1712         filename ../../images/math/frac.png
1713         scale 50
1714
1715 \end_inset
1716
1717  de la barra de herramientas.
1718  El tamaño de fuente se ajusta automáticamente, dependiendo de si la fracción
1719  está en línea o en estilo presentación.
1720  Con el botón 
1721 \begin_inset Graphics
1722         filename ../../images/math/frac-square.png
1723         scale 85
1724
1725 \end_inset
1726
1727 de la barra de herramientas matemáticas puedes seleccionar distintos tipos
1728  de fracciones.
1729 \end_layout
1730
1731 \begin_layout Standard
1732 Con el comando 
1733 \series bold
1734
1735 \backslash
1736 dfrac
1737 \series default
1738
1739 \begin_inset Index idx
1740 status collapsed
1741
1742 \begin_layout Plain Layout
1743 Comandos ! D ! 
1744 \backslash
1745 dfrac
1746 \end_layout
1747
1748 \end_inset
1749
1750  se puede crear en cualquier caso una fracción que tenga el tamaño del estilo
1751  presentación.
1752  Con 
1753 \series bold
1754
1755 \backslash
1756 tfrac
1757 \series default
1758
1759 \begin_inset Index idx
1760 status collapsed
1761
1762 \begin_layout Plain Layout
1763 Comandos ! T ! 
1764 \backslash
1765 tfrac
1766 \end_layout
1767
1768 \end_inset
1769
1770  la fracción tiene siempre el tamaño del estilo en línea.
1771  Un ejemplo:
1772 \end_layout
1773
1774 \begin_layout Standard
1775 Una línea con la fracción 
1776 \begin_inset Formula $\frac{1}{2}$
1777 \end_inset
1778
1779  creada con el comando 
1780 \series bold
1781
1782 \backslash
1783 frac
1784 \series default
1785 .
1786  
1787 \end_layout
1788
1789 \begin_layout Standard
1790 Una línea con la fracción 
1791 \begin_inset Formula $\dfrac{1}{2}$
1792 \end_inset
1793
1794  creada con el comando 
1795 \series bold
1796
1797 \backslash
1798 dfrac
1799 \series default
1800 .
1801 \end_layout
1802
1803 \begin_layout Standard
1804 \noindent
1805 \align center
1806 \begin_inset Tabular
1807 <lyxtabular version="3" rows="4" columns="2">
1808 <features tabularvalignment="middle">
1809 <column alignment="center" valignment="top" width="0">
1810 <column alignment="center" valignment="top" width="0">
1811 <row>
1812 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1813 \begin_inset Text
1814
1815 \begin_layout Plain Layout
1816 Comando
1817 \end_layout
1818
1819 \end_inset
1820 </cell>
1821 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1822 \begin_inset Text
1823
1824 \begin_layout Plain Layout
1825 Resultado
1826 \begin_inset Note Note
1827 status collapsed
1828
1829 \begin_layout Plain Layout
1830
1831 \series bold
1832
1833 \backslash
1834 raisebox
1835 \series default
1836  se usa sólo como espaciador
1837 \end_layout
1838
1839 \end_inset
1840
1841
1842 \end_layout
1843
1844 \end_inset
1845 </cell>
1846 </row>
1847 <row>
1848 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1849 \begin_inset Text
1850
1851 \begin_layout Plain Layout
1852
1853 \backslash
1854 frac
1855 \begin_inset ERT
1856 status collapsed
1857
1858 \begin_layout Plain Layout
1859
1860
1861 \backslash
1862 spce 
1863 \end_layout
1864
1865 \end_inset
1866
1867 A
1868 \begin_inset Formula $\downarrow$
1869 \end_inset
1870
1871 B
1872 \end_layout
1873
1874 \end_inset
1875 </cell>
1876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1877 \begin_inset Text
1878
1879 \begin_layout Plain Layout
1880 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1881 \end_inset
1882
1883
1884 \end_layout
1885
1886 \end_inset
1887 </cell>
1888 </row>
1889 <row>
1890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1891 \begin_inset Text
1892
1893 \begin_layout Plain Layout
1894
1895 \backslash
1896 dfrac
1897 \begin_inset ERT
1898 status collapsed
1899
1900 \begin_layout Plain Layout
1901
1902
1903 \backslash
1904 spce 
1905 \end_layout
1906
1907 \end_inset
1908
1909 A
1910 \begin_inset Formula $\downarrow$
1911 \end_inset
1912
1913 B
1914 \end_layout
1915
1916 \end_inset
1917 </cell>
1918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1919 \begin_inset Text
1920
1921 \begin_layout Plain Layout
1922 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1923 \end_inset
1924
1925
1926 \end_layout
1927
1928 \end_inset
1929 </cell>
1930 </row>
1931 <row>
1932 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1933 \begin_inset Text
1934
1935 \begin_layout Plain Layout
1936
1937 \backslash
1938 dfrac
1939 \begin_inset ERT
1940 status collapsed
1941
1942 \begin_layout Plain Layout
1943
1944
1945 \backslash
1946 spce 
1947 \end_layout
1948
1949 \end_inset
1950
1951 e^
1952 \begin_inset ERT
1953 status collapsed
1954
1955 \begin_layout Plain Layout
1956
1957
1958 \backslash
1959 spce 
1960 \end_layout
1961
1962 \end_inset
1963
1964
1965 \backslash
1966 frac
1967 \begin_inset ERT
1968 status collapsed
1969
1970 \begin_layout Plain Layout
1971
1972
1973 \backslash
1974 spce 
1975 \end_layout
1976
1977 \end_inset
1978
1979 1
1980 \begin_inset Formula $\downarrow$
1981 \end_inset
1982
1983 2
1984 \begin_inset Formula $\downarrow$
1985 \end_inset
1986
1987 3
1988 \end_layout
1989
1990 \end_inset
1991 </cell>
1992 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1993 \begin_inset Text
1994
1995 \begin_layout Plain Layout
1996 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
1997 \end_inset
1998
1999
2000 \end_layout
2001
2002 \end_inset
2003 </cell>
2004 </row>
2005 </lyxtabular>
2006
2007 \end_inset
2008
2009
2010 \begin_inset VSpace bigskip
2011 \end_inset
2012
2013
2014 \end_layout
2015
2016 \begin_layout Standard
2017 Para fracciones anidadas se puede usar el comando 
2018 \series bold
2019
2020 \backslash
2021 cfrac
2022 \series default
2023
2024 \begin_inset Index idx
2025 status collapsed
2026
2027 \begin_layout Plain Layout
2028 Comandos ! C ! 
2029 \backslash
2030 cfrac
2031 \end_layout
2032
2033 \end_inset
2034
2035 .
2036  Un ejemplo:
2037 \begin_inset VSpace -3mm
2038 \end_inset
2039
2040
2041 \end_layout
2042
2043 \begin_layout Standard
2044 \begin_inset Formula \begin{align*}
2045 \textrm{creada con \textbf{\textbackslash frac} } &  & \textrm{creada con }\mathbf{\textbackslash\textbf{cfrac}}\\
2046 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
2047 \end{align*}
2048
2049 \end_inset
2050
2051
2052 \end_layout
2053
2054 \begin_layout Standard
2055 El comando para el ejemplo de arriba es:
2056 \end_layout
2057
2058 \begin_layout Standard
2059
2060 \series bold
2061
2062 \backslash
2063 cfrac
2064 \begin_inset ERT
2065 status collapsed
2066
2067 \begin_layout Plain Layout
2068
2069
2070 \backslash
2071 spce 
2072 \end_layout
2073
2074 \end_inset
2075
2076 A
2077 \begin_inset Formula $\downarrow$
2078 \end_inset
2079
2080 B+
2081 \backslash
2082 cfrac
2083 \begin_inset ERT
2084 status collapsed
2085
2086 \begin_layout Plain Layout
2087
2088
2089 \backslash
2090 spce 
2091 \end_layout
2092
2093 \end_inset
2094
2095 C+
2096 \backslash
2097 cfrac
2098 \begin_inset ERT
2099 status collapsed
2100
2101 \begin_layout Plain Layout
2102
2103
2104 \backslash
2105 spce 
2106 \end_layout
2107
2108 \end_inset
2109
2110 E
2111 \begin_inset Formula $\downarrow$
2112 \end_inset
2113
2114 F
2115 \begin_inset Formula $\downarrow$
2116 \end_inset
2117
2118 D
2119 \end_layout
2120
2121 \begin_layout Standard
2122 \begin_inset VSpace medskip
2123 \end_inset
2124
2125
2126 \end_layout
2127
2128 \begin_layout Standard
2129
2130 \series bold
2131
2132 \backslash
2133 cfrac
2134 \series default
2135  compone la fracción siempre en el tamaño del estilo presentación, también
2136  cuando es parte de otra fracción.
2137 \end_layout
2138
2139 \begin_layout Standard
2140 Es posible especificar la alineación del numerador.
2141  El comando 
2142 \series bold
2143
2144 \backslash
2145 cfracleft
2146 \series default
2147  se usa para alinearlo a la izquierda, el comando 
2148 \series bold
2149
2150 \backslash
2151 cfracright
2152 \series default
2153  para alinearlo a la derecha, 
2154 \series bold
2155
2156 \backslash
2157 cfrac
2158 \series default
2159  centra el numerador.
2160 \end_layout
2161
2162 \begin_layout Standard
2163 Estas fracciones muestran las distintas alineaciones:
2164 \end_layout
2165
2166 \begin_layout Standard
2167 \begin_inset Formula $\cfrac[l]{A}{B+C}$
2168 \end_inset
2169
2170  ; 
2171 \begin_inset Formula $\cfrac{A}{B+C}$
2172 \end_inset
2173
2174  ; 
2175 \begin_inset Formula $\cfrac[r]{A}{B+C}$
2176 \end_inset
2177
2178
2179 \end_layout
2180
2181 \begin_layout Standard
2182 \noindent
2183 \begin_inset Note Greyedout
2184 status open
2185
2186 \begin_layout Plain Layout
2187
2188 \series bold
2189 Nota
2190 \series default
2191
2192 \series bold
2193
2194 \backslash
2195 cfracleft
2196 \series default
2197  y
2198 \series bold
2199  
2200 \backslash
2201 cfracright
2202 \series default
2203  no son comandos LaTeX reales sino sustituciones del comando 
2204 \series bold
2205
2206 \backslash
2207 cfrac[posición del numerador]{numerador}{denominador}
2208 \series default
2209  .
2210  Por tanto no puedes usarlos código TeX.
2211 \end_layout
2212
2213 \end_inset
2214
2215
2216 \begin_inset VSpace medskip
2217 \end_inset
2218
2219
2220 \end_layout
2221
2222 \begin_layout Standard
2223 Muchas veces es adecuado combinar 
2224 \series bold
2225
2226 \backslash
2227 cfrac
2228 \series default
2229  y 
2230 \series bold
2231
2232 \backslash
2233 frac
2234 \series default
2235 :
2236 \begin_inset Formula \[
2237 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}\]
2238
2239 \end_inset
2240
2241
2242 \end_layout
2243
2244 \begin_layout Standard
2245 Para componer fracciones en línea con raya de fracción inclinada puedes
2246  usar el comando 
2247 \series bold
2248
2249 \backslash
2250 nicefrac
2251 \series default
2252
2253 \begin_inset Index idx
2254 status collapsed
2255
2256 \begin_layout Plain Layout
2257 Comandos ! N ! 
2258 \backslash
2259 nicefrac
2260 \end_layout
2261
2262 \end_inset
2263
2264
2265 \begin_inset Formula $\nicefrac{5}{31}$
2266 \end_inset
2267
2268  Hay además el comando 
2269 \series bold
2270
2271 \backslash
2272 unitfracthree
2273 \series default
2274  que permite escribir una fracción en combinación con un número: 
2275 \begin_inset Formula $\unitfrac[2]{1}{3}$
2276 \end_inset
2277
2278
2279 \end_layout
2280
2281 \begin_layout Standard
2282 \begin_inset Note Greyedout
2283 status open
2284
2285 \begin_layout Plain Layout
2286
2287 \series bold
2288 Nota
2289 \series default
2290
2291 \series bold
2292
2293 \backslash
2294 unitfracthree
2295 \series default
2296  no es un comando LaTeX auténtico, sino un equivalente al comando
2297 \begin_inset Newline newline
2298 \end_inset
2299
2300
2301 \series bold
2302
2303 \backslash
2304 unitfrac[número]{numerador}{denominador}
2305 \series default
2306  .
2307  Por tanto no puedes usarlo en código TeX.
2308 \end_layout
2309
2310 \end_inset
2311
2312
2313 \end_layout
2314
2315 \begin_layout Standard
2316 En la 
2317 \begin_inset CommandInset ref
2318 LatexCommand ref
2319 reference "sub:Fracciones-personalizadas"
2320
2321 \end_inset
2322
2323  se explica cómo componer fracciones personalizadas en las que la raya de
2324  fracción se puede cambiar.
2325  
2326 \end_layout
2327
2328 \begin_layout Subsection
2329 Raíces
2330 \begin_inset Index idx
2331 status collapsed
2332
2333 \begin_layout Plain Layout
2334 Raíces
2335 \end_layout
2336
2337 \end_inset
2338
2339
2340 \end_layout
2341
2342 \begin_layout Standard
2343 Las raíces cuadradas se componen con 
2344 \series bold
2345
2346 \backslash
2347 sqrt
2348 \series default
2349
2350 \begin_inset Index idx
2351 status collapsed
2352
2353 \begin_layout Plain Layout
2354 Comandos ! S ! 
2355 \backslash
2356 sqrt
2357 \end_layout
2358
2359 \end_inset
2360
2361  o con el botón 
2362 \begin_inset Graphics
2363         filename ../../images/math/sqrt.png
2364         scale 85
2365
2366 \end_inset
2367
2368  de la barra de  ecuaciones; todas las demás raíces con el comando 
2369 \series bold
2370
2371 \backslash
2372 root
2373 \series default
2374
2375 \begin_inset Index idx
2376 status collapsed
2377
2378 \begin_layout Plain Layout
2379 Comandos ! R ! 
2380 \backslash
2381 root
2382 \end_layout
2383
2384 \end_inset
2385
2386  o con el botón 
2387 \begin_inset Graphics
2388         filename ../../images/math/root.png
2389         scale 85
2390
2391 \end_inset
2392
2393 .
2394 \end_layout
2395
2396 \begin_layout Standard
2397 \noindent
2398 \align center
2399 \begin_inset Tabular
2400 <lyxtabular version="3" rows="3" columns="2">
2401 <features tabularvalignment="middle">
2402 <column alignment="center" valignment="top" width="0">
2403 <column alignment="center" valignment="top" width="0">
2404 <row>
2405 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2406 \begin_inset Text
2407
2408 \begin_layout Plain Layout
2409 Comando
2410 \end_layout
2411
2412 \end_inset
2413 </cell>
2414 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2415 \begin_inset Text
2416
2417 \begin_layout Plain Layout
2418 Resultado
2419 \begin_inset Note Note
2420 status collapsed
2421
2422 \begin_layout Plain Layout
2423
2424 \series bold
2425
2426 \backslash
2427 raisebox
2428 \series default
2429  se usa sólo como espaciador
2430 \end_layout
2431
2432 \end_inset
2433
2434
2435 \end_layout
2436
2437 \end_inset
2438 </cell>
2439 </row>
2440 <row>
2441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2442 \begin_inset Text
2443
2444 \begin_layout Plain Layout
2445
2446 \backslash
2447 sqrt
2448 \begin_inset ERT
2449 status collapsed
2450
2451 \begin_layout Plain Layout
2452
2453
2454 \backslash
2455 spce 
2456 \end_layout
2457
2458 \end_inset
2459
2460 A-B
2461 \end_layout
2462
2463 \end_inset
2464 </cell>
2465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2466 \begin_inset Text
2467
2468 \begin_layout Plain Layout
2469 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2470 \end_inset
2471
2472
2473 \end_layout
2474
2475 \end_inset
2476 </cell>
2477 </row>
2478 <row>
2479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2480 \begin_inset Text
2481
2482 \begin_layout Plain Layout
2483
2484 \backslash
2485 root
2486 \begin_inset ERT
2487 status collapsed
2488
2489 \begin_layout Plain Layout
2490
2491
2492 \backslash
2493 spce 
2494 \end_layout
2495
2496 \end_inset
2497
2498 3
2499 \begin_inset Formula $\downarrow$
2500 \end_inset
2501
2502 A-B
2503 \end_layout
2504
2505 \end_inset
2506 </cell>
2507 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2508 \begin_inset Text
2509
2510 \begin_layout Plain Layout
2511 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2512 \end_inset
2513
2514
2515 \end_layout
2516
2517 \end_inset
2518 </cell>
2519 </row>
2520 </lyxtabular>
2521
2522 \end_inset
2523
2524
2525 \end_layout
2526
2527 \begin_layout Standard
2528 Una raíz cuadrada se compone también con 
2529 \series bold
2530
2531 \backslash
2532 root
2533 \series default
2534  dejando vacío el campo del índice.
2535 \end_layout
2536
2537 \begin_layout Standard
2538 Con ciertos índices la distancia a la raíz es demasiado pequeña, como en
2539  la raíz: 
2540 \begin_inset Formula $\sqrt[\beta]{B}$
2541 \end_inset
2542
2543
2544 \begin_inset Newline newline
2545 \end_inset
2546
2547 La 
2548 \begin_inset Formula $\beta$
2549 \end_inset
2550
2551  toca la raíz.
2552  Para evitar esto se usan los comandos 
2553 \series bold
2554
2555 \backslash
2556 leftroot
2557 \series default
2558
2559 \begin_inset Index idx
2560 status collapsed
2561
2562 \begin_layout Plain Layout
2563 Comandos ! L ! 
2564 \backslash
2565 leftroot
2566 \end_layout
2567
2568 \end_inset
2569
2570  y 
2571 \series bold
2572
2573 \backslash
2574 uproot
2575 \series default
2576
2577 \begin_inset Index idx
2578 status collapsed
2579
2580 \begin_layout Plain Layout
2581 Comandos ! U ! 
2582 \backslash
2583 uproot
2584 \end_layout
2585
2586 \end_inset
2587
2588  con el esquema siguiente:
2589 \end_layout
2590
2591 \begin_layout Standard
2592
2593 \series bold
2594
2595 \backslash
2596 leftroot{distancia}
2597 \series default
2598  y 
2599 \series bold
2600
2601 \backslash
2602 uproot{distancia}
2603 \end_layout
2604
2605 \begin_layout Standard
2606 Distancia es el número de Puntos Grandes (
2607 \begin_inset Quotes fld
2608 \end_inset
2609
2610 Big Points
2611 \begin_inset Quotes frd
2612 \end_inset
2613
2614 , unidad bp; 
2615 \begin_inset Formula $\mathrm{72\, bp=1\, pulgada}$
2616 \end_inset
2617
2618 ) que debería moverse el índice a la izquierda o arriba, respectivamente.
2619  Los comandos se escriben en el índice.
2620  Así, el comando:
2621 \begin_inset Newline newline
2622 \end_inset
2623
2624
2625 \series bold
2626
2627 \backslash
2628 root
2629 \backslash
2630 leftroot{-1
2631 \begin_inset Formula $\to$
2632 \end_inset
2633
2634
2635 \backslash
2636 uproot{2
2637 \begin_inset Formula $\to$
2638 \end_inset
2639
2640
2641 \backslash
2642 beta
2643 \begin_inset ERT
2644 status collapsed
2645
2646 \begin_layout Plain Layout
2647
2648
2649 \backslash
2650 spce 
2651 \end_layout
2652
2653 \end_inset
2654
2655
2656 \begin_inset Formula $\to$
2657 \end_inset
2658
2659 B
2660 \begin_inset Newline newline
2661 \end_inset
2662
2663
2664 \series default
2665 genera una fórmula correctamente tipografiada: 
2666 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2667 \end_inset
2668
2669
2670 \end_layout
2671
2672 \begin_layout Subsection
2673 Coeficientes de un binomio
2674 \begin_inset Index idx
2675 status collapsed
2676
2677 \begin_layout Plain Layout
2678 Binomios
2679 \end_layout
2680
2681 \end_inset
2682
2683
2684 \end_layout
2685
2686 \begin_layout Standard
2687 Los coeficientes de un binomio se insertan con el comando 
2688 \series bold
2689
2690 \backslash
2691 binom
2692 \series default
2693
2694 \begin_inset Index idx
2695 status collapsed
2696
2697 \begin_layout Plain Layout
2698 Comandos ! B ! 
2699 \backslash
2700 binom
2701 \end_layout
2702
2703 \end_inset
2704
2705  o con el submenú del botón 
2706 \begin_inset Graphics
2707         filename ../../images/math/frac-square.png
2708         scale 85
2709
2710 \end_inset
2711
2712 de la barra de herramientas de ecuaciones.
2713  Como en las fracciones, además de 
2714 \series bold
2715
2716 \backslash
2717 binom
2718 \series default
2719  hay los comandos 
2720 \series bold
2721
2722 \backslash
2723 dbinom
2724 \series default
2725
2726 \begin_inset Index idx
2727 status collapsed
2728
2729 \begin_layout Plain Layout
2730 Comandos ! D ! 
2731 \backslash
2732 dbinom
2733 \end_layout
2734
2735 \end_inset
2736
2737  y 
2738 \series bold
2739
2740 \backslash
2741 tbinom
2742 \series default
2743
2744 \begin_inset Index idx
2745 status collapsed
2746
2747 \begin_layout Plain Layout
2748 Comandos ! T ! 
2749 \backslash
2750 tbinom
2751 \end_layout
2752
2753 \end_inset
2754
2755 .
2756  Para otros delimitadores de coeficientes de un binomio hay los comandos
2757  
2758 \series bold
2759
2760 \backslash
2761 brace
2762 \series default
2763
2764 \begin_inset Index idx
2765 status collapsed
2766
2767 \begin_layout Plain Layout
2768 Comandos ! B ! 
2769 \backslash
2770 brace
2771 \end_layout
2772
2773 \end_inset
2774
2775  y 
2776 \series bold
2777
2778 \backslash
2779 brack
2780 \series default
2781
2782 \begin_inset Index idx
2783 status collapsed
2784
2785 \begin_layout Plain Layout
2786 Comandos ! B ! 
2787 \backslash
2788 brack
2789 \end_layout
2790
2791 \end_inset
2792
2793 .
2794 \end_layout
2795
2796 \begin_layout Standard
2797 \noindent
2798 \align center
2799 \begin_inset Tabular
2800 <lyxtabular version="3" rows="6" columns="2">
2801 <features tabularvalignment="middle">
2802 <column alignment="center" valignment="top" width="0">
2803 <column alignment="center" valignment="top" width="0">
2804 <row>
2805 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2806 \begin_inset Text
2807
2808 \begin_layout Plain Layout
2809 Comando
2810 \end_layout
2811
2812 \end_inset
2813 </cell>
2814 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2815 \begin_inset Text
2816
2817 \begin_layout Plain Layout
2818 Resultado
2819 \begin_inset Note Note
2820 status collapsed
2821
2822 \begin_layout Plain Layout
2823
2824 \series bold
2825
2826 \backslash
2827 raisebox
2828 \series default
2829  se usa sólo como espaciador
2830 \end_layout
2831
2832 \end_inset
2833
2834
2835 \end_layout
2836
2837 \end_inset
2838 </cell>
2839 </row>
2840 <row>
2841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2842 \begin_inset Text
2843
2844 \begin_layout Plain Layout
2845
2846 \backslash
2847 binom
2848 \begin_inset ERT
2849 status collapsed
2850
2851 \begin_layout Plain Layout
2852
2853
2854 \backslash
2855 spce 
2856 \end_layout
2857
2858 \end_inset
2859
2860 A
2861 \begin_inset Formula $\downarrow$
2862 \end_inset
2863
2864 B
2865 \end_layout
2866
2867 \end_inset
2868 </cell>
2869 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2870 \begin_inset Text
2871
2872 \begin_layout Plain Layout
2873 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2874 \end_inset
2875
2876
2877 \end_layout
2878
2879 \end_inset
2880 </cell>
2881 </row>
2882 <row>
2883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2884 \begin_inset Text
2885
2886 \begin_layout Plain Layout
2887
2888 \backslash
2889 dbinom
2890 \begin_inset ERT
2891 status collapsed
2892
2893 \begin_layout Plain Layout
2894
2895
2896 \backslash
2897 spce 
2898 \end_layout
2899
2900 \end_inset
2901
2902 A
2903 \begin_inset Formula $\downarrow$
2904 \end_inset
2905
2906 B
2907 \end_layout
2908
2909 \end_inset
2910 </cell>
2911 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2912 \begin_inset Text
2913
2914 \begin_layout Plain Layout
2915 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2916 \end_inset
2917
2918
2919 \end_layout
2920
2921 \end_inset
2922 </cell>
2923 </row>
2924 <row>
2925 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2926 \begin_inset Text
2927
2928 \begin_layout Plain Layout
2929
2930 \backslash
2931 tbinom
2932 \begin_inset ERT
2933 status collapsed
2934
2935 \begin_layout Plain Layout
2936
2937
2938 \backslash
2939 spce 
2940 \end_layout
2941
2942 \end_inset
2943
2944 A
2945 \begin_inset Formula $\downarrow$
2946 \end_inset
2947
2948 B
2949 \end_layout
2950
2951 \end_inset
2952 </cell>
2953 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2954 \begin_inset Text
2955
2956 \begin_layout Plain Layout
2957 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2958 \end_inset
2959
2960
2961 \end_layout
2962
2963 \end_inset
2964 </cell>
2965 </row>
2966 <row>
2967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2968 \begin_inset Text
2969
2970 \begin_layout Plain Layout
2971
2972 \backslash
2973 brack
2974 \begin_inset ERT
2975 status collapsed
2976
2977 \begin_layout Plain Layout
2978
2979
2980 \backslash
2981 spce 
2982 \end_layout
2983
2984 \end_inset
2985
2986 A
2987 \begin_inset Formula $\downarrow$
2988 \end_inset
2989
2990 B
2991 \end_layout
2992
2993 \end_inset
2994 </cell>
2995 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2996 \begin_inset Text
2997
2998 \begin_layout Plain Layout
2999 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
3000 \end_inset
3001
3002
3003 \end_layout
3004
3005 \end_inset
3006 </cell>
3007 </row>
3008 <row>
3009 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3010 \begin_inset Text
3011
3012 \begin_layout Plain Layout
3013
3014 \backslash
3015 brace
3016 \begin_inset ERT
3017 status collapsed
3018
3019 \begin_layout Plain Layout
3020
3021
3022 \backslash
3023 spce 
3024 \end_layout
3025
3026 \end_inset
3027
3028 A
3029 \begin_inset Formula $\downarrow$
3030 \end_inset
3031
3032 B
3033 \end_layout
3034
3035 \end_inset
3036 </cell>
3037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3038 \begin_inset Text
3039
3040 \begin_layout Plain Layout
3041 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3042 \end_inset
3043
3044
3045 \end_layout
3046
3047 \end_inset
3048 </cell>
3049 </row>
3050 </lyxtabular>
3051
3052 \end_inset
3053
3054
3055 \begin_inset Newpage newpage
3056 \end_inset
3057
3058
3059 \end_layout
3060
3061 \begin_layout Subsection
3062 Diferenciaciones de casos
3063 \begin_inset Index idx
3064 status collapsed
3065
3066 \begin_layout Plain Layout
3067 Casos
3068 \end_layout
3069
3070 \end_inset
3071
3072
3073 \end_layout
3074
3075 \begin_layout Standard
3076 \noindent
3077 \align center
3078 \begin_inset Tabular
3079 <lyxtabular version="3" rows="3" columns="2">
3080 <features tabularvalignment="middle">
3081 <column alignment="center" valignment="top" width="0">
3082 <column alignment="center" valignment="top" width="0">
3083 <row>
3084 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3085 \begin_inset Text
3086
3087 \begin_layout Plain Layout
3088 Comando
3089 \end_layout
3090
3091 \end_inset
3092 </cell>
3093 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3094 \begin_inset Text
3095
3096 \begin_layout Plain Layout
3097 Resultado
3098 \end_layout
3099
3100 \end_inset
3101 </cell>
3102 </row>
3103 <row>
3104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3105 \begin_inset Text
3106
3107 \begin_layout Plain Layout
3108
3109 \backslash
3110 cases
3111 \begin_inset ERT
3112 status collapsed
3113
3114 \begin_layout Plain Layout
3115
3116
3117 \backslash
3118 spce 
3119 \end_layout
3120
3121 \end_inset
3122
3123 A
3124 \begin_inset Formula $\to$
3125 \end_inset
3126
3127 B>0
3128 \begin_inset Index idx
3129 status collapsed
3130
3131 \begin_layout Plain Layout
3132 Comandos ! C ! 
3133 \backslash
3134 cases
3135 \end_layout
3136
3137 \end_inset
3138
3139
3140 \end_layout
3141
3142 \end_inset
3143 </cell>
3144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3145 \begin_inset Text
3146
3147 \begin_layout Plain Layout
3148 \begin_inset Formula $\begin{cases}
3149 A & B>0\end{cases}$
3150 \end_inset
3151
3152
3153 \end_layout
3154
3155 \end_inset
3156 </cell>
3157 </row>
3158 <row>
3159 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3160 \begin_inset Text
3161
3162 \begin_layout Plain Layout
3163
3164 \backslash
3165 cases
3166 \begin_inset ERT
3167 status collapsed
3168
3169 \begin_layout Plain Layout
3170
3171
3172 \backslash
3173 spce 
3174 \end_layout
3175
3176 \end_inset
3177
3178
3179 \family sans
3180 Ctrl+Retorno
3181 \end_layout
3182
3183 \end_inset
3184 </cell>
3185 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3186 \begin_inset Text
3187
3188 \begin_layout Plain Layout
3189 \begin_inset Formula $\begin{cases}
3190 A & \textrm{para }x>0\\
3191 B & \textrm{para }x=0
3192 \end{cases}$
3193 \end_inset
3194
3195
3196 \end_layout
3197
3198 \end_inset
3199 </cell>
3200 </row>
3201 </lyxtabular>
3202
3203 \end_inset
3204
3205
3206 \end_layout
3207
3208 \begin_layout Standard
3209 Después de insertar 
3210 \series bold
3211
3212 \backslash
3213 cases
3214 \series default
3215  o usar el botón 
3216 \begin_inset Graphics
3217         filename ../../images/math/cases.png
3218         scale 85
3219
3220 \end_inset
3221
3222  de la barra de ecuaciones puedes añadir líneas nuevas con el atajo 
3223 \family sans
3224 Ctrl+Retorno
3225 \family default
3226  o con el botón
3227 \family sans
3228  
3229 \family default
3230
3231 \begin_inset Graphics
3232         filename ../../images/tabular-feature_append-row.png
3233         scale 85
3234
3235 \end_inset
3236
3237  de la barra de tablas.
3238 \end_layout
3239
3240 \begin_layout Standard
3241 El comando 
3242 \series bold
3243
3244 \backslash
3245 cases
3246 \series default
3247  también está disponible en el menú 
3248 \family sans
3249 Insertar\SpecialChar \menuseparator
3250 Ecuación\SpecialChar \menuseparator
3251 Entorno casos
3252 \family default
3253 .
3254 \end_layout
3255
3256 \begin_layout Subsection
3257 Negaciones
3258 \begin_inset Index idx
3259 status collapsed
3260
3261 \begin_layout Plain Layout
3262 Negaciones
3263 \end_layout
3264
3265 \end_inset
3266
3267
3268 \end_layout
3269
3270 \begin_layout Standard
3271 Con el comando 
3272 \series bold
3273
3274 \backslash
3275 not
3276 \series default
3277
3278 \begin_inset Index idx
3279 status collapsed
3280
3281 \begin_layout Plain Layout
3282 Comandos ! N ! 
3283 \backslash
3284 not
3285 \end_layout
3286
3287 \end_inset
3288
3289  todo carácter se puede mostrar cancelado.
3290  Los caracteres son casi tachados con una barra inclinada.
3291 \end_layout
3292
3293 \begin_layout Standard
3294 \noindent
3295 \align center
3296 \begin_inset Tabular
3297 <lyxtabular version="3" rows="4" columns="2">
3298 <features tabularvalignment="middle">
3299 <column alignment="center" valignment="top" width="0">
3300 <column alignment="center" valignment="top" width="0">
3301 <row>
3302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3303 \begin_inset Text
3304
3305 \begin_layout Plain Layout
3306 Comando
3307 \end_layout
3308
3309 \end_inset
3310 </cell>
3311 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3312 \begin_inset Text
3313
3314 \begin_layout Plain Layout
3315 Resultado
3316 \end_layout
3317
3318 \end_inset
3319 </cell>
3320 </row>
3321 <row>
3322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3323 \begin_inset Text
3324
3325 \begin_layout Plain Layout
3326
3327 \backslash
3328 not=
3329 \end_layout
3330
3331 \end_inset
3332 </cell>
3333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3334 \begin_inset Text
3335
3336 \begin_layout Plain Layout
3337 \begin_inset Formula $\not=$
3338 \end_inset
3339
3340
3341 \end_layout
3342
3343 \end_inset
3344 </cell>
3345 </row>
3346 <row>
3347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3348 \begin_inset Text
3349
3350 \begin_layout Plain Layout
3351
3352 \backslash
3353 not 
3354 \backslash
3355 le
3356 \end_layout
3357
3358 \end_inset
3359 </cell>
3360 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3361 \begin_inset Text
3362
3363 \begin_layout Plain Layout
3364 \begin_inset Formula $\not\le$
3365 \end_inset
3366
3367
3368 \end_layout
3369
3370 \end_inset
3371 </cell>
3372 </row>
3373 <row>
3374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3375 \begin_inset Text
3376
3377 \begin_layout Plain Layout
3378
3379 \backslash
3380 not 
3381 \backslash
3382 parallel
3383 \end_layout
3384
3385 \end_inset
3386 </cell>
3387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3388 \begin_inset Text
3389
3390 \begin_layout Plain Layout
3391 \begin_inset Formula $\not\parallel$
3392 \end_inset
3393
3394
3395 \end_layout
3396
3397 \end_inset
3398 </cell>
3399 </row>
3400 </lyxtabular>
3401
3402 \end_inset
3403
3404
3405 \end_layout
3406
3407 \begin_layout Standard
3408 El último ejemplo muestra que no todas las negaciones tienen buen aspecto.
3409  Por tanto para algunas negaciones hay comandos especiales (véase 
3410 \begin_inset CommandInset ref
3411 LatexCommand ref
3412 reference "sub:Símbolos-matemáticos"
3413
3414 \end_inset
3415
3416  y 
3417 \begin_inset CommandInset ref
3418 LatexCommand ref
3419 reference "sec:Relaciones"
3420
3421 \end_inset
3422
3423 ).
3424 \end_layout
3425
3426 \begin_layout Subsection
3427 Espacios reservados 
3428 \begin_inset CommandInset label
3429 LatexCommand label
3430 name "sub:Espacios-reservados"
3431
3432 \end_inset
3433
3434
3435 \begin_inset Index idx
3436 status collapsed
3437
3438 \begin_layout Plain Layout
3439 Espacios reservados
3440 \end_layout
3441
3442 \end_inset
3443
3444
3445 \begin_inset Index idx
3446 status collapsed
3447
3448 \begin_layout Plain Layout
3449 Química ! isótopos
3450 \end_layout
3451
3452 \end_inset
3453
3454
3455 \begin_inset Index idx
3456 status collapsed
3457
3458 \begin_layout Plain Layout
3459 Isótopos|see
3460 \begin_inset ERT
3461 status collapsed
3462
3463 \begin_layout Plain Layout
3464
3465 {
3466 \end_layout
3467
3468 \end_inset
3469
3470 Química
3471 \begin_inset ERT
3472 status collapsed
3473
3474 \begin_layout Plain Layout
3475
3476 }
3477 \end_layout
3478
3479 \end_inset
3480
3481
3482 \end_layout
3483
3484 \end_inset
3485
3486
3487 \end_layout
3488
3489 \begin_layout Standard
3490 En la presentación de, p.
3491 \begin_inset space \thinspace{}
3492 \end_inset
3493
3494 e., isótopos,
3495 \begin_inset Foot
3496 status collapsed
3497
3498 \begin_layout Plain Layout
3499 Más sobre símbolos químicos en 
3500 \begin_inset CommandInset ref
3501 LatexCommand ref
3502 reference "sub:Símbolos-y-ecuaciones-químicas"
3503
3504 \end_inset
3505
3506
3507 \end_layout
3508
3509 \end_inset
3510
3511  surge el problema siguiente:
3512 \end_layout
3513
3514 \begin_layout Standard
3515 \noindent
3516 \align center
3517 \begin_inset Tabular
3518 <lyxtabular version="3" rows="2" columns="2">
3519 <features tabularvalignment="middle">
3520 <column alignment="center" valignment="top" width="0">
3521 <column alignment="center" valignment="top" width="0">
3522 <row>
3523 <cell alignment="center" valignment="top" usebox="none">
3524 \begin_inset Text
3525
3526 \begin_layout Plain Layout
3527 Índices generados con sub- y superíndices:
3528 \end_layout
3529
3530 \end_inset
3531 </cell>
3532 <cell alignment="center" valignment="top" usebox="none">
3533 \begin_inset Text
3534
3535 \begin_layout Plain Layout
3536 \begin_inset Formula $_{9}^{19}\textrm{F}\raisebox{-3mm}{}$
3537 \end_inset
3538
3539
3540 \end_layout
3541
3542 \end_inset
3543 </cell>
3544 </row>
3545 <row>
3546 <cell alignment="center" valignment="top" usebox="none">
3547 \begin_inset Text
3548
3549 \begin_layout Plain Layout
3550 Índices correctos:
3551 \end_layout
3552
3553 \end_inset
3554 </cell>
3555 <cell alignment="center" valignment="top" usebox="none">
3556 \begin_inset Text
3557
3558 \begin_layout Plain Layout
3559 \begin_inset Formula $_{\phantom{1}9}^{19}\textrm{F}$
3560 \end_inset
3561
3562
3563 \end_layout
3564
3565 \end_inset
3566 </cell>
3567 </row>
3568 </lyxtabular>
3569
3570 \end_inset
3571
3572
3573 \begin_inset Note Note
3574 status collapsed
3575
3576 \begin_layout Plain Layout
3577
3578 \series bold
3579
3580 \backslash
3581 raisebox
3582 \series default
3583  se usa sólo como espaciador
3584 \end_layout
3585
3586 \end_inset
3587
3588
3589 \end_layout
3590
3591 \begin_layout Standard
3592 Por omisión, el índice más corto se coloca sobre o bajo el primer carácter
3593  del índice más largo.
3594  Para evitarlo está el comando 
3595 \series bold
3596
3597 \backslash
3598 phantom
3599 \series default
3600
3601 \begin_inset Index idx
3602 status collapsed
3603
3604 \begin_layout Plain Layout
3605 Comandos ! P ! 
3606 \backslash
3607 phantom
3608 \end_layout
3609
3610 \end_inset
3611
3612  o el botón 
3613 \begin_inset space ~
3614 \end_inset
3615
3616
3617 \begin_inset Graphics
3618         filename ../../images/math/phantom.png
3619         scale 85
3620
3621 \end_inset
3622
3623  del submenú de espaciado de ecuaciones
3624 \begin_inset Foot
3625 status collapsed
3626
3627 \begin_layout Plain Layout
3628 Botón 
3629 \begin_inset Graphics
3630         filename ../../images/math/space.png
3631         scale 85
3632
3633 \end_inset
3634
3635  de la barra de ecuaciones
3636 \end_layout
3637
3638 \end_inset
3639
3640 , que genera uno o más espacios reservados.
3641  Al insertar 
3642 \series bold
3643
3644 \backslash
3645 phantom
3646 \series default
3647  aparece un pequeño marco azul con dos flechas rojas superpuestas
3648 \begin_inset Formula $\phantom{}$
3649 \end_inset
3650
3651 .
3652  Las flechas indican que se reservará un espacio equivalente a la anchura
3653  y altura totales del contenido del marco.
3654  Los espacios reservados son correspondientes al tamaño de los caracteres.
3655 \end_layout
3656
3657 \begin_layout Standard
3658 \noindent
3659 \align center
3660 \begin_inset Tabular
3661 <lyxtabular version="3" rows="4" columns="2">
3662 <features tabularvalignment="middle">
3663 <column alignment="center" valignment="top" width="0">
3664 <column alignment="center" valignment="top" width="0">
3665 <row>
3666 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3667 \begin_inset Text
3668
3669 \begin_layout Plain Layout
3670 Comando
3671 \end_layout
3672
3673 \end_inset
3674 </cell>
3675 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3676 \begin_inset Text
3677
3678 \begin_layout Plain Layout
3679 Resultado
3680 \begin_inset Note Note
3681 status collapsed
3682
3683 \begin_layout Plain Layout
3684
3685 \series bold
3686
3687 \backslash
3688 raisebox
3689 \series default
3690  se usa sólo como espaciador
3691 \end_layout
3692
3693 \end_inset
3694
3695
3696 \end_layout
3697
3698 \end_inset
3699 </cell>
3700 </row>
3701 <row>
3702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3703 \begin_inset Text
3704
3705 \begin_layout Plain Layout
3706 ^19
3707 \begin_inset ERT
3708 status collapsed
3709
3710 \begin_layout Plain Layout
3711
3712
3713 \backslash
3714 spce 
3715 \end_layout
3716
3717 \end_inset
3718
3719 _
3720 \backslash
3721 phantom
3722 \begin_inset ERT
3723 status collapsed
3724
3725 \begin_layout Plain Layout
3726
3727
3728 \backslash
3729 spce 
3730 \end_layout
3731
3732 \end_inset
3733
3734 1
3735 \begin_inset Formula $\rightarrow$
3736 \end_inset
3737
3738 9
3739 \begin_inset ERT
3740 status collapsed
3741
3742 \begin_layout Plain Layout
3743
3744
3745 \backslash
3746 spce 
3747 \end_layout
3748
3749 \end_inset
3750
3751 F
3752 \end_layout
3753
3754 \end_inset
3755 </cell>
3756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3757 \begin_inset Text
3758
3759 \begin_layout Plain Layout
3760 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\textrm{F}\raisebox{-2.5mm}{}$
3761 \end_inset
3762
3763
3764 \end_layout
3765
3766 \end_inset
3767 </cell>
3768 </row>
3769 <row>
3770 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3771 \begin_inset Text
3772
3773 \begin_layout Plain Layout
3774 ^235
3775 \begin_inset ERT
3776 status collapsed
3777
3778 \begin_layout Plain Layout
3779
3780
3781 \backslash
3782 spce 
3783 \end_layout
3784
3785 \end_inset
3786
3787 _
3788 \backslash
3789 phantom
3790 \begin_inset ERT
3791 status collapsed
3792
3793 \begin_layout Plain Layout
3794
3795
3796 \backslash
3797 spce 
3798 \end_layout
3799
3800 \end_inset
3801
3802 23
3803 \begin_inset Formula $\rightarrow$
3804 \end_inset
3805
3806 9
3807 \begin_inset ERT
3808 status collapsed
3809
3810 \begin_layout Plain Layout
3811
3812
3813 \backslash
3814 spce 
3815 \end_layout
3816
3817 \end_inset
3818
3819 F
3820 \end_layout
3821
3822 \end_inset
3823 </cell>
3824 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3825 \begin_inset Text
3826
3827 \begin_layout Plain Layout
3828 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\textrm{F}\raisebox{-2.5mm}{}$
3829 \end_inset
3830
3831
3832 \end_layout
3833
3834 \end_inset
3835 </cell>
3836 </row>
3837 <row>
3838 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3839 \begin_inset Text
3840
3841 \begin_layout Plain Layout
3842
3843 \backslash
3844 Lambda^
3845 \begin_inset ERT
3846 status collapsed
3847
3848 \begin_layout Plain Layout
3849
3850
3851 \backslash
3852 spce 
3853 \end_layout
3854
3855 \end_inset
3856
3857
3858 \backslash
3859 phantom
3860 \begin_inset ERT
3861 status collapsed
3862
3863 \begin_layout Plain Layout
3864
3865
3866 \backslash
3867 spce 
3868 \end_layout
3869
3870 \end_inset
3871
3872 ii
3873 \begin_inset Formula $\rightarrow$
3874 \end_inset
3875
3876 t
3877 \begin_inset ERT
3878 status collapsed
3879
3880 \begin_layout Plain Layout
3881
3882
3883 \backslash
3884 spce 
3885 \end_layout
3886
3887 \end_inset
3888
3889 _MMt
3890 \end_layout
3891
3892 \end_inset
3893 </cell>
3894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3895 \begin_inset Text
3896
3897 \begin_layout Plain Layout
3898 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3899 \end_inset
3900
3901
3902 \end_layout
3903
3904 \end_inset
3905 </cell>
3906 </row>
3907 </lyxtabular>
3908
3909 \end_inset
3910
3911
3912 \end_layout
3913
3914 \begin_layout Standard
3915 Además hay los comandos 
3916 \series bold
3917
3918 \backslash
3919 vphantom
3920 \series default
3921
3922 \begin_inset Index idx
3923 status collapsed
3924
3925 \begin_layout Plain Layout
3926 Comandos ! V ! 
3927 \backslash
3928 vphantom
3929 \end_layout
3930
3931 \end_inset
3932
3933  (botón 
3934 \begin_inset space ~
3935 \end_inset
3936
3937
3938 \begin_inset Graphics
3939         filename ../../images/math/vphantom.png
3940         scale 85
3941
3942 \end_inset
3943
3944 ) y 
3945 \series bold
3946
3947 \backslash
3948 hphantom
3949 \series default
3950
3951 \begin_inset Index idx
3952 status collapsed
3953
3954 \begin_layout Plain Layout
3955 Comandos ! H ! 
3956 \backslash
3957 hphantom
3958 \end_layout
3959
3960 \end_inset
3961
3962  (botón 
3963 \begin_inset space ~
3964 \end_inset
3965
3966
3967 \begin_inset Graphics
3968         filename ../../images/math/hphantom.png
3969         scale 85
3970
3971 \end_inset
3972
3973 ).
3974  
3975 \series bold
3976
3977 \backslash
3978 hphantom
3979 \series default
3980  genera espacio en el marco sólo para la altura máxima de los caracteres,
3981  no para su anchura.
3982  
3983 \series bold
3984
3985 \backslash
3986 vphantom
3987 \series default
3988  genera espacio sólo para la anchura del contenido del marco.
3989  Por esto los marcos de estos comandos sólo tienen una flecha roja.
3990 \end_layout
3991
3992 \begin_layout Standard
3993 Por ejemplo, 
3994 \series bold
3995
3996 \backslash
3997 vphantom
3998 \series default
3999
4000 \begin_inset ERT
4001 status collapsed
4002
4003 \begin_layout Plain Layout
4004
4005
4006 \backslash
4007 spce 
4008 \end_layout
4009
4010 \end_inset
4011
4012
4013 \series bold
4014 a
4015 \backslash
4016 int
4017 \series default
4018  genera espacio de la altura del signo de la integral,
4019 \begin_inset Foot
4020 status collapsed
4021
4022 \begin_layout Plain Layout
4023 El comando 
4024 \series bold
4025
4026 \backslash
4027 int
4028 \series default
4029  genera un signo de integral, véase 
4030 \begin_inset CommandInset ref
4031 LatexCommand ref
4032 reference "sub:Operadores-grandes"
4033
4034 \end_inset
4035
4036
4037 \end_layout
4038
4039 \end_inset
4040
4041  porque este es el carácter más largo.
4042  En la 
4043 \begin_inset CommandInset ref
4044 LatexCommand ref
4045 reference "sub:Delimitadores-multilínea"
4046
4047 \end_inset
4048
4049  hay un ejemplo de aplicación.
4050 \end_layout
4051
4052 \begin_layout Standard
4053
4054 \lang english
4055 Placeholders can also be used for text when it is inserted via the menu
4056  
4057 \family sans
4058 Insert\SpecialChar \menuseparator
4059 Formatting\SpecialChar \menuseparator
4060 Phantom
4061 \family default
4062 :
4063 \end_layout
4064
4065 \begin_layout Standard
4066
4067 \lang english
4068 This is a sentence.
4069 \begin_inset Newline newline
4070 \end_inset
4071
4072
4073 \begin_inset Phantom Phantom
4074 status open
4075
4076 \begin_layout Plain Layout
4077
4078 \lang english
4079 This
4080 \end_layout
4081
4082 \end_inset
4083
4084  is a sentence.
4085 \end_layout
4086
4087 \begin_layout Subsection
4088 Líneas
4089 \begin_inset Index idx
4090 status collapsed
4091
4092 \begin_layout Plain Layout
4093 Lineas@Líneas
4094 \end_layout
4095
4096 \end_inset
4097
4098
4099 \begin_inset Index idx
4100 status collapsed
4101
4102 \begin_layout Plain Layout
4103 Ecuación ! sub- o superrayada
4104 \end_layout
4105
4106 \end_inset
4107
4108
4109 \end_layout
4110
4111 \begin_layout Standard
4112 \noindent
4113 \align center
4114 \begin_inset Tabular
4115 <lyxtabular version="3" rows="4" columns="2">
4116 <features tabularvalignment="middle">
4117 <column alignment="center" valignment="top" width="0">
4118 <column alignment="center" valignment="top" width="0">
4119 <row>
4120 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4121 \begin_inset Text
4122
4123 \begin_layout Plain Layout
4124 Comando
4125 \end_layout
4126
4127 \end_inset
4128 </cell>
4129 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4130 \begin_inset Text
4131
4132 \begin_layout Plain Layout
4133 Resultado
4134 \begin_inset Note Note
4135 status collapsed
4136
4137 \begin_layout Plain Layout
4138
4139 \series bold
4140
4141 \backslash
4142 raisebox
4143 \series default
4144  se usa sólo como espaciador
4145 \end_layout
4146
4147 \end_inset
4148
4149
4150 \end_layout
4151
4152 \end_inset
4153 </cell>
4154 </row>
4155 <row>
4156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4157 \begin_inset Text
4158
4159 \begin_layout Plain Layout
4160
4161 \backslash
4162 overline
4163 \begin_inset ERT
4164 status collapsed
4165
4166 \begin_layout Plain Layout
4167
4168
4169 \backslash
4170 spce 
4171 \end_layout
4172
4173 \end_inset
4174
4175 A+B
4176 \begin_inset Index idx
4177 status collapsed
4178
4179 \begin_layout Plain Layout
4180 Comandos ! O ! 
4181 \backslash
4182 overline
4183 \end_layout
4184
4185 \end_inset
4186
4187
4188 \end_layout
4189
4190 \end_inset
4191 </cell>
4192 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4193 \begin_inset Text
4194
4195 \begin_layout Plain Layout
4196 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4197 \end_inset
4198
4199
4200 \end_layout
4201
4202 \end_inset
4203 </cell>
4204 </row>
4205 <row>
4206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4207 \begin_inset Text
4208
4209 \begin_layout Plain Layout
4210
4211 \backslash
4212 underline
4213 \begin_inset ERT
4214 status collapsed
4215
4216 \begin_layout Plain Layout
4217
4218
4219 \backslash
4220 spce 
4221 \end_layout
4222
4223 \end_inset
4224
4225 A+B
4226 \begin_inset Index idx
4227 status collapsed
4228
4229 \begin_layout Plain Layout
4230 Comandos ! U ! 
4231 \backslash
4232 underline
4233 \end_layout
4234
4235 \end_inset
4236
4237
4238 \end_layout
4239
4240 \end_inset
4241 </cell>
4242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4243 \begin_inset Text
4244
4245 \begin_layout Plain Layout
4246 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4247 \end_inset
4248
4249
4250 \end_layout
4251
4252 \end_inset
4253 </cell>
4254 </row>
4255 <row>
4256 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4257 \begin_inset Text
4258
4259 \begin_layout Plain Layout
4260
4261 \backslash
4262 overline
4263 \begin_inset ERT
4264 status collapsed
4265
4266 \begin_layout Plain Layout
4267
4268
4269 \backslash
4270 spce 
4271 \end_layout
4272
4273 \end_inset
4274
4275
4276 \backslash
4277 underline
4278 \begin_inset ERT
4279 status collapsed
4280
4281 \begin_layout Plain Layout
4282
4283
4284 \backslash
4285 spce 
4286 \end_layout
4287
4288 \end_inset
4289
4290 A+B
4291 \end_layout
4292
4293 \end_inset
4294 </cell>
4295 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4296 \begin_inset Text
4297
4298 \begin_layout Plain Layout
4299 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4300 \end_inset
4301
4302
4303 \end_layout
4304
4305 \end_inset
4306 </cell>
4307 </row>
4308 </lyxtabular>
4309
4310 \end_inset
4311
4312
4313 \end_layout
4314
4315 \begin_layout Standard
4316 En el último ejemplo es indiferente poner primero 
4317 \series bold
4318
4319 \backslash
4320 overline
4321 \series default
4322  o 
4323 \series bold
4324
4325 \backslash
4326 underline
4327 \series default
4328 .
4329 \end_layout
4330
4331 \begin_layout Standard
4332 Para poner doble subrayado, p.
4333 \begin_inset space \thinspace{}
4334 \end_inset
4335
4336 e.
4337  en resultados, se usa 
4338 \series bold
4339
4340 \backslash
4341 underline
4342 \series default
4343  dos veces.
4344 \end_layout
4345
4346 \begin_layout Standard
4347 Es posible colocar hasta 6 líneas sobre o bajo los caracteres.
4348 \begin_inset VSpace bigskip
4349 \end_inset
4350
4351 Se pueden crear líneas personalizadas con el comando 
4352 \series bold
4353
4354 \backslash
4355 rule
4356 \series default
4357
4358 \begin_inset Index idx
4359 status collapsed
4360
4361 \begin_layout Plain Layout
4362 Comandos ! R ! 
4363 \backslash
4364 rule
4365 \end_layout
4366
4367 \end_inset
4368
4369  con el esquema siguiente:
4370 \end_layout
4371
4372 \begin_layout Standard
4373
4374 \series bold
4375
4376 \backslash
4377 rule[hueco vertical]{longitud}{grosor}
4378 \end_layout
4379
4380 \begin_layout Standard
4381 El hueco vertical opcional desplaza la línea hacia arriba (o hacia abajo
4382  si el valor es negativo).
4383  Las unidades disponibles para los valores están listadas en
4384 \begin_inset space ~
4385 \end_inset
4386
4387
4388 \begin_inset CommandInset ref
4389 LatexCommand ref
4390 reference "tab:Unidades-disponibles"
4391
4392 \end_inset
4393
4394 .
4395  A continuación hay dos ejemplos de líneas creadas con los comandos
4396 \series bold
4397
4398 \begin_inset Newline newline
4399 \end_inset
4400
4401
4402 \backslash
4403 rule[-2ex]{3cm}{2pt}
4404 \series default
4405  y 
4406 \series bold
4407
4408 \backslash
4409 rule{2cm}{1pt}
4410 \series default
4411 :
4412 \end_layout
4413
4414 \begin_layout Standard
4415 Esto es una frase 
4416 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4417 \end_inset
4418
4419  con dos líneas.
4420 \end_layout
4421
4422 \begin_layout Standard
4423
4424 \series bold
4425
4426 \backslash
4427 rule
4428 \series default
4429  también se puede usar para texto si 
4430 \lang english
4431 a line is inserted via the menu 
4432 \family sans
4433 Insert\SpecialChar \menuseparator
4434 Formatting\SpecialChar \menuseparator
4435 Horizontal
4436 \begin_inset space ~
4437 \end_inset
4438
4439 Line
4440 \family default
4441 :
4442 \end_layout
4443
4444 \begin_layout Standard
4445
4446 \lang english
4447 This is a sentence 
4448 \begin_inset CommandInset line
4449 LatexCommand rule
4450 offset "0.5ex"
4451 width "3cm"
4452 height "1pt"
4453
4454 \end_inset
4455
4456  with one line.
4457 \end_layout
4458
4459 \begin_layout Subsection
4460 Puntos
4461 \begin_inset CommandInset label
4462 LatexCommand label
4463 name "sub:Puntos"
4464
4465 \end_inset
4466
4467
4468 \begin_inset Index idx
4469 status collapsed
4470
4471 \begin_layout Plain Layout
4472 Puntos
4473 \end_layout
4474
4475 \end_inset
4476
4477
4478 \end_layout
4479
4480 \begin_layout Standard
4481 Hay distintos tipos de puntos disponibles.
4482 \begin_inset Foot
4483 status collapsed
4484
4485 \begin_layout Plain Layout
4486 En la barra de herramientas de ecuaciones, en el panel del botón 
4487 \begin_inset Graphics
4488         filename ../../images/math/ldots.png
4489         scale 85
4490
4491 \end_inset
4492
4493 .
4494 \end_layout
4495
4496 \end_inset
4497
4498  Para continuación en enumeraciones se usan puntos bajos, (
4499 \series bold
4500
4501 \backslash
4502 ldots
4503 \series default
4504
4505 \begin_inset Index idx
4506 status collapsed
4507
4508 \begin_layout Plain Layout
4509 Comandos ! L ! 
4510 \backslash
4511 ldots
4512 \end_layout
4513
4514 \end_inset
4515
4516 ), mientras que para operaciones se usan puntos centrados a la misma altura
4517  que los operadores, (
4518 \series bold
4519
4520 \backslash
4521 cdots
4522 \series default
4523
4524 \begin_inset Index idx
4525 status collapsed
4526
4527 \begin_layout Plain Layout
4528 Comandos ! C ! 
4529 \backslash
4530 cdots
4531 \end_layout
4532
4533 \end_inset
4534
4535 ).
4536  Si se usa el comando 
4537 \series bold
4538
4539 \backslash
4540 dots
4541 \series default
4542
4543 \begin_inset Index idx
4544 status collapsed
4545
4546 \begin_layout Plain Layout
4547 Comandos ! D ! 
4548 \backslash
4549 dots
4550 \end_layout
4551
4552 \end_inset
4553
4554 , LaTeX decide el tipo a usar en función del carácter siguiente.
4555 \end_layout
4556
4557 \begin_layout Standard
4558 \align center
4559 \begin_inset Tabular
4560 <lyxtabular version="3" rows="8" columns="2">
4561 <features tabularvalignment="middle">
4562 <column alignment="center" valignment="top" width="0pt">
4563 <column alignment="center" valignment="top" width="0pt">
4564 <row>
4565 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4566 \begin_inset Text
4567
4568 \begin_layout Plain Layout
4569 Comando
4570 \end_layout
4571
4572 \end_inset
4573 </cell>
4574 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4575 \begin_inset Text
4576
4577 \begin_layout Plain Layout
4578 Resultado
4579 \end_layout
4580
4581 \end_inset
4582 </cell>
4583 </row>
4584 <row>
4585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4586 \begin_inset Text
4587
4588 \begin_layout Plain Layout
4589 A_1
4590 \begin_inset ERT
4591 status collapsed
4592
4593 \begin_layout Plain Layout
4594
4595
4596 \backslash
4597 spce 
4598 \end_layout
4599
4600 \end_inset
4601
4602 ,
4603 \backslash
4604 dots
4605 \begin_inset ERT
4606 status collapsed
4607
4608 \begin_layout Plain Layout
4609
4610
4611 \backslash
4612 spce 
4613 \end_layout
4614
4615 \end_inset
4616
4617 ,A_n
4618 \end_layout
4619
4620 \end_inset
4621 </cell>
4622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4623 \begin_inset Text
4624
4625 \begin_layout Plain Layout
4626 \begin_inset Formula $A_{1},\dots,A_{n}$
4627 \end_inset
4628
4629
4630 \end_layout
4631
4632 \end_inset
4633 </cell>
4634 </row>
4635 <row>
4636 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4637 \begin_inset Text
4638
4639 \begin_layout Plain Layout
4640 A_1
4641 \begin_inset ERT
4642 status collapsed
4643
4644 \begin_layout Plain Layout
4645
4646
4647 \backslash
4648 spce 
4649 \end_layout
4650
4651 \end_inset
4652
4653 +
4654 \backslash
4655 dots
4656 \begin_inset ERT
4657 status collapsed
4658
4659 \begin_layout Plain Layout
4660
4661
4662 \backslash
4663 spce 
4664 \end_layout
4665
4666 \end_inset
4667
4668 +A_n
4669 \end_layout
4670
4671 \end_inset
4672 </cell>
4673 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4674 \begin_inset Text
4675
4676 \begin_layout Plain Layout
4677 \begin_inset Formula $A_{1}+\dots+A_{n}$
4678 \end_inset
4679
4680
4681 \end_layout
4682
4683 \end_inset
4684 </cell>
4685 </row>
4686 <row>
4687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4688 \begin_inset Text
4689
4690 \begin_layout Plain Layout
4691 A_1
4692 \begin_inset ERT
4693 status collapsed
4694
4695 \begin_layout Plain Layout
4696
4697
4698 \backslash
4699 spce 
4700 \end_layout
4701
4702 \end_inset
4703
4704 ,
4705 \backslash
4706 ldots
4707 \begin_inset ERT
4708 status collapsed
4709
4710 \begin_layout Plain Layout
4711
4712
4713 \backslash
4714 spce 
4715 \end_layout
4716
4717 \end_inset
4718
4719 ,A_n
4720 \end_layout
4721
4722 \end_inset
4723 </cell>
4724 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4725 \begin_inset Text
4726
4727 \begin_layout Plain Layout
4728 \begin_inset Formula $A_{1},\ldots,A_{n}$
4729 \end_inset
4730
4731
4732 \end_layout
4733
4734 \end_inset
4735 </cell>
4736 </row>
4737 <row>
4738 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4739 \begin_inset Text
4740
4741 \begin_layout Plain Layout
4742 A_1
4743 \begin_inset ERT
4744 status collapsed
4745
4746 \begin_layout Plain Layout
4747
4748
4749 \backslash
4750 spce 
4751 \end_layout
4752
4753 \end_inset
4754
4755 +
4756 \backslash
4757 cdots
4758 \begin_inset ERT
4759 status collapsed
4760
4761 \begin_layout Plain Layout
4762
4763
4764 \backslash
4765 spce 
4766 \end_layout
4767
4768 \end_inset
4769
4770 +A_n
4771 \end_layout
4772
4773 \end_inset
4774 </cell>
4775 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4776 \begin_inset Text
4777
4778 \begin_layout Plain Layout
4779 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4780 \end_inset
4781
4782
4783 \end_layout
4784
4785 \end_inset
4786 </cell>
4787 </row>
4788 <row>
4789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4790 \begin_inset Text
4791
4792 \begin_layout Plain Layout
4793
4794 \backslash
4795 vdots
4796 \end_layout
4797
4798 \end_inset
4799 </cell>
4800 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4801 \begin_inset Text
4802
4803 \begin_layout Plain Layout
4804 \begin_inset Formula $\vdots$
4805 \end_inset
4806
4807
4808 \end_layout
4809
4810 \end_inset
4811 </cell>
4812 </row>
4813 <row>
4814 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4815 \begin_inset Text
4816
4817 \begin_layout Plain Layout
4818
4819 \backslash
4820 ddots
4821 \end_layout
4822
4823 \end_inset
4824 </cell>
4825 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4826 \begin_inset Text
4827
4828 \begin_layout Plain Layout
4829 \begin_inset Formula $\ddots$
4830 \end_inset
4831
4832
4833 \end_layout
4834
4835 \end_inset
4836 </cell>
4837 </row>
4838 <row>
4839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4840 \begin_inset Text
4841
4842 \begin_layout Plain Layout
4843 Matriz
4844 \begin_inset space \thinspace{}
4845 \end_inset
4846
4847 3×3 con los distintos puntos
4848 \end_layout
4849
4850 \end_inset
4851 </cell>
4852 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4853 \begin_inset Text
4854
4855 \begin_layout Plain Layout
4856 \begin_inset Formula $\begin{array}{ccc}
4857 A_{11} & \cdots & A_{1m}\\
4858 \vdots & \ddots & \vdots\\
4859 A_{n1} & \cdots & A_{nm}
4860 \end{array}$
4861 \end_inset
4862
4863
4864 \end_layout
4865
4866 \end_inset
4867 </cell>
4868 </row>
4869 </lyxtabular>
4870
4871 \end_inset
4872
4873
4874 \end_layout
4875
4876 \begin_layout Standard
4877 Los puntos suspensivos disponibles en el menú 
4878 \family sans
4879 Insertar\SpecialChar \menuseparator
4880 Carácter especial
4881 \family default
4882  son 
4883 \series bold
4884
4885 \backslash
4886 ldots
4887 \series default
4888 .
4889 \begin_inset VSpace medskip
4890 \end_inset
4891
4892
4893 \end_layout
4894
4895 \begin_layout Standard
4896 Hay puntos específicos para matrices que se extienden por varias columnas.
4897  Se generan con el comando 
4898 \series bold
4899
4900 \backslash
4901 hdotsfor
4902 \series default
4903
4904 \begin_inset Index idx
4905 status collapsed
4906
4907 \begin_layout Plain Layout
4908 Comandos ! H ! 
4909 \backslash
4910 hdotsfor
4911 \end_layout
4912
4913 \end_inset
4914
4915 , que tiene el siguiente esquema:
4916 \end_layout
4917
4918 \begin_layout Standard
4919
4920 \series bold
4921
4922 \backslash
4923 hdotsfor[distancia]{número de columnas}
4924 \end_layout
4925
4926 \begin_layout Standard
4927 Número de columnas especifica cuántas columnas deben abarcarse.
4928  Distancia es un factor para la separación entre los puntos.
4929 \end_layout
4930
4931 \begin_layout Standard
4932 En la siguiente matriz se ha insertado el comando 
4933 \series bold
4934
4935 \backslash
4936 hdotsfor[2]{4}
4937 \series default
4938  en el primer recuadro de la segunda línea para obtener puntos separados
4939  una distancia equivalente a dos veces la del comando 
4940 \series bold
4941
4942 \backslash
4943 dots
4944 \series default
4945 .
4946 \begin_inset Formula \[
4947 \left(\begin{array}{cccc}
4948 A & B & C & D\\
4949 \hdotsfor[2]{4}\\
4950 q & w & e & r
4951 \end{array}\right)\]
4952
4953 \end_inset
4954
4955
4956 \end_layout
4957
4958 \begin_layout Standard
4959 Ten en cuenta que los campos abarcados de la matriz deben estar vacíos,
4960  de lo contrario se producen errores de LaTeX.
4961 \end_layout
4962
4963 \begin_layout Standard
4964 \begin_inset VSpace bigskip
4965 \end_inset
4966
4967
4968 \end_layout
4969
4970 \begin_layout Standard
4971 Además, con el comando 
4972 \series bold
4973
4974 \backslash
4975 dotfill
4976 \series default
4977
4978 \begin_inset Index idx
4979 status collapsed
4980
4981 \begin_layout Plain Layout
4982 Comandos ! D ! 
4983 \backslash
4984 dotfill
4985 \end_layout
4986
4987 \end_inset
4988
4989  puedes completar con puntos una línea.
4990  El efecto de este tipo de comandos es como el de 
4991 \series bold
4992
4993 \backslash
4994 hfill
4995 \series default
4996 , véase 
4997 \begin_inset CommandInset ref
4998 LatexCommand ref
4999 reference "sub:Espacio-variable"
5000
5001 \end_inset
5002
5003 .
5004 \end_layout
5005
5006 \begin_layout Standard
5007 Por ejemplo el comando 
5008 \series bold
5009 A
5010 \backslash
5011 dotfill
5012 \series default
5013
5014 \begin_inset ERT
5015 status collapsed
5016
5017 \begin_layout Plain Layout
5018
5019
5020 \backslash
5021 spce 
5022 \end_layout
5023
5024 \end_inset
5025
5026
5027 \series bold
5028 B
5029 \series default
5030  genera
5031 \end_layout
5032
5033 \begin_layout Standard
5034 \begin_inset Formula $A\dotfill B$
5035 \end_inset
5036
5037
5038 \end_layout
5039
5040 \begin_layout Standard
5041 Un comando análogo a 
5042 \series bold
5043
5044 \backslash
5045 dotfill
5046 \series default
5047  para rellenar con una línea es 
5048 \series bold
5049
5050 \backslash
5051 hrulefill
5052 \series default
5053
5054 \begin_inset Index idx
5055 status collapsed
5056
5057 \begin_layout Plain Layout
5058 Comandos ! H ! 
5059 \backslash
5060 hrulefill
5061 \end_layout
5062
5063 \end_inset
5064
5065 :
5066 \end_layout
5067
5068 \begin_layout Standard
5069 \begin_inset Formula $A\hrulefill B$
5070 \end_inset
5071
5072
5073 \end_layout
5074
5075 \begin_layout Standard
5076 Para usar estos comandos en el texto, deben insertarse en modo TeX.
5077 \end_layout
5078
5079 \begin_layout Section
5080 Matrices
5081 \begin_inset CommandInset label
5082 LatexCommand label
5083 name "sec:Matrices"
5084
5085 \end_inset
5086
5087
5088 \begin_inset Index idx
5089 status collapsed
5090
5091 \begin_layout Plain Layout
5092 Matrices
5093 \end_layout
5094
5095 \end_inset
5096
5097
5098 \end_layout
5099
5100 \begin_layout Standard
5101 Se pueden insertar con el botón 
5102 \begin_inset Graphics
5103         filename ../../images/dialog-show_mathmatrix.png
5104         scale 85
5105
5106 \end_inset
5107
5108  de la barra de ecuaciones o con el menú 
5109 \family sans
5110 Insertar\SpecialChar \menuseparator
5111 Ecuación\SpecialChar \menuseparator
5112 Matriz
5113 \family default
5114 .
5115  Aparece una ventana en la que se pide el número de filas y columnas y la
5116  alineación.
5117  La alineación vertical sólo es relevante para matrices en línea:
5118 \end_layout
5119
5120 \begin_layout Standard
5121 Esta primera matriz tiene alineación superior 
5122 \begin_inset Formula $\begin{array}[t]{cccc}
5123 A & D & G & J\\
5124 B & E & H & K\\
5125 D & F & I & L
5126 \end{array}$
5127 \end_inset
5128
5129  , la segunda alineación central 
5130 \begin_inset Formula $\begin{array}{cccc}
5131 A & D & G & J\\
5132 B & E & H & K\\
5133 D & F & I & L
5134 \end{array}$
5135 \end_inset
5136
5137  , y la tercera alineación inferior 
5138 \begin_inset Formula $\begin{array}[b]{cccc}
5139 A & D & G & J\\
5140 B & E & H & K\\
5141 D & F & I & L
5142 \end{array}$
5143 \end_inset
5144
5145 .
5146 \end_layout
5147
5148 \begin_layout Standard
5149 La alineación horizontal especifica cómo deben alinearse las entradas de
5150  la columna.
5151  Se determina mediante una letra para cada columna.
5152  
5153 \emph on
5154 l
5155 \emph default
5156  indica alineación a la izquierda, 
5157 \emph on
5158 c
5159 \emph default
5160  alineación centrada y 
5161 \emph on
5162 r
5163 \emph default
5164  alineación a la derecha.
5165  Por ejemplo, para componer una matriz
5166 \begin_inset space ~
5167 \end_inset
5168
5169 4×4 con la primera columna alineada a la izquierda, la segunda y la tercera
5170  centradas y la última a la derecha, se anota 
5171 \series bold
5172 lccr
5173 \series default
5174  en la alineación horizontal.
5175  Normalmente todas las columnas de una matriz están centradas, por tanto
5176  el valor por omisión es 
5177 \series bold
5178 c
5179 \series default
5180  para todas ellas.
5181 \end_layout
5182
5183 \begin_layout Standard
5184 Alineación horizontal:
5185 \end_layout
5186
5187 \begin_layout Standard
5188
5189 \series bold
5190 lll
5191 \series default
5192  : 
5193 \begin_inset Formula $\begin{array}{lll}
5194 10000 & D & G\\
5195 B & 10000 & H\\
5196 C & F & 10000
5197 \end{array}$
5198 \end_inset
5199
5200  , 
5201 \series bold
5202 ccc 
5203 \series default
5204
5205 \begin_inset Formula $\begin{array}{ccc}
5206 10000 & D & G\\
5207 B & 10000 & H\\
5208 C & F & 10000
5209 \end{array}$
5210 \end_inset
5211
5212  
5213 \series bold
5214 ,
5215 \series default
5216  
5217 \series bold
5218 rrr 
5219 \series default
5220
5221 \begin_inset Formula $\begin{array}{rrr}
5222 10000 & D & G\\
5223 B & 10000 & H\\
5224 C & F & 10000
5225 \end{array}$
5226 \end_inset
5227
5228
5229 \end_layout
5230
5231 \begin_layout Standard
5232 Para añadir o borrar filas y columnas posteriormente, se pueden usar los
5233  botones 
5234 \begin_inset Graphics
5235         filename ../../images/tabular-feature_append-row.png
5236         scale 85
5237
5238 \end_inset
5239
5240
5241 \begin_inset Graphics
5242         filename ../../images/tabular-feature_delete-row.png
5243         scale 85
5244
5245 \end_inset
5246
5247 , etc.
5248  de la barra de ecuaciones o el menú 
5249 \family sans
5250 Editar\SpecialChar \menuseparator
5251 Filas y columnas
5252 \family default
5253 .
5254  También se pueden añadir filas nuevas con 
5255 \family sans
5256 Ctrl+Retorno
5257 \family default
5258 .
5259 \end_layout
5260
5261 \begin_layout Standard
5262 \begin_inset VSpace bigskip
5263 \end_inset
5264
5265
5266 \end_layout
5267
5268 \begin_layout Standard
5269 Se pueden poner paréntesis alrededor de una matriz con los comandos 
5270 \series bold
5271
5272 \backslash
5273 left
5274 \series default
5275
5276 \begin_inset Index idx
5277 status collapsed
5278
5279 \begin_layout Plain Layout
5280 Comandos ! L ! 
5281 \backslash
5282 left
5283 \end_layout
5284
5285 \end_inset
5286
5287  y 
5288 \series bold
5289
5290 \backslash
5291 right
5292 \series default
5293
5294 \begin_inset Index idx
5295 status collapsed
5296
5297 \begin_layout Plain Layout
5298 Comandos ! R ! 
5299 \backslash
5300 right
5301 \end_layout
5302
5303 \end_inset
5304
5305  (atajo 
5306 \family sans
5307 Alt+M
5308 \begin_inset space ~
5309 \end_inset
5310
5311 Paréntesis
5312 \family default
5313 ), véase 
5314 \begin_inset CommandInset ref
5315 LatexCommand ref
5316 reference "sub:Tamaño-automático-de"
5317
5318 \end_inset
5319
5320 , o usando los comandos siguientes:
5321 \end_layout
5322
5323 \begin_layout Standard
5324 \begin_inset VSpace medskip
5325 \end_inset
5326
5327
5328 \end_layout
5329
5330 \begin_layout Standard
5331 \begin_inset space \hfill{}
5332 \end_inset
5333
5334
5335 \begin_inset Tabular
5336 <lyxtabular version="3" rows="4" columns="2">
5337 <features tabularvalignment="middle">
5338 <column alignment="center" valignment="top" width="0">
5339 <column alignment="center" valignment="top" width="0">
5340 <row>
5341 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5342 \begin_inset Text
5343
5344 \begin_layout Plain Layout
5345 Comando
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 Resultado
5355 \begin_inset Note Note
5356 status collapsed
5357
5358 \begin_layout Plain Layout
5359
5360 \series bold
5361
5362 \backslash
5363 raisebox
5364 \series default
5365  se usa sólo como espaciador
5366 \end_layout
5367
5368 \end_inset
5369
5370
5371 \end_layout
5372
5373 \end_inset
5374 </cell>
5375 </row>
5376 <row>
5377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5378 \begin_inset Text
5379
5380 \begin_layout Plain Layout
5381
5382 \backslash
5383 bmatrix
5384 \begin_inset ERT
5385 status collapsed
5386
5387 \begin_layout Plain Layout
5388
5389
5390 \backslash
5391 spce 
5392 \end_layout
5393
5394 \end_inset
5395
5396 2
5397 \series bold
5398 ×
5399 \series default
5400 2
5401 \begin_inset space \thinspace{}
5402 \end_inset
5403
5404 matriz
5405 \end_layout
5406
5407 \end_inset
5408 </cell>
5409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5410 \begin_inset Text
5411
5412 \begin_layout Plain Layout
5413 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5414 0 & \textrm{-}\mathrm{i}\\
5415 \mathrm{i} & 0
5416 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5417 \end_inset
5418
5419
5420 \end_layout
5421
5422 \end_inset
5423 </cell>
5424 </row>
5425 <row>
5426 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5427 \begin_inset Text
5428
5429 \begin_layout Plain Layout
5430
5431 \backslash
5432 Bmatrix
5433 \begin_inset ERT
5434 status collapsed
5435
5436 \begin_layout Plain Layout
5437
5438
5439 \backslash
5440 spce 
5441 \end_layout
5442
5443 \end_inset
5444
5445 2×2
5446 \begin_inset space \thinspace{}
5447 \end_inset
5448
5449 matriz
5450 \end_layout
5451
5452 \end_inset
5453 </cell>
5454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5455 \begin_inset Text
5456
5457 \begin_layout Plain Layout
5458 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5459 0 & \textrm{-}\mathrm{i}\\
5460 \mathrm{i} & 0
5461 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5462 \end_inset
5463
5464
5465 \end_layout
5466
5467 \end_inset
5468 </cell>
5469 </row>
5470 <row>
5471 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5472 \begin_inset Text
5473
5474 \begin_layout Plain Layout
5475
5476 \backslash
5477 pmatrix
5478 \begin_inset ERT
5479 status collapsed
5480
5481 \begin_layout Plain Layout
5482
5483
5484 \backslash
5485 spce 
5486 \end_layout
5487
5488 \end_inset
5489
5490 2
5491 \series bold
5492 ×
5493 \series default
5494 2
5495 \begin_inset space \thinspace{}
5496 \end_inset
5497
5498 matriz
5499 \end_layout
5500
5501 \end_inset
5502 </cell>
5503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5504 \begin_inset Text
5505
5506 \begin_layout Plain Layout
5507 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5508 0 & \textrm{-}\mathrm{i}\\
5509 \mathrm{i} & 0
5510 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5511 \end_inset
5512
5513
5514 \end_layout
5515
5516 \end_inset
5517 </cell>
5518 </row>
5519 </lyxtabular>
5520
5521 \end_inset
5522
5523
5524 \begin_inset space \hfill{}
5525 \end_inset
5526
5527
5528 \begin_inset Tabular
5529 <lyxtabular version="3" rows="4" columns="2">
5530 <features tabularvalignment="middle">
5531 <column alignment="center" valignment="top" width="0">
5532 <column alignment="center" valignment="top" width="0">
5533 <row>
5534 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5535 \begin_inset Text
5536
5537 \begin_layout Plain Layout
5538 Comando
5539 \end_layout
5540
5541 \end_inset
5542 </cell>
5543 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5544 \begin_inset Text
5545
5546 \begin_layout Plain Layout
5547 Resultado
5548 \begin_inset Note Note
5549 status collapsed
5550
5551 \begin_layout Plain Layout
5552
5553 \series bold
5554
5555 \backslash
5556 raisebox
5557 \series default
5558  se usa sólo como espaciador
5559 \end_layout
5560
5561 \end_inset
5562
5563
5564 \end_layout
5565
5566 \end_inset
5567 </cell>
5568 </row>
5569 <row>
5570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5571 \begin_inset Text
5572
5573 \begin_layout Plain Layout
5574
5575 \backslash
5576 vmatrix
5577 \begin_inset ERT
5578 status collapsed
5579
5580 \begin_layout Plain Layout
5581
5582
5583 \backslash
5584 spce 
5585 \end_layout
5586
5587 \end_inset
5588
5589 2
5590 \series bold
5591 ×
5592 \series default
5593 2
5594 \begin_inset space \thinspace{}
5595 \end_inset
5596
5597 matriz
5598 \end_layout
5599
5600 \end_inset
5601 </cell>
5602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5603 \begin_inset Text
5604
5605 \begin_layout Plain Layout
5606 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5607 0 & \textrm{-}\mathrm{i}\\
5608 \mathrm{i} & 0
5609 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5610 \end_inset
5611
5612
5613 \end_layout
5614
5615 \end_inset
5616 </cell>
5617 </row>
5618 <row>
5619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5620 \begin_inset Text
5621
5622 \begin_layout Plain Layout
5623
5624 \backslash
5625 Vmatrix
5626 \begin_inset ERT
5627 status collapsed
5628
5629 \begin_layout Plain Layout
5630
5631
5632 \backslash
5633 spce 
5634 \end_layout
5635
5636 \end_inset
5637
5638 2
5639 \series bold
5640 ×
5641 \series default
5642 2
5643 \begin_inset space \thinspace{}
5644 \end_inset
5645
5646 matriz
5647 \end_layout
5648
5649 \end_inset
5650 </cell>
5651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5652 \begin_inset Text
5653
5654 \begin_layout Plain Layout
5655 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5656 0 & \textrm{-}\mathrm{i}\\
5657 \mathrm{i} & 0
5658 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5659 \end_inset
5660
5661
5662 \end_layout
5663
5664 \end_inset
5665 </cell>
5666 </row>
5667 <row>
5668 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5669 \begin_inset Text
5670
5671 \begin_layout Plain Layout
5672
5673 \backslash
5674 matrix
5675 \begin_inset ERT
5676 status collapsed
5677
5678 \begin_layout Plain Layout
5679
5680
5681 \backslash
5682 spce 
5683 \end_layout
5684
5685 \end_inset
5686
5687 2
5688 \series bold
5689 ×
5690 \series default
5691 2
5692 \begin_inset space \thinspace{}
5693 \end_inset
5694
5695 matriz
5696 \end_layout
5697
5698 \end_inset
5699 </cell>
5700 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5701 \begin_inset Text
5702
5703 \begin_layout Plain Layout
5704 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5705 0 & \textrm{-}\mathrm{i}\\
5706 \mathrm{i} & 0
5707 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5708 \end_inset
5709
5710
5711 \end_layout
5712
5713 \end_inset
5714 </cell>
5715 </row>
5716 </lyxtabular>
5717
5718 \end_inset
5719
5720
5721 \begin_inset space \hfill{}
5722 \end_inset
5723
5724
5725 \end_layout
5726
5727 \begin_layout Standard
5728 \begin_inset VSpace medskip
5729 \end_inset
5730
5731
5732 \end_layout
5733
5734 \begin_layout Standard
5735 Cuando se inserta p.
5736 \begin_inset space \thinspace{}
5737 \end_inset
5738
5739 e.
5740 \begin_inset space ~
5741 \end_inset
5742
5743
5744 \series bold
5745
5746 \backslash
5747 vmatrix
5748 \series default
5749 , aparece un recuadro azul entre dos líneas verticales donde se inserta
5750  la matriz.
5751 \end_layout
5752
5753 \begin_layout Standard
5754 \begin_inset VSpace bigskip
5755 \end_inset
5756
5757
5758 \end_layout
5759
5760 \begin_layout Standard
5761 Como todas las ecuaciones multilínea son matrices, la longitud 
5762 \series bold
5763
5764 \backslash
5765 arraycolsep
5766 \series default
5767
5768 \begin_inset Index idx
5769 status collapsed
5770
5771 \begin_layout Plain Layout
5772 Comandos ! A ! 
5773 \backslash
5774 arraycolsep
5775 \end_layout
5776
5777 \end_inset
5778
5779 , que se describe en 
5780 \begin_inset CommandInset ref
5781 LatexCommand ref
5782 reference "sub:Separación-de-columnas"
5783
5784 \end_inset
5785
5786 , también se puede usar para cambiar la separación de las columnas en una
5787  matriz.
5788  Para cambiar la separación de las filas, se usa el comando 
5789 \series bold
5790
5791 \backslash
5792 arraystretch
5793 \series default
5794
5795 \begin_inset Index idx
5796 status collapsed
5797
5798 \begin_layout Plain Layout
5799 Comandos ! A ! 
5800 \backslash
5801 arraystretch
5802 \end_layout
5803
5804 \end_inset
5805
5806  de la siguiente manera:
5807 \end_layout
5808
5809 \begin_layout Standard
5810
5811 \series bold
5812
5813 \backslash
5814 renewcommand{
5815 \backslash
5816 arraystretch}{factor de separación}
5817 \begin_inset Index idx
5818 status collapsed
5819
5820 \begin_layout Plain Layout
5821 Comandos ! R ! 
5822 \backslash
5823 renewcommand
5824 \end_layout
5825
5826 \end_inset
5827
5828
5829 \end_layout
5830
5831 \begin_layout Standard
5832 El comando 
5833 \series bold
5834
5835 \backslash
5836 renewcommand
5837 \series default
5838  asigna el factor de separación al comando predefinido 
5839 \series bold
5840
5841 \backslash
5842 arraystretch
5843 \series default
5844 .
5845  Por ejemplo, para doblar la separación de las filas, pones factor 2.
5846  Además, éste se usa para todas las matrices siguientes.
5847  Para volver a la separación original, asigna factor 1 a 
5848 \series bold
5849
5850 \backslash
5851 arraystretch
5852 \series default
5853 .
5854 \end_layout
5855
5856 \begin_layout Standard
5857 Para poner matrices en línea se usa el comando 
5858 \series bold
5859
5860 \backslash
5861 smallmatrix
5862 \series default
5863
5864 \begin_inset Index idx
5865 status collapsed
5866
5867 \begin_layout Plain Layout
5868 Comandos ! S ! 
5869 \backslash
5870 smallmatrix
5871 \end_layout
5872
5873 \end_inset
5874
5875 .
5876  Al insertarlo aparece un recuadro azul con dos líneas de trazos en el que
5877  se inserta la matriz.
5878  
5879 \end_layout
5880
5881 \begin_layout Standard
5882 Esto es una matriz 
5883 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5884 C & D
5885 \end{smallmatrix}\right)$
5886 \end_inset
5887
5888  en línea.
5889 \end_layout
5890
5891 \begin_layout Section
5892 Delimitadores
5893 \begin_inset Index idx
5894 status collapsed
5895
5896 \begin_layout Plain Layout
5897 Delimitadores
5898 \end_layout
5899
5900 \end_inset
5901
5902
5903 \end_layout
5904
5905 \begin_layout Subsection
5906 Delimitadores verticales
5907 \begin_inset Index idx
5908 status collapsed
5909
5910 \begin_layout Plain Layout
5911 Delimitadores ! verticales
5912 \end_layout
5913
5914 \end_inset
5915
5916
5917 \end_layout
5918
5919 \begin_layout Standard
5920 \begin_inset space \hfill{}
5921 \end_inset
5922
5923
5924 \begin_inset Tabular
5925 <lyxtabular version="3" rows="9" columns="2">
5926 <features tabularvalignment="middle">
5927 <column alignment="center" valignment="top" width="0pt">
5928 <column alignment="center" valignment="top" width="0pt">
5929 <row>
5930 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5931 \begin_inset Text
5932
5933 \begin_layout Plain Layout
5934 Comando
5935 \end_layout
5936
5937 \end_inset
5938 </cell>
5939 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5940 \begin_inset Text
5941
5942 \begin_layout Plain Layout
5943 Resultado
5944 \end_layout
5945
5946 \end_inset
5947 </cell>
5948 </row>
5949 <row>
5950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5951 \begin_inset Text
5952
5953 \begin_layout Plain Layout
5954 (
5955 \end_layout
5956
5957 \end_inset
5958 </cell>
5959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5960 \begin_inset Text
5961
5962 \begin_layout Plain Layout
5963 \begin_inset Formula $($
5964 \end_inset
5965
5966
5967 \end_layout
5968
5969 \end_inset
5970 </cell>
5971 </row>
5972 <row>
5973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5974 \begin_inset Text
5975
5976 \begin_layout Plain Layout
5977 {
5978 \end_layout
5979
5980 \end_inset
5981 </cell>
5982 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5983 \begin_inset Text
5984
5985 \begin_layout Plain Layout
5986 \begin_inset Formula $\{$
5987 \end_inset
5988
5989
5990 \end_layout
5991
5992 \end_inset
5993 </cell>
5994 </row>
5995 <row>
5996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5997 \begin_inset Text
5998
5999 \begin_layout Plain Layout
6000 [
6001 \end_layout
6002
6003 \end_inset
6004 </cell>
6005 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6006 \begin_inset Text
6007
6008 \begin_layout Plain Layout
6009 \begin_inset Formula $[$
6010 \end_inset
6011
6012
6013 \end_layout
6014
6015 \end_inset
6016 </cell>
6017 </row>
6018 <row>
6019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6020 \begin_inset Text
6021
6022 \begin_layout Plain Layout
6023
6024 \backslash
6025 langle
6026 \end_layout
6027
6028 \end_inset
6029 </cell>
6030 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6031 \begin_inset Text
6032
6033 \begin_layout Plain Layout
6034 \begin_inset Formula $\langle$
6035 \end_inset
6036
6037
6038 \end_layout
6039
6040 \end_inset
6041 </cell>
6042 </row>
6043 <row>
6044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6045 \begin_inset Text
6046
6047 \begin_layout Plain Layout
6048
6049 \backslash
6050 lceil
6051 \end_layout
6052
6053 \end_inset
6054 </cell>
6055 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6056 \begin_inset Text
6057
6058 \begin_layout Plain Layout
6059 \begin_inset Formula $\lceil$
6060 \end_inset
6061
6062
6063 \end_layout
6064
6065 \end_inset
6066 </cell>
6067 </row>
6068 <row>
6069 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6070 \begin_inset Text
6071
6072 \begin_layout Plain Layout
6073
6074 \backslash
6075 lfloor
6076 \end_layout
6077
6078 \end_inset
6079 </cell>
6080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6081 \begin_inset Text
6082
6083 \begin_layout Plain Layout
6084 \begin_inset Formula $\lfloor$
6085 \end_inset
6086
6087
6088 \end_layout
6089
6090 \end_inset
6091 </cell>
6092 </row>
6093 <row>
6094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6095 \begin_inset Text
6096
6097 \begin_layout Plain Layout
6098 /
6099 \end_layout
6100
6101 \end_inset
6102 </cell>
6103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6104 \begin_inset Text
6105
6106 \begin_layout Plain Layout
6107 \begin_inset Formula $/$
6108 \end_inset
6109
6110
6111 \end_layout
6112
6113 \end_inset
6114 </cell>
6115 </row>
6116 <row>
6117 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6118 \begin_inset Text
6119
6120 \begin_layout Plain Layout
6121 |
6122 \end_layout
6123
6124 \end_inset
6125 </cell>
6126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6127 \begin_inset Text
6128
6129 \begin_layout Plain Layout
6130 \begin_inset Formula $|$
6131 \end_inset
6132
6133
6134 \end_layout
6135
6136 \end_inset
6137 </cell>
6138 </row>
6139 </lyxtabular>
6140
6141 \end_inset
6142
6143
6144 \begin_inset space \hfill{}
6145 \end_inset
6146
6147
6148 \begin_inset Tabular
6149 <lyxtabular version="3" rows="9" columns="2">
6150 <features tabularvalignment="middle">
6151 <column alignment="center" valignment="top" width="0pt">
6152 <column alignment="center" valignment="top" width="0pt">
6153 <row>
6154 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6155 \begin_inset Text
6156
6157 \begin_layout Plain Layout
6158 Comando
6159 \end_layout
6160
6161 \end_inset
6162 </cell>
6163 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6164 \begin_inset Text
6165
6166 \begin_layout Plain Layout
6167 Resultado
6168 \end_layout
6169
6170 \end_inset
6171 </cell>
6172 </row>
6173 <row>
6174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6175 \begin_inset Text
6176
6177 \begin_layout Plain Layout
6178 )
6179 \end_layout
6180
6181 \end_inset
6182 </cell>
6183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6184 \begin_inset Text
6185
6186 \begin_layout Plain Layout
6187 \begin_inset Formula $)$
6188 \end_inset
6189
6190
6191 \end_layout
6192
6193 \end_inset
6194 </cell>
6195 </row>
6196 <row>
6197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6198 \begin_inset Text
6199
6200 \begin_layout Plain Layout
6201 }
6202 \end_layout
6203
6204 \end_inset
6205 </cell>
6206 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6207 \begin_inset Text
6208
6209 \begin_layout Plain Layout
6210 \begin_inset Formula $\}$
6211 \end_inset
6212
6213
6214 \end_layout
6215
6216 \end_inset
6217 </cell>
6218 </row>
6219 <row>
6220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6221 \begin_inset Text
6222
6223 \begin_layout Plain Layout
6224 ]
6225 \end_layout
6226
6227 \end_inset
6228 </cell>
6229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6230 \begin_inset Text
6231
6232 \begin_layout Plain Layout
6233 \begin_inset Formula $]$
6234 \end_inset
6235
6236
6237 \end_layout
6238
6239 \end_inset
6240 </cell>
6241 </row>
6242 <row>
6243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6244 \begin_inset Text
6245
6246 \begin_layout Plain Layout
6247
6248 \backslash
6249 rangle
6250 \end_layout
6251
6252 \end_inset
6253 </cell>
6254 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6255 \begin_inset Text
6256
6257 \begin_layout Plain Layout
6258 \begin_inset Formula $\rangle$
6259 \end_inset
6260
6261
6262 \end_layout
6263
6264 \end_inset
6265 </cell>
6266 </row>
6267 <row>
6268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6269 \begin_inset Text
6270
6271 \begin_layout Plain Layout
6272
6273 \backslash
6274 rceil
6275 \end_layout
6276
6277 \end_inset
6278 </cell>
6279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6280 \begin_inset Text
6281
6282 \begin_layout Plain Layout
6283 \begin_inset Formula $\rceil$
6284 \end_inset
6285
6286
6287 \end_layout
6288
6289 \end_inset
6290 </cell>
6291 </row>
6292 <row>
6293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6294 \begin_inset Text
6295
6296 \begin_layout Plain Layout
6297
6298 \backslash
6299 rfloor
6300 \end_layout
6301
6302 \end_inset
6303 </cell>
6304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6305 \begin_inset Text
6306
6307 \begin_layout Plain Layout
6308 \begin_inset Formula $\rfloor$
6309 \end_inset
6310
6311
6312 \end_layout
6313
6314 \end_inset
6315 </cell>
6316 </row>
6317 <row>
6318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6319 \begin_inset Text
6320
6321 \begin_layout Plain Layout
6322
6323 \backslash
6324
6325 \backslash
6326
6327 \end_layout
6328
6329 \end_inset
6330 </cell>
6331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6332 \begin_inset Text
6333
6334 \begin_layout Plain Layout
6335 \begin_inset Formula $\backslash$
6336 \end_inset
6337
6338
6339 \end_layout
6340
6341 \end_inset
6342 </cell>
6343 </row>
6344 <row>
6345 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6346 \begin_inset Text
6347
6348 \begin_layout Plain Layout
6349
6350 \backslash
6351 |
6352 \end_layout
6353
6354 \end_inset
6355 </cell>
6356 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6357 \begin_inset Text
6358
6359 \begin_layout Plain Layout
6360 \begin_inset Formula $\|$
6361 \end_inset
6362
6363
6364 \end_layout
6365
6366 \end_inset
6367 </cell>
6368 </row>
6369 </lyxtabular>
6370
6371 \end_inset
6372
6373
6374 \begin_inset space \hfill{}
6375 \end_inset
6376
6377
6378 \end_layout
6379
6380 \begin_layout Standard
6381 \begin_inset Note Greyedout
6382 status open
6383
6384 \begin_layout Plain Layout
6385
6386 \series bold
6387 Nota
6388 \series default
6389 : En modo TeX hay que usar el comando 
6390 \series bold
6391
6392 \backslash
6393 textbackslash
6394 \series default
6395
6396 \begin_inset Index idx
6397 status collapsed
6398
6399 \begin_layout Plain Layout
6400 Comandos ! T ! 
6401 \backslash
6402 textbackslash
6403 \end_layout
6404
6405 \end_inset
6406
6407  para la barra invertida, porque si no el comando 
6408 \series bold
6409
6410 \backslash
6411
6412 \backslash
6413
6414 \series default
6415  genera un salto de línea.
6416 \end_layout
6417
6418 \end_inset
6419
6420
6421 \end_layout
6422
6423 \begin_layout Standard
6424 El tamaño de los caracteres listados arriba se puede ajustar con los comandos
6425  descritos en las dos subsecciones siguientes.
6426  Cuando se emplean esos comandos se pueden usar directamente los caracteres
6427  < y > en vez de los comandos 
6428 \series bold
6429
6430 \backslash
6431 langle
6432 \series default
6433  y 
6434 \series bold
6435
6436 \backslash
6437 rangle
6438 \series default
6439 .
6440  
6441 \end_layout
6442
6443 \begin_layout Subsubsection
6444 Tamaño manual de los delimitadores
6445 \begin_inset CommandInset label
6446 LatexCommand label
6447 name "sub:Tamaño-manual-de"
6448
6449 \end_inset
6450
6451
6452 \begin_inset Index idx
6453 status collapsed
6454
6455 \begin_layout Plain Layout
6456 Delimitadores ! tamaño manual
6457 \end_layout
6458
6459 \end_inset
6460
6461
6462 \end_layout
6463
6464 \begin_layout Standard
6465 El tamaño de los delimitadores se puede determinar manualmente con los comandos
6466  LaTeX 
6467 \series bold
6468
6469 \backslash
6470 big
6471 \series default
6472
6473 \begin_inset Index idx
6474 status collapsed
6475
6476 \begin_layout Plain Layout
6477 Comandos ! B ! 
6478 \backslash
6479 big
6480 \end_layout
6481
6482 \end_inset
6483
6484
6485 \series bold
6486
6487 \backslash
6488 Big
6489 \series default
6490
6491 \series bold
6492
6493 \backslash
6494 bigg
6495 \series default
6496 , y 
6497 \series bold
6498
6499 \backslash
6500 Bigg
6501 \series default
6502 .
6503  
6504 \series bold
6505
6506 \backslash
6507 big
6508 \series default
6509  indica el tamaño menor y 
6510 \series bold
6511
6512 \backslash
6513 Bigg
6514 \series default
6515  el mayor.
6516 \end_layout
6517
6518 \begin_layout Standard
6519 Estos comandos se usan para resaltar niveles de delimitación:
6520 \end_layout
6521
6522 \begin_layout Standard
6523 \noindent
6524 \align center
6525 \begin_inset Tabular
6526 <lyxtabular version="3" rows="2" columns="2">
6527 <features tabularvalignment="middle">
6528 <column alignment="center" valignment="top" width="0">
6529 <column alignment="center" valignment="top" width="0">
6530 <row>
6531 <cell alignment="center" valignment="top" usebox="none">
6532 \begin_inset Text
6533
6534 \begin_layout Plain Layout
6535 todos los delimitadores de igual tamaño:
6536 \end_layout
6537
6538 \end_inset
6539 </cell>
6540 <cell alignment="center" valignment="top" usebox="none">
6541 \begin_inset Text
6542
6543 \begin_layout Plain Layout
6544 \begin_inset Formula $((A+B)(A-B))^{C}{\normalcolor \raisebox{-4mm}{}}$
6545 \end_inset
6546
6547
6548 \end_layout
6549
6550 \end_inset
6551 </cell>
6552 </row>
6553 <row>
6554 <cell alignment="center" valignment="top" usebox="none">
6555 \begin_inset Text
6556
6557 \begin_layout Plain Layout
6558 así tiene mejor aspecto:
6559 \end_layout
6560
6561 \end_inset
6562 </cell>
6563 <cell alignment="center" valignment="top" usebox="none">
6564 \begin_inset Text
6565
6566 \begin_layout Plain Layout
6567 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6568 \end_inset
6569
6570
6571 \end_layout
6572
6573 \end_inset
6574 </cell>
6575 </row>
6576 </lyxtabular>
6577
6578 \end_inset
6579
6580
6581 \begin_inset Note Note
6582 status collapsed
6583
6584 \begin_layout Plain Layout
6585
6586 \series bold
6587
6588 \backslash
6589 raisebox
6590 \series default
6591  se usa sólo como espaciador
6592 \end_layout
6593
6594 \end_inset
6595
6596
6597 \end_layout
6598
6599 \begin_layout Standard
6600 Para la segunda expresión se ha empleado el comando 
6601 \series bold
6602
6603 \backslash
6604 Big((A+B)(A-B)
6605 \backslash
6606 Big)^
6607 \series default
6608
6609 \begin_inset ERT
6610 status collapsed
6611
6612 \begin_layout Plain Layout
6613
6614
6615 \backslash
6616 spce 
6617 \end_layout
6618
6619 \end_inset
6620
6621
6622 \series bold
6623 C
6624 \series default
6625 .
6626 \end_layout
6627
6628 \begin_layout Standard
6629 He aquí una visión conjunta de todos los tamaños y delimitadores:
6630 \end_layout
6631
6632 \begin_layout Standard
6633 \noindent
6634 \align center
6635
6636 \backslash
6637 Bigg(
6638 \backslash
6639 exp
6640 \backslash
6641 bigg<
6642 \backslash
6643 Big[
6644 \backslash
6645 big{
6646 \backslash
6647 ln(3x)
6648 \backslash
6649 big}^2
6650 \begin_inset ERT
6651 status collapsed
6652
6653 \begin_layout Plain Layout
6654
6655
6656 \backslash
6657 spce 
6658 \end_layout
6659
6660 \end_inset
6661
6662
6663 \backslash
6664 sen(x)
6665 \backslash
6666 Big]^
6667 \begin_inset ERT
6668 status collapsed
6669
6670 \begin_layout Plain Layout
6671
6672
6673 \backslash
6674 spce 
6675 \end_layout
6676
6677 \end_inset
6678
6679 A
6680 \begin_inset ERT
6681 status collapsed
6682
6683 \begin_layout Plain Layout
6684
6685
6686 \backslash
6687 spce 
6688 \end_layout
6689
6690 \end_inset
6691
6692
6693 \backslash
6694 bigg>
6695 \backslash
6696 Bigg)^0,5
6697 \begin_inset Formula \[
6698 \Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sen(x)\Big]^{A}\bigg>\Bigg)^{0,5}\]
6699
6700 \end_inset
6701
6702
6703 \end_layout
6704
6705 \begin_layout Standard
6706 Además de los comandos 
6707 \series bold
6708
6709 \backslash
6710 big
6711 \series default
6712  hay la variante 
6713 \series bold
6714
6715 \backslash
6716 bigm
6717 \series default
6718
6719 \begin_inset Index idx
6720 status collapsed
6721
6722 \begin_layout Plain Layout
6723 Comandos ! B ! 
6724 \backslash
6725 bigm
6726 \end_layout
6727
6728 \end_inset
6729
6730 , que añade un poco más de espacio entre el delimitador y su contenido,
6731  y la variante 
6732 \series bold
6733
6734 \backslash
6735 bigl
6736 \series default
6737 -
6738 \series bold
6739
6740 \backslash
6741 bigr
6742 \series default
6743
6744 \begin_inset Index idx
6745 status collapsed
6746
6747 \begin_layout Plain Layout
6748 Comandos ! B ! 
6749 \backslash
6750 bigl - 
6751 \backslash
6752 bigr
6753 \end_layout
6754
6755 \end_inset
6756
6757 , que no añade espacio adicional.
6758  La 
6759 \emph on
6760 l
6761 \emph default
6762  al final del comando 
6763 \series bold
6764
6765 \backslash
6766 bigl 
6767 \series default
6768 es para el delimitador izquierdo, la 
6769 \emph on
6770 r
6771 \emph default
6772  es para el delimitador derecho.
6773  Un delimitador izquierdo o derecho puede ser cada uno un delimitador de
6774  apertura o de cierre.
6775 \end_layout
6776
6777 \begin_layout Standard
6778 En el siguiente cuadro hay una comparación de las variantes:
6779 \end_layout
6780
6781 \begin_layout Standard
6782 \noindent
6783 \align center
6784 \begin_inset Tabular
6785 <lyxtabular version="3" rows="5" columns="2">
6786 <features tabularvalignment="middle">
6787 <column alignment="center" valignment="top" width="0">
6788 <column alignment="center" valignment="top" width="0">
6789 <row>
6790 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6791 \begin_inset Text
6792
6793 \begin_layout Plain Layout
6794 Comando
6795 \end_layout
6796
6797 \end_inset
6798 </cell>
6799 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6800 \begin_inset Text
6801
6802 \begin_layout Plain Layout
6803 Resultado
6804 \begin_inset Note Note
6805 status collapsed
6806
6807 \begin_layout Plain Layout
6808
6809 \series bold
6810
6811 \backslash
6812 raisebox
6813 \series default
6814  se usa sólo como espaciador
6815 \end_layout
6816
6817 \end_inset
6818
6819
6820 \end_layout
6821
6822 \end_inset
6823 </cell>
6824 </row>
6825 <row>
6826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6827 \begin_inset Text
6828
6829 \begin_layout Plain Layout
6830
6831 \backslash
6832 Bigm(
6833 \backslash
6834 bigm(
6835 \backslash
6836 ln(3x)
6837 \backslash
6838 bigm)^2
6839 \series bold
6840
6841 \begin_inset ERT
6842 status collapsed
6843
6844 \begin_layout Plain Layout
6845
6846
6847 \backslash
6848 spce 
6849 \end_layout
6850
6851 \end_inset
6852
6853
6854 \series default
6855
6856 \backslash
6857 Bigm)
6858 \end_layout
6859
6860 \end_inset
6861 </cell>
6862 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6863 \begin_inset Text
6864
6865 \begin_layout Plain Layout
6866 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6867 \end_inset
6868
6869
6870 \end_layout
6871
6872 \end_inset
6873 </cell>
6874 </row>
6875 <row>
6876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6877 \begin_inset Text
6878
6879 \begin_layout Plain Layout
6880
6881 \backslash
6882 Big(
6883 \backslash
6884 big(
6885 \backslash
6886 ln(3x)
6887 \backslash
6888 big)^2
6889 \series bold
6890
6891 \begin_inset ERT
6892 status collapsed
6893
6894 \begin_layout Plain Layout
6895
6896
6897 \backslash
6898 spce 
6899 \end_layout
6900
6901 \end_inset
6902
6903
6904 \series default
6905
6906 \backslash
6907 Big)
6908 \end_layout
6909
6910 \end_inset
6911 </cell>
6912 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6913 \begin_inset Text
6914
6915 \begin_layout Plain Layout
6916 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
6917 \end_inset
6918
6919
6920 \end_layout
6921
6922 \end_inset
6923 </cell>
6924 </row>
6925 <row>
6926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6927 \begin_inset Text
6928
6929 \begin_layout Plain Layout
6930
6931 \backslash
6932 Bigl(
6933 \backslash
6934 bigl(
6935 \backslash
6936 ln(3x)
6937 \backslash
6938 bigr)^2
6939 \series bold
6940
6941 \begin_inset ERT
6942 status collapsed
6943
6944 \begin_layout Plain Layout
6945
6946
6947 \backslash
6948 spce 
6949 \end_layout
6950
6951 \end_inset
6952
6953
6954 \series default
6955
6956 \backslash
6957 Bigr)
6958 \end_layout
6959
6960 \end_inset
6961 </cell>
6962 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6963 \begin_inset Text
6964
6965 \begin_layout Plain Layout
6966 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.2mm}{}$
6967 \end_inset
6968
6969
6970 \end_layout
6971
6972 \end_inset
6973 </cell>
6974 </row>
6975 <row>
6976 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6977 \begin_inset Text
6978
6979 \begin_layout Plain Layout
6980
6981 \backslash
6982 bigl)
6983 \backslash
6984 ln(3x)
6985 \backslash
6986 bigr(
6987 \end_layout
6988
6989 \end_inset
6990 </cell>
6991 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6992 \begin_inset Text
6993
6994 \begin_layout Plain Layout
6995 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
6996 \end_inset
6997
6998
6999 \end_layout
7000
7001 \end_inset
7002 </cell>
7003 </row>
7004 </lyxtabular>
7005
7006 \end_inset
7007
7008
7009 \end_layout
7010
7011 \begin_layout Subsubsection
7012 Tamaño automático de los delimitadores
7013 \begin_inset CommandInset label
7014 LatexCommand label
7015 name "sub:Tamaño-automático-de"
7016
7017 \end_inset
7018
7019
7020 \begin_inset Index idx
7021 status collapsed
7022
7023 \begin_layout Plain Layout
7024 Delimitadores ! tamaño automático
7025 \end_layout
7026
7027 \end_inset
7028
7029
7030 \end_layout
7031
7032 \begin_layout Standard
7033 Se pueden insertar delimitadores de tamaño variable con los comandos 
7034 \series bold
7035
7036 \backslash
7037 left
7038 \series default
7039
7040 \begin_inset Index idx
7041 status collapsed
7042
7043 \begin_layout Plain Layout
7044 Comandos ! L ! 
7045 \backslash
7046 left
7047 \end_layout
7048
7049 \end_inset
7050
7051  y 
7052 \series bold
7053
7054 \backslash
7055 right
7056 \series default
7057
7058 \begin_inset Index idx
7059 status collapsed
7060
7061 \begin_layout Plain Layout
7062 Comandos ! R ! 
7063 \backslash
7064 right
7065 \end_layout
7066
7067 \end_inset
7068
7069  o con el botón de la barra de ecuaciones 
7070 \begin_inset Graphics
7071         filename ../../images/dialog-show_mathdelimiter.png
7072         scale 85
7073
7074 \end_inset
7075
7076 .
7077  El delimitador deseado se debe insertar directamente detrás de 
7078 \series bold
7079
7080 \backslash
7081 left
7082 \series default
7083  y 
7084 \series bold
7085
7086 \backslash
7087 right
7088 \series default
7089 .
7090  El tamaño se calculará automáticamente después para la salida.
7091  
7092 \end_layout
7093
7094 \begin_layout Standard
7095 \noindent
7096 \align center
7097 delimitador normal: El comando 
7098 \series bold
7099
7100 \backslash
7101 ln(
7102 \backslash
7103 frac
7104 \series default
7105
7106 \begin_inset ERT
7107 status collapsed
7108
7109 \begin_layout Plain Layout
7110
7111
7112 \backslash
7113 spce 
7114 \end_layout
7115
7116 \end_inset
7117
7118
7119 \series bold
7120 A
7121 \begin_inset Formula $\downarrow$
7122 \end_inset
7123
7124 C
7125 \series default
7126
7127 \begin_inset ERT
7128 status collapsed
7129
7130 \begin_layout Plain Layout
7131
7132
7133 \backslash
7134 spce
7135 \end_layout
7136
7137 \end_inset
7138
7139
7140 \series bold
7141 )
7142 \series default
7143  genera
7144 \begin_inset Formula \[
7145 \ln(\frac{A}{C})\]
7146
7147 \end_inset
7148
7149
7150 \end_layout
7151
7152 \begin_layout Standard
7153 \noindent
7154 \align center
7155 delimitador multilínea: El comando 
7156 \series bold
7157
7158 \backslash
7159 ln
7160 \backslash
7161 left(
7162 \backslash
7163 frac
7164 \series default
7165
7166 \begin_inset ERT
7167 status collapsed
7168
7169 \begin_layout Plain Layout
7170
7171
7172 \backslash
7173 spce 
7174 \end_layout
7175
7176 \end_inset
7177
7178
7179 \series bold
7180 A
7181 \begin_inset Formula $\downarrow$
7182 \end_inset
7183
7184 C
7185 \series default
7186
7187 \begin_inset ERT
7188 status collapsed
7189
7190 \begin_layout Plain Layout
7191
7192
7193 \backslash
7194 spce 
7195 \end_layout
7196
7197 \end_inset
7198
7199
7200 \series bold
7201
7202 \backslash
7203 right)
7204 \series default
7205  genera
7206 \begin_inset Formula \[
7207 \ln\left(\frac{A}{C}\right)\]
7208
7209 \end_inset
7210
7211
7212 \end_layout
7213
7214 \begin_layout Standard
7215 En lugar de 
7216 \series bold
7217
7218 \backslash
7219 left
7220 \series default
7221  y 
7222 \series bold
7223
7224 \backslash
7225 right
7226 \series default
7227  se puede usar el atajo 
7228 \family sans
7229 Alt+M
7230 \begin_inset space ~
7231 \end_inset
7232
7233 Corchete
7234 \family default
7235 .
7236  Esto tiene la ventaja de que puedes ver inmediatamente en LyX el tamaño
7237  real del delimitador y además se genera el correspondiente delimitador
7238  de cierre.
7239 \begin_inset Newline newline
7240 \end_inset
7241
7242 El comando para el último ejemplo sería 
7243 \series bold
7244
7245 \backslash
7246 ln Alt+M
7247 \series default
7248  
7249 \series bold
7250 (
7251 \backslash
7252 frac
7253 \begin_inset ERT
7254 status collapsed
7255
7256 \begin_layout Plain Layout
7257
7258
7259 \backslash
7260 spce 
7261 \end_layout
7262
7263 \end_inset
7264
7265 A
7266 \begin_inset Formula $\downarrow$
7267 \end_inset
7268
7269
7270 \end_layout
7271
7272 \begin_layout Standard
7273 Para omitir uno de los dos delimitadores se inserta un punto.
7274  Por ejemplo, el comando 
7275 \series bold
7276
7277 \backslash
7278 left.
7279 \backslash
7280 frac
7281 \series default
7282
7283 \begin_inset ERT
7284 status collapsed
7285
7286 \begin_layout Plain Layout
7287
7288
7289 \backslash
7290 spce 
7291 \end_layout
7292
7293 \end_inset
7294
7295
7296 \series bold
7297 A
7298 \begin_inset Formula $\downarrow$
7299 \end_inset
7300
7301 B
7302 \series default
7303
7304 \begin_inset ERT
7305 status collapsed
7306
7307 \begin_layout Plain Layout
7308
7309
7310 \backslash
7311 spce 
7312 \end_layout
7313
7314 \end_inset
7315
7316
7317 \series bold
7318
7319 \backslash
7320 right}
7321 \series default
7322  da lugar a:
7323 \begin_inset Formula \[
7324 \left.\frac{A}{B}\right\} \]
7325
7326 \end_inset
7327
7328
7329 \end_layout
7330
7331 \begin_layout Standard
7332 LyX convertirá los comandos 
7333 \series bold
7334
7335 \backslash
7336 left
7337 \series default
7338  y 
7339 \series bold
7340
7341 \backslash
7342 right
7343 \series default
7344  a su tamaño adecuado cuando el documento sea recargado y el delimitador
7345  omitido aparecerá como línea de trazos.
7346  
7347 \begin_inset VSpace bigskip
7348 \end_inset
7349
7350
7351 \end_layout
7352
7353 \begin_layout Standard
7354 Como todas las distribuciones habituales de LaTeX incluyen eTeX, una extensión
7355  de LaTeX, el comando 
7356 \series bold
7357
7358 \backslash
7359 middle
7360 \series default
7361
7362 \begin_inset Index idx
7363 status collapsed
7364
7365 \begin_layout Plain Layout
7366 Comandos ! M ! 
7367 \backslash
7368 middle
7369 \end_layout
7370
7371 \end_inset
7372
7373  está también disponible para todos los delimitadores y límites.
7374  Con este comando la altura del siguiente carácter se adapta a la de los
7375  delimitadores circundantes, lo que es necesario, p.
7376 \begin_inset space \thinspace{}
7377 \end_inset
7378
7379 e., para vectores físicos: 
7380 \begin_inset Formula \[
7381 \left\langle \phi\;\middle|\; J=\frac{3}{2}\,,\, M_{J}\right\rangle \]
7382
7383 \end_inset
7384
7385
7386 \end_layout
7387
7388 \begin_layout Standard
7389 Para vectores físicos hay un paquete LaTeX especial que se describe en 
7390 \begin_inset CommandInset ref
7391 LatexCommand ref
7392 reference "sub:Vectores-físicos"
7393
7394 \end_inset
7395
7396 .
7397 \end_layout
7398
7399 \begin_layout Subsection
7400 Delimitadores horizontales
7401 \begin_inset Index idx
7402 status collapsed
7403
7404 \begin_layout Plain Layout
7405 Delimitadores ! horizontales
7406 \end_layout
7407
7408 \end_inset
7409
7410
7411 \end_layout
7412
7413 \begin_layout Standard
7414 \noindent
7415 \align center
7416 \begin_inset Tabular
7417 <lyxtabular version="3" rows="4" columns="2">
7418 <features tabularvalignment="middle">
7419 <column alignment="center" valignment="top" width="0">
7420 <column alignment="center" valignment="top" width="0">
7421 <row>
7422 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7423 \begin_inset Text
7424
7425 \begin_layout Plain Layout
7426 Comando
7427 \begin_inset Note Note
7428 status collapsed
7429
7430 \begin_layout Plain Layout
7431
7432 \series bold
7433
7434 \backslash
7435 raisebox
7436 \series default
7437  se usa sólo como espaciador
7438 \end_layout
7439
7440 \end_inset
7441
7442
7443 \end_layout
7444
7445 \end_inset
7446 </cell>
7447 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7448 \begin_inset Text
7449
7450 \begin_layout Plain Layout
7451 Resultado
7452 \end_layout
7453
7454 \end_inset
7455 </cell>
7456 </row>
7457 <row>
7458 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7459 \begin_inset Text
7460
7461 \begin_layout Plain Layout
7462 \begin_inset ERT
7463 status collapsed
7464
7465 \begin_layout Plain Layout
7466
7467
7468 \backslash
7469 raisebox{2.3mm}{
7470 \end_layout
7471
7472 \end_inset
7473
7474
7475 \backslash
7476 overbrace
7477 \begin_inset ERT
7478 status collapsed
7479
7480 \begin_layout Plain Layout
7481
7482
7483 \backslash
7484 spce 
7485 \end_layout
7486
7487 \end_inset
7488
7489 A+B
7490 \begin_inset ERT
7491 status collapsed
7492
7493 \begin_layout Plain Layout
7494
7495
7496 \backslash
7497 spce 
7498 \end_layout
7499
7500 \end_inset
7501
7502 ^
7503 \begin_inset ERT
7504 status collapsed
7505
7506 \begin_layout Plain Layout
7507
7508
7509 \backslash
7510 spce 
7511 \end_layout
7512
7513 \end_inset
7514
7515 3
7516 \begin_inset ERT
7517 status collapsed
7518
7519 \begin_layout Plain Layout
7520
7521 }
7522 \end_layout
7523
7524 \end_inset
7525
7526
7527 \begin_inset Index idx
7528 status collapsed
7529
7530 \begin_layout Plain Layout
7531 Comandos ! O ! 
7532 \backslash
7533 overbrace
7534 \end_layout
7535
7536 \end_inset
7537
7538
7539 \end_layout
7540
7541 \end_inset
7542 </cell>
7543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7544 \begin_inset Text
7545
7546 \begin_layout Plain Layout
7547 \begin_inset Formula $\overbrace{A+B}^{3}$
7548 \end_inset
7549
7550
7551 \end_layout
7552
7553 \end_inset
7554 </cell>
7555 </row>
7556 <row>
7557 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7558 \begin_inset Text
7559
7560 \begin_layout Plain Layout
7561 \begin_inset ERT
7562 status collapsed
7563
7564 \begin_layout Plain Layout
7565
7566
7567 \backslash
7568 raisebox{-2.2mm}{
7569 \end_layout
7570
7571 \end_inset
7572
7573
7574 \backslash
7575 underbrace
7576 \begin_inset ERT
7577 status collapsed
7578
7579 \begin_layout Plain Layout
7580
7581
7582 \backslash
7583 spce 
7584 \end_layout
7585
7586 \end_inset
7587
7588 A+B
7589 \begin_inset ERT
7590 status collapsed
7591
7592 \begin_layout Plain Layout
7593
7594
7595 \backslash
7596 spce 
7597 \end_layout
7598
7599 \end_inset
7600
7601 _5
7602 \begin_inset ERT
7603 status collapsed
7604
7605 \begin_layout Plain Layout
7606
7607 }
7608 \end_layout
7609
7610 \end_inset
7611
7612
7613 \begin_inset Index idx
7614 status collapsed
7615
7616 \begin_layout Plain Layout
7617 Comandos ! U ! 
7618 \backslash
7619 underbrace
7620 \end_layout
7621
7622 \end_inset
7623
7624
7625 \end_layout
7626
7627 \end_inset
7628 </cell>
7629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7630 \begin_inset Text
7631
7632 \begin_layout Plain Layout
7633 \begin_inset Formula $\underbrace{A+B}_{5}$
7634 \end_inset
7635
7636
7637 \end_layout
7638
7639 \end_inset
7640 </cell>
7641 </row>
7642 <row>
7643 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7644 \begin_inset Text
7645
7646 \begin_layout Plain Layout
7647
7648 \backslash
7649 overbrace
7650 \begin_inset ERT
7651 status collapsed
7652
7653 \begin_layout Plain Layout
7654
7655
7656 \backslash
7657 spce 
7658 \end_layout
7659
7660 \end_inset
7661
7662
7663 \backslash
7664 underbrace
7665 \begin_inset ERT
7666 status collapsed
7667
7668 \begin_layout Plain Layout
7669
7670
7671 \backslash
7672 spce 
7673 \end_layout
7674
7675 \end_inset
7676
7677 A+B_w
7678 \begin_inset ERT
7679 status collapsed
7680
7681 \begin_layout Plain Layout
7682
7683
7684 \backslash
7685 spce 
7686 \end_layout
7687
7688 \end_inset
7689
7690
7691 \begin_inset ERT
7692 status collapsed
7693
7694 \begin_layout Plain Layout
7695
7696
7697 \backslash
7698 spce 
7699 \end_layout
7700
7701 \end_inset
7702
7703 _7
7704 \begin_inset ERT
7705 status collapsed
7706
7707 \begin_layout Plain Layout
7708
7709
7710 \backslash
7711 spce 
7712 \end_layout
7713
7714 \end_inset
7715
7716
7717 \begin_inset ERT
7718 status collapsed
7719
7720 \begin_layout Plain Layout
7721
7722
7723 \backslash
7724 spce 
7725 \end_layout
7726
7727 \end_inset
7728
7729 ^
7730 \begin_inset ERT
7731 status collapsed
7732
7733 \begin_layout Plain Layout
7734
7735
7736 \backslash
7737 spce 
7738 \end_layout
7739
7740 \end_inset
7741
7742 C
7743 \end_layout
7744
7745 \end_inset
7746 </cell>
7747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7748 \begin_inset Text
7749
7750 \begin_layout Plain Layout
7751 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7752 \end_inset
7753
7754
7755 \end_layout
7756
7757 \end_inset
7758 </cell>
7759 </row>
7760 </lyxtabular>
7761
7762 \end_inset
7763
7764
7765 \end_layout
7766
7767 \begin_layout Standard
7768 En el último ejemplo no importa en qué orden se introducen los comandos
7769  
7770 \series bold
7771
7772 \backslash
7773 overbrace
7774 \series default
7775  y 
7776 \series bold
7777
7778 \backslash
7779 underbrace
7780 \series default
7781 .
7782 \begin_inset VSpace bigskip
7783 \end_inset
7784
7785
7786 \end_layout
7787
7788 \begin_layout Standard
7789 Si un delimitador debe estar superpuesto a otro, hay que usar ecuaciones
7790  multilínea, como se describe en
7791 \begin_inset space ~
7792 \end_inset
7793
7794
7795 \begin_inset CommandInset ref
7796 LatexCommand ref
7797 reference "sec:Ecuaciones-multilínea"
7798
7799 \end_inset
7800
7801 :
7802 \begin_inset Formula \begin{eqnarray*}
7803 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7804  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7805 \end{eqnarray*}
7806
7807 \end_inset
7808
7809 En la primera fila se insertan la ecuación y la primera llave.
7810  Aquí es importante insertar el comando de espacio
7811 \begin_inset Foot
7812 status collapsed
7813
7814 \begin_layout Plain Layout
7815 Los comandos para espacios se explican en 
7816 \begin_inset CommandInset ref
7817 LatexCommand ref
7818 reference "sub:Espacio-predefinido"
7819
7820 \end_inset
7821
7822
7823 \end_layout
7824
7825 \end_inset
7826
7827  
7828 \series bold
7829
7830 \backslash
7831 :
7832 \series default
7833  antes de la primera
7834 \series bold
7835  
7836 \series default
7837
7838 \begin_inset Formula $d$
7839 \end_inset
7840
7841 , porque la llave que termina detrás de 
7842 \begin_inset Formula $q$
7843 \end_inset
7844
7845  impide que el siguiente 
7846 \begin_inset Quotes fld
7847 \end_inset
7848
7849 +
7850 \begin_inset Quotes frd
7851 \end_inset
7852
7853  esté rodeado de espacio.
7854 \begin_inset Foot
7855 status collapsed
7856
7857 \begin_layout Plain Layout
7858 Debido a que la llave no es considerada como carácter, véase 
7859 \begin_inset CommandInset ref
7860 LatexCommand ref
7861 reference "sub:Operadores-binarios"
7862
7863 \end_inset
7864
7865
7866 \end_layout
7867
7868 \end_inset
7869
7870  En la segunda fila se inserta la segunda llave: como debe comenzar antes
7871  de 
7872 \begin_inset Formula $b$
7873 \end_inset
7874
7875  se inserta antes el comando 
7876 \series bold
7877
7878 \backslash
7879 hphantom{gggg+
7880 \backslash
7881 :}
7882 \series default
7883 .
7884 \begin_inset Foot
7885 status collapsed
7886
7887 \begin_layout Plain Layout
7888 Más sobre 
7889 \series bold
7890
7891 \backslash
7892 hphantom
7893 \series default
7894  en 
7895 \begin_inset CommandInset ref
7896 LatexCommand ref
7897 reference "sub:Espacios-reservados"
7898
7899 \end_inset
7900
7901
7902 \end_layout
7903
7904 \end_inset
7905
7906  Ese espacio es necesario porque el signo 
7907 \begin_inset Quotes fld
7908 \end_inset
7909
7910 +
7911 \begin_inset Quotes frd
7912 \end_inset
7913
7914  va seguido de un espacio en la ecuación.
7915  La llave se coloca bajo el comando 
7916 \series bold
7917
7918 \backslash
7919 hphantom{bbqq+dddd}
7920 \series default
7921 .
7922  
7923 \end_layout
7924
7925 \begin_layout Standard
7926 Resulta más complicado cuando una llave debe solapar a otra como en el siguiente
7927  ejemplo:
7928 \begin_inset ERT
7929 status collapsed
7930
7931 \begin_layout Plain Layout
7932
7933
7934 \backslash
7935 setlength{
7936 \backslash
7937 jot}{-6pt}
7938 \end_layout
7939
7940 \end_inset
7941
7942
7943 \begin_inset Formula \begin{eqnarray*}
7944  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
7945 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
7946 \end{eqnarray*}
7947
7948 \end_inset
7949
7950
7951 \begin_inset ERT
7952 status collapsed
7953
7954 \begin_layout Plain Layout
7955
7956
7957 \backslash
7958 setlength{
7959 \backslash
7960 jot}{3pt}
7961 \end_layout
7962
7963 \end_inset
7964
7965 La primera fila de la ecuación es igual que la segunda fila del ejemplo
7966  anterior, con la diferencia de que la llave está encima.
7967  La segunda fila contiene la ecuación junto con la segunda llave.
7968  Para evitar que haya demasiado espacio entre la llave superior en la primera
7969  fila y la ecuación hay que reducirlo.
7970  Esto no es fácil de hacer debido a un fallo de LyX.
7971 \begin_inset Foot
7972 status collapsed
7973
7974 \begin_layout Plain Layout
7975 \begin_inset CommandInset href
7976 LatexCommand href
7977 name "LyX-bug #1505"
7978 target "http://www.lyx.org/trac/ticket/1505"
7979
7980 \end_inset
7981
7982
7983 \end_layout
7984
7985 \end_inset
7986
7987  Una solución es cambiar la separación global de filas en la ecuación, 
7988 \series bold
7989
7990 \backslash
7991 jot
7992 \series default
7993
7994 \begin_inset Index idx
7995 status collapsed
7996
7997 \begin_layout Plain Layout
7998 Comandos ! J ! 
7999 \backslash
8000 jot
8001 \end_layout
8002
8003 \end_inset
8004
8005 , en -6
8006 \begin_inset space \thinspace{}
8007 \end_inset
8008
8009 pt insertando antes de la ecuación el comando 
8010 \series bold
8011
8012 \backslash
8013 setlength{
8014 \backslash
8015 jot}{-6pt}
8016 \series default
8017  en modo TeX.
8018  Después de la ecuación se vuelve al valor normal 3
8019 \begin_inset space \thinspace{}
8020 \end_inset
8021
8022 pt de 
8023 \series bold
8024
8025 \backslash
8026 jot
8027 \series default
8028  usando el mismo comando.
8029  Más información sobre separación de filas en ecuaciones en
8030 \begin_inset space ~
8031 \end_inset
8032
8033
8034 \begin_inset CommandInset ref
8035 LatexCommand ref
8036 reference "sub:Separación-de-líneas"
8037
8038 \end_inset
8039
8040 .
8041 \end_layout
8042
8043 \begin_layout Section
8044 Flechas
8045 \begin_inset Index idx
8046 status collapsed
8047
8048 \begin_layout Plain Layout
8049 Flechas
8050 \end_layout
8051
8052 \end_inset
8053
8054
8055 \end_layout
8056
8057 \begin_layout Standard
8058 Las flechas se pueden insertar con el botón 
8059 \begin_inset Graphics
8060         filename ../../images/math/leftarrow.png
8061         scale 85
8062
8063 \end_inset
8064
8065  de la barra de ecuaciones o mediante los comandos listados en las subsecciones
8066  siguientes.
8067 \end_layout
8068
8069 \begin_layout Subsection
8070 Flechas horizontales
8071 \begin_inset Index idx
8072 status collapsed
8073
8074 \begin_layout Plain Layout
8075 Flechas ! horizontales
8076 \end_layout
8077
8078 \end_inset
8079
8080
8081 \end_layout
8082
8083 \begin_layout Standard
8084 \begin_inset space \hfill{}
8085 \end_inset
8086
8087
8088 \begin_inset Tabular
8089 <lyxtabular version="3" rows="8" columns="2">
8090 <features tabularvalignment="middle">
8091 <column alignment="center" valignment="top" width="0pt">
8092 <column alignment="center" valignment="top" width="0pt">
8093 <row>
8094 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8095 \begin_inset Text
8096
8097 \begin_layout Plain Layout
8098 Comando
8099 \end_layout
8100
8101 \end_inset
8102 </cell>
8103 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8104 \begin_inset Text
8105
8106 \begin_layout Plain Layout
8107 Resultado
8108 \end_layout
8109
8110 \end_inset
8111 </cell>
8112 </row>
8113 <row>
8114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8115 \begin_inset Text
8116
8117 \begin_layout Plain Layout
8118
8119 \backslash
8120 gets
8121 \end_layout
8122
8123 \end_inset
8124 </cell>
8125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8126 \begin_inset Text
8127
8128 \begin_layout Plain Layout
8129 \begin_inset Formula $\gets$
8130 \end_inset
8131
8132
8133 \end_layout
8134
8135 \end_inset
8136 </cell>
8137 </row>
8138 <row>
8139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8140 \begin_inset Text
8141
8142 \begin_layout Plain Layout
8143
8144 \backslash
8145 Leftarrow
8146 \end_layout
8147
8148 \end_inset
8149 </cell>
8150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8151 \begin_inset Text
8152
8153 \begin_layout Plain Layout
8154 \begin_inset Formula $\Leftarrow$
8155 \end_inset
8156
8157
8158 \end_layout
8159
8160 \end_inset
8161 </cell>
8162 </row>
8163 <row>
8164 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8165 \begin_inset Text
8166
8167 \begin_layout Plain Layout
8168
8169 \backslash
8170 longleftarrow
8171 \end_layout
8172
8173 \end_inset
8174 </cell>
8175 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8176 \begin_inset Text
8177
8178 \begin_layout Plain Layout
8179 \begin_inset Formula $\longleftarrow$
8180 \end_inset
8181
8182
8183 \end_layout
8184
8185 \end_inset
8186 </cell>
8187 </row>
8188 <row>
8189 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8190 \begin_inset Text
8191
8192 \begin_layout Plain Layout
8193
8194 \backslash
8195 Longleftarrow
8196 \end_layout
8197
8198 \end_inset
8199 </cell>
8200 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8201 \begin_inset Text
8202
8203 \begin_layout Plain Layout
8204 \begin_inset Formula $\Longleftarrow$
8205 \end_inset
8206
8207
8208 \end_layout
8209
8210 \end_inset
8211 </cell>
8212 </row>
8213 <row>
8214 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8215 \begin_inset Text
8216
8217 \begin_layout Plain Layout
8218
8219 \backslash
8220 leftharpoonup
8221 \end_layout
8222
8223 \end_inset
8224 </cell>
8225 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8226 \begin_inset Text
8227
8228 \begin_layout Plain Layout
8229 \begin_inset Formula $\leftharpoonup$
8230 \end_inset
8231
8232
8233 \end_layout
8234
8235 \end_inset
8236 </cell>
8237 </row>
8238 <row>
8239 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8240 \begin_inset Text
8241
8242 \begin_layout Plain Layout
8243
8244 \backslash
8245 leftharpoondown
8246 \end_layout
8247
8248 \end_inset
8249 </cell>
8250 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8251 \begin_inset Text
8252
8253 \begin_layout Plain Layout
8254 \begin_inset Formula $\leftharpoondown$
8255 \end_inset
8256
8257
8258 \end_layout
8259
8260 \end_inset
8261 </cell>
8262 </row>
8263 <row>
8264 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8265 \begin_inset Text
8266
8267 \begin_layout Plain Layout
8268
8269 \backslash
8270 hookleftarrow
8271 \end_layout
8272
8273 \end_inset
8274 </cell>
8275 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8276 \begin_inset Text
8277
8278 \begin_layout Plain Layout
8279 \begin_inset Formula $\hookleftarrow$
8280 \end_inset
8281
8282
8283 \end_layout
8284
8285 \end_inset
8286 </cell>
8287 </row>
8288 </lyxtabular>
8289
8290 \end_inset
8291
8292
8293 \begin_inset space \hfill{}
8294 \end_inset
8295
8296
8297 \begin_inset Tabular
8298 <lyxtabular version="3" rows="8" columns="2">
8299 <features tabularvalignment="middle">
8300 <column alignment="center" valignment="top" width="0pt">
8301 <column alignment="center" valignment="top" width="0pt">
8302 <row>
8303 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8304 \begin_inset Text
8305
8306 \begin_layout Plain Layout
8307 Comando
8308 \end_layout
8309
8310 \end_inset
8311 </cell>
8312 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8313 \begin_inset Text
8314
8315 \begin_layout Plain Layout
8316 Resultado
8317 \end_layout
8318
8319 \end_inset
8320 </cell>
8321 </row>
8322 <row>
8323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8324 \begin_inset Text
8325
8326 \begin_layout Plain Layout
8327
8328 \backslash
8329 to
8330 \end_layout
8331
8332 \end_inset
8333 </cell>
8334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8335 \begin_inset Text
8336
8337 \begin_layout Plain Layout
8338 \begin_inset Formula $\to$
8339 \end_inset
8340
8341
8342 \end_layout
8343
8344 \end_inset
8345 </cell>
8346 </row>
8347 <row>
8348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8349 \begin_inset Text
8350
8351 \begin_layout Plain Layout
8352
8353 \backslash
8354 Rightarrow
8355 \end_layout
8356
8357 \end_inset
8358 </cell>
8359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8360 \begin_inset Text
8361
8362 \begin_layout Plain Layout
8363 \begin_inset Formula $\Rightarrow$
8364 \end_inset
8365
8366
8367 \end_layout
8368
8369 \end_inset
8370 </cell>
8371 </row>
8372 <row>
8373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8374 \begin_inset Text
8375
8376 \begin_layout Plain Layout
8377
8378 \backslash
8379 longrightarrow
8380 \end_layout
8381
8382 \end_inset
8383 </cell>
8384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8385 \begin_inset Text
8386
8387 \begin_layout Plain Layout
8388 \begin_inset Formula $\longrightarrow$
8389 \end_inset
8390
8391
8392 \end_layout
8393
8394 \end_inset
8395 </cell>
8396 </row>
8397 <row>
8398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8399 \begin_inset Text
8400
8401 \begin_layout Plain Layout
8402
8403 \backslash
8404 Longrightarrow
8405 \end_layout
8406
8407 \end_inset
8408 </cell>
8409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8410 \begin_inset Text
8411
8412 \begin_layout Plain Layout
8413 \begin_inset Formula $\Longrightarrow$
8414 \end_inset
8415
8416
8417 \end_layout
8418
8419 \end_inset
8420 </cell>
8421 </row>
8422 <row>
8423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8424 \begin_inset Text
8425
8426 \begin_layout Plain Layout
8427
8428 \backslash
8429 rightharpoonup
8430 \end_layout
8431
8432 \end_inset
8433 </cell>
8434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8435 \begin_inset Text
8436
8437 \begin_layout Plain Layout
8438 \begin_inset Formula $\rightharpoonup$
8439 \end_inset
8440
8441
8442 \end_layout
8443
8444 \end_inset
8445 </cell>
8446 </row>
8447 <row>
8448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8449 \begin_inset Text
8450
8451 \begin_layout Plain Layout
8452
8453 \backslash
8454 rightharpoondown
8455 \end_layout
8456
8457 \end_inset
8458 </cell>
8459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8460 \begin_inset Text
8461
8462 \begin_layout Plain Layout
8463 \begin_inset Formula $\rightharpoondown$
8464 \end_inset
8465
8466
8467 \end_layout
8468
8469 \end_inset
8470 </cell>
8471 </row>
8472 <row>
8473 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8474 \begin_inset Text
8475
8476 \begin_layout Plain Layout
8477
8478 \backslash
8479 hookrightarrow
8480 \end_layout
8481
8482 \end_inset
8483 </cell>
8484 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8485 \begin_inset Text
8486
8487 \begin_layout Plain Layout
8488 \begin_inset Formula $\hookrightarrow$
8489 \end_inset
8490
8491
8492 \end_layout
8493
8494 \end_inset
8495 </cell>
8496 </row>
8497 </lyxtabular>
8498
8499 \end_inset
8500
8501
8502 \begin_inset space \hfill{}
8503 \end_inset
8504
8505
8506 \end_layout
8507
8508 \begin_layout Standard
8509 \begin_inset space \hfill{}
8510 \end_inset
8511
8512
8513 \begin_inset Tabular
8514 <lyxtabular version="3" rows="6" columns="2">
8515 <features tabularvalignment="middle">
8516 <column alignment="center" valignment="top" width="0pt">
8517 <column alignment="center" valignment="top" width="0pt">
8518 <row>
8519 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8520 \begin_inset Text
8521
8522 \begin_layout Plain Layout
8523 Comando
8524 \end_layout
8525
8526 \end_inset
8527 </cell>
8528 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8529 \begin_inset Text
8530
8531 \begin_layout Plain Layout
8532 Resultado
8533 \end_layout
8534
8535 \end_inset
8536 </cell>
8537 </row>
8538 <row>
8539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8540 \begin_inset Text
8541
8542 \begin_layout Plain Layout
8543
8544 \backslash
8545 leftrightarrow
8546 \end_layout
8547
8548 \end_inset
8549 </cell>
8550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8551 \begin_inset Text
8552
8553 \begin_layout Plain Layout
8554 \begin_inset Formula $\leftrightarrow$
8555 \end_inset
8556
8557
8558 \end_layout
8559
8560 \end_inset
8561 </cell>
8562 </row>
8563 <row>
8564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8565 \begin_inset Text
8566
8567 \begin_layout Plain Layout
8568
8569 \backslash
8570 Leftrightarrow
8571 \end_layout
8572
8573 \end_inset
8574 </cell>
8575 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8576 \begin_inset Text
8577
8578 \begin_layout Plain Layout
8579 \begin_inset Formula $\Leftrightarrow$
8580 \end_inset
8581
8582
8583 \end_layout
8584
8585 \end_inset
8586 </cell>
8587 </row>
8588 <row>
8589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8590 \begin_inset Text
8591
8592 \begin_layout Plain Layout
8593
8594 \backslash
8595 longleftrightarrow
8596 \end_layout
8597
8598 \end_inset
8599 </cell>
8600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8601 \begin_inset Text
8602
8603 \begin_layout Plain Layout
8604 \begin_inset Formula $\longleftrightarrow$
8605 \end_inset
8606
8607
8608 \end_layout
8609
8610 \end_inset
8611 </cell>
8612 </row>
8613 <row>
8614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8615 \begin_inset Text
8616
8617 \begin_layout Plain Layout
8618
8619 \backslash
8620 Longleftrightarrow
8621 \end_layout
8622
8623 \end_inset
8624 </cell>
8625 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8626 \begin_inset Text
8627
8628 \begin_layout Plain Layout
8629 \begin_inset Formula $\Longleftrightarrow$
8630 \end_inset
8631
8632
8633 \end_layout
8634
8635 \end_inset
8636 </cell>
8637 </row>
8638 <row>
8639 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8640 \begin_inset Text
8641
8642 \begin_layout Plain Layout
8643
8644 \backslash
8645 rightleftharpoons
8646 \end_layout
8647
8648 \end_inset
8649 </cell>
8650 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8651 \begin_inset Text
8652
8653 \begin_layout Plain Layout
8654 \begin_inset Formula $\rightleftharpoons$
8655 \end_inset
8656
8657
8658 \end_layout
8659
8660 \end_inset
8661 </cell>
8662 </row>
8663 </lyxtabular>
8664
8665 \end_inset
8666
8667
8668 \begin_inset space \hspace{}
8669 \length 25pt
8670 \end_inset
8671
8672
8673 \begin_inset space \hfill{}
8674 \end_inset
8675
8676
8677 \begin_inset Tabular
8678 <lyxtabular version="3" rows="5" columns="2">
8679 <features tabularvalignment="middle">
8680 <column alignment="center" valignment="top" width="0pt">
8681 <column alignment="center" valignment="top" width="0pt">
8682 <row>
8683 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8684 \begin_inset Text
8685
8686 \begin_layout Plain Layout
8687 Comando
8688 \end_layout
8689
8690 \end_inset
8691 </cell>
8692 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8693 \begin_inset Text
8694
8695 \begin_layout Plain Layout
8696 Resultado
8697 \end_layout
8698
8699 \end_inset
8700 </cell>
8701 </row>
8702 <row>
8703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8704 \begin_inset Text
8705
8706 \begin_layout Plain Layout
8707
8708 \backslash
8709 mapsto
8710 \end_layout
8711
8712 \end_inset
8713 </cell>
8714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8715 \begin_inset Text
8716
8717 \begin_layout Plain Layout
8718 \begin_inset Formula $\mapsto$
8719 \end_inset
8720
8721
8722 \end_layout
8723
8724 \end_inset
8725 </cell>
8726 </row>
8727 <row>
8728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8729 \begin_inset Text
8730
8731 \begin_layout Plain Layout
8732
8733 \backslash
8734 longmapsto
8735 \end_layout
8736
8737 \end_inset
8738 </cell>
8739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8740 \begin_inset Text
8741
8742 \begin_layout Plain Layout
8743 \begin_inset Formula $\longmapsto$
8744 \end_inset
8745
8746
8747 \end_layout
8748
8749 \end_inset
8750 </cell>
8751 </row>
8752 <row>
8753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8754 \begin_inset Text
8755
8756 \begin_layout Plain Layout
8757
8758 \backslash
8759 leadsto
8760 \end_layout
8761
8762 \end_inset
8763 </cell>
8764 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8765 \begin_inset Text
8766
8767 \begin_layout Plain Layout
8768 \begin_inset Formula $\leadsto$
8769 \end_inset
8770
8771
8772 \end_layout
8773
8774 \end_inset
8775 </cell>
8776 </row>
8777 <row>
8778 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8779 \begin_inset Text
8780
8781 \begin_layout Plain Layout
8782
8783 \backslash
8784 dasharrow
8785 \end_layout
8786
8787 \end_inset
8788 </cell>
8789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8790 \begin_inset Text
8791
8792 \begin_layout Plain Layout
8793 \begin_inset Formula $\dasharrow$
8794 \end_inset
8795
8796
8797 \end_layout
8798
8799 \end_inset
8800 </cell>
8801 </row>
8802 </lyxtabular>
8803
8804 \end_inset
8805
8806
8807 \begin_inset space \hfill{}
8808 \end_inset
8809
8810
8811 \begin_inset VSpace medskip
8812 \end_inset
8813
8814
8815 \end_layout
8816
8817 \begin_layout Standard
8818 Las flechas que se utilizan como acentos, p.
8819 \begin_inset space \thinspace{}
8820 \end_inset
8821
8822 e.
8823  en vectores, se describen en 
8824 \begin_inset CommandInset ref
8825 LatexCommand ref
8826 reference "sec:Acentos"
8827
8828 \end_inset
8829
8830 .
8831  
8832 \begin_inset VSpace bigskip
8833 \end_inset
8834
8835
8836 \end_layout
8837
8838 \begin_layout Standard
8839 Además hay las flechas etiquetadas
8840 \begin_inset Index idx
8841 status collapsed
8842
8843 \begin_layout Plain Layout
8844 Flechas ! etiquetadas
8845 \end_layout
8846
8847 \end_inset
8848
8849  
8850 \series bold
8851
8852 \backslash
8853 xleftarrow
8854 \series default
8855
8856 \begin_inset Index idx
8857 status collapsed
8858
8859 \begin_layout Plain Layout
8860 Comandos ! X ! 
8861 \backslash
8862 xleftarrow
8863 \end_layout
8864
8865 \end_inset
8866
8867  y 
8868 \series bold
8869
8870 \backslash
8871 xrightarrow
8872 \series default
8873
8874 \begin_inset Index idx
8875 status collapsed
8876
8877 \begin_layout Plain Layout
8878 Comandos ! X ! 
8879 \backslash
8880 xrightarrow
8881 \begin_inset ERT
8882 status collapsed
8883
8884 \begin_layout Plain Layout
8885
8886
8887 \backslash
8888 vspace{4mm}
8889 \end_layout
8890
8891 \end_inset
8892
8893
8894 \end_layout
8895
8896 \end_inset
8897
8898 .
8899  Cuando se inserta uno de estos comandos en una ecuación aparece una flecha
8900  con dos marcos azules donde se puede insertar la etiqueta.
8901  La longitud de la flecha se adapta a la anchura de la etiqueta.
8902 \end_layout
8903
8904 \begin_layout Standard
8905 \noindent
8906 \align center
8907 \begin_inset Tabular
8908 <lyxtabular version="3" rows="3" columns="2">
8909 <features tabularvalignment="middle">
8910 <column alignment="center" valignment="top" width="0">
8911 <column alignment="center" valignment="top" width="0">
8912 <row>
8913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8914 \begin_inset Text
8915
8916 \begin_layout Plain Layout
8917 Comando
8918 \end_layout
8919
8920 \end_inset
8921 </cell>
8922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8923 \begin_inset Text
8924
8925 \begin_layout Plain Layout
8926 Resultado
8927 \begin_inset Note Note
8928 status collapsed
8929
8930 \begin_layout Plain Layout
8931
8932 \series bold
8933
8934 \backslash
8935 raisebox
8936 \series default
8937  se usa sólo como espaciador
8938 \end_layout
8939
8940 \end_inset
8941
8942
8943 \end_layout
8944
8945 \end_inset
8946 </cell>
8947 </row>
8948 <row>
8949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8950 \begin_inset Text
8951
8952 \begin_layout Plain Layout
8953 F(a)
8954 \backslash
8955 xleftarrow
8956 \begin_inset ERT
8957 status collapsed
8958
8959 \begin_layout Plain Layout
8960
8961
8962 \backslash
8963 spce 
8964 \end_layout
8965
8966 \end_inset
8967
8968 x=a
8969 \begin_inset Formula $\downarrow$
8970 \end_inset
8971
8972 x>0
8973 \begin_inset Formula $\to$
8974 \end_inset
8975
8976 F(x)
8977 \end_layout
8978
8979 \end_inset
8980 </cell>
8981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8982 \begin_inset Text
8983
8984 \begin_layout Plain Layout
8985 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
8986 \end_inset
8987
8988
8989 \end_layout
8990
8991 \end_inset
8992 </cell>
8993 </row>
8994 <row>
8995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8996 \begin_inset Text
8997
8998 \begin_layout Plain Layout
8999 F(x)
9000 \backslash
9001 xrightarrow
9002 \begin_inset ERT
9003 status collapsed
9004
9005 \begin_layout Plain Layout
9006
9007
9008 \backslash
9009 spce 
9010 \end_layout
9011
9012 \end_inset
9013
9014 x=a
9015 \begin_inset Formula $\downarrow$
9016 \end_inset
9017
9018 x>0
9019 \begin_inset Formula $\to$
9020 \end_inset
9021
9022 F(a)
9023 \end_layout
9024
9025 \end_inset
9026 </cell>
9027 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9028 \begin_inset Text
9029
9030 \begin_layout Plain Layout
9031 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
9032 \end_inset
9033
9034
9035 \end_layout
9036
9037 \end_inset
9038 </cell>
9039 </row>
9040 </lyxtabular>
9041
9042 \end_inset
9043
9044
9045 \end_layout
9046
9047 \begin_layout Subsection
9048 Flechas verticales y diagonales
9049 \begin_inset Index idx
9050 status collapsed
9051
9052 \begin_layout Plain Layout
9053 Flechas ! diagonales
9054 \end_layout
9055
9056 \end_inset
9057
9058
9059 \begin_inset Index idx
9060 status collapsed
9061
9062 \begin_layout Plain Layout
9063 Flechas ! verticales
9064 \end_layout
9065
9066 \end_inset
9067
9068
9069 \end_layout
9070
9071 \begin_layout Standard
9072 \begin_inset space \hfill{}
9073 \end_inset
9074
9075
9076 \begin_inset Tabular
9077 <lyxtabular version="3" rows="7" columns="2">
9078 <features tabularvalignment="middle">
9079 <column alignment="center" valignment="top" width="0pt">
9080 <column alignment="center" valignment="top" width="0pt">
9081 <row>
9082 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9083 \begin_inset Text
9084
9085 \begin_layout Plain Layout
9086 Comando
9087 \end_layout
9088
9089 \end_inset
9090 </cell>
9091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9092 \begin_inset Text
9093
9094 \begin_layout Plain Layout
9095 Resultado
9096 \end_layout
9097
9098 \end_inset
9099 </cell>
9100 </row>
9101 <row>
9102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9103 \begin_inset Text
9104
9105 \begin_layout Plain Layout
9106
9107 \backslash
9108 uparrow
9109 \end_layout
9110
9111 \end_inset
9112 </cell>
9113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9114 \begin_inset Text
9115
9116 \begin_layout Plain Layout
9117 \begin_inset Formula $\uparrow$
9118 \end_inset
9119
9120
9121 \end_layout
9122
9123 \end_inset
9124 </cell>
9125 </row>
9126 <row>
9127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9128 \begin_inset Text
9129
9130 \begin_layout Plain Layout
9131
9132 \backslash
9133 Uparrow
9134 \end_layout
9135
9136 \end_inset
9137 </cell>
9138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9139 \begin_inset Text
9140
9141 \begin_layout Plain Layout
9142 \begin_inset Formula $\Uparrow$
9143 \end_inset
9144
9145
9146 \end_layout
9147
9148 \end_inset
9149 </cell>
9150 </row>
9151 <row>
9152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9153 \begin_inset Text
9154
9155 \begin_layout Plain Layout
9156
9157 \backslash
9158 updownarrow
9159 \end_layout
9160
9161 \end_inset
9162 </cell>
9163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9164 \begin_inset Text
9165
9166 \begin_layout Plain Layout
9167 \begin_inset Formula $\updownarrow$
9168 \end_inset
9169
9170
9171 \end_layout
9172
9173 \end_inset
9174 </cell>
9175 </row>
9176 <row>
9177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9178 \begin_inset Text
9179
9180 \begin_layout Plain Layout
9181
9182 \backslash
9183 Updownarrow
9184 \end_layout
9185
9186 \end_inset
9187 </cell>
9188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9189 \begin_inset Text
9190
9191 \begin_layout Plain Layout
9192 \begin_inset Formula $\Updownarrow$
9193 \end_inset
9194
9195
9196 \end_layout
9197
9198 \end_inset
9199 </cell>
9200 </row>
9201 <row>
9202 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9203 \begin_inset Text
9204
9205 \begin_layout Plain Layout
9206
9207 \backslash
9208 Downarrow
9209 \end_layout
9210
9211 \end_inset
9212 </cell>
9213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9214 \begin_inset Text
9215
9216 \begin_layout Plain Layout
9217 \begin_inset Formula $\Downarrow$
9218 \end_inset
9219
9220
9221 \end_layout
9222
9223 \end_inset
9224 </cell>
9225 </row>
9226 <row>
9227 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9228 \begin_inset Text
9229
9230 \begin_layout Plain Layout
9231
9232 \backslash
9233 downarrow
9234 \end_layout
9235
9236 \end_inset
9237 </cell>
9238 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9239 \begin_inset Text
9240
9241 \begin_layout Plain Layout
9242 \begin_inset Formula $\downarrow$
9243 \end_inset
9244
9245
9246 \end_layout
9247
9248 \end_inset
9249 </cell>
9250 </row>
9251 </lyxtabular>
9252
9253 \end_inset
9254
9255
9256 \begin_inset space \hfill{}
9257 \end_inset
9258
9259
9260 \begin_inset Tabular
9261 <lyxtabular version="3" rows="5" columns="2">
9262 <features tabularvalignment="middle">
9263 <column alignment="center" valignment="top" width="0pt">
9264 <column alignment="center" valignment="top" width="0pt">
9265 <row>
9266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9267 \begin_inset Text
9268
9269 \begin_layout Plain Layout
9270 Comando
9271 \end_layout
9272
9273 \end_inset
9274 </cell>
9275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9276 \begin_inset Text
9277
9278 \begin_layout Plain Layout
9279 Resultado
9280 \end_layout
9281
9282 \end_inset
9283 </cell>
9284 </row>
9285 <row>
9286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9287 \begin_inset Text
9288
9289 \begin_layout Plain Layout
9290
9291 \backslash
9292 nearrow
9293 \end_layout
9294
9295 \end_inset
9296 </cell>
9297 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9298 \begin_inset Text
9299
9300 \begin_layout Plain Layout
9301 \begin_inset Formula $\nearrow$
9302 \end_inset
9303
9304
9305 \end_layout
9306
9307 \end_inset
9308 </cell>
9309 </row>
9310 <row>
9311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9312 \begin_inset Text
9313
9314 \begin_layout Plain Layout
9315
9316 \backslash
9317 searrow
9318 \end_layout
9319
9320 \end_inset
9321 </cell>
9322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9323 \begin_inset Text
9324
9325 \begin_layout Plain Layout
9326 \begin_inset Formula $\searrow$
9327 \end_inset
9328
9329
9330 \end_layout
9331
9332 \end_inset
9333 </cell>
9334 </row>
9335 <row>
9336 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9337 \begin_inset Text
9338
9339 \begin_layout Plain Layout
9340
9341 \backslash
9342 swarrow
9343 \end_layout
9344
9345 \end_inset
9346 </cell>
9347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9348 \begin_inset Text
9349
9350 \begin_layout Plain Layout
9351 \begin_inset Formula $\swarrow$
9352 \end_inset
9353
9354
9355 \end_layout
9356
9357 \end_inset
9358 </cell>
9359 </row>
9360 <row>
9361 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9362 \begin_inset Text
9363
9364 \begin_layout Plain Layout
9365
9366 \backslash
9367 nwarrow
9368 \end_layout
9369
9370 \end_inset
9371 </cell>
9372 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9373 \begin_inset Text
9374
9375 \begin_layout Plain Layout
9376 \begin_inset Formula $\nwarrow$
9377 \end_inset
9378
9379
9380 \end_layout
9381
9382 \end_inset
9383 </cell>
9384 </row>
9385 </lyxtabular>
9386
9387 \end_inset
9388
9389
9390 \begin_inset space \hfill{}
9391 \end_inset
9392
9393
9394 \end_layout
9395
9396 \begin_layout Standard
9397 \begin_inset VSpace medskip
9398 \end_inset
9399
9400
9401 \end_layout
9402
9403 \begin_layout Standard
9404 Las flechas verticales también se pueden usar como delimitadores junto con
9405  los comandos descritos en
9406 \begin_inset space ~
9407 \end_inset
9408
9409
9410 \begin_inset CommandInset ref
9411 LatexCommand ref
9412 reference "sub:Tamaño-manual-de"
9413
9414 \end_inset
9415
9416  y 
9417 \begin_inset CommandInset ref
9418 LatexCommand ref
9419 reference "sub:Tamaño-automático-de"
9420
9421 \end_inset
9422
9423 .
9424 \end_layout
9425
9426 \begin_layout Standard
9427
9428 \end_layout
9429
9430 \begin_layout Section
9431 Acentos
9432 \begin_inset CommandInset label
9433 LatexCommand label
9434 name "sec:Acentos"
9435
9436 \end_inset
9437
9438
9439 \begin_inset Index idx
9440 status collapsed
9441
9442 \begin_layout Plain Layout
9443 Acentos
9444 \end_layout
9445
9446 \end_inset
9447
9448
9449 \end_layout
9450
9451 \begin_layout Standard
9452 Los acentos se pueden insertar con el botón 
9453 \begin_inset Graphics
9454         filename ../../images/math/hat.png
9455         scale 85
9456
9457 \end_inset
9458
9459  o mediante los comandos listados en las siguientes subsecciones.
9460 \end_layout
9461
9462 \begin_layout Subsection
9463 Acentos para un carácter
9464 \begin_inset ERT
9465 status collapsed
9466
9467 \begin_layout Plain Layout
9468
9469
9470 \backslash
9471 texorpdfstring{
9472 \end_layout
9473
9474 \end_inset
9475
9476
9477 \begin_inset Foot
9478 status collapsed
9479
9480 \begin_layout Plain Layout
9481 Para acentos en texto, véase 
9482 \begin_inset CommandInset ref
9483 LatexCommand ref
9484 reference "sub:Acentos-en-texto"
9485
9486 \end_inset
9487
9488
9489 \end_layout
9490
9491 \end_inset
9492
9493
9494 \begin_inset ERT
9495 status collapsed
9496
9497 \begin_layout Plain Layout
9498
9499 }{}
9500 \end_layout
9501
9502 \end_inset
9503
9504
9505 \begin_inset Note Note
9506 status collapsed
9507
9508 \begin_layout Plain Layout
9509
9510 \backslash
9511 texorpdfstring se usa para evitar que la nota al pie aparezca en los marcadores
9512  PDF.
9513 \end_layout
9514
9515 \begin_layout Plain Layout
9516 Más sobre 
9517 \backslash
9518 texorpdfstring en la sección 
9519 \begin_inset CommandInset ref
9520 LatexCommand ref
9521 reference "sub:Ecuaciones-en-encabezados"
9522
9523 \end_inset
9524
9525 .
9526 \end_layout
9527
9528 \end_inset
9529
9530
9531 \begin_inset CommandInset label
9532 LatexCommand label
9533 name "sub:Acentos-para-un"
9534
9535 \end_inset
9536
9537
9538 \begin_inset Index idx
9539 status collapsed
9540
9541 \begin_layout Plain Layout
9542 Acentos ! para un carácter
9543 \end_layout
9544
9545 \end_inset
9546
9547
9548 \end_layout
9549
9550 \begin_layout Standard
9551 \begin_inset space \hfill{}
9552 \end_inset
9553
9554
9555 \begin_inset Tabular
9556 <lyxtabular version="3" rows="8" columns="2">
9557 <features tabularvalignment="middle">
9558 <column alignment="center" valignment="top" width="0pt">
9559 <column alignment="center" valignment="top" width="0pt">
9560 <row>
9561 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9562 \begin_inset Text
9563
9564 \begin_layout Plain Layout
9565 Comando
9566 \end_layout
9567
9568 \end_inset
9569 </cell>
9570 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9571 \begin_inset Text
9572
9573 \begin_layout Plain Layout
9574 Resultado
9575 \begin_inset Note Note
9576 status collapsed
9577
9578 \begin_layout Plain Layout
9579
9580 \series bold
9581
9582 \backslash
9583 raisebox
9584 \series default
9585  se usa sólo como espaciador
9586 \end_layout
9587
9588 \end_inset
9589
9590
9591 \end_layout
9592
9593 \end_inset
9594 </cell>
9595 </row>
9596 <row>
9597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9598 \begin_inset Text
9599
9600 \begin_layout Plain Layout
9601
9602 \backslash
9603 dot
9604 \begin_inset ERT
9605 status collapsed
9606
9607 \begin_layout Plain Layout
9608
9609
9610 \backslash
9611 spce 
9612 \end_layout
9613
9614 \end_inset
9615
9616 A
9617 \end_layout
9618
9619 \end_inset
9620 </cell>
9621 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9622 \begin_inset Text
9623
9624 \begin_layout Plain Layout
9625 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9626 \end_inset
9627
9628
9629 \end_layout
9630
9631 \end_inset
9632 </cell>
9633 </row>
9634 <row>
9635 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9636 \begin_inset Text
9637
9638 \begin_layout Plain Layout
9639
9640 \backslash
9641 ddot
9642 \begin_inset ERT
9643 status collapsed
9644
9645 \begin_layout Plain Layout
9646
9647
9648 \backslash
9649 spce 
9650 \end_layout
9651
9652 \end_inset
9653
9654 A
9655 \end_layout
9656
9657 \end_inset
9658 </cell>
9659 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9660 \begin_inset Text
9661
9662 \begin_layout Plain Layout
9663 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9664 \end_inset
9665
9666
9667 \end_layout
9668
9669 \end_inset
9670 </cell>
9671 </row>
9672 <row>
9673 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9674 \begin_inset Text
9675
9676 \begin_layout Plain Layout
9677
9678 \backslash
9679 dddot
9680 \begin_inset ERT
9681 status collapsed
9682
9683 \begin_layout Plain Layout
9684
9685
9686 \backslash
9687 spce 
9688 \end_layout
9689
9690 \end_inset
9691
9692 A
9693 \end_layout
9694
9695 \end_inset
9696 </cell>
9697 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9698 \begin_inset Text
9699
9700 \begin_layout Plain Layout
9701 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9702 \end_inset
9703
9704
9705 \end_layout
9706
9707 \end_inset
9708 </cell>
9709 </row>
9710 <row>
9711 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9712 \begin_inset Text
9713
9714 \begin_layout Plain Layout
9715
9716 \backslash
9717 ddddot
9718 \begin_inset ERT
9719 status collapsed
9720
9721 \begin_layout Plain Layout
9722
9723
9724 \backslash
9725 spce 
9726 \end_layout
9727
9728 \end_inset
9729
9730 A
9731 \end_layout
9732
9733 \end_inset
9734 </cell>
9735 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9736 \begin_inset Text
9737
9738 \begin_layout Plain Layout
9739 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9740 \end_inset
9741
9742
9743 \end_layout
9744
9745 \end_inset
9746 </cell>
9747 </row>
9748 <row>
9749 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9750 \begin_inset Text
9751
9752 \begin_layout Plain Layout
9753
9754 \backslash
9755 vec
9756 \begin_inset ERT
9757 status collapsed
9758
9759 \begin_layout Plain Layout
9760
9761
9762 \backslash
9763 spce 
9764 \end_layout
9765
9766 \end_inset
9767
9768 A
9769 \begin_inset Index idx
9770 status collapsed
9771
9772 \begin_layout Plain Layout
9773 Vectores
9774 \end_layout
9775
9776 \end_inset
9777
9778
9779 \end_layout
9780
9781 \end_inset
9782 </cell>
9783 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9784 \begin_inset Text
9785
9786 \begin_layout Plain Layout
9787 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9788 \end_inset
9789
9790
9791 \end_layout
9792
9793 \end_inset
9794 </cell>
9795 </row>
9796 <row>
9797 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9798 \begin_inset Text
9799
9800 \begin_layout Plain Layout
9801
9802 \backslash
9803 bar
9804 \begin_inset ERT
9805 status collapsed
9806
9807 \begin_layout Plain Layout
9808
9809
9810 \backslash
9811 spce 
9812 \end_layout
9813
9814 \end_inset
9815
9816 A
9817 \end_layout
9818
9819 \end_inset
9820 </cell>
9821 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9822 \begin_inset Text
9823
9824 \begin_layout Plain Layout
9825 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9826 \end_inset
9827
9828
9829 \end_layout
9830
9831 \end_inset
9832 </cell>
9833 </row>
9834 <row>
9835 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9836 \begin_inset Text
9837
9838 \begin_layout Plain Layout
9839
9840 \backslash
9841 mathring
9842 \begin_inset ERT
9843 status collapsed
9844
9845 \begin_layout Plain Layout
9846
9847
9848 \backslash
9849 spce 
9850 \end_layout
9851
9852 \end_inset
9853
9854 A
9855 \end_layout
9856
9857 \end_inset
9858 </cell>
9859 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9860 \begin_inset Text
9861
9862 \begin_layout Plain Layout
9863 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9864 \end_inset
9865
9866
9867 \end_layout
9868
9869 \end_inset
9870 </cell>
9871 </row>
9872 </lyxtabular>
9873
9874 \end_inset
9875
9876
9877 \begin_inset space \hfill{}
9878 \end_inset
9879
9880
9881 \begin_inset Tabular
9882 <lyxtabular version="3" rows="7" columns="2">
9883 <features tabularvalignment="middle">
9884 <column alignment="center" valignment="top" width="0pt">
9885 <column alignment="center" valignment="top" width="0pt">
9886 <row>
9887 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9888 \begin_inset Text
9889
9890 \begin_layout Plain Layout
9891 Comando
9892 \end_layout
9893
9894 \end_inset
9895 </cell>
9896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9897 \begin_inset Text
9898
9899 \begin_layout Plain Layout
9900 Resultado
9901 \begin_inset Note Note
9902 status collapsed
9903
9904 \begin_layout Plain Layout
9905
9906 \series bold
9907
9908 \backslash
9909 raisebox
9910 \series default
9911  se usa sólo como espaciador
9912 \end_layout
9913
9914 \end_inset
9915
9916
9917 \end_layout
9918
9919 \end_inset
9920 </cell>
9921 </row>
9922 <row>
9923 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9924 \begin_inset Text
9925
9926 \begin_layout Plain Layout
9927
9928 \backslash
9929 tilde
9930 \begin_inset ERT
9931 status collapsed
9932
9933 \begin_layout Plain Layout
9934
9935
9936 \backslash
9937 spce 
9938 \end_layout
9939
9940 \end_inset
9941
9942 A
9943 \end_layout
9944
9945 \end_inset
9946 </cell>
9947 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9948 \begin_inset Text
9949
9950 \begin_layout Plain Layout
9951 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
9952 \end_inset
9953
9954
9955 \end_layout
9956
9957 \end_inset
9958 </cell>
9959 </row>
9960 <row>
9961 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9962 \begin_inset Text
9963
9964 \begin_layout Plain Layout
9965
9966 \backslash
9967 hat
9968 \begin_inset ERT
9969 status collapsed
9970
9971 \begin_layout Plain Layout
9972
9973
9974 \backslash
9975 spce 
9976 \end_layout
9977
9978 \end_inset
9979
9980 A
9981 \end_layout
9982
9983 \end_inset
9984 </cell>
9985 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9986 \begin_inset Text
9987
9988 \begin_layout Plain Layout
9989 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
9990 \end_inset
9991
9992
9993 \end_layout
9994
9995 \end_inset
9996 </cell>
9997 </row>
9998 <row>
9999 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10000 \begin_inset Text
10001
10002 \begin_layout Plain Layout
10003
10004 \backslash
10005 check
10006 \begin_inset ERT
10007 status collapsed
10008
10009 \begin_layout Plain Layout
10010
10011
10012 \backslash
10013 spce 
10014 \end_layout
10015
10016 \end_inset
10017
10018 A
10019 \end_layout
10020
10021 \end_inset
10022 </cell>
10023 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10024 \begin_inset Text
10025
10026 \begin_layout Plain Layout
10027 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
10028 \end_inset
10029
10030
10031 \end_layout
10032
10033 \end_inset
10034 </cell>
10035 </row>
10036 <row>
10037 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10038 \begin_inset Text
10039
10040 \begin_layout Plain Layout
10041
10042 \backslash
10043 acute
10044 \begin_inset ERT
10045 status collapsed
10046
10047 \begin_layout Plain Layout
10048
10049
10050 \backslash
10051 spce 
10052 \end_layout
10053
10054 \end_inset
10055
10056 A
10057 \end_layout
10058
10059 \end_inset
10060 </cell>
10061 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10062 \begin_inset Text
10063
10064 \begin_layout Plain Layout
10065 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
10066 \end_inset
10067
10068
10069 \end_layout
10070
10071 \end_inset
10072 </cell>
10073 </row>
10074 <row>
10075 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10076 \begin_inset Text
10077
10078 \begin_layout Plain Layout
10079
10080 \backslash
10081 grave
10082 \begin_inset ERT
10083 status collapsed
10084
10085 \begin_layout Plain Layout
10086
10087
10088 \backslash
10089 spce 
10090 \end_layout
10091
10092 \end_inset
10093
10094 A
10095 \end_layout
10096
10097 \end_inset
10098 </cell>
10099 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10100 \begin_inset Text
10101
10102 \begin_layout Plain Layout
10103 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
10104 \end_inset
10105
10106
10107 \end_layout
10108
10109 \end_inset
10110 </cell>
10111 </row>
10112 <row>
10113 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10114 \begin_inset Text
10115
10116 \begin_layout Plain Layout
10117
10118 \backslash
10119 breve
10120 \begin_inset ERT
10121 status collapsed
10122
10123 \begin_layout Plain Layout
10124
10125
10126 \backslash
10127 spce 
10128 \end_layout
10129
10130 \end_inset
10131
10132 A
10133 \end_layout
10134
10135 \end_inset
10136 </cell>
10137 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10138 \begin_inset Text
10139
10140 \begin_layout Plain Layout
10141 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
10142 \end_inset
10143
10144
10145 \end_layout
10146
10147 \end_inset
10148 </cell>
10149 </row>
10150 </lyxtabular>
10151
10152 \end_inset
10153
10154
10155 \begin_inset space \hfill{}
10156 \end_inset
10157
10158
10159 \end_layout
10160
10161 \begin_layout Standard
10162 \begin_inset VSpace bigskip
10163 \end_inset
10164
10165
10166 \end_layout
10167
10168 \begin_layout Standard
10169 En ecuaciones se pueden insertar acentos como é directamente.
10170  LyX los transformará al comando de acento correspondiente.
10171  Para poner diéresis
10172 \begin_inset Index idx
10173 status collapsed
10174
10175 \begin_layout Plain Layout
10176 Dieresis@Diéresis
10177 \end_layout
10178
10179 \end_inset
10180
10181  es mejor insertar comillas antes de la vocal.
10182  Estos dos caracteres son considerados por LaTeX como 
10183 \emph on
10184 un solo
10185 \emph default
10186  carácter si la parte de la ecuación con la diéresis se marca en idioma
10187  alemán.
10188 \begin_inset Foot
10189 status collapsed
10190
10191 \begin_layout Plain Layout
10192 O algún otro idioma que use acentos, p.
10193 \begin_inset space \thinspace{}
10194 \end_inset
10195
10196 e.
10197  catalán.
10198  Aunque esto no funciona en español por algún conflicto con el estilo 
10199 \series bold
10200 spanish
10201 \series default
10202  de 
10203 \series bold
10204 babel
10205 \series default
10206 , no es necesario: se puede escribir 
10207 \begin_inset Formula $ï$
10208 \end_inset
10209
10210  en una ecuación igual que se hace en texto normal, ï.
10211  (
10212 \emph on
10213 N.
10214 \begin_inset space \thinspace{}
10215 \end_inset
10216
10217 del t.
10218 \emph default
10219 )
10220 \end_layout
10221
10222 \end_inset
10223
10224  A diferencia de 
10225 \series bold
10226
10227 \backslash
10228 ddot
10229 \series default
10230 , con este método se generan diéresis 
10231 \begin_inset Quotes fld
10232 \end_inset
10233
10234 reales
10235 \begin_inset Quotes frd
10236 \end_inset
10237
10238 , como se demuestra en el siguiente ejemplo:
10239 \begin_inset VSpace -2mm
10240 \end_inset
10241
10242
10243 \end_layout
10244
10245 \begin_layout Standard
10246 \noindent
10247 \align center
10248 \begin_inset Tabular
10249 <lyxtabular version="3" rows="3" columns="2">
10250 <features tabularvalignment="middle">
10251 <column alignment="center" valignment="top" width="0">
10252 <column alignment="center" valignment="top" width="0">
10253 <row>
10254 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10255 \begin_inset Text
10256
10257 \begin_layout Plain Layout
10258 Comando
10259 \end_layout
10260
10261 \end_inset
10262 </cell>
10263 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10264 \begin_inset Text
10265
10266 \begin_layout Plain Layout
10267 Resultado
10268 \begin_inset Note Note
10269 status collapsed
10270
10271 \begin_layout Plain Layout
10272
10273 \series bold
10274
10275 \backslash
10276 raisebox
10277 \series default
10278  se usa sólo como espaciador.
10279 \end_layout
10280
10281 \end_inset
10282
10283
10284 \end_layout
10285
10286 \end_inset
10287 </cell>
10288 </row>
10289 <row>
10290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10291 \begin_inset Text
10292
10293 \begin_layout Plain Layout
10294 ï
10295 \end_layout
10296
10297 \end_inset
10298 </cell>
10299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10300 \begin_inset Text
10301
10302 \begin_layout Plain Layout
10303 \begin_inset Formula $ï$
10304 \end_inset
10305
10306
10307 \end_layout
10308
10309 \end_inset
10310 </cell>
10311 </row>
10312 <row>
10313 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10314 \begin_inset Text
10315
10316 \begin_layout Plain Layout
10317
10318 \backslash
10319 ddot
10320 \begin_inset ERT
10321 status collapsed
10322
10323 \begin_layout Plain Layout
10324
10325
10326 \backslash
10327 spce 
10328 \end_layout
10329
10330 \end_inset
10331
10332 i
10333 \end_layout
10334
10335 \end_inset
10336 </cell>
10337 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10338 \begin_inset Text
10339
10340 \begin_layout Plain Layout
10341 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10342 \end_inset
10343
10344
10345 \end_layout
10346
10347 \end_inset
10348 </cell>
10349 </row>
10350 </lyxtabular>
10351
10352 \end_inset
10353
10354
10355 \end_layout
10356
10357 \begin_layout Standard
10358 Otra ventaja frente a 
10359 \series bold
10360
10361 \backslash
10362 ddot
10363 \series default
10364  es que la diéresis puede convertirse directamente a texto matemático, porque
10365  los anteriores comandos para acentos 
10366 \emph on
10367 no están permitidos en texto matemático
10368 \emph default
10369 .
10370  Para convertir un carácter acentuado a texto matemático, se debe convertir
10371  sólo el carácter bajo el acento.
10372  Esto también se aplica para otras conversiones, p.
10373 \begin_inset space \thinspace{}
10374 \end_inset
10375
10376 e.
10377 \begin_inset space ~
10378 \end_inset
10379
10380 cursiva o negrita.
10381 \end_layout
10382
10383 \begin_layout Standard
10384 En texto matemático, la diéresis y otros acentos pueden insertarse directamente.
10385 \end_layout
10386
10387 \begin_layout Subsection
10388 Acentos para operadores
10389 \begin_inset Index idx
10390 status collapsed
10391
10392 \begin_layout Plain Layout
10393 Acentos ! en operadores
10394 \end_layout
10395
10396 \end_inset
10397
10398
10399 \end_layout
10400
10401 \begin_layout Standard
10402 Con los comandos 
10403 \series bold
10404
10405 \backslash
10406 overset
10407 \series default
10408
10409 \begin_inset Index idx
10410 status collapsed
10411
10412 \begin_layout Plain Layout
10413 Comandos ! O ! 
10414 \backslash
10415 overset
10416 \end_layout
10417
10418 \end_inset
10419
10420  y 
10421 \series bold
10422
10423 \backslash
10424 underset
10425 \series default
10426
10427 \begin_inset Index idx
10428 status collapsed
10429
10430 \begin_layout Plain Layout
10431 Comandos ! U ! 
10432 \backslash
10433 underset
10434 \end_layout
10435
10436 \end_inset
10437
10438  se pueden colocar caracteres sobre o bajo un operador, respectivamente.
10439  Con el comando 
10440 \series bold
10441
10442 \backslash
10443 sideset
10444 \series default
10445
10446 \begin_inset Index idx
10447 status collapsed
10448
10449 \begin_layout Plain Layout
10450 Comandos ! S ! 
10451 \backslash
10452 sideset
10453 \end_layout
10454
10455 \end_inset
10456
10457  se pueden poner caracteres delante y detrás de un operador.
10458  El esquema del comando es:
10459 \end_layout
10460
10461 \begin_layout Standard
10462
10463 \series bold
10464
10465 \backslash
10466 sideset{carácter
10467 \series default
10468  
10469 \series bold
10470 anterior}{carácter posterior}
10471 \end_layout
10472
10473 \begin_layout Standard
10474
10475 \series bold
10476
10477 \backslash
10478 sideset
10479 \series default
10480  siempre debe estar delante del operador que debe acentuarse.
10481  Se puede acentuar con varios caracteres e incluso con otros operadores
10482  y símbolos.
10483  Para colocar con
10484 \series bold
10485  
10486 \backslash
10487 sideset
10488 \series default
10489  caracteres sólo detrás del operador, por ejemplo, no se escribe nada en
10490  el primer par de llaves, pero sin quitarlas.
10491  
10492 \end_layout
10493
10494 \begin_layout Standard
10495 Por ejemplo, el comando 
10496 \series bold
10497
10498 \backslash
10499 sideset{
10500 \begin_inset Formula $\to$
10501 \end_inset
10502
10503
10504 \backslash
10505 {
10506 \series default
10507 '
10508 \series bold
10509
10510 \begin_inset Formula $\to$
10511 \end_inset
10512
10513
10514 \backslash
10515 sum_k=1
10516 \begin_inset ERT
10517 status collapsed
10518
10519 \begin_layout Plain Layout
10520
10521
10522 \backslash
10523 spce 
10524 \end_layout
10525
10526 \end_inset
10527
10528
10529 \series default
10530 ^
10531 \series bold
10532
10533 \begin_inset ERT
10534 status collapsed
10535
10536 \begin_layout Plain Layout
10537
10538
10539 \backslash
10540 spce 
10541 \end_layout
10542
10543 \end_inset
10544
10545 n
10546 \series default
10547  genera:
10548 \begin_inset Formula \[
10549 \sideset{}{'}\sum_{k=1}^{n}\]
10550
10551 \end_inset
10552
10553
10554 \end_layout
10555
10556 \begin_layout Standard
10557 El comando 
10558 \series bold
10559
10560 \backslash
10561 overset
10562 \begin_inset ERT
10563 status collapsed
10564
10565 \begin_layout Plain Layout
10566
10567
10568 \backslash
10569 spce 
10570 \end_layout
10571
10572 \end_inset
10573
10574
10575 \backslash
10576 maltese
10577 \begin_inset ERT
10578 status collapsed
10579
10580 \begin_layout Plain Layout
10581
10582
10583 \backslash
10584 spce 
10585 \end_layout
10586
10587 \end_inset
10588
10589
10590 \series default
10591
10592 \begin_inset Formula $\uparrow$
10593 \end_inset
10594
10595
10596 \series bold
10597 a
10598 \series default
10599  genera:
10600 \begin_inset Formula \[
10601 \overset{a}{\maltese}\]
10602
10603 \end_inset
10604
10605
10606 \end_layout
10607
10608 \begin_layout Standard
10609 Como se ve en el último ejemplo, con 
10610 \series bold
10611
10612 \backslash
10613 overset
10614 \series default
10615  y 
10616 \series bold
10617
10618 \backslash
10619 underset
10620 \series default
10621  también se pueden acentuar símbolos y caracteres; con 
10622 \series bold
10623
10624 \backslash
10625 sideset
10626 \series default
10627  esto no es posible.
10628 \end_layout
10629
10630 \begin_layout Subsection
10631 Acentos para varios caracteres
10632 \begin_inset Index idx
10633 status collapsed
10634
10635 \begin_layout Plain Layout
10636 Acentos ! en varios caracteres
10637 \end_layout
10638
10639 \end_inset
10640
10641
10642 \end_layout
10643
10644 \begin_layout Standard
10645 \begin_inset space \hfill{}
10646 \end_inset
10647
10648
10649 \begin_inset Tabular
10650 <lyxtabular version="3" rows="5" columns="2">
10651 <features tabularvalignment="middle">
10652 <column alignment="center" valignment="top" width="0pt">
10653 <column alignment="center" valignment="top" width="0pt">
10654 <row>
10655 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10656 \begin_inset Text
10657
10658 \begin_layout Plain Layout
10659 Comando
10660 \end_layout
10661
10662 \end_inset
10663 </cell>
10664 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10665 \begin_inset Text
10666
10667 \begin_layout Plain Layout
10668 Resultado
10669 \begin_inset Note Note
10670 status collapsed
10671
10672 \begin_layout Plain Layout
10673
10674 \series bold
10675
10676 \backslash
10677 raisebox
10678 \series default
10679  se usa sólo como espaciador
10680 \end_layout
10681
10682 \end_inset
10683
10684
10685 \end_layout
10686
10687 \end_inset
10688 </cell>
10689 </row>
10690 <row>
10691 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10692 \begin_inset Text
10693
10694 \begin_layout Plain Layout
10695
10696 \backslash
10697 overleftarrow
10698 \begin_inset ERT
10699 status collapsed
10700
10701 \begin_layout Plain Layout
10702
10703
10704 \backslash
10705 spce 
10706 \end_layout
10707
10708 \end_inset
10709
10710 A=B
10711 \end_layout
10712
10713 \end_inset
10714 </cell>
10715 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10716 \begin_inset Text
10717
10718 \begin_layout Plain Layout
10719 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10720 \end_inset
10721
10722
10723 \end_layout
10724
10725 \end_inset
10726 </cell>
10727 </row>
10728 <row>
10729 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10730 \begin_inset Text
10731
10732 \begin_layout Plain Layout
10733
10734 \backslash
10735 underleftarrow
10736 \begin_inset ERT
10737 status collapsed
10738
10739 \begin_layout Plain Layout
10740
10741
10742 \backslash
10743 spce 
10744 \end_layout
10745
10746 \end_inset
10747
10748 A=B
10749 \end_layout
10750
10751 \end_inset
10752 </cell>
10753 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10754 \begin_inset Text
10755
10756 \begin_layout Plain Layout
10757 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10758 \end_inset
10759
10760
10761 \end_layout
10762
10763 \end_inset
10764 </cell>
10765 </row>
10766 <row>
10767 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10768 \begin_inset Text
10769
10770 \begin_layout Plain Layout
10771
10772 \backslash
10773 overleftrightarrow
10774 \begin_inset ERT
10775 status collapsed
10776
10777 \begin_layout Plain Layout
10778
10779
10780 \backslash
10781 spce 
10782 \end_layout
10783
10784 \end_inset
10785
10786 A=B
10787 \end_layout
10788
10789 \end_inset
10790 </cell>
10791 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10792 \begin_inset Text
10793
10794 \begin_layout Plain Layout
10795 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10796 \end_inset
10797
10798
10799 \end_layout
10800
10801 \end_inset
10802 </cell>
10803 </row>
10804 <row>
10805 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10806 \begin_inset Text
10807
10808 \begin_layout Plain Layout
10809
10810 \backslash
10811 underleftrightarrow
10812 \begin_inset ERT
10813 status collapsed
10814
10815 \begin_layout Plain Layout
10816
10817
10818 \backslash
10819 spce 
10820 \end_layout
10821
10822 \end_inset
10823
10824 A=B
10825 \end_layout
10826
10827 \end_inset
10828 </cell>
10829 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10830 \begin_inset Text
10831
10832 \begin_layout Plain Layout
10833 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10834 \end_inset
10835
10836
10837 \end_layout
10838
10839 \end_inset
10840 </cell>
10841 </row>
10842 </lyxtabular>
10843
10844 \end_inset
10845
10846
10847 \begin_inset space \hfill{}
10848 \end_inset
10849
10850
10851 \begin_inset Tabular
10852 <lyxtabular version="3" rows="5" columns="2">
10853 <features tabularvalignment="middle">
10854 <column alignment="center" valignment="top" width="0pt">
10855 <column alignment="center" valignment="top" width="0pt">
10856 <row>
10857 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10858 \begin_inset Text
10859
10860 \begin_layout Plain Layout
10861 Comando
10862 \end_layout
10863
10864 \end_inset
10865 </cell>
10866 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10867 \begin_inset Text
10868
10869 \begin_layout Plain Layout
10870 Resultado
10871 \begin_inset Note Note
10872 status collapsed
10873
10874 \begin_layout Plain Layout
10875
10876 \series bold
10877
10878 \backslash
10879 raisebox
10880 \series default
10881  se usa sólo como espaciador
10882 \end_layout
10883
10884 \end_inset
10885
10886
10887 \end_layout
10888
10889 \end_inset
10890 </cell>
10891 </row>
10892 <row>
10893 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10894 \begin_inset Text
10895
10896 \begin_layout Plain Layout
10897
10898 \backslash
10899 overrightarrow
10900 \begin_inset ERT
10901 status collapsed
10902
10903 \begin_layout Plain Layout
10904
10905
10906 \backslash
10907 spce 
10908 \end_layout
10909
10910 \end_inset
10911
10912 A=B
10913 \end_layout
10914
10915 \end_inset
10916 </cell>
10917 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10918 \begin_inset Text
10919
10920 \begin_layout Plain Layout
10921 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10922 \end_inset
10923
10924
10925 \end_layout
10926
10927 \end_inset
10928 </cell>
10929 </row>
10930 <row>
10931 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10932 \begin_inset Text
10933
10934 \begin_layout Plain Layout
10935
10936 \backslash
10937 underrightarrow
10938 \begin_inset ERT
10939 status collapsed
10940
10941 \begin_layout Plain Layout
10942
10943
10944 \backslash
10945 spce 
10946 \end_layout
10947
10948 \end_inset
10949
10950 A=B
10951 \end_layout
10952
10953 \end_inset
10954 </cell>
10955 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10956 \begin_inset Text
10957
10958 \begin_layout Plain Layout
10959 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10960 \end_inset
10961
10962
10963 \end_layout
10964
10965 \end_inset
10966 </cell>
10967 </row>
10968 <row>
10969 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10970 \begin_inset Text
10971
10972 \begin_layout Plain Layout
10973
10974 \backslash
10975 widetilde
10976 \begin_inset ERT
10977 status collapsed
10978
10979 \begin_layout Plain Layout
10980
10981
10982 \backslash
10983 spce 
10984 \end_layout
10985
10986 \end_inset
10987
10988 A=B
10989 \end_layout
10990
10991 \end_inset
10992 </cell>
10993 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10994 \begin_inset Text
10995
10996 \begin_layout Plain Layout
10997 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10998 \end_inset
10999
11000
11001 \end_layout
11002
11003 \end_inset
11004 </cell>
11005 </row>
11006 <row>
11007 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11008 \begin_inset Text
11009
11010 \begin_layout Plain Layout
11011
11012 \backslash
11013 widehat
11014 \begin_inset ERT
11015 status collapsed
11016
11017 \begin_layout Plain Layout
11018
11019
11020 \backslash
11021 spce 
11022 \end_layout
11023
11024 \end_inset
11025
11026 A=B
11027 \end_layout
11028
11029 \end_inset
11030 </cell>
11031 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11032 \begin_inset Text
11033
11034 \begin_layout Plain Layout
11035 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
11036 \end_inset
11037
11038
11039 \end_layout
11040
11041 \end_inset
11042 </cell>
11043 </row>
11044 </lyxtabular>
11045
11046 \end_inset
11047
11048
11049 \begin_inset space \hfill{}
11050 \end_inset
11051
11052
11053 \end_layout
11054
11055 \begin_layout Standard
11056 \begin_inset VSpace medskip
11057 \end_inset
11058
11059
11060 \end_layout
11061
11062 \begin_layout Standard
11063 Con estos comandos se pueden acentuar tantos caracteres como quieras.
11064  Pero los acentos 
11065 \series bold
11066
11067 \backslash
11068 widetilde
11069 \series default
11070  y 
11071 \series bold
11072
11073 \backslash
11074 widehat
11075 \series default
11076  sólo pueden abarcar tres caracteres en la salida, como se muestra en este
11077  ejemplo:
11078 \begin_inset Formula \[
11079 \widetilde{A+B=C-D}\]
11080
11081 \end_inset
11082
11083
11084 \end_layout
11085
11086 \begin_layout Standard
11087 Con los comandos 
11088 \series bold
11089
11090 \backslash
11091 overset
11092 \series default
11093
11094 \begin_inset Index idx
11095 status collapsed
11096
11097 \begin_layout Plain Layout
11098 Comandos ! O ! 
11099 \backslash
11100 overset
11101 \end_layout
11102
11103 \end_inset
11104
11105  y 
11106 \series bold
11107
11108 \backslash
11109 underset
11110 \series default
11111
11112 \begin_inset Index idx
11113 status collapsed
11114
11115 \begin_layout Plain Layout
11116 Comandos ! U ! 
11117 \backslash
11118 underset
11119 \end_layout
11120
11121 \end_inset
11122
11123 , descritos en la subsección anterior, también se pueden acentuar varios
11124  caracteres.
11125  El comando 
11126 \series bold
11127
11128 \backslash
11129 underset
11130 \begin_inset ERT
11131 status collapsed
11132
11133 \begin_layout Plain Layout
11134
11135
11136 \backslash
11137 spce 
11138 \end_layout
11139
11140 \end_inset
11141
11142 A=B
11143 \begin_inset Formula $\downarrow$
11144 \end_inset
11145
11146 ***
11147 \series default
11148  da:
11149 \begin_inset Formula \[
11150 \underset{***}{A=B}\]
11151
11152 \end_inset
11153
11154
11155 \end_layout
11156
11157 \begin_layout Section
11158 Espacios
11159 \begin_inset CommandInset label
11160 LatexCommand label
11161 name "sec:Espacio"
11162
11163 \end_inset
11164
11165
11166 \begin_inset Index idx
11167 status collapsed
11168
11169 \begin_layout Plain Layout
11170 Espacio ! horizontal
11171 \end_layout
11172
11173 \end_inset
11174
11175
11176 \end_layout
11177
11178 \begin_layout Subsection
11179 Espacio predefinido
11180 \begin_inset CommandInset label
11181 LatexCommand label
11182 name "sub:Espacio-predefinido"
11183
11184 \end_inset
11185
11186
11187 \begin_inset Index idx
11188 status collapsed
11189
11190 \begin_layout Plain Layout
11191 Espacio ! horizontal ! predefinido
11192 \end_layout
11193
11194 \end_inset
11195
11196
11197 \end_layout
11198
11199 \begin_layout Standard
11200 A veces es necesario insertar espacio horizontal en una ecuación.
11201  Esto se hace insertando un espacio protegido (atajo 
11202 \family sans
11203 Ctrl+Espacio
11204 \family default
11205 ).
11206  Aparece un 
11207 \begin_inset Quotes fld
11208 \end_inset
11209
11210
11211 \color black
11212
11213 \begin_inset ERT
11214 status collapsed
11215
11216 \begin_layout Plain Layout
11217
11218
11219 \backslash
11220 spce 
11221 \end_layout
11222
11223 \end_inset
11224
11225
11226 \color inherit
11227
11228 \begin_inset Quotes frd
11229 \end_inset
11230
11231 , y pulsando 
11232 \family sans
11233 Espacio
11234 \family default
11235  sucesivas veces se pueden seleccionar hasta ocho diferentes tamaños de
11236  espacio.
11237  También se pueden insertar espacios mediante el botón 
11238 \begin_inset Graphics
11239         filename ../../images/math/space.png
11240         scale 85
11241
11242 \end_inset
11243
11244  de la barra de ecuaciones o con comandos especiales.
11245  Independientemente del comando insertado, se puede seleccionar de nuevo
11246  el tamaño pulsando acto seguido 
11247 \family sans
11248 Espacio.
11249  
11250 \end_layout
11251
11252 \begin_layout Standard
11253 \noindent
11254 \align center
11255 \begin_inset VSpace -5mm
11256 \end_inset
11257
11258
11259 \begin_inset Tabular
11260 <lyxtabular version="3" rows="3" columns="7">
11261 <features tabularvalignment="middle">
11262 <column alignment="center" valignment="middle" width="6.8cm">
11263 <column alignment="center" valignment="top" width="0">
11264 <column alignment="center" valignment="top" width="0">
11265 <column alignment="center" valignment="top" width="0">
11266 <column alignment="center" valignment="top" width="0">
11267 <column alignment="center" valignment="top" width="0">
11268 <column alignment="center" valignment="top" width="0">
11269 <row>
11270 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11271 \begin_inset Text
11272
11273 \begin_layout Plain Layout
11274 Comando
11275 \end_layout
11276
11277 \end_inset
11278 </cell>
11279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11280 \begin_inset Text
11281
11282 \begin_layout Plain Layout
11283
11284 \backslash
11285 ,
11286 \end_layout
11287
11288 \end_inset
11289 </cell>
11290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11291 \begin_inset Text
11292
11293 \begin_layout Plain Layout
11294
11295 \backslash
11296 :
11297 \end_layout
11298
11299 \end_inset
11300 </cell>
11301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11302 \begin_inset Text
11303
11304 \begin_layout Plain Layout
11305
11306 \backslash
11307 ;
11308 \end_layout
11309
11310 \end_inset
11311 </cell>
11312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11313 \begin_inset Text
11314
11315 \begin_layout Plain Layout
11316
11317 \backslash
11318 quad
11319 \end_layout
11320
11321 \end_inset
11322 </cell>
11323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11324 \begin_inset Text
11325
11326 \begin_layout Plain Layout
11327
11328 \backslash
11329 qquad
11330 \end_layout
11331
11332 \end_inset
11333 </cell>
11334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11335 \begin_inset Text
11336
11337 \begin_layout Plain Layout
11338
11339 \backslash
11340 !
11341 \end_layout
11342
11343 \end_inset
11344 </cell>
11345 </row>
11346 <row>
11347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11348 \begin_inset Text
11349
11350 \begin_layout Plain Layout
11351 Número de pulsaciones de 
11352 \family sans
11353 Espacio
11354 \family default
11355  tras insertar el espacio protegido
11356 \end_layout
11357
11358 \end_inset
11359 </cell>
11360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11361 \begin_inset Text
11362
11363 \begin_layout Plain Layout
11364 0
11365 \end_layout
11366
11367 \end_inset
11368 </cell>
11369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11370 \begin_inset Text
11371
11372 \begin_layout Plain Layout
11373 1
11374 \end_layout
11375
11376 \end_inset
11377 </cell>
11378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11379 \begin_inset Text
11380
11381 \begin_layout Plain Layout
11382 2
11383 \end_layout
11384
11385 \end_inset
11386 </cell>
11387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11388 \begin_inset Text
11389
11390 \begin_layout Plain Layout
11391 3
11392 \end_layout
11393
11394 \end_inset
11395 </cell>
11396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11397 \begin_inset Text
11398
11399 \begin_layout Plain Layout
11400 4
11401 \end_layout
11402
11403 \end_inset
11404 </cell>
11405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11406 \begin_inset Text
11407
11408 \begin_layout Plain Layout
11409 5
11410 \end_layout
11411
11412 \end_inset
11413 </cell>
11414 </row>
11415 <row>
11416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11417 \begin_inset Text
11418
11419 \begin_layout Plain Layout
11420 Resultado
11421 \end_layout
11422
11423 \end_inset
11424 </cell>
11425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11426 \begin_inset Text
11427
11428 \begin_layout Plain Layout
11429 \begin_inset Formula $A\, B$
11430 \end_inset
11431
11432
11433 \end_layout
11434
11435 \end_inset
11436 </cell>
11437 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11438 \begin_inset Text
11439
11440 \begin_layout Plain Layout
11441 \begin_inset Formula $A\: B$
11442 \end_inset
11443
11444
11445 \end_layout
11446
11447 \end_inset
11448 </cell>
11449 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11450 \begin_inset Text
11451
11452 \begin_layout Plain Layout
11453 \begin_inset Formula $A\; B$
11454 \end_inset
11455
11456
11457 \end_layout
11458
11459 \end_inset
11460 </cell>
11461 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11462 \begin_inset Text
11463
11464 \begin_layout Plain Layout
11465 \begin_inset Formula $A\quad B$
11466 \end_inset
11467
11468
11469 \end_layout
11470
11471 \end_inset
11472 </cell>
11473 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11474 \begin_inset Text
11475
11476 \begin_layout Plain Layout
11477 \begin_inset Formula $A\qquad B$
11478 \end_inset
11479
11480
11481 \end_layout
11482
11483 \end_inset
11484 </cell>
11485 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11486 \begin_inset Text
11487
11488 \begin_layout Plain Layout
11489 \begin_inset Formula $A\! B$
11490 \end_inset
11491
11492
11493 \end_layout
11494
11495 \end_inset
11496 </cell>
11497 </row>
11498 </lyxtabular>
11499
11500 \end_inset
11501
11502
11503 \end_layout
11504
11505 \begin_layout Standard
11506 El último tamaño parece no generar espacio.
11507  A diferencia de los otros se muestra en rojo en LyX, porque es un espacio
11508  negativo.
11509  Hay otros dos espacios negativos:
11510 \end_layout
11511
11512 \begin_layout Standard
11513 \align center
11514 \begin_inset Tabular
11515 <lyxtabular version="3" rows="3" columns="3">
11516 <features tabularvalignment="middle">
11517 <column alignment="center" valignment="middle" width="6.8cm">
11518 <column alignment="center" valignment="top" width="0pt">
11519 <column alignment="center" valignment="top" width="0pt">
11520 <row>
11521 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11522 \begin_inset Text
11523
11524 \begin_layout Plain Layout
11525 Comando
11526 \end_layout
11527
11528 \end_inset
11529 </cell>
11530 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11531 \begin_inset Text
11532
11533 \begin_layout Plain Layout
11534
11535 \backslash
11536 negmedspace
11537 \end_layout
11538
11539 \end_inset
11540 </cell>
11541 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11542 \begin_inset Text
11543
11544 \begin_layout Plain Layout
11545
11546 \backslash
11547 negthickspace
11548 \end_layout
11549
11550 \end_inset
11551 </cell>
11552 </row>
11553 <row>
11554 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11555 \begin_inset Text
11556
11557 \begin_layout Plain Layout
11558 Número de pulsaciones de 
11559 \family sans
11560 Espacio
11561 \family default
11562  tras insertar el espacio protegido
11563 \end_layout
11564
11565 \end_inset
11566 </cell>
11567 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11568 \begin_inset Text
11569
11570 \begin_layout Plain Layout
11571 6
11572 \end_layout
11573
11574 \end_inset
11575 </cell>
11576 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11577 \begin_inset Text
11578
11579 \begin_layout Plain Layout
11580 7
11581 \end_layout
11582
11583 \end_inset
11584 </cell>
11585 </row>
11586 <row>
11587 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11588 \begin_inset Text
11589
11590 \begin_layout Plain Layout
11591 Resultado
11592 \end_layout
11593
11594 \end_inset
11595 </cell>
11596 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11597 \begin_inset Text
11598
11599 \begin_layout Plain Layout
11600 \begin_inset Formula $A\negmedspace B$
11601 \end_inset
11602
11603
11604 \end_layout
11605
11606 \end_inset
11607 </cell>
11608 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11609 \begin_inset Text
11610
11611 \begin_layout Plain Layout
11612 \begin_inset Formula $A\negthickspace B$
11613 \end_inset
11614
11615
11616 \end_layout
11617
11618 \end_inset
11619 </cell>
11620 </row>
11621 </lyxtabular>
11622
11623 \end_inset
11624
11625
11626 \end_layout
11627
11628 \begin_layout Standard
11629 Los espacios negativos pueden llegar a solapar unos caracteres con otros.
11630  Así, se pueden usar para forzar ligaduras, lo que es apropiado, p.
11631 \begin_inset space \thinspace{}
11632 \end_inset
11633
11634 e., para operadores suma: 
11635 \end_layout
11636
11637 \begin_layout Standard
11638 \noindent
11639 \align center
11640 \begin_inset Tabular
11641 <lyxtabular version="3" rows="3" columns="2">
11642 <features tabularvalignment="middle">
11643 <column alignment="center" valignment="top" width="0">
11644 <column alignment="center" valignment="top" width="0">
11645 <row>
11646 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11647 \begin_inset Text
11648
11649 \begin_layout Plain Layout
11650 Comando
11651 \end_layout
11652
11653 \end_inset
11654 </cell>
11655 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11656 \begin_inset Text
11657
11658 \begin_layout Plain Layout
11659 Resultado
11660 \begin_inset Note Note
11661 status collapsed
11662
11663 \begin_layout Plain Layout
11664
11665 \series bold
11666
11667 \backslash
11668 raisebox
11669 \series default
11670  se usa sólo como espaciador
11671 \end_layout
11672
11673 \end_inset
11674
11675
11676 \end_layout
11677
11678 \end_inset
11679 </cell>
11680 </row>
11681 <row>
11682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11683 \begin_inset Text
11684
11685 \begin_layout Plain Layout
11686
11687 \backslash
11688 sum
11689 \backslash
11690 sum
11691 \begin_inset ERT
11692 status collapsed
11693
11694 \begin_layout Plain Layout
11695
11696
11697 \backslash
11698 spce 
11699 \end_layout
11700
11701 \end_inset
11702
11703 f_kl
11704 \end_layout
11705
11706 \end_inset
11707 </cell>
11708 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11709 \begin_inset Text
11710
11711 \begin_layout Plain Layout
11712 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11713 \end_inset
11714
11715
11716 \end_layout
11717
11718 \end_inset
11719 </cell>
11720 </row>
11721 <row>
11722 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11723 \begin_inset Text
11724
11725 \begin_layout Plain Layout
11726
11727 \backslash
11728 sum
11729 \backslash
11730 negmedspace
11731 \backslash
11732 sum
11733 \begin_inset ERT
11734 status collapsed
11735
11736 \begin_layout Plain Layout
11737
11738
11739 \backslash
11740 spce 
11741 \end_layout
11742
11743 \end_inset
11744
11745 f_kl
11746 \end_layout
11747
11748 \end_inset
11749 </cell>
11750 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11751 \begin_inset Text
11752
11753 \begin_layout Plain Layout
11754 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11755 \end_inset
11756
11757
11758 \end_layout
11759
11760 \end_inset
11761 </cell>
11762 </row>
11763 </lyxtabular>
11764
11765 \end_inset
11766
11767
11768 \end_layout
11769
11770 \begin_layout Standard
11771 Relaciones como por ejemplo el signo igual siempre están rodeadas por espacios.
11772  Para suprimirlos, el signo igual se coloca entre llaves TeX.
11773  El siguiente ejemplo lo ilustra:
11774 \end_layout
11775
11776 \begin_layout Standard
11777 \noindent
11778 \align center
11779 \begin_inset Tabular
11780 <lyxtabular version="3" rows="2" columns="2">
11781 <features tabularvalignment="middle">
11782 <column alignment="center" valignment="top" width="0">
11783 <column alignment="center" valignment="top" width="0">
11784 <row>
11785 <cell alignment="center" valignment="top" usebox="none">
11786 \begin_inset Text
11787
11788 \begin_layout Plain Layout
11789 ecuación normal
11790 \end_layout
11791
11792 \end_inset
11793 </cell>
11794 <cell alignment="center" valignment="top" usebox="none">
11795 \begin_inset Text
11796
11797 \begin_layout Plain Layout
11798 \begin_inset Formula $A=B$
11799 \end_inset
11800
11801
11802 \end_layout
11803
11804 \end_inset
11805 </cell>
11806 </row>
11807 <row>
11808 <cell alignment="center" valignment="top" usebox="none">
11809 \begin_inset Text
11810
11811 \begin_layout Plain Layout
11812 \begin_inset Note Note
11813 status collapsed
11814
11815 \begin_layout Plain Layout
11816
11817 \series bold
11818
11819 \backslash
11820 raisebox
11821 \series default
11822  se usa sólo como espaciador
11823 \end_layout
11824
11825 \end_inset
11826
11827
11828 \begin_inset Formula $\raisebox{5mm}{}$
11829 \end_inset
11830
11831 ecuación sin espacio
11832 \end_layout
11833
11834 \end_inset
11835 </cell>
11836 <cell alignment="center" valignment="top" usebox="none">
11837 \begin_inset Text
11838
11839 \begin_layout Plain Layout
11840 \begin_inset Formula $A{=}B$
11841 \end_inset
11842
11843
11844 \end_layout
11845
11846 \end_inset
11847 </cell>
11848 </row>
11849 </lyxtabular>
11850
11851 \end_inset
11852
11853
11854 \end_layout
11855
11856 \begin_layout Standard
11857 El comando para la segunda ecuación es: 
11858 \series bold
11859 A
11860 \backslash
11861 {=
11862 \begin_inset Formula $\rightarrow$
11863 \end_inset
11864
11865 B
11866 \series default
11867  
11868 \begin_inset VSpace bigskip
11869 \end_inset
11870
11871
11872 \end_layout
11873
11874 \begin_layout Standard
11875 Para las unidades físicas hacen falta espacios, porque entre el valor y
11876  su unidad se pone un espacio más pequeño que el normal.
11877  Para unidades en el texto se inserta con el menú 
11878 \family sans
11879 Insertar\SpecialChar \menuseparator
11880 Formato\SpecialChar \menuseparator
11881 Espacio
11882 \begin_inset space ~
11883 \end_inset
11884
11885 delgado
11886 \family default
11887  (atajo 
11888 \family sans
11889 Ctrl+Mayúscula+Espacio
11890 \family default
11891 ).
11892 \end_layout
11893
11894 \begin_layout Standard
11895 Un ejemplo para visualizar la diferencia:
11896 \end_layout
11897
11898 \begin_layout Standard
11899 \begin_inset Tabular
11900 <lyxtabular version="3" rows="2" columns="2">
11901 <features tabularvalignment="middle">
11902 <column alignment="center" valignment="top" width="0">
11903 <column alignment="left" valignment="top" width="0">
11904 <row>
11905 <cell alignment="center" valignment="top" usebox="none">
11906 \begin_inset Text
11907
11908 \begin_layout Plain Layout
11909 24 kW
11910 \begin_inset Formula $\cdot$
11911 \end_inset
11912
11913 h
11914 \end_layout
11915
11916 \end_inset
11917 </cell>
11918 <cell alignment="center" valignment="top" usebox="none">
11919 \begin_inset Text
11920
11921 \begin_layout Plain Layout
11922 espacio entre valor y unidad 
11923 \end_layout
11924
11925 \end_inset
11926 </cell>
11927 </row>
11928 <row>
11929 <cell alignment="center" valignment="top" usebox="none">
11930 \begin_inset Text
11931
11932 \begin_layout Plain Layout
11933 24
11934 \begin_inset space \thinspace{}
11935 \end_inset
11936
11937 kW
11938 \begin_inset Formula $\cdot$
11939 \end_inset
11940
11941 h
11942 \end_layout
11943
11944 \end_inset
11945 </cell>
11946 <cell alignment="center" valignment="top" usebox="none">
11947 \begin_inset Text
11948
11949 \begin_layout Plain Layout
11950 espacio delgado entre valor y unidad
11951 \end_layout
11952
11953 \end_inset
11954 </cell>
11955 </row>
11956 </lyxtabular>
11957
11958 \end_inset
11959
11960
11961 \end_layout
11962
11963 \begin_layout Subsection
11964 Espacio variable
11965 \begin_inset ERT
11966 status collapsed
11967
11968 \begin_layout Plain Layout
11969
11970
11971 \backslash
11972 texorpdfstring{
11973 \end_layout
11974
11975 \end_inset
11976
11977
11978 \begin_inset Foot
11979 status collapsed
11980
11981 \begin_layout Plain Layout
11982 Para espacio vertical en ecuaciones véase 
11983 \begin_inset CommandInset ref
11984 LatexCommand ref
11985 reference "sub:Separación-de-líneas"
11986
11987 \end_inset
11988
11989
11990 \end_layout
11991
11992 \end_inset
11993
11994
11995 \begin_inset ERT
11996 status collapsed
11997
11998 \begin_layout Plain Layout
11999
12000 }{}
12001 \end_layout
12002
12003 \end_inset
12004
12005
12006 \begin_inset Note Note
12007 status collapsed
12008
12009 \begin_layout Plain Layout
12010
12011 \backslash
12012 texorpdfstring se usa para evitar que la nota al pie aparezca en los marcadores
12013  PDF.
12014 \end_layout
12015
12016 \begin_layout Plain Layout
12017 Más sobre 
12018 \backslash
12019 texorpdfstring en la sección 
12020 \begin_inset CommandInset ref
12021 LatexCommand ref
12022 reference "sub:Ecuaciones-en-encabezados"
12023
12024 \end_inset
12025
12026 .
12027 \end_layout
12028
12029 \end_inset
12030
12031
12032 \begin_inset CommandInset label
12033 LatexCommand label
12034 name "sub:Espacio-variable"
12035
12036 \end_inset
12037
12038
12039 \begin_inset Index idx
12040 status collapsed
12041
12042 \begin_layout Plain Layout
12043 Espacio ! horizontal ! variable
12044 \end_layout
12045
12046 \end_inset
12047
12048
12049 \end_layout
12050
12051 \begin_layout Standard
12052 En LyX se puede insertar espacio con una longitud definida con el comando
12053  
12054 \series bold
12055
12056 \backslash
12057 hspace
12058 \series default
12059
12060 \begin_inset Index idx
12061 status collapsed
12062
12063 \begin_layout Plain Layout
12064 Comandos ! H ! 
12065 \backslash
12066 hspace
12067 \end_layout
12068
12069 \end_inset
12070
12071 .
12072  Aparece un 
12073 \begin_inset Quotes fld
12074 \end_inset
12075
12076
12077 \color black
12078
12079 \begin_inset ERT
12080 status collapsed
12081
12082 \begin_layout Plain Layout
12083
12084
12085 \backslash
12086 spce 
12087 \end_layout
12088
12089 \end_inset
12090
12091
12092 \color inherit
12093
12094 \begin_inset Quotes frd
12095 \end_inset
12096
12097  largo.
12098  La longitud se puede ajustar haciendo clic izquierdo sobre el 
12099 \begin_inset Quotes fld
12100 \end_inset
12101
12102
12103 \color black
12104
12105 \begin_inset ERT
12106 status collapsed
12107
12108 \begin_layout Plain Layout
12109
12110
12111 \backslash
12112 spce 
12113 \end_layout
12114
12115 \end_inset
12116
12117
12118 \color inherit
12119
12120 \begin_inset Quotes frd
12121 \end_inset
12122
12123 .
12124  La longitud también puede ser negativa.
12125  Para insertar en una ecuación tanto espacio como esté disponible se usa
12126  el comando 
12127 \series bold
12128
12129 \backslash
12130 hfill
12131 \series default
12132
12133 \begin_inset Index idx
12134 status collapsed
12135
12136 \begin_layout Plain Layout
12137 Comandos ! H ! 
12138 \backslash
12139 hfill
12140 \end_layout
12141
12142 \end_inset
12143
12144 .
12145 \begin_inset VSpace -1mm
12146 \end_inset
12147
12148
12149 \end_layout
12150
12151 \begin_layout Standard
12152 \noindent
12153 \align center
12154 \begin_inset Tabular
12155 <lyxtabular version="3" rows="4" columns="2">
12156 <features tabularvalignment="middle">
12157 <column alignment="center" valignment="top" width="0">
12158 <column alignment="center" valignment="top" width="0">
12159 <row>
12160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12161 \begin_inset Text
12162
12163 \begin_layout Plain Layout
12164 Comando (
12165 \backslash
12166 hspace longitud)
12167 \end_layout
12168
12169 \end_inset
12170 </cell>
12171 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12172 \begin_inset Text
12173
12174 \begin_layout Plain Layout
12175 Resultado
12176 \end_layout
12177
12178 \end_inset
12179 </cell>
12180 </row>
12181 <row>
12182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12183 \begin_inset Text
12184
12185 \begin_layout Plain Layout
12186 A=B
12187 \backslash
12188 hspace
12189 \begin_inset ERT
12190 status collapsed
12191
12192 \begin_layout Plain Layout
12193
12194
12195 \backslash
12196 spce 
12197 \end_layout
12198
12199 \end_inset
12200
12201
12202 \begin_inset Formula $\to$
12203 \end_inset
12204
12205 A
12206 \backslash
12207 not=C (3
12208 \begin_inset space \thinspace{}
12209 \end_inset
12210
12211 cm)
12212 \end_layout
12213
12214 \end_inset
12215 </cell>
12216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12217 \begin_inset Text
12218
12219 \begin_layout Plain Layout
12220 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
12221 \end_inset
12222
12223
12224 \end_layout
12225
12226 \end_inset
12227 </cell>
12228 </row>
12229 <row>
12230 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12231 \begin_inset Text
12232
12233 \begin_layout Plain Layout
12234 A
12235 \backslash
12236 hspace
12237 \begin_inset ERT
12238 status collapsed
12239
12240 \begin_layout Plain Layout
12241
12242
12243 \backslash
12244 spce 
12245 \end_layout
12246
12247 \end_inset
12248
12249
12250 \begin_inset Formula $\to$
12251 \end_inset
12252
12253 A
12254 \backslash
12255 not=A (-1
12256 \begin_inset space \thinspace{}
12257 \end_inset
12258
12259 mm)
12260 \end_layout
12261
12262 \end_inset
12263 </cell>
12264 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12265 \begin_inset Text
12266
12267 \begin_layout Plain Layout
12268 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12269 \end_inset
12270
12271
12272 \end_layout
12273
12274 \end_inset
12275 </cell>
12276 </row>
12277 <row>
12278 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12279 \begin_inset Text
12280
12281 \begin_layout Plain Layout
12282 A=A
12283 \backslash
12284 hfill
12285 \begin_inset ERT
12286 status collapsed
12287
12288 \begin_layout Plain Layout
12289
12290
12291 \backslash
12292 spce 
12293 \end_layout
12294
12295 \end_inset
12296
12297 B=B
12298 \end_layout
12299
12300 \end_inset
12301 </cell>
12302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12303 \begin_inset Text
12304
12305 \begin_layout Plain Layout
12306 \begin_inset Formula $A=A\hfill B=B$
12307 \end_inset
12308
12309
12310 \end_layout
12311
12312 \end_inset
12313 </cell>
12314 </row>
12315 </lyxtabular>
12316
12317 \end_inset
12318
12319
12320 \end_layout
12321
12322 \begin_layout Standard
12323 En el último ejemplo el espacio disponible viene dado por la entrada más
12324  larga de columna en la tabla.
12325  En una ecuación en línea el espacio depende de la longitud de la línea
12326  en la que se inserta 
12327 \series bold
12328
12329 \backslash
12330 hfill
12331 \series default
12332 .
12333  Así, cuando la línea ocupa toda la anchura no se creará espacio.
12334  
12335 \series bold
12336
12337 \backslash
12338 hfill
12339 \series default
12340  sólo tiene efecto en ecuaciones presentadas cuando se usa el estilo 
12341 \series bold
12342 Sangrado
12343 \series default
12344 .
12345  (Los estilos de ecuaciones se explican en
12346 \begin_inset space ~
12347 \end_inset
12348
12349
12350 \begin_inset CommandInset ref
12351 LatexCommand ref
12352 reference "sec:Estilos-de-ecuación"
12353
12354 \end_inset
12355
12356 ).
12357 \end_layout
12358
12359 \begin_layout Standard
12360 Además de 
12361 \series bold
12362
12363 \backslash
12364 hfill
12365 \series default
12366  hay los comandos 
12367 \series bold
12368
12369 \backslash
12370 dotfill
12371 \series default
12372  y 
12373 \series bold
12374
12375 \backslash
12376 hrulefill
12377 \series default
12378  que llenan el espacio con un patrón, véase un ejemplo en
12379 \begin_inset space ~
12380 \end_inset
12381
12382
12383 \begin_inset CommandInset ref
12384 LatexCommand ref
12385 reference "sub:Puntos"
12386
12387 \end_inset
12388
12389 .
12390 \end_layout
12391
12392 \begin_layout Standard
12393 Para texto se puede insertar espacio variable con el menú 
12394 \family sans
12395 Insertar\SpecialChar \menuseparator
12396 Formato\SpecialChar \menuseparator
12397 Espacio
12398 \begin_inset space ~
12399 \end_inset
12400
12401 horizontal
12402 \family default
12403 :
12404 \end_layout
12405
12406 \begin_layout Standard
12407 En esta línea hay un espacio
12408 \begin_inset space \hspace{}
12409 \length 2cm
12410 \end_inset
12411
12412 de 2
12413 \begin_inset space \thinspace{}
12414 \end_inset
12415
12416 cm.
12417 \end_layout
12418
12419 \begin_layout Standard
12420 En esta línea hay un
12421 \begin_inset space \hfill{}
12422 \end_inset
12423
12424 espacio máximo.
12425 \end_layout
12426
12427 \begin_layout Subsection
12428 Espacio adicional en ecuaciones en línea
12429 \begin_inset Index idx
12430 status collapsed
12431
12432 \begin_layout Plain Layout
12433 Espacio ! adicional en línea
12434 \end_layout
12435
12436 \end_inset
12437
12438
12439 \end_layout
12440
12441 \begin_layout Standard
12442 El espacio que rodea a una ecuación en línea se puede ajustar con la longitud
12443  
12444 \series bold
12445
12446 \backslash
12447 mathsurround
12448 \series default
12449
12450 \begin_inset Index idx
12451 status collapsed
12452
12453 \begin_layout Plain Layout
12454 Comandos ! M ! 
12455 \backslash
12456 mathsurround
12457 \end_layout
12458
12459 \end_inset
12460
12461 .
12462  El valor de una longitud se establece con el comando 
12463 \series bold
12464
12465 \backslash
12466 setlength
12467 \series default
12468
12469 \begin_inset Index idx
12470 status collapsed
12471
12472 \begin_layout Plain Layout
12473 Comandos ! S ! 
12474 \backslash
12475 setlength
12476 \end_layout
12477
12478 \end_inset
12479
12480  según el siguiente esquema:
12481 \end_layout
12482
12483 \begin_layout Standard
12484
12485 \series bold
12486
12487 \backslash
12488 setlength{nombre de la longitud}{valor}
12489 \end_layout
12490
12491 \begin_layout Standard
12492 Para poner a 
12493 \series bold
12494
12495 \backslash
12496 mathsurround
12497 \series default
12498  un valor de 5
12499 \begin_inset space \thinspace{}
12500 \end_inset
12501
12502 mm, se inserta el comando
12503 \end_layout
12504
12505 \begin_layout Standard
12506
12507 \series bold
12508
12509 \backslash
12510 setlength{
12511 \backslash
12512 mathsurround}{5mm}
12513 \end_layout
12514
12515 \begin_layout Standard
12516 en modo TeX.
12517  Se establecerá un espacio de 5
12518 \begin_inset space \thinspace{}
12519 \end_inset
12520
12521 mm alrededor de todas las ecuaciones en línea:
12522 \begin_inset ERT
12523 status collapsed
12524
12525 \begin_layout Plain Layout
12526
12527
12528 \backslash
12529 setlength{
12530 \backslash
12531 mathsurround}{5mm}
12532 \end_layout
12533
12534 \end_inset
12535
12536
12537 \end_layout
12538
12539 \begin_layout Standard
12540 En esta línea hay una ecuación 
12541 \begin_inset Formula $A=B$
12542 \end_inset
12543
12544  rodeada por espacios de 5
12545 \begin_inset space \thinspace{}
12546 \end_inset
12547
12548 mm.
12549 \begin_inset ERT
12550 status collapsed
12551
12552 \begin_layout Plain Layout
12553
12554
12555 \backslash
12556 setlength{
12557 \backslash
12558 mathsurround}{0mm}
12559 \end_layout
12560
12561 \end_inset
12562
12563
12564 \end_layout
12565
12566 \begin_layout Standard
12567 Para volver al espacio predeterminado, 
12568 \series bold
12569
12570 \backslash
12571 mathsurround
12572 \series default
12573  se restablece al valor 0
12574 \begin_inset space \thinspace{}
12575 \end_inset
12576
12577 pt.
12578 \end_layout
12579
12580 \begin_layout Section
12581 Cuadros y marcos
12582 \begin_inset Index idx
12583 status collapsed
12584
12585 \begin_layout Plain Layout
12586 Marcos
12587 \end_layout
12588
12589 \end_inset
12590
12591
12592 \begin_inset Index idx
12593 status collapsed
12594
12595 \begin_layout Plain Layout
12596 Marcos|see
12597 \begin_inset ERT
12598 status collapsed
12599
12600 \begin_layout Plain Layout
12601
12602 {
12603 \end_layout
12604
12605 \end_inset
12606
12607 Cuadros
12608 \begin_inset ERT
12609 status collapsed
12610
12611 \begin_layout Plain Layout
12612
12613 }
12614 \end_layout
12615
12616 \end_inset
12617
12618
12619 \end_layout
12620
12621 \end_inset
12622
12623
12624 \end_layout
12625
12626 \begin_layout Standard
12627 Los cuadros para texto se describen en el capítulo 
12628 \emph on
12629 Cuadros
12630 \emph default
12631  del manual 
12632 \emph on
12633 Objetos insertados
12634 \emph default
12635 .
12636 \end_layout
12637
12638 \begin_layout Subsection
12639 Cuadros con marco
12640 \begin_inset CommandInset label
12641 LatexCommand label
12642 name "sub:Cuadros-con-marco"
12643
12644 \end_inset
12645
12646
12647 \begin_inset Index idx
12648 status collapsed
12649
12650 \begin_layout Plain Layout
12651 Cuadros ! con marco
12652 \end_layout
12653
12654 \end_inset
12655
12656
12657 \end_layout
12658
12659 \begin_layout Standard
12660 Es posible enmarcar ecuaciones o partes de ellas con los comandos 
12661 \series bold
12662
12663 \backslash
12664 fbox
12665 \series default
12666
12667 \begin_inset Index idx
12668 status collapsed
12669
12670 \begin_layout Plain Layout
12671 Comandos ! F ! 
12672 \backslash
12673 fbox
12674 \end_layout
12675
12676 \end_inset
12677
12678  y 
12679 \series bold
12680
12681 \backslash
12682 boxed
12683 \series default
12684
12685 \begin_inset Index idx
12686 status collapsed
12687
12688 \begin_layout Plain Layout
12689 Comandos ! B ! 
12690 \backslash
12691 boxed
12692 \end_layout
12693
12694 \end_inset
12695
12696 .
12697 \end_layout
12698
12699 \begin_layout Standard
12700 Cuando uno de estos comandos se inserta en una ecuación, aparece un recuadro
12701  azul en un marco donde se introduce parte de una ecuación.
12702  Para 
12703 \series bold
12704
12705 \backslash
12706 fbox
12707 \series default
12708  hay que generar una ecuación adicional con 
12709 \family sans
12710 Ctrl+M
12711 \family default
12712  dentro del recuadro, porque si no el contenido del mismo sería considerado
12713  texto matemático.
12714  Si se usa 
12715 \series bold
12716
12717 \backslash
12718 boxed
12719 \series default
12720  la nueva ecuación se genera automáticamente dentro del marco.
12721 \end_layout
12722
12723 \begin_layout Standard
12724 El comando 
12725 \series bold
12726
12727 \backslash
12728 fbox
12729 \series default
12730  no es adecuado para enmarcar ecuaciones en modo presentación, porque la
12731  ecuación tendría siempre el tamaño del texto.
12732  Por otra parte, 
12733 \series bold
12734
12735 \backslash
12736 fboxed
12737 \series default
12738  no es adecuada para enmarcar ecuaciones en línea porque la ecuación tendría
12739  siempre el tamaño de una ecuación presentada.
12740 \end_layout
12741
12742 \begin_layout Standard
12743 El comando 
12744 \series bold
12745
12746 \backslash
12747 framebox
12748 \series default
12749
12750 \begin_inset Index idx
12751 status collapsed
12752
12753 \begin_layout Plain Layout
12754 Comandos ! F ! 
12755 \backslash
12756 framebox
12757 \end_layout
12758
12759 \end_inset
12760
12761  es una extensión de 
12762 \series bold
12763
12764 \backslash
12765 fbox
12766 \series default
12767 , que permite especificar además la anchura del marco yla alineación.
12768  
12769 \series bold
12770
12771 \backslash
12772 framebox
12773 \series default
12774  se usa con el siguiente esquema: 
12775 \end_layout
12776
12777 \begin_layout Standard
12778
12779 \series bold
12780
12781 \backslash
12782 framebox[anchura del marco][posición]{contenido del cuadro}
12783 \end_layout
12784
12785 \begin_layout Standard
12786 La posición puede ser 
12787 \emph on
12788 l
12789 \emph default
12790  o 
12791 \emph on
12792 r
12793 \emph default
12794
12795 \emph on
12796 l
12797 \emph default
12798  alinea la ecuación a la izquierda del cuadro, 
12799 \emph on
12800 r
12801 \emph default
12802  la alinea a la derecha.
12803  Si no se da posición la ecuación será centrada.
12804 \begin_inset Newline newline
12805 \end_inset
12806
12807 Si no se pone anchura tampoco puede darse posición.
12808  En este caso la anchura del marco se ajusta al contenido del cuadro, como
12809  con 
12810 \series bold
12811
12812 \backslash
12813 fbox
12814 \series default
12815 .
12816  
12817 \end_layout
12818
12819 \begin_layout Standard
12820 Cuando se inserta el comando 
12821 \series bold
12822
12823 \backslash
12824 framebox
12825 \series default
12826  aparece un recuadro con tres marcos azules.
12827  Los dos primeros marcos están encerrados entre corchetes e indican los
12828  dos argumentos opcionales.
12829  El tercer marco es para partes de la ecuación, como para 
12830 \series bold
12831
12832 \backslash
12833 fbox
12834 \series default
12835 .
12836 \end_layout
12837
12838 \begin_layout Standard
12839 \noindent
12840 \align center
12841 \begin_inset Tabular
12842 <lyxtabular version="3" rows="5" columns="2">
12843 <features tabularvalignment="middle">
12844 <column alignment="center" valignment="top" width="0">
12845 <column alignment="center" valignment="top" width="0">
12846 <row>
12847 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12848 \begin_inset Text
12849
12850 \begin_layout Plain Layout
12851 Comando
12852 \end_layout
12853
12854 \end_inset
12855 </cell>
12856 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12857 \begin_inset Text
12858
12859 \begin_layout Plain Layout
12860 Resultado
12861 \begin_inset Note Note
12862 status collapsed
12863
12864 \begin_layout Plain Layout
12865
12866 \series bold
12867
12868 \backslash
12869 raisebox
12870 \series default
12871  se usa sólo como espaciador
12872 \end_layout
12873
12874 \end_inset
12875
12876
12877 \end_layout
12878
12879 \end_inset
12880 </cell>
12881 </row>
12882 <row>
12883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12884 \begin_inset Text
12885
12886 \begin_layout Plain Layout
12887
12888 \backslash
12889 fbox
12890 \begin_inset ERT
12891 status collapsed
12892
12893 \begin_layout Plain Layout
12894
12895
12896 \backslash
12897 spce 
12898 \end_layout
12899
12900 \end_inset
12901
12902
12903 \family sans
12904 Ctrl+M
12905 \family default
12906  
12907 \backslash
12908 int
12909 \begin_inset ERT
12910 status collapsed
12911
12912 \begin_layout Plain Layout
12913
12914
12915 \backslash
12916 spce 
12917 \end_layout
12918
12919 \end_inset
12920
12921 A=B
12922 \end_layout
12923
12924 \end_inset
12925 </cell>
12926 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12927 \begin_inset Text
12928
12929 \begin_layout Plain Layout
12930 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12931 \end_inset
12932
12933
12934 \end_layout
12935
12936 \end_inset
12937 </cell>
12938 </row>
12939 <row>
12940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12941 \begin_inset Text
12942
12943 \begin_layout Plain Layout
12944
12945 \backslash
12946 boxed
12947 \begin_inset ERT
12948 status collapsed
12949
12950 \begin_layout Plain Layout
12951
12952
12953 \backslash
12954 spce 
12955 \end_layout
12956
12957 \end_inset
12958
12959
12960 \backslash
12961 int
12962 \begin_inset ERT
12963 status collapsed
12964
12965 \begin_layout Plain Layout
12966
12967
12968 \backslash
12969 spce 
12970 \end_layout
12971
12972 \end_inset
12973
12974 A=B
12975 \end_layout
12976
12977 \end_inset
12978 </cell>
12979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12980 \begin_inset Text
12981
12982 \begin_layout Plain Layout
12983 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12984 \end_inset
12985
12986
12987 \end_layout
12988
12989 \end_inset
12990 </cell>
12991 </row>
12992 <row>
12993 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12994 \begin_inset Text
12995
12996 \begin_layout Plain Layout
12997 A+
12998 \backslash
12999 fbox
13000 \begin_inset ERT
13001 status collapsed
13002
13003 \begin_layout Plain Layout
13004
13005
13006 \backslash
13007 spce 
13008 \end_layout
13009
13010 \end_inset
13011
13012 B
13013 \end_layout
13014
13015 \end_inset
13016 </cell>
13017 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13018 \begin_inset Text
13019
13020 \begin_layout Plain Layout
13021 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
13022 \end_inset
13023
13024
13025 \end_layout
13026
13027 \end_inset
13028 </cell>
13029 </row>
13030 <row>
13031 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13032 \begin_inset Text
13033
13034 \begin_layout Plain Layout
13035
13036 \backslash
13037 framebox
13038 \begin_inset ERT
13039 status collapsed
13040
13041 \begin_layout Plain Layout
13042
13043
13044 \backslash
13045 spce 
13046 \end_layout
13047
13048 \end_inset
13049
13050 20mm
13051 \begin_inset Formula $\to$
13052 \end_inset
13053
13054
13055 \begin_inset Formula $\to$
13056 \end_inset
13057
13058
13059 \family sans
13060 Ctrl+M
13061 \family default
13062  
13063 \backslash
13064 frac
13065 \begin_inset ERT
13066 status collapsed
13067
13068 \begin_layout Plain Layout
13069
13070
13071 \backslash
13072 spce 
13073 \end_layout
13074
13075 \end_inset
13076
13077 A
13078 \begin_inset Formula $\downarrow$
13079 \end_inset
13080
13081 B
13082 \end_layout
13083
13084 \end_inset
13085 </cell>
13086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13087 \begin_inset Text
13088
13089 \begin_layout Plain Layout
13090 \begin_inset Formula $\raisebox{6mm}{}$
13091 \end_inset
13092
13093
13094 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
13095 \end_inset
13096
13097
13098 \begin_inset Formula $\raisebox{-4mm}{}$
13099 \end_inset
13100
13101
13102 \end_layout
13103
13104 \end_inset
13105 </cell>
13106 </row>
13107 </lyxtabular>
13108
13109 \end_inset
13110
13111
13112 \end_layout
13113
13114 \begin_layout Standard
13115 El grosor del marco también se puede ajustar.
13116  Para ello hay que insertar los siguientes comandos en modo TeX antes de
13117  la fórmula:
13118 \end_layout
13119
13120 \begin_layout Standard
13121
13122 \series bold
13123
13124 \backslash
13125 fboxrule
13126 \series default
13127  
13128 \series bold
13129
13130 \begin_inset Quotes fld
13131 \end_inset
13132
13133 grosor
13134 \begin_inset Quotes frd
13135 \end_inset
13136
13137
13138 \series default
13139  
13140 \series bold
13141
13142 \backslash
13143 fboxsep
13144 \series default
13145  
13146 \series bold
13147
13148 \begin_inset Quotes fld
13149 \end_inset
13150
13151 distancia
13152 \begin_inset Quotes frd
13153 \end_inset
13154
13155
13156 \end_layout
13157
13158 \begin_layout Standard
13159 \begin_inset Quotes fld
13160 \end_inset
13161
13162 distancia
13163 \begin_inset Quotes frd
13164 \end_inset
13165
13166  especifica la distancia mínima entre el marco y el primer carácter en el
13167  cuadro.
13168  Un ejemplo de esto es la siguiente ecuación enmarcada:
13169 \begin_inset ERT
13170 status collapsed
13171
13172 \begin_layout Plain Layout
13173
13174
13175 \backslash
13176 fboxrule 2mm 
13177 \backslash
13178 fboxsep 3mm
13179 \end_layout
13180
13181 \end_inset
13182
13183
13184 \begin_inset Formula \[
13185 \boxed{A+B=C}\]
13186
13187 \end_inset
13188
13189
13190 \end_layout
13191
13192 \begin_layout Standard
13193 Delante de esta ecuación se han insertado los comandos
13194 \end_layout
13195
13196 \begin_layout Standard
13197
13198 \series bold
13199
13200 \backslash
13201 fboxrule
13202 \series default
13203  
13204 \series bold
13205 2mm
13206 \series default
13207  
13208 \series bold
13209
13210 \backslash
13211 fboxsep
13212 \series default
13213  
13214 \series bold
13215 3mm
13216 \end_layout
13217
13218 \begin_layout Standard
13219 en modo TeX.
13220  Los valores dados se usan para todos los cuadros siguientes.
13221 \end_layout
13222
13223 \begin_layout Standard
13224 Para volver al tamaño estándar del marco se inserta el comando
13225 \end_layout
13226
13227 \begin_layout Standard
13228
13229 \series bold
13230
13231 \backslash
13232 fboxrule
13233 \series default
13234  
13235 \series bold
13236 0.4pt
13237 \series default
13238  
13239 \series bold
13240
13241 \backslash
13242 fboxsep
13243 \series default
13244  
13245 \series bold
13246 3pt
13247 \series default
13248
13249 \begin_inset ERT
13250 status collapsed
13251
13252 \begin_layout Plain Layout
13253
13254
13255 \backslash
13256 fboxrule 0.4pt 
13257 \backslash
13258 fboxsep 3pt
13259 \end_layout
13260
13261 \end_inset
13262
13263
13264 \end_layout
13265
13266 \begin_layout Standard
13267 en modo TeX antes de la ecuación siguiente.
13268 \end_layout
13269
13270 \begin_layout Subsection
13271 Cuadros sin marco
13272 \begin_inset CommandInset label
13273 LatexCommand label
13274 name "sub:Cuadros-sin-marco"
13275
13276 \end_inset
13277
13278
13279 \begin_inset Index idx
13280 status collapsed
13281
13282 \begin_layout Plain Layout
13283 Cuadros ! sin marco
13284 \end_layout
13285
13286 \end_inset
13287
13288
13289 \end_layout
13290
13291 \begin_layout Standard
13292 Para cuadros sin marco hay los comandos: 
13293 \series bold
13294
13295 \backslash
13296 mbox
13297 \series default
13298
13299 \begin_inset Index idx
13300 status collapsed
13301
13302 \begin_layout Plain Layout
13303 Comandos ! M ! 
13304 \backslash
13305 mbox
13306 \end_layout
13307
13308 \end_inset
13309
13310
13311 \series bold
13312
13313 \backslash
13314 makebox
13315 \series default
13316
13317 \begin_inset Index idx
13318 status collapsed
13319
13320 \begin_layout Plain Layout
13321 Comandos ! M ! 
13322 \backslash
13323 makebox
13324 \end_layout
13325
13326 \end_inset
13327
13328  y 
13329 \series bold
13330
13331 \backslash
13332 raisebox
13333 \series default
13334
13335 \begin_inset Index idx
13336 status collapsed
13337
13338 \begin_layout Plain Layout
13339 Comandos ! R ! 
13340 \backslash
13341 raisebox
13342 \end_layout
13343
13344 \end_inset
13345
13346 .
13347 \end_layout
13348
13349 \begin_layout Standard
13350 Con 
13351 \series bold
13352
13353 \backslash
13354 raisebox
13355 \series default
13356  se puede poner un cuadro subíndice o superíndice, pero a diferencia de
13357  los normales, los caracteres en el cuadro mantienen su tamaño de fuente.
13358  
13359 \series bold
13360
13361 \backslash
13362 raisebox
13363 \series default
13364  se usa con el siguiente esquema: 
13365 \end_layout
13366
13367 \begin_layout Standard
13368
13369 \series bold
13370
13371 \backslash
13372 raisebox{altura}{contenido del marco}
13373 \end_layout
13374
13375 \begin_layout Standard
13376 Cuando el cuadro tenga que contener una ecuación, hace falta una ecuación
13377  extra, como con 
13378 \series bold
13379
13380 \backslash
13381 fbox
13382 \series default
13383 .
13384  
13385 \begin_inset Note Greyedout
13386 status open
13387
13388 \begin_layout Plain Layout
13389
13390 \series bold
13391 Nota
13392 \series default
13393 : Para
13394 \series bold
13395
13396 \backslash
13397 raisebox
13398 \series default
13399  se ha creado esta ecuación extra tecleando 
13400 \family sans
13401 Ctrl+M
13402 \family default
13403  dos veces en vez de una porque LyX aún no soporta 
13404 \series bold
13405
13406 \backslash
13407 raisebox
13408 \series default
13409  directamente.
13410 \end_layout
13411
13412 \end_inset
13413
13414
13415 \end_layout
13416
13417 \begin_layout Standard
13418 \align center
13419 \begin_inset Tabular
13420 <lyxtabular version="3" rows="4" columns="2">
13421 <features tabularvalignment="middle">
13422 <column alignment="center" valignment="top" width="0">
13423 <column alignment="center" valignment="top" width="0">
13424 <row>
13425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13426 \begin_inset Text
13427
13428 \begin_layout Plain Layout
13429 Comando
13430 \end_layout
13431
13432 \end_inset
13433 </cell>
13434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13435 \begin_inset Text
13436
13437 \begin_layout Plain Layout
13438 Resultado
13439 \end_layout
13440
13441 \end_inset
13442 </cell>
13443 </row>
13444 <row>
13445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13446 \begin_inset Text
13447
13448 \begin_layout Plain Layout
13449 H
13450 \backslash
13451 raisebox{2mm
13452 \begin_inset Formula $\to$
13453 \end_inset
13454
13455
13456 \backslash
13457 {al
13458 \begin_inset Formula $\to$
13459 \end_inset
13460
13461  lo
13462 \end_layout
13463
13464 \end_inset
13465 </cell>
13466 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13467 \begin_inset Text
13468
13469 \begin_layout Plain Layout
13470 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13471 \end_inset
13472
13473
13474 \end_layout
13475
13476 \end_inset
13477 </cell>
13478 </row>
13479 <row>
13480 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13481 \begin_inset Text
13482
13483 \begin_layout Plain Layout
13484 H
13485 \backslash
13486 raisebox{-2mm
13487 \begin_inset Formula $\to$
13488 \end_inset
13489
13490
13491 \backslash
13492 {al
13493 \begin_inset Formula $\to$
13494 \end_inset
13495
13496 lo
13497 \end_layout
13498
13499 \end_inset
13500 </cell>
13501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13502 \begin_inset Text
13503
13504 \begin_layout Plain Layout
13505 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13506 \end_inset
13507
13508
13509 \end_layout
13510
13511 \end_inset
13512 </cell>
13513 </row>
13514 <row>
13515 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13516 \begin_inset Text
13517
13518 \begin_layout Plain Layout
13519 A=
13520 \backslash
13521 raisebox{-2mm
13522 \begin_inset Formula $\to$
13523 \end_inset
13524
13525
13526 \backslash
13527 {
13528 \family sans
13529 Ctrl+M Ctrl+M
13530 \family default
13531  
13532 \backslash
13533 sqrt
13534 \begin_inset ERT
13535 status collapsed
13536
13537 \begin_layout Plain Layout
13538
13539
13540 \backslash
13541 spce 
13542 \end_layout
13543
13544 \end_inset
13545
13546
13547 \end_layout
13548
13549 \end_inset
13550 </cell>
13551 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13552 \begin_inset Text
13553
13554 \begin_layout Plain Layout
13555 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13556 \end_inset
13557
13558
13559 \end_layout
13560
13561 \end_inset
13562 </cell>
13563 </row>
13564 </lyxtabular>
13565
13566 \end_inset
13567
13568
13569 \end_layout
13570
13571 \begin_layout Standard
13572 El comando 
13573 \series bold
13574
13575 \backslash
13576 mbox
13577 \series default
13578  es equivalente a 
13579 \series bold
13580
13581 \backslash
13582 fbox
13583 \series default
13584  y 
13585 \series bold
13586
13587 \backslash
13588 makebox
13589 \series default
13590  es equivalente a 
13591 \series bold
13592
13593 \backslash
13594 framebox
13595 \series default
13596 , con la diferencia de que no hay marco.
13597 \end_layout
13598
13599 \begin_layout Subsection
13600 Cuadros coloreados
13601 \begin_inset CommandInset label
13602 LatexCommand label
13603 name "sub:Cuadros-coloreados"
13604
13605 \end_inset
13606
13607
13608 \begin_inset Index idx
13609 status collapsed
13610
13611 \begin_layout Plain Layout
13612 Cuadros ! coloreados
13613 \end_layout
13614
13615 \end_inset
13616
13617
13618 \end_layout
13619
13620 \begin_layout Standard
13621 Para poder usar todos los comandos explicados en esta sección hay que cargar
13622  en el preámbulo LaTeX el paquete LaTeX 
13623 \series bold
13624 color
13625 \series default
13626
13627 \begin_inset Foot
13628 status collapsed
13629
13630 \begin_layout Plain Layout
13631 El paquete LaTeX 
13632 \series bold
13633 color
13634 \series default
13635  forma parte de toda distribución LaTeX estándar.
13636 \end_layout
13637
13638 \end_inset
13639
13640
13641 \begin_inset Index idx
13642 status collapsed
13643
13644 \begin_layout Plain Layout
13645 Paquetes ! color
13646 \end_layout
13647
13648 \end_inset
13649
13650 , con la línea
13651 \begin_inset Foot
13652 status collapsed
13653
13654 \begin_layout Plain Layout
13655 Cuando hay texto coloreado con un color predefinido en alguna parte del
13656  documento, LyX carga automáticamente el paquete LaTeX 
13657 \series bold
13658 color
13659 \series default
13660 .
13661  Por tanto es posible que el paquete sea cargado dos veces, pero esto no
13662  origina problemas.
13663 \end_layout
13664
13665 \end_inset
13666
13667
13668 \begin_inset Note Note
13669 status collapsed
13670
13671 \begin_layout Plain Layout
13672 Para evitar que el paquete sea cargado dos veces se ha insertado una macro
13673  en el preámbulo LaTeX.
13674 \end_layout
13675
13676 \end_inset
13677
13678
13679 \end_layout
13680
13681 \begin_layout Standard
13682
13683 \series bold
13684
13685 \backslash
13686 usepackage{color}
13687 \begin_inset VSpace medskip
13688 \end_inset
13689
13690
13691 \end_layout
13692
13693 \begin_layout Standard
13694 Para colorear cuadros se usa el comando 
13695 \series bold
13696
13697 \backslash
13698 colorbox
13699 \series default
13700
13701 \begin_inset Index idx
13702 status collapsed
13703
13704 \begin_layout Plain Layout
13705 Comandos ! C ! 
13706 \backslash
13707 colorbox
13708 \end_layout
13709
13710 \end_inset
13711
13712  con el siguiente esquema:
13713 \end_layout
13714
13715 \begin_layout Standard
13716
13717 \series bold
13718
13719 \backslash
13720 colorbox{color}{contenido del cuadro}
13721 \end_layout
13722
13723 \begin_layout Standard
13724 El contenido del cuadro puede ser otro cuadro, y también un 
13725 \backslash
13726
13727 \series bold
13728 colorbox
13729 \series default
13730  puede ser parte de otro cuadro (véanse los ejemplos 2º y 3º).
13731  Si el cuadro debe contener una ecuación debe crearse una ecuación extra,
13732  como con 
13733 \series bold
13734
13735 \backslash
13736 raisebox
13737 \series default
13738 .
13739 \begin_inset Foot
13740 status collapsed
13741
13742 \begin_layout Plain Layout
13743 Esto también se aplica para el comando 
13744 \series bold
13745
13746 \backslash
13747 fcolorbox
13748 \series default
13749 .
13750 \end_layout
13751
13752 \end_inset
13753
13754  
13755 \end_layout
13756
13757 \begin_layout Standard
13758 Se puede elegir uno de los siguientes colores predefinidos:
13759 \end_layout
13760
13761 \begin_layout Standard
13762
13763 \series bold
13764 black
13765 \series default
13766
13767 \series bold
13768 blue
13769 \series default
13770
13771 \series bold
13772 cyan
13773 \series default
13774
13775 \series bold
13776 green
13777 \series default
13778
13779 \series bold
13780 magenta
13781 \series default
13782
13783 \series bold
13784 red
13785 \series default
13786
13787 \series bold
13788 white
13789 \series default
13790
13791 \series bold
13792 yellow
13793 \end_layout
13794
13795 \begin_layout Standard
13796 \align center
13797 \begin_inset Tabular
13798 <lyxtabular version="3" rows="4" columns="2">
13799 <features tabularvalignment="middle">
13800 <column alignment="center" valignment="top" width="0">
13801 <column alignment="center" valignment="top" width="0">
13802 <row>
13803 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13804 \begin_inset Text
13805
13806 \begin_layout Plain Layout
13807 Comando
13808 \end_layout
13809
13810 \end_inset
13811 </cell>
13812 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13813 \begin_inset Text
13814
13815 \begin_layout Plain Layout
13816 Resultado
13817 \begin_inset Note Note
13818 status collapsed
13819
13820 \begin_layout Plain Layout
13821
13822 \series bold
13823
13824 \backslash
13825 raisebox
13826 \series default
13827  se usa sólo como espaciador
13828 \end_layout
13829
13830 \end_inset
13831
13832
13833 \end_layout
13834
13835 \end_inset
13836 </cell>
13837 </row>
13838 <row>
13839 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13840 \begin_inset Text
13841
13842 \begin_layout Plain Layout
13843
13844 \backslash
13845 colorbox{yellow
13846 \begin_inset Formula $\to$
13847 \end_inset
13848
13849
13850 \backslash
13851 {A=B
13852 \end_layout
13853
13854 \end_inset
13855 </cell>
13856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13857 \begin_inset Text
13858
13859 \begin_layout Plain Layout
13860 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13861 \end_inset
13862
13863
13864 \end_layout
13865
13866 \end_inset
13867 </cell>
13868 </row>
13869 <row>
13870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13871 \begin_inset Text
13872
13873 \begin_layout Plain Layout
13874
13875 \backslash
13876 colorbox{green
13877 \begin_inset Formula $\to$
13878 \end_inset
13879
13880
13881 \backslash
13882 {
13883 \backslash
13884 fbox
13885 \begin_inset ERT
13886 status collapsed
13887
13888 \begin_layout Plain Layout
13889
13890
13891 \backslash
13892 spce 
13893 \end_layout
13894
13895 \end_inset
13896
13897 A=B
13898 \end_layout
13899
13900 \end_inset
13901 </cell>
13902 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13903 \begin_inset Text
13904
13905 \begin_layout Plain Layout
13906 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13907 \end_inset
13908
13909
13910 \end_layout
13911
13912 \end_inset
13913 </cell>
13914 </row>
13915 <row>
13916 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13917 \begin_inset Text
13918
13919 \begin_layout Plain Layout
13920
13921 \backslash
13922 fbox
13923 \begin_inset ERT
13924 status collapsed
13925
13926 \begin_layout Plain Layout
13927
13928
13929 \backslash
13930 spce 
13931 \end_layout
13932
13933 \end_inset
13934
13935
13936 \backslash
13937 colorbox{green
13938 \begin_inset Formula $\to$
13939 \end_inset
13940
13941
13942 \backslash
13943 {
13944 \family sans
13945 Ctrl+M Ctrl+M
13946 \family default
13947  
13948 \backslash
13949 int
13950 \begin_inset ERT
13951 status collapsed
13952
13953 \begin_layout Plain Layout
13954
13955
13956 \backslash
13957 spce 
13958 \end_layout
13959
13960 \end_inset
13961
13962 C=D
13963 \end_layout
13964
13965 \end_inset
13966 </cell>
13967 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13968 \begin_inset Text
13969
13970 \begin_layout Plain Layout
13971 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13972 \end_inset
13973
13974
13975 \end_layout
13976
13977 \end_inset
13978 </cell>
13979 </row>
13980 </lyxtabular>
13981
13982 \end_inset
13983
13984
13985 \end_layout
13986
13987 \begin_layout Standard
13988
13989 \series bold
13990
13991 \backslash
13992 colorbox
13993 \series default
13994  sólo colorea el cuadro pero no los caracteres.
13995  Para colorear todos los caracteres se selecciona toda la ecuación y se
13996  elige un color en el diálogo 
13997 \family sans
13998 Estilo
13999 \begin_inset space ~
14000 \end_inset
14001
14002 del
14003 \begin_inset space ~
14004 \end_inset
14005
14006 texto
14007 \family default
14008 .
14009  El diálogo puede abrirse con el botón 
14010 \begin_inset Graphics
14011         filename ../../images/dialog-show_character.png
14012         scale 85
14013
14014 \end_inset
14015
14016  de la barra de herramientas o con el menú 
14017 \family sans
14018 Editar\SpecialChar \menuseparator
14019 Estilo
14020 \begin_inset space ~
14021 \end_inset
14022
14023 del
14024 \begin_inset space ~
14025 \end_inset
14026
14027 texto\SpecialChar \menuseparator
14028 Personalizado
14029 \family default
14030 .
14031  El número de la ecuación tendrá en ese caso el mismo color que la ecuación.
14032  Si el número de la ecuación debe tener otro color que el de los caracteres
14033  de la ecuación, el color debe cambiarse dentro de la ecuación.
14034 \end_layout
14035
14036 \begin_layout Standard
14037 Un ejemplo:
14038 \color red
14039
14040 \begin_inset Formula \begin{equation}
14041 {\color{red}\int A=B}\label{eq:rojo}\end{equation}
14042
14043 \end_inset
14044
14045
14046 \color green
14047
14048 \begin_inset Formula \begin{equation}
14049 {\color{green}{\color{red}\int A=B}}\label{eq:rojoverde}\end{equation}
14050
14051 \end_inset
14052
14053
14054 \end_layout
14055
14056 \begin_layout Standard
14057 La ecuación 
14058 \begin_inset CommandInset ref
14059 LatexCommand eqref
14060 reference "eq:rojo"
14061
14062 \end_inset
14063
14064  está toda coloreada en rojo.
14065 \begin_inset Newline newline
14066 \end_inset
14067
14068 La ecuación 
14069 \begin_inset CommandInset ref
14070 LatexCommand eqref
14071 reference "eq:rojoverde"
14072
14073 \end_inset
14074
14075  se ha coloreado en primer lugar toda en verde para colorear el número de
14076  la ecuación.
14077  Posteriormente se han coloreado en rojo los caracteres.
14078 \family sans
14079
14080 \begin_inset VSpace bigskip
14081 \end_inset
14082
14083
14084 \end_layout
14085
14086 \begin_layout Standard
14087 Para colorear diferente el marco y el resto del cuadro se usa el comando
14088  
14089 \series bold
14090
14091 \backslash
14092 fcolorbox
14093 \series default
14094
14095 \begin_inset Index idx
14096 status collapsed
14097
14098 \begin_layout Plain Layout
14099 Comandos ! F ! 
14100 \backslash
14101 fcolorbox
14102 \end_layout
14103
14104 \end_inset
14105
14106  con el siguiente esquema:
14107 \end_layout
14108
14109 \begin_layout Standard
14110
14111 \series bold
14112
14113 \backslash
14114 fcolorbox{color del marco}{color}{contenido del cuadro}
14115 \end_layout
14116
14117 \begin_layout Standard
14118 Así pues 
14119 \series bold
14120
14121 \backslash
14122 fcolorbox
14123 \series default
14124  es una extensión del comando 
14125 \series bold
14126
14127 \backslash
14128 colorbox
14129 \series default
14130 .
14131  La anchura del marco se establece, como para 
14132 \series bold
14133
14134 \backslash
14135 framebox
14136 \series default
14137 , con 
14138 \series bold
14139
14140 \backslash
14141 fboxrule
14142 \series default
14143  y 
14144 \series bold
14145
14146 \backslash
14147 fboxsep
14148 \series default
14149 .
14150  Un ejemplo:
14151 \begin_inset ERT
14152 status collapsed
14153
14154 \begin_layout Plain Layout
14155
14156
14157 \backslash
14158 fboxrule 1mm 
14159 \backslash
14160 fboxsep 1mm
14161 \end_layout
14162
14163 \end_inset
14164
14165
14166 \begin_inset Formula \[
14167 \fcolorbox{cyan}{magenta}{A=B}\]
14168
14169 \end_inset
14170
14171
14172 \end_layout
14173
14174 \begin_layout Standard
14175 \begin_inset ERT
14176 status collapsed
14177
14178 \begin_layout Plain Layout
14179
14180
14181 \backslash
14182 fboxrule 0.4pt 
14183 \backslash
14184 fboxsep 3pt
14185 \end_layout
14186
14187 \end_inset
14188
14189
14190 \end_layout
14191
14192 \begin_layout Standard
14193 Esta ecuación se ha compuesto con el comando
14194 \begin_inset Newline newline
14195 \end_inset
14196
14197
14198 \series bold
14199
14200 \backslash
14201 fcolorbox{cyan
14202 \begin_inset Formula $\to$
14203 \end_inset
14204
14205
14206 \backslash
14207 {magenta
14208 \begin_inset Formula $\to$
14209 \end_inset
14210
14211
14212 \backslash
14213 {A=B
14214 \end_layout
14215
14216 \begin_layout Standard
14217 \begin_inset VSpace bigskip
14218 \end_inset
14219
14220
14221 \end_layout
14222
14223 \begin_layout Standard
14224 Para usar colores distintos de los predefinidos deben ser definidos previamente.
14225 \end_layout
14226
14227 \begin_layout Standard
14228 Por ejemplo, se puede definir el color 
14229 \begin_inset Quotes fld
14230 \end_inset
14231
14232
14233 \series bold
14234 verdeoscuro
14235 \series default
14236
14237 \begin_inset Quotes frd
14238 \end_inset
14239
14240  con la línea de preámbulo LaTeX:
14241 \end_layout
14242
14243 \begin_layout Standard
14244
14245 \series bold
14246
14247 \backslash
14248 definecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
14249 \series default
14250
14251 \begin_inset Index idx
14252 status collapsed
14253
14254 \begin_layout Plain Layout
14255 Comandos ! D ! 
14256 \backslash
14257 definecolor
14258 \end_layout
14259
14260 \end_inset
14261
14262
14263 \end_layout
14264
14265 \begin_layout Standard
14266
14267 \series bold
14268 cmyk
14269 \series default
14270  es el espacio de color referido a los colores 
14271 \series bold
14272 cyan
14273 \series default
14274
14275 \series bold
14276 magenta
14277 \series default
14278
14279 \series bold
14280 yellow
14281 \series default
14282  y 
14283 \series bold
14284 black
14285 \series default
14286 .
14287  Los cuatro números separados por coma son el factor de cuota para los colores
14288  correspondientes del espacio de color.
14289  Los factores pueden estar en el rango 0-1.
14290  En vez de 
14291 \series bold
14292 cmyk
14293 \series default
14294  se puede usar el espacio de color 
14295 \series bold
14296 rgb
14297 \series default
14298 , que se refiere a 
14299 \series bold
14300 red
14301 \series default
14302
14303 \series bold
14304 green
14305 \series default
14306  y 
14307 \series bold
14308 blue
14309 \series default
14310 , así pues en este caso hay tres factores de cuota para los correspondientes
14311  colores.
14312  Además hay el espacio de color 
14313 \series bold
14314 gray
14315 \series default
14316  con un factor de cuota para el valor gris.
14317 \end_layout
14318
14319 \begin_layout Standard
14320 Como ejemplo he aquí un cuadro enmarcado con el nuevo color definido 
14321 \series bold
14322 verdeoscuro
14323 \series default
14324  y los caracteres en color amarillo:
14325 \color black
14326
14327 \begin_inset Formula \begin{equation}
14328 \colorbox{verdeoscuro}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[3]{B}}{\ln\left(\frac{1}{3}\right)}}}\end{equation}
14329
14330 \end_inset
14331
14332
14333 \end_layout
14334
14335 \begin_layout Standard
14336 Los colores personalizados también se pueden usar para texto con la ayuda
14337  del comando 
14338 \series bold
14339
14340 \backslash
14341 textcolor
14342 \series default
14343
14344 \begin_inset Index idx
14345 status collapsed
14346
14347 \begin_layout Plain Layout
14348 Texto ! coloreado
14349 \end_layout
14350
14351 \end_inset
14352
14353
14354 \end_layout
14355
14356 \begin_layout Standard
14357 \begin_inset ERT
14358 status collapsed
14359
14360 \begin_layout Plain Layout
14361
14362
14363 \backslash
14364 textcolor{verdeoscuro}{
14365 \end_layout
14366
14367 \end_inset
14368
14369 Esta frase en 
14370 \begin_inset Quotes fld
14371 \end_inset
14372
14373 verdeoscuro
14374 \begin_inset Quotes frd
14375 \end_inset
14376
14377 .
14378 \begin_inset ERT
14379 status collapsed
14380
14381 \begin_layout Plain Layout
14382
14383 }
14384 \end_layout
14385
14386 \end_inset
14387
14388
14389 \end_layout
14390
14391 \begin_layout Standard
14392
14393 \series bold
14394
14395 \backslash
14396 textcolor
14397 \series default
14398
14399 \begin_inset Index idx
14400 status collapsed
14401
14402 \begin_layout Plain Layout
14403 Comandos ! T ! 
14404 \backslash
14405 textcolor
14406 \end_layout
14407
14408 \end_inset
14409
14410  se usa con el esquema 
14411 \series bold
14412
14413 \backslash
14414 textcolor{color}{caracteres a colorear}
14415 \series default
14416 .
14417 \end_layout
14418
14419 \begin_layout Subsection
14420 Cuadros de párrafo
14421 \begin_inset CommandInset label
14422 LatexCommand label
14423 name "sub:Cuadros-de-párrafo"
14424
14425 \end_inset
14426
14427
14428 \begin_inset Index idx
14429 status collapsed
14430
14431 \begin_layout Plain Layout
14432 Cuadros ! para párrafos
14433 \end_layout
14434
14435 \end_inset
14436
14437
14438 \end_layout
14439
14440 \begin_layout Standard
14441 Un cuadro que puede contener varias líneas y párrafos, denominado cuadro
14442  de párrafo (parbox), se puede generar con el menú 
14443 \family sans
14444 Insertar\SpecialChar \menuseparator
14445 Cuadro
14446 \family default
14447  o con el botón 
14448 \begin_inset Graphics
14449         filename ../../images/box-insert.png
14450         scale 85
14451
14452 \end_inset
14453
14454  de la barra de herramientas.
14455 \end_layout
14456
14457 \begin_layout Standard
14458 El siguiente ejemplo muestra un cuadro de párrafo enmarcado en una línea:
14459 \begin_inset VSpace medskip
14460 \end_inset
14461
14462 Esta línea contiene 
14463 \begin_inset Box Boxed
14464 position "c"
14465 hor_pos "c"
14466 has_inner_box 1
14467 inner_pos "c"
14468 use_parbox 1
14469 use_makebox 0
14470 width "5cm"
14471 special "none"
14472 height "1in"
14473 height_special "totalheight"
14474 status collapsed
14475
14476 \begin_layout Plain Layout
14477 Esto es un cuadro de párrafo.
14478  Tiene exactamente 5
14479 \begin_inset space \thinspace{}
14480 \end_inset
14481
14482 cm de largo y además puede contener ecuaciones: 
14483 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14484 \end_inset
14485
14486
14487 \end_layout
14488
14489 \end_inset
14490
14491
14492 \begin_inset space ~
14493 \end_inset
14494
14495  un cuadro de párrafo.
14496 \begin_inset VSpace medskip
14497 \end_inset
14498
14499 Ese cuadro se compone haciendo clic derecho sobre el rectángulo gris insertado.
14500  Surge un diálogo con las propiedades del cuadro.
14501  En este caso: 
14502 \emph on
14503 Decoración
14504 \emph default
14505 : Marco rectangular, 
14506 \emph on
14507 Cuadro interior
14508 \emph default
14509 : Párrafo, 
14510 \emph on
14511 Ancho
14512 \emph default
14513 : 5
14514 \begin_inset space \thinspace{}
14515 \end_inset
14516
14517 cm, 
14518 \emph on
14519 Alineación Vertical
14520 \emph default
14521  
14522 \emph on
14523 Cuadro
14524 \emph default
14525 : Medio.
14526 \end_layout
14527
14528 \begin_layout Standard
14529 \begin_inset VSpace medskip
14530 \end_inset
14531
14532 En LaTeX, un cuadro de párrafo se inserta con el comando 
14533 \series bold
14534
14535 \backslash
14536 parbox
14537 \series default
14538
14539 \begin_inset Index idx
14540 status collapsed
14541
14542 \begin_layout Plain Layout
14543 Comandos ! P ! 
14544 \backslash
14545 parbox
14546 \end_layout
14547
14548 \end_inset
14549
14550  con el esquema siguiente:
14551 \end_layout
14552
14553 \begin_layout Standard
14554
14555 \series bold
14556
14557 \backslash
14558 parbox[posición]{anchura}{contenido}
14559 \end_layout
14560
14561 \begin_layout Standard
14562 Son posibles las posiciones 
14563 \emph on
14564 b
14565 \emph default
14566  y 
14567 \emph on
14568 t
14569 \emph default
14570
14571 \emph on
14572 b
14573 \emph default
14574  por 
14575 \begin_inset Quotes fld
14576 \end_inset
14577
14578 bottom
14579 \begin_inset Quotes frd
14580 \end_inset
14581
14582  (abajo), que alinea la última línea del cuadro con el texto de alrededor.
14583  Con 
14584 \emph on
14585 t
14586 \emph default
14587 , por 
14588 \begin_inset Quotes fld
14589 \end_inset
14590
14591 top
14592 \begin_inset Quotes frd
14593 \end_inset
14594
14595  (arriba), la alineación se hace con la primera línea.
14596  Si no se da posición, el cuadro se centrará verticalmente, véase la sección
14597  
14598 \emph on
14599 Cuadros
14600 \emph default
14601  del manual 
14602 \emph on
14603 Objetos insertados
14604 \emph default
14605  para ejemplos.
14606 \end_layout
14607
14608 \begin_layout Standard
14609 \begin_inset VSpace bigskip
14610 \end_inset
14611
14612 Para enmarcar ecuaciones completas, incluso el número de la ecuación, deben
14613  ponerse en un cuadro de párrafo.
14614  Para ello se inserta el comando
14615 \begin_inset Newline newline
14616 \end_inset
14617
14618
14619 \series bold
14620
14621 \backslash
14622 fbox{
14623 \backslash
14624 parbox{
14625 \backslash
14626 linewidth-2
14627 \backslash
14628 fboxsep-2
14629 \backslash
14630 fboxrule}{
14631 \begin_inset Newline newline
14632 \end_inset
14633
14634
14635 \series default
14636 en modo TeX delante de la ecuación.
14637  Aquí 
14638 \series bold
14639
14640 \backslash
14641 linewidth
14642 \series default
14643
14644 \begin_inset Index idx
14645 status collapsed
14646
14647 \begin_layout Plain Layout
14648 Comandos ! L ! 
14649 \backslash
14650 linewidth
14651 \end_layout
14652
14653 \end_inset
14654
14655  es la anchura de línea establecida para el documento.
14656  Como el marco está por fuera del cuadro de párrafo, hay que restar de dicha
14657  anchura dos veces la separación del marco y el grosor.
14658  Como LyX no lo hace automáticamente debido a un fallo,
14659 \begin_inset Foot
14660 status collapsed
14661
14662 \begin_layout Plain Layout
14663 \begin_inset CommandInset href
14664 LatexCommand href
14665 name "LyX-bug #4483"
14666 target "http://www.lyx.org/trac/ticket/4483"
14667
14668 \end_inset
14669
14670
14671 \end_layout
14672
14673 \end_inset
14674
14675  hay que usar modo TeX.
14676  Para poder multiplicar y restar en los argumentos hay que cargar en el
14677  preámbulo LaTeX el paquete LaTeX 
14678 \series bold
14679 calc
14680 \series default
14681 ,
14682 \begin_inset Foot
14683 status collapsed
14684
14685 \begin_layout Plain Layout
14686
14687 \series bold
14688 calc
14689 \series default
14690  es parte de toda instalación LaTeX estándar.
14691 \end_layout
14692
14693 \end_inset
14694
14695
14696 \begin_inset Index idx
14697 status collapsed
14698
14699 \begin_layout Plain Layout
14700 Paquetes ! calc
14701 \end_layout
14702
14703 \end_inset
14704
14705  con la línea
14706 \end_layout
14707
14708 \begin_layout Standard
14709
14710 \series bold
14711
14712 \backslash
14713 usepackage{calc}
14714 \end_layout
14715
14716 \begin_layout Standard
14717 Detrás de la ecuación se cierran ambos cuadros con 
14718 \series bold
14719 }}
14720 \series default
14721  en modo TeX.
14722  Aquí hay un ejemplo:
14723 \begin_inset ERT
14724 status collapsed
14725
14726 \begin_layout Plain Layout
14727
14728
14729 \backslash
14730 fboxsep 5mm 
14731 \backslash
14732 fboxrule 5mm
14733 \end_layout
14734
14735 \end_inset
14736
14737
14738 \end_layout
14739
14740 \begin_layout Standard
14741 \begin_inset ERT
14742 status collapsed
14743
14744 \begin_layout Plain Layout
14745
14746
14747 \backslash
14748 fbox{
14749 \backslash
14750 parbox{
14751 \backslash
14752 linewidth-2
14753 \backslash
14754 fboxsep-2
14755 \backslash
14756 fboxrule}{
14757 \end_layout
14758
14759 \end_inset
14760
14761
14762 \begin_inset Formula \begin{equation}
14763 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}\end{equation}
14764
14765 \end_inset
14766
14767
14768 \end_layout
14769
14770 \begin_layout Standard
14771 \begin_inset ERT
14772 status collapsed
14773
14774 \begin_layout Plain Layout
14775
14776 }}
14777 \end_layout
14778
14779 \end_inset
14780
14781
14782 \begin_inset ERT
14783 status collapsed
14784
14785 \begin_layout Plain Layout
14786
14787
14788 \backslash
14789 fboxrule 0.4pt 
14790 \backslash
14791 fboxsep 3pt
14792 \end_layout
14793
14794 \end_inset
14795
14796
14797 \end_layout
14798
14799 \begin_layout Standard
14800 \begin_inset VSpace medskip
14801 \end_inset
14802
14803
14804 \end_layout
14805
14806 \begin_layout Standard
14807 Como se ha usado el cuadro de párrafo como argumento de 
14808 \series bold
14809
14810 \backslash
14811 fbox
14812 \series default
14813 , en este caso no hay diferencia entre 
14814 \series bold
14815
14816 \backslash
14817 fbox
14818 \series default
14819  y 
14820 \series bold
14821
14822 \backslash
14823 boxed
14824 \series default
14825 .
14826  
14827 \end_layout
14828
14829 \begin_layout Standard
14830 \begin_inset VSpace bigskip
14831 \end_inset
14832
14833
14834 \end_layout
14835
14836 \begin_layout Standard
14837 Los cuadros de párrafo son muy útiles para comentar ecuaciones directamente.
14838  Para hacerlo, se usa 
14839 \series bold
14840
14841 \backslash
14842 parbox
14843 \series default
14844  en combinación con el comando 
14845 \series bold
14846
14847 \backslash
14848 tag
14849 \series default
14850 .
14851  (Véase más sobre 
14852 \series bold
14853
14854 \backslash
14855 tag
14856 \series default
14857  en 
14858 \begin_inset CommandInset ref
14859 LatexCommand ref
14860 reference "sub:Numeración-personalizada"
14861
14862 \end_inset
14863
14864 ).
14865 \end_layout
14866
14867 \begin_layout Standard
14868 Un ejemplo de ecuación comentada con 
14869 \series bold
14870
14871 \backslash
14872 parbox
14873 \series default
14874 :
14875 \end_layout
14876
14877 \begin_layout Standard
14878 \begin_inset ERT
14879 status collapsed
14880
14881 \begin_layout Plain Layout
14882
14883
14884 \backslash
14885 [5x-7b=3b
14886 \backslash
14887 tag*{
14888 \backslash
14889 parbox{5cm}{
14890 \end_layout
14891
14892 \end_inset
14893
14894 Esto es una descripción.
14895  Está claramente separada de la ecuación y es multilínea.
14896 \begin_inset ERT
14897 status collapsed
14898
14899 \begin_layout Plain Layout
14900
14901 }}
14902 \backslash
14903 ]
14904 \end_layout
14905
14906 \end_inset
14907
14908
14909 \end_layout
14910
14911 \begin_layout Standard
14912 Tales ecuaciones deben insertarse completamente en modo TeX porque LyX aún
14913  no soporta el comando 
14914 \series bold
14915
14916 \backslash
14917 parbox
14918 \series default
14919  en ecuaciones.
14920  La ecuación se compone con la siguiente secuencia de comandos:
14921 \end_layout
14922
14923 \begin_layout Standard
14924 El comando 
14925 \series bold
14926
14927 \backslash
14928 [5x-7b=3b
14929 \backslash
14930 tag*
14931 \backslash
14932 {
14933 \backslash
14934 parbox{5cm}{
14935 \series default
14936  se inserta en modo TeX.
14937 \begin_inset Foot
14938 status collapsed
14939
14940 \begin_layout Plain Layout
14941 Si se usa el estilo de ecuación 
14942 \series bold
14943 Sangrado
14944 \series default
14945
14946 \series bold
14947
14948 \backslash
14949 tag*
14950 \backslash
14951
14952 \series default
14953  se puede reemplazar por 
14954 \series bold
14955
14956 \backslash
14957 hfill
14958 \series default
14959 .
14960  (Véanse los estilos de ecuación en 
14961 \begin_inset CommandInset ref
14962 LatexCommand ref
14963 reference "sec:Estilos-de-ecuación"
14964
14965 \end_inset
14966
14967 ).
14968 \end_layout
14969
14970 \end_inset
14971
14972  Después sigue la descripción en texto normal, y por último 
14973 \series bold
14974 }}
14975 \backslash
14976 ]
14977 \series default
14978  en modo TeX.
14979  Aquí los comandos 
14980 \series bold
14981
14982 \backslash
14983 [
14984 \series default
14985  y 
14986 \series bold
14987
14988 \backslash
14989 ]
14990 \series default
14991  crean una ecuación presentada.
14992 \end_layout
14993
14994 \begin_layout Standard
14995 Las ventajas de 
14996 \series bold
14997
14998 \backslash
14999 parbox
15000 \series default
15001  pueden verse en este ejemplo que se ha 
15002 \begin_inset Quotes fld
15003 \end_inset
15004
15005 comentado
15006 \begin_inset Quotes frd
15007 \end_inset
15008
15009  usando el modo texto matemático:
15010 \begin_inset Formula \[
15011 5x-7b=3b\textrm{ Esto es una descripción. No está separada de la ecuación...}\]
15012
15013 \end_inset
15014
15015
15016 \end_layout
15017
15018 \begin_layout Section
15019 Operadores
15020 \begin_inset Index idx
15021 status collapsed
15022
15023 \begin_layout Plain Layout
15024 Operadores
15025 \end_layout
15026
15027 \end_inset
15028
15029
15030 \end_layout
15031
15032 \begin_layout Subsection
15033 Operadores grandes
15034 \begin_inset CommandInset label
15035 LatexCommand label
15036 name "sub:Operadores-grandes"
15037
15038 \end_inset
15039
15040
15041 \begin_inset Index idx
15042 status collapsed
15043
15044 \begin_layout Plain Layout
15045 Operadores ! grandes
15046 \end_layout
15047
15048 \end_inset
15049
15050
15051 \begin_inset Index idx
15052 status collapsed
15053
15054 \begin_layout Plain Layout
15055 Sumatorios
15056 \end_layout
15057
15058 \end_inset
15059
15060
15061 \begin_inset Index idx
15062 status collapsed
15063
15064 \begin_layout Plain Layout
15065 Integrales
15066 \end_layout
15067
15068 \end_inset
15069
15070
15071 \end_layout
15072
15073 \begin_layout Standard
15074 Para poder usar todos los comandos de integrales listados aquí, debe estar
15075  marcada la opción 
15076 \family sans
15077 Usar paquete esint automáticamente
15078 \family default
15079  en el apartado 
15080 \family sans
15081 Ecuaciones
15082 \family default
15083  de la configuración del documento.
15084  
15085 \end_layout
15086
15087 \begin_layout Standard
15088 \begin_inset space \hfill{}
15089 \end_inset
15090
15091
15092 \begin_inset Tabular
15093 <lyxtabular version="3" rows="11" columns="2">
15094 <features tabularvalignment="middle">
15095 <column alignment="center" valignment="top" width="0pt">
15096 <column alignment="center" valignment="top" width="0pt">
15097 <row>
15098 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15099 \begin_inset Text
15100
15101 \begin_layout Plain Layout
15102 Comando
15103 \end_layout
15104
15105 \end_inset
15106 </cell>
15107 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15108 \begin_inset Text
15109
15110 \begin_layout Plain Layout
15111 Resultado
15112 \end_layout
15113
15114 \end_inset
15115 </cell>
15116 </row>
15117 <row>
15118 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15119 \begin_inset Text
15120
15121 \begin_layout Plain Layout
15122
15123 \backslash
15124 int
15125 \begin_inset Index idx
15126 status collapsed
15127
15128 \begin_layout Plain Layout
15129 Comandos ! I ! 
15130 \backslash
15131 int
15132 \end_layout
15133
15134 \end_inset
15135
15136
15137 \end_layout
15138
15139 \end_inset
15140 </cell>
15141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15142 \begin_inset Text
15143
15144 \begin_layout Plain Layout
15145 \begin_inset Formula $\int$
15146 \end_inset
15147
15148
15149 \end_layout
15150
15151 \end_inset
15152 </cell>
15153 </row>
15154 <row>
15155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15156 \begin_inset Text
15157
15158 \begin_layout Plain Layout
15159
15160 \backslash
15161 oint
15162 \end_layout
15163
15164 \end_inset
15165 </cell>
15166 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15167 \begin_inset Text
15168
15169 \begin_layout Plain Layout
15170 \begin_inset Formula $\oint$
15171 \end_inset
15172
15173
15174 \end_layout
15175
15176 \end_inset
15177 </cell>
15178 </row>
15179 <row>
15180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15181 \begin_inset Text
15182
15183 \begin_layout Plain Layout
15184
15185 \backslash
15186 ointctrclockwise
15187 \end_layout
15188
15189 \end_inset
15190 </cell>
15191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15192 \begin_inset Text
15193
15194 \begin_layout Plain Layout
15195 \begin_inset Formula $\ointctrclockwise$
15196 \end_inset
15197
15198
15199 \end_layout
15200
15201 \end_inset
15202 </cell>
15203 </row>
15204 <row>
15205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15206 \begin_inset Text
15207
15208 \begin_layout Plain Layout
15209
15210 \backslash
15211 ointclockwise
15212 \end_layout
15213
15214 \end_inset
15215 </cell>
15216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15217 \begin_inset Text
15218
15219 \begin_layout Plain Layout
15220 \begin_inset Formula $\ointclockwise$
15221 \end_inset
15222
15223
15224 \end_layout
15225
15226 \end_inset
15227 </cell>
15228 </row>
15229 <row>
15230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15231 \begin_inset Text
15232
15233 \begin_layout Plain Layout
15234
15235 \backslash
15236 sqint
15237 \end_layout
15238
15239 \end_inset
15240 </cell>
15241 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15242 \begin_inset Text
15243
15244 \begin_layout Plain Layout
15245 \begin_inset Formula $\sqint$
15246 \end_inset
15247
15248
15249 \end_layout
15250
15251 \end_inset
15252 </cell>
15253 </row>
15254 <row>
15255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15256 \begin_inset Text
15257
15258 \begin_layout Plain Layout
15259
15260 \backslash
15261 fint
15262 \end_layout
15263
15264 \end_inset
15265 </cell>
15266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15267 \begin_inset Text
15268
15269 \begin_layout Plain Layout
15270  
15271 \begin_inset Formula $\fint$
15272 \end_inset
15273
15274
15275 \end_layout
15276
15277 \end_inset
15278 </cell>
15279 </row>
15280 <row>
15281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15282 \begin_inset Text
15283
15284 \begin_layout Plain Layout
15285
15286 \backslash
15287 landupint
15288 \end_layout
15289
15290 \end_inset
15291 </cell>
15292 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15293 \begin_inset Text
15294
15295 \begin_layout Plain Layout
15296  
15297 \begin_inset Formula $\landupint$
15298 \end_inset
15299
15300
15301 \end_layout
15302
15303 \end_inset
15304 </cell>
15305 </row>
15306 <row>
15307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15308 \begin_inset Text
15309
15310 \begin_layout Plain Layout
15311
15312 \backslash
15313 landdownint
15314 \end_layout
15315
15316 \end_inset
15317 </cell>
15318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15319 \begin_inset Text
15320
15321 \begin_layout Plain Layout
15322  
15323 \begin_inset Formula $\landdownint$
15324 \end_inset
15325
15326
15327 \end_layout
15328
15329 \end_inset
15330 </cell>
15331 </row>
15332 <row>
15333 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15334 \begin_inset Text
15335
15336 \begin_layout Plain Layout
15337
15338 \backslash
15339 bigcap
15340 \end_layout
15341
15342 \end_inset
15343 </cell>
15344 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15345 \begin_inset Text
15346
15347 \begin_layout Plain Layout
15348 \begin_inset Formula $\bigcap$
15349 \end_inset
15350
15351
15352 \end_layout
15353
15354 \end_inset
15355 </cell>
15356 </row>
15357 <row>
15358 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15359 \begin_inset Text
15360
15361 \begin_layout Plain Layout
15362
15363 \backslash
15364 bigcup
15365 \end_layout
15366
15367 \end_inset
15368 </cell>
15369 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15370 \begin_inset Text
15371
15372 \begin_layout Plain Layout
15373 \begin_inset Formula $\bigcup$
15374 \end_inset
15375
15376
15377 \end_layout
15378
15379 \end_inset
15380 </cell>
15381 </row>
15382 </lyxtabular>
15383
15384 \end_inset
15385
15386
15387 \begin_inset space \hfill{}
15388 \end_inset
15389
15390
15391 \begin_inset Tabular
15392 <lyxtabular version="3" rows="11" columns="2">
15393 <features tabularvalignment="middle">
15394 <column alignment="center" valignment="top" width="0pt">
15395 <column alignment="center" valignment="top" width="0pt">
15396 <row>
15397 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15398 \begin_inset Text
15399
15400 \begin_layout Plain Layout
15401 Comando
15402 \end_layout
15403
15404 \end_inset
15405 </cell>
15406 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15407 \begin_inset Text
15408
15409 \begin_layout Plain Layout
15410 Resultado
15411 \end_layout
15412
15413 \end_inset
15414 </cell>
15415 </row>
15416 <row>
15417 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15418 \begin_inset Text
15419
15420 \begin_layout Plain Layout
15421
15422 \backslash
15423 sum
15424 \begin_inset Index idx
15425 status collapsed
15426
15427 \begin_layout Plain Layout
15428 Comandos ! S ! 
15429 \backslash
15430 sum
15431 \end_layout
15432
15433 \end_inset
15434
15435
15436 \end_layout
15437
15438 \end_inset
15439 </cell>
15440 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15441 \begin_inset Text
15442
15443 \begin_layout Plain Layout
15444 \begin_inset Formula $\sum$
15445 \end_inset
15446
15447
15448 \end_layout
15449
15450 \end_inset
15451 </cell>
15452 </row>
15453 <row>
15454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15455 \begin_inset Text
15456
15457 \begin_layout Plain Layout
15458
15459 \backslash
15460 prod
15461 \begin_inset Index idx
15462 status collapsed
15463
15464 \begin_layout Plain Layout
15465 Comandos ! P ! 
15466 \backslash
15467 prod
15468 \end_layout
15469
15470 \end_inset
15471
15472
15473 \end_layout
15474
15475 \end_inset
15476 </cell>
15477 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15478 \begin_inset Text
15479
15480 \begin_layout Plain Layout
15481 \begin_inset Formula $\prod$
15482 \end_inset
15483
15484
15485 \end_layout
15486
15487 \end_inset
15488 </cell>
15489 </row>
15490 <row>
15491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15492 \begin_inset Text
15493
15494 \begin_layout Plain Layout
15495
15496 \backslash
15497 coprod
15498 \end_layout
15499
15500 \end_inset
15501 </cell>
15502 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15503 \begin_inset Text
15504
15505 \begin_layout Plain Layout
15506 \begin_inset Formula $\coprod$
15507 \end_inset
15508
15509
15510 \end_layout
15511
15512 \end_inset
15513 </cell>
15514 </row>
15515 <row>
15516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15517 \begin_inset Text
15518
15519 \begin_layout Plain Layout
15520
15521 \backslash
15522 bigodot
15523 \end_layout
15524
15525 \end_inset
15526 </cell>
15527 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15528 \begin_inset Text
15529
15530 \begin_layout Plain Layout
15531 \begin_inset Formula $\bigodot$
15532 \end_inset
15533
15534
15535 \end_layout
15536
15537 \end_inset
15538 </cell>
15539 </row>
15540 <row>
15541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15542 \begin_inset Text
15543
15544 \begin_layout Plain Layout
15545
15546 \backslash
15547 bigotimes
15548 \end_layout
15549
15550 \end_inset
15551 </cell>
15552 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15553 \begin_inset Text
15554
15555 \begin_layout Plain Layout
15556 \begin_inset Formula $\bigotimes$
15557 \end_inset
15558
15559
15560 \end_layout
15561
15562 \end_inset
15563 </cell>
15564 </row>
15565 <row>
15566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15567 \begin_inset Text
15568
15569 \begin_layout Plain Layout
15570
15571 \backslash
15572 bigoplus
15573 \end_layout
15574
15575 \end_inset
15576 </cell>
15577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15578 \begin_inset Text
15579
15580 \begin_layout Plain Layout
15581 \begin_inset Formula $\bigoplus$
15582 \end_inset
15583
15584
15585 \end_layout
15586
15587 \end_inset
15588 </cell>
15589 </row>
15590 <row>
15591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15592 \begin_inset Text
15593
15594 \begin_layout Plain Layout
15595
15596 \backslash
15597 bigwedge
15598 \end_layout
15599
15600 \end_inset
15601 </cell>
15602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15603 \begin_inset Text
15604
15605 \begin_layout Plain Layout
15606 \begin_inset Formula $\bigwedge$
15607 \end_inset
15608
15609
15610 \end_layout
15611
15612 \end_inset
15613 </cell>
15614 </row>
15615 <row>
15616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15617 \begin_inset Text
15618
15619 \begin_layout Plain Layout
15620
15621 \backslash
15622 bigvee
15623 \end_layout
15624
15625 \end_inset
15626 </cell>
15627 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15628 \begin_inset Text
15629
15630 \begin_layout Plain Layout
15631 \begin_inset Formula $\bigvee$
15632 \end_inset
15633
15634
15635 \end_layout
15636
15637 \end_inset
15638 </cell>
15639 </row>
15640 <row>
15641 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15642 \begin_inset Text
15643
15644 \begin_layout Plain Layout
15645
15646 \backslash
15647 bigsqcup
15648 \end_layout
15649
15650 \end_inset
15651 </cell>
15652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15653 \begin_inset Text
15654
15655 \begin_layout Plain Layout
15656 \begin_inset Formula $\bigsqcup$
15657 \end_inset
15658
15659
15660 \end_layout
15661
15662 \end_inset
15663 </cell>
15664 </row>
15665 <row>
15666 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15667 \begin_inset Text
15668
15669 \begin_layout Plain Layout
15670
15671 \backslash
15672 biguplus
15673 \end_layout
15674
15675 \end_inset
15676 </cell>
15677 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15678 \begin_inset Text
15679
15680 \begin_layout Plain Layout
15681 \begin_inset Formula $\biguplus$
15682 \end_inset
15683
15684
15685 \end_layout
15686
15687 \end_inset
15688 </cell>
15689 </row>
15690 </lyxtabular>
15691
15692 \end_inset
15693
15694
15695 \begin_inset space \hfill{}
15696 \end_inset
15697
15698
15699 \end_layout
15700
15701 \begin_layout Standard
15702 Todos los operadores grandes se pueden insertar con el botón 
15703 \begin_inset Graphics
15704         filename ../../images/math/intop.png
15705         scale 85
15706
15707 \end_inset
15708
15709  de la barra de ecuaciones.
15710 \end_layout
15711
15712 \begin_layout Standard
15713 Estos operadores son llamados grandes porque son mayores que los operadores
15714  binarios de aspecto semejante.
15715  Todos los operadores grandes pueden tener límites, como se describe en
15716  la subsección siguiente.
15717 \end_layout
15718
15719 \begin_layout Standard
15720 Para todos los operadores de integral hay una segunda versión disponible,
15721  terminando en 
15722 \series bold
15723 op
15724 \series default
15725
15726 \series bold
15727
15728 \backslash
15729 intop
15730 \series default
15731
15732 \series bold
15733
15734 \backslash
15735 ointop
15736 \series default
15737  etc.
15738  Estos operadores difieren de 
15739 \series bold
15740
15741 \backslash
15742 int
15743 \series default
15744 , etc., en el estilo en que se presentan los límites, véase
15745 \series bold
15746  
15747 \series default
15748
15749 \begin_inset CommandInset ref
15750 LatexCommand ref
15751 reference "sub:Límites-de-operadores"
15752
15753 \end_inset
15754
15755 .
15756 \end_layout
15757
15758 \begin_layout Subsubsection*
15759 Sugerencias para las integrales
15760 \end_layout
15761
15762 \begin_layout Standard
15763 La letra 
15764 \emph on
15765 d
15766 \emph default
15767  en una integral es un operador, por consiguiente debe escribirse en redonda.
15768  Esto se hace resaltando la 
15769 \emph on
15770 d
15771 \emph default
15772  y usando el atajo de teclado 
15773 \family sans
15774 Alt+C
15775 \begin_inset space ~
15776 \end_inset
15777
15778 R
15779 \family default
15780 .
15781 \begin_inset Foot
15782 status collapsed
15783
15784 \begin_layout Plain Layout
15785 véase estilos de letras en 
15786 \begin_inset CommandInset ref
15787 LatexCommand ref
15788 reference "sub:Estilos-de-fuentes"
15789
15790 \end_inset
15791
15792  
15793 \end_layout
15794
15795 \end_inset
15796
15797  Delante de la 
15798 \emph on
15799 d
15800 \emph default
15801  se inserta un espacio delgado, como es habitual en los operadores.
15802  Un ejemplo:
15803 \end_layout
15804
15805 \begin_layout Standard
15806 incorrecto: 
15807 \begin_inset Formula $\int A(x)dx$
15808 \end_inset
15809
15810
15811 \begin_inset Newline newline
15812 \end_inset
15813
15814
15815 \begin_inset Phantom HPhantom
15816 status open
15817
15818 \begin_layout Plain Layout
15819 in
15820 \end_layout
15821
15822 \end_inset
15823
15824 correcto: 
15825 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15826 \end_inset
15827
15828
15829 \end_layout
15830
15831 \begin_layout Standard
15832 \begin_inset Newpage pagebreak
15833 \end_inset
15834
15835
15836 \end_layout
15837
15838 \begin_layout Standard
15839 Para integrales múltiples hay los siguientes comandos:
15840 \begin_inset VSpace medskip
15841 \end_inset
15842
15843
15844 \end_layout
15845
15846 \begin_layout Standard
15847 \begin_inset space \hfill{}
15848 \end_inset
15849
15850
15851 \begin_inset Tabular
15852 <lyxtabular version="3" rows="4" columns="2">
15853 <features tabularvalignment="middle">
15854 <column alignment="center" valignment="top" width="0">
15855 <column alignment="center" valignment="top" width="0">
15856 <row>
15857 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15858 \begin_inset Text
15859
15860 \begin_layout Plain Layout
15861 Comando
15862 \end_layout
15863
15864 \end_inset
15865 </cell>
15866 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15867 \begin_inset Text
15868
15869 \begin_layout Plain Layout
15870 Resultado
15871 \begin_inset Note Note
15872 status collapsed
15873
15874 \begin_layout Plain Layout
15875
15876 \series bold
15877
15878 \backslash
15879 raisebox
15880 \series default
15881  se usa sólo como espaciador
15882 \end_layout
15883
15884 \end_inset
15885
15886
15887 \end_layout
15888
15889 \end_inset
15890 </cell>
15891 </row>
15892 <row>
15893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15894 \begin_inset Text
15895
15896 \begin_layout Plain Layout
15897
15898 \backslash
15899 iint
15900 \end_layout
15901
15902 \end_inset
15903 </cell>
15904 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15905 \begin_inset Text
15906
15907 \begin_layout Plain Layout
15908 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15909 \end_inset
15910
15911
15912 \end_layout
15913
15914 \end_inset
15915 </cell>
15916 </row>
15917 <row>
15918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15919 \begin_inset Text
15920
15921 \begin_layout Plain Layout
15922
15923 \backslash
15924 oiint
15925 \end_layout
15926
15927 \end_inset
15928 </cell>
15929 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15930 \begin_inset Text
15931
15932 \begin_layout Plain Layout
15933 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15934 \end_inset
15935
15936
15937 \end_layout
15938
15939 \end_inset
15940 </cell>
15941 </row>
15942 <row>
15943 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15944 \begin_inset Text
15945
15946 \begin_layout Plain Layout
15947
15948 \backslash
15949 sqiint
15950 \end_layout
15951
15952 \end_inset
15953 </cell>
15954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15955 \begin_inset Text
15956
15957 \begin_layout Plain Layout
15958 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15959 \end_inset
15960
15961
15962 \end_layout
15963
15964 \end_inset
15965 </cell>
15966 </row>
15967 </lyxtabular>
15968
15969 \end_inset
15970
15971
15972 \begin_inset space \hfill{}
15973 \end_inset
15974
15975
15976 \begin_inset Tabular
15977 <lyxtabular version="3" rows="4" columns="2">
15978 <features tabularvalignment="middle">
15979 <column alignment="center" valignment="top" width="0">
15980 <column alignment="center" valignment="top" width="0">
15981 <row>
15982 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15983 \begin_inset Text
15984
15985 \begin_layout Plain Layout
15986 Comando
15987 \end_layout
15988
15989 \end_inset
15990 </cell>
15991 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15992 \begin_inset Text
15993
15994 \begin_layout Plain Layout
15995 Resultado
15996 \begin_inset Note Note
15997 status collapsed
15998
15999 \begin_layout Plain Layout
16000
16001 \series bold
16002
16003 \backslash
16004 raisebox
16005 \series default
16006  se usa sólo como espaciador
16007 \end_layout
16008
16009 \end_inset
16010
16011
16012 \end_layout
16013
16014 \end_inset
16015 </cell>
16016 </row>
16017 <row>
16018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16019 \begin_inset Text
16020
16021 \begin_layout Plain Layout
16022
16023 \backslash
16024 iiint
16025 \end_layout
16026
16027 \end_inset
16028 </cell>
16029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16030 \begin_inset Text
16031
16032 \begin_layout Plain Layout
16033 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
16034 \end_inset
16035
16036
16037 \end_layout
16038
16039 \end_inset
16040 </cell>
16041 </row>
16042 <row>
16043 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16044 \begin_inset Text
16045
16046 \begin_layout Plain Layout
16047
16048 \backslash
16049 iiiint
16050 \end_layout
16051
16052 \end_inset
16053 </cell>
16054 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16055 \begin_inset Text
16056
16057 \begin_layout Plain Layout
16058 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
16059 \end_inset
16060
16061
16062 \end_layout
16063
16064 \end_inset
16065 </cell>
16066 </row>
16067 <row>
16068 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16069 \begin_inset Text
16070
16071 \begin_layout Plain Layout
16072
16073 \backslash
16074 dotsint
16075 \end_layout
16076
16077 \end_inset
16078 </cell>
16079 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16080 \begin_inset Text
16081
16082 \begin_layout Plain Layout
16083 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
16084 \end_inset
16085
16086
16087 \end_layout
16088
16089 \end_inset
16090 </cell>
16091 </row>
16092 </lyxtabular>
16093
16094 \end_inset
16095
16096
16097 \begin_inset space \hfill{}
16098 \end_inset
16099
16100
16101 \end_layout
16102
16103 \begin_layout Subsection
16104 Límites de operadores
16105 \begin_inset CommandInset label
16106 LatexCommand label
16107 name "sub:Límites-de-operadores"
16108
16109 \end_inset
16110
16111
16112 \begin_inset Index idx
16113 status collapsed
16114
16115 \begin_layout Plain Layout
16116 Operadores ! límites de
16117 \end_layout
16118
16119 \end_inset
16120
16121
16122 \end_layout
16123
16124 \begin_layout Standard
16125 Los límites se crean mediante superíndices y subíndices:
16126 \end_layout
16127
16128 \begin_layout Standard
16129 \noindent
16130 \align center
16131 \begin_inset Tabular
16132 <lyxtabular version="3" rows="2" columns="2">
16133 <features tabularvalignment="middle">
16134 <column alignment="center" valignment="top" width="0">
16135 <column alignment="center" valignment="top" width="0">
16136 <row>
16137 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16138 \begin_inset Text
16139
16140 \begin_layout Plain Layout
16141 Comando
16142 \end_layout
16143
16144 \end_inset
16145 </cell>
16146 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16147 \begin_inset Text
16148
16149 \begin_layout Plain Layout
16150 Resultado
16151 \begin_inset Note Note
16152 status collapsed
16153
16154 \begin_layout Plain Layout
16155
16156 \series bold
16157
16158 \backslash
16159 raisebox
16160 \series default
16161  se usa sólo como espaciador
16162 \end_layout
16163
16164 \end_inset
16165
16166
16167 \end_layout
16168
16169 \end_inset
16170 </cell>
16171 </row>
16172 <row>
16173 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16174 \begin_inset Text
16175
16176 \begin_layout Plain Layout
16177
16178 \backslash
16179 prod^
16180 \backslash
16181 infty
16182 \begin_inset ERT
16183 status collapsed
16184
16185 \begin_layout Plain Layout
16186
16187
16188 \backslash
16189 spce 
16190 \end_layout
16191
16192 \end_inset
16193
16194
16195 \begin_inset Formula $\to$
16196 \end_inset
16197
16198 _0
16199 \begin_inset Formula $\to$
16200 \end_inset
16201
16202 A(x)
16203 \end_layout
16204
16205 \end_inset
16206 </cell>
16207 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16208 \begin_inset Text
16209
16210 \begin_layout Plain Layout
16211 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
16212 \end_inset
16213
16214
16215 \end_layout
16216
16217 \end_inset
16218 </cell>
16219 </row>
16220 </lyxtabular>
16221
16222 \end_inset
16223
16224
16225 \end_layout
16226
16227 \begin_layout Standard
16228 En ecuaciones en línea los límites se colocan al lado derecho del operador.
16229  En ecuaciones presentadas se colocan encima y debajo, excepto en las integrales.
16230 \end_layout
16231
16232 \begin_layout Standard
16233 Para forzar que los límites se coloquen junto al operador, se pone el cursor
16234  directamente detrás del operador y se elige 
16235 \series bold
16236 Alineado
16237 \series default
16238  en el menú 
16239 \family sans
16240 Editar\SpecialChar \menuseparator
16241 Ecuación\SpecialChar \menuseparator
16242 Cambiar tipo de límites
16243 \family default
16244  (atajo 
16245 \family sans
16246 Alt+M
16247 \begin_inset space ~
16248 \end_inset
16249
16250 L
16251 \family default
16252 ).
16253  Un ejemplo:
16254 \end_layout
16255
16256 \begin_layout Standard
16257 El tipo de límites por omisión es:
16258 \begin_inset Formula \[
16259 \sum_{x=0}^{\infty}\frac{1}{x^{2}}\]
16260
16261 \end_inset
16262
16263
16264 \end_layout
16265
16266 \begin_layout Standard
16267 Así se ven si se cambia el tipo de límites a 
16268 \series bold
16269 Alineado
16270 \series default
16271 :
16272 \begin_inset Formula \[
16273 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}\]
16274
16275 \end_inset
16276
16277
16278 \end_layout
16279
16280 \begin_layout Standard
16281 En integrales, excepto las que terminan en 
16282 \series bold
16283 op
16284 \series default
16285  como 
16286 \series bold
16287
16288 \backslash
16289 intop
16290 \series default
16291
16292 \series bold
16293
16294 \backslash
16295 ointop
16296 \series default
16297 , etc., los límites se colocan por omisión junto al operador.
16298  Pero en integrales múltiples los límites se ponen con frecuencia bajo el
16299  operador.
16300  Por tanto, en el siguiente ejemplo se ha elegido el tipo 
16301 \series bold
16302 Presentado
16303 \series default
16304  para poner el límite debajo:
16305 \begin_inset Formula \begin{equation}
16306 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:IntVol}\end{equation}
16307
16308 \end_inset
16309
16310
16311 \begin_inset VSpace medskip
16312 \end_inset
16313
16314 Para especificar condiciones en los límites se usan los comandos 
16315 \series bold
16316
16317 \backslash
16318 subarray
16319 \series default
16320
16321 \begin_inset Index idx
16322 status collapsed
16323
16324 \begin_layout Plain Layout
16325 Comandos ! S ! 
16326 \backslash
16327 subarray
16328 \end_layout
16329
16330 \end_inset
16331
16332  y 
16333 \series bold
16334
16335 \backslash
16336 substack
16337 \series default
16338
16339 \begin_inset Index idx
16340 status collapsed
16341
16342 \begin_layout Plain Layout
16343 Comandos ! S ! 
16344 \backslash
16345 substack
16346 \end_layout
16347
16348 \end_inset
16349
16350 .
16351  Por ejemplo, para componer la expresión
16352 \begin_inset Formula \begin{equation}
16353 \sum_{\begin{subarray}{c}
16354 0<k<1000\\
16355 \\
16356 k\,\in\,\mathbb{N}
16357 \end{subarray}}^{n}k^{-2}\label{eq:substack}\end{equation}
16358
16359 \end_inset
16360
16361 se ha hecho lo siguiente: primero se escribe el comando 
16362 \series bold
16363
16364 \backslash
16365 sum^n
16366 \series default
16367
16368 \begin_inset ERT
16369 status collapsed
16370
16371 \begin_layout Plain Layout
16372
16373
16374 \backslash
16375 spce 
16376 \end_layout
16377
16378 \end_inset
16379
16380
16381 \series bold
16382 _
16383 \series default
16384 .
16385  Ahora el cursor está en un cuadro azul bajo el operador sumatorio y ahí
16386  se inserta el comando 
16387 \series bold
16388
16389 \backslash
16390 subarray
16391 \series default
16392
16393 \begin_inset ERT
16394 status collapsed
16395
16396 \begin_layout Plain Layout
16397
16398
16399 \backslash
16400 spce 
16401 \end_layout
16402
16403 \end_inset
16404
16405 .
16406  Ahora el cuadro azul está en un marco púrpura donde pueden escribirse líneas
16407  distintas.
16408  Cada línea nueva se crea con un salto de línea (
16409 \family sans
16410 Ctrl+Retorno
16411 \family default
16412 ).
16413  Si ahora se escribe en ella
16414 \begin_inset Newline newline
16415 \end_inset
16416
16417
16418 \series bold
16419 0<k<1000 Ctrl+Retorno
16420 \begin_inset Newline newline
16421 \end_inset
16422
16423
16424 \series default
16425 aparece debajo un nuevo marco para la línea nueva.
16426 \end_layout
16427
16428 \begin_layout Standard
16429 La alineación de las líneas puede cambiarse a la izquierda con la 
16430 \family sans
16431 barra de herramientas de tabla
16432 \family default
16433  o con el menú 
16434 \family sans
16435 Editar\SpecialChar \menuseparator
16436 Filas y columnas
16437 \family default
16438 .
16439  Para obtener alineación derecha se inserta 
16440 \series bold
16441
16442 \backslash
16443 hfill
16444 \series default
16445
16446 \begin_inset ERT
16447 status collapsed
16448
16449 \begin_layout Plain Layout
16450
16451
16452 \backslash
16453 spce 
16454 \end_layout
16455
16456 \end_inset
16457
16458  al principio de la línea.
16459 \end_layout
16460
16461 \begin_layout Standard
16462 El comando 
16463 \series bold
16464
16465 \backslash
16466 substack
16467 \series default
16468  es equivalente a 
16469 \series bold
16470
16471 \backslash
16472 subarray
16473 \series default
16474  con la diferencia de que las líneas están siempre centradas.
16475 \begin_inset VSpace bigskip
16476 \end_inset
16477
16478
16479 \end_layout
16480
16481 \begin_layout Standard
16482 Puede ocurrir que haya demasiado espacio entre el operador y los caracteres
16483  siguientes, como en la ecuación 
16484 \begin_inset CommandInset ref
16485 LatexCommand eqref
16486 reference "eq:substack"
16487
16488 \end_inset
16489
16490 , porque éstos se colocan junto a los límites.
16491 \end_layout
16492
16493 \begin_layout Standard
16494 Para evitarlo se puede usar la siguiente macro en el preámbulo:
16495 \end_layout
16496
16497 \begin_layout Standard
16498
16499 \series bold
16500
16501 \backslash
16502 def
16503 \backslash
16504 clap#1{
16505 \backslash
16506 hbox to 0pt{
16507 \backslash
16508 hss #1
16509 \backslash
16510 hss}}
16511 \begin_inset Newline newline
16512 \end_inset
16513
16514
16515 \backslash
16516 def
16517 \backslash
16518 mathclap {
16519 \backslash
16520 mathpalette 
16521 \backslash
16522 mathclapinternal}
16523 \begin_inset Newline newline
16524 \end_inset
16525
16526
16527 \backslash
16528 def
16529 \backslash
16530 mathclapinternal #1#2{
16531 \backslash
16532 clap{$
16533 \backslash
16534 mathsurround =0pt #1{#2}$}}
16535 \end_layout
16536
16537 \begin_layout Standard
16538 En ella se define el comando 
16539 \series bold
16540
16541 \backslash
16542 mathclap
16543 \series default
16544
16545 \begin_inset Index idx
16546 status collapsed
16547
16548 \begin_layout Plain Layout
16549 Comandos ! M ! 
16550 \backslash
16551 mathclap
16552 \end_layout
16553
16554 \end_inset
16555
16556  que establece la anchura del límite en 0
16557 \begin_inset space \thinspace{}
16558 \end_inset
16559
16560 pt.
16561  El esquema del comando es:
16562 \end_layout
16563
16564 \begin_layout Standard
16565
16566 \series bold
16567
16568 \backslash
16569 mathclap{límite}
16570 \end_layout
16571
16572 \begin_layout Standard
16573 donde el límite puede consistir en varias condiciones.
16574 \end_layout
16575
16576 \begin_layout Standard
16577 Aplicado en la ecuación 
16578 \begin_inset CommandInset ref
16579 LatexCommand eqref
16580 reference "eq:substack"
16581
16582 \end_inset
16583
16584  se usa el comando
16585 \end_layout
16586
16587 \begin_layout Standard
16588
16589 \series bold
16590
16591 \backslash
16592 sum_
16593 \backslash
16594 mathclap{
16595 \backslash
16596 substack
16597 \begin_inset ERT
16598 status collapsed
16599
16600 \begin_layout Plain Layout
16601
16602
16603 \backslash
16604 spce 
16605 \end_layout
16606
16607 \end_inset
16608
16609 0<k<1000 Ctrl+Retorno
16610 \end_layout
16611
16612 \begin_layout Standard
16613 para componer el límite inferior.
16614  Ahora el sumando está junto al sumatorio:
16615 \begin_inset Formula \[
16616 \sum_{\mathclap{\substack{0<k<1000\\
16617 \\
16618 k\,\in\,\mathbb{N}
16619 }
16620 }}^{n}k^{-2}\]
16621
16622 \end_inset
16623
16624
16625 \begin_inset VSpace bigskip
16626 \end_inset
16627
16628 Cómo utilizar un límite para varios operadores se describe en la 
16629 \begin_inset CommandInset ref
16630 LatexCommand ref
16631 reference "sub:Operadores-de-usuario"
16632
16633 \end_inset
16634
16635 .
16636 \end_layout
16637
16638 \begin_layout Standard
16639 \begin_inset Newpage newpage
16640 \end_inset
16641
16642
16643 \end_layout
16644
16645 \begin_layout Subsection
16646 Operadores binarios
16647 \begin_inset CommandInset label
16648 LatexCommand label
16649 name "sub:Operadores-binarios"
16650
16651 \end_inset
16652
16653
16654 \begin_inset Index idx
16655 status collapsed
16656
16657 \begin_layout Plain Layout
16658 Operadores ! binarios
16659 \end_layout
16660
16661 \end_inset
16662
16663
16664 \end_layout
16665
16666 \begin_layout Standard
16667 Los operadores binarios se rodean por espacios si llevan un carácter delante
16668  o detrás.
16669 \begin_inset VSpace medskip
16670 \end_inset
16671
16672
16673 \end_layout
16674
16675 \begin_layout Standard
16676 \begin_inset space \hfill{}
16677 \end_inset
16678
16679
16680 \begin_inset Tabular
16681 <lyxtabular version="3" rows="13" columns="2">
16682 <features tabularvalignment="middle">
16683 <column alignment="center" valignment="top" width="0pt">
16684 <column alignment="center" valignment="top" width="0pt">
16685 <row>
16686 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16687 \begin_inset Text
16688
16689 \begin_layout Plain Layout
16690 Comando
16691 \begin_inset Note Note
16692 status collapsed
16693
16694 \begin_layout Plain Layout
16695
16696 \series bold
16697
16698 \backslash
16699 raisebox
16700 \series default
16701  se usa sólo como espaciador
16702 \end_layout
16703
16704 \end_inset
16705
16706
16707 \end_layout
16708
16709 \end_inset
16710 </cell>
16711 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16712 \begin_inset Text
16713
16714 \begin_layout Plain Layout
16715 Operador
16716 \end_layout
16717
16718 \end_inset
16719 </cell>
16720 </row>
16721 <row>
16722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16723 \begin_inset Text
16724
16725 \begin_layout Plain Layout
16726 +
16727 \end_layout
16728
16729 \end_inset
16730 </cell>
16731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16732 \begin_inset Text
16733
16734 \begin_layout Plain Layout
16735 \begin_inset Formula $+$
16736 \end_inset
16737
16738
16739 \end_layout
16740
16741 \end_inset
16742 </cell>
16743 </row>
16744 <row>
16745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16746 \begin_inset Text
16747
16748 \begin_layout Plain Layout
16749 -
16750 \end_layout
16751
16752 \end_inset
16753 </cell>
16754 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16755 \begin_inset Text
16756
16757 \begin_layout Plain Layout
16758 \begin_inset Formula $-$
16759 \end_inset
16760
16761
16762 \end_layout
16763
16764 \end_inset
16765 </cell>
16766 </row>
16767 <row>
16768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16769 \begin_inset Text
16770
16771 \begin_layout Plain Layout
16772
16773 \backslash
16774 pm
16775 \end_layout
16776
16777 \end_inset
16778 </cell>
16779 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16780 \begin_inset Text
16781
16782 \begin_layout Plain Layout
16783 \begin_inset Formula $\pm$
16784 \end_inset
16785
16786
16787 \end_layout
16788
16789 \end_inset
16790 </cell>
16791 </row>
16792 <row>
16793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16794 \begin_inset Text
16795
16796 \begin_layout Plain Layout
16797
16798 \backslash
16799 mp
16800 \end_layout
16801
16802 \end_inset
16803 </cell>
16804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16805 \begin_inset Text
16806
16807 \begin_layout Plain Layout
16808 \begin_inset Formula $\mp$
16809 \end_inset
16810
16811
16812 \end_layout
16813
16814 \end_inset
16815 </cell>
16816 </row>
16817 <row>
16818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16819 \begin_inset Text
16820
16821 \begin_layout Plain Layout
16822
16823 \backslash
16824 cdot
16825 \end_layout
16826
16827 \end_inset
16828 </cell>
16829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16830 \begin_inset Text
16831
16832 \begin_layout Plain Layout
16833 \begin_inset Formula $\cdot$
16834 \end_inset
16835
16836
16837 \end_layout
16838
16839 \end_inset
16840 </cell>
16841 </row>
16842 <row>
16843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16844 \begin_inset Text
16845
16846 \begin_layout Plain Layout
16847
16848 \backslash
16849 times
16850 \end_layout
16851
16852 \end_inset
16853 </cell>
16854 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16855 \begin_inset Text
16856
16857 \begin_layout Plain Layout
16858 \begin_inset Formula $\times$
16859 \end_inset
16860
16861
16862 \end_layout
16863
16864 \end_inset
16865 </cell>
16866 </row>
16867 <row>
16868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16869 \begin_inset Text
16870
16871 \begin_layout Plain Layout
16872
16873 \backslash
16874 div
16875 \end_layout
16876
16877 \end_inset
16878 </cell>
16879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16880 \begin_inset Text
16881
16882 \begin_layout Plain Layout
16883 \begin_inset Formula $\div$
16884 \end_inset
16885
16886
16887 \end_layout
16888
16889 \end_inset
16890 </cell>
16891 </row>
16892 <row>
16893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16894 \begin_inset Text
16895
16896 \begin_layout Plain Layout
16897 \begin_inset ERT
16898 status collapsed
16899
16900 \begin_layout Plain Layout
16901
16902
16903 \backslash
16904 raisebox{-1.2mm}{
16905 \end_layout
16906
16907 \end_inset
16908
16909 *
16910 \begin_inset ERT
16911 status collapsed
16912
16913 \begin_layout Plain Layout
16914
16915 }
16916 \end_layout
16917
16918 \end_inset
16919
16920
16921 \end_layout
16922
16923 \end_inset
16924 </cell>
16925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16926 \begin_inset Text
16927
16928 \begin_layout Plain Layout
16929 \begin_inset Formula $*$
16930 \end_inset
16931
16932
16933 \end_layout
16934
16935 \end_inset
16936 </cell>
16937 </row>
16938 <row>
16939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16940 \begin_inset Text
16941
16942 \begin_layout Plain Layout
16943
16944 \backslash
16945 star
16946 \end_layout
16947
16948 \end_inset
16949 </cell>
16950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16951 \begin_inset Text
16952
16953 \begin_layout Plain Layout
16954 \begin_inset Formula $\star$
16955 \end_inset
16956
16957
16958 \end_layout
16959
16960 \end_inset
16961 </cell>
16962 </row>
16963 <row>
16964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16965 \begin_inset Text
16966
16967 \begin_layout Plain Layout
16968
16969 \backslash
16970 circ
16971 \end_layout
16972
16973 \end_inset
16974 </cell>
16975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16976 \begin_inset Text
16977
16978 \begin_layout Plain Layout
16979 \begin_inset Formula $\circ$
16980 \end_inset
16981
16982
16983 \end_layout
16984
16985 \end_inset
16986 </cell>
16987 </row>
16988 <row>
16989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16990 \begin_inset Text
16991
16992 \begin_layout Plain Layout
16993
16994 \backslash
16995 diamond
16996 \end_layout
16997
16998 \end_inset
16999 </cell>
17000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17001 \begin_inset Text
17002
17003 \begin_layout Plain Layout
17004 \begin_inset Formula $\diamond$
17005 \end_inset
17006
17007
17008 \end_layout
17009
17010 \end_inset
17011 </cell>
17012 </row>
17013 <row>
17014 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17015 \begin_inset Text
17016
17017 \begin_layout Plain Layout
17018
17019 \backslash
17020 bullet
17021 \end_layout
17022
17023 \end_inset
17024 </cell>
17025 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17026 \begin_inset Text
17027
17028 \begin_layout Plain Layout
17029 \begin_inset Formula $\bullet$
17030 \end_inset
17031
17032
17033 \end_layout
17034
17035 \end_inset
17036 </cell>
17037 </row>
17038 </lyxtabular>
17039
17040 \end_inset
17041
17042
17043 \begin_inset space \hfill{}
17044 \end_inset
17045
17046
17047 \begin_inset Tabular
17048 <lyxtabular version="3" rows="13" columns="2">
17049 <features tabularvalignment="middle">
17050 <column alignment="center" valignment="top" width="0pt">
17051 <column alignment="center" valignment="top" width="0pt">
17052 <row>
17053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17054 \begin_inset Text
17055
17056 \begin_layout Plain Layout
17057 Comando
17058 \end_layout
17059
17060 \end_inset
17061 </cell>
17062 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17063 \begin_inset Text
17064
17065 \begin_layout Plain Layout
17066 Operador
17067 \end_layout
17068
17069 \end_inset
17070 </cell>
17071 </row>
17072 <row>
17073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17074 \begin_inset Text
17075
17076 \begin_layout Plain Layout
17077
17078 \backslash
17079 nabla
17080 \end_layout
17081
17082 \end_inset
17083 </cell>
17084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17085 \begin_inset Text
17086
17087 \begin_layout Plain Layout
17088 \begin_inset Formula $\nabla$
17089 \end_inset
17090
17091
17092 \end_layout
17093
17094 \end_inset
17095 </cell>
17096 </row>
17097 <row>
17098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17099 \begin_inset Text
17100
17101 \begin_layout Plain Layout
17102
17103 \backslash
17104 bigtriangledown
17105 \end_layout
17106
17107 \end_inset
17108 </cell>
17109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17110 \begin_inset Text
17111
17112 \begin_layout Plain Layout
17113 \begin_inset Formula $\bigtriangledown$
17114 \end_inset
17115
17116
17117 \end_layout
17118
17119 \end_inset
17120 </cell>
17121 </row>
17122 <row>
17123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17124 \begin_inset Text
17125
17126 \begin_layout Plain Layout
17127
17128 \backslash
17129 bigtriangleup
17130 \end_layout
17131
17132 \end_inset
17133 </cell>
17134 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17135 \begin_inset Text
17136
17137 \begin_layout Plain Layout
17138 \begin_inset Formula $\bigtriangleup$
17139 \end_inset
17140
17141
17142 \end_layout
17143
17144 \end_inset
17145 </cell>
17146 </row>
17147 <row>
17148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17149 \begin_inset Text
17150
17151 \begin_layout Plain Layout
17152
17153 \backslash
17154 Box
17155 \end_layout
17156
17157 \end_inset
17158 </cell>
17159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17160 \begin_inset Text
17161
17162 \begin_layout Plain Layout
17163 \begin_inset Formula $\Box$
17164 \end_inset
17165
17166
17167 \end_layout
17168
17169 \end_inset
17170 </cell>
17171 </row>
17172 <row>
17173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17174 \begin_inset Text
17175
17176 \begin_layout Plain Layout
17177
17178 \backslash
17179 cap 
17180 \end_layout
17181
17182 \end_inset
17183 </cell>
17184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17185 \begin_inset Text
17186
17187 \begin_layout Plain Layout
17188 \begin_inset Formula $\cap$
17189 \end_inset
17190
17191
17192 \end_layout
17193
17194 \end_inset
17195 </cell>
17196 </row>
17197 <row>
17198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17199 \begin_inset Text
17200
17201 \begin_layout Plain Layout
17202
17203 \backslash
17204 cup
17205 \end_layout
17206
17207 \end_inset
17208 </cell>
17209 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17210 \begin_inset Text
17211
17212 \begin_layout Plain Layout
17213 \begin_inset Formula $\cup$
17214 \end_inset
17215
17216
17217 \end_layout
17218
17219 \end_inset
17220 </cell>
17221 </row>
17222 <row>
17223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17224 \begin_inset Text
17225
17226 \begin_layout Plain Layout
17227
17228 \backslash
17229 dagger
17230 \end_layout
17231
17232 \end_inset
17233 </cell>
17234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17235 \begin_inset Text
17236
17237 \begin_layout Plain Layout
17238 \begin_inset Formula $\dagger$
17239 \end_inset
17240
17241
17242 \end_layout
17243
17244 \end_inset
17245 </cell>
17246 </row>
17247 <row>
17248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17249 \begin_inset Text
17250
17251 \begin_layout Plain Layout
17252
17253 \backslash
17254 ddagger
17255 \end_layout
17256
17257 \end_inset
17258 </cell>
17259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17260 \begin_inset Text
17261
17262 \begin_layout Plain Layout
17263 \begin_inset Formula $\ddagger$
17264 \end_inset
17265
17266
17267 \end_layout
17268
17269 \end_inset
17270 </cell>
17271 </row>
17272 <row>
17273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17274 \begin_inset Text
17275
17276 \begin_layout Plain Layout
17277
17278 \backslash
17279 wr
17280 \end_layout
17281
17282 \end_inset
17283 </cell>
17284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17285 \begin_inset Text
17286
17287 \begin_layout Plain Layout
17288 \begin_inset Formula $\wr$
17289 \end_inset
17290
17291
17292 \end_layout
17293
17294 \end_inset
17295 </cell>
17296 </row>
17297 <row>
17298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17299 \begin_inset Text
17300
17301 \begin_layout Plain Layout
17302
17303 \backslash
17304 bigcirc
17305 \end_layout
17306
17307 \end_inset
17308 </cell>
17309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17310 \begin_inset Text
17311
17312 \begin_layout Plain Layout
17313 \begin_inset Formula $\bigcirc$
17314 \end_inset
17315
17316
17317 \end_layout
17318
17319 \end_inset
17320 </cell>
17321 </row>
17322 <row>
17323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17324 \begin_inset Text
17325
17326 \begin_layout Plain Layout
17327
17328 \backslash
17329 wedge
17330 \end_layout
17331
17332 \end_inset
17333 </cell>
17334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17335 \begin_inset Text
17336
17337 \begin_layout Plain Layout
17338 \begin_inset Formula $\wedge$
17339 \end_inset
17340
17341
17342 \end_layout
17343
17344 \end_inset
17345 </cell>
17346 </row>
17347 <row>
17348 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17349 \begin_inset Text
17350
17351 \begin_layout Plain Layout
17352
17353 \backslash
17354 vee
17355 \end_layout
17356
17357 \end_inset
17358 </cell>
17359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17360 \begin_inset Text
17361
17362 \begin_layout Plain Layout
17363 \begin_inset Formula $\vee$
17364 \end_inset
17365
17366
17367 \end_layout
17368
17369 \end_inset
17370 </cell>
17371 </row>
17372 </lyxtabular>
17373
17374 \end_inset
17375
17376
17377 \begin_inset space \hfill{}
17378 \end_inset
17379
17380
17381 \begin_inset Tabular
17382 <lyxtabular version="3" rows="13" columns="2">
17383 <features tabularvalignment="middle">
17384 <column alignment="center" valignment="top" width="0pt">
17385 <column alignment="center" valignment="top" width="0pt">
17386 <row>
17387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17388 \begin_inset Text
17389
17390 \begin_layout Plain Layout
17391 Comando
17392 \end_layout
17393
17394 \end_inset
17395 </cell>
17396 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17397 \begin_inset Text
17398
17399 \begin_layout Plain Layout
17400 Operador
17401 \end_layout
17402
17403 \end_inset
17404 </cell>
17405 </row>
17406 <row>
17407 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17408 \begin_inset Text
17409
17410 \begin_layout Plain Layout
17411
17412 \backslash
17413 oplus
17414 \end_layout
17415
17416 \end_inset
17417 </cell>
17418 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17419 \begin_inset Text
17420
17421 \begin_layout Plain Layout
17422 \begin_inset Formula $\oplus$
17423 \end_inset
17424
17425
17426 \end_layout
17427
17428 \end_inset
17429 </cell>
17430 </row>
17431 <row>
17432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17433 \begin_inset Text
17434
17435 \begin_layout Plain Layout
17436
17437 \backslash
17438 ominus
17439 \end_layout
17440
17441 \end_inset
17442 </cell>
17443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17444 \begin_inset Text
17445
17446 \begin_layout Plain Layout
17447 \begin_inset Formula $\ominus$
17448 \end_inset
17449
17450
17451 \end_layout
17452
17453 \end_inset
17454 </cell>
17455 </row>
17456 <row>
17457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17458 \begin_inset Text
17459
17460 \begin_layout Plain Layout
17461
17462 \backslash
17463 otimes
17464 \end_layout
17465
17466 \end_inset
17467 </cell>
17468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17469 \begin_inset Text
17470
17471 \begin_layout Plain Layout
17472 \begin_inset Formula $\otimes$
17473 \end_inset
17474
17475
17476 \end_layout
17477
17478 \end_inset
17479 </cell>
17480 </row>
17481 <row>
17482 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17483 \begin_inset Text
17484
17485 \begin_layout Plain Layout
17486
17487 \backslash
17488 oslash
17489 \end_layout
17490
17491 \end_inset
17492 </cell>
17493 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17494 \begin_inset Text
17495
17496 \begin_layout Plain Layout
17497 \begin_inset Formula $\oslash$
17498 \end_inset
17499
17500
17501 \end_layout
17502
17503 \end_inset
17504 </cell>
17505 </row>
17506 <row>
17507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17508 \begin_inset Text
17509
17510 \begin_layout Plain Layout
17511
17512 \backslash
17513 odot
17514 \end_layout
17515
17516 \end_inset
17517 </cell>
17518 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17519 \begin_inset Text
17520
17521 \begin_layout Plain Layout
17522 \begin_inset Formula $\odot$
17523 \end_inset
17524
17525
17526 \end_layout
17527
17528 \end_inset
17529 </cell>
17530 </row>
17531 <row>
17532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17533 \begin_inset Text
17534
17535 \begin_layout Plain Layout
17536
17537 \backslash
17538 amalg
17539 \end_layout
17540
17541 \end_inset
17542 </cell>
17543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17544 \begin_inset Text
17545
17546 \begin_layout Plain Layout
17547 \begin_inset Formula $\amalg$
17548 \end_inset
17549
17550
17551 \end_layout
17552
17553 \end_inset
17554 </cell>
17555 </row>
17556 <row>
17557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17558 \begin_inset Text
17559
17560 \begin_layout Plain Layout
17561
17562 \backslash
17563 uplus
17564 \end_layout
17565
17566 \end_inset
17567 </cell>
17568 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17569 \begin_inset Text
17570
17571 \begin_layout Plain Layout
17572 \begin_inset Formula $\uplus$
17573 \end_inset
17574
17575
17576 \end_layout
17577
17578 \end_inset
17579 </cell>
17580 </row>
17581 <row>
17582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17583 \begin_inset Text
17584
17585 \begin_layout Plain Layout
17586
17587 \backslash
17588 setminus
17589 \end_layout
17590
17591 \end_inset
17592 </cell>
17593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17594 \begin_inset Text
17595
17596 \begin_layout Plain Layout
17597 \begin_inset Formula $\setminus$
17598 \end_inset
17599
17600
17601 \end_layout
17602
17603 \end_inset
17604 </cell>
17605 </row>
17606 <row>
17607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17608 \begin_inset Text
17609
17610 \begin_layout Plain Layout
17611
17612 \backslash
17613 sqcap
17614 \end_layout
17615
17616 \end_inset
17617 </cell>
17618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17619 \begin_inset Text
17620
17621 \begin_layout Plain Layout
17622 \begin_inset Formula $\sqcap$
17623 \end_inset
17624
17625
17626 \end_layout
17627
17628 \end_inset
17629 </cell>
17630 </row>
17631 <row>
17632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17633 \begin_inset Text
17634
17635 \begin_layout Plain Layout
17636
17637 \backslash
17638 sqcup
17639 \end_layout
17640
17641 \end_inset
17642 </cell>
17643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17644 \begin_inset Text
17645
17646 \begin_layout Plain Layout
17647 \begin_inset Formula $\sqcup$
17648 \end_inset
17649
17650
17651 \end_layout
17652
17653 \end_inset
17654 </cell>
17655 </row>
17656 <row>
17657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17658 \begin_inset Text
17659
17660 \begin_layout Plain Layout
17661
17662 \backslash
17663 triangleleft
17664 \end_layout
17665
17666 \end_inset
17667 </cell>
17668 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17669 \begin_inset Text
17670
17671 \begin_layout Plain Layout
17672 \begin_inset Formula $\triangleleft$
17673 \end_inset
17674
17675
17676 \end_layout
17677
17678 \end_inset
17679 </cell>
17680 </row>
17681 <row>
17682 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17683 \begin_inset Text
17684
17685 \begin_layout Plain Layout
17686
17687 \backslash
17688 triangleright
17689 \end_layout
17690
17691 \end_inset
17692 </cell>
17693 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17694 \begin_inset Text
17695
17696 \begin_layout Plain Layout
17697 \begin_inset Formula $\triangleright$
17698 \end_inset
17699
17700
17701 \end_layout
17702
17703 \end_inset
17704 </cell>
17705 </row>
17706 </lyxtabular>
17707
17708 \end_inset
17709
17710
17711 \begin_inset space \hfill{}
17712 \end_inset
17713
17714
17715 \end_layout
17716
17717 \begin_layout Standard
17718 Todos los operadores binarios se pueden insertar también con el botón 
17719 \begin_inset Graphics
17720         filename ../../images/math/pm.png
17721         scale 85
17722
17723 \end_inset
17724
17725  de la barra de ecuaciones.
17726 \end_layout
17727
17728 \begin_layout Standard
17729 Para imprimir el operador Laplace se pueden usar 
17730 \series bold
17731
17732 \backslash
17733 Delta
17734 \series default
17735  o 
17736 \series bold
17737
17738 \backslash
17739 nabla
17740 \series default
17741 ^
17742 \series bold
17743 2
17744 \series default
17745  (
17746 \begin_inset Formula $\nabla^{2}$
17747 \end_inset
17748
17749 ) en vez de 
17750 \series bold
17751
17752 \backslash
17753 bigtriangleup
17754 \series default
17755 .
17756 \end_layout
17757
17758 \begin_layout Standard
17759 El carácter 
17760 \family sans
17761 Separador de menú
17762 \family default
17763  del menú 
17764 \family sans
17765 Insertar\SpecialChar \menuseparator
17766 Carácter especial
17767 \family default
17768  es el operador 
17769 \series bold
17770
17771 \backslash
17772 triangleright
17773 \series default
17774 .
17775 \end_layout
17776
17777 \begin_layout Subsection
17778 Operadores definidos por el usuario
17779 \begin_inset CommandInset label
17780 LatexCommand label
17781 name "sub:Operadores-de-usuario"
17782
17783 \end_inset
17784
17785
17786 \begin_inset Index idx
17787 status collapsed
17788
17789 \begin_layout Plain Layout
17790 Operadores ! personalizados
17791 \end_layout
17792
17793 \end_inset
17794
17795
17796 \end_layout
17797
17798 \begin_layout Standard
17799 Con ayuda del comando 
17800 \series bold
17801
17802 \backslash
17803 DeclareMathOperator
17804 \series default
17805
17806 \begin_inset Index idx
17807 status collapsed
17808
17809 \begin_layout Plain Layout
17810 Comandos ! D ! 
17811 \backslash
17812 dbinom@
17813 \backslash
17814 DeclareMathOperator
17815 \end_layout
17816
17817 \end_inset
17818
17819  se pueden definir operadores personalizados en el preámbulo LaTeX.
17820  Su esquema es:
17821 \end_layout
17822
17823 \begin_layout Standard
17824
17825 \series bold
17826
17827 \backslash
17828 DeclareMathOperator{comando nuevo}{presentación}
17829 \end_layout
17830
17831 \begin_layout Standard
17832 Presentación puede ser un carácter o símbolo que define el aspecto del operador
17833  en la salida.
17834  Para definir un operador grande hay que añadirle un * detrás.
17835  Todos los operadores grandes personalizados pueden tener límites como se
17836  describe en 
17837 \begin_inset CommandInset ref
17838 LatexCommand ref
17839 reference "sub:Límites-de-operadores"
17840
17841 \end_inset
17842
17843 .
17844 \end_layout
17845
17846 \begin_layout Standard
17847 Por ejemplo, la línea en el preámbulo LaTeX
17848 \end_layout
17849
17850 \begin_layout Standard
17851
17852 \series bold
17853
17854 \backslash
17855 DeclareMathOperator*{
17856 \backslash
17857 Lozenge}{
17858 \backslash
17859 blacklozenge}
17860 \end_layout
17861
17862 \begin_layout Standard
17863 define el comando 
17864 \series bold
17865
17866 \backslash
17867 Lozenge
17868 \series default
17869 , que inserta un operador grande que es el símbolo blacklozenge de la 
17870 \begin_inset CommandInset ref
17871 LatexCommand ref
17872 reference "sub:Símbolos-misceláneos"
17873
17874 \end_inset
17875
17876 .
17877 \begin_inset Formula \[
17878 \Lozenge_{n=1}^{\infty}\]
17879
17880 \end_inset
17881
17882 El comando para esta expresión es: 
17883 \series bold
17884
17885 \backslash
17886 Lozenge^
17887 \backslash
17888 infty
17889 \begin_inset Formula $\rightarrow$
17890 \end_inset
17891
17892 _n=1
17893 \begin_inset VSpace bigskip
17894 \end_inset
17895
17896
17897 \end_layout
17898
17899 \begin_layout Standard
17900 Si los operadores personalizados no se van a usar varias veces en el documento,
17901  se pueden también definir con los comandos 
17902 \series bold
17903
17904 \backslash
17905 mathop
17906 \series default
17907
17908 \begin_inset Index idx
17909 status collapsed
17910
17911 \begin_layout Plain Layout
17912 Comandos ! M ! 
17913 \backslash
17914 mathop
17915 \end_layout
17916
17917 \end_inset
17918
17919  y 
17920 \series bold
17921
17922 \backslash
17923 mathbin
17924 \series default
17925
17926 \begin_inset Index idx
17927 status collapsed
17928
17929 \begin_layout Plain Layout
17930 Comandos ! M ! 
17931 \backslash
17932 mathbin
17933 \end_layout
17934
17935 \end_inset
17936
17937 , con el siguiente esquema:
17938 \end_layout
17939
17940 \begin_layout Standard
17941
17942 \series bold
17943
17944 \backslash
17945 mathop{presentación}
17946 \series default
17947  y 
17948 \series bold
17949
17950 \backslash
17951 mathbin{presentación}
17952 \end_layout
17953
17954 \begin_layout Standard
17955
17956 \series bold
17957
17958 \backslash
17959 mathop
17960 \series default
17961  define operadores grandes, 
17962 \series bold
17963
17964 \backslash
17965 mathbin
17966 \series default
17967  operadores binarios.
17968 \end_layout
17969
17970 \begin_layout Standard
17971
17972 \series bold
17973
17974 \backslash
17975 mathop
17976 \series default
17977  se puede usar, p.e., para poner un límite a varios operadores:
17978 \begin_inset Formula \[
17979 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}\]
17980
17981 \end_inset
17982
17983
17984 \end_layout
17985
17986 \begin_layout Standard
17987 El comando para la expresión anterior es:
17988 \begin_inset Newline newline
17989 \end_inset
17990
17991
17992 \series bold
17993
17994 \backslash
17995 mathop{
17996 \backslash
17997 sum
17998 \backslash
17999 negmedspace
18000 \backslash
18001 sum
18002 \series default
18003
18004 \begin_inset ERT
18005 status collapsed
18006
18007 \begin_layout Plain Layout
18008
18009
18010 \backslash
18011 spce 
18012 \end_layout
18013
18014 \end_inset
18015
18016
18017 \series bold
18018
18019 \begin_inset Formula $\to$
18020 \end_inset
18021
18022 ^N
18023 \series default
18024
18025 \begin_inset ERT
18026 status collapsed
18027
18028 \begin_layout Plain Layout
18029
18030
18031 \backslash
18032 spce 
18033 \end_layout
18034
18035 \end_inset
18036
18037
18038 \series bold
18039 _i,j=1
18040 \end_layout
18041
18042 \begin_layout Section
18043 Fuentes
18044 \begin_inset Index idx
18045 status collapsed
18046
18047 \begin_layout Plain Layout
18048 Fuentes
18049 \end_layout
18050
18051 \end_inset
18052
18053
18054 \end_layout
18055
18056 \begin_layout Subsection
18057 Estilos de fuentes
18058 \begin_inset CommandInset label
18059 LatexCommand label
18060 name "sub:Estilos-de-fuentes"
18061
18062 \end_inset
18063
18064
18065 \begin_inset Index idx
18066 status collapsed
18067
18068 \begin_layout Plain Layout
18069 Fuentes ! estilos de
18070 \end_layout
18071
18072 \end_inset
18073
18074
18075 \end_layout
18076
18077 \begin_layout Standard
18078 Las letras latinas en las ecuaciones se pueden poner en uno de los siguientes
18079  estilos:
18080 \end_layout
18081
18082 \begin_layout Standard
18083 \begin_inset VSpace -2mm
18084 \end_inset
18085
18086
18087 \end_layout
18088
18089 \begin_layout Standard
18090 \align center
18091 \begin_inset Tabular
18092 <lyxtabular version="3" rows="6" columns="3">
18093 <features tabularvalignment="middle">
18094 <column alignment="center" valignment="top" width="0">
18095 <column alignment="center" valignment="top" width="0">
18096 <column alignment="center" valignment="top" width="0">
18097 <row>
18098 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18099 \begin_inset Text
18100
18101 \begin_layout Plain Layout
18102 Comando
18103 \end_layout
18104
18105 \end_inset
18106 </cell>
18107 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18108 \begin_inset Text
18109
18110 \begin_layout Plain Layout
18111 Resultado
18112 \end_layout
18113
18114 \end_inset
18115 </cell>
18116 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18117 \begin_inset Text
18118
18119 \begin_layout Plain Layout
18120 atajo
18121 \end_layout
18122
18123 \end_inset
18124 </cell>
18125 </row>
18126 <row>
18127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18128 \begin_inset Text
18129
18130 \begin_layout Plain Layout
18131
18132 \backslash
18133 mathbb
18134 \series bold
18135
18136 \begin_inset ERT
18137 status collapsed
18138
18139 \begin_layout Plain Layout
18140
18141
18142 \backslash
18143 spce 
18144 \end_layout
18145
18146 \end_inset
18147
18148
18149 \series default
18150 ABC
18151 \end_layout
18152
18153 \end_inset
18154 </cell>
18155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18156 \begin_inset Text
18157
18158 \begin_layout Plain Layout
18159 \begin_inset Formula $\mathbb{ABC}$
18160 \end_inset
18161
18162
18163 \end_layout
18164
18165 \end_inset
18166 </cell>
18167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18168 \begin_inset Text
18169
18170 \begin_layout Plain Layout
18171
18172 \family sans
18173 Alt+C C
18174 \end_layout
18175
18176 \end_inset
18177 </cell>
18178 </row>
18179 <row>
18180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18181 \begin_inset Text
18182
18183 \begin_layout Plain Layout
18184
18185 \backslash
18186 mathbf
18187 \series bold
18188
18189 \begin_inset ERT
18190 status collapsed
18191
18192 \begin_layout Plain Layout
18193
18194
18195 \backslash
18196 spce 
18197 \end_layout
18198
18199 \end_inset
18200
18201
18202 \series default
18203 AbC
18204 \end_layout
18205
18206 \end_inset
18207 </cell>
18208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18209 \begin_inset Text
18210
18211 \begin_layout Plain Layout
18212 \begin_inset Formula $\mathbf{AbC}$
18213 \end_inset
18214
18215
18216 \end_layout
18217
18218 \end_inset
18219 </cell>
18220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18221 \begin_inset Text
18222
18223 \begin_layout Plain Layout
18224
18225 \family sans
18226 Ctrl+B
18227 \end_layout
18228
18229 \end_inset
18230 </cell>
18231 </row>
18232 <row>
18233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18234 \begin_inset Text
18235
18236 \begin_layout Plain Layout
18237
18238 \backslash
18239 boldsymbol
18240 \series bold
18241
18242 \begin_inset ERT
18243 status collapsed
18244
18245 \begin_layout Plain Layout
18246
18247
18248 \backslash
18249 spce 
18250 \end_layout
18251
18252 \end_inset
18253
18254
18255 \series default
18256 AbC
18257 \end_layout
18258
18259 \end_inset
18260 </cell>
18261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18262 \begin_inset Text
18263
18264 \begin_layout Plain Layout
18265 \begin_inset Formula $\boldsymbol{AbC}$
18266 \end_inset
18267
18268
18269 \end_layout
18270
18271 \end_inset
18272 </cell>
18273 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18274 \begin_inset Text
18275
18276 \begin_layout Plain Layout
18277
18278 \family sans
18279 Ctrl+Alt+B , Alt+C B
18280 \end_layout
18281
18282 \end_inset
18283 </cell>
18284 </row>
18285 <row>
18286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18287 \begin_inset Text
18288
18289 \begin_layout Plain Layout
18290
18291 \backslash
18292 mathcal
18293 \series bold
18294
18295 \begin_inset ERT
18296 status collapsed
18297
18298 \begin_layout Plain Layout
18299
18300
18301 \backslash
18302 spce 
18303 \end_layout
18304
18305 \end_inset
18306
18307
18308 \series default
18309 ABC
18310 \end_layout
18311
18312 \end_inset
18313 </cell>
18314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18315 \begin_inset Text
18316
18317 \begin_layout Plain Layout
18318 \begin_inset Formula $\mathcal{ABC}$
18319 \end_inset
18320
18321
18322 \end_layout
18323
18324 \end_inset
18325 </cell>
18326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18327 \begin_inset Text
18328
18329 \begin_layout Plain Layout
18330
18331 \family sans
18332 Ctrl+E , Alt+C E
18333 \end_layout
18334
18335 \end_inset
18336 </cell>
18337 </row>
18338 <row>
18339 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18340 \begin_inset Text
18341
18342 \begin_layout Plain Layout
18343
18344 \backslash
18345 mathfrak
18346 \series bold
18347
18348 \begin_inset ERT
18349 status collapsed
18350
18351 \begin_layout Plain Layout
18352
18353
18354 \backslash
18355 spce 
18356 \end_layout
18357
18358 \end_inset
18359
18360
18361 \series default
18362 AbC
18363 \end_layout
18364
18365 \end_inset
18366 </cell>
18367 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18368 \begin_inset Text
18369
18370 \begin_layout Plain Layout
18371 \begin_inset Formula $\mathfrak{AbC}$
18372 \end_inset
18373
18374
18375 \end_layout
18376
18377 \end_inset
18378 </cell>
18379 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18380 \begin_inset Text
18381
18382 \begin_layout Plain Layout
18383 -
18384 \end_layout
18385
18386 \end_inset
18387 </cell>
18388 </row>
18389 </lyxtabular>
18390
18391 \end_inset
18392
18393
18394 \end_layout
18395
18396 \begin_layout Standard
18397 \align center
18398 \begin_inset Tabular
18399 <lyxtabular version="3" rows="5" columns="3">
18400 <features tabularvalignment="middle">
18401 <column alignment="center" valignment="top" width="0">
18402 <column alignment="center" valignment="top" width="0">
18403 <column alignment="center" valignment="top" width="0">
18404 <row>
18405 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18406 \begin_inset Text
18407
18408 \begin_layout Plain Layout
18409 Comando
18410 \end_layout
18411
18412 \end_inset
18413 </cell>
18414 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18415 \begin_inset Text
18416
18417 \begin_layout Plain Layout
18418 Resultado
18419 \end_layout
18420
18421 \end_inset
18422 </cell>
18423 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18424 \begin_inset Text
18425
18426 \begin_layout Plain Layout
18427 atajo
18428 \end_layout
18429
18430 \end_inset
18431 </cell>
18432 </row>
18433 <row>
18434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18435 \begin_inset Text
18436
18437 \begin_layout Plain Layout
18438
18439 \backslash
18440 mathit
18441 \series bold
18442
18443 \begin_inset ERT
18444 status collapsed
18445
18446 \begin_layout Plain Layout
18447
18448
18449 \backslash
18450 spce 
18451 \end_layout
18452
18453 \end_inset
18454
18455
18456 \series default
18457 AbC
18458 \end_layout
18459
18460 \end_inset
18461 </cell>
18462 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18463 \begin_inset Text
18464
18465 \begin_layout Plain Layout
18466 \begin_inset Formula $\mathit{AbC}$
18467 \end_inset
18468
18469
18470 \end_layout
18471
18472 \end_inset
18473 </cell>
18474 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18475 \begin_inset Text
18476
18477 \begin_layout Plain Layout
18478 -
18479 \end_layout
18480
18481 \end_inset
18482 </cell>
18483 </row>
18484 <row>
18485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18486 \begin_inset Text
18487
18488 \begin_layout Plain Layout
18489
18490 \backslash
18491 mathrm
18492 \series bold
18493
18494 \begin_inset ERT
18495 status collapsed
18496
18497 \begin_layout Plain Layout
18498
18499
18500 \backslash
18501 spce 
18502 \end_layout
18503
18504 \end_inset
18505
18506
18507 \series default
18508 AbC
18509 \end_layout
18510
18511 \end_inset
18512 </cell>
18513 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18514 \begin_inset Text
18515
18516 \begin_layout Plain Layout
18517 \begin_inset Formula $\mathrm{AbC}$
18518 \end_inset
18519
18520
18521 \end_layout
18522
18523 \end_inset
18524 </cell>
18525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18526 \begin_inset Text
18527
18528 \begin_layout Plain Layout
18529
18530 \family sans
18531 Alt+C R
18532 \end_layout
18533
18534 \end_inset
18535 </cell>
18536 </row>
18537 <row>
18538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18539 \begin_inset Text
18540
18541 \begin_layout Plain Layout
18542
18543 \backslash
18544 mathsf
18545 \series bold
18546
18547 \begin_inset ERT
18548 status collapsed
18549
18550 \begin_layout Plain Layout
18551
18552
18553 \backslash
18554 spce 
18555 \end_layout
18556
18557 \end_inset
18558
18559
18560 \series default
18561 AbC
18562 \end_layout
18563
18564 \end_inset
18565 </cell>
18566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18567 \begin_inset Text
18568
18569 \begin_layout Plain Layout
18570 \begin_inset Formula $\mathsf{AbC}$
18571 \end_inset
18572
18573
18574 \end_layout
18575
18576 \end_inset
18577 </cell>
18578 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18579 \begin_inset Text
18580
18581 \begin_layout Plain Layout
18582
18583 \family sans
18584 Alt+C S
18585 \end_layout
18586
18587 \end_inset
18588 </cell>
18589 </row>
18590 <row>
18591 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18592 \begin_inset Text
18593
18594 \begin_layout Plain Layout
18595
18596 \backslash
18597 mathtt
18598 \series bold
18599
18600 \begin_inset ERT
18601 status collapsed
18602
18603 \begin_layout Plain Layout
18604
18605
18606 \backslash
18607 spce 
18608 \end_layout
18609
18610 \end_inset
18611
18612
18613 \series default
18614 AbC
18615 \end_layout
18616
18617 \end_inset
18618 </cell>
18619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18620 \begin_inset Text
18621
18622 \begin_layout Plain Layout
18623 \begin_inset Formula $\mathtt{AbC}$
18624 \end_inset
18625
18626
18627 \end_layout
18628
18629 \end_inset
18630 </cell>
18631 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18632 \begin_inset Text
18633
18634 \begin_layout Plain Layout
18635
18636 \family sans
18637 Ctrl+Mayúsculas+P
18638 \end_layout
18639
18640 \end_inset
18641 </cell>
18642 </row>
18643 </lyxtabular>
18644
18645 \end_inset
18646
18647
18648 \end_layout
18649
18650 \begin_layout Standard
18651 \begin_inset Note Greyedout
18652 status open
18653
18654 \begin_layout Plain Layout
18655
18656 \series bold
18657 Nota
18658 \series default
18659 : Los estilos 
18660 \series bold
18661
18662 \backslash
18663 mathbb
18664 \series default
18665  y 
18666 \series bold
18667
18668 \backslash
18669 mathcal
18670 \series default
18671  sólo se aplican a letras mayúsculas.
18672 \end_layout
18673
18674 \end_inset
18675
18676
18677 \end_layout
18678
18679 \begin_layout Standard
18680 El estilo predeterminado es 
18681 \series bold
18682
18683 \backslash
18684 mathnormal
18685 \series default
18686 .
18687 \end_layout
18688
18689 \begin_layout Standard
18690 Los comandos de estilo funcionan también en estructuras matemáticas:
18691 \begin_inset Formula \[
18692 \mathfrak{A=\frac{b}{C}}\]
18693
18694 \end_inset
18695
18696
18697 \end_layout
18698
18699 \begin_layout Standard
18700 Los caracteres en texto matemático no aparecen en un estilo de letra de
18701  ecuaciones sino en el estilo 
18702 \series bold
18703
18704 \backslash
18705 textrm
18706 \series default
18707 .
18708  Este estilo no se puede poner correctamente con el diálogo de estilo de
18709  texto por un fallo de LyX.
18710 \begin_inset Foot
18711 status collapsed
18712
18713 \begin_layout Plain Layout
18714 \begin_inset CommandInset href
18715 LatexCommand href
18716 name "LyX-bug #4629"
18717 target "http://www.lyx.org/trac/ticket/4629"
18718
18719 \end_inset
18720
18721
18722 \end_layout
18723
18724 \end_inset
18725
18726
18727 \end_layout
18728
18729 \begin_layout Standard
18730 En vez de comandos se puede usar el menú 
18731 \family sans
18732 Editar\SpecialChar \menuseparator
18733 Ecuación\SpecialChar \menuseparator
18734 Estilo del texto
18735 \family default
18736  o el botón 
18737 \begin_inset Graphics
18738         filename ../../images/math/font.png
18739         scale 85
18740
18741 \end_inset
18742
18743 .
18744 \end_layout
18745
18746 \begin_layout Subsection
18747 Ecuaciones en negrita
18748 \begin_inset CommandInset label
18749 LatexCommand label
18750 name "sub:Ecuaciones-en-negrita"
18751
18752 \end_inset
18753
18754
18755 \begin_inset Index idx
18756 status collapsed
18757
18758 \begin_layout Plain Layout
18759 Ecuación ! en negrita
18760 \end_layout
18761
18762 \end_inset
18763
18764
18765 \end_layout
18766
18767 \begin_layout Standard
18768 Para poner en negrita una ecuación completa no se puede usar el comando
18769  
18770 \series bold
18771
18772 \backslash
18773 mathbf
18774 \series default
18775 , porque no funciona con minúsculas griegas.
18776  Además, siempre imprime en redonda las letras latinas, como en la ecuación:
18777 \begin_inset Formula \[
18778 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{ecuación con \textbackslash mathbf}\]
18779
18780 \end_inset
18781
18782
18783 \end_layout
18784
18785 \begin_layout Standard
18786 Para presentar la ecuación correctamente se usa el comando 
18787 \series bold
18788 boldsymbol
18789 \series default
18790 :
18791 \begin_inset Formula \[
18792 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{ecuación con \textbackslash boldsymbol}\]
18793
18794 \end_inset
18795
18796
18797 \end_layout
18798
18799 \begin_layout Standard
18800 También es posible poner la fórmula en un 
18801 \series bold
18802 entorno boldmath
18803 \series default
18804 , que se inserta con el comando 
18805 \series bold
18806
18807 \backslash
18808 boldmath
18809 \series default
18810
18811 \begin_inset Index idx
18812 status collapsed
18813
18814 \begin_layout Plain Layout
18815 Comandos ! B ! 
18816 \backslash
18817 boldmath
18818 \end_layout
18819
18820 \end_inset
18821
18822  en modo TeX.
18823  Para finalizar el entorno se usa el comando 
18824 \series bold
18825
18826 \backslash
18827 unboldmath
18828 \series default
18829
18830 \begin_inset Index idx
18831 status collapsed
18832
18833 \begin_layout Plain Layout
18834 Comandos ! U ! 
18835 \backslash
18836 unboldmath
18837 \end_layout
18838
18839 \end_inset
18840
18841  en modo TeX.
18842 \begin_inset ERT
18843 status collapsed
18844
18845 \begin_layout Plain Layout
18846
18847
18848 \backslash
18849 boldmath
18850 \end_layout
18851
18852 \end_inset
18853
18854
18855 \begin_inset Formula \[
18856 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{ecuación en un entorno boldmath}\]
18857
18858 \end_inset
18859
18860
18861 \end_layout
18862
18863 \begin_layout Standard
18864 \begin_inset ERT
18865 status collapsed
18866
18867 \begin_layout Plain Layout
18868
18869
18870 \backslash
18871 unboldmath
18872 \end_layout
18873
18874 \end_inset
18875
18876
18877 \end_layout
18878
18879 \begin_layout Subsection
18880 Ecuaciones coloreadas
18881 \begin_inset Index idx
18882 status collapsed
18883
18884 \begin_layout Plain Layout
18885 Ecuación ! coloreada
18886 \end_layout
18887
18888 \end_inset
18889
18890
18891 \end_layout
18892
18893 \begin_layout Standard
18894 Las ecuaciones se pueden colorear como texto normal: selecciona una ecuación
18895  o una parte de una ecuación y usa el diálogo 
18896 \family sans
18897 Estilo del texto
18898 \family default
18899 .
18900  Aquí hay una ecuación en magenta:
18901 \begin_inset Formula \[
18902 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}\]
18903
18904 \end_inset
18905
18906 También puedes definir tus propios colores como se describe en
18907 \begin_inset space ~
18908 \end_inset
18909
18910
18911 \begin_inset CommandInset ref
18912 LatexCommand ref
18913 reference "sub:Cuadros-coloreados"
18914
18915 \end_inset
18916
18917 .
18918  Pueden usarse con el comando en código TeX 
18919 \series bold
18920
18921 \backslash
18922 textcolor
18923 \series default
18924
18925 \begin_inset Index idx
18926 status collapsed
18927
18928 \begin_layout Plain Layout
18929 Comandos ! T ! 
18930 \backslash
18931 textcolor
18932 \end_layout
18933
18934 \end_inset
18935
18936  según el esquema
18937 \end_layout
18938
18939 \begin_layout Standard
18940
18941 \series bold
18942
18943 \backslash
18944 textcolor{color}{caracteres o ecuación}
18945 \end_layout
18946
18947 \begin_layout Standard
18948 \begin_inset Newpage pagebreak
18949 \end_inset
18950
18951
18952 \end_layout
18953
18954 \begin_layout Standard
18955 El ejemplo siguiente se ha coloreado completamente en verde oscuro y parcialment
18956 e en rojo:
18957 \end_layout
18958
18959 \begin_layout Standard
18960 \begin_inset ERT
18961 status collapsed
18962
18963 \begin_layout Plain Layout
18964
18965
18966 \backslash
18967 textcolor{verdeoscuro}{
18968 \end_layout
18969
18970 \end_inset
18971
18972
18973 \begin_inset Formula \[
18974 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}\]
18975
18976 \end_inset
18977
18978
18979 \begin_inset ERT
18980 status collapsed
18981
18982 \begin_layout Plain Layout
18983
18984 }
18985 \end_layout
18986
18987 \end_inset
18988
18989
18990 \end_layout
18991
18992 \begin_layout Standard
18993 Debido a un error en LyX los colores personalizados se pueden aplicar sólo
18994  a ecuaciones completas.
18995 \begin_inset Foot
18996 status collapsed
18997
18998 \begin_layout Plain Layout
18999 \begin_inset CommandInset href
19000 LatexCommand href
19001 name "LyX-bug #5269"
19002 target "http://www.lyx.org/trac/ticket/5269"
19003
19004 \end_inset
19005
19006
19007 \end_layout
19008
19009 \end_inset
19010
19011
19012 \end_layout
19013
19014 \begin_layout Subsection
19015 Tamaños de fuentes
19016 \begin_inset CommandInset label
19017 LatexCommand label
19018 name "sub:Tamaños-de-fuentes"
19019
19020 \end_inset
19021
19022
19023 \begin_inset Index idx
19024 status collapsed
19025
19026 \begin_layout Plain Layout
19027 Fuentes ! tamaño
19028 \end_layout
19029
19030 \end_inset
19031
19032
19033 \end_layout
19034
19035 \begin_layout Standard
19036 Para los caracteres en ecuaciones hay, como para caracteres en texto, los
19037  siguientes comandos de tamaño:
19038 \end_layout
19039
19040 \begin_layout Standard
19041
19042 \series bold
19043
19044 \backslash
19045 Huge
19046 \series default
19047
19048 \series bold
19049
19050 \backslash
19051 huge
19052 \series default
19053
19054 \series bold
19055
19056 \backslash
19057 LARGE
19058 \series default
19059
19060 \series bold
19061
19062 \backslash
19063 Large
19064 \series default
19065
19066 \series bold
19067
19068 \backslash
19069 large
19070 \series default
19071
19072 \series bold
19073
19074 \backslash
19075 normalsize
19076 \series default
19077
19078 \series bold
19079
19080 \backslash
19081 small
19082 \series default
19083 ,
19084 \begin_inset Newline newline
19085 \end_inset
19086
19087
19088 \series bold
19089
19090 \backslash
19091 footnotesize
19092 \series default
19093
19094 \series bold
19095
19096 \backslash
19097 scriptsize
19098 \series default
19099 , y 
19100 \series bold
19101
19102 \backslash
19103 tiny
19104 \end_layout
19105
19106 \begin_layout Standard
19107 El tamaño dado por los comandos depende del tamaño base de la fuente en
19108  el documento, dado por el comando 
19109 \series bold
19110
19111 \backslash
19112 normalsize
19113 \series default
19114 .
19115  Los demás comandos producen tamaños menores o mayores que 
19116 \series bold
19117
19118 \backslash
19119 normalsize
19120 \series default
19121 .
19122  No obstante, puede que el tamaño de fuente no exceda de cierto valor.
19123  Si, por ejemplo, la fuente del documento es de 12
19124 \begin_inset space \thinspace{}
19125 \end_inset
19126
19127 pt, el comando 
19128 \series bold
19129
19130 \backslash
19131 Huge
19132 \series default
19133  da el mismo tamaño que 
19134 \series bold
19135
19136 \backslash
19137 huge
19138 \series default
19139 .
19140 \end_layout
19141
19142 \begin_layout Standard
19143 Un comando de tamaño se inserta en modo TeX antes de la ecuación, y se aplica
19144  a todas las ecuaciones y texto siguientes.
19145  Para volver al tamaño anterior hay que insertar el comando 
19146 \series bold
19147
19148 \backslash
19149 normalsize
19150 \series default
19151  en modo TeX detrás de la ecuación.
19152 \end_layout
19153
19154 \begin_layout Standard
19155 Dentro de una ecuación, el tamaño se puede cambiar usando los siguientes
19156  comandos de tamaño:
19157 \end_layout
19158
19159 \begin_layout Standard
19160 \noindent
19161 \align center
19162 \begin_inset Tabular
19163 <lyxtabular version="3" rows="5" columns="2">
19164 <features tabularvalignment="middle">
19165 <column alignment="center" valignment="top" width="0">
19166 <column alignment="center" valignment="top" width="0">
19167 <row>
19168 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19169 \begin_inset Text
19170
19171 \begin_layout Plain Layout
19172 Comando
19173 \end_layout
19174
19175 \end_inset
19176 </cell>
19177 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19178 \begin_inset Text
19179
19180 \begin_layout Plain Layout
19181 Resultado
19182 \begin_inset Note Note
19183 status collapsed
19184
19185 \begin_layout Plain Layout
19186
19187 \series bold
19188
19189 \backslash
19190 raisebox
19191 \series default
19192  se usa sólo como espaciador
19193 \end_layout
19194
19195 \end_inset
19196
19197
19198 \end_layout
19199
19200 \end_inset
19201 </cell>
19202 </row>
19203 <row>
19204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19205 \begin_inset Text
19206
19207 \begin_layout Plain Layout
19208
19209 \backslash
19210 displaystyle
19211 \begin_inset Index idx
19212 status collapsed
19213
19214 \begin_layout Plain Layout
19215 Comandos ! D ! 
19216 \backslash
19217 displaystyle
19218 \end_layout
19219
19220 \end_inset
19221
19222
19223 \end_layout
19224
19225 \end_inset
19226 </cell>
19227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19228 \begin_inset Text
19229
19230 \begin_layout Plain Layout
19231 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19232 \end_inset
19233
19234
19235 \end_layout
19236
19237 \end_inset
19238 </cell>
19239 </row>
19240 <row>
19241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19242 \begin_inset Text
19243
19244 \begin_layout Plain Layout
19245
19246 \backslash
19247 textstyle
19248 \end_layout
19249
19250 \end_inset
19251 </cell>
19252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19253 \begin_inset Text
19254
19255 \begin_layout Plain Layout
19256 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19257 \end_inset
19258
19259
19260 \end_layout
19261
19262 \end_inset
19263 </cell>
19264 </row>
19265 <row>
19266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19267 \begin_inset Text
19268
19269 \begin_layout Plain Layout
19270
19271 \backslash
19272 scriptstyle
19273 \end_layout
19274
19275 \end_inset
19276 </cell>
19277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19278 \begin_inset Text
19279
19280 \begin_layout Plain Layout
19281 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19282 \end_inset
19283
19284
19285 \end_layout
19286
19287 \end_inset
19288 </cell>
19289 </row>
19290 <row>
19291 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19292 \begin_inset Text
19293
19294 \begin_layout Plain Layout
19295
19296 \backslash
19297 scriptscriptstyle
19298 \end_layout
19299
19300 \end_inset
19301 </cell>
19302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19303 \begin_inset Text
19304
19305 \begin_layout Plain Layout
19306 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19307 \end_inset
19308
19309
19310 \end_layout
19311
19312 \end_inset
19313 </cell>
19314 </row>
19315 </lyxtabular>
19316
19317 \end_inset
19318
19319
19320 \end_layout
19321
19322 \begin_layout Standard
19323 Después de introcucir estos comandos, aparece un marco azul en el que se
19324  insertan las partes de la fórmula.
19325 \end_layout
19326
19327 \begin_layout Standard
19328 Hay un método más para cambiar el tamaño de fuente, aunque solo funciona
19329  para símbolos o letras en texto matemático.
19330  Para usarlo se inserta en texto matemático uno de los comandos de tamaño
19331  de texto anteriores.
19332  Todos los caracteres siguientes, hasta el final del texto matemático o
19333  hasta otro comando de tamaño, tendrán el tamaño seleccionado.
19334  Dos ejemplos:
19335 \begin_inset VSpace -2mm
19336 \end_inset
19337
19338
19339 \end_layout
19340
19341 \begin_layout Standard
19342 \begin_inset ERT
19343 status collapsed
19344
19345 \begin_layout Plain Layout
19346
19347
19348 \backslash
19349 huge
19350 \end_layout
19351
19352 \end_inset
19353
19354
19355 \begin_inset Formula \[
19356 A=\frac{B}{c}\cdot\maltese\]
19357
19358 \end_inset
19359
19360
19361 \begin_inset Formula \[
19362 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}\]
19363
19364 \end_inset
19365
19366
19367 \end_layout
19368
19369 \begin_layout Standard
19370 \begin_inset ERT
19371 status collapsed
19372
19373 \begin_layout Plain Layout
19374
19375
19376 \backslash
19377 normalsize
19378 \end_layout
19379
19380 \end_inset
19381
19382
19383 \begin_inset VSpace medskip
19384 \end_inset
19385
19386
19387 \end_layout
19388
19389 \begin_layout Standard
19390 Antes de las ecuaciones se ha insertado el comando 
19391 \series bold
19392
19393 \backslash
19394 huge
19395 \series default
19396 .
19397  Para la segunda ecuación el comando es:
19398 \begin_inset Newline newline
19399 \end_inset
19400
19401
19402 \series bold
19403
19404 \backslash
19405 maltese
19406 \begin_inset ERT
19407 status collapsed
19408
19409 \begin_layout Plain Layout
19410
19411
19412 \backslash
19413 spce 
19414 \end_layout
19415
19416 \end_inset
19417
19418 A Alt+M M 
19419 \backslash
19420 Large
19421 \begin_inset ERT
19422 status collapsed
19423
19424 \begin_layout Plain Layout
19425
19426
19427 \backslash
19428 spce 
19429 \end_layout
19430
19431 \end_inset
19432
19433
19434 \backslash
19435 maltese
19436 \begin_inset ERT
19437 status collapsed
19438
19439 \begin_layout Plain Layout
19440
19441
19442 \backslash
19443 spce 
19444 \end_layout
19445
19446 \end_inset
19447
19448
19449 \backslash
19450 textit
19451 \begin_inset ERT
19452 status collapsed
19453
19454 \begin_layout Plain Layout
19455
19456
19457 \backslash
19458 spce 
19459 \end_layout
19460
19461 \end_inset
19462
19463 A
19464 \begin_inset Formula $\to$
19465 \end_inset
19466
19467
19468 \begin_inset Formula $\to$
19469 \end_inset
19470
19471
19472 \begin_inset Newline newline
19473 \end_inset
19474
19475
19476 \begin_inset space \hspace*{}
19477 \length 1cm
19478 \end_inset
19479
19480 Alt+M M 
19481 \backslash
19482 tiny
19483 \begin_inset ERT
19484 status collapsed
19485
19486 \begin_layout Plain Layout
19487
19488
19489 \backslash
19490 spce 
19491 \end_layout
19492
19493 \end_inset
19494
19495
19496 \backslash
19497 maltese
19498 \begin_inset ERT
19499 status collapsed
19500
19501 \begin_layout Plain Layout
19502
19503
19504 \backslash
19505 spce 
19506 \end_layout
19507
19508 \end_inset
19509
19510
19511 \backslash
19512 textit
19513 \begin_inset ERT
19514 status collapsed
19515
19516 \begin_layout Plain Layout
19517
19518
19519 \backslash
19520 spce 
19521 \end_layout
19522
19523 \end_inset
19524
19525 A
19526 \end_layout
19527
19528 \begin_layout Standard
19529 Si un símbolo no se puede mostrar en distintos tamaños se usará siempre
19530  el tamaño por omisión.
19531 \end_layout
19532
19533 \begin_layout Section
19534 Letras griegas
19535 \begin_inset Index idx
19536 status collapsed
19537
19538 \begin_layout Plain Layout
19539 Letras griegas
19540 \end_layout
19541
19542 \end_inset
19543
19544
19545 \end_layout
19546
19547 \begin_layout Standard
19548 Todas las letras griegas se pueden insertar además mediante el botón 
19549 \begin_inset Graphics
19550         filename ../../images/math/alpha.png
19551         scale 85
19552
19553 \end_inset
19554
19555  de la barra de ecuaciones.
19556 \end_layout
19557
19558 \begin_layout Subsection
19559 Minúsculas
19560 \begin_inset Index idx
19561 status collapsed
19562
19563 \begin_layout Plain Layout
19564 Letras griegas ! minúsculas
19565 \end_layout
19566
19567 \end_inset
19568
19569
19570 \end_layout
19571
19572 \begin_layout Standard
19573 \begin_inset space \hfill{}
19574 \end_inset
19575
19576
19577 \begin_inset Tabular
19578 <lyxtabular version="3" rows="11" columns="2">
19579 <features tabularvalignment="middle">
19580 <column alignment="center" valignment="top" width="0pt">
19581 <column alignment="center" valignment="top" width="0pt">
19582 <row>
19583 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19584 \begin_inset Text
19585
19586 \begin_layout Plain Layout
19587 Comando
19588 \end_layout
19589
19590 \end_inset
19591 </cell>
19592 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19593 \begin_inset Text
19594
19595 \begin_layout Plain Layout
19596 Símbolo
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 alpha
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 $\alpha$
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 beta
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 $\beta$
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 gamma
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 $\gamma$
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 delta
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 $\delta$
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 epsilon
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 $\epsilon$
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 varepsilon
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 $\varepsilon$
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 zeta
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 $\zeta$
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 eta
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 $\eta$
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" leftline="true" usebox="none">
19804 \begin_inset Text
19805
19806 \begin_layout Plain Layout
19807
19808 \backslash
19809 theta
19810 \end_layout
19811
19812 \end_inset
19813 </cell>
19814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19815 \begin_inset Text
19816
19817 \begin_layout Plain Layout
19818 \begin_inset Formula $\theta$
19819 \end_inset
19820
19821
19822 \end_layout
19823
19824 \end_inset
19825 </cell>
19826 </row>
19827 <row>
19828 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19829 \begin_inset Text
19830
19831 \begin_layout Plain Layout
19832
19833 \backslash
19834 vartheta
19835 \end_layout
19836
19837 \end_inset
19838 </cell>
19839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19840 \begin_inset Text
19841
19842 \begin_layout Plain Layout
19843 \begin_inset Formula $\vartheta$
19844 \end_inset
19845
19846
19847 \end_layout
19848
19849 \end_inset
19850 </cell>
19851 </row>
19852 </lyxtabular>
19853
19854 \end_inset
19855
19856
19857 \begin_inset space \hfill{}
19858 \end_inset
19859
19860
19861 \begin_inset Tabular
19862 <lyxtabular version="3" rows="12" columns="2">
19863 <features tabularvalignment="middle">
19864 <column alignment="center" valignment="top" width="0pt">
19865 <column alignment="center" valignment="top" width="0pt">
19866 <row>
19867 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19868 \begin_inset Text
19869
19870 \begin_layout Plain Layout
19871 Comando
19872 \end_layout
19873
19874 \end_inset
19875 </cell>
19876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19877 \begin_inset Text
19878
19879 \begin_layout Plain Layout
19880 Símbolo
19881 \end_layout
19882
19883 \end_inset
19884 </cell>
19885 </row>
19886 <row>
19887 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19888 \begin_inset Text
19889
19890 \begin_layout Plain Layout
19891
19892 \backslash
19893 iota
19894 \end_layout
19895
19896 \end_inset
19897 </cell>
19898 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19899 \begin_inset Text
19900
19901 \begin_layout Plain Layout
19902 \begin_inset Formula $\iota$
19903 \end_inset
19904
19905
19906 \end_layout
19907
19908 \end_inset
19909 </cell>
19910 </row>
19911 <row>
19912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19913 \begin_inset Text
19914
19915 \begin_layout Plain Layout
19916
19917 \backslash
19918 kappa
19919 \end_layout
19920
19921 \end_inset
19922 </cell>
19923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19924 \begin_inset Text
19925
19926 \begin_layout Plain Layout
19927 \begin_inset Formula $\kappa$
19928 \end_inset
19929
19930
19931 \end_layout
19932
19933 \end_inset
19934 </cell>
19935 </row>
19936 <row>
19937 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19938 \begin_inset Text
19939
19940 \begin_layout Plain Layout
19941
19942 \backslash
19943 varkappa
19944 \end_layout
19945
19946 \end_inset
19947 </cell>
19948 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19949 \begin_inset Text
19950
19951 \begin_layout Plain Layout
19952 \begin_inset Formula $\varkappa$
19953 \end_inset
19954
19955
19956 \end_layout
19957
19958 \end_inset
19959 </cell>
19960 </row>
19961 <row>
19962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19963 \begin_inset Text
19964
19965 \begin_layout Plain Layout
19966
19967 \backslash
19968 lambda
19969 \end_layout
19970
19971 \end_inset
19972 </cell>
19973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19974 \begin_inset Text
19975
19976 \begin_layout Plain Layout
19977 \begin_inset Formula $\lambda$
19978 \end_inset
19979
19980
19981 \end_layout
19982
19983 \end_inset
19984 </cell>
19985 </row>
19986 <row>
19987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19988 \begin_inset Text
19989
19990 \begin_layout Plain Layout
19991
19992 \backslash
19993 mu
19994 \end_layout
19995
19996 \end_inset
19997 </cell>
19998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19999 \begin_inset Text
20000
20001 \begin_layout Plain Layout
20002 \begin_inset Formula $\mu$
20003 \end_inset
20004
20005
20006 \end_layout
20007
20008 \end_inset
20009 </cell>
20010 </row>
20011 <row>
20012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20013 \begin_inset Text
20014
20015 \begin_layout Plain Layout
20016
20017 \backslash
20018 nu
20019 \end_layout
20020
20021 \end_inset
20022 </cell>
20023 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20024 \begin_inset Text
20025
20026 \begin_layout Plain Layout
20027 \begin_inset Formula $\nu$
20028 \end_inset
20029
20030
20031 \end_layout
20032
20033 \end_inset
20034 </cell>
20035 </row>
20036 <row>
20037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20038 \begin_inset Text
20039
20040 \begin_layout Plain Layout
20041
20042 \backslash
20043 xi
20044 \end_layout
20045
20046 \end_inset
20047 </cell>
20048 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20049 \begin_inset Text
20050
20051 \begin_layout Plain Layout
20052 \begin_inset Formula $\xi$
20053 \end_inset
20054
20055
20056 \end_layout
20057
20058 \end_inset
20059 </cell>
20060 </row>
20061 <row>
20062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20063 \begin_inset Text
20064
20065 \begin_layout Plain Layout
20066 o
20067 \end_layout
20068
20069 \end_inset
20070 </cell>
20071 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20072 \begin_inset Text
20073
20074 \begin_layout Plain Layout
20075 \begin_inset Formula $o$
20076 \end_inset
20077
20078
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 pi
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 $\pi$
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 varpi
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 $\varpi$
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" bottomline="true" leftline="true" usebox="none">
20136 \begin_inset Text
20137
20138 \begin_layout Plain Layout
20139
20140 \backslash
20141 rho
20142 \end_layout
20143
20144 \end_inset
20145 </cell>
20146 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20147 \begin_inset Text
20148
20149 \begin_layout Plain Layout
20150 \begin_inset Formula $\rho$
20151 \end_inset
20152
20153
20154 \end_layout
20155
20156 \end_inset
20157 </cell>
20158 </row>
20159 </lyxtabular>
20160
20161 \end_inset
20162
20163
20164 \begin_inset space \hfill{}
20165 \end_inset
20166
20167
20168 \begin_inset Tabular
20169 <lyxtabular version="3" rows="11" columns="2">
20170 <features tabularvalignment="middle">
20171 <column alignment="center" valignment="top" width="0pt">
20172 <column alignment="center" valignment="top" width="0pt">
20173 <row>
20174 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20175 \begin_inset Text
20176
20177 \begin_layout Plain Layout
20178 Comando
20179 \end_layout
20180
20181 \end_inset
20182 </cell>
20183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20184 \begin_inset Text
20185
20186 \begin_layout Plain Layout
20187 Símbolo
20188 \end_layout
20189
20190 \end_inset
20191 </cell>
20192 </row>
20193 <row>
20194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20195 \begin_inset Text
20196
20197 \begin_layout Plain Layout
20198
20199 \backslash
20200 varrho
20201 \end_layout
20202
20203 \end_inset
20204 </cell>
20205 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20206 \begin_inset Text
20207
20208 \begin_layout Plain Layout
20209 \begin_inset Formula $\varrho$
20210 \end_inset
20211
20212
20213 \end_layout
20214
20215 \end_inset
20216 </cell>
20217 </row>
20218 <row>
20219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20220 \begin_inset Text
20221
20222 \begin_layout Plain Layout
20223
20224 \backslash
20225 sigma
20226 \end_layout
20227
20228 \end_inset
20229 </cell>
20230 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20231 \begin_inset Text
20232
20233 \begin_layout Plain Layout
20234 \begin_inset Formula $\sigma$
20235 \end_inset
20236
20237
20238 \end_layout
20239
20240 \end_inset
20241 </cell>
20242 </row>
20243 <row>
20244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20245 \begin_inset Text
20246
20247 \begin_layout Plain Layout
20248
20249 \backslash
20250 varsigma
20251 \end_layout
20252
20253 \end_inset
20254 </cell>
20255 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20256 \begin_inset Text
20257
20258 \begin_layout Plain Layout
20259 \begin_inset Formula $\varsigma$
20260 \end_inset
20261
20262
20263 \end_layout
20264
20265 \end_inset
20266 </cell>
20267 </row>
20268 <row>
20269 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20270 \begin_inset Text
20271
20272 \begin_layout Plain Layout
20273
20274 \backslash
20275 tau
20276 \end_layout
20277
20278 \end_inset
20279 </cell>
20280 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20281 \begin_inset Text
20282
20283 \begin_layout Plain Layout
20284 \begin_inset Formula $\tau$
20285 \end_inset
20286
20287
20288 \end_layout
20289
20290 \end_inset
20291 </cell>
20292 </row>
20293 <row>
20294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20295 \begin_inset Text
20296
20297 \begin_layout Plain Layout
20298
20299 \backslash
20300 upsilon
20301 \end_layout
20302
20303 \end_inset
20304 </cell>
20305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20306 \begin_inset Text
20307
20308 \begin_layout Plain Layout
20309 \begin_inset Formula $\upsilon$
20310 \end_inset
20311
20312
20313 \end_layout
20314
20315 \end_inset
20316 </cell>
20317 </row>
20318 <row>
20319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20320 \begin_inset Text
20321
20322 \begin_layout Plain Layout
20323
20324 \backslash
20325 phi
20326 \end_layout
20327
20328 \end_inset
20329 </cell>
20330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20331 \begin_inset Text
20332
20333 \begin_layout Plain Layout
20334 \begin_inset Formula $\phi$
20335 \end_inset
20336
20337
20338 \end_layout
20339
20340 \end_inset
20341 </cell>
20342 </row>
20343 <row>
20344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20345 \begin_inset Text
20346
20347 \begin_layout Plain Layout
20348
20349 \backslash
20350 varphi
20351 \end_layout
20352
20353 \end_inset
20354 </cell>
20355 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20356 \begin_inset Text
20357
20358 \begin_layout Plain Layout
20359 \begin_inset Formula $\varphi$
20360 \end_inset
20361
20362
20363 \end_layout
20364
20365 \end_inset
20366 </cell>
20367 </row>
20368 <row>
20369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20370 \begin_inset Text
20371
20372 \begin_layout Plain Layout
20373
20374 \backslash
20375 chi
20376 \end_layout
20377
20378 \end_inset
20379 </cell>
20380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20381 \begin_inset Text
20382
20383 \begin_layout Plain Layout
20384 \begin_inset Formula $\chi$
20385 \end_inset
20386
20387
20388 \end_layout
20389
20390 \end_inset
20391 </cell>
20392 </row>
20393 <row>
20394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20395 \begin_inset Text
20396
20397 \begin_layout Plain Layout
20398
20399 \backslash
20400 psi
20401 \end_layout
20402
20403 \end_inset
20404 </cell>
20405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20406 \begin_inset Text
20407
20408 \begin_layout Plain Layout
20409 \begin_inset Formula $\psi$
20410 \end_inset
20411
20412
20413 \end_layout
20414
20415 \end_inset
20416 </cell>
20417 </row>
20418 <row>
20419 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20420 \begin_inset Text
20421
20422 \begin_layout Plain Layout
20423
20424 \backslash
20425 omega
20426 \end_layout
20427
20428 \end_inset
20429 </cell>
20430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20431 \begin_inset Text
20432
20433 \begin_layout Plain Layout
20434 \begin_inset Formula $\omega$
20435 \end_inset
20436
20437
20438 \end_layout
20439
20440 \end_inset
20441 </cell>
20442 </row>
20443 </lyxtabular>
20444
20445 \end_inset
20446
20447
20448 \begin_inset space \hfill{}
20449 \end_inset
20450
20451
20452 \end_layout
20453
20454 \begin_layout Standard
20455 \begin_inset VSpace medskip
20456 \end_inset
20457
20458
20459 \end_layout
20460
20461 \begin_layout Standard
20462 Cómo escribir letras griegas en redonda se explica en 
20463 \begin_inset CommandInset ref
20464 LatexCommand ref
20465 reference "sub:Griegas-en-redonda"
20466
20467 \end_inset
20468
20469 .
20470 \end_layout
20471
20472 \begin_layout Subsection
20473 Mayúsculas
20474 \begin_inset Index idx
20475 status collapsed
20476
20477 \begin_layout Plain Layout
20478 Letras griegas ! mayúsculas
20479 \end_layout
20480
20481 \end_inset
20482
20483
20484 \end_layout
20485
20486 \begin_layout Standard
20487 \begin_inset space \hfill{}
20488 \end_inset
20489
20490
20491 \begin_inset Tabular
20492 <lyxtabular version="3" rows="7" columns="2">
20493 <features tabularvalignment="middle">
20494 <column alignment="center" valignment="top" width="0pt">
20495 <column alignment="center" valignment="top" width="0pt">
20496 <row>
20497 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20498 \begin_inset Text
20499
20500 \begin_layout Plain Layout
20501 Comando
20502 \end_layout
20503
20504 \end_inset
20505 </cell>
20506 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20507 \begin_inset Text
20508
20509 \begin_layout Plain Layout
20510 Símbolo
20511 \end_layout
20512
20513 \end_inset
20514 </cell>
20515 </row>
20516 <row>
20517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20518 \begin_inset Text
20519
20520 \begin_layout Plain Layout
20521
20522 \backslash
20523 Gamma
20524 \end_layout
20525
20526 \end_inset
20527 </cell>
20528 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20529 \begin_inset Text
20530
20531 \begin_layout Plain Layout
20532 \begin_inset Formula $\Gamma$
20533 \end_inset
20534
20535
20536 \end_layout
20537
20538 \end_inset
20539 </cell>
20540 </row>
20541 <row>
20542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20543 \begin_inset Text
20544
20545 \begin_layout Plain Layout
20546
20547 \backslash
20548 Delta
20549 \end_layout
20550
20551 \end_inset
20552 </cell>
20553 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20554 \begin_inset Text
20555
20556 \begin_layout Plain Layout
20557 \begin_inset Formula $\Delta$
20558 \end_inset
20559
20560
20561 \end_layout
20562
20563 \end_inset
20564 </cell>
20565 </row>
20566 <row>
20567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20568 \begin_inset Text
20569
20570 \begin_layout Plain Layout
20571
20572 \backslash
20573 Theta
20574 \end_layout
20575
20576 \end_inset
20577 </cell>
20578 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20579 \begin_inset Text
20580
20581 \begin_layout Plain Layout
20582 \begin_inset Formula $\Theta$
20583 \end_inset
20584
20585
20586 \end_layout
20587
20588 \end_inset
20589 </cell>
20590 </row>
20591 <row>
20592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20593 \begin_inset Text
20594
20595 \begin_layout Plain Layout
20596
20597 \backslash
20598 Lambda
20599 \end_layout
20600
20601 \end_inset
20602 </cell>
20603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20604 \begin_inset Text
20605
20606 \begin_layout Plain Layout
20607 \begin_inset Formula $\Lambda$
20608 \end_inset
20609
20610
20611 \end_layout
20612
20613 \end_inset
20614 </cell>
20615 </row>
20616 <row>
20617 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20618 \begin_inset Text
20619
20620 \begin_layout Plain Layout
20621
20622 \backslash
20623 Xi
20624 \end_layout
20625
20626 \end_inset
20627 </cell>
20628 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20629 \begin_inset Text
20630
20631 \begin_layout Plain Layout
20632 \begin_inset Formula $\Xi$
20633 \end_inset
20634
20635
20636 \end_layout
20637
20638 \end_inset
20639 </cell>
20640 </row>
20641 <row>
20642 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20643 \begin_inset Text
20644
20645 \begin_layout Plain Layout
20646
20647 \backslash
20648 Pi
20649 \end_layout
20650
20651 \end_inset
20652 </cell>
20653 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20654 \begin_inset Text
20655
20656 \begin_layout Plain Layout
20657 \begin_inset Formula $\Pi$
20658 \end_inset
20659
20660
20661 \end_layout
20662
20663 \end_inset
20664 </cell>
20665 </row>
20666 </lyxtabular>
20667
20668 \end_inset
20669
20670
20671 \begin_inset space \hfill{}
20672 \end_inset
20673
20674
20675 \begin_inset Tabular
20676 <lyxtabular version="3" rows="6" columns="2">
20677 <features tabularvalignment="middle">
20678 <column alignment="center" valignment="top" width="0pt">
20679 <column alignment="center" valignment="top" width="0pt">
20680 <row>
20681 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20682 \begin_inset Text
20683
20684 \begin_layout Plain Layout
20685 Comando
20686 \end_layout
20687
20688 \end_inset
20689 </cell>
20690 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20691 \begin_inset Text
20692
20693 \begin_layout Plain Layout
20694 Símbolo
20695 \end_layout
20696
20697 \end_inset
20698 </cell>
20699 </row>
20700 <row>
20701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20702 \begin_inset Text
20703
20704 \begin_layout Plain Layout
20705
20706 \backslash
20707 Sigma
20708 \end_layout
20709
20710 \end_inset
20711 </cell>
20712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20713 \begin_inset Text
20714
20715 \begin_layout Plain Layout
20716 \begin_inset Formula $\Sigma$
20717 \end_inset
20718
20719
20720 \end_layout
20721
20722 \end_inset
20723 </cell>
20724 </row>
20725 <row>
20726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20727 \begin_inset Text
20728
20729 \begin_layout Plain Layout
20730
20731 \backslash
20732 Upsilon
20733 \end_layout
20734
20735 \end_inset
20736 </cell>
20737 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20738 \begin_inset Text
20739
20740 \begin_layout Plain Layout
20741 \begin_inset Formula $\Upsilon$
20742 \end_inset
20743
20744
20745 \end_layout
20746
20747 \end_inset
20748 </cell>
20749 </row>
20750 <row>
20751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20752 \begin_inset Text
20753
20754 \begin_layout Plain Layout
20755
20756 \backslash
20757 Phi
20758 \end_layout
20759
20760 \end_inset
20761 </cell>
20762 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20763 \begin_inset Text
20764
20765 \begin_layout Plain Layout
20766 \begin_inset Formula $\Phi$
20767 \end_inset
20768
20769
20770 \end_layout
20771
20772 \end_inset
20773 </cell>
20774 </row>
20775 <row>
20776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20777 \begin_inset Text
20778
20779 \begin_layout Plain Layout
20780
20781 \backslash
20782 Psi
20783 \end_layout
20784
20785 \end_inset
20786 </cell>
20787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20788 \begin_inset Text
20789
20790 \begin_layout Plain Layout
20791 \begin_inset Formula $\Psi$
20792 \end_inset
20793
20794
20795 \end_layout
20796
20797 \end_inset
20798 </cell>
20799 </row>
20800 <row>
20801 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20802 \begin_inset Text
20803
20804 \begin_layout Plain Layout
20805
20806 \backslash
20807 Omega
20808 \end_layout
20809
20810 \end_inset
20811 </cell>
20812 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20813 \begin_inset Text
20814
20815 \begin_layout Plain Layout
20816 \begin_inset Formula $\Omega$
20817 \end_inset
20818
20819
20820 \end_layout
20821
20822 \end_inset
20823 </cell>
20824 </row>
20825 </lyxtabular>
20826
20827 \end_inset
20828
20829
20830 \begin_inset space \hfill{}
20831 \end_inset
20832
20833
20834 \end_layout
20835
20836 \begin_layout Standard
20837 \begin_inset VSpace medskip
20838 \end_inset
20839
20840
20841 \end_layout
20842
20843 \begin_layout Standard
20844 Las mayúsculas griegas se imprimen en redonda debido a un fallo de diseño
20845  cuando se desarrolló TeX.
20846  Para obtener mayúsculas en cursiva, inicia cada comando con 
20847 \series bold
20848 var
20849 \series default
20850 .
20851  Por ejemplo, el comando 
20852 \series bold
20853
20854 \backslash
20855 varGamma
20856 \series default
20857  genera: 
20858 \begin_inset Formula $\varGamma$
20859 \end_inset
20860
20861
20862 \end_layout
20863
20864 \begin_layout Subsection
20865 Letras en negrita
20866 \begin_inset Index idx
20867 status collapsed
20868
20869 \begin_layout Plain Layout
20870 Letras griegas ! en negrita
20871 \end_layout
20872
20873 \end_inset
20874
20875
20876 \end_layout
20877
20878 \begin_layout Standard
20879 Las letras griegas no admiten diferentes estilos de fuente como las latinas.
20880  Sólo se pueden poner en negrita con el comando 
20881 \series bold
20882
20883 \backslash
20884 boldsymbol
20885 \series default
20886
20887 \begin_inset Index idx
20888 status collapsed
20889
20890 \begin_layout Plain Layout
20891 Comandos ! B ! 
20892 \backslash
20893 boldsymbol
20894 \end_layout
20895
20896 \end_inset
20897
20898 .
20899 \end_layout
20900
20901 \begin_layout Standard
20902 \align center
20903 \begin_inset Tabular
20904 <lyxtabular version="3" rows="3" columns="2">
20905 <features tabularvalignment="middle">
20906 <column alignment="center" valignment="top" width="0">
20907 <column alignment="center" valignment="top" width="0">
20908 <row>
20909 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20910 \begin_inset Text
20911
20912 \begin_layout Plain Layout
20913 Comando
20914 \end_layout
20915
20916 \end_inset
20917 </cell>
20918 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20919 \begin_inset Text
20920
20921 \begin_layout Plain Layout
20922 Símbolo
20923 \end_layout
20924
20925 \end_inset
20926 </cell>
20927 </row>
20928 <row>
20929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20930 \begin_inset Text
20931
20932 \begin_layout Plain Layout
20933
20934 \backslash
20935 Upsilon
20936 \backslash
20937 boldsymbol
20938 \backslash
20939 Upsilon
20940 \end_layout
20941
20942 \end_inset
20943 </cell>
20944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20945 \begin_inset Text
20946
20947 \begin_layout Plain Layout
20948 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
20949 \end_inset
20950
20951
20952 \end_layout
20953
20954 \end_inset
20955 </cell>
20956 </row>
20957 <row>
20958 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20959 \begin_inset Text
20960
20961 \begin_layout Plain Layout
20962
20963 \backslash
20964 theta
20965 \backslash
20966 boldsymbol
20967 \backslash
20968 theta
20969 \end_layout
20970
20971 \end_inset
20972 </cell>
20973 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20974 \begin_inset Text
20975
20976 \begin_layout Plain Layout
20977 \begin_inset Formula $\theta\boldsymbol{\theta}$
20978 \end_inset
20979
20980
20981 \end_layout
20982
20983 \end_inset
20984 </cell>
20985 </row>
20986 </lyxtabular>
20987
20988 \end_inset
20989
20990
20991 \end_layout
20992
20993 \begin_layout Section
20994 Símbolos
20995 \begin_inset ERT
20996 status collapsed
20997
20998 \begin_layout Plain Layout
20999
21000
21001 \backslash
21002 texorpdfstring{
21003 \end_layout
21004
21005 \end_inset
21006
21007
21008 \begin_inset Foot
21009 status collapsed
21010
21011 \begin_layout Plain Layout
21012 Se puede encontrar una lista con todos los símbolos de la mayoría de paquetes
21013  LaTeX en 
21014 \begin_inset CommandInset citation
21015 LatexCommand cite
21016 key "Symbols"
21017
21018 \end_inset
21019
21020 .
21021 \end_layout
21022
21023 \end_inset
21024
21025
21026 \begin_inset ERT
21027 status collapsed
21028
21029 \begin_layout Plain Layout
21030
21031 }{}
21032 \end_layout
21033
21034 \end_inset
21035
21036
21037 \begin_inset Note Note
21038 status collapsed
21039
21040 \begin_layout Plain Layout
21041
21042 \backslash
21043 texorpdfstring se usa para evitar que la nota al pie aparezca en los marcadores
21044  PDF.
21045 \end_layout
21046
21047 \begin_layout Plain Layout
21048 Más sobre 
21049 \backslash
21050 texorpdfstring en la sección 
21051 \begin_inset CommandInset ref
21052 LatexCommand ref
21053 reference "sub:Ecuaciones-en-encabezados"
21054
21055 \end_inset
21056
21057 .
21058 \end_layout
21059
21060 \end_inset
21061
21062
21063 \begin_inset Index idx
21064 status collapsed
21065
21066 \begin_layout Plain Layout
21067 Símbolos
21068 \end_layout
21069
21070 \end_inset
21071
21072
21073 \end_layout
21074
21075 \begin_layout Standard
21076 Muchos de los símbolos listados en esta sección se pueden insertar además
21077  mediante los botones 
21078 \begin_inset Graphics
21079         filename ../../images/math/nabla.png
21080         scale 85
21081
21082 \end_inset
21083
21084  y 
21085 \begin_inset Graphics
21086         filename ../../images/math/digamma.png
21087         scale 85
21088
21089 \end_inset
21090
21091  de la barra de ecuaciones.
21092 \end_layout
21093
21094 \begin_layout Subsection
21095 Símbolos matemáticos
21096 \begin_inset CommandInset label
21097 LatexCommand label
21098 name "sub:Símbolos-matemáticos"
21099
21100 \end_inset
21101
21102
21103 \begin_inset Index idx
21104 status collapsed
21105
21106 \begin_layout Plain Layout
21107 Símbolos ! matemáticos
21108 \end_layout
21109
21110 \end_inset
21111
21112
21113 \end_layout
21114
21115 \begin_layout Standard
21116 \begin_inset space \hfill{}
21117 \end_inset
21118
21119
21120 \begin_inset Tabular
21121 <lyxtabular version="3" rows="10" columns="2">
21122 <features tabularvalignment="middle">
21123 <column alignment="center" valignment="top" width="0pt">
21124 <column alignment="center" valignment="top" width="0pt">
21125 <row>
21126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21127 \begin_inset Text
21128
21129 \begin_layout Plain Layout
21130 Comando
21131 \end_layout
21132
21133 \end_inset
21134 </cell>
21135 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21136 \begin_inset Text
21137
21138 \begin_layout Plain Layout
21139 Símbolo
21140 \end_layout
21141
21142 \end_inset
21143 </cell>
21144 </row>
21145 <row>
21146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21147 \begin_inset Text
21148
21149 \begin_layout Plain Layout
21150
21151 \backslash
21152 neg
21153 \end_layout
21154
21155 \end_inset
21156 </cell>
21157 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21158 \begin_inset Text
21159
21160 \begin_layout Plain Layout
21161 \begin_inset Formula $\neg$
21162 \end_inset
21163
21164
21165 \end_layout
21166
21167 \end_inset
21168 </cell>
21169 </row>
21170 <row>
21171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21172 \begin_inset Text
21173
21174 \begin_layout Plain Layout
21175
21176 \backslash
21177 Im
21178 \end_layout
21179
21180 \end_inset
21181 </cell>
21182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21183 \begin_inset Text
21184
21185 \begin_layout Plain Layout
21186 \begin_inset Formula $\Im$
21187 \end_inset
21188
21189
21190 \end_layout
21191
21192 \end_inset
21193 </cell>
21194 </row>
21195 <row>
21196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21197 \begin_inset Text
21198
21199 \begin_layout Plain Layout
21200
21201 \backslash
21202 Re
21203 \end_layout
21204
21205 \end_inset
21206 </cell>
21207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21208 \begin_inset Text
21209
21210 \begin_layout Plain Layout
21211 \begin_inset Formula $\Re$
21212 \end_inset
21213
21214
21215 \end_layout
21216
21217 \end_inset
21218 </cell>
21219 </row>
21220 <row>
21221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21222 \begin_inset Text
21223
21224 \begin_layout Plain Layout
21225
21226 \backslash
21227 aleph
21228 \end_layout
21229
21230 \end_inset
21231 </cell>
21232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21233 \begin_inset Text
21234
21235 \begin_layout Plain Layout
21236 \begin_inset Formula $\aleph$
21237 \end_inset
21238
21239
21240 \end_layout
21241
21242 \end_inset
21243 </cell>
21244 </row>
21245 <row>
21246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21247 \begin_inset Text
21248
21249 \begin_layout Plain Layout
21250
21251 \backslash
21252 partial
21253 \end_layout
21254
21255 \end_inset
21256 </cell>
21257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21258 \begin_inset Text
21259
21260 \begin_layout Plain Layout
21261 \begin_inset Formula $\partial$
21262 \end_inset
21263
21264
21265 \end_layout
21266
21267 \end_inset
21268 </cell>
21269 </row>
21270 <row>
21271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21272 \begin_inset Text
21273
21274 \begin_layout Plain Layout
21275
21276 \backslash
21277 infty
21278 \end_layout
21279
21280 \end_inset
21281 </cell>
21282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21283 \begin_inset Text
21284
21285 \begin_layout Plain Layout
21286 \begin_inset Formula $\infty$
21287 \end_inset
21288
21289
21290 \end_layout
21291
21292 \end_inset
21293 </cell>
21294 </row>
21295 <row>
21296 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21297 \begin_inset Text
21298
21299 \begin_layout Plain Layout
21300
21301 \backslash
21302 wp
21303 \end_layout
21304
21305 \end_inset
21306 </cell>
21307 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21308 \begin_inset Text
21309
21310 \begin_layout Plain Layout
21311 \begin_inset Formula $\wp$
21312 \end_inset
21313
21314
21315 \end_layout
21316
21317 \end_inset
21318 </cell>
21319 </row>
21320 <row>
21321 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21322 \begin_inset Text
21323
21324 \begin_layout Plain Layout
21325
21326 \backslash
21327 imath
21328 \end_layout
21329
21330 \end_inset
21331 </cell>
21332 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21333 \begin_inset Text
21334
21335 \begin_layout Plain Layout
21336 \begin_inset Formula $\imath$
21337 \end_inset
21338
21339
21340 \end_layout
21341
21342 \end_inset
21343 </cell>
21344 </row>
21345 <row>
21346 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21347 \begin_inset Text
21348
21349 \begin_layout Plain Layout
21350
21351 \backslash
21352 jmath
21353 \end_layout
21354
21355 \end_inset
21356 </cell>
21357 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21358 \begin_inset Text
21359
21360 \begin_layout Plain Layout
21361 \begin_inset Formula $\jmath$
21362 \end_inset
21363
21364
21365 \end_layout
21366
21367 \end_inset
21368 </cell>
21369 </row>
21370 </lyxtabular>
21371
21372 \end_inset
21373
21374
21375 \begin_inset space \hfill{}
21376 \end_inset
21377
21378
21379 \begin_inset Tabular
21380 <lyxtabular version="3" rows="10" columns="2">
21381 <features tabularvalignment="middle">
21382 <column alignment="center" valignment="top" width="0pt">
21383 <column alignment="center" valignment="top" width="0pt">
21384 <row>
21385 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21386 \begin_inset Text
21387
21388 \begin_layout Plain Layout
21389 Comando
21390 \end_layout
21391
21392 \end_inset
21393 </cell>
21394 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21395 \begin_inset Text
21396
21397 \begin_layout Plain Layout
21398 Símbolo
21399 \begin_inset Note Note
21400 status collapsed
21401
21402 \begin_layout Plain Layout
21403
21404 \series bold
21405
21406 \backslash
21407 raisebox
21408 \series default
21409  se usa sólo como espaciador
21410 \end_layout
21411
21412 \end_inset
21413
21414
21415 \end_layout
21416
21417 \end_inset
21418 </cell>
21419 </row>
21420 <row>
21421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21422 \begin_inset Text
21423
21424 \begin_layout Plain Layout
21425
21426 \backslash
21427 forall
21428 \end_layout
21429
21430 \end_inset
21431 </cell>
21432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21433 \begin_inset Text
21434
21435 \begin_layout Plain Layout
21436 \begin_inset Formula $\forall$
21437 \end_inset
21438
21439
21440 \end_layout
21441
21442 \end_inset
21443 </cell>
21444 </row>
21445 <row>
21446 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21447 \begin_inset Text
21448
21449 \begin_layout Plain Layout
21450
21451 \backslash
21452 exists
21453 \end_layout
21454
21455 \end_inset
21456 </cell>
21457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21458 \begin_inset Text
21459
21460 \begin_layout Plain Layout
21461 \begin_inset Formula $\exists$
21462 \end_inset
21463
21464
21465 \end_layout
21466
21467 \end_inset
21468 </cell>
21469 </row>
21470 <row>
21471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21472 \begin_inset Text
21473
21474 \begin_layout Plain Layout
21475
21476 \backslash
21477 nexists
21478 \end_layout
21479
21480 \end_inset
21481 </cell>
21482 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21483 \begin_inset Text
21484
21485 \begin_layout Plain Layout
21486 \begin_inset Formula $\nexists$
21487 \end_inset
21488
21489
21490 \end_layout
21491
21492 \end_inset
21493 </cell>
21494 </row>
21495 <row>
21496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21497 \begin_inset Text
21498
21499 \begin_layout Plain Layout
21500
21501 \backslash
21502 emptyset
21503 \end_layout
21504
21505 \end_inset
21506 </cell>
21507 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21508 \begin_inset Text
21509
21510 \begin_layout Plain Layout
21511 \begin_inset Formula $\emptyset$
21512 \end_inset
21513
21514
21515 \end_layout
21516
21517 \end_inset
21518 </cell>
21519 </row>
21520 <row>
21521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21522 \begin_inset Text
21523
21524 \begin_layout Plain Layout
21525
21526 \backslash
21527 varnothing
21528 \end_layout
21529
21530 \end_inset
21531 </cell>
21532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21533 \begin_inset Text
21534
21535 \begin_layout Plain Layout
21536 \begin_inset Formula $\varnothing$
21537 \end_inset
21538
21539
21540 \end_layout
21541
21542 \end_inset
21543 </cell>
21544 </row>
21545 <row>
21546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21547 \begin_inset Text
21548
21549 \begin_layout Plain Layout
21550
21551 \backslash
21552 dag
21553 \end_layout
21554
21555 \end_inset
21556 </cell>
21557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21558 \begin_inset Text
21559
21560 \begin_layout Plain Layout
21561 \begin_inset Formula $\dag$
21562 \end_inset
21563
21564
21565 \end_layout
21566
21567 \end_inset
21568 </cell>
21569 </row>
21570 <row>
21571 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21572 \begin_inset Text
21573
21574 \begin_layout Plain Layout
21575
21576 \backslash
21577 ddag
21578 \end_layout
21579
21580 \end_inset
21581 </cell>
21582 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21583 \begin_inset Text
21584
21585 \begin_layout Plain Layout
21586 \begin_inset Formula $\ddag$
21587 \end_inset
21588
21589
21590 \end_layout
21591
21592 \end_inset
21593 </cell>
21594 </row>
21595 <row>
21596 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21597 \begin_inset Text
21598
21599 \begin_layout Plain Layout
21600
21601 \backslash
21602 complement
21603 \end_layout
21604
21605 \end_inset
21606 </cell>
21607 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21608 \begin_inset Text
21609
21610 \begin_layout Plain Layout
21611 \begin_inset ERT
21612 status collapsed
21613
21614 \begin_layout Plain Layout
21615
21616
21617 \backslash
21618 raisebox{-0.8mm}{
21619 \end_layout
21620
21621 \end_inset
21622
21623
21624 \begin_inset Formula $\complement$
21625 \end_inset
21626
21627
21628 \begin_inset ERT
21629 status collapsed
21630
21631 \begin_layout Plain Layout
21632
21633 }
21634 \end_layout
21635
21636 \end_inset
21637
21638
21639 \end_layout
21640
21641 \end_inset
21642 </cell>
21643 </row>
21644 <row>
21645 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21646 \begin_inset Text
21647
21648 \begin_layout Plain Layout
21649
21650 \backslash
21651 Bbbk
21652 \end_layout
21653
21654 \end_inset
21655 </cell>
21656 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21657 \begin_inset Text
21658
21659 \begin_layout Plain Layout
21660 \begin_inset Formula $\Bbbk$
21661 \end_inset
21662
21663
21664 \end_layout
21665
21666 \end_inset
21667 </cell>
21668 </row>
21669 </lyxtabular>
21670
21671 \end_inset
21672
21673
21674 \begin_inset space \hfill{}
21675 \end_inset
21676
21677
21678 \begin_inset Tabular
21679 <lyxtabular version="3" rows="10" columns="2">
21680 <features tabularvalignment="middle">
21681 <column alignment="center" valignment="top" width="0pt">
21682 <column alignment="center" valignment="top" width="0pt">
21683 <row>
21684 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21685 \begin_inset Text
21686
21687 \begin_layout Plain Layout
21688 Comando
21689 \end_layout
21690
21691 \end_inset
21692 </cell>
21693 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21694 \begin_inset Text
21695
21696 \begin_layout Plain Layout
21697 Símbolo
21698 \end_layout
21699
21700 \end_inset
21701 </cell>
21702 </row>
21703 <row>
21704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21705 \begin_inset Text
21706
21707 \begin_layout Plain Layout
21708
21709 \backslash
21710 prime
21711 \end_layout
21712
21713 \end_inset
21714 </cell>
21715 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21716 \begin_inset Text
21717
21718 \begin_layout Plain Layout
21719 \begin_inset Formula $\prime$
21720 \end_inset
21721
21722
21723 \end_layout
21724
21725 \end_inset
21726 </cell>
21727 </row>
21728 <row>
21729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21730 \begin_inset Text
21731
21732 \begin_layout Plain Layout
21733
21734 \backslash
21735 backprime
21736 \end_layout
21737
21738 \end_inset
21739 </cell>
21740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21741 \begin_inset Text
21742
21743 \begin_layout Plain Layout
21744 \begin_inset Formula $\backprime$
21745 \end_inset
21746
21747
21748 \end_layout
21749
21750 \end_inset
21751 </cell>
21752 </row>
21753 <row>
21754 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21755 \begin_inset Text
21756
21757 \begin_layout Plain Layout
21758
21759 \backslash
21760 mho
21761 \end_layout
21762
21763 \end_inset
21764 </cell>
21765 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21766 \begin_inset Text
21767
21768 \begin_layout Plain Layout
21769 \begin_inset Formula $\mho$
21770 \end_inset
21771
21772
21773 \end_layout
21774
21775 \end_inset
21776 </cell>
21777 </row>
21778 <row>
21779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21780 \begin_inset Text
21781
21782 \begin_layout Plain Layout
21783
21784 \backslash
21785 triangle
21786 \end_layout
21787
21788 \end_inset
21789 </cell>
21790 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21791 \begin_inset Text
21792
21793 \begin_layout Plain Layout
21794 \begin_inset Formula $\triangle$
21795 \end_inset
21796
21797
21798 \end_layout
21799
21800 \end_inset
21801 </cell>
21802 </row>
21803 <row>
21804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21805 \begin_inset Text
21806
21807 \begin_layout Plain Layout
21808
21809 \backslash
21810 angle
21811 \end_layout
21812
21813 \end_inset
21814 </cell>
21815 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21816 \begin_inset Text
21817
21818 \begin_layout Plain Layout
21819 \begin_inset Formula $\angle$
21820 \end_inset
21821
21822
21823 \end_layout
21824
21825 \end_inset
21826 </cell>
21827 </row>
21828 <row>
21829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21830 \begin_inset Text
21831
21832 \begin_layout Plain Layout
21833
21834 \backslash
21835 measuredangle
21836 \end_layout
21837
21838 \end_inset
21839 </cell>
21840 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21841 \begin_inset Text
21842
21843 \begin_layout Plain Layout
21844 \begin_inset Formula $\measuredangle$
21845 \end_inset
21846
21847
21848 \end_layout
21849
21850 \end_inset
21851 </cell>
21852 </row>
21853 <row>
21854 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21855 \begin_inset Text
21856
21857 \begin_layout Plain Layout
21858
21859 \backslash
21860 sphericalangle
21861 \end_layout
21862
21863 \end_inset
21864 </cell>
21865 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21866 \begin_inset Text
21867
21868 \begin_layout Plain Layout
21869 \begin_inset Formula $\sphericalangle$
21870 \end_inset
21871
21872
21873 \end_layout
21874
21875 \end_inset
21876 </cell>
21877 </row>
21878 <row>
21879 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21880 \begin_inset Text
21881
21882 \begin_layout Plain Layout
21883
21884 \backslash
21885 top
21886 \end_layout
21887
21888 \end_inset
21889 </cell>
21890 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21891 \begin_inset Text
21892
21893 \begin_layout Plain Layout
21894 \begin_inset Formula $\top$
21895 \end_inset
21896
21897
21898 \end_layout
21899
21900 \end_inset
21901 </cell>
21902 </row>
21903 <row>
21904 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21905 \begin_inset Text
21906
21907 \begin_layout Plain Layout
21908
21909 \backslash
21910 bot
21911 \end_layout
21912
21913 \end_inset
21914 </cell>
21915 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21916 \begin_inset Text
21917
21918 \begin_layout Plain Layout
21919 \begin_inset Formula $\bot$
21920 \end_inset
21921
21922
21923 \end_layout
21924
21925 \end_inset
21926 </cell>
21927 </row>
21928 </lyxtabular>
21929
21930 \end_inset
21931
21932
21933 \begin_inset space \hfill{}
21934 \end_inset
21935
21936
21937 \end_layout
21938
21939 \begin_layout Subsection
21940 Símbolos misceláneos
21941 \begin_inset CommandInset label
21942 LatexCommand label
21943 name "sub:Símbolos-misceláneos"
21944
21945 \end_inset
21946
21947
21948 \begin_inset Index idx
21949 status collapsed
21950
21951 \begin_layout Plain Layout
21952 Símbolos ! misceláneos
21953 \end_layout
21954
21955 \end_inset
21956
21957
21958 \end_layout
21959
21960 \begin_layout Standard
21961 \noindent
21962 \align center
21963 \begin_inset Tabular
21964 <lyxtabular version="3" rows="10" columns="2">
21965 <features tabularvalignment="middle">
21966 <column alignment="center" valignment="top" width="0pt">
21967 <column alignment="center" valignment="top" width="0pt">
21968 <row>
21969 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21970 \begin_inset Text
21971
21972 \begin_layout Plain Layout
21973 Comando
21974 \end_layout
21975
21976 \end_inset
21977 </cell>
21978 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21979 \begin_inset Text
21980
21981 \begin_layout Plain Layout
21982 Símbolo
21983 \end_layout
21984
21985 \end_inset
21986 </cell>
21987 </row>
21988 <row>
21989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21990 \begin_inset Text
21991
21992 \begin_layout Plain Layout
21993
21994 \backslash
21995 flat
21996 \end_layout
21997
21998 \end_inset
21999 </cell>
22000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22001 \begin_inset Text
22002
22003 \begin_layout Plain Layout
22004 \begin_inset Formula $\flat$
22005 \end_inset
22006
22007
22008 \end_layout
22009
22010 \end_inset
22011 </cell>
22012 </row>
22013 <row>
22014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22015 \begin_inset Text
22016
22017 \begin_layout Plain Layout
22018
22019 \backslash
22020 natural
22021 \end_layout
22022
22023 \end_inset
22024 </cell>
22025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22026 \begin_inset Text
22027
22028 \begin_layout Plain Layout
22029 \begin_inset Formula $\natural$
22030 \end_inset
22031
22032
22033 \end_layout
22034
22035 \end_inset
22036 </cell>
22037 </row>
22038 <row>
22039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22040 \begin_inset Text
22041
22042 \begin_layout Plain Layout
22043
22044 \backslash
22045 sharp
22046 \end_layout
22047
22048 \end_inset
22049 </cell>
22050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22051 \begin_inset Text
22052
22053 \begin_layout Plain Layout
22054 \begin_inset Formula $\sharp$
22055 \end_inset
22056
22057
22058 \end_layout
22059
22060 \end_inset
22061 </cell>
22062 </row>
22063 <row>
22064 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22065 \begin_inset Text
22066
22067 \begin_layout Plain Layout
22068
22069 \backslash
22070 surd
22071 \end_layout
22072
22073 \end_inset
22074 </cell>
22075 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22076 \begin_inset Text
22077
22078 \begin_layout Plain Layout
22079 \begin_inset Formula $\surd$
22080 \end_inset
22081
22082
22083 \end_layout
22084
22085 \end_inset
22086 </cell>
22087 </row>
22088 <row>
22089 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22090 \begin_inset Text
22091
22092 \begin_layout Plain Layout
22093
22094 \backslash
22095 checkmark
22096 \end_layout
22097
22098 \end_inset
22099 </cell>
22100 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22101 \begin_inset Text
22102
22103 \begin_layout Plain Layout
22104 \begin_inset Formula $\checkmark$
22105 \end_inset
22106
22107
22108 \end_layout
22109
22110 \end_inset
22111 </cell>
22112 </row>
22113 <row>
22114 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22115 \begin_inset Text
22116
22117 \begin_layout Plain Layout
22118
22119 \backslash
22120 yen
22121 \end_layout
22122
22123 \end_inset
22124 </cell>
22125 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22126 \begin_inset Text
22127
22128 \begin_layout Plain Layout
22129 \begin_inset Formula $\yen$
22130 \end_inset
22131
22132
22133 \end_layout
22134
22135 \end_inset
22136 </cell>
22137 </row>
22138 <row>
22139 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22140 \begin_inset Text
22141
22142 \begin_layout Plain Layout
22143
22144 \backslash
22145 pounds
22146 \end_layout
22147
22148 \end_inset
22149 </cell>
22150 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22151 \begin_inset Text
22152
22153 \begin_layout Plain Layout
22154 \begin_inset Formula $\pounds$
22155 \end_inset
22156
22157
22158 \end_layout
22159
22160 \end_inset
22161 </cell>
22162 </row>
22163 <row>
22164 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22165 \begin_inset Text
22166
22167 \begin_layout Plain Layout
22168 $
22169 \end_layout
22170
22171 \end_inset
22172 </cell>
22173 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22174 \begin_inset Text
22175
22176 \begin_layout Plain Layout
22177 \begin_inset Formula $\$$
22178 \end_inset
22179
22180
22181 \end_layout
22182
22183 \end_inset
22184 </cell>
22185 </row>
22186 <row>
22187 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22188 \begin_inset Text
22189
22190 \begin_layout Plain Layout
22191 §
22192 \end_layout
22193
22194 \end_inset
22195 </cell>
22196 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22197 \begin_inset Text
22198
22199 \begin_layout Plain Layout
22200 \begin_inset Formula $§$
22201 \end_inset
22202
22203
22204 \end_layout
22205
22206 \end_inset
22207 </cell>
22208 </row>
22209 </lyxtabular>
22210
22211 \end_inset
22212
22213
22214 \begin_inset Tabular
22215 <lyxtabular version="3" rows="10" columns="2">
22216 <features tabularvalignment="middle">
22217 <column alignment="center" valignment="top" width="0">
22218 <column alignment="center" valignment="top" width="0">
22219 <row>
22220 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22221 \begin_inset Text
22222
22223 \begin_layout Plain Layout
22224 Comando
22225 \end_layout
22226
22227 \end_inset
22228 </cell>
22229 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22230 \begin_inset Text
22231
22232 \begin_layout Plain Layout
22233 Símbolo
22234 \end_layout
22235
22236 \end_inset
22237 </cell>
22238 </row>
22239 <row>
22240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22241 \begin_inset Text
22242
22243 \begin_layout Plain Layout
22244
22245 \backslash
22246 hbar
22247 \end_layout
22248
22249 \end_inset
22250 </cell>
22251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22252 \begin_inset Text
22253
22254 \begin_layout Plain Layout
22255 \begin_inset Formula $\hbar$
22256 \end_inset
22257
22258
22259 \end_layout
22260
22261 \end_inset
22262 </cell>
22263 </row>
22264 <row>
22265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22266 \begin_inset Text
22267
22268 \begin_layout Plain Layout
22269
22270 \backslash
22271 hslash
22272 \end_layout
22273
22274 \end_inset
22275 </cell>
22276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22277 \begin_inset Text
22278
22279 \begin_layout Plain Layout
22280 \begin_inset Formula $\hslash$
22281 \end_inset
22282
22283
22284 \end_layout
22285
22286 \end_inset
22287 </cell>
22288 </row>
22289 <row>
22290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22291 \begin_inset Text
22292
22293 \begin_layout Plain Layout
22294
22295 \backslash
22296 clubsuit
22297 \end_layout
22298
22299 \end_inset
22300 </cell>
22301 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22302 \begin_inset Text
22303
22304 \begin_layout Plain Layout
22305 \begin_inset Formula $\clubsuit$
22306 \end_inset
22307
22308
22309 \end_layout
22310
22311 \end_inset
22312 </cell>
22313 </row>
22314 <row>
22315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22316 \begin_inset Text
22317
22318 \begin_layout Plain Layout
22319
22320 \backslash
22321 spadesuit
22322 \end_layout
22323
22324 \end_inset
22325 </cell>
22326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22327 \begin_inset Text
22328
22329 \begin_layout Plain Layout
22330 \begin_inset Formula $\spadesuit$
22331 \end_inset
22332
22333
22334 \end_layout
22335
22336 \end_inset
22337 </cell>
22338 </row>
22339 <row>
22340 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22341 \begin_inset Text
22342
22343 \begin_layout Plain Layout
22344
22345 \backslash
22346 bigstar
22347 \end_layout
22348
22349 \end_inset
22350 </cell>
22351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22352 \begin_inset Text
22353
22354 \begin_layout Plain Layout
22355 \begin_inset Formula $\bigstar$
22356 \end_inset
22357
22358
22359 \end_layout
22360
22361 \end_inset
22362 </cell>
22363 </row>
22364 <row>
22365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22366 \begin_inset Text
22367
22368 \begin_layout Plain Layout
22369
22370 \backslash
22371 blacklozenge
22372 \end_layout
22373
22374 \end_inset
22375 </cell>
22376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22377 \begin_inset Text
22378
22379 \begin_layout Plain Layout
22380 \begin_inset Formula $\blacklozenge$
22381 \end_inset
22382
22383
22384 \end_layout
22385
22386 \end_inset
22387 </cell>
22388 </row>
22389 <row>
22390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22391 \begin_inset Text
22392
22393 \begin_layout Plain Layout
22394
22395 \backslash
22396 blacktriangle
22397 \end_layout
22398
22399 \end_inset
22400 </cell>
22401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22402 \begin_inset Text
22403
22404 \begin_layout Plain Layout
22405 \begin_inset Formula $\blacktriangle$
22406 \end_inset
22407
22408
22409 \end_layout
22410
22411 \end_inset
22412 </cell>
22413 </row>
22414 <row>
22415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22416 \begin_inset Text
22417
22418 \begin_layout Plain Layout
22419
22420 \backslash
22421 blacktiangledown
22422 \end_layout
22423
22424 \end_inset
22425 </cell>
22426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22427 \begin_inset Text
22428
22429 \begin_layout Plain Layout
22430 \begin_inset Formula $\blacktriangledown$
22431 \end_inset
22432
22433
22434 \end_layout
22435
22436 \end_inset
22437 </cell>
22438 </row>
22439 <row>
22440 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22441 \begin_inset Text
22442
22443 \begin_layout Plain Layout
22444
22445 \backslash
22446 bullet
22447 \end_layout
22448
22449 \end_inset
22450 </cell>
22451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22452 \begin_inset Text
22453
22454 \begin_layout Plain Layout
22455 \begin_inset Formula $\bullet$
22456 \end_inset
22457
22458
22459 \end_layout
22460
22461 \end_inset
22462 </cell>
22463 </row>
22464 </lyxtabular>
22465
22466 \end_inset
22467
22468
22469 \begin_inset Tabular
22470 <lyxtabular version="3" rows="10" columns="2">
22471 <features tabularvalignment="middle">
22472 <column alignment="center" valignment="top" width="0pt">
22473 <column alignment="center" valignment="top" width="0pt">
22474 <row>
22475 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22476 \begin_inset Text
22477
22478 \begin_layout Plain Layout
22479 Comando
22480 \end_layout
22481
22482 \end_inset
22483 </cell>
22484 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22485 \begin_inset Text
22486
22487 \begin_layout Plain Layout
22488 Símbolo
22489 \end_layout
22490
22491 \end_inset
22492 </cell>
22493 </row>
22494 <row>
22495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22496 \begin_inset Text
22497
22498 \begin_layout Plain Layout
22499
22500 \backslash
22501 diamondsuit
22502 \end_layout
22503
22504 \end_inset
22505 </cell>
22506 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22507 \begin_inset Text
22508
22509 \begin_layout Plain Layout
22510 \begin_inset Formula $\diamondsuit$
22511 \end_inset
22512
22513
22514 \end_layout
22515
22516 \end_inset
22517 </cell>
22518 </row>
22519 <row>
22520 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22521 \begin_inset Text
22522
22523 \begin_layout Plain Layout
22524
22525 \backslash
22526 Diamond
22527 \end_layout
22528
22529 \end_inset
22530 </cell>
22531 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22532 \begin_inset Text
22533
22534 \begin_layout Plain Layout
22535 \begin_inset Formula $\Diamond$
22536 \end_inset
22537
22538
22539 \end_layout
22540
22541 \end_inset
22542 </cell>
22543 </row>
22544 <row>
22545 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22546 \begin_inset Text
22547
22548 \begin_layout Plain Layout
22549
22550 \backslash
22551 heartsuit
22552 \end_layout
22553
22554 \end_inset
22555 </cell>
22556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22557 \begin_inset Text
22558
22559 \begin_layout Plain Layout
22560 \begin_inset Formula $\heartsuit$
22561 \end_inset
22562
22563
22564 \end_layout
22565
22566 \end_inset
22567 </cell>
22568 </row>
22569 <row>
22570 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22571 \begin_inset Text
22572
22573 \begin_layout Plain Layout
22574
22575 \backslash
22576 P
22577 \end_layout
22578
22579 \end_inset
22580 </cell>
22581 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22582 \begin_inset Text
22583
22584 \begin_layout Plain Layout
22585 \begin_inset Formula $\P$
22586 \end_inset
22587
22588
22589 \end_layout
22590
22591 \end_inset
22592 </cell>
22593 </row>
22594 <row>
22595 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22596 \begin_inset Text
22597
22598 \begin_layout Plain Layout
22599
22600 \backslash
22601 copyright
22602 \end_layout
22603
22604 \end_inset
22605 </cell>
22606 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22607 \begin_inset Text
22608
22609 \begin_layout Plain Layout
22610 \begin_inset Formula $\copyright$
22611 \end_inset
22612
22613
22614 \end_layout
22615
22616 \end_inset
22617 </cell>
22618 </row>
22619 <row>
22620 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22621 \begin_inset Text
22622
22623 \begin_layout Plain Layout
22624
22625 \backslash
22626 circledR
22627 \end_layout
22628
22629 \end_inset
22630 </cell>
22631 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22632 \begin_inset Text
22633
22634 \begin_layout Plain Layout
22635 \begin_inset Formula $\circledR$
22636 \end_inset
22637
22638
22639 \end_layout
22640
22641 \end_inset
22642 </cell>
22643 </row>
22644 <row>
22645 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22646 \begin_inset Text
22647
22648 \begin_layout Plain Layout
22649
22650 \backslash
22651 maltese
22652 \end_layout
22653
22654 \end_inset
22655 </cell>
22656 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22657 \begin_inset Text
22658
22659 \begin_layout Plain Layout
22660 \begin_inset Formula $\maltese$
22661 \end_inset
22662
22663
22664 \end_layout
22665
22666 \end_inset
22667 </cell>
22668 </row>
22669 <row>
22670 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22671 \begin_inset Text
22672
22673 \begin_layout Plain Layout
22674
22675 \backslash
22676 diagup
22677 \end_layout
22678
22679 \end_inset
22680 </cell>
22681 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22682 \begin_inset Text
22683
22684 \begin_layout Plain Layout
22685 \begin_inset Formula $\diagup$
22686 \end_inset
22687
22688
22689 \end_layout
22690
22691 \end_inset
22692 </cell>
22693 </row>
22694 <row>
22695 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22696 \begin_inset Text
22697
22698 \begin_layout Plain Layout
22699
22700 \backslash
22701 diagdown
22702 \end_layout
22703
22704 \end_inset
22705 </cell>
22706 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22707 \begin_inset Text
22708
22709 \begin_layout Plain Layout
22710 \begin_inset Formula $\diagdown$
22711 \end_inset
22712
22713
22714 \end_layout
22715
22716 \end_inset
22717 </cell>
22718 </row>
22719 </lyxtabular>
22720
22721 \end_inset
22722
22723
22724 \end_layout
22725
22726 \begin_layout Standard
22727 \begin_inset VSpace medskip
22728 \end_inset
22729
22730
22731 \end_layout
22732
22733 \begin_layout Standard
22734 Hay más símbolos en 
22735 \begin_inset CommandInset ref
22736 LatexCommand ref
22737 reference "sub:Caracteres-especiales-misceláneos"
22738
22739 \end_inset
22740
22741 .
22742 \end_layout
22743
22744 \begin_layout Standard
22745 Algunos símbolos pueden presentarse en distintos tamaños, véase 
22746 \begin_inset CommandInset ref
22747 LatexCommand ref
22748 reference "sub:Tamaños-de-fuentes"
22749
22750 \end_inset
22751
22752
22753 \end_layout
22754
22755 \begin_layout Subsection
22756 El símbolo del euro, €
22757 \begin_inset Index idx
22758 status collapsed
22759
22760 \begin_layout Plain Layout
22761 Símbolos ! euro
22762 \end_layout
22763
22764 \end_inset
22765
22766
22767 \begin_inset Index idx
22768 status collapsed
22769
22770 \begin_layout Plain Layout
22771
22772 \backslash
22773 @
22774 \begin_inset ERT
22775 status collapsed
22776
22777 \begin_layout Plain Layout
22778
22779
22780 \backslash
22781 officialeuro
22782 \end_layout
22783
22784 \end_inset
22785
22786
22787 \end_layout
22788
22789 \end_inset
22790
22791
22792 \end_layout
22793
22794 \begin_layout Standard
22795 Para usar el símbolo del euro en ecuaciones debe estar instalado el paquete
22796  LaTeX 
22797 \series bold
22798 eurosym
22799 \series default
22800
22801 \begin_inset Index idx
22802 status collapsed
22803
22804 \begin_layout Plain Layout
22805 Paquetes ! eurosym
22806 \end_layout
22807
22808 \end_inset
22809
22810 , y cargado en el preámbulo LaTeX con la línea
22811 \end_layout
22812
22813 \begin_layout Standard
22814
22815 \series bold
22816
22817 \backslash
22818 usepackage[gennarrow]{eurosym}
22819 \end_layout
22820
22821 \begin_layout Standard
22822 Actualmente también se puede insertar con el comando 
22823 \series bold
22824
22825 \backslash
22826 euro
22827 \series default
22828
22829 \begin_inset Index idx
22830 status collapsed
22831
22832 \begin_layout Plain Layout
22833 Comandos ! E ! 
22834 \backslash
22835 euro
22836 \end_layout
22837
22838 \end_inset
22839
22840 .
22841 \end_layout
22842
22843 \begin_layout Standard
22844 El símbolo del euro puede insertarse directamente con la tecla € en texto
22845  matemático sin tener 
22846 \series bold
22847 eurosym
22848 \series default
22849  instalado.
22850  Si 
22851 \series bold
22852 eurosym
22853 \series default
22854  está instalado, se puede insertar 
22855 \series bold
22856
22857 \backslash
22858 euro
22859 \series default
22860  en modo TeX.
22861  El símbolo oficial de la moneda se puede insertar con el comando 
22862 \series bold
22863
22864 \backslash
22865 officialeuro
22866 \series default
22867
22868 \begin_inset Index idx
22869 status collapsed
22870
22871 \begin_layout Plain Layout
22872 Comandos ! O ! 
22873 \backslash
22874 officialeuro
22875 \end_layout
22876
22877 \end_inset
22878
22879 , que sólo está disponible en modo TeX.
22880 \end_layout
22881
22882 \begin_layout Standard
22883 \begin_inset ERT
22884 status collapsed
22885
22886 \begin_layout Plain Layout
22887
22888
22889 \backslash
22890 ifeurosym
22891 \end_layout
22892
22893 \end_inset
22894
22895
22896 \begin_inset Note Note
22897 status collapsed
22898
22899 \begin_layout Plain Layout
22900 La tabla siguiente sólo se mostrará si está instalado el paquete LaTeX 
22901 \series bold
22902 eurosym
22903 \series default
22904 .
22905 \end_layout
22906
22907 \end_inset
22908
22909
22910 \end_layout
22911
22912 \begin_layout Standard
22913 Un vistazo a los diferentes símbolos del euro.
22914 \end_layout
22915
22916 \begin_layout Standard
22917 \noindent
22918 \align center
22919 \begin_inset Tabular
22920 <lyxtabular version="3" rows="4" columns="3">
22921 <features tabularvalignment="middle">
22922 <column alignment="center" valignment="top" width="0">
22923 <column alignment="center" valignment="top" width="0">
22924 <column alignment="center" valignment="top" width="0">
22925 <row>
22926 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
22927 \begin_inset Text
22928
22929 \begin_layout Plain Layout
22930
22931 \end_layout
22932
22933 \end_inset
22934 </cell>
22935 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22936 \begin_inset Text
22937
22938 \begin_layout Plain Layout
22939 Comando
22940 \end_layout
22941
22942 \end_inset
22943 </cell>
22944 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22945 \begin_inset Text
22946
22947 \begin_layout Plain Layout
22948 Símbolo
22949 \end_layout
22950
22951 \end_inset
22952 </cell>
22953 </row>
22954 <row>
22955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22956 \begin_inset Text
22957
22958 \begin_layout Plain Layout
22959 ecuación
22960 \end_layout
22961
22962 \end_inset
22963 </cell>
22964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22965 \begin_inset Text
22966
22967 \begin_layout Plain Layout
22968
22969 \backslash
22970 euro
22971 \end_layout
22972
22973 \end_inset
22974 </cell>
22975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22976 \begin_inset Text
22977
22978 \begin_layout Plain Layout
22979 \begin_inset Formula $\euro$
22980 \end_inset
22981
22982
22983 \end_layout
22984
22985 \end_inset
22986 </cell>
22987 </row>
22988 <row>
22989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22990 \begin_inset Text
22991
22992 \begin_layout Plain Layout
22993 texto matemático
22994 \end_layout
22995
22996 \end_inset
22997 </cell>
22998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22999 \begin_inset Text
23000
23001 \begin_layout Plain Layout
23002
23003 \end_layout
23004
23005 \end_inset
23006 </cell>
23007 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23008 \begin_inset Text
23009
23010 \begin_layout Plain Layout
23011 \begin_inset Formula $\mbox{€}$
23012 \end_inset
23013
23014
23015 \end_layout
23016
23017 \end_inset
23018 </cell>
23019 </row>
23020 <row>
23021 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23022 \begin_inset Text
23023
23024 \begin_layout Plain Layout
23025 modo TeX
23026 \end_layout
23027
23028 \end_inset
23029 </cell>
23030 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23031 \begin_inset Text
23032
23033 \begin_layout Plain Layout
23034
23035 \backslash
23036 officialeuro
23037 \end_layout
23038
23039 \end_inset
23040 </cell>
23041 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23042 \begin_inset Text
23043
23044 \begin_layout Plain Layout
23045 \begin_inset ERT
23046 status collapsed
23047
23048 \begin_layout Plain Layout
23049
23050
23051 \backslash
23052 officialeuro
23053 \end_layout
23054
23055 \end_inset
23056
23057
23058 \end_layout
23059
23060 \end_inset
23061 </cell>
23062 </row>
23063 </lyxtabular>
23064
23065 \end_inset
23066
23067
23068 \end_layout
23069
23070 \begin_layout Standard
23071 \begin_inset ERT
23072 status collapsed
23073
23074 \begin_layout Plain Layout
23075
23076
23077 \backslash
23078 else
23079 \end_layout
23080
23081 \end_inset
23082
23083
23084 \begin_inset Note Note
23085 status collapsed
23086
23087 \begin_layout Plain Layout
23088 Se mostrará lo siguiente si no está instalado el paquete LaTeX 
23089 \series bold
23090 eurosym
23091 \series default
23092 :
23093 \end_layout
23094
23095 \end_inset
23096
23097
23098 \end_layout
23099
23100 \begin_layout Standard
23101 Para ver la salida completa de esta subsección debe estar instalado el paquete
23102  LaTeX 
23103 \series bold
23104 eurosym
23105 \series default
23106 .
23107 \end_layout
23108
23109 \begin_layout Standard
23110 \begin_inset ERT
23111 status collapsed
23112
23113 \begin_layout Plain Layout
23114
23115
23116 \backslash
23117 fi
23118 \end_layout
23119
23120 \end_inset
23121
23122
23123 \end_layout
23124
23125 \begin_layout Standard
23126 \begin_inset Newpage newpage
23127 \end_inset
23128
23129
23130 \end_layout
23131
23132 \begin_layout Section
23133 Relaciones
23134 \begin_inset CommandInset label
23135 LatexCommand label
23136 name "sec:Relaciones"
23137
23138 \end_inset
23139
23140
23141 \begin_inset Index idx
23142 status collapsed
23143
23144 \begin_layout Plain Layout
23145 Relaciones
23146 \end_layout
23147
23148 \end_inset
23149
23150
23151 \begin_inset Index idx
23152 status collapsed
23153
23154 \begin_layout Plain Layout
23155 Comparaciones|see
23156 \begin_inset ERT
23157 status collapsed
23158
23159 \begin_layout Plain Layout
23160
23161 {
23162 \end_layout
23163
23164 \end_inset
23165
23166 Relaciones
23167 \begin_inset ERT
23168 status collapsed
23169
23170 \begin_layout Plain Layout
23171
23172 }
23173 \end_layout
23174
23175 \end_inset
23176
23177
23178 \end_layout
23179
23180 \end_inset
23181
23182
23183 \end_layout
23184
23185 \begin_layout Standard
23186 Todas las relaciones se pueden insertar también con el botón 
23187 \begin_inset Graphics
23188         filename ../../images/math/leq.png
23189         scale 85
23190
23191 \end_inset
23192
23193  de la barra de ecuaciones.
23194 \end_layout
23195
23196 \begin_layout Standard
23197 \begin_inset space \hfill{}
23198 \end_inset
23199
23200
23201 \begin_inset Tabular
23202 <lyxtabular version="3" rows="17" columns="2">
23203 <features tabularvalignment="middle">
23204 <column alignment="center" valignment="top" width="0pt">
23205 <column alignment="center" valignment="top" width="0pt">
23206 <row>
23207 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23208 \begin_inset Text
23209
23210 \begin_layout Plain Layout
23211 Comando
23212 \end_layout
23213
23214 \end_inset
23215 </cell>
23216 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23217 \begin_inset Text
23218
23219 \begin_layout Plain Layout
23220 Relación
23221 \end_layout
23222
23223 \end_inset
23224 </cell>
23225 </row>
23226 <row>
23227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23228 \begin_inset Text
23229
23230 \begin_layout Plain Layout
23231 <
23232 \end_layout
23233
23234 \end_inset
23235 </cell>
23236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23237 \begin_inset Text
23238
23239 \begin_layout Plain Layout
23240 \begin_inset Formula $<$
23241 \end_inset
23242
23243
23244 \end_layout
23245
23246 \end_inset
23247 </cell>
23248 </row>
23249 <row>
23250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23251 \begin_inset Text
23252
23253 \begin_layout Plain Layout
23254
23255 \backslash
23256 le
23257 \end_layout
23258
23259 \end_inset
23260 </cell>
23261 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23262 \begin_inset Text
23263
23264 \begin_layout Plain Layout
23265 \begin_inset Formula $\le$
23266 \end_inset
23267
23268
23269 \end_layout
23270
23271 \end_inset
23272 </cell>
23273 </row>
23274 <row>
23275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23276 \begin_inset Text
23277
23278 \begin_layout Plain Layout
23279
23280 \backslash
23281 ll
23282 \end_layout
23283
23284 \end_inset
23285 </cell>
23286 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23287 \begin_inset Text
23288
23289 \begin_layout Plain Layout
23290 \begin_inset Formula $\ll$
23291 \end_inset
23292
23293
23294 \end_layout
23295
23296 \end_inset
23297 </cell>
23298 </row>
23299 <row>
23300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23301 \begin_inset Text
23302
23303 \begin_layout Plain Layout
23304
23305 \backslash
23306 prec
23307 \end_layout
23308
23309 \end_inset
23310 </cell>
23311 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23312 \begin_inset Text
23313
23314 \begin_layout Plain Layout
23315 \begin_inset Formula $\prec$
23316 \end_inset
23317
23318
23319 \end_layout
23320
23321 \end_inset
23322 </cell>
23323 </row>
23324 <row>
23325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23326 \begin_inset Text
23327
23328 \begin_layout Plain Layout
23329
23330 \backslash
23331 preceq
23332 \end_layout
23333
23334 \end_inset
23335 </cell>
23336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23337 \begin_inset Text
23338
23339 \begin_layout Plain Layout
23340 \begin_inset Formula $\preceq$
23341 \end_inset
23342
23343
23344 \end_layout
23345
23346 \end_inset
23347 </cell>
23348 </row>
23349 <row>
23350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23351 \begin_inset Text
23352
23353 \begin_layout Plain Layout
23354
23355 \backslash
23356 subset
23357 \end_layout
23358
23359 \end_inset
23360 </cell>
23361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23362 \begin_inset Text
23363
23364 \begin_layout Plain Layout
23365 \begin_inset Formula $\subset$
23366 \end_inset
23367
23368
23369 \end_layout
23370
23371 \end_inset
23372 </cell>
23373 </row>
23374 <row>
23375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23376 \begin_inset Text
23377
23378 \begin_layout Plain Layout
23379
23380 \backslash
23381 subseteq
23382 \end_layout
23383
23384 \end_inset
23385 </cell>
23386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23387 \begin_inset Text
23388
23389 \begin_layout Plain Layout
23390 \begin_inset Formula $\subseteq$
23391 \end_inset
23392
23393
23394 \end_layout
23395
23396 \end_inset
23397 </cell>
23398 </row>
23399 <row>
23400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23401 \begin_inset Text
23402
23403 \begin_layout Plain Layout
23404
23405 \backslash
23406 sqsubseteq
23407 \end_layout
23408
23409 \end_inset
23410 </cell>
23411 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23412 \begin_inset Text
23413
23414 \begin_layout Plain Layout
23415 \begin_inset Formula $\sqsubseteq$
23416 \end_inset
23417
23418
23419 \end_layout
23420
23421 \end_inset
23422 </cell>
23423 </row>
23424 <row>
23425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23426 \begin_inset Text
23427
23428 \begin_layout Plain Layout
23429
23430 \backslash
23431 in
23432 \end_layout
23433
23434 \end_inset
23435 </cell>
23436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23437 \begin_inset Text
23438
23439 \begin_layout Plain Layout
23440 \begin_inset Formula $\in$
23441 \end_inset
23442
23443
23444 \end_layout
23445
23446 \end_inset
23447 </cell>
23448 </row>
23449 <row>
23450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23451 \begin_inset Text
23452
23453 \begin_layout Plain Layout
23454
23455 \backslash
23456 vdash
23457 \end_layout
23458
23459 \end_inset
23460 </cell>
23461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23462 \begin_inset Text
23463
23464 \begin_layout Plain Layout
23465 \begin_inset Formula $\vdash$
23466 \end_inset
23467
23468
23469 \end_layout
23470
23471 \end_inset
23472 </cell>
23473 </row>
23474 <row>
23475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23476 \begin_inset Text
23477
23478 \begin_layout Plain Layout
23479
23480 \backslash
23481 smile
23482 \end_layout
23483
23484 \end_inset
23485 </cell>
23486 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23487 \begin_inset Text
23488
23489 \begin_layout Plain Layout
23490 \begin_inset Formula $\smile$
23491 \end_inset
23492
23493
23494 \end_layout
23495
23496 \end_inset
23497 </cell>
23498 </row>
23499 <row>
23500 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23501 \begin_inset Text
23502
23503 \begin_layout Plain Layout
23504
23505 \backslash
23506 lhd
23507 \end_layout
23508
23509 \end_inset
23510 </cell>
23511 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23512 \begin_inset Text
23513
23514 \begin_layout Plain Layout
23515 \begin_inset Formula $\lhd$
23516 \end_inset
23517
23518
23519 \end_layout
23520
23521 \end_inset
23522 </cell>
23523 </row>
23524 <row>
23525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23526 \begin_inset Text
23527
23528 \begin_layout Plain Layout
23529
23530 \backslash
23531 unlhd
23532 \end_layout
23533
23534 \end_inset
23535 </cell>
23536 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23537 \begin_inset Text
23538
23539 \begin_layout Plain Layout
23540 \begin_inset Formula $\unlhd$
23541 \end_inset
23542
23543
23544 \end_layout
23545
23546 \end_inset
23547 </cell>
23548 </row>
23549 <row>
23550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23551 \begin_inset Text
23552
23553 \begin_layout Plain Layout
23554
23555 \backslash
23556 gtrless
23557 \end_layout
23558
23559 \end_inset
23560 </cell>
23561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23562 \begin_inset Text
23563
23564 \begin_layout Plain Layout
23565 \begin_inset Formula $\gtrless$
23566 \end_inset
23567
23568
23569 \end_layout
23570
23571 \end_inset
23572 </cell>
23573 </row>
23574 <row>
23575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23576 \begin_inset Text
23577
23578 \begin_layout Plain Layout
23579
23580 \backslash
23581 mid
23582 \end_layout
23583
23584 \end_inset
23585 </cell>
23586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23587 \begin_inset Text
23588
23589 \begin_layout Plain Layout
23590 \begin_inset Formula $\mid$
23591 \end_inset
23592
23593
23594 \end_layout
23595
23596 \end_inset
23597 </cell>
23598 </row>
23599 <row>
23600 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23601 \begin_inset Text
23602
23603 \begin_layout Plain Layout
23604
23605 \backslash
23606 nmid
23607 \end_layout
23608
23609 \end_inset
23610 </cell>
23611 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23612 \begin_inset Text
23613
23614 \begin_layout Plain Layout
23615 \begin_inset Formula $\nmid$
23616 \end_inset
23617
23618
23619 \end_layout
23620
23621 \end_inset
23622 </cell>
23623 </row>
23624 </lyxtabular>
23625
23626 \end_inset
23627
23628
23629 \begin_inset space \hfill{}
23630 \end_inset
23631
23632
23633 \begin_inset Tabular
23634 <lyxtabular version="3" rows="17" columns="2">
23635 <features tabularvalignment="middle">
23636 <column alignment="center" valignment="top" width="0pt">
23637 <column alignment="center" valignment="top" width="0pt">
23638 <row>
23639 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23640 \begin_inset Text
23641
23642 \begin_layout Plain Layout
23643 Comando
23644 \end_layout
23645
23646 \end_inset
23647 </cell>
23648 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23649 \begin_inset Text
23650
23651 \begin_layout Plain Layout
23652 Relación
23653 \end_layout
23654
23655 \end_inset
23656 </cell>
23657 </row>
23658 <row>
23659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23660 \begin_inset Text
23661
23662 \begin_layout Plain Layout
23663 =
23664 \end_layout
23665
23666 \end_inset
23667 </cell>
23668 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23669 \begin_inset Text
23670
23671 \begin_layout Plain Layout
23672 \begin_inset Formula $=$
23673 \end_inset
23674
23675
23676 \end_layout
23677
23678 \end_inset
23679 </cell>
23680 </row>
23681 <row>
23682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23683 \begin_inset Text
23684
23685 \begin_layout Plain Layout
23686
23687 \backslash
23688 not=
23689 \end_layout
23690
23691 \end_inset
23692 </cell>
23693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23694 \begin_inset Text
23695
23696 \begin_layout Plain Layout
23697 \begin_inset Formula $\not=$
23698 \end_inset
23699
23700
23701 \end_layout
23702
23703 \end_inset
23704 </cell>
23705 </row>
23706 <row>
23707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23708 \begin_inset Text
23709
23710 \begin_layout Plain Layout
23711
23712 \backslash
23713 equiv
23714 \end_layout
23715
23716 \end_inset
23717 </cell>
23718 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23719 \begin_inset Text
23720
23721 \begin_layout Plain Layout
23722 \begin_inset Formula $\equiv$
23723 \end_inset
23724
23725
23726 \end_layout
23727
23728 \end_inset
23729 </cell>
23730 </row>
23731 <row>
23732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23733 \begin_inset Text
23734
23735 \begin_layout Plain Layout
23736
23737 \backslash
23738 sim
23739 \end_layout
23740
23741 \end_inset
23742 </cell>
23743 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23744 \begin_inset Text
23745
23746 \begin_layout Plain Layout
23747 \begin_inset Formula $\sim$
23748 \end_inset
23749
23750
23751 \end_layout
23752
23753 \end_inset
23754 </cell>
23755 </row>
23756 <row>
23757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23758 \begin_inset Text
23759
23760 \begin_layout Plain Layout
23761
23762 \backslash
23763 simeq
23764 \end_layout
23765
23766 \end_inset
23767 </cell>
23768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23769 \begin_inset Text
23770
23771 \begin_layout Plain Layout
23772 \begin_inset Formula $\simeq$
23773 \end_inset
23774
23775
23776 \end_layout
23777
23778 \end_inset
23779 </cell>
23780 </row>
23781 <row>
23782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23783 \begin_inset Text
23784
23785 \begin_layout Plain Layout
23786
23787 \backslash
23788 approx
23789 \end_layout
23790
23791 \end_inset
23792 </cell>
23793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23794 \begin_inset Text
23795
23796 \begin_layout Plain Layout
23797 \begin_inset Formula $\approx$
23798 \end_inset
23799
23800
23801 \end_layout
23802
23803 \end_inset
23804 </cell>
23805 </row>
23806 <row>
23807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23808 \begin_inset Text
23809
23810 \begin_layout Plain Layout
23811
23812 \backslash
23813 cong
23814 \end_layout
23815
23816 \end_inset
23817 </cell>
23818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23819 \begin_inset Text
23820
23821 \begin_layout Plain Layout
23822 \begin_inset Formula $\cong$
23823 \end_inset
23824
23825
23826 \end_layout
23827
23828 \end_inset
23829 </cell>
23830 </row>
23831 <row>
23832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23833 \begin_inset Text
23834
23835 \begin_layout Plain Layout
23836
23837 \backslash
23838 bowtie
23839 \end_layout
23840
23841 \end_inset
23842 </cell>
23843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23844 \begin_inset Text
23845
23846 \begin_layout Plain Layout
23847 \begin_inset Formula $\bowtie$
23848 \end_inset
23849
23850
23851 \end_layout
23852
23853 \end_inset
23854 </cell>
23855 </row>
23856 <row>
23857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23858 \begin_inset Text
23859
23860 \begin_layout Plain Layout
23861
23862 \backslash
23863 notin
23864 \end_layout
23865
23866 \end_inset
23867 </cell>
23868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23869 \begin_inset Text
23870
23871 \begin_layout Plain Layout
23872 \begin_inset Formula $\notin$
23873 \end_inset
23874
23875
23876 \end_layout
23877
23878 \end_inset
23879 </cell>
23880 </row>
23881 <row>
23882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23883 \begin_inset Text
23884
23885 \begin_layout Plain Layout
23886
23887 \backslash
23888 perp
23889 \end_layout
23890
23891 \end_inset
23892 </cell>
23893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23894 \begin_inset Text
23895
23896 \begin_layout Plain Layout
23897 \begin_inset Formula $\perp$
23898 \end_inset
23899
23900
23901 \end_layout
23902
23903 \end_inset
23904 </cell>
23905 </row>
23906 <row>
23907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23908 \begin_inset Text
23909
23910 \begin_layout Plain Layout
23911
23912 \backslash
23913 propto
23914 \end_layout
23915
23916 \end_inset
23917 </cell>
23918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23919 \begin_inset Text
23920
23921 \begin_layout Plain Layout
23922 \begin_inset Formula $\propto$
23923 \end_inset
23924
23925
23926 \end_layout
23927
23928 \end_inset
23929 </cell>
23930 </row>
23931 <row>
23932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23933 \begin_inset Text
23934
23935 \begin_layout Plain Layout
23936
23937 \backslash
23938 asymp
23939 \end_layout
23940
23941 \end_inset
23942 </cell>
23943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23944 \begin_inset Text
23945
23946 \begin_layout Plain Layout
23947 \begin_inset Formula $\asymp$
23948 \end_inset
23949
23950
23951 \end_layout
23952
23953 \end_inset
23954 </cell>
23955 </row>
23956 <row>
23957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23958 \begin_inset Text
23959
23960 \begin_layout Plain Layout
23961
23962 \backslash
23963 doteq
23964 \end_layout
23965
23966 \end_inset
23967 </cell>
23968 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23969 \begin_inset Text
23970
23971 \begin_layout Plain Layout
23972 \begin_inset Formula $\doteq$
23973 \end_inset
23974
23975
23976 \end_layout
23977
23978 \end_inset
23979 </cell>
23980 </row>
23981 <row>
23982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23983 \begin_inset Text
23984
23985 \begin_layout Plain Layout
23986
23987 \backslash
23988 circeq
23989 \end_layout
23990
23991 \end_inset
23992 </cell>
23993 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23994 \begin_inset Text
23995
23996 \begin_layout Plain Layout
23997 \begin_inset Formula $\circeq$
23998 \end_inset
23999
24000
24001 \end_layout
24002
24003 \end_inset
24004 </cell>
24005 </row>
24006 <row>
24007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24008 \begin_inset Text
24009
24010 \begin_layout Plain Layout
24011
24012 \backslash
24013 models
24014 \end_layout
24015
24016 \end_inset
24017 </cell>
24018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24019 \begin_inset Text
24020
24021 \begin_layout Plain Layout
24022 \begin_inset Formula $\models$
24023 \end_inset
24024
24025
24026 \end_layout
24027
24028 \end_inset
24029 </cell>
24030 </row>
24031 <row>
24032 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24033 \begin_inset Text
24034
24035 \begin_layout Plain Layout
24036
24037 \backslash
24038 widehat=
24039 \end_layout
24040
24041 \end_inset
24042 </cell>
24043 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24044 \begin_inset Text
24045
24046 \begin_layout Plain Layout
24047 \begin_inset Formula $\widehat{=}$
24048 \end_inset
24049
24050
24051 \end_layout
24052
24053 \end_inset
24054 </cell>
24055 </row>
24056 </lyxtabular>
24057
24058 \end_inset
24059
24060
24061 \begin_inset space \hfill{}
24062 \end_inset
24063
24064
24065 \begin_inset Tabular
24066 <lyxtabular version="3" rows="17" columns="2">
24067 <features tabularvalignment="middle">
24068 <column alignment="center" valignment="top" width="0pt">
24069 <column alignment="center" valignment="top" width="0pt">
24070 <row>
24071 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24072 \begin_inset Text
24073
24074 \begin_layout Plain Layout
24075 Comando
24076 \end_layout
24077
24078 \end_inset
24079 </cell>
24080 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24081 \begin_inset Text
24082
24083 \begin_layout Plain Layout
24084 Relación
24085 \end_layout
24086
24087 \end_inset
24088 </cell>
24089 </row>
24090 <row>
24091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24092 \begin_inset Text
24093
24094 \begin_layout Plain Layout
24095 >
24096 \end_layout
24097
24098 \end_inset
24099 </cell>
24100 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24101 \begin_inset Text
24102
24103 \begin_layout Plain Layout
24104 \begin_inset Formula $>$
24105 \end_inset
24106
24107
24108 \end_layout
24109
24110 \end_inset
24111 </cell>
24112 </row>
24113 <row>
24114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24115 \begin_inset Text
24116
24117 \begin_layout Plain Layout
24118
24119 \backslash
24120 ge
24121 \end_layout
24122
24123 \end_inset
24124 </cell>
24125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24126 \begin_inset Text
24127
24128 \begin_layout Plain Layout
24129 \begin_inset Formula $\ge$
24130 \end_inset
24131
24132
24133 \end_layout
24134
24135 \end_inset
24136 </cell>
24137 </row>
24138 <row>
24139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24140 \begin_inset Text
24141
24142 \begin_layout Plain Layout
24143
24144 \backslash
24145 gg
24146 \end_layout
24147
24148 \end_inset
24149 </cell>
24150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24151 \begin_inset Text
24152
24153 \begin_layout Plain Layout
24154 \begin_inset Formula $\gg$
24155 \end_inset
24156
24157
24158 \end_layout
24159
24160 \end_inset
24161 </cell>
24162 </row>
24163 <row>
24164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24165 \begin_inset Text
24166
24167 \begin_layout Plain Layout
24168
24169 \backslash
24170 succ
24171 \end_layout
24172
24173 \end_inset
24174 </cell>
24175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24176 \begin_inset Text
24177
24178 \begin_layout Plain Layout
24179 \begin_inset Formula $\succ$
24180 \end_inset
24181
24182
24183 \end_layout
24184
24185 \end_inset
24186 </cell>
24187 </row>
24188 <row>
24189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24190 \begin_inset Text
24191
24192 \begin_layout Plain Layout
24193
24194 \backslash
24195 succeq
24196 \end_layout
24197
24198 \end_inset
24199 </cell>
24200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24201 \begin_inset Text
24202
24203 \begin_layout Plain Layout
24204 \begin_inset Formula $\succeq$
24205 \end_inset
24206
24207
24208 \end_layout
24209
24210 \end_inset
24211 </cell>
24212 </row>
24213 <row>
24214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24215 \begin_inset Text
24216
24217 \begin_layout Plain Layout
24218
24219 \backslash
24220 supset
24221 \end_layout
24222
24223 \end_inset
24224 </cell>
24225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24226 \begin_inset Text
24227
24228 \begin_layout Plain Layout
24229 \begin_inset Formula $\supset$
24230 \end_inset
24231
24232
24233 \end_layout
24234
24235 \end_inset
24236 </cell>
24237 </row>
24238 <row>
24239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24240 \begin_inset Text
24241
24242 \begin_layout Plain Layout
24243
24244 \backslash
24245 supseteq
24246 \end_layout
24247
24248 \end_inset
24249 </cell>
24250 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24251 \begin_inset Text
24252
24253 \begin_layout Plain Layout
24254 \begin_inset Formula $\supseteq$
24255 \end_inset
24256
24257
24258 \end_layout
24259
24260 \end_inset
24261 </cell>
24262 </row>
24263 <row>
24264 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24265 \begin_inset Text
24266
24267 \begin_layout Plain Layout
24268
24269 \backslash
24270 sqsupseteq
24271 \end_layout
24272
24273 \end_inset
24274 </cell>
24275 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24276 \begin_inset Text
24277
24278 \begin_layout Plain Layout
24279 \begin_inset Formula $\sqsupseteq$
24280 \end_inset
24281
24282
24283 \end_layout
24284
24285 \end_inset
24286 </cell>
24287 </row>
24288 <row>
24289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24290 \begin_inset Text
24291
24292 \begin_layout Plain Layout
24293
24294 \backslash
24295 ni
24296 \end_layout
24297
24298 \end_inset
24299 </cell>
24300 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24301 \begin_inset Text
24302
24303 \begin_layout Plain Layout
24304 \begin_inset Formula $\ni$
24305 \end_inset
24306
24307
24308 \end_layout
24309
24310 \end_inset
24311 </cell>
24312 </row>
24313 <row>
24314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24315 \begin_inset Text
24316
24317 \begin_layout Plain Layout
24318
24319 \backslash
24320 dashv
24321 \end_layout
24322
24323 \end_inset
24324 </cell>
24325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24326 \begin_inset Text
24327
24328 \begin_layout Plain Layout
24329 \begin_inset Formula $\dashv$
24330 \end_inset
24331
24332
24333 \end_layout
24334
24335 \end_inset
24336 </cell>
24337 </row>
24338 <row>
24339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24340 \begin_inset Text
24341
24342 \begin_layout Plain Layout
24343
24344 \backslash
24345 frown
24346 \end_layout
24347
24348 \end_inset
24349 </cell>
24350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24351 \begin_inset Text
24352
24353 \begin_layout Plain Layout
24354 \begin_inset Formula $\frown$
24355 \end_inset
24356
24357
24358 \end_layout
24359
24360 \end_inset
24361 </cell>
24362 </row>
24363 <row>
24364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24365 \begin_inset Text
24366
24367 \begin_layout Plain Layout
24368
24369 \backslash
24370 rhd
24371 \end_layout
24372
24373 \end_inset
24374 </cell>
24375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24376 \begin_inset Text
24377
24378 \begin_layout Plain Layout
24379 \begin_inset Formula $\rhd$
24380 \end_inset
24381
24382
24383 \end_layout
24384
24385 \end_inset
24386 </cell>
24387 </row>
24388 <row>
24389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24390 \begin_inset Text
24391
24392 \begin_layout Plain Layout
24393
24394 \backslash
24395 unrhd
24396 \end_layout
24397
24398 \end_inset
24399 </cell>
24400 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24401 \begin_inset Text
24402
24403 \begin_layout Plain Layout
24404 \begin_inset Formula $\unrhd$
24405 \end_inset
24406
24407
24408 \end_layout
24409
24410 \end_inset
24411 </cell>
24412 </row>
24413 <row>
24414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24415 \begin_inset Text
24416
24417 \begin_layout Plain Layout
24418
24419 \backslash
24420 lessgtr
24421 \end_layout
24422
24423 \end_inset
24424 </cell>
24425 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24426 \begin_inset Text
24427
24428 \begin_layout Plain Layout
24429 \begin_inset Formula $\lessgtr$
24430 \end_inset
24431
24432
24433 \end_layout
24434
24435 \end_inset
24436 </cell>
24437 </row>
24438 <row>
24439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24440 \begin_inset Text
24441
24442 \begin_layout Plain Layout
24443
24444 \backslash
24445 parallel
24446 \end_layout
24447
24448 \end_inset
24449 </cell>
24450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24451 \begin_inset Text
24452
24453 \begin_layout Plain Layout
24454 \begin_inset Formula $\parallel$
24455 \end_inset
24456
24457
24458 \end_layout
24459
24460 \end_inset
24461 </cell>
24462 </row>
24463 <row>
24464 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24465 \begin_inset Text
24466
24467 \begin_layout Plain Layout
24468
24469 \backslash
24470 nparallel
24471 \end_layout
24472
24473 \end_inset
24474 </cell>
24475 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24476 \begin_inset Text
24477
24478 \begin_layout Plain Layout
24479 \begin_inset Formula $\nparallel$
24480 \end_inset
24481
24482
24483 \end_layout
24484
24485 \end_inset
24486 </cell>
24487 </row>
24488 </lyxtabular>
24489
24490 \end_inset
24491
24492
24493 \begin_inset space \hfill{}
24494 \end_inset
24495
24496
24497 \end_layout
24498
24499 \begin_layout Standard
24500 \begin_inset VSpace medskip
24501 \end_inset
24502
24503
24504 \end_layout
24505
24506 \begin_layout Standard
24507 Los caracteres 
24508 \series bold
24509
24510 \backslash
24511 lhd
24512 \series default
24513  y 
24514 \series bold
24515
24516 \backslash
24517 rhd
24518 \series default
24519  son mayores que los operadores de aspecto similar 
24520 \series bold
24521
24522 \backslash
24523 triangleleft
24524 \series default
24525  y 
24526 \series bold
24527
24528 \backslash
24529 triangleright
24530 \series default
24531 , respectivamente.
24532 \end_layout
24533
24534 \begin_layout Standard
24535 Las relaciones, a diferencia de los símbolos, siempre se rodean de espacios.
24536 \end_layout
24537
24538 \begin_layout Standard
24539 Se pueden componer relaciones con etiquetas con el comando 
24540 \series bold
24541
24542 \backslash
24543 stackrel
24544 \series default
24545
24546 \begin_inset Index idx
24547 status collapsed
24548
24549 \begin_layout Plain Layout
24550 Comandos ! S ! 
24551 \backslash
24552 stackrel
24553 \end_layout
24554
24555 \end_inset
24556
24557 :
24558 \end_layout
24559
24560 \begin_layout Standard
24561 \align center
24562 \begin_inset Tabular
24563 <lyxtabular version="3" rows="2" columns="2">
24564 <features tabularvalignment="middle">
24565 <column alignment="center" valignment="top" width="0">
24566 <column alignment="center" valignment="top" width="0">
24567 <row>
24568 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24569 \begin_inset Text
24570
24571 \begin_layout Plain Layout
24572 Comando
24573 \end_layout
24574
24575 \end_inset
24576 </cell>
24577 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24578 \begin_inset Text
24579
24580 \begin_layout Plain Layout
24581 Resultado
24582 \begin_inset Note Note
24583 status collapsed
24584
24585 \begin_layout Plain Layout
24586
24587 \series bold
24588
24589 \backslash
24590 raisebox
24591 \series default
24592  se usa sólo como espaciador
24593 \end_layout
24594
24595 \end_inset
24596
24597
24598 \end_layout
24599
24600 \end_inset
24601 </cell>
24602 </row>
24603 <row>
24604 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24605 \begin_inset Text
24606
24607 \begin_layout Plain Layout
24608 A(r)
24609 \backslash
24610 stackrel
24611 \begin_inset ERT
24612 status collapsed
24613
24614 \begin_layout Plain Layout
24615
24616
24617 \backslash
24618 spce 
24619 \end_layout
24620
24621 \end_inset
24622
24623 r
24624 \backslash
24625 to
24626 \backslash
24627 infty
24628 \begin_inset ERT
24629 status collapsed
24630
24631 \begin_layout Plain Layout
24632
24633
24634 \backslash
24635 spce 
24636 \end_layout
24637
24638 \end_inset
24639
24640
24641 \begin_inset Formula $\downarrow$
24642 \end_inset
24643
24644
24645 \backslash
24646 approx
24647 \begin_inset ERT
24648 status collapsed
24649
24650 \begin_layout Plain Layout
24651
24652
24653 \backslash
24654 spce 
24655 \end_layout
24656
24657 \end_inset
24658
24659
24660 \begin_inset ERT
24661 status collapsed
24662
24663 \begin_layout Plain Layout
24664
24665
24666 \backslash
24667 spce 
24668 \end_layout
24669
24670 \end_inset
24671
24672 B
24673 \end_layout
24674
24675 \end_inset
24676 </cell>
24677 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24678 \begin_inset Text
24679
24680 \begin_layout Plain Layout
24681 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24682 \end_inset
24683
24684
24685 \end_layout
24686
24687 \end_inset
24688 </cell>
24689 </row>
24690 </lyxtabular>
24691
24692 \end_inset
24693
24694
24695 \end_layout
24696
24697 \begin_layout Section
24698 Funciones
24699 \end_layout
24700
24701 \begin_layout Subsection
24702 Funciones predefinidas
24703 \begin_inset CommandInset label
24704 LatexCommand label
24705 name "sub:Funciones-predefinidas"
24706
24707 \end_inset
24708
24709
24710 \begin_inset Index idx
24711 status collapsed
24712
24713 \begin_layout Plain Layout
24714 Funciones ! predefinidas
24715 \end_layout
24716
24717 \end_inset
24718
24719
24720 \begin_inset Index idx
24721 status collapsed
24722
24723 \begin_layout Plain Layout
24724 Funciones ! en español
24725 \end_layout
24726
24727 \end_inset
24728
24729
24730 \end_layout
24731
24732 \begin_layout Standard
24733 En general las variables se escriben en 
24734 \emph on
24735 cursiva
24736 \emph default
24737  en expresiones matemáticas, pero no los nombres de las funciones, porque
24738  
24739 \begin_inset Formula $sen$
24740 \end_inset
24741
24742  podría confundirse con 
24743 \begin_inset Formula $s\cdot e\cdot n$
24744 \end_inset
24745
24746 .
24747  Por eso hay funciones predefinidas, que además se separan un poco del factor
24748  precedente.
24749  Se insertan como comandos con una barra inversa delante de su nombre.
24750 \end_layout
24751
24752 \begin_layout Standard
24753 \align center
24754 \begin_inset Tabular
24755 <lyxtabular version="3" rows="2" columns="4">
24756 <features tabularvalignment="middle">
24757 <column alignment="center" valignment="top" width="0pt">
24758 <column alignment="center" valignment="top" width="0pt">
24759 <column alignment="center" valignment="top" width="0pt">
24760 <column alignment="center" valignment="top" width="0pt">
24761 <row>
24762 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24763 \begin_inset Text
24764
24765 \begin_layout Plain Layout
24766 Comando
24767 \end_layout
24768
24769 \end_inset
24770 </cell>
24771 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24772 \begin_inset Text
24773
24774 \begin_layout Plain Layout
24775 Resultado
24776 \end_layout
24777
24778 \end_inset
24779 </cell>
24780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24781 \begin_inset Text
24782
24783 \begin_layout Plain Layout
24784 Comando
24785 \end_layout
24786
24787 \end_inset
24788 </cell>
24789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24790 \begin_inset Text
24791
24792 \begin_layout Plain Layout
24793 Resultado
24794 \end_layout
24795
24796 \end_inset
24797 </cell>
24798 </row>
24799 <row>
24800 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24801 \begin_inset Text
24802
24803 \begin_layout Plain Layout
24804 Asen(x)+B
24805 \end_layout
24806
24807 \end_inset
24808 </cell>
24809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24810 \begin_inset Text
24811
24812 \begin_layout Plain Layout
24813 \begin_inset Formula $Asen(x)+B$
24814 \end_inset
24815
24816
24817 \end_layout
24818
24819 \end_inset
24820 </cell>
24821 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24822 \begin_inset Text
24823
24824 \begin_layout Plain Layout
24825 A
24826 \backslash
24827 sen(x)+B
24828 \end_layout
24829
24830 \end_inset
24831 </cell>
24832 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24833 \begin_inset Text
24834
24835 \begin_layout Plain Layout
24836 \begin_inset Formula $A\sen(x)+B$
24837 \end_inset
24838
24839
24840 \end_layout
24841
24842 \end_inset
24843 </cell>
24844 </row>
24845 </lyxtabular>
24846
24847 \end_inset
24848
24849
24850 \end_layout
24851
24852 \begin_layout Standard
24853 Las funciones siguientes están predefinidas:
24854 \begin_inset Foot
24855 status collapsed
24856
24857 \begin_layout Plain Layout
24858 Se han añadido los comandos equivalentes proporcionados por el estilo 
24859 \series bold
24860 spanish
24861 \series default
24862  de 
24863 \series bold
24864 babel
24865 \series default
24866 .
24867  (Estos no están disponibles en el panel de funciones).
24868  Además, en su caso, las funciones serán acentuadas automáticamente en la
24869  salida, p.
24870 \begin_inset space \thinspace{}
24871 \end_inset
24872
24873 e.
24874  
24875 \begin_inset Quotes fld
24876 \end_inset
24877
24878 lím
24879 \begin_inset Quotes frd
24880 \end_inset
24881
24882  o 
24883 \begin_inset Quotes fld
24884 \end_inset
24885
24886 máx
24887 \begin_inset Quotes frd
24888 \end_inset
24889
24890 .
24891  Más información en 
24892 \begin_inset CommandInset citation
24893 LatexCommand cite
24894 key "spanish"
24895
24896 \end_inset
24897
24898 .
24899  (
24900 \emph on
24901 N.
24902 \begin_inset space \thinspace{}
24903 \end_inset
24904
24905 del t.
24906 \emph default
24907 )
24908 \end_layout
24909
24910 \end_inset
24911
24912
24913 \end_layout
24914
24915 \begin_layout Standard
24916 \begin_inset VSpace -2mm
24917 \end_inset
24918
24919
24920 \end_layout
24921
24922 \begin_layout Standard
24923 \align center
24924 \begin_inset Tabular
24925 <lyxtabular version="3" rows="9" columns="7">
24926 <features tabularvalignment="middle">
24927 <column alignment="center" valignment="top" width="0pt">
24928 <column alignment="center" valignment="top" width="0pt">
24929 <column alignment="center" valignment="top" width="0pt">
24930 <column alignment="center" valignment="top" width="0pt">
24931 <column alignment="center" valignment="top" width="0pt">
24932 <column alignment="center" valignment="top" width="0pt">
24933 <column alignment="center" valignment="top" width="0pt">
24934 <row>
24935 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24936 \begin_inset Text
24937
24938 \begin_layout Plain Layout
24939 Comando
24940 \end_layout
24941
24942 \end_inset
24943 </cell>
24944 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24945 \begin_inset Text
24946
24947 \begin_layout Plain Layout
24948 español
24949 \end_layout
24950
24951 \end_inset
24952 </cell>
24953 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24954 \begin_inset Text
24955
24956 \begin_layout Plain Layout
24957 Comando
24958 \end_layout
24959
24960 \end_inset
24961 </cell>
24962 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24963 \begin_inset Text
24964
24965 \begin_layout Plain Layout
24966 español
24967 \end_layout
24968
24969 \end_inset
24970 </cell>
24971 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24972 \begin_inset Text
24973
24974 \begin_layout Plain Layout
24975 Comando
24976 \end_layout
24977
24978 \end_inset
24979 </cell>
24980 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24981 \begin_inset Text
24982
24983 \begin_layout Plain Layout
24984 español
24985 \end_layout
24986
24987 \end_inset
24988 </cell>
24989 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24990 \begin_inset Text
24991
24992 \begin_layout Plain Layout
24993 Comando
24994 \end_layout
24995
24996 \end_inset
24997 </cell>
24998 </row>
24999 <row>
25000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25001 \begin_inset Text
25002
25003 \begin_layout Plain Layout
25004
25005 \backslash
25006 sin
25007 \end_layout
25008
25009 \end_inset
25010 </cell>
25011 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25012 \begin_inset Text
25013
25014 \begin_layout Plain Layout
25015
25016 \backslash
25017 sen
25018 \end_layout
25019
25020 \end_inset
25021 </cell>
25022 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25023 \begin_inset Text
25024
25025 \begin_layout Plain Layout
25026
25027 \backslash
25028 sinh
25029 \end_layout
25030
25031 \end_inset
25032 </cell>
25033 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25034 \begin_inset Text
25035
25036 \begin_layout Plain Layout
25037
25038 \backslash
25039 senh
25040 \end_layout
25041
25042 \end_inset
25043 </cell>
25044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25045 \begin_inset Text
25046
25047 \begin_layout Plain Layout
25048
25049 \backslash
25050 arcsin
25051 \end_layout
25052
25053 \end_inset
25054 </cell>
25055 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25056 \begin_inset Text
25057
25058 \begin_layout Plain Layout
25059
25060 \backslash
25061 arcsen
25062 \end_layout
25063
25064 \end_inset
25065 </cell>
25066 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25067 \begin_inset Text
25068
25069 \begin_layout Plain Layout
25070
25071 \backslash
25072 sup
25073 \end_layout
25074
25075 \end_inset
25076 </cell>
25077 </row>
25078 <row>
25079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25080 \begin_inset Text
25081
25082 \begin_layout Plain Layout
25083
25084 \backslash
25085 cos
25086 \end_layout
25087
25088 \end_inset
25089 </cell>
25090 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25091 \begin_inset Text
25092
25093 \begin_layout Plain Layout
25094
25095 \end_layout
25096
25097 \end_inset
25098 </cell>
25099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25100 \begin_inset Text
25101
25102 \begin_layout Plain Layout
25103
25104 \backslash
25105 cosh
25106 \end_layout
25107
25108 \end_inset
25109 </cell>
25110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25111 \begin_inset Text
25112
25113 \begin_layout Plain Layout
25114
25115 \end_layout
25116
25117 \end_inset
25118 </cell>
25119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25120 \begin_inset Text
25121
25122 \begin_layout Plain Layout
25123
25124 \backslash
25125 arccos
25126 \end_layout
25127
25128 \end_inset
25129 </cell>
25130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25131 \begin_inset Text
25132
25133 \begin_layout Plain Layout
25134
25135 \end_layout
25136
25137 \end_inset
25138 </cell>
25139 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25140 \begin_inset Text
25141
25142 \begin_layout Plain Layout
25143
25144 \backslash
25145 inf
25146 \end_layout
25147
25148 \end_inset
25149 </cell>
25150 </row>
25151 <row>
25152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25153 \begin_inset Text
25154
25155 \begin_layout Plain Layout
25156
25157 \backslash
25158 tan
25159 \end_layout
25160
25161 \end_inset
25162 </cell>
25163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25164 \begin_inset Text
25165
25166 \begin_layout Plain Layout
25167
25168 \backslash
25169 tg
25170 \end_layout
25171
25172 \end_inset
25173 </cell>
25174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25175 \begin_inset Text
25176
25177 \begin_layout Plain Layout
25178
25179 \backslash
25180 tanh
25181 \end_layout
25182
25183 \end_inset
25184 </cell>
25185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25186 \begin_inset Text
25187
25188 \begin_layout Plain Layout
25189
25190 \backslash
25191 tgh
25192 \end_layout
25193
25194 \end_inset
25195 </cell>
25196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25197 \begin_inset Text
25198
25199 \begin_layout Plain Layout
25200
25201 \backslash
25202 arctan
25203 \end_layout
25204
25205 \end_inset
25206 </cell>
25207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25208 \begin_inset Text
25209
25210 \begin_layout Plain Layout
25211
25212 \backslash
25213 arctg
25214 \end_layout
25215
25216 \end_inset
25217 </cell>
25218 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25219 \begin_inset Text
25220
25221 \begin_layout Plain Layout
25222
25223 \backslash
25224 lim
25225 \end_layout
25226
25227 \end_inset
25228 </cell>
25229 </row>
25230 <row>
25231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25232 \begin_inset Text
25233
25234 \begin_layout Plain Layout
25235
25236 \backslash
25237 cot
25238 \end_layout
25239
25240 \end_inset
25241 </cell>
25242 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25243 \begin_inset Text
25244
25245 \begin_layout Plain Layout
25246
25247 \backslash
25248 cotg
25249 \end_layout
25250
25251 \end_inset
25252 </cell>
25253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25254 \begin_inset Text
25255
25256 \begin_layout Plain Layout
25257
25258 \backslash
25259 coth
25260 \end_layout
25261
25262 \end_inset
25263 </cell>
25264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25265 \begin_inset Text
25266
25267 \begin_layout Plain Layout
25268
25269 \end_layout
25270
25271 \end_inset
25272 </cell>
25273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25274 \begin_inset Text
25275
25276 \begin_layout Plain Layout
25277
25278 \backslash
25279 arg
25280 \end_layout
25281
25282 \end_inset
25283 </cell>
25284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25285 \begin_inset Text
25286
25287 \begin_layout Plain Layout
25288
25289 \end_layout
25290
25291 \end_inset
25292 </cell>
25293 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25294 \begin_inset Text
25295
25296 \begin_layout Plain Layout
25297
25298 \backslash
25299 liminf
25300 \end_layout
25301
25302 \end_inset
25303 </cell>
25304 </row>
25305 <row>
25306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25307 \begin_inset Text
25308
25309 \begin_layout Plain Layout
25310
25311 \backslash
25312 sec
25313 \end_layout
25314
25315 \end_inset
25316 </cell>
25317 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25318 \begin_inset Text
25319
25320 \begin_layout Plain Layout
25321
25322 \end_layout
25323
25324 \end_inset
25325 </cell>
25326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25327 \begin_inset Text
25328
25329 \begin_layout Plain Layout
25330
25331 \backslash
25332 min
25333 \end_layout
25334
25335 \end_inset
25336 </cell>
25337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25338 \begin_inset Text
25339
25340 \begin_layout Plain Layout
25341
25342 \end_layout
25343
25344 \end_inset
25345 </cell>
25346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25347 \begin_inset Text
25348
25349 \begin_layout Plain Layout
25350
25351 \backslash
25352 deg
25353 \end_layout
25354
25355 \end_inset
25356 </cell>
25357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25358 \begin_inset Text
25359
25360 \begin_layout Plain Layout
25361
25362 \end_layout
25363
25364 \end_inset
25365 </cell>
25366 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25367 \begin_inset Text
25368
25369 \begin_layout Plain Layout
25370
25371 \backslash
25372 limsup
25373 \end_layout
25374
25375 \end_inset
25376 </cell>
25377 </row>
25378 <row>
25379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25380 \begin_inset Text
25381
25382 \begin_layout Plain Layout
25383
25384 \backslash
25385 csc
25386 \end_layout
25387
25388 \end_inset
25389 </cell>
25390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25391 \begin_inset Text
25392
25393 \begin_layout Plain Layout
25394
25395 \backslash
25396 cosec
25397 \end_layout
25398
25399 \end_inset
25400 </cell>
25401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25402 \begin_inset Text
25403
25404 \begin_layout Plain Layout
25405
25406 \backslash
25407 max
25408 \end_layout
25409
25410 \end_inset
25411 </cell>
25412 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25413 \begin_inset Text
25414
25415 \begin_layout Plain Layout
25416
25417 \end_layout
25418
25419 \end_inset
25420 </cell>
25421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25422 \begin_inset Text
25423
25424 \begin_layout Plain Layout
25425
25426 \backslash
25427 det
25428 \end_layout
25429
25430 \end_inset
25431 </cell>
25432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25433 \begin_inset Text
25434
25435 \begin_layout Plain Layout
25436
25437 \end_layout
25438
25439 \end_inset
25440 </cell>
25441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25442 \begin_inset Text
25443
25444 \begin_layout Plain Layout
25445
25446 \backslash
25447 Pr
25448 \end_layout
25449
25450 \end_inset
25451 </cell>
25452 </row>
25453 <row>
25454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25455 \begin_inset Text
25456
25457 \begin_layout Plain Layout
25458
25459 \backslash
25460 ln
25461 \end_layout
25462
25463 \end_inset
25464 </cell>
25465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25466 \begin_inset Text
25467
25468 \begin_layout Plain Layout
25469
25470 \end_layout
25471
25472 \end_inset
25473 </cell>
25474 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25475 \begin_inset Text
25476
25477 \begin_layout Plain Layout
25478
25479 \backslash
25480 exp
25481 \end_layout
25482
25483 \end_inset
25484 </cell>
25485 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25486 \begin_inset Text
25487
25488 \begin_layout Plain Layout
25489
25490 \end_layout
25491
25492 \end_inset
25493 </cell>
25494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25495 \begin_inset Text
25496
25497 \begin_layout Plain Layout
25498
25499 \backslash
25500 dim
25501 \end_layout
25502
25503 \end_inset
25504 </cell>
25505 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25506 \begin_inset Text
25507
25508 \begin_layout Plain Layout
25509
25510 \end_layout
25511
25512 \end_inset
25513 </cell>
25514 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25515 \begin_inset Text
25516
25517 \begin_layout Plain Layout
25518
25519 \backslash
25520 hom
25521 \end_layout
25522
25523 \end_inset
25524 </cell>
25525 </row>
25526 <row>
25527 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25528 \begin_inset Text
25529
25530 \begin_layout Plain Layout
25531
25532 \backslash
25533 lg
25534 \end_layout
25535
25536 \end_inset
25537 </cell>
25538 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25539 \begin_inset Text
25540
25541 \begin_layout Plain Layout
25542
25543 \end_layout
25544
25545 \end_inset
25546 </cell>
25547 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25548 \begin_inset Text
25549
25550 \begin_layout Plain Layout
25551
25552 \backslash
25553 log
25554 \end_layout
25555
25556 \end_inset
25557 </cell>
25558 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25559 \begin_inset Text
25560
25561 \begin_layout Plain Layout
25562
25563 \end_layout
25564
25565 \end_inset
25566 </cell>
25567 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25568 \begin_inset Text
25569
25570 \begin_layout Plain Layout
25571
25572 \backslash
25573 ker
25574 \end_layout
25575
25576 \end_inset
25577 </cell>
25578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25579 \begin_inset Text
25580
25581 \begin_layout Plain Layout
25582
25583 \end_layout
25584
25585 \end_inset
25586 </cell>
25587 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25588 \begin_inset Text
25589
25590 \begin_layout Plain Layout
25591
25592 \backslash
25593 gcd
25594 \end_layout
25595
25596 \end_inset
25597 </cell>
25598 </row>
25599 </lyxtabular>
25600
25601 \end_inset
25602
25603
25604 \end_layout
25605
25606 \begin_layout Standard
25607 También se pueden insertar con el botón 
25608 \begin_inset Graphics
25609         filename ../../images/math/functions.png
25610         scale 85
25611
25612 \end_inset
25613
25614  de la barra de ecuaciones.
25615 \end_layout
25616
25617 \begin_layout Subsection
25618 Funciones definidas por el usuario
25619 \begin_inset Index idx
25620 status collapsed
25621
25622 \begin_layout Plain Layout
25623 Funciones ! personalizadas
25624 \end_layout
25625
25626 \end_inset
25627
25628
25629 \end_layout
25630
25631 \begin_layout Standard
25632 Para usar una función no predefinida, como por ejemplo la función signo,
25633  sgn(x), hay dos posibilidades:
25634 \end_layout
25635
25636 \begin_layout Itemize
25637 Define la función añadiendo al preámbulo LaTeX la línea
25638 \begin_inset Foot
25639 status collapsed
25640
25641 \begin_layout Plain Layout
25642 Más sobre 
25643 \series bold
25644
25645 \backslash
25646 DeclareMathOperator
25647 \series default
25648  en 
25649 \begin_inset CommandInset ref
25650 LatexCommand ref
25651 reference "sub:Operadores-de-usuario"
25652
25653 \end_inset
25654
25655
25656 \end_layout
25657
25658 \end_inset
25659
25660
25661 \begin_inset Newline newline
25662 \end_inset
25663
25664
25665 \begin_inset VSpace -3mm
25666 \end_inset
25667
25668
25669 \begin_inset Newline newline
25670 \end_inset
25671
25672
25673 \series bold
25674
25675 \backslash
25676 DeclareMathOperator{
25677 \backslash
25678 sgn}{sgn}
25679 \series default
25680
25681 \begin_inset Index idx
25682 status collapsed
25683
25684 \begin_layout Plain Layout
25685 Comandos ! D ! 
25686 \backslash
25687 dbinom@
25688 \backslash
25689 DeclareMathOperator
25690 \end_layout
25691
25692 \end_inset
25693
25694
25695 \begin_inset Newline newline
25696 \end_inset
25697
25698
25699 \begin_inset VSpace -2mm
25700 \end_inset
25701
25702
25703 \begin_inset Newline newline
25704 \end_inset
25705
25706 Ahora la función recién definida se puede obtener con el comando 
25707 \series bold
25708
25709 \backslash
25710 sgn
25711 \series default
25712 .
25713 \end_layout
25714
25715 \begin_layout Itemize
25716 Escribe la ecuación de la forma habitual, marca el nombre de la ecuación,
25717  en nuestro ejemplo las letras 
25718 \emph on
25719 sgn
25720 \emph default
25721 , y cámbialo a texto matemático.
25722  Entre el factor precedente y la función se inserta un espacio.
25723 \end_layout
25724
25725 \begin_layout Standard
25726 El resultado con ambos métodos es el mismo que con una función predefinida:
25727 \begin_inset Foot
25728 status collapsed
25729
25730 \begin_layout Plain Layout
25731 En LyX, las funciones personalizadas se ven en rojo, las predefinidas en
25732  negro.
25733 \end_layout
25734
25735 \end_inset
25736
25737
25738 \end_layout
25739
25740 \begin_layout Standard
25741 \align center
25742 \begin_inset Tabular
25743 <lyxtabular version="3" rows="3" columns="2">
25744 <features tabularvalignment="middle">
25745 <column alignment="center" valignment="top" width="0pt">
25746 <column alignment="center" valignment="top" width="0pt">
25747 <row>
25748 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25749 \begin_inset Text
25750
25751 \begin_layout Plain Layout
25752 Comando
25753 \end_layout
25754
25755 \end_inset
25756 </cell>
25757 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25758 \begin_inset Text
25759
25760 \begin_layout Plain Layout
25761 Resultado
25762 \end_layout
25763
25764 \end_inset
25765 </cell>
25766 </row>
25767 <row>
25768 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25769 \begin_inset Text
25770
25771 \begin_layout Plain Layout
25772 A
25773 \backslash
25774 sgn(x)+B
25775 \end_layout
25776
25777 \end_inset
25778 </cell>
25779 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25780 \begin_inset Text
25781
25782 \begin_layout Plain Layout
25783 \begin_inset Formula $A\sgn(x)+B$
25784 \end_inset
25785
25786
25787 \end_layout
25788
25789 \end_inset
25790 </cell>
25791 </row>
25792 <row>
25793 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25794 \begin_inset Text
25795
25796 \begin_layout Plain Layout
25797 A
25798 \backslash
25799 ,
25800 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\mathsf{Alt+M\, M}}$
25801 \end_inset
25802
25803 (x)+B
25804 \end_layout
25805
25806 \end_inset
25807 </cell>
25808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25809 \begin_inset Text
25810
25811 \begin_layout Plain Layout
25812 \begin_inset Formula $A\,\mbox{sgn}(x)+B$
25813 \end_inset
25814
25815
25816 \end_layout
25817
25818 \end_inset
25819 </cell>
25820 </row>
25821 </lyxtabular>
25822
25823 \end_inset
25824
25825
25826 \end_layout
25827
25828 \begin_layout Standard
25829 El primer método es preferible si la función se va a usar varias veces.
25830 \end_layout
25831
25832 \begin_layout Subsection
25833 Límites
25834 \begin_inset Index idx
25835 status collapsed
25836
25837 \begin_layout Plain Layout
25838 Limites@Límites
25839 \end_layout
25840
25841 \end_inset
25842
25843
25844 \end_layout
25845
25846 \begin_layout Standard
25847 Para límites, además de 
25848 \series bold
25849
25850 \backslash
25851 lim
25852 \series default
25853
25854 \begin_inset Index idx
25855 status collapsed
25856
25857 \begin_layout Plain Layout
25858 Comandos ! L ! 
25859 \backslash
25860 lim
25861 \end_layout
25862
25863 \end_inset
25864
25865
25866 \series bold
25867
25868 \backslash
25869 liminf
25870 \series default
25871  y 
25872 \series bold
25873
25874 \backslash
25875 limsup
25876 \series default
25877  están definidas las siguientes funciones:
25878 \series bold
25879  
25880 \end_layout
25881
25882 \begin_layout Standard
25883 \noindent
25884 \align center
25885 \begin_inset Tabular
25886 <lyxtabular version="3" rows="5" columns="2">
25887 <features tabularvalignment="middle">
25888 <column alignment="center" valignment="top" width="0">
25889 <column alignment="center" valignment="top" width="0">
25890 <row>
25891 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25892 \begin_inset Text
25893
25894 \begin_layout Plain Layout
25895 Comando
25896 \end_layout
25897
25898 \end_inset
25899 </cell>
25900 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25901 \begin_inset Text
25902
25903 \begin_layout Plain Layout
25904 Resultado
25905 \begin_inset Note Note
25906 status collapsed
25907
25908 \begin_layout Plain Layout
25909
25910 \series bold
25911
25912 \backslash
25913 raisebox
25914 \series default
25915  se usa sólo como espaciador
25916 \end_layout
25917
25918 \end_inset
25919
25920
25921 \end_layout
25922
25923 \end_inset
25924 </cell>
25925 </row>
25926 <row>
25927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25928 \begin_inset Text
25929
25930 \begin_layout Plain Layout
25931
25932 \backslash
25933 varliminf
25934 \end_layout
25935
25936 \end_inset
25937 </cell>
25938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25939 \begin_inset Text
25940
25941 \begin_layout Plain Layout
25942 \begin_inset Formula $\varliminf$
25943 \end_inset
25944
25945
25946 \end_layout
25947
25948 \end_inset
25949 </cell>
25950 </row>
25951 <row>
25952 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25953 \begin_inset Text
25954
25955 \begin_layout Plain Layout
25956
25957 \backslash
25958 varlimsup
25959 \end_layout
25960
25961 \end_inset
25962 </cell>
25963 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25964 \begin_inset Text
25965
25966 \begin_layout Plain Layout
25967 \begin_inset Formula $\varlimsup$
25968 \end_inset
25969
25970
25971 \end_layout
25972
25973 \end_inset
25974 </cell>
25975 </row>
25976 <row>
25977 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25978 \begin_inset Text
25979
25980 \begin_layout Plain Layout
25981
25982 \backslash
25983 varprojlim
25984 \end_layout
25985
25986 \end_inset
25987 </cell>
25988 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25989 \begin_inset Text
25990
25991 \begin_layout Plain Layout
25992 \begin_inset Formula $\varprojlim$
25993 \end_inset
25994
25995
25996 \end_layout
25997
25998 \end_inset
25999 </cell>
26000 </row>
26001 <row>
26002 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26003 \begin_inset Text
26004
26005 \begin_layout Plain Layout
26006
26007 \backslash
26008 varinjlim
26009 \end_layout
26010
26011 \end_inset
26012 </cell>
26013 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26014 \begin_inset Text
26015
26016 \begin_layout Plain Layout
26017 \begin_inset Formula $\varinjlim$
26018 \end_inset
26019
26020
26021 \begin_inset Formula $\raisebox{-2.5mm}{}$
26022 \end_inset
26023
26024
26025 \end_layout
26026
26027 \end_inset
26028 </cell>
26029 </row>
26030 </lyxtabular>
26031
26032 \end_inset
26033
26034
26035 \end_layout
26036
26037 \begin_layout Standard
26038 \begin_inset VSpace medskip
26039 \end_inset
26040
26041
26042 \end_layout
26043
26044 \begin_layout Standard
26045 El límite se crea insertando un subíndice.
26046  Se imprime a la derecha junto a la función en una fórmula en línea:
26047 \end_layout
26048
26049 \begin_layout Standard
26050 \noindent
26051 \align center
26052 \begin_inset Tabular
26053 <lyxtabular version="3" rows="2" columns="2">
26054 <features tabularvalignment="middle">
26055 <column alignment="center" valignment="top" width="0pt">
26056 <column alignment="center" valignment="top" width="0pt">
26057 <row>
26058 <cell alignment="center" valignment="top" usebox="none">
26059 \begin_inset Text
26060
26061 \begin_layout Plain Layout
26062 Comando
26063 \end_layout
26064
26065 \end_inset
26066 </cell>
26067 <cell alignment="center" valignment="top" usebox="none">
26068 \begin_inset Text
26069
26070 \begin_layout Plain Layout
26071 \begin_inset space \hspace{}
26072 \length 1cm
26073 \end_inset
26074
26075 Resultado
26076 \begin_inset Note Note
26077 status collapsed
26078
26079 \begin_layout Plain Layout
26080
26081 \series bold
26082
26083 \backslash
26084 raisebox
26085 \series default
26086  se usa sólo como espaciador
26087 \end_layout
26088
26089 \end_inset
26090
26091
26092 \end_layout
26093
26094 \end_inset
26095 </cell>
26096 </row>
26097 <row>
26098 <cell alignment="center" valignment="top" usebox="none">
26099 \begin_inset Text
26100
26101 \begin_layout Plain Layout
26102
26103 \backslash
26104 lim_x
26105 \backslash
26106 to
26107 \begin_inset ERT
26108 status collapsed
26109
26110 \begin_layout Plain Layout
26111
26112
26113 \backslash
26114 spce 
26115 \end_layout
26116
26117 \end_inset
26118
26119 A
26120 \begin_inset ERT
26121 status collapsed
26122
26123 \begin_layout Plain Layout
26124
26125
26126 \backslash
26127 spce 
26128 \end_layout
26129
26130 \end_inset
26131
26132 x=B
26133 \end_layout
26134
26135 \end_inset
26136 </cell>
26137 <cell alignment="center" valignment="top" usebox="none">
26138 \begin_inset Text
26139
26140 \begin_layout Plain Layout
26141 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\rightarrow A}x=B$
26142 \end_inset
26143
26144
26145 \end_layout
26146
26147 \end_inset
26148 </cell>
26149 </row>
26150 </lyxtabular>
26151
26152 \end_inset
26153
26154
26155 \end_layout
26156
26157 \begin_layout Standard
26158 En una ecuación presentada el límite se imprime debajo, como es habitual:
26159 \begin_inset Formula \[
26160 \lim\limits _{x\rightarrow A}=B\]
26161
26162 \end_inset
26163
26164
26165 \end_layout
26166
26167 \begin_layout Subsection
26168 Función módulo
26169 \begin_inset Index idx
26170 status collapsed
26171
26172 \begin_layout Plain Layout
26173 Funciones ! módulo
26174 \end_layout
26175
26176 \end_inset
26177
26178
26179 \end_layout
26180
26181 \begin_layout Standard
26182 La función módulo es especial, porque existe en cuatro variantes.
26183 \end_layout
26184
26185 \begin_layout Standard
26186 En una ecuación presentada:
26187 \begin_inset Formula \begin{align*}
26188 \underline{\textrm{Comando}} &  & \underline{\textrm{Resultado}}\\
26189 \mathrm{a\backslash mod\textrm{\spce}b} &  & a\mod b\\
26190 \mathrm{a\backslash pmod\textrm{\spce}b} &  & a\pmod b\\
26191 \mathrm{a\backslash bmod\textrm{\spce}b} &  & a\bmod b\\
26192 \mathrm{a\backslash pod\textrm{\spce}b} &  & a\pod b
26193 \end{align*}
26194
26195 \end_inset
26196
26197 En una ecuación en línea se pone menos espacio delante del nombre de la
26198  función para todas las variantes.
26199 \end_layout
26200
26201 \begin_layout Standard
26202 \begin_inset Newpage newpage
26203 \end_inset
26204
26205
26206 \end_layout
26207
26208 \begin_layout Section
26209 Caracteres especiales
26210 \begin_inset Index idx
26211 status collapsed
26212
26213 \begin_layout Plain Layout
26214 Caracteres especiales
26215 \end_layout
26216
26217 \end_inset
26218
26219
26220 \end_layout
26221
26222 \begin_layout Subsection
26223 Caracteres especiales en texto matemático
26224 \end_layout
26225
26226 \begin_layout Standard
26227 Los siguientes comandos sólo se pueden usar en texto matemático o en modo
26228  TeX:
26229 \end_layout
26230
26231 \begin_layout Standard
26232 \begin_inset space \hfill{}
26233 \end_inset
26234
26235
26236 \begin_inset Tabular
26237 <lyxtabular version="3" rows="8" columns="2">
26238 <features tabularvalignment="middle">
26239 <column alignment="block" valignment="top" width="0">
26240 <column alignment="block" valignment="top" width="0">
26241 <row>
26242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26243 \begin_inset Text
26244
26245 \begin_layout Plain Layout
26246 Comando
26247 \end_layout
26248
26249 \end_inset
26250 </cell>
26251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26252 \begin_inset Text
26253
26254 \begin_layout Plain Layout
26255 Resultado
26256 \end_layout
26257
26258 \end_inset
26259 </cell>
26260 </row>
26261 <row>
26262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26263 \begin_inset Text
26264
26265 \begin_layout Plain Layout
26266
26267 \backslash
26268 oe
26269 \end_layout
26270
26271 \end_inset
26272 </cell>
26273 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26274 \begin_inset Text
26275
26276 \begin_layout Plain Layout
26277 \begin_inset Formula $\textrm{œ}$
26278 \end_inset
26279
26280
26281 \end_layout
26282
26283 \end_inset
26284 </cell>
26285 </row>
26286 <row>
26287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26288 \begin_inset Text
26289
26290 \begin_layout Plain Layout
26291
26292 \backslash
26293 OE
26294 \end_layout
26295
26296 \end_inset
26297 </cell>
26298 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26299 \begin_inset Text
26300
26301 \begin_layout Plain Layout
26302 \begin_inset Formula $\textrm{Œ}$
26303 \end_inset
26304
26305
26306 \end_layout
26307
26308 \end_inset
26309 </cell>
26310 </row>
26311 <row>
26312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26313 \begin_inset Text
26314
26315 \begin_layout Plain Layout
26316
26317 \backslash
26318 ae
26319 \end_layout
26320
26321 \end_inset
26322 </cell>
26323 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26324 \begin_inset Text
26325
26326 \begin_layout Plain Layout
26327 \begin_inset Formula $\textrm{æ}$
26328 \end_inset
26329
26330
26331 \end_layout
26332
26333 \end_inset
26334 </cell>
26335 </row>
26336 <row>
26337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26338 \begin_inset Text
26339
26340 \begin_layout Plain Layout
26341
26342 \backslash
26343 AE
26344 \end_layout
26345
26346 \end_inset
26347 </cell>
26348 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26349 \begin_inset Text
26350
26351 \begin_layout Plain Layout
26352 \begin_inset Formula $\textrm{Æ}$
26353 \end_inset
26354
26355
26356 \end_layout
26357
26358 \end_inset
26359 </cell>
26360 </row>
26361 <row>
26362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26363 \begin_inset Text
26364
26365 \begin_layout Plain Layout
26366
26367 \backslash
26368 aa
26369 \end_layout
26370
26371 \end_inset
26372 </cell>
26373 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26374 \begin_inset Text
26375
26376 \begin_layout Plain Layout
26377 \begin_inset Formula $\textrm{\aa}$
26378 \end_inset
26379
26380
26381 \end_layout
26382
26383 \end_inset
26384 </cell>
26385 </row>
26386 <row>
26387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26388 \begin_inset Text
26389
26390 \begin_layout Plain Layout
26391
26392 \backslash
26393 AA
26394 \begin_inset Index idx
26395 status collapsed
26396
26397 \begin_layout Plain Layout
26398
26399 \backslash
26400 @
26401 \begin_inset ERT
26402 status collapsed
26403
26404 \begin_layout Plain Layout
26405
26406
26407 \backslash
26408 textrm{
26409 \backslash
26410 AA}
26411 \end_layout
26412
26413 \end_inset
26414
26415
26416 \end_layout
26417
26418 \end_inset
26419
26420
26421 \end_layout
26422
26423 \end_inset
26424 </cell>
26425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26426 \begin_inset Text
26427
26428 \begin_layout Plain Layout
26429 \begin_inset Formula $\textrm{Å}$
26430 \end_inset
26431
26432
26433 \end_layout
26434
26435 \end_inset
26436 </cell>
26437 </row>
26438 <row>
26439 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26440 \begin_inset Text
26441
26442 \begin_layout Plain Layout
26443
26444 \backslash
26445 i
26446 \end_layout
26447
26448 \end_inset
26449 </cell>
26450 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26451 \begin_inset Text
26452
26453 \begin_layout Plain Layout
26454 \begin_inset Formula $\textrm{ı}$
26455 \end_inset
26456
26457
26458 \end_layout
26459
26460 \end_inset
26461 </cell>
26462 </row>
26463 </lyxtabular>
26464
26465 \end_inset
26466
26467
26468 \begin_inset space \hfill{}
26469 \end_inset
26470
26471
26472 \begin_inset Tabular
26473 <lyxtabular version="3" rows="8" columns="2">
26474 <features tabularvalignment="middle">
26475 <column alignment="block" valignment="top" width="0">
26476 <column alignment="center" valignment="top" width="0">
26477 <row>
26478 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26479 \begin_inset Text
26480
26481 \begin_layout Plain Layout
26482 Comando
26483 \begin_inset Note Note
26484 status collapsed
26485
26486 \begin_layout Plain Layout
26487
26488 \series bold
26489
26490 \backslash
26491 raisebox
26492 \series default
26493  se usa sólo como espaciador
26494 \end_layout
26495
26496 \end_inset
26497
26498
26499 \end_layout
26500
26501 \end_inset
26502 </cell>
26503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26504 \begin_inset Text
26505
26506 \begin_layout Plain Layout
26507 Resultado
26508 \end_layout
26509
26510 \end_inset
26511 </cell>
26512 </row>
26513 <row>
26514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26515 \begin_inset Text
26516
26517 \begin_layout Plain Layout
26518
26519 \backslash
26520 o
26521 \end_layout
26522
26523 \end_inset
26524 </cell>
26525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26526 \begin_inset Text
26527
26528 \begin_layout Plain Layout
26529 \begin_inset Formula $\textrm{ø}$
26530 \end_inset
26531
26532
26533 \end_layout
26534
26535 \end_inset
26536 </cell>
26537 </row>
26538 <row>
26539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26540 \begin_inset Text
26541
26542 \begin_layout Plain Layout
26543
26544 \backslash
26545 O
26546 \end_layout
26547
26548 \end_inset
26549 </cell>
26550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26551 \begin_inset Text
26552
26553 \begin_layout Plain Layout
26554 \begin_inset Formula $\textrm{Ø}$
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 l
26571 \end_layout
26572
26573 \end_inset
26574 </cell>
26575 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26576 \begin_inset Text
26577
26578 \begin_layout Plain Layout
26579 \begin_inset Formula $\textrm{ł}$
26580 \end_inset
26581
26582
26583 \end_layout
26584
26585 \end_inset
26586 </cell>
26587 </row>
26588 <row>
26589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26590 \begin_inset Text
26591
26592 \begin_layout Plain Layout
26593
26594 \backslash
26595 L
26596 \end_layout
26597
26598 \end_inset
26599 </cell>
26600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26601 \begin_inset Text
26602
26603 \begin_layout Plain Layout
26604 \begin_inset Formula $\textrm{Ł}$
26605 \end_inset
26606
26607
26608 \end_layout
26609
26610 \end_inset
26611 </cell>
26612 </row>
26613 <row>
26614 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26615 \begin_inset Text
26616
26617 \begin_layout Plain Layout
26618 !
26619 \begin_inset space \hspace{}
26620 \length 0mm
26621 \end_inset
26622
26623 `
26624 \begin_inset ERT
26625 status collapsed
26626
26627 \begin_layout Plain Layout
26628
26629
26630 \backslash
26631 spce 
26632 \end_layout
26633
26634 \end_inset
26635
26636
26637 \end_layout
26638
26639 \end_inset
26640 </cell>
26641 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26642 \begin_inset Text
26643
26644 \begin_layout Plain Layout
26645 \begin_inset Formula $\textrm{!`}$
26646 \end_inset
26647
26648
26649 \end_layout
26650
26651 \end_inset
26652 </cell>
26653 </row>
26654 <row>
26655 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26656 \begin_inset Text
26657
26658 \begin_layout Plain Layout
26659 ?
26660 \begin_inset space \hspace{}
26661 \length 0mm
26662 \end_inset
26663
26664 `
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
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 Formula $\textrm{?`}$
26687 \end_inset
26688
26689
26690 \end_layout
26691
26692 \end_inset
26693 </cell>
26694 </row>
26695 <row>
26696 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26697 \begin_inset Text
26698
26699 \begin_layout Plain Layout
26700
26701 \backslash
26702 j
26703 \end_layout
26704
26705 \end_inset
26706 </cell>
26707 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26708 \begin_inset Text
26709
26710 \begin_layout Plain Layout
26711 \begin_inset Formula $\textrm{ȷ}$
26712 \end_inset
26713
26714
26715 \end_layout
26716
26717 \end_inset
26718 </cell>
26719 </row>
26720 </lyxtabular>
26721
26722 \end_inset
26723
26724
26725 \begin_inset space \hfill{}
26726 \end_inset
26727
26728
26729 \end_layout
26730
26731 \begin_layout Standard
26732 Los caracteres 
26733 \begin_inset Formula $\textrm{\textrm{Å}}$
26734 \end_inset
26735
26736  y 
26737 \begin_inset Formula $\textrm{\textrm{Ø}}$
26738 \end_inset
26739
26740  también se pueden insertar mediante el botón 
26741 \begin_inset Graphics
26742         filename ../../images/math/digamma.png
26743         scale 85
26744
26745 \end_inset
26746
26747  de la barra de ecuaciones.
26748 \end_layout
26749
26750 \begin_layout Standard
26751 Los comandos 
26752 \series bold
26753 !
26754 \begin_inset space \hspace{}
26755 \length 0mm
26756 \end_inset
26757
26758 `
26759 \series default
26760  y 
26761 \series bold
26762 ?
26763 \begin_inset space \hspace{}
26764 \length 0mm
26765 \end_inset
26766
26767 `
26768 \series default
26769  son una excepción porque se pueden insertar directamente a texto en LyX.
26770  
26771 \end_layout
26772
26773 \begin_layout Subsection
26774 Acentos en texto
26775 \begin_inset CommandInset label
26776 LatexCommand label
26777 name "sub:Acentos-en-texto"
26778
26779 \end_inset
26780
26781
26782 \begin_inset Index idx
26783 status collapsed
26784
26785 \begin_layout Plain Layout
26786 Acentos ! en texto
26787 \end_layout
26788
26789 \end_inset
26790
26791
26792 \end_layout
26793
26794 \begin_layout Standard
26795 Con los siguientes comandos se pueden acentuar todas las letras.
26796  Los comandos deben ponerse en modo TeX.
26797 \end_layout
26798
26799 \begin_layout Standard
26800 \begin_inset space \hfill{}
26801 \end_inset
26802
26803
26804 \begin_inset Tabular
26805 <lyxtabular version="3" rows="8" columns="2">
26806 <features tabularvalignment="middle">
26807 <column alignment="block" valignment="top" width="0">
26808 <column alignment="block" valignment="top" width="0">
26809 <row>
26810 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26811 \begin_inset Text
26812
26813 \begin_layout Plain Layout
26814 Comando
26815 \end_layout
26816
26817 \end_inset
26818 </cell>
26819 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26820 \begin_inset Text
26821
26822 \begin_layout Plain Layout
26823 Resultado
26824 \end_layout
26825
26826 \end_inset
26827 </cell>
26828 </row>
26829 <row>
26830 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26831 \begin_inset Text
26832
26833 \begin_layout Plain Layout
26834
26835 \backslash
26836
26837 \begin_inset Quotes grd
26838 \end_inset
26839
26840 e
26841 \end_layout
26842
26843 \end_inset
26844 </cell>
26845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26846 \begin_inset Text
26847
26848 \begin_layout Plain Layout
26849 \begin_inset ERT
26850 status collapsed
26851
26852 \begin_layout Plain Layout
26853
26854
26855 \backslash
26856 "e
26857 \end_layout
26858
26859 \end_inset
26860
26861
26862 \end_layout
26863
26864 \end_inset
26865 </cell>
26866 </row>
26867 <row>
26868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26869 \begin_inset Text
26870
26871 \begin_layout Plain Layout
26872
26873 \backslash
26874 `e
26875 \end_layout
26876
26877 \end_inset
26878 </cell>
26879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26880 \begin_inset Text
26881
26882 \begin_layout Plain Layout
26883 \begin_inset ERT
26884 status collapsed
26885
26886 \begin_layout Plain Layout
26887
26888
26889 \backslash
26890 `e
26891 \end_layout
26892
26893 \end_inset
26894
26895
26896 \end_layout
26897
26898 \end_inset
26899 </cell>
26900 </row>
26901 <row>
26902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26903 \begin_inset Text
26904
26905 \begin_layout Plain Layout
26906
26907 \backslash
26908 ^
26909 \begin_inset ERT
26910 status collapsed
26911
26912 \begin_layout Plain Layout
26913
26914
26915 \backslash
26916 spce 
26917 \end_layout
26918
26919 \end_inset
26920
26921 e
26922 \end_layout
26923
26924 \end_inset
26925 </cell>
26926 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26927 \begin_inset Text
26928
26929 \begin_layout Plain Layout
26930 \begin_inset ERT
26931 status collapsed
26932
26933 \begin_layout Plain Layout
26934
26935
26936 \backslash
26937 ^e
26938 \end_layout
26939
26940 \end_inset
26941
26942
26943 \end_layout
26944
26945 \end_inset
26946 </cell>
26947 </row>
26948 <row>
26949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26950 \begin_inset Text
26951
26952 \begin_layout Plain Layout
26953
26954 \backslash
26955 =e
26956 \end_layout
26957
26958 \end_inset
26959 </cell>
26960 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26961 \begin_inset Text
26962
26963 \begin_layout Plain Layout
26964 \begin_inset ERT
26965 status collapsed
26966
26967 \begin_layout Plain Layout
26968
26969
26970 \backslash
26971 =e
26972 \end_layout
26973
26974 \end_inset
26975
26976
26977 \end_layout
26978
26979 \end_inset
26980 </cell>
26981 </row>
26982 <row>
26983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26984 \begin_inset Text
26985
26986 \begin_layout Plain Layout
26987
26988 \backslash
26989 u
26990 \begin_inset ERT
26991 status collapsed
26992
26993 \begin_layout Plain Layout
26994
26995
26996 \backslash
26997 spce 
26998 \end_layout
26999
27000 \end_inset
27001
27002 e
27003 \end_layout
27004
27005 \end_inset
27006 </cell>
27007 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27008 \begin_inset Text
27009
27010 \begin_layout Plain Layout
27011 \begin_inset ERT
27012 status collapsed
27013
27014 \begin_layout Plain Layout
27015
27016
27017 \backslash
27018 u e
27019 \end_layout
27020
27021 \end_inset
27022
27023
27024 \end_layout
27025
27026 \end_inset
27027 </cell>
27028 </row>
27029 <row>
27030 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27031 \begin_inset Text
27032
27033 \begin_layout Plain Layout
27034
27035 \backslash
27036 b
27037 \begin_inset ERT
27038 status collapsed
27039
27040 \begin_layout Plain Layout
27041
27042
27043 \backslash
27044 spce 
27045 \end_layout
27046
27047 \end_inset
27048
27049 e
27050 \end_layout
27051
27052 \end_inset
27053 </cell>
27054 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27055 \begin_inset Text
27056
27057 \begin_layout Plain Layout
27058 \begin_inset ERT
27059 status collapsed
27060
27061 \begin_layout Plain Layout
27062
27063
27064 \backslash
27065 b e
27066 \end_layout
27067
27068 \end_inset
27069
27070
27071 \end_layout
27072
27073 \end_inset
27074 </cell>
27075 </row>
27076 <row>
27077 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27078 \begin_inset Text
27079
27080 \begin_layout Plain Layout
27081
27082 \backslash
27083 t
27084 \begin_inset ERT
27085 status collapsed
27086
27087 \begin_layout Plain Layout
27088
27089
27090 \backslash
27091 spce 
27092 \end_layout
27093
27094 \end_inset
27095
27096 ee
27097 \end_layout
27098
27099 \end_inset
27100 </cell>
27101 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27102 \begin_inset Text
27103
27104 \begin_layout Plain Layout
27105 \begin_inset ERT
27106 status collapsed
27107
27108 \begin_layout Plain Layout
27109
27110
27111 \backslash
27112 t ee
27113 \end_layout
27114
27115 \end_inset
27116
27117
27118 \end_layout
27119
27120 \end_inset
27121 </cell>
27122 </row>
27123 </lyxtabular>
27124
27125 \end_inset
27126
27127
27128 \begin_inset space \hfill{}
27129 \end_inset
27130
27131
27132 \begin_inset Tabular
27133 <lyxtabular version="3" rows="8" columns="2">
27134 <features tabularvalignment="middle">
27135 <column alignment="block" valignment="top" width="0">
27136 <column alignment="center" valignment="top" width="0">
27137 <row>
27138 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27139 \begin_inset Text
27140
27141 \begin_layout Plain Layout
27142 Comando
27143 \end_layout
27144
27145 \end_inset
27146 </cell>
27147 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27148 \begin_inset Text
27149
27150 \begin_layout Plain Layout
27151 Resultado
27152 \end_layout
27153
27154 \end_inset
27155 </cell>
27156 </row>
27157 <row>
27158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27159 \begin_inset Text
27160
27161 \begin_layout Plain Layout
27162
27163 \backslash
27164 H
27165 \begin_inset ERT
27166 status collapsed
27167
27168 \begin_layout Plain Layout
27169
27170
27171 \backslash
27172 spce 
27173 \end_layout
27174
27175 \end_inset
27176
27177 e
27178 \end_layout
27179
27180 \end_inset
27181 </cell>
27182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27183 \begin_inset Text
27184
27185 \begin_layout Plain Layout
27186 \begin_inset ERT
27187 status collapsed
27188
27189 \begin_layout Plain Layout
27190
27191
27192 \backslash
27193 H e
27194 \end_layout
27195
27196 \end_inset
27197
27198
27199 \end_layout
27200
27201 \end_inset
27202 </cell>
27203 </row>
27204 <row>
27205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27206 \begin_inset Text
27207
27208 \begin_layout Plain Layout
27209
27210 \backslash
27211 'e
27212 \end_layout
27213
27214 \end_inset
27215 </cell>
27216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27217 \begin_inset Text
27218
27219 \begin_layout Plain Layout
27220 \begin_inset ERT
27221 status collapsed
27222
27223 \begin_layout Plain Layout
27224
27225
27226 \backslash
27227 'e
27228 \end_layout
27229
27230 \end_inset
27231
27232
27233 \end_layout
27234
27235 \end_inset
27236 </cell>
27237 </row>
27238 <row>
27239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27240 \begin_inset Text
27241
27242 \begin_layout Plain Layout
27243
27244 \backslash
27245 ~e
27246 \begin_inset Index idx
27247 status collapsed
27248
27249 \begin_layout Plain Layout
27250 Tilde
27251 \end_layout
27252
27253 \end_inset
27254
27255
27256 \end_layout
27257
27258 \end_inset
27259 </cell>
27260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27261 \begin_inset Text
27262
27263 \begin_layout Plain Layout
27264 \begin_inset ERT
27265 status collapsed
27266
27267 \begin_layout Plain Layout
27268
27269
27270 \backslash
27271 ~e
27272 \end_layout
27273
27274 \end_inset
27275
27276
27277 \end_layout
27278
27279 \end_inset
27280 </cell>
27281 </row>
27282 <row>
27283 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27284 \begin_inset Text
27285
27286 \begin_layout Plain Layout
27287
27288 \backslash
27289 .e
27290 \end_layout
27291
27292 \end_inset
27293 </cell>
27294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27295 \begin_inset Text
27296
27297 \begin_layout Plain Layout
27298 \begin_inset ERT
27299 status collapsed
27300
27301 \begin_layout Plain Layout
27302
27303
27304 \backslash
27305 .e
27306 \end_layout
27307
27308 \end_inset
27309
27310
27311 \end_layout
27312
27313 \end_inset
27314 </cell>
27315 </row>
27316 <row>
27317 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27318 \begin_inset Text
27319
27320 \begin_layout Plain Layout
27321
27322 \backslash
27323 v
27324 \begin_inset ERT
27325 status collapsed
27326
27327 \begin_layout Plain Layout
27328
27329
27330 \backslash
27331 spce 
27332 \end_layout
27333
27334 \end_inset
27335
27336 e
27337 \end_layout
27338
27339 \end_inset
27340 </cell>
27341 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27342 \begin_inset Text
27343
27344 \begin_layout Plain Layout
27345 \begin_inset ERT
27346 status collapsed
27347
27348 \begin_layout Plain Layout
27349
27350
27351 \backslash
27352 v e
27353 \end_layout
27354
27355 \end_inset
27356
27357
27358 \end_layout
27359
27360 \end_inset
27361 </cell>
27362 </row>
27363 <row>
27364 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27365 \begin_inset Text
27366
27367 \begin_layout Plain Layout
27368
27369 \backslash
27370 d
27371 \begin_inset ERT
27372 status collapsed
27373
27374 \begin_layout Plain Layout
27375
27376
27377 \backslash
27378 spce 
27379 \end_layout
27380
27381 \end_inset
27382
27383 e
27384 \end_layout
27385
27386 \end_inset
27387 </cell>
27388 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27389 \begin_inset Text
27390
27391 \begin_layout Plain Layout
27392 \begin_inset ERT
27393 status collapsed
27394
27395 \begin_layout Plain Layout
27396
27397
27398 \backslash
27399 d e
27400 \end_layout
27401
27402 \end_inset
27403
27404
27405 \end_layout
27406
27407 \end_inset
27408 </cell>
27409 </row>
27410 <row>
27411 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27412 \begin_inset Text
27413
27414 \begin_layout Plain Layout
27415
27416 \backslash
27417 c
27418 \begin_inset ERT
27419 status collapsed
27420
27421 \begin_layout Plain Layout
27422
27423
27424 \backslash
27425 spce 
27426 \end_layout
27427
27428 \end_inset
27429
27430 e
27431 \end_layout
27432
27433 \end_inset
27434 </cell>
27435 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27436 \begin_inset Text
27437
27438 \begin_layout Plain Layout
27439 \begin_inset ERT
27440 status collapsed
27441
27442 \begin_layout Plain Layout
27443
27444
27445 \backslash
27446 c e
27447 \end_layout
27448
27449 \end_inset
27450
27451
27452 \end_layout
27453
27454 \end_inset
27455 </cell>
27456 </row>
27457 </lyxtabular>
27458
27459 \end_inset
27460
27461
27462 \begin_inset space \hfill{}
27463 \end_inset
27464
27465
27466 \end_layout
27467
27468 \begin_layout Standard
27469 \begin_inset VSpace medskip
27470 \end_inset
27471
27472
27473 \end_layout
27474
27475 \begin_layout Standard
27476 Con el comando 
27477 \series bold
27478
27479 \backslash
27480 t
27481 \series default
27482  también se pueden acentuar dos caracteres distintos.
27483  El comando 
27484 \series bold
27485
27486 \backslash
27487 t
27488 \begin_inset ERT
27489 status collapsed
27490
27491 \begin_layout Plain Layout
27492
27493
27494 \backslash
27495 spce 
27496 \end_layout
27497
27498 \end_inset
27499
27500 sz
27501 \series default
27502  genera 
27503 \begin_inset ERT
27504 status collapsed
27505
27506 \begin_layout Plain Layout
27507
27508
27509 \backslash
27510 t sz
27511 \end_layout
27512
27513 \end_inset
27514
27515
27516 \end_layout
27517
27518 \begin_layout Standard
27519 Los acentos 
27520 \series bold
27521 `
27522 \series default
27523  , 
27524 \series bold
27525 '
27526 \series default
27527  y 
27528 \series bold
27529 ^
27530 \series default
27531  se pueden insertar directamente con el teclado sobre vocales sin usar modo
27532  TeX.
27533  Lo mismo se aplica a la tilde
27534 \begin_inset Foot
27535 status collapsed
27536
27537 \begin_layout Plain Layout
27538 Esto sólo se aplica a teclados en los que la tilde está definida como acento.
27539 \end_layout
27540
27541 \end_inset
27542
27543  con 
27544 \emph on
27545 a
27546 \emph default
27547
27548 \emph on
27549 o
27550 \emph default
27551  y 
27552 \emph on
27553 n.
27554 \end_layout
27555
27556 \begin_layout Standard
27557 Los comandos 
27558 \series bold
27559
27560 \backslash
27561 b
27562 \series default
27563  , 
27564 \series bold
27565
27566 \backslash
27567 c
27568 \series default
27569  , 
27570 \series bold
27571
27572 \backslash
27573 d
27574 \series default
27575  , 
27576 \series bold
27577
27578 \backslash
27579 H
27580 \series default
27581  , 
27582 \series bold
27583
27584 \backslash
27585 t
27586 \series default
27587  , 
27588 \series bold
27589
27590 \backslash
27591 u
27592 \series default
27593  , 
27594 \series bold
27595
27596 \backslash
27597 v
27598 \series default
27599 , y acentos insertados directamente con el teclado también están disponibles
27600  en texto matemático.
27601  Para otros acentos hay comandos especiales para usar en ecuaciones, véase
27602  
27603 \begin_inset CommandInset ref
27604 LatexCommand ref
27605 reference "sub:Acentos-para-un"
27606
27607 \end_inset
27608
27609 .
27610 \end_layout
27611
27612 \begin_layout Standard
27613 \begin_inset VSpace bigskip
27614 \end_inset
27615
27616
27617 \end_layout
27618
27619 \begin_layout Standard
27620 Además, con el comando 
27621 \series bold
27622
27623 \backslash
27624 textcircled
27625 \series default
27626
27627 \begin_inset Index idx
27628 status collapsed
27629
27630 \begin_layout Plain Layout
27631 Comandos ! T ! 
27632 \backslash
27633 textcircled
27634 \end_layout
27635
27636 \end_inset
27637
27638  se pueden insertar en un círculo todos los números y letras, de forma parecida
27639  al símbolo copyright.
27640 \end_layout
27641
27642 \begin_layout Standard
27643 \noindent
27644 \align center
27645 \begin_inset Tabular
27646 <lyxtabular version="3" rows="3" columns="2">
27647 <features tabularvalignment="middle">
27648 <column alignment="center" valignment="top" width="0">
27649 <column alignment="center" valignment="top" width="0">
27650 <row>
27651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27652 \begin_inset Text
27653
27654 \begin_layout Plain Layout
27655 Comando
27656 \end_layout
27657
27658 \end_inset
27659 </cell>
27660 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27661 \begin_inset Text
27662
27663 \begin_layout Plain Layout
27664 Resultado
27665 \begin_inset Note Note
27666 status collapsed
27667
27668 \begin_layout Plain Layout
27669
27670 \series bold
27671
27672 \backslash
27673 raisebox
27674 \series default
27675  se usa sólo como espaciador
27676 \end_layout
27677
27678 \end_inset
27679
27680
27681 \end_layout
27682
27683 \end_inset
27684 </cell>
27685 </row>
27686 <row>
27687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27688 \begin_inset Text
27689
27690 \begin_layout Plain Layout
27691
27692 \backslash
27693 textcircled{w}
27694 \end_layout
27695
27696 \end_inset
27697 </cell>
27698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27699 \begin_inset Text
27700
27701 \begin_layout Plain Layout
27702 \begin_inset ERT
27703 status collapsed
27704
27705 \begin_layout Plain Layout
27706
27707
27708 \backslash
27709 textcircled{w}
27710 \end_layout
27711
27712 \end_inset
27713
27714
27715 \end_layout
27716
27717 \end_inset
27718 </cell>
27719 </row>
27720 <row>
27721 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27722 \begin_inset Text
27723
27724 \begin_layout Plain Layout
27725
27726 \backslash
27727 Large 
27728 \backslash
27729 textcircled{
27730 \backslash
27731 normalsize
27732 \backslash
27733 protect
27734 \backslash
27735 raisebox{-1.5pt}{W}}
27736 \end_layout
27737
27738 \end_inset
27739 </cell>
27740 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27741 \begin_inset Text
27742
27743 \begin_layout Plain Layout
27744 \begin_inset Formula $\raisebox{4.5mm}{}$
27745 \end_inset
27746
27747
27748 \begin_inset ERT
27749 status collapsed
27750
27751 \begin_layout Plain Layout
27752
27753
27754 \backslash
27755 Large 
27756 \backslash
27757 textcircled{
27758 \backslash
27759 normalsize
27760 \backslash
27761 protect
27762 \backslash
27763 raisebox{-1.5pt}W}
27764 \end_layout
27765
27766 \end_inset
27767
27768
27769 \begin_inset Formula $\raisebox{-2mm}{}$
27770 \end_inset
27771
27772
27773 \end_layout
27774
27775 \end_inset
27776 </cell>
27777 </row>
27778 </lyxtabular>
27779
27780 \end_inset
27781
27782
27783 \end_layout
27784
27785 \begin_layout Standard
27786 Hay que tener cuidado que el carácter se ajuste al círculo.
27787  Por eso 
27788 \series bold
27789
27790 \backslash
27791 Large
27792 \begin_inset Foot
27793 status collapsed
27794
27795 \begin_layout Plain Layout
27796 véase 
27797 \begin_inset CommandInset ref
27798 LatexCommand ref
27799 reference "sub:Tamaños-de-fuentes"
27800
27801 \end_inset
27802
27803
27804 \end_layout
27805
27806 \end_inset
27807
27808
27809 \series default
27810  especifica el tamaño del círculo.
27811  Con ayuda de 
27812 \series bold
27813
27814 \backslash
27815 raisebox
27816 \begin_inset Foot
27817 status collapsed
27818
27819 \begin_layout Plain Layout
27820 véase 
27821 \begin_inset CommandInset ref
27822 LatexCommand ref
27823 reference "sub:Cuadros-sin-marco"
27824
27825 \end_inset
27826
27827
27828 \end_layout
27829
27830 \end_inset
27831
27832
27833 \series default
27834  se puede centrar el carácter.
27835 \end_layout
27836
27837 \begin_layout Subsection
27838 Números en estilo antiguo
27839 \begin_inset Index idx
27840 status collapsed
27841
27842 \begin_layout Plain Layout
27843 Numeros@Números ! en estilo antiguo
27844 \end_layout
27845
27846 \end_inset
27847
27848
27849 \end_layout
27850
27851 \begin_layout Standard
27852 Los números en estilo antiguo o elzevirianos se componen con el comando
27853  
27854 \series bold
27855
27856 \backslash
27857 oldstylenums
27858 \series default
27859
27860 \begin_inset Index idx
27861 status collapsed
27862
27863 \begin_layout Plain Layout
27864 Comandos ! O ! 
27865 \backslash
27866 oldstylenums
27867 \end_layout
27868
27869 \end_inset
27870
27871 .
27872  El comando se puede usar en ecuaciones y en modo TeX.
27873  Su esquema es:
27874 \end_layout
27875
27876 \begin_layout Standard
27877
27878 \series bold
27879
27880 \backslash
27881 oldstylenums{número}
27882 \end_layout
27883
27884 \begin_layout Standard
27885 El comando 
27886 \series bold
27887
27888 \backslash
27889 oldstylenums{0123456789}
27890 \series default
27891  genera: 
27892 \begin_inset Formula $\oldstylenums{0123456789}$
27893 \end_inset
27894
27895
27896 \end_layout
27897
27898 \begin_layout Subsection
27899 Caracteres especiales misceláneos
27900 \begin_inset CommandInset label
27901 LatexCommand label
27902 name "sub:Caracteres-especiales-misceláneos"
27903
27904 \end_inset
27905
27906
27907 \begin_inset Index idx
27908 status collapsed
27909
27910 \begin_layout Plain Layout
27911 Caracteres especiales ! misceláneos
27912 \end_layout
27913
27914 \end_inset
27915
27916
27917 \end_layout
27918
27919 \begin_layout Standard
27920 Los siguientes caracteres sólo pueden insertarse en ecuaciones mediante
27921  comandos:
27922 \end_layout
27923
27924 \begin_layout Standard
27925 \noindent
27926 \align center
27927 \begin_inset Tabular
27928 <lyxtabular version="3" rows="4" columns="2">
27929 <features tabularvalignment="middle">
27930 <column alignment="center" valignment="top" width="0">
27931 <column alignment="center" valignment="top" width="0">
27932 <row>
27933 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27934 \begin_inset Text
27935
27936 \begin_layout Plain Layout
27937 Comando
27938 \end_layout
27939
27940 \end_inset
27941 </cell>
27942 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27943 \begin_inset Text
27944
27945 \begin_layout Plain Layout
27946 Resultado
27947 \end_layout
27948
27949 \end_inset
27950 </cell>
27951 </row>
27952 <row>
27953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27954 \begin_inset Text
27955
27956 \begin_layout Plain Layout
27957
27958 \backslash
27959 ^
27960 \begin_inset ERT
27961 status collapsed
27962
27963 \begin_layout Plain Layout
27964
27965
27966 \backslash
27967 spce 
27968 \end_layout
27969
27970 \end_inset
27971
27972
27973 \end_layout
27974
27975 \end_inset
27976 </cell>
27977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27978 \begin_inset Text
27979
27980 \begin_layout Plain Layout
27981 \begin_inset Formula $\mathcircumflex$
27982 \end_inset
27983
27984
27985 \end_layout
27986
27987 \end_inset
27988 </cell>
27989 </row>
27990 <row>
27991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27992 \begin_inset Text
27993
27994 \begin_layout Plain Layout
27995
27996 \backslash
27997 _
27998 \end_layout
27999
28000 \end_inset
28001 </cell>
28002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28003 \begin_inset Text
28004
28005 \begin_layout Plain Layout
28006 \begin_inset Formula $\_$
28007 \end_inset
28008
28009
28010 \end_layout
28011
28012 \end_inset
28013 </cell>
28014 </row>
28015 <row>
28016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28017 \begin_inset Text
28018
28019 \begin_layout Plain Layout
28020 ^
28021 \begin_inset ERT
28022 status collapsed
28023
28024 \begin_layout Plain Layout
28025
28026
28027 \backslash
28028 spce 
28029 \end_layout
28030
28031 \end_inset
28032
28033
28034 \backslash
28035 circ
28036 \begin_inset Index idx
28037 status collapsed
28038
28039 \begin_layout Plain Layout
28040
28041 \backslash
28042
28043 \end_layout
28044
28045 \end_inset
28046
28047
28048 \end_layout
28049
28050 \end_inset
28051 </cell>
28052 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
28053 \begin_inset Text
28054
28055 \begin_layout Plain Layout
28056 \begin_inset Formula $^{\circ}$
28057 \end_inset
28058
28059
28060 \end_layout
28061
28062 \end_inset
28063 </cell>
28064 </row>
28065 </lyxtabular>
28066
28067 \end_inset
28068
28069
28070 \end_layout
28071
28072 \begin_layout Standard
28073 El símbolo grado ° puede no obstante insertarse directamente si el preámbulo
28074  LaTeX contiene la línea:
28075 \begin_inset Foot
28076 status collapsed
28077
28078 \begin_layout Plain Layout
28079 Más sobre este asunto en 
28080 \begin_inset CommandInset ref
28081 LatexCommand ref
28082 reference "sub:Caracteres-de-texto"
28083
28084 \end_inset
28085
28086
28087 \end_layout
28088
28089 \end_inset
28090
28091  
28092 \end_layout
28093
28094 \begin_layout Standard
28095
28096 \series bold
28097
28098 \backslash
28099 DeclareInputtext{176}{
28100 \backslash
28101 ifmmode^
28102 \backslash
28103 circ
28104 \backslash
28105 else
28106 \backslash
28107 textdegree
28108 \backslash
28109 fi}
28110 \end_layout
28111
28112 \begin_layout Standard
28113 \begin_inset Newpage newpage
28114 \end_inset
28115
28116
28117 \end_layout
28118
28119 \begin_layout Section
28120 Estilos de ecuación
28121 \begin_inset CommandInset label
28122 LatexCommand label
28123 name "sec:Estilos-de-ecuación"
28124
28125 \end_inset
28126
28127
28128 \begin_inset Index idx
28129 status collapsed
28130
28131 \begin_layout Plain Layout
28132 Ecuación ! estilos de
28133 \end_layout
28134
28135 \end_inset
28136
28137
28138 \end_layout
28139
28140 \begin_layout Itemize
28141 Hay dos estilos diferentes de alineación:
28142 \end_layout
28143
28144 \begin_deeper
28145 \begin_layout Description
28146 Centrado es el estándar predefinido
28147 \end_layout
28148
28149 \begin_layout Description
28150 Sangrado para este estilo debe insertarse la opción de clase 
28151 \series bold
28152 fleqn
28153 \series default
28154  en el menú 
28155 \family sans
28156 Documento\SpecialChar \menuseparator
28157 Configuración
28158 \family default
28159  bajo 
28160 \family sans
28161 Clase de documento
28162 \end_layout
28163
28164 \begin_layout Standard
28165 Cuando se usa 
28166 \series bold
28167 Sangrado
28168 \series default
28169 , éste se puede ajustar con la longitud 
28170 \series bold
28171
28172 \backslash
28173 mathindent
28174 \series default
28175
28176 \begin_inset Index idx
28177 status collapsed
28178
28179 \begin_layout Plain Layout
28180 Comandos ! M ! 
28181 \backslash
28182 mathindent
28183 \end_layout
28184
28185 \end_inset
28186
28187 .
28188  Para 15
28189 \begin_inset space \thinspace{}
28190 \end_inset
28191
28192 mm, p.
28193 \begin_inset space \thinspace{}
28194 \end_inset
28195
28196 e., se inserta esta línea de comando en el preámbulo LaTeX:
28197 \end_layout
28198
28199 \begin_layout Standard
28200
28201 \series bold
28202
28203 \backslash
28204 setlength{
28205 \backslash
28206 mathindent}{15mm}
28207 \end_layout
28208
28209 \begin_layout Standard
28210 Si no se especifica longitud se usa el valor predeterminado de 30
28211 \begin_inset space \thinspace{}
28212 \end_inset
28213
28214 pt.
28215 \end_layout
28216
28217 \end_deeper
28218 \begin_layout Itemize
28219 Y dos estilos diferentes de numeración:
28220 \end_layout
28221
28222 \begin_deeper
28223 \begin_layout Description
28224 Derecha es el estándar predefinido
28225 \end_layout
28226
28227 \begin_layout Description
28228 Izquierda para este estilo debe insertarse la opción de clase 
28229 \series bold
28230 leqno
28231 \series default
28232  en el menú 
28233 \family sans
28234 Documento\SpecialChar \menuseparator
28235 Configuración
28236 \family default
28237  bajo 
28238 \family sans
28239 Clase de documento
28240 \end_layout
28241
28242 \end_deeper
28243 \begin_layout Standard
28244
28245 \series bold
28246 fleqn
28247 \series default
28248  y 
28249 \series bold
28250 leqno
28251 \series default
28252  también se pueden usar juntos.
28253  En ese caso se insertan ambas opciones, separadas por una coma.
28254 \end_layout
28255
28256 \begin_layout Standard
28257 Los estilos escogidos se aplican a todas las ecuaciones presentadas del
28258  documento.
28259  Si un documento debe tener ecuaciones centradas y sangradas, se usa el
28260  estilo 
28261 \series bold
28262 Centrado
28263 \series default
28264  y las ecuaciones sangradas se ponen en un entorno flalign; véase 
28265 \begin_inset CommandInset ref
28266 LatexCommand ref
28267 reference "sub:Entorno-flalign"
28268
28269 \end_inset
28270
28271 .
28272 \end_layout
28273
28274 \begin_layout Section
28275 Ecuaciones multilínea
28276 \begin_inset CommandInset label
28277 LatexCommand label
28278 name "sec:Ecuaciones-multilínea"
28279
28280 \end_inset
28281
28282
28283 \begin_inset Index idx
28284 status collapsed
28285
28286 \begin_layout Plain Layout
28287 Ecuación ! multilínea
28288 \end_layout
28289
28290 \end_inset
28291
28292
28293 \end_layout
28294
28295 \begin_layout Subsection
28296 General
28297 \end_layout
28298
28299 \begin_layout Standard
28300 En LyX se generan nuevas líneas en una ecuación con 
28301 \family sans
28302 \series bold
28303 Ctrl+Retorno
28304 \family default
28305 \series default
28306 .
28307  Esto crea un 
28308 \series bold
28309 entorno eqnarray
28310 \series default
28311 , que se describe en
28312 \begin_inset space ~
28313 \end_inset
28314
28315
28316 \begin_inset CommandInset ref
28317 LatexCommand ref
28318 reference "sub:Entorno-eqnarray"
28319
28320 \end_inset
28321
28322  o, si se ha marcado la opción 
28323 \family sans
28324 Usar
28325 \begin_inset space ~
28326 \end_inset
28327
28328 el
28329 \begin_inset space ~
28330 \end_inset
28331
28332 paquete
28333 \begin_inset space ~
28334 \end_inset
28335
28336 de
28337 \begin_inset space ~
28338 \end_inset
28339
28340 ecuaciones
28341 \begin_inset space ~
28342 \end_inset
28343
28344 AMS
28345 \family default
28346  en la configuración del documento
28347 \family sans
28348 , un 
28349 \series bold
28350 entorno
28351 \family default
28352 \series default
28353  
28354 \series bold
28355 align
28356 \series default
28357 , que se describe en
28358 \begin_inset space ~
28359 \end_inset
28360
28361
28362 \begin_inset CommandInset ref
28363 LatexCommand ref
28364 reference "sub:Entorno-align-estándar"
28365
28366 \end_inset
28367
28368 .
28369 \end_layout
28370
28371 \begin_layout Standard
28372 Hay otros entornos para fórmulas multilínea que se pueden introducir mediante
28373  el menú 
28374 \family sans
28375 Insertar\SpecialChar \menuseparator
28376 Ecuación
28377 \family default
28378 .
28379  En las siguientes secciones se describen estos entornos.
28380 \end_layout
28381
28382 \begin_layout Standard
28383 En todos los entornos de ecuación multilínea la combinación 
28384 \family sans
28385 Ctrl+Retorno
28386 \family default
28387  genera una línea nueva.
28388  Para añadir o quitar líneas se pueden usar los botones 
28389 \begin_inset Graphics
28390         filename ../../images/tabular-feature_append-row.png
28391         scale 85
28392
28393 \end_inset
28394
28395  o 
28396 \begin_inset Graphics
28397         filename ../../images/tabular-feature_delete-row.png
28398         scale 85
28399
28400 \end_inset
28401
28402 de la barra de herramientas, respectivamente, o el menú 
28403 \family sans
28404 Editar\SpecialChar \menuseparator
28405 Filas y columnas
28406 \family default
28407 .
28408 \end_layout
28409
28410 \begin_layout Subsubsection
28411 Separación de líneas
28412 \begin_inset CommandInset label
28413 LatexCommand label
28414 name "sub:Separación-de-líneas"
28415
28416 \end_inset
28417
28418
28419 \begin_inset Index idx
28420 status collapsed
28421
28422 \begin_layout Plain Layout
28423 Ecuación ! multilínea ! separación de filas
28424 \end_layout
28425
28426 \end_inset
28427
28428
28429 \end_layout
28430
28431 \begin_layout Standard
28432 A veces no hay suficiente espacio entre las líneas de una ecuación multilínea:
28433 \begin_inset Formula \begin{eqnarray*}
28434 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}\\
28435 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
28436 \end{eqnarray*}
28437
28438 \end_inset
28439
28440 En LaTeX un espacio adicional para una línea se especifica como argumento
28441  opcional del comando de nueva línea.
28442  Esto aún no es posible en LYX,
28443 \begin_inset Foot
28444 status collapsed
28445
28446 \begin_layout Plain Layout
28447 véase 
28448 \begin_inset CommandInset href
28449 LatexCommand href
28450 name "LyX-bug #1505"
28451 target "http://www.lyx.org/trac/ticket/1505"
28452
28453 \end_inset
28454
28455
28456 \end_layout
28457
28458 \end_inset
28459
28460  por lo que toda la ecuación debe insertarse en modo TeX.
28461  Para añadir espacio en nuestro ejemplo se inserta el comando 
28462 \series bold
28463
28464 \backslash
28465
28466 \backslash
28467 [3mm]
28468 \series default
28469  al final de la primera línea.
28470  Así: 
28471 \begin_inset ERT
28472 status collapsed
28473
28474 \begin_layout Plain Layout
28475
28476
28477 \backslash
28478 begin{eqnarray*}
28479 \end_layout
28480
28481 \begin_layout Plain Layout
28482
28483 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28484  = & 
28485 \backslash
28486 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28487 \backslash
28488
28489 \backslash
28490 [3mm]
28491 \end_layout
28492
28493 \begin_layout Plain Layout
28494
28495 4x^{2}
28496 \backslash
28497 left(B^{2}+x_{0}^{2}
28498 \backslash
28499 right)+4x_{0}x
28500 \backslash
28501 left(D-B^{2}
28502 \backslash
28503 right)+B^{2}
28504 \backslash
28505 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28506 \backslash
28507 right) & = & 0
28508 \end_layout
28509
28510 \begin_layout Plain Layout
28511
28512
28513 \backslash
28514 end{eqnarray*}
28515 \end_layout
28516
28517 \end_inset
28518
28519
28520 \begin_inset VSpace bigskip
28521 \end_inset
28522
28523
28524 \end_layout
28525
28526 \begin_layout Standard
28527 Para obtener separación en todas las líneas hay que cambiar la longitud
28528  
28529 \series bold
28530
28531 \backslash
28532 jot
28533 \series default
28534
28535 \begin_inset Index idx
28536 status collapsed
28537
28538 \begin_layout Plain Layout
28539 Comandos ! J ! 
28540 \backslash
28541 jot
28542 \end_layout
28543
28544 \end_inset
28545
28546 .
28547  La definición es: 
28548 \begin_inset Formula $\mbox{separación de línea}=\mathrm{6\, pt+\backslash jot}$
28549 \end_inset
28550
28551 .
28552  El valor predeterminado para 
28553 \series bold
28554
28555 \backslash
28556 jot
28557 \series default
28558  es 3
28559 \begin_inset space \thinspace{}
28560 \end_inset
28561
28562 pt.
28563  Para establecer una separación adicional de 3
28564 \begin_inset space \thinspace{}
28565 \end_inset
28566
28567 mm como en el ejemplo anterior, se inserta el comando
28568 \end_layout
28569
28570 \begin_layout Standard
28571
28572 \series bold
28573
28574 \backslash
28575 setlength{
28576 \backslash
28577 jot}{3mm+3pt}
28578 \end_layout
28579
28580 \begin_layout Standard
28581 en modo TeX antes de la ecuación.
28582  Es necesario cargar el paquete 
28583 \series bold
28584 calc
28585 \series default
28586
28587 \begin_inset Foot
28588 status collapsed
28589
28590 \begin_layout Plain Layout
28591
28592 \series bold
28593 calc
28594 \series default
28595  forma parte de toda instalación LaTeX estándar.
28596 \end_layout
28597
28598 \end_inset
28599
28600
28601 \begin_inset Index idx
28602 status collapsed
28603
28604 \begin_layout Plain Layout
28605 Paquetes ! calc
28606 \end_layout
28607
28608 \end_inset
28609
28610  en el preámbulo con la línea
28611 \end_layout
28612
28613 \begin_layout Standard
28614
28615 \series bold
28616
28617 \backslash
28618 usepackage{calc}
28619 \end_layout
28620
28621 \begin_layout Standard
28622 Se obtiene:
28623 \begin_inset ERT
28624 status collapsed
28625
28626 \begin_layout Plain Layout
28627
28628
28629 \backslash
28630 setlength{
28631 \backslash
28632 jot}{3mm+3pt}
28633 \end_layout
28634
28635 \end_inset
28636
28637
28638 \begin_inset Formula \begin{eqnarray*}
28639 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}\\
28640 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
28641 \end{eqnarray*}
28642
28643 \end_inset
28644
28645
28646 \begin_inset ERT
28647 status collapsed
28648
28649 \begin_layout Plain Layout
28650
28651
28652 \backslash
28653 setlength{
28654 \backslash
28655 jot}{3pt}
28656 \end_layout
28657
28658 \end_inset
28659
28660  Para volver a la distancia predeterminada, 
28661 \series bold
28662
28663 \backslash
28664 jot
28665 \series default
28666  se establece en 3
28667 \begin_inset space \thinspace{}
28668 \end_inset
28669
28670 pt.
28671 \end_layout
28672
28673 \begin_layout Subsubsection
28674 Separación de columnas
28675 \begin_inset CommandInset label
28676 LatexCommand label
28677 name "sub:Separación-de-columnas"
28678
28679 \end_inset
28680
28681
28682 \begin_inset Index idx
28683 status collapsed
28684
28685 \begin_layout Plain Layout
28686 Ecuación ! multilínea !separación de columnas
28687 \end_layout
28688
28689 \end_inset
28690
28691
28692 \end_layout
28693
28694 \begin_layout Standard
28695 Una ecuación multilínea forma una matriz.
28696  Una ecuación en un entorno eqnarray, por ejemplo, es una matriz con tres
28697  columnas.
28698  Cambiando la separación de columnas en este entorno se puede cambiar el
28699  espacio junto al signo de relación.
28700 \end_layout
28701
28702 \begin_layout Standard
28703 La separación de columnas se especifica con la longitud
28704 \series bold
28705  
28706 \backslash
28707 arraycolsep
28708 \series default
28709
28710 \begin_inset Index idx
28711 status collapsed
28712
28713 \begin_layout Plain Layout
28714 Comandos ! A ! 
28715 \backslash
28716 arraycolsep
28717 \end_layout
28718
28719 \end_inset
28720
28721  según:
28722 \begin_inset Newline newline
28723 \end_inset
28724
28725 separación de columnas = 2
28726 \begin_inset space \thinspace{}
28727 \end_inset
28728
28729
28730 \series bold
28731
28732 \backslash
28733 arraycolsep
28734 \series default
28735
28736 \begin_inset Newline newline
28737 \end_inset
28738
28739 Así, el comando en modo TeX
28740 \end_layout
28741
28742 \begin_layout Standard
28743
28744 \series bold
28745
28746 \backslash
28747 setlength{
28748 \backslash
28749 arraycolsep}{1cm}
28750 \end_layout
28751
28752 \begin_layout Standard
28753 establece para todas las ecuaciones siguientes una separación de columnas
28754  de 2
28755 \begin_inset space \thinspace{}
28756 \end_inset
28757
28758 cm.
28759  Para volver al valor predefinido, 
28760 \series bold
28761
28762 \backslash
28763 arraycolsep
28764 \series default
28765  se pone en 5
28766 \begin_inset space \thinspace{}
28767 \end_inset
28768
28769 pt.
28770 \end_layout
28771
28772 \begin_layout Standard
28773 Una ecuación con separación de 2
28774 \begin_inset space \thinspace{}
28775 \end_inset
28776
28777 cm entre columnas:
28778 \begin_inset ERT
28779 status collapsed
28780
28781 \begin_layout Plain Layout
28782
28783
28784 \backslash
28785 setlength{
28786 \backslash
28787 arraycolsep}{1cm}
28788 \end_layout
28789
28790 \end_inset
28791
28792
28793 \begin_inset Formula \begin{eqnarray*}
28794 A & = & B\\
28795 C & \ne & A
28796 \end{eqnarray*}
28797
28798 \end_inset
28799
28800 Una ecuación con la separación predefinida para matrices, 10
28801 \begin_inset space \thinspace{}
28802 \end_inset
28803
28804 pt:
28805 \begin_inset ERT
28806 status collapsed
28807
28808 \begin_layout Plain Layout
28809
28810
28811 \backslash
28812 setlength{
28813 \backslash
28814 arraycolsep}{5pt}
28815 \end_layout
28816
28817 \end_inset
28818
28819
28820 \begin_inset Formula \begin{eqnarray*}
28821 A & = & B\\
28822 C & \ne & A
28823 \end{eqnarray*}
28824
28825 \end_inset
28826
28827
28828 \end_layout
28829
28830 \begin_layout Subsubsection
28831 Ecuaciones largas
28832 \begin_inset Index idx
28833 status collapsed
28834
28835 \begin_layout Plain Layout
28836 Ecuación ! larga
28837 \end_layout
28838
28839 \end_inset
28840
28841
28842 \end_layout
28843
28844 \begin_layout Standard
28845 Se pueden componer ecuaciones largas mediante estos métodos:
28846 \end_layout
28847
28848 \begin_layout Itemize
28849 Si un lado de la ecuación es mucho más corto que la anchura de línea, este
28850  se elige para el lado izquierdo y el derecho se imprime en dos líneas:
28851 \begin_inset Formula \begin{eqnarray}
28852 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 \\
28853  &  & -\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:cortolargo}
28854 \end{eqnarray}
28855
28856 \end_inset
28857
28858 El signo menos al principio de la segunda línea normalmente no aparece como
28859  operador porque es el primer carácter de la línea.
28860  No se rodearía de espacio y podría no distinguirse de la raya de fracción.
28861  Para evitarlo se ha insertado 3
28862 \begin_inset space \thinspace{}
28863 \end_inset
28864
28865 pt de espacio detrás del menos con el comando 
28866 \series bold
28867
28868 \backslash
28869 hspace
28870 \series default
28871 .
28872 \begin_inset Foot
28873 status collapsed
28874
28875 \begin_layout Plain Layout
28876 véase más sobre 
28877 \series bold
28878
28879 \backslash
28880 hspace
28881 \series default
28882  en 
28883 \begin_inset CommandInset ref
28884 LatexCommand ref
28885 reference "sub:Espacio-variable"
28886
28887 \end_inset
28888
28889
28890 \end_layout
28891
28892 \end_inset
28893
28894
28895 \begin_inset Index idx
28896 status collapsed
28897
28898 \begin_layout Plain Layout
28899 Comandos ! H ! 
28900 \backslash
28901 hspace
28902 \end_layout
28903
28904 \end_inset
28905
28906
28907 \end_layout
28908
28909 \begin_layout Itemize
28910 Si ambos lados de la ecuación son demasiado largos se usa el comando 
28911 \series bold
28912
28913 \backslash
28914 lefteqn
28915 \series default
28916
28917 \begin_inset Index idx
28918 status collapsed
28919
28920 \begin_layout Plain Layout
28921 Comandos ! L ! 
28922 \backslash
28923 lefteqn
28924 \end_layout
28925
28926 \end_inset
28927
28928 .
28929  Se inserta en la primer columna de la primera línea y hace que todas las
28930  inserciones posteriores sobreescriban las columnas siguientes:
28931 \begin_inset Formula \begin{eqnarray}
28932 \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 \\
28933  &  & -\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 \\
28934  &  & =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}
28935 \end{eqnarray}
28936
28937 \end_inset
28938
28939 Tras la inserción de 
28940 \series bold
28941
28942 \backslash
28943 lefteqn
28944 \series default
28945  el cursor está en un marco púrpura un poco a la izquierda del azul.
28946  La ecuación se inserta en éste.
28947 \begin_inset Newline newline
28948 \end_inset
28949
28950 El contenido de las restantes líneas se inserta en la segunda columna o
28951  en otra.
28952  A mayor número de columna donde se inserte, mayor sangrado.
28953 \begin_inset VSpace medskip
28954 \end_inset
28955
28956
28957 \begin_inset Newline newline
28958 \end_inset
28959
28960
28961 \begin_inset Note Greyedout
28962 status collapsed
28963
28964 \begin_layout Plain Layout
28965 Ten en cuenta lo siguiente si usas 
28966 \series bold
28967
28968 \backslash
28969 lefteqn
28970 \series default
28971 :
28972 \end_layout
28973
28974 \begin_layout Itemize
28975 La ecuación no usa la anchura total de la página.
28976  Cuando se añade, p.
28977 \begin_inset space \thinspace{}
28978 \end_inset
28979
28980 e., el término 
28981 \begin_inset Formula $-B^{2}$
28982 \end_inset
28983
28984  en la primera línea del ejemplo, debería estar fuera del margen.
28985  Para aprovechar mejor la anchura, se puede insertar espacio negativo al
28986  principio de la primera línea.
28987 \end_layout
28988
28989 \begin_layout Itemize
28990 Debido a un fallo en LyX el cursor no se puede poner con el ratón en la
28991  primera línea.
28992 \begin_inset Foot
28993 status collapsed
28994
28995 \begin_layout Plain Layout
28996 \begin_inset CommandInset href
28997 LatexCommand href
28998 name "LyX-bug #1429"
28999 target "http://www.lyx.org/trac/ticket/1429"
29000
29001 \end_inset
29002
29003
29004 \end_layout
29005
29006 \end_inset
29007
29008  Sólo se puede poner el cursor al principio de la línea y moverlo con las
29009  teclas de flecha.
29010 \end_layout
29011
29012 \end_inset
29013
29014  
29015 \end_layout
29016
29017 \begin_layout Itemize
29018 Se describen otros métodos para escribir fórmulas largas en 
29019 \begin_inset CommandInset ref
29020 LatexCommand ref
29021 reference "sub:Entorno-multilínea"
29022
29023 \end_inset
29024
29025  y 
29026 \begin_inset CommandInset ref
29027 LatexCommand ref
29028 reference "sub:Partes-de-una-multilínea"
29029
29030 \end_inset
29031
29032 .
29033 \end_layout
29034
29035 \begin_layout Subsubsection
29036 Delimitadores multilínea
29037 \begin_inset CommandInset label
29038 LatexCommand label
29039 name "sub:Delimitadores-multilínea"
29040
29041 \end_inset
29042
29043
29044 \begin_inset Index idx
29045 status collapsed
29046
29047 \begin_layout Plain Layout
29048 Delimitadores ! para varias líneas
29049 \end_layout
29050
29051 \end_inset
29052
29053
29054 \end_layout
29055
29056 \begin_layout Standard
29057 Para poner delimitadores que cubran varias líneas hay un problema:
29058 \begin_inset Formula \begin{eqnarray*}
29059 A & = & \sen(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
29060  &  & \left.\cdots+B-D\right]
29061 \end{eqnarray*}
29062
29063 \end_inset
29064
29065 El delimitador de cierre es más pequeño que el de apertura porque los delimitado
29066 res con tamaño variable no abarcan líneas múltiples.
29067 \end_layout
29068
29069 \begin_layout Standard
29070 Para obtener el tamaño adecuado de delimitador para la segunda línea, la
29071  primera línea se finaliza con 
29072 \series bold
29073
29074 \backslash
29075 right.
29076 \series default
29077
29078 \begin_inset Index idx
29079 status collapsed
29080
29081 \begin_layout Plain Layout
29082 Comandos ! R ! 
29083 \backslash
29084 right
29085 \end_layout
29086
29087 \end_inset
29088
29089  y la segunda con 
29090 \series bold
29091
29092 \backslash
29093 left.
29094 \series default
29095 .
29096 \begin_inset Foot
29097 status collapsed
29098
29099 \begin_layout Plain Layout
29100 Más sobre 
29101 \series bold
29102
29103 \backslash
29104 left.
29105
29106 \series default
29107  y 
29108 \series bold
29109
29110 \backslash
29111 right.
29112
29113 \series default
29114  en 
29115 \begin_inset CommandInset ref
29116 LatexCommand ref
29117 reference "sub:Tamaño-automático-de"
29118
29119 \end_inset
29120
29121
29122 \end_layout
29123
29124 \end_inset
29125
29126
29127 \begin_inset Index idx
29128 status collapsed
29129
29130 \begin_layout Plain Layout
29131 Comandos ! L ! 
29132 \backslash
29133 left
29134 \end_layout
29135
29136 \end_inset
29137
29138  Después de 
29139 \series bold
29140
29141 \backslash
29142 left.
29143
29144 \series default
29145  se inserta el comando 
29146 \series bold
29147
29148 \backslash
29149 vphantom
29150 \series default
29151
29152 \begin_inset ERT
29153 status collapsed
29154
29155 \begin_layout Plain Layout
29156
29157
29158 \backslash
29159 spce 
29160 \end_layout
29161
29162 \end_inset
29163
29164
29165 \series bold
29166
29167 \backslash
29168 prod
29169 \series default
29170 ^
29171 \begin_inset ERT
29172 status collapsed
29173
29174 \begin_layout Plain Layout
29175
29176
29177 \backslash
29178 spce 
29179 \end_layout
29180
29181 \end_inset
29182
29183
29184 \series bold
29185
29186 \backslash
29187 infty
29188 \series default
29189
29190 \begin_inset ERT
29191 status collapsed
29192
29193 \begin_layout Plain Layout
29194
29195
29196 \backslash
29197 spce 
29198 \end_layout
29199
29200 \end_inset
29201
29202
29203 \series bold
29204
29205 \begin_inset Formula $\downarrow$
29206 \end_inset
29207
29208 _R=1}
29209 \series default
29210
29211 \begin_inset Index idx
29212 status collapsed
29213
29214 \begin_layout Plain Layout
29215 Comandos ! V ! 
29216 \backslash
29217 vphantom
29218 \end_layout
29219
29220 \end_inset
29221
29222 , porque el operador de multiplicación con sus límites es el símbolo mayor
29223  en la primera línea y ese debería ser el tamaño para el delimitador en
29224  la segunda línea.
29225 \end_layout
29226
29227 \begin_layout Standard
29228 El resultado es: 
29229 \begin_inset Formula \begin{eqnarray*}
29230 A & = & \sen(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
29231  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
29232 \end{eqnarray*}
29233
29234 \end_inset
29235
29236
29237 \end_layout
29238
29239 \begin_layout Subsection
29240 Entornos align
29241 \end_layout
29242
29243 \begin_layout Standard
29244 Los entornos align se pueden usar para todo tipo de ecuaciones multilínea.
29245  Son especialmente apropiados para poner ecuaciones adosadas.
29246 \end_layout
29247
29248 \begin_layout Standard
29249 Los entornos align constan de columnas.
29250  Las columnas impares se alinean a la derecha, las pares a la izquierda.
29251  En un entorno align se puede numerar cada línea.
29252 \end_layout
29253
29254 \begin_layout Standard
29255 Los entornos align se crean con el menú 
29256 \family sans
29257 Insertar\SpecialChar \menuseparator
29258 Ecuación
29259 \family default
29260 .
29261  Una ecuación existente se puede convertir a align con el menú 
29262 \family sans
29263 Editar\SpecialChar \menuseparator
29264 Ecuación\SpecialChar \menuseparator
29265 Cambiar tipo de ecuación
29266 \family default
29267 .
29268 \end_layout
29269
29270 \begin_layout Standard
29271 Para añadir o quitar columnas se pueden usar los botones 
29272 \begin_inset Graphics
29273         filename ../../images/tabular-feature_append-row.png
29274         scale 85
29275
29276 \end_inset
29277
29278  o 
29279 \begin_inset Graphics
29280         filename ../../images/tabular-feature_delete-row.png
29281         scale 85
29282
29283 \end_inset
29284
29285 de la barra de ecuaciones o el menú 
29286 \family sans
29287 Editar\SpecialChar \menuseparator
29288 Filas y columnas
29289 \family default
29290 .
29291 \end_layout
29292
29293 \begin_layout Subsubsection
29294 Entorno align estándar
29295 \begin_inset CommandInset label
29296 LatexCommand label
29297 name "sub:Entorno-align-estándar"
29298
29299 \end_inset
29300
29301
29302 \begin_inset Index idx
29303 status collapsed
29304
29305 \begin_layout Plain Layout
29306 Ecuación ! multilínea ! entorno align
29307 \end_layout
29308
29309 \end_inset
29310
29311
29312 \end_layout
29313
29314 \begin_layout Standard
29315 Este entorno align se crea pulsando 
29316 \family sans
29317 Ctrl+Retorno
29318 \family default
29319  en una ecuación o con el menú 
29320 \family sans
29321 Insertar\SpecialChar \menuseparator
29322 Ecuación\SpecialChar \menuseparator
29323 Entorno AMS align
29324 \family default
29325 .
29326 \end_layout
29327
29328 \begin_layout Standard
29329 Un ejemplo para dos ecuaciones adosadas, que se componen con un entorno
29330  align de cuatro columnas:
29331 \begin_inset Formula \begin{align*}
29332 A & =\sen(B) & C & =D\\
29333 C & \neq A & B & \neq D
29334 \end{align*}
29335
29336 \end_inset
29337
29338 Como se puede ver, las ecuaciones en este entorno se colocan como si hubiera
29339  un 
29340 \series bold
29341
29342 \backslash
29343 hfill
29344 \series default
29345
29346 \begin_inset Foot
29347 status collapsed
29348
29349 \begin_layout Plain Layout
29350 Más sobre 
29351 \series bold
29352
29353 \backslash
29354 hfill
29355 \series default
29356  en 
29357 \begin_inset CommandInset ref
29358 LatexCommand ref
29359 reference "sub:Espacio-variable"
29360
29361 \end_inset
29362
29363
29364 \end_layout
29365
29366 \end_inset
29367
29368  antes de la primera y detrás de cada columna par.
29369  Si se pone en estilo 
29370 \series bold
29371 Sangrado
29372 \series default
29373 ,
29374 \begin_inset Foot
29375 status collapsed
29376
29377 \begin_layout Plain Layout
29378 véase estilos de ecuación en 
29379 \begin_inset CommandInset ref
29380 LatexCommand ref
29381 reference "sec:Estilos-de-ecuación"
29382
29383 \end_inset
29384
29385
29386 \end_layout
29387
29388 \end_inset
29389
29390  la ecuación queda sin el 
29391 \series bold
29392
29393 \backslash
29394 hfill
29395 \series default
29396  ante la primera columna.
29397 \end_layout
29398
29399 \begin_layout Subsubsection
29400 Entorno alignat
29401 \begin_inset Index idx
29402 status collapsed
29403
29404 \begin_layout Plain Layout
29405 Ecuación ! multilínea ! entorno alignat
29406 \end_layout
29407
29408 \end_inset
29409
29410
29411 \end_layout
29412
29413 \begin_layout Standard
29414 El entorno alignat no tiene separación predefinida de columnas.
29415  Se puede insertar manualmente con los espacios descritos en 
29416 \begin_inset CommandInset ref
29417 LatexCommand ref
29418 reference "sec:Espacio"
29419
29420 \end_inset
29421
29422 .
29423 \end_layout
29424
29425 \begin_layout Standard
29426 El ejemplo anterior en el entorno alignat, con un espacio de 1
29427 \begin_inset space \thinspace{}
29428 \end_inset
29429
29430 cm al comienzo da la segunda ecuación:
29431 \begin_inset Formula \begin{alignat*}{2}
29432 A & =\sen(B)\hspace{1cm} & C & =D\\
29433 C & \neq A & B & \neq D
29434 \end{alignat*}
29435
29436 \end_inset
29437
29438 Como cada columna puede tener un espacio diferente, este entorno es especialment
29439 e apropiado para poner tres o más ecuaciones adosadas.
29440 \end_layout
29441
29442 \begin_layout Subsubsection
29443 Entorno flalign
29444 \begin_inset CommandInset label
29445 LatexCommand label
29446 name "sub:Entorno-flalign"
29447
29448 \end_inset
29449
29450
29451 \begin_inset Index idx
29452 status collapsed
29453
29454 \begin_layout Plain Layout
29455 Ecuación ! multilínea ! entorno flalign
29456 \end_layout
29457
29458 \end_inset
29459
29460
29461 \end_layout
29462
29463 \begin_layout Standard
29464 En este entorno las dos primeras columnas están siempre tan a la izquierda
29465  como sea posible y las dos últimas a la derecha.
29466  Ejemplo:
29467 \begin_inset Formula \begin{flalign*}
29468 A & =1 & B & =2 & C & =3\\
29469 X & =\mbox{-}1 & Y & =\mbox{-}2 & Z & =4
29470 \end{flalign*}
29471
29472 \end_inset
29473
29474 En un entorno flalign con un número impar de columnas, en la última de las
29475  cuales se inserta una llave TeX vacía, se pueden poner varias ecuaciones
29476  alineadas a la izquierda, aunque se use el estilo 
29477 \series bold
29478 Centrado
29479 \series default
29480 .
29481  Un ejemplo de fórmula sangrada 
29482 \begin_inset CommandInset ref
29483 LatexCommand eqref
29484 reference "eq:IntVol"
29485
29486 \end_inset
29487
29488 :
29489 \begin_inset Formula \begin{flalign}
29490 \hspace{30pt}\iiint_{V}X\mbox{d}V & =U & {}\end{flalign}
29491
29492 \end_inset
29493
29494 Las dos primeras columnas contienen la fórmula.
29495  Para sangrarla como con el estilo 
29496 \series bold
29497 Sangrado
29498 \series default
29499 , se añade un espacio de 30
29500 \begin_inset space \thinspace{}
29501 \end_inset
29502
29503 pt al comienzo de la primera columna.
29504  
29505 \end_layout
29506
29507 \begin_layout Subsection
29508 Entorno eqnarray
29509 \begin_inset CommandInset label
29510 LatexCommand label
29511 name "sub:Entorno-eqnarray"
29512
29513 \end_inset
29514
29515
29516 \begin_inset Index idx
29517 status collapsed
29518
29519 \begin_layout Plain Layout
29520 Ecuación ! multilínea ! entorno eqnarray
29521 \end_layout
29522
29523 \end_inset
29524
29525
29526 \begin_inset Index idx
29527 status collapsed
29528
29529 \begin_layout Plain Layout
29530 Ecuación ! multilínea ! entorno eqnarray
29531 \end_layout
29532
29533 \end_inset
29534
29535
29536 \end_layout
29537
29538 \begin_layout Standard
29539 Al introducir este entorno aparecen tres marcos azules.
29540  El contenido del primero se alinea a la derecha, el del último a la izquierda.
29541  El contenido del marco central está centrado y algo más pequeño, porque
29542  está diseñado para insertar sólo caracteres de relación.
29543 \begin_inset Formula \begin{eqnarray*}
29544 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29545 AB & AB & AB\\
29546 A & = & A
29547 \end{eqnarray*}
29548
29549 \end_inset
29550
29551
29552 \end_layout
29553
29554 \begin_layout Subsection
29555 Entorno gather
29556 \begin_inset Index idx
29557 status collapsed
29558
29559 \begin_layout Plain Layout
29560 Ecuación ! multilínea ! entorno gather
29561 \end_layout
29562
29563 \end_inset
29564
29565
29566 \end_layout
29567
29568 \begin_layout Standard
29569 Este entorno consta de una sola columna centrada.
29570  Se puede numerar cada línea.
29571 \begin_inset Formula \begin{gather}
29572 A=1\\
29573 X=\mbox{-}1
29574 \end{gather}
29575
29576 \end_inset
29577
29578
29579 \end_layout
29580
29581 \begin_layout Subsection
29582 Entorno multilínea
29583 \begin_inset CommandInset label
29584 LatexCommand label
29585 name "sub:Entorno-multilínea"
29586
29587 \end_inset
29588
29589
29590 \begin_inset Index idx
29591 status collapsed
29592
29593 \begin_layout Plain Layout
29594 Ecuación ! multilínea ! entorno multilínea
29595 \end_layout
29596
29597 \end_inset
29598
29599
29600 \end_layout
29601
29602 \begin_layout Standard
29603 El entorno multilínea, como gather, consta de una sola columna.
29604  Pero la primera línea está alineada a la izquierda, la última a la derecha.
29605  Las demás están centradas.
29606  Por tanto este entorno es apropiado para ecuaciones largas.
29607  Como ejemplo, la ecuación
29608 \begin_inset space ~
29609 \end_inset
29610
29611
29612 \begin_inset CommandInset ref
29613 LatexCommand eqref
29614 reference "eq:lefteqn"
29615
29616 \end_inset
29617
29618  en entorno multilínea:
29619 \begin_inset Formula \begin{multline}
29620 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}\\
29621 -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}\\
29622 =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}}
29623 \end{multline}
29624
29625 \end_inset
29626
29627 En la salida sólo aparece numerada la última (primera) línea si la numeración
29628  del documento es a la derecha (izquierda).
29629 \begin_inset Foot
29630 status collapsed
29631
29632 \begin_layout Plain Layout
29633 véanse los estilos de numeración en 
29634 \begin_inset CommandInset ref
29635 LatexCommand ref
29636 reference "sec:Estilos-de-ecuación"
29637
29638 \end_inset
29639
29640
29641 \end_layout
29642
29643 \end_inset
29644
29645
29646 \end_layout
29647
29648 \begin_layout Standard
29649 Con los comandos 
29650 \series bold
29651
29652 \backslash
29653 shoveright
29654 \series default
29655
29656 \begin_inset Index idx
29657 status collapsed
29658
29659 \begin_layout Plain Layout
29660 Comandos ! S ! 
29661 \backslash
29662 shoveright
29663 \end_layout
29664
29665 \end_inset
29666
29667  y 
29668 \series bold
29669
29670 \backslash
29671 shoveleft
29672 \series default
29673
29674 \begin_inset Index idx
29675 status collapsed
29676
29677 \begin_layout Plain Layout
29678 Comandos ! S ! 
29679 \backslash
29680 shoveleft
29681 \end_layout
29682
29683 \end_inset
29684
29685 , una línea centrada se puede alinear a la derecha o a la izquierda, respectivam
29686 ente.
29687  Los comandos se usan como sigue:
29688 \end_layout
29689
29690 \begin_layout Standard
29691
29692 \series bold
29693
29694 \backslash
29695 shoveright{contenido de la línea}
29696 \series default
29697  y 
29698 \series bold
29699
29700 \backslash
29701 shoveleft{contenido de la línea}
29702 \end_layout
29703
29704 \begin_layout Standard
29705 \begin_inset VSpace medskip
29706 \end_inset
29707
29708
29709 \end_layout
29710
29711 \begin_layout Standard
29712 La longitud 
29713 \series bold
29714
29715 \backslash
29716 multlinegap
29717 \series default
29718
29719 \begin_inset Index idx
29720 status collapsed
29721
29722 \begin_layout Plain Layout
29723 Comandos ! M ! 
29724 \backslash
29725 multlinegap
29726 \end_layout
29727
29728 \end_inset
29729
29730  especifica la distancia de la primera línea desde el margen izquierdo de
29731  la página.
29732  Esta longitud es 0
29733 \begin_inset space \thinspace{}
29734 \end_inset
29735
29736 pt por omisión.
29737 \end_layout
29738
29739 \begin_layout Standard
29740 Como ejemplo la ecuación anterior con el comando
29741 \end_layout
29742
29743 \begin_layout Standard
29744
29745 \series bold
29746
29747 \backslash
29748 setlength{
29749 \backslash
29750 multlinegap}{2cm}
29751 \end_layout
29752
29753 \begin_layout Standard
29754 insertado previamente en modo TeX:
29755 \begin_inset ERT
29756 status collapsed
29757
29758 \begin_layout Plain Layout
29759
29760
29761 \backslash
29762 setlength{
29763 \backslash
29764 multlinegap}{2cm}
29765 \end_layout
29766
29767 \end_inset
29768
29769
29770 \begin_inset Formula \begin{multline}
29771 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}\\
29772 \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}}\\
29773 =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}}
29774 \end{multline}
29775
29776 \end_inset
29777
29778
29779 \begin_inset ERT
29780 status collapsed
29781
29782 \begin_layout Plain Layout
29783
29784
29785 \backslash
29786 setlength{
29787 \backslash
29788 multlinegap}{0pt}
29789 \end_layout
29790
29791 \end_inset
29792
29793 La segunda línea se ha alineado a la izquierda con 
29794 \series bold
29795
29796 \backslash
29797 shoveleft
29798 \series default
29799 .
29800 \end_layout
29801
29802 \begin_layout Subsection
29803 Partes de una ecuación multilínea
29804 \begin_inset CommandInset label
29805 LatexCommand label
29806 name "sub:Partes-de-una-multilínea"
29807
29808 \end_inset
29809
29810
29811 \begin_inset Index idx
29812 status collapsed
29813
29814 \begin_layout Plain Layout
29815 Ecuación ! multilínea ! partes de
29816 \end_layout
29817
29818 \end_inset
29819
29820
29821 \end_layout
29822
29823 \begin_layout Standard
29824 Para mostrar sólo partes de una ecuación multilínea usa uno de los siguientes
29825  entornos: 
29826 \series bold
29827 aligned
29828 \series default
29829
29830 \series bold
29831 alignedat
29832 \series default
29833
29834 \series bold
29835 gathered
29836 \series default
29837  o 
29838 \series bold
29839 split
29840 \series default
29841 .
29842  Se pueden elegir en el menú 
29843 \family sans
29844 Insertar\SpecialChar \menuseparator
29845 Ecuación
29846 \family default
29847  o usando los comandos aquí descritos.
29848 \end_layout
29849
29850 \begin_layout Standard
29851 Los tres primeros tienen las mismas propiedades que los correspondientes
29852  entornos multilínea, pero es posible poner al lado más partes de la ecuación.
29853  Un ejemplo:
29854 \begin_inset Formula \[
29855 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29856 \Delta E\Delta t & \ge\frac{\hbar}{2}
29857 \end{aligned}
29858 \right\} \mbox{Relaciones de incertidumbre}\]
29859
29860 \end_inset
29861
29862 Para componer esta expresión se inserta una ecuación presentada y en ella
29863  se introduce el comando 
29864 \series bold
29865
29866 \backslash
29867 aligned
29868 \series default
29869
29870 \begin_inset Index idx
29871 status collapsed
29872
29873 \begin_layout Plain Layout
29874 Comandos ! A ! 
29875 \backslash
29876 aligned
29877 \end_layout
29878
29879 \end_inset
29880
29881 .
29882  Aparece un marco púrpura alrededor del marco azul en el que ahora se pueden
29883  añadir filas y columnas.
29884  Fuera del entorno multilínea se pueden poner otras partes de la ecuación,
29885  como la llave.
29886 \end_layout
29887
29888 \begin_layout Standard
29889 El entorno aligned también es apropiado para ecuaciones largas cuyas líneas
29890  se alinean horizontalmente.
29891  Usar aligned en una ecuación presentada tiene la ventaja de que el número
29892  de ecuación se centra verticalmente con las líneas.
29893  Como ejemplo, la ecuación 
29894 \begin_inset CommandInset ref
29895 LatexCommand eqref
29896 reference "eq:cortolargo"
29897
29898 \end_inset
29899
29900  en entorno aligned: 
29901 \begin_inset Formula \begin{equation}
29902 \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}|}\\
29903  & -\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}|}
29904 \end{aligned}
29905 \end{equation}
29906
29907 \end_inset
29908
29909 Para usar los entornos 
29910 \series bold
29911 alignedat
29912 \series default
29913
29914 \series bold
29915 gathered
29916 \series default
29917 , o 
29918 \series bold
29919 split
29920 \series default
29921 , se insertan respectivamente los comandos
29922 \series bold
29923  
29924 \backslash
29925 alignedat
29926 \series default
29927 ,
29928 \begin_inset Index idx
29929 status collapsed
29930
29931 \begin_layout Plain Layout
29932 Comandos ! A ! 
29933 \backslash
29934 alignedat
29935 \end_layout
29936
29937 \end_inset
29938
29939  
29940 \series bold
29941
29942 \backslash
29943 gathered
29944 \series default
29945
29946 \begin_inset Index idx
29947 status collapsed
29948
29949 \begin_layout Plain Layout
29950 Comandos ! G ! 
29951 \backslash
29952 gathered
29953 \end_layout
29954
29955 \end_inset
29956
29957 , o 
29958 \series bold
29959
29960 \backslash
29961 split
29962 \series default
29963
29964 \begin_inset Index idx
29965 status collapsed
29966
29967 \begin_layout Plain Layout
29968 Comandos ! S ! 
29969 \backslash
29970 split
29971 \end_layout
29972
29973 \end_inset
29974
29975 .
29976  El entorno split tiene las mismas propiedades que aligned pero sólo puede
29977  tener dos columnas.
29978 \end_layout
29979
29980 \begin_layout Subsection
29981 Texto en ecuaciones multilínea
29982 \begin_inset CommandInset label
29983 LatexCommand label
29984 name "sub:Texto-en-multilínea"
29985
29986 \end_inset
29987
29988
29989 \begin_inset Index idx
29990 status collapsed
29991
29992 \begin_layout Plain Layout
29993 Texto ! en ecuaciones
29994 \end_layout
29995
29996 \end_inset
29997
29998
29999 \begin_inset Index idx
30000 status collapsed
30001
30002 \begin_layout Plain Layout
30003 Ecuación ! multilínea ! texto en
30004 \end_layout
30005
30006 \end_inset
30007
30008
30009 \end_layout
30010
30011 \begin_layout Standard
30012 En los entornos Align, multilínea y gather, se puede insertar texto que
30013  se mostrará en una línea separada y que no afecta la alineación de columna.
30014  Para esto se usa el comando 
30015 \series bold
30016
30017 \backslash
30018 intertext
30019 \series default
30020
30021 \begin_inset Index idx
30022 status collapsed
30023
30024 \begin_layout Plain Layout
30025 Comandos ! I ! 
30026 \backslash
30027 intertext
30028 \end_layout
30029
30030 \end_inset
30031
30032  con el siguiente esquema:
30033 \end_layout
30034
30035 \begin_layout Standard
30036
30037 \series bold
30038
30039 \backslash
30040 intertext{texto}
30041 \end_layout
30042
30043 \begin_layout Standard
30044 El texto no debería ocupar más de una línea porque no se puede partir con
30045  guión.
30046  Como LyX aún no soporta 
30047 \series bold
30048
30049 \backslash
30050 intertext
30051 \series default
30052  directamente, el texto se escribe como texto matemático.
30053  
30054 \series bold
30055
30056 \backslash
30057 intertext
30058 \series default
30059  debe por tanto estar al comienzo de una línea y en la salida se presenta
30060  sobre esta línea.
30061  Un ejemplo en el que se ha insertado texto al inicio de la segunda línea:
30062 \begin_inset Formula \begin{align}
30063 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
30064 \intertext{\text{el integrando es simétrico para \ensuremath{\phi=\pi}, por tanto}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
30065 \end{align}
30066
30067 \end_inset
30068
30069
30070 \end_layout
30071
30072 \begin_layout Standard
30073 \begin_inset Newpage newpage
30074 \end_inset
30075
30076
30077 \end_layout
30078
30079 \begin_layout Section
30080 Numeración de ecuaciones
30081 \begin_inset Index idx
30082 status collapsed
30083
30084 \begin_layout Plain Layout
30085 Ecuación ! numeración|see
30086 \begin_inset ERT
30087 status collapsed
30088
30089 \begin_layout Plain Layout
30090
30091 {
30092 \end_layout
30093
30094 \end_inset
30095
30096 Numeración de ecuaciones
30097 \begin_inset ERT
30098 status collapsed
30099
30100 \begin_layout Plain Layout
30101
30102 }
30103 \end_layout
30104
30105 \end_inset
30106
30107
30108 \end_layout
30109
30110 \end_inset
30111
30112
30113 \begin_inset Index idx
30114 status collapsed
30115
30116 \begin_layout Plain Layout
30117 Numeración de ecuaciones
30118 \end_layout
30119
30120 \end_inset
30121
30122
30123 \end_layout
30124
30125 \begin_layout Subsection
30126 General
30127 \end_layout
30128
30129 \begin_layout Standard
30130 Las ecuaciones numeradas se insertan con el menú 
30131 \family sans
30132 Insertar\SpecialChar \menuseparator
30133 Ecuación
30134 \family default
30135  
30136 \family sans
30137 \SpecialChar \menuseparator
30138 Ecuación
30139 \begin_inset space ~
30140 \end_inset
30141
30142 numerada
30143 \family default
30144  (atajo 
30145 \family sans
30146 Ctrl+Alt
30147 \begin_inset space ~
30148 \end_inset
30149
30150 N
30151 \family default
30152 ).
30153  Ecuaciones existentes se pueden numerar con el menú 
30154 \family sans
30155 Editar\SpecialChar \menuseparator
30156 Ecuación\SpecialChar \menuseparator
30157 Conmutar
30158 \begin_inset space ~
30159 \end_inset
30160
30161 numeración
30162 \family default
30163  (atajo
30164 \family sans
30165  Alt+M
30166 \begin_inset space ~
30167 \end_inset
30168
30169 N
30170 \family default
30171 ).
30172  En LyX se muestra detrás de la ecuación el signo almohadilla entre paréntesis.
30173  En la salida se muestra el número real.
30174 \end_layout
30175
30176 \begin_layout Standard
30177 Si se activa la numeración en ecuaciones multilínea se numerarán todas las
30178  líneas.
30179  No obstante, la numeración se puede controlar en cada línea con el menú
30180  
30181 \family sans
30182 Editar\SpecialChar \menuseparator
30183 Ecuación\SpecialChar \menuseparator
30184 Conmutar
30185 \begin_inset space ~
30186 \end_inset
30187
30188 numeración
30189 \begin_inset space ~
30190 \end_inset
30191
30192 de
30193 \begin_inset space ~
30194 \end_inset
30195
30196 línea
30197 \family default
30198  (atajo
30199 \family sans
30200  Alt+M
30201 \begin_inset space ~
30202 \end_inset
30203
30204 Mayúsculas+N
30205 \family default
30206 ).
30207 \end_layout
30208
30209 \begin_layout Standard
30210 Todas las ecuaciones, excepto en línea, pueden numerarse con dos estilos
30211  distintos, véase 
30212 \begin_inset CommandInset ref
30213 LatexCommand ref
30214 reference "sec:Estilos-de-ecuación"
30215
30216 \end_inset
30217
30218 .
30219 \end_layout
30220
30221 \begin_layout Subsection
30222 Referencias cruzadas
30223 \begin_inset Index idx
30224 status collapsed
30225
30226 \begin_layout Plain Layout
30227 Ecuación ! referencias cruzadas a
30228 \end_layout
30229
30230 \end_inset
30231
30232
30233 \end_layout
30234
30235 \begin_layout Standard
30236 Todas las ecuaciones con etiqueta se pueden referenciar.
30237  La etiqueta se añade con el menú 
30238 \family sans
30239 Insertar\SpecialChar \menuseparator
30240 Etiqueta
30241 \family default
30242  o con el botón 
30243 \begin_inset Graphics
30244         filename ../../images/label-insert.png
30245         scale 85
30246
30247 \end_inset
30248
30249  de la barra de herramientas.
30250  El cursor debe estar dentro de una ecuación en modo presentación.
30251  Surge un diálogo con el prefijo 
30252 \series bold
30253 eq:
30254 \series default
30255 , detrás del cual se escribe el texto de la etiqueta.
30256  El prefijo significa 
30257 \begin_inset Quotes fld
30258 \end_inset
30259
30260 equation
30261 \begin_inset Quotes frd
30262 \end_inset
30263
30264  y hace más fácil encontrar etiquetas en documentos extensos porque así
30265  se distingue p.
30266 \begin_inset space \thinspace{}
30267 \end_inset
30268
30269 e.
30270 \begin_inset space ~
30271 \end_inset
30272
30273 de las etiquetas de sección.
30274  Para cambiar una etiqueta se usa de nuevo el menú 
30275 \family sans
30276 Insertar\SpecialChar \menuseparator
30277 Etiqueta
30278 \family default
30279 .
30280 \end_layout
30281
30282 \begin_layout Standard
30283 En LyX, el nombre de la etiqueta se muestra entre paréntesis detrás de la
30284  ecuación.
30285  Una ecuación con etiqueta se numera siempre.
30286 \end_layout
30287
30288 \begin_layout Standard
30289 Las referencias cruzadas se insertan mediante el menú 
30290 \family sans
30291 Insertar\SpecialChar \menuseparator
30292 Referencia cruzada
30293 \family default
30294  o con el botón 
30295 \begin_inset Graphics
30296         filename ../../images/dialog-show-new-inset_ref.png
30297         scale 85
30298
30299 \end_inset
30300
30301 .
30302  Una referencia a una ecuación aparece en la salida con su número.
30303  Si en el diálogo de referencia cruzada se elige el formato 
30304 \series bold
30305 (<referencia>)
30306 \series default
30307 , la referencia se muestra en la salida entre paréntesis.
30308  
30309 \begin_inset Newline newline
30310 \end_inset
30311
30312 En LyX, pulsando clic derecho sobre una referencia cruzada el cursor salta
30313  a la ecuación de referencia.
30314 \end_layout
30315
30316 \begin_layout Standard
30317 He aquí ejemplos de referencias cruzadas a ecuaciones de las subsecciones
30318  siguientes:
30319 \begin_inset Note Note
30320 status collapsed
30321
30322 \begin_layout Plain Layout
30323 Observa los distintos tipos de referencias cruzadas.
30324 \end_layout
30325
30326 \end_inset
30327
30328
30329 \end_layout
30330
30331 \begin_layout Standard
30332 Las ecuaciones 
30333 \begin_inset CommandInset ref
30334 LatexCommand eqref
30335 reference "eq:tag"
30336
30337 \end_inset
30338
30339  y 
30340 \begin_inset CommandInset ref
30341 LatexCommand eqref
30342 reference "eq:c"
30343
30344 \end_inset
30345
30346  son equivalentes.
30347  En (
30348 \begin_inset CommandInset ref
30349 LatexCommand ref
30350 reference "eq:Lat"
30351
30352 \end_inset
30353
30354 ) se usan mayúsculas latinas para la numeración, a diferencia de (
30355 \begin_inset CommandInset ref
30356 LatexCommand ref
30357 reference "eq:Rom"
30358
30359 \end_inset
30360
30361 ).
30362 \begin_inset VSpace medskip
30363 \end_inset
30364
30365
30366 \end_layout
30367
30368 \begin_layout Standard
30369 Si el argumento de 
30370 \series bold
30371
30372 \backslash
30373 tag
30374 \begin_inset Foot
30375 status collapsed
30376
30377 \begin_layout Plain Layout
30378
30379 \series bold
30380
30381 \backslash
30382 tag
30383 \series default
30384  se describe en 
30385 \begin_inset CommandInset ref
30386 LatexCommand ref
30387 reference "sub:Numeración-personalizada"
30388
30389 \end_inset
30390
30391
30392 \end_layout
30393
30394 \end_inset
30395
30396
30397 \series default
30398  contiene un marco, como se describe en la 
30399 \begin_inset CommandInset ref
30400 LatexCommand ref
30401 reference "sub:Cuadros-de-párrafo"
30402
30403 \end_inset
30404
30405 , no se puede referenciar la ecuación.
30406 \end_layout
30407
30408 \begin_layout Subsection
30409 Subnumeración
30410 \begin_inset Index idx
30411 status collapsed
30412
30413 \begin_layout Plain Layout
30414 Numeración de ecuaciones ! subnumeración
30415 \end_layout
30416
30417 \end_inset
30418
30419
30420 \end_layout
30421
30422 \begin_layout Standard
30423 Con ayuda de los comandos 
30424 \series bold
30425
30426 \backslash
30427 begin{subequations}
30428 \series default
30429  y 
30430 \series bold
30431
30432 \backslash
30433 end{subequations}
30434 \series default
30435  en modo TeX se pueden subnumerar ecuaciones.
30436 \end_layout
30437
30438 \begin_layout Standard
30439 Ejemplo:
30440 \begin_inset Formula \begin{equation}
30441 A=C-B\label{eq:a}\end{equation}
30442
30443 \end_inset
30444
30445
30446 \begin_inset ERT
30447 status collapsed
30448
30449 \begin_layout Plain Layout
30450
30451
30452 \backslash
30453 addtocounter{equation}{-1}
30454 \end_layout
30455
30456 \end_inset
30457
30458
30459 \begin_inset ERT
30460 status collapsed
30461
30462 \begin_layout Plain Layout
30463
30464
30465 \backslash
30466 begin{subequations}
30467 \end_layout
30468
30469 \end_inset
30470
30471
30472 \begin_inset VSpace -5mm
30473 \end_inset
30474
30475
30476 \begin_inset Formula \begin{equation}
30477 B=C-A\label{eq:b}\end{equation}
30478
30479 \end_inset
30480
30481
30482 \begin_inset Formula \begin{equation}
30483 C=A+B\label{eq:c}\end{equation}
30484
30485 \end_inset
30486
30487
30488 \end_layout
30489
30490 \begin_layout Standard
30491 \begin_inset ERT
30492 status collapsed
30493
30494 \begin_layout Plain Layout
30495
30496
30497 \backslash
30498 end{subequations}
30499 \end_layout
30500
30501 \end_inset
30502
30503
30504 \end_layout
30505
30506 \begin_layout Standard
30507 Para este ejemplo se ha hecho lo siguiente:
30508 \end_layout
30509
30510 \begin_layout Enumerate
30511 se inserta la primera ecuación
30512 \end_layout
30513
30514 \begin_layout Enumerate
30515 después de ella se inserta
30516 \series bold
30517
30518 \begin_inset Newline newline
30519 \end_inset
30520
30521
30522 \backslash
30523 addtocounter{equation}{-1} 
30524 \backslash
30525 begin{subequations}
30526 \begin_inset Index idx
30527 status collapsed
30528
30529 \begin_layout Plain Layout
30530 Comandos ! A ! 
30531 \backslash
30532 addtocounter
30533 \end_layout
30534
30535 \end_inset
30536
30537
30538 \end_layout
30539
30540 \begin_layout Enumerate
30541 se inserta la segunda ecuación
30542 \end_layout
30543
30544 \begin_layout Enumerate
30545 se inserta la tercera ecuación
30546 \end_layout
30547
30548 \begin_layout Enumerate
30549 se inserta 
30550 \series bold
30551
30552 \backslash
30553 end{subequations}
30554 \series default
30555  tras la tercera ecuación
30556 \end_layout
30557
30558 \begin_layout Standard
30559 Toda ecuación entre los comandos 
30560 \series bold
30561
30562 \backslash
30563 begin
30564 \series default
30565  y 
30566 \series bold
30567
30568 \backslash
30569 end
30570 \series default
30571  se subnumera con a, b, c\SpecialChar \ldots{}
30572  En ecuaciones multilínea se subnumerará cada línea.
30573  Todas las ecuaciones subnumeradas son tratadas como 
30574 \emph on
30575 una
30576 \emph default
30577  ecuación numerada.
30578  Pero como cada ecuación numerada aumenta el contador 
30579 \series bold
30580 equation
30581 \series default
30582  en uno, hay que disminuir el comando 
30583 \series bold
30584
30585 \backslash
30586 addtocounter
30587 \series default
30588 .
30589  De lo contrario, las ecuaciones 
30590 \begin_inset CommandInset ref
30591 LatexCommand eqref
30592 reference "eq:a"
30593
30594 \end_inset
30595
30596
30597 \begin_inset CommandInset ref
30598 LatexCommand eqref
30599 reference "eq:b"
30600
30601 \end_inset
30602
30603
30604 \begin_inset CommandInset ref
30605 LatexCommand eqref
30606 reference "eq:c"
30607
30608 \end_inset
30609
30610  se numerarían 
30611 \begin_inset CommandInset ref
30612 LatexCommand eqref
30613 reference "eq:a"
30614
30615 \end_inset
30616
30617
30618 \begin_inset CommandInset ref
30619 LatexCommand eqref
30620 reference "eq:d"
30621
30622 \end_inset
30623
30624
30625 \begin_inset CommandInset ref
30626 LatexCommand eqref
30627 reference "eq:f"
30628
30629 \end_inset
30630
30631 .
30632 \end_layout
30633
30634 \begin_layout Standard
30635 Al insertar los comandos en modo TeX se crea un espacio entre las dos primeras
30636  ecuaciones.
30637  Para evitarlo se inserta ese espacio vertical de -5
30638 \begin_inset space \thinspace{}
30639 \end_inset
30640
30641 mm detrás del comando 
30642 \series bold
30643
30644 \backslash
30645 begin{subequations}
30646 \series default
30647 .
30648
30649 \series bold
30650  
30651 \series default
30652 Si se usa el estilo 
30653 \series bold
30654 Sangrado
30655 \series default
30656
30657 \begin_inset Foot
30658 status collapsed
30659
30660 \begin_layout Plain Layout
30661 véase estilos de ecuación en 
30662 \begin_inset CommandInset ref
30663 LatexCommand ref
30664 reference "sec:Estilos-de-ecuación"
30665
30666 \end_inset
30667
30668
30669 \end_layout
30670
30671 \end_inset
30672
30673 , entonces se inserta -7
30674 \begin_inset space \thinspace{}
30675 \end_inset
30676
30677 mm.
30678 \end_layout
30679
30680 \begin_layout Standard
30681 Un ejemplo de ecuación multilínea en la que se ha eliminado la numeración
30682  de la segunda línea:
30683 \begin_inset ERT
30684 status collapsed
30685
30686 \begin_layout Plain Layout
30687
30688
30689 \backslash
30690 begin{subequations}
30691 \end_layout
30692
30693 \end_inset
30694
30695
30696 \begin_inset Formula \begin{eqnarray}
30697 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30698  & = & B^{2}-ZB-BZ+Z^{2}\nonumber \\
30699  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
30700 \end{eqnarray}
30701
30702 \end_inset
30703
30704
30705 \begin_inset ERT
30706 status collapsed
30707
30708 \begin_layout Plain Layout
30709
30710
30711 \backslash
30712 end{subequations}
30713 \end_layout
30714
30715 \end_inset
30716
30717
30718 \end_layout
30719
30720 \begin_layout Subsection
30721 Numeración definida por el usuario
30722 \begin_inset CommandInset label
30723 LatexCommand label
30724 name "sub:Numeración-personalizada"
30725
30726 \end_inset
30727
30728
30729 \begin_inset Index idx
30730 status collapsed
30731
30732 \begin_layout Plain Layout
30733 Numeración de ecuaciones ! personalizada
30734 \end_layout
30735
30736 \end_inset
30737
30738
30739 \end_layout
30740
30741 \begin_layout Standard
30742 Con la numeración estándar el número se coloca entre paréntesis.
30743  Para reemplazar los paréntesis con barras verticales, p.
30744 \begin_inset space \thinspace{}
30745 \end_inset
30746
30747 e., se añade al preámbulo LaTeX la línea: 
30748 \end_layout
30749
30750 \begin_layout Standard
30751
30752 \series bold
30753
30754 \backslash
30755 def
30756 \backslash
30757 tagform@#1{
30758 \backslash
30759 maketag@@@{|#1|}}
30760 \series default
30761
30762 \begin_inset Note Note
30763 status collapsed
30764
30765 \begin_layout Plain Layout
30766 Esta macro ya está declarada en el preámbulo LaTeX para pruebas.
30767  Para activarlo, quita el % del principio.
30768 \end_layout
30769
30770 \end_inset
30771
30772
30773 \end_layout
30774
30775 \begin_layout Standard
30776 Para usar otros caracteres, se reemplazan las barras al lado de 
30777 \series bold
30778 #1
30779 \series default
30780  por ellos.
30781  Para obtener sólo el número de ecuación se omiten las barras verticales.
30782 \begin_inset VSpace bigskip
30783 \end_inset
30784
30785
30786 \end_layout
30787
30788 \begin_layout Standard
30789 Si quieres poner una expresión entre paréntesis en vez del número de ecuación
30790  consecutivo, se usa el comando 
30791 \series bold
30792
30793 \backslash
30794 tag
30795 \begin_inset Index idx
30796 status collapsed
30797
30798 \begin_layout Plain Layout
30799 Comandos ! T ! 
30800 \backslash
30801 tag
30802 \end_layout
30803
30804 \end_inset
30805
30806
30807 \series default
30808 :
30809 \begin_inset Formula \begin{equation}
30810 A+B=C\tag{algo}\label{eq:tag}\end{equation}
30811
30812 \end_inset
30813
30814 En este ejemplo se ha insertado el comando
30815 \series bold
30816  
30817 \backslash
30818 tag
30819 \begin_inset ERT
30820 status collapsed
30821
30822 \begin_layout Plain Layout
30823
30824
30825 \backslash
30826 spce 
30827 \end_layout
30828
30829 \end_inset
30830
30831 algo
30832 \series default
30833  en la ecuación.
30834 \end_layout
30835
30836 \begin_layout Standard
30837 Si se usa en su lugar el comando con asterisco 
30838 \series bold
30839
30840 \backslash
30841 tag*
30842 \begin_inset ERT
30843 status collapsed
30844
30845 \begin_layout Plain Layout
30846
30847
30848 \backslash
30849 spce 
30850 \end_layout
30851
30852 \end_inset
30853
30854 algo
30855 \series default
30856  no se imprimen los paréntesis:
30857 \begin_inset Formula \[
30858 A+B=C\tag*{algo}\]
30859
30860 \end_inset
30861
30862
30863 \end_layout
30864
30865 \begin_layout Standard
30866 \begin_inset VSpace bigskip
30867 \end_inset
30868
30869
30870 \end_layout
30871
30872 \begin_layout Standard
30873 Para reiniciar la numeración en nuevas partes o secciones del documento
30874  se usan los siguientes comandos:
30875 \end_layout
30876
30877 \begin_layout Standard
30878
30879 \series bold
30880
30881 \backslash
30882 @addtoreset{equation}{part}
30883 \series default
30884
30885 \begin_inset Index idx
30886 status collapsed
30887
30888 \begin_layout Plain Layout
30889 Comandos ! 
30890 \begin_inset ERT
30891 status collapsed
30892
30893 \begin_layout Plain Layout
30894
30895 "
30896 \end_layout
30897
30898 \end_inset
30899
30900 @
30901 \begin_inset ERT
30902 status collapsed
30903
30904 \begin_layout Plain Layout
30905
30906 "
30907 \end_layout
30908
30909 \end_inset
30910
30911  ! 
30912 \backslash
30913
30914 \begin_inset ERT
30915 status collapsed
30916
30917 \begin_layout Plain Layout
30918
30919 "
30920 \end_layout
30921
30922 \end_inset
30923
30924 @
30925 \begin_inset ERT
30926 status collapsed
30927
30928 \begin_layout Plain Layout
30929
30930 "
30931 \end_layout
30932
30933 \end_inset
30934
30935 addtoreset
30936 \end_layout
30937
30938 \end_inset
30939
30940
30941 \begin_inset Newline newline
30942 \end_inset
30943
30944
30945 \series bold
30946
30947 \backslash
30948 @addtoreset{equation}{section}
30949 \end_layout
30950
30951 \begin_layout Standard
30952 Pata poder usar estos comandos en modo TeX, el carácter 
30953 \begin_inset Quotes fld
30954 \end_inset
30955
30956 @
30957 \begin_inset Quotes frd
30958 \end_inset
30959
30960  debe 
30961 \begin_inset Quotes fld
30962 \end_inset
30963
30964 activarse
30965 \begin_inset Quotes frd
30966 \end_inset
30967
30968  para LaTeX con el comando 
30969 \series bold
30970
30971 \backslash
30972 makeatletter
30973 \series default
30974 .
30975  El comando 
30976 \series bold
30977
30978 \backslash
30979 makeatother
30980 \series default
30981  deshace esto.
30982  Así pues, la secuencia de comandos en modo TeX es:
30983 \end_layout
30984
30985 \begin_layout Standard
30986
30987 \series bold
30988
30989 \backslash
30990 makeatletter
30991 \begin_inset Newline newline
30992 \end_inset
30993
30994
30995 \backslash
30996 @addtoreset{equation}{section}
30997 \begin_inset Newline newline
30998 \end_inset
30999
31000
31001 \backslash
31002 makeatother
31003 \end_layout
31004
31005 \begin_layout Standard
31006 En el preámbulo LaTeX se pueden omitir 
31007 \series bold
31008
31009 \backslash
31010 makeatletter
31011 \series default
31012  y 
31013 \series bold
31014
31015 \backslash
31016 makeatother
31017 \series default
31018  pues son automáticamente insertados por LyX.
31019 \end_layout
31020
31021 \begin_layout Standard
31022 Para el comando 
31023 \series bold
31024
31025 \backslash
31026 @addtoreset
31027 \series default
31028 ,
31029 \series bold
31030  
31031 \series default
31032 hay que cargar en el preámbulo LaTeX el archivo 
31033 \series bold
31034 remreset.sty
31035 \series default
31036
31037 \begin_inset Foot
31038 status collapsed
31039
31040 \begin_layout Plain Layout
31041
31042 \series bold
31043 remreset
31044 \series default
31045  es parte del paquete LaTeX 
31046 \series bold
31047 carlisle
31048 \series default
31049
31050 \begin_inset Index idx
31051 status collapsed
31052
31053 \begin_layout Plain Layout
31054 Paquetes ! carlisle
31055 \end_layout
31056
31057 \end_inset
31058
31059 , incluido en las instalaciones estándar de LaTeX.
31060 \end_layout
31061
31062 \end_inset
31063
31064
31065 \begin_inset Index idx
31066 status collapsed
31067
31068 \begin_layout Plain Layout
31069 Paquetes ! remreset
31070 \end_layout
31071
31072 \end_inset
31073
31074  con la línea
31075 \end_layout
31076
31077 \begin_layout Standard
31078
31079 \series bold
31080
31081 \backslash
31082 usepackage{remreset}
31083 \end_layout
31084
31085 \begin_layout Standard
31086 Entonces se puede usar el comando 
31087 \series bold
31088
31089 \backslash
31090 @removefromreset
31091 \series default
31092
31093 \begin_inset Index idx
31094 status collapsed
31095
31096 \begin_layout Plain Layout
31097 Comandos ! 
31098 \begin_inset ERT
31099 status collapsed
31100
31101 \begin_layout Plain Layout
31102
31103 "
31104 \end_layout
31105
31106 \end_inset
31107
31108 @
31109 \begin_inset ERT
31110 status collapsed
31111
31112 \begin_layout Plain Layout
31113
31114 "
31115 \end_layout
31116
31117 \end_inset
31118
31119  ! 
31120 \backslash
31121
31122 \begin_inset ERT
31123 status collapsed
31124
31125 \begin_layout Plain Layout
31126
31127 "
31128 \end_layout
31129
31130 \end_inset
31131
31132 @
31133 \begin_inset ERT
31134 status collapsed
31135
31136 \begin_layout Plain Layout
31137
31138 "
31139 \end_layout
31140
31141 \end_inset
31142
31143 removefromreset
31144 \end_layout
31145
31146 \end_inset
31147
31148  con el mismo esquema que 
31149 \series bold
31150
31151 \backslash
31152 @addtoreset
31153 \series default
31154 .
31155 \begin_inset VSpace bigskip
31156 \end_inset
31157
31158
31159 \end_layout
31160
31161 \begin_layout Standard
31162 A veces las ecuaciones deberían numerarse de la siguiente manera:
31163 \end_layout
31164
31165 \begin_layout Standard
31166
31167 \family typewriter
31168 (número de sección.número de ecuación)
31169 \end_layout
31170
31171 \begin_layout Standard
31172 El número de ecuación empezaría con 
31173 \begin_inset Quotes fld
31174 \end_inset
31175
31176 1
31177 \begin_inset Quotes frd
31178 \end_inset
31179
31180  en cada sección.
31181 \end_layout
31182
31183 \begin_layout Standard
31184 Para este caso hay el comando 
31185 \series bold
31186
31187 \backslash
31188 numberwithin
31189 \series default
31190
31191 \begin_inset Index idx
31192 status collapsed
31193
31194 \begin_layout Plain Layout
31195 Comandos ! N ! 
31196 \backslash
31197 numberwithin
31198 \end_layout
31199
31200 \end_inset
31201
31202 , que se usa con el esquema:
31203 \end_layout
31204
31205 \begin_layout Standard
31206
31207 \series bold
31208
31209 \backslash
31210 numberwithin{counter}{sectioning}
31211 \end_layout
31212
31213 \begin_layout Standard
31214 \begin_inset Quotes fld
31215 \end_inset
31216
31217 counter
31218 \begin_inset Quotes frd
31219 \end_inset
31220
31221  indica qué clase de numeración es afectada, 
31222 \begin_inset Quotes fld
31223 \end_inset
31224
31225 sectioning
31226 \begin_inset Quotes frd
31227 \end_inset
31228
31229  indica qué número va delante del punto.
31230  
31231 \end_layout
31232
31233 \begin_layout Standard
31234 Así pues, en nuestro caso se ha usado la siguiente línea en código TeX o
31235  en el preámbulo LaTeX:
31236 \end_layout
31237
31238 \begin_layout Standard
31239
31240 \series bold
31241
31242 \backslash
31243 numberwithin{equation}{section}
31244 \end_layout
31245
31246 \begin_layout Standard
31247 Este es el resultado::
31248 \begin_inset ERT
31249 status collapsed
31250
31251 \begin_layout Plain Layout
31252
31253
31254 \backslash
31255 numberwithin{equation}{section}
31256 \end_layout
31257
31258 \end_inset
31259
31260
31261 \begin_inset Formula \begin{equation}
31262 A+B=C\end{equation}
31263
31264 \end_inset
31265
31266
31267 \end_layout
31268
31269 \begin_layout Standard
31270 Para numerar tablas de modo que, p.
31271 \begin_inset space \thinspace{}
31272 \end_inset
31273
31274 e., 
31275 \begin_inset Quotes fld
31276 \end_inset
31277
31278 sectioning
31279 \begin_inset Quotes frd
31280 \end_inset
31281
31282  sea el número de la parte se usa
31283 \begin_inset Newline newline
31284 \end_inset
31285
31286
31287 \series bold
31288
31289 \backslash
31290 numberwithin{table}{part}
31291 \end_layout
31292
31293 \begin_layout Standard
31294 Para volver a la numeración estándar o evitar esta clase numeración cuando
31295  es definida por la clase de documento, se inserta el siguiente comando
31296  en código TeX o en el preámbulo LaTeX:
31297 \end_layout
31298
31299 \begin_layout Standard
31300
31301 \series bold
31302
31303 \backslash
31304 renewcommand{
31305 \backslash
31306 theequation}{
31307 \backslash
31308 arabic{equation}}
31309 \begin_inset Index idx
31310 status collapsed
31311
31312 \begin_layout Plain Layout
31313 Comandos ! A ! 
31314 \backslash
31315 arabic
31316 \end_layout
31317
31318 \end_inset
31319
31320
31321 \series default
31322
31323 \begin_inset ERT
31324 status collapsed
31325
31326 \begin_layout Plain Layout
31327
31328
31329 \backslash
31330 renewcommand{
31331 \backslash
31332 theequation}{
31333 \backslash
31334 arabic{equation}}
31335 \end_layout
31336
31337 \end_inset
31338
31339
31340 \series bold
31341
31342 \begin_inset Newline newline
31343 \end_inset
31344
31345
31346 \series default
31347 o
31348 \series bold
31349
31350 \begin_inset Newline newline
31351 \end_inset
31352
31353
31354 \backslash
31355 renewcommand{
31356 \backslash
31357 thetable}{
31358 \backslash
31359 arabic{table}}
31360 \end_layout
31361
31362 \begin_layout Standard
31363
31364 \series bold
31365
31366 \backslash
31367 numberwithin
31368 \series default
31369  usa internamente el comando 
31370 \series bold
31371
31372 \backslash
31373 @addtoreset
31374 \series default
31375 , descrito arriba, que también debe ser restaurado.
31376 \begin_inset ERT
31377 status collapsed
31378
31379 \begin_layout Plain Layout
31380
31381
31382 \backslash
31383 makeatletter
31384 \end_layout
31385
31386 \begin_layout Plain Layout
31387
31388
31389 \backslash
31390 @removefromreset{equation}{section}
31391 \end_layout
31392
31393 \begin_layout Plain Layout
31394
31395
31396 \backslash
31397 makeatother
31398 \end_layout
31399
31400 \end_inset
31401
31402
31403 \end_layout
31404
31405 \begin_layout Subsection
31406 Numeración con números romanos y letras
31407 \begin_inset Index idx
31408 status collapsed
31409
31410 \begin_layout Plain Layout
31411 Numeración de ecuaciones ! con números romanos
31412 \end_layout
31413
31414 \end_inset
31415
31416
31417 \begin_inset Index idx
31418 status collapsed
31419
31420 \begin_layout Plain Layout
31421 Numeración de ecuaciones ! con letras
31422 \end_layout
31423
31424 \end_inset
31425
31426
31427 \end_layout
31428
31429 \begin_layout Standard
31430 Las ecuaciones también se pueden numerar con números romanos y letras latinas.
31431  Por ejemplo, para numerar con romanos en minúscula,
31432 \begin_inset Foot
31433 status collapsed
31434
31435 \begin_layout Plain Layout
31436 Como en español no se usan romanos en minúscula, el estilo 
31437 \series bold
31438 spanish
31439 \series default
31440  del sistema 
31441 \series bold
31442 babel
31443 \series default
31444  redefine 
31445 \series bold
31446
31447 \backslash
31448 roman
31449 \series default
31450  para que los dé en versalitas.
31451  Véase 
31452 \begin_inset CommandInset citation
31453 LatexCommand cite
31454 key "spanish"
31455
31456 \end_inset
31457
31458  (
31459 \emph on
31460 N.
31461 \begin_inset space \thinspace{}
31462 \end_inset
31463
31464 del t
31465 \emph default
31466 ).
31467 \end_layout
31468
31469 \end_inset
31470
31471  se inserta el comando
31472 \end_layout
31473
31474 \begin_layout Standard
31475
31476 \series bold
31477
31478 \backslash
31479 renewcommand{
31480 \backslash
31481 theequation}{
31482 \backslash
31483 roman{equation}}
31484 \end_layout
31485
31486 \begin_layout Standard
31487 antes de la ecuación en modo TeX.
31488  
31489 \series bold
31490
31491 \backslash
31492 renewcommand
31493 \series default
31494
31495 \begin_inset Index idx
31496 status collapsed
31497
31498 \begin_layout Plain Layout
31499 Comandos ! R ! 
31500 \backslash
31501 renewcommand
31502 \end_layout
31503
31504 \end_inset
31505
31506  redefine el comando predefinido 
31507 \series bold
31508
31509 \backslash
31510 theequation
31511 \series default
31512  como 
31513 \series bold
31514
31515 \backslash
31516 roman{equation}
31517 \series default
31518 .
31519 \begin_inset Foot
31520 status collapsed
31521
31522 \begin_layout Plain Layout
31523 El comando 
31524 \series bold
31525
31526 \backslash
31527 renewcommand
31528 \series default
31529  tiene el mismo esquema que el comando 
31530 \series bold
31531
31532 \backslash
31533 newcommand
31534 \series default
31535 , descrito en 
31536 \begin_inset CommandInset ref
31537 LatexCommand ref
31538 reference "sub:El-comando-newcommand"
31539
31540 \end_inset
31541
31542 .
31543 \end_layout
31544
31545 \end_inset
31546
31547  
31548 \series bold
31549 equation
31550 \series default
31551  es el contador de ecuaciones.
31552  Si se usa el comando 
31553 \series bold
31554
31555 \backslash
31556 the
31557 \series default
31558  como prefijo de un contador, el valor del contador sale en números arábigos.
31559  Si una ecuación es numerada, LaTeX pone internamente el comando 
31560 \series bold
31561
31562 \backslash
31563 theequation
31564 \series default
31565  detrás de la ecuación.
31566  
31567 \series bold
31568
31569 \backslash
31570 roman{equation}
31571 \series default
31572
31573 \begin_inset Index idx
31574 status collapsed
31575
31576 \begin_layout Plain Layout
31577 Comandos ! R ! 
31578 \backslash
31579 roman
31580 \end_layout
31581
31582 \end_inset
31583
31584  pone el contador en romanos en minúscula.
31585 \end_layout
31586
31587 \begin_layout Standard
31588 Todas las ecuaciones siguientes a 
31589 \series bold
31590
31591 \backslash
31592 renew
31593 \series default
31594 c
31595 \series bold
31596 ommand
31597 \series default
31598  se numerarán en romanos.
31599  Para cambiar a números romanos en mayúscula se inserta de nuevo el comando,
31600  cambiando 
31601 \series bold
31602
31603 \backslash
31604 roman
31605 \series default
31606  por 
31607 \series bold
31608
31609 \backslash
31610 Roman
31611 \series default
31612
31613 \begin_inset Index idx
31614 status collapsed
31615
31616 \begin_layout Plain Layout
31617 Comandos ! R ! 
31618 \backslash
31619 roman@
31620 \backslash
31621 Roman
31622 \end_layout
31623
31624 \end_inset
31625
31626 .
31627  Para 
31628 \begin_inset Quotes fld
31629 \end_inset
31630
31631 numerar
31632 \begin_inset Quotes frd
31633 \end_inset
31634
31635  con minúsculas latinas hay el comando 
31636 \series bold
31637
31638 \backslash
31639 alph
31640 \series default
31641
31642 \begin_inset Index idx
31643 status collapsed
31644
31645 \begin_layout Plain Layout
31646 Comandos ! A ! 
31647 \backslash
31648 alph
31649 \end_layout
31650
31651 \end_inset
31652
31653 , y para mayúsculas el comando 
31654 \series bold
31655
31656 \backslash
31657 Alph
31658 \series default
31659
31660 \begin_inset Index idx
31661 status collapsed
31662
31663 \begin_layout Plain Layout
31664 Comandos ! A ! 
31665 \backslash
31666 alph@
31667 \backslash
31668 Alph
31669 \end_layout
31670
31671 \end_inset
31672
31673 .
31674 \end_layout
31675
31676 \begin_layout Standard
31677 \begin_inset Note Greyedout
31678 status collapsed
31679
31680 \begin_layout Plain Layout
31681
31682 \series bold
31683 Nota:
31684 \series default
31685  Con letras latinas sólo se puede numerar hasta un máximo de 26 ecuaciones.
31686 \end_layout
31687
31688 \end_inset
31689
31690
31691 \end_layout
31692
31693 \begin_layout Standard
31694 \begin_inset ERT
31695 status collapsed
31696
31697 \begin_layout Plain Layout
31698
31699
31700 \backslash
31701 renewcommand{
31702 \backslash
31703 theequation}{
31704 \backslash
31705 roman{equation}}
31706 \end_layout
31707
31708 \end_inset
31709
31710
31711 \begin_inset Formula \begin{equation}
31712 A=\textrm{romanos en minúscula}\end{equation}
31713
31714 \end_inset
31715
31716
31717 \begin_inset ERT
31718 status collapsed
31719
31720 \begin_layout Plain Layout
31721
31722
31723 \backslash
31724 renewcommand{
31725 \backslash
31726 theequation}{
31727 \backslash
31728 Roman{equation}}
31729 \end_layout
31730
31731 \end_inset
31732
31733
31734 \begin_inset Formula \begin{equation}
31735 B=\textrm{romanos en mayúscula}\label{eq:Rom}\end{equation}
31736
31737 \end_inset
31738
31739
31740 \begin_inset ERT
31741 status collapsed
31742
31743 \begin_layout Plain Layout
31744
31745
31746 \backslash
31747 renewcommand{
31748 \backslash
31749 theequation}{
31750 \backslash
31751 alph{equation}}
31752 \end_layout
31753
31754 \end_inset
31755
31756
31757 \begin_inset Formula \begin{equation}
31758 C=\textrm{latinas en minúscula}\end{equation}
31759
31760 \end_inset
31761
31762
31763 \begin_inset ERT
31764 status collapsed
31765
31766 \begin_layout Plain Layout
31767
31768
31769 \backslash
31770 renewcommand{
31771 \backslash
31772 theequation}{
31773 \backslash
31774 Alph{equation}}
31775 \end_layout
31776
31777 \end_inset
31778
31779
31780 \begin_inset Formula \begin{equation}
31781 D=\textrm{latinas en mayúscula}\label{eq:Lat}\end{equation}
31782
31783 \end_inset
31784
31785
31786 \end_layout
31787
31788 \begin_layout Standard
31789 Para volver a la numeración por omisión se inserta el comando:
31790 \end_layout
31791
31792 \begin_layout Standard
31793
31794 \series bold
31795
31796 \backslash
31797 renewcommand{
31798 \backslash
31799 theequation}{
31800 \backslash
31801 arabic{equation}}
31802 \begin_inset Index idx
31803 status collapsed
31804
31805 \begin_layout Plain Layout
31806 Comandos ! A ! 
31807 \backslash
31808 arabic
31809 \end_layout
31810
31811 \end_inset
31812
31813
31814 \end_layout
31815
31816 \begin_layout Standard
31817 \begin_inset ERT
31818 status collapsed
31819
31820 \begin_layout Plain Layout
31821
31822
31823 \backslash
31824 renewcommand{
31825 \backslash
31826 theequation}{
31827 \backslash
31828 arabic{equation}}
31829 \end_layout
31830
31831 \end_inset
31832
31833
31834 \begin_inset Formula \begin{equation}
31835 E=\mbox{arábigos}\end{equation}
31836
31837 \end_inset
31838
31839
31840 \end_layout
31841
31842 \begin_layout Standard
31843 \begin_inset VSpace medskip
31844 \end_inset
31845
31846
31847 \end_layout
31848
31849 \begin_layout Standard
31850 Como ves, las ecuaciones se numeran consecutivamente independientemente
31851  del estilo de numeración.
31852  Cuando la numeración haya de empezar con 
31853 \begin_inset Quotes fld
31854 \end_inset
31855
31856 1
31857 \begin_inset Quotes frd
31858 \end_inset
31859
31860  al cambiar el estilo, hay que definir nuevos contadores de ecuación.
31861  Una descripción sobre esto se encuentra en el archivo 
31862 \begin_inset CommandInset href
31863 LatexCommand href
31864 name "Formula-numbering.lyx"
31865 target "run:Formula-numbering.lyx"
31866
31867 \end_inset
31868
31869 .
31870 \end_layout
31871
31872 \begin_layout Section
31873 Símbolos y ecuaciones químicas
31874 \begin_inset CommandInset label
31875 LatexCommand label
31876 name "sub:Símbolos-y-ecuaciones-químicas"
31877
31878 \end_inset
31879
31880
31881 \begin_inset Index idx
31882 status collapsed
31883
31884 \begin_layout Plain Layout
31885 Química ! símbolos
31886 \end_layout
31887
31888 \end_inset
31889
31890
31891 \begin_inset Index idx
31892 status collapsed
31893
31894 \begin_layout Plain Layout
31895 Química ! caracteres
31896 \end_layout
31897
31898 \end_inset
31899
31900
31901 \begin_inset Index idx
31902 status collapsed
31903
31904 \begin_layout Plain Layout
31905 Ecuación ! química|see
31906 \begin_inset ERT
31907 status collapsed
31908
31909 \begin_layout Plain Layout
31910
31911 {
31912 \end_layout
31913
31914 \end_inset
31915
31916 Química
31917 \begin_inset ERT
31918 status collapsed
31919
31920 \begin_layout Plain Layout
31921
31922 }
31923 \end_layout
31924
31925 \end_inset
31926
31927
31928 \end_layout
31929
31930 \end_inset
31931
31932
31933 \begin_inset Index idx
31934 status collapsed
31935
31936 \begin_layout Plain Layout
31937 Química ! iones
31938 \end_layout
31939
31940 \end_inset
31941
31942
31943 \begin_inset Index idx
31944 status collapsed
31945
31946 \begin_layout Plain Layout
31947 Iones|see
31948 \begin_inset ERT
31949 status collapsed
31950
31951 \begin_layout Plain Layout
31952
31953 {
31954 \end_layout
31955
31956 \end_inset
31957
31958 Química
31959 \begin_inset ERT
31960 status collapsed
31961
31962 \begin_layout Plain Layout
31963
31964 }
31965 \end_layout
31966
31967 \end_inset
31968
31969
31970 \end_layout
31971
31972 \end_inset
31973
31974
31975 \begin_inset Index idx
31976 status collapsed
31977
31978 \begin_layout Plain Layout
31979 Química ! reacción
31980 \end_layout
31981
31982 \end_inset
31983
31984
31985 \end_layout
31986
31987 \begin_layout Standard
31988 Un ejemplo de texto de química:
31989 \end_layout
31990
31991 \begin_layout Quote
31992 El ión 
31993 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31994 \end_inset
31995
31996  reacciona con dos iones 
31997 \begin_inset Formula $\mathrm{Na^{+}}$
31998 \end_inset
31999
32000  para dar sulfato de sodio 
32001 \begin_inset Formula $\mathrm{(Na_{2}SO_{4})}$
32002 \end_inset
32003
32004 .
32005  La ecuación química es:
32006 \begin_inset Formula \begin{equation}
32007 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:reaccion-quimica}\end{equation}
32008
32009 \end_inset
32010
32011
32012 \end_layout
32013
32014 \begin_layout Standard
32015 Esta ecuación química puede componerse directamente en modo ecuación.
32016  Para evitar que los símbolos se impriman en cursiva, se selecciona todo
32017  y con el atajo 
32018 \family sans
32019 Alt+C
32020 \begin_inset space ~
32021 \end_inset
32022
32023 R
32024 \family default
32025  se cambia en redonda.
32026 \begin_inset Foot
32027 status collapsed
32028
32029 \begin_layout Plain Layout
32030 véase estilos de fuentes en 
32031 \begin_inset CommandInset ref
32032 LatexCommand ref
32033 reference "sub:Estilos-de-fuentes"
32034
32035 \end_inset
32036
32037 .
32038 \end_layout
32039
32040 \end_inset
32041
32042
32043 \end_layout
32044
32045 \begin_layout Standard
32046 Para escribir ecuaciones químicas es más conveniente usar el comando 
32047 \series bold
32048
32049 \backslash
32050 ce
32051 \series default
32052
32053 \begin_inset Index idx
32054 status collapsed
32055
32056 \begin_layout Plain Layout
32057 Comandos ! C ! 
32058 \backslash
32059 ce
32060 \end_layout
32061
32062 \end_inset
32063
32064 , que está disponible si está instalado el paquete LaTeX 
32065 \series bold
32066 mhchem
32067 \series default
32068
32069 \begin_inset Index idx
32070 status collapsed
32071
32072 \begin_layout Plain Layout
32073 Paquetes ! mhchem
32074 \end_layout
32075
32076 \end_inset
32077
32078 .
32079  Al insertar  
32080 \series bold
32081
32082 \backslash
32083 ce
32084 \series default
32085  en modo matemático aparece un nuevo marco azul en el que se pueden escribir
32086   ecuaciones químicas de una forma intuitiva.
32087 \end_layout
32088
32089 \begin_layout Standard
32090 \align center
32091 \begin_inset Tabular
32092 <lyxtabular version="3" rows="9" columns="2">
32093 <features tabularvalignment="middle">
32094 <column alignment="center" valignment="top" width="0">
32095 <column alignment="center" valignment="top" width="0">
32096 <row>
32097 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32098 \begin_inset Text
32099
32100 \begin_layout Plain Layout
32101 Comando
32102 \end_layout
32103
32104 \end_inset
32105 </cell>
32106 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32107 \begin_inset Text
32108
32109 \begin_layout Plain Layout
32110 Resultado
32111 \begin_inset Note Note
32112 status collapsed
32113
32114 \begin_layout Plain Layout
32115
32116 \series bold
32117
32118 \backslash
32119 raisebox
32120 \series default
32121  se usa sólo como espaciador
32122 \end_layout
32123
32124 \end_inset
32125
32126
32127 \end_layout
32128
32129 \end_inset
32130 </cell>
32131 </row>
32132 <row>
32133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32134 \begin_inset Text
32135
32136 \begin_layout Plain Layout
32137
32138 \backslash
32139 ce
32140 \begin_inset ERT
32141 status collapsed
32142
32143 \begin_layout Plain Layout
32144
32145
32146 \backslash
32147 spce 
32148 \end_layout
32149
32150 \end_inset
32151
32152 H2CO3
32153 \end_layout
32154
32155 \end_inset
32156 </cell>
32157 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32158 \begin_inset Text
32159
32160 \begin_layout Plain Layout
32161 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
32162 \end_inset
32163
32164
32165 \end_layout
32166
32167 \end_inset
32168 </cell>
32169 </row>
32170 <row>
32171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32172 \begin_inset Text
32173
32174 \begin_layout Plain Layout
32175
32176 \backslash
32177 ce
32178 \begin_inset ERT
32179 status collapsed
32180
32181 \begin_layout Plain Layout
32182
32183
32184 \backslash
32185 spce 
32186 \end_layout
32187
32188 \end_inset
32189
32190 SO4^2-
32191 \end_layout
32192
32193 \end_inset
32194 </cell>
32195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32196 \begin_inset Text
32197
32198 \begin_layout Plain Layout
32199 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
32200 \end_inset
32201
32202
32203 \end_layout
32204
32205 \end_inset
32206 </cell>
32207 </row>
32208 <row>
32209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32210 \begin_inset Text
32211
32212 \begin_layout Plain Layout
32213
32214 \backslash
32215 ce
32216 \begin_inset ERT
32217 status collapsed
32218
32219 \begin_layout Plain Layout
32220
32221
32222 \backslash
32223 spce 
32224 \end_layout
32225
32226 \end_inset
32227
32228 (NH4)2S
32229 \end_layout
32230
32231 \end_inset
32232 </cell>
32233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32234 \begin_inset Text
32235
32236 \begin_layout Plain Layout
32237 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
32238 \end_inset
32239
32240
32241 \end_layout
32242
32243 \end_inset
32244 </cell>
32245 </row>
32246 <row>
32247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32248 \begin_inset Text
32249
32250 \begin_layout Plain Layout
32251
32252 \backslash
32253 ce
32254 \begin_inset ERT
32255 status collapsed
32256
32257 \begin_layout Plain Layout
32258
32259
32260 \backslash
32261 spce 
32262 \end_layout
32263
32264 \end_inset
32265
32266 KCr(SO4)2.12H2O
32267 \end_layout
32268
32269 \end_inset
32270 </cell>
32271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32272 \begin_inset Text
32273
32274 \begin_layout Plain Layout
32275 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
32276 \end_inset
32277
32278
32279 \end_layout
32280
32281 \end_inset
32282 </cell>
32283 </row>
32284 <row>
32285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32286 \begin_inset Text
32287
32288 \begin_layout Plain Layout
32289
32290 \backslash
32291 ce
32292 \begin_inset ERT
32293 status collapsed
32294
32295 \begin_layout Plain Layout
32296
32297
32298 \backslash
32299 spce 
32300 \end_layout
32301
32302 \end_inset
32303
32304 A-B
32305 \backslash
32306 dbond
32307 \begin_inset ERT
32308 status collapsed
32309
32310 \begin_layout Plain Layout
32311
32312
32313 \backslash
32314 spce 
32315 \end_layout
32316
32317 \end_inset
32318
32319 C
32320 \backslash
32321 tbond
32322 \begin_inset ERT
32323 status collapsed
32324
32325 \begin_layout Plain Layout
32326
32327
32328 \backslash
32329 spce 
32330 \end_layout
32331
32332 \end_inset
32333
32334 D
32335 \end_layout
32336
32337 \end_inset
32338 </cell>
32339 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32340 \begin_inset Text
32341
32342 \begin_layout Plain Layout
32343 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
32344 \end_inset
32345
32346
32347 \end_layout
32348
32349 \end_inset
32350 </cell>
32351 </row>
32352 <row>
32353 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32354 \begin_inset Text
32355
32356 \begin_layout Plain Layout
32357
32358 \backslash
32359 ce
32360 \begin_inset ERT
32361 status collapsed
32362
32363 \begin_layout Plain Layout
32364
32365
32366 \backslash
32367 spce 
32368 \end_layout
32369
32370 \end_inset
32371
32372 ^227
32373 \begin_inset Formula $\downarrow$
32374 \end_inset
32375
32376 _90
32377 \begin_inset Formula $\to$
32378 \end_inset
32379
32380 Th+
32381 \end_layout
32382
32383 \end_inset
32384 </cell>
32385 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32386 \begin_inset Text
32387
32388 \begin_layout Plain Layout
32389 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
32390 \end_inset
32391
32392
32393 \end_layout
32394
32395 \end_inset
32396 </cell>
32397 </row>
32398 <row>
32399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32400 \begin_inset Text
32401
32402 \begin_layout Plain Layout
32403
32404 \backslash
32405 ce
32406 \begin_inset ERT
32407 status collapsed
32408
32409 \begin_layout Plain Layout
32410
32411
32412 \backslash
32413 spce 
32414 \end_layout
32415
32416 \end_inset
32417
32418 CO2
32419 \begin_inset ERT
32420 status collapsed
32421
32422 \begin_layout Plain Layout
32423
32424
32425 \backslash
32426 spce 
32427 \end_layout
32428
32429 \end_inset
32430
32431 +
32432 \begin_inset ERT
32433 status collapsed
32434
32435 \begin_layout Plain Layout
32436
32437
32438 \backslash
32439 spce 
32440 \end_layout
32441
32442 \end_inset
32443
32444 C
32445 \begin_inset ERT
32446 status collapsed
32447
32448 \begin_layout Plain Layout
32449
32450
32451 \backslash
32452 spce 
32453 \end_layout
32454
32455 \end_inset
32456
32457 <=>
32458 \begin_inset ERT
32459 status collapsed
32460
32461 \begin_layout Plain Layout
32462
32463
32464 \backslash
32465 spce 
32466 \end_layout
32467
32468 \end_inset
32469
32470 2CO
32471 \end_layout
32472
32473 \end_inset
32474 </cell>
32475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32476 \begin_inset Text
32477
32478 \begin_layout Plain Layout
32479 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
32480 \end_inset
32481
32482
32483 \end_layout
32484
32485 \end_inset
32486 </cell>
32487 </row>
32488 <row>
32489 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32490 \begin_inset Text
32491
32492 \begin_layout Plain Layout
32493
32494 \backslash
32495 ce
32496 \begin_inset ERT
32497 status collapsed
32498
32499 \begin_layout Plain Layout
32500
32501
32502 \backslash
32503 spce 
32504 \end_layout
32505
32506 \end_inset
32507
32508 CO2
32509 \begin_inset ERT
32510 status collapsed
32511
32512 \begin_layout Plain Layout
32513
32514
32515 \backslash
32516 spce 
32517 \end_layout
32518
32519 \end_inset
32520
32521 +
32522 \begin_inset ERT
32523 status collapsed
32524
32525 \begin_layout Plain Layout
32526
32527
32528 \backslash
32529 spce 
32530 \end_layout
32531
32532 \end_inset
32533
32534 C
32535 \begin_inset ERT
32536 status collapsed
32537
32538 \begin_layout Plain Layout
32539
32540
32541 \backslash
32542 spce 
32543 \end_layout
32544
32545 \end_inset
32546
32547 ->[
32548 \backslash
32549 alpha][
32550 \backslash
32551 beta]
32552 \begin_inset ERT
32553 status collapsed
32554
32555 \begin_layout Plain Layout
32556
32557
32558 \backslash
32559 spce 
32560 \end_layout
32561
32562 \end_inset
32563
32564 2CO}
32565 \end_layout
32566
32567 \end_inset
32568 </cell>
32569 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32570 \begin_inset Text
32571
32572 \begin_layout Plain Layout
32573 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
32574 \end_inset
32575
32576
32577 \end_layout
32578
32579 \end_inset
32580 </cell>
32581 </row>
32582 </lyxtabular>
32583
32584 \end_inset
32585
32586
32587 \end_layout
32588
32589 \begin_layout Standard
32590 \begin_inset Note Greyedout
32591 status open
32592
32593 \begin_layout Plain Layout
32594
32595 \series bold
32596 Nota:
32597 \series default
32598  Insertar una ecuación en un marco  
32599 \series bold
32600
32601 \backslash
32602 ce
32603 \series default
32604  provocará errores de LaTeX.
32605  En estos casos hay que usar código TeX, como en  
32606 \series bold
32607
32608 \backslash
32609 ce{$
32610 \backslash
32611 mu
32612 \backslash
32613 hyphen$Cl}
32614 \series default
32615
32616 \begin_inset ERT
32617 status collapsed
32618
32619 \begin_layout Plain Layout
32620
32621
32622 \backslash
32623 ce{$
32624 \backslash
32625 mu
32626 \backslash
32627 hyphen$Cl}
32628 \end_layout
32629
32630 \end_inset
32631
32632  
32633 \end_layout
32634
32635 \end_inset
32636
32637
32638 \end_layout
32639
32640 \begin_layout Standard
32641 El comando 
32642 \series bold
32643
32644 \backslash
32645 ce
32646 \series default
32647  para la ecuación
32648 \begin_inset space ~
32649 \end_inset
32650
32651
32652 \begin_inset CommandInset ref
32653 LatexCommand eqref
32654 reference "eq:reaccion-quimica"
32655
32656 \end_inset
32657
32658  es
32659 \begin_inset Newline newline
32660 \end_inset
32661
32662
32663 \series bold
32664  
32665 \backslash
32666 ce
32667 \begin_inset ERT
32668 status collapsed
32669
32670 \begin_layout Plain Layout
32671
32672
32673 \backslash
32674 spce 
32675 \end_layout
32676
32677 \end_inset
32678
32679 2Na+
32680 \begin_inset ERT
32681 status collapsed
32682
32683 \begin_layout Plain Layout
32684
32685
32686 \backslash
32687 spce 
32688 \end_layout
32689
32690 \end_inset
32691
32692 +
32693 \begin_inset ERT
32694 status collapsed
32695
32696 \begin_layout Plain Layout
32697
32698
32699 \backslash
32700 spce 
32701 \end_layout
32702
32703 \end_inset
32704
32705 SO4^2-
32706 \begin_inset ERT
32707 status collapsed
32708
32709 \begin_layout Plain Layout
32710
32711
32712 \backslash
32713 spce 
32714 \end_layout
32715
32716 \end_inset
32717
32718
32719 \begin_inset ERT
32720 status collapsed
32721
32722 \begin_layout Plain Layout
32723
32724
32725 \backslash
32726 spce 
32727 \end_layout
32728
32729 \end_inset
32730
32731 ->
32732 \begin_inset ERT
32733 status collapsed
32734
32735 \begin_layout Plain Layout
32736
32737
32738 \backslash
32739 spce 
32740 \end_layout
32741
32742 \end_inset
32743
32744 Na2SO4
32745 \end_layout
32746
32747 \begin_layout Standard
32748 Para componer ecuaciones químicas multilínea primero se crea una ecuación
32749  multilínea, tal como se describe en la 
32750 \begin_inset CommandInset ref
32751 LatexCommand ref
32752 reference "sec:Ecuaciones-multilínea"
32753
32754 \end_inset
32755
32756 .
32757  Después se utiliza el comando 
32758 \series bold
32759 /ce
32760 \series default
32761  en cada cuadrito azul de la ecuación.
32762  
32763 \begin_inset CommandInset ref
32764 LatexCommand eqref
32765 reference "eq:TEOS-reac-1"
32766
32767 \end_inset
32768
32769  y 
32770 \begin_inset CommandInset ref
32771 LatexCommand eqref
32772 reference "eq:TEOS-reac-2"
32773
32774 \end_inset
32775
32776  son un ejemplo de reacción química multifase en la que cada ecuación tiene
32777  su propio número.
32778 \begin_inset Formula \begin{eqnarray}
32779 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-reac-1}\\
32780 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-reac-2}
32781 \end{eqnarray}
32782
32783 \end_inset
32784
32785
32786 \end_layout
32787
32788 \begin_layout Standard
32789 Además de 
32790 \series bold
32791
32792 \backslash
32793 ce
32794 \series default
32795  el paquete 
32796 \series bold
32797 mhchem
32798 \series default
32799  suministra el comando 
32800 \series bold
32801
32802 \backslash
32803 cf
32804 \series default
32805
32806 \begin_inset Index idx
32807 status collapsed
32808
32809 \begin_layout Plain Layout
32810 Comandos ! C ! 
32811 \backslash
32812 cf
32813 \end_layout
32814
32815 \end_inset
32816
32817  que ha de utilizarse en casos especiales.
32818  Para más información sobre 
32819 \series bold
32820
32821 \backslash
32822 cf
32823 \series default
32824  y más ejemplos echa un vistazo a la documentación de 
32825 \series bold
32826 mhchem
32827 \series default
32828
32829 \begin_inset CommandInset citation
32830 LatexCommand cite
32831 key "mhchem"
32832
32833 \end_inset
32834
32835 .
32836 \end_layout
32837
32838 \begin_layout Section
32839 Diagramas
32840 \end_layout
32841
32842 \begin_layout Standard
32843 Lyx soporta dos tipos de diagramas conmutativos: 
32844 \series bold
32845 amscd
32846 \series default
32847  y 
32848 \series bold
32849 xymatrix
32850 \series default
32851 , que se explican a continuación.
32852 \end_layout
32853
32854 \begin_layout Subsection
32855 Diagramas amscd
32856 \begin_inset Index idx
32857 status collapsed
32858
32859 \begin_layout Plain Layout
32860 Diagramas ! amscd
32861 \end_layout
32862
32863 \end_inset
32864
32865
32866 \end_layout
32867
32868 \begin_layout Standard
32869 Los diagramas de este tipo visualizan relaciones mediante líneas o flechas
32870  verticales y horizontales:
32871 \begin_inset Formula \[
32872 \begin{CD}A@)))B@)))C\\
32873 @AAA@.@VVV\\
32874 F@(((E@(((D
32875 \end{CD}\]
32876
32877 \end_inset
32878
32879 Para obtener el diagrama se inserta en la ecuación el comando 
32880 \series bold
32881
32882 \backslash
32883 CD
32884 \begin_inset Index idx
32885 status collapsed
32886
32887 \begin_layout Plain Layout
32888 Comandos ! C ! 
32889 \backslash
32890 CD
32891 \end_layout
32892
32893 \end_inset
32894
32895
32896 \series default
32897 .
32898  Surge un marco azul entre dos líneas de trazos en el que se insertan a
32899  continuación comandos.
32900  Con 
32901 \family sans
32902 Ctrl+Retorno
32903 \family default
32904  se inicia una nueva línea.
32905  En las líneas impares se insertan relaciones horizontales, en las pares
32906  verticales.
32907 \end_layout
32908
32909 \begin_layout Standard
32910 Para componer las relaciones hay los siguientes comandos:
32911 \begin_inset Foot
32912 status collapsed
32913
32914 \begin_layout Plain Layout
32915 \begin_inset CommandInset label
32916 LatexCommand label
32917 name "fn:sinónimos"
32918
32919 \end_inset
32920
32921 Los comandos con 
32922 \family sans
32923 '
32924 \series bold
32925 >
32926 \series default
32927 '
32928 \family default
32929  o 
32930 \family sans
32931 '
32932 \series bold
32933 <
32934 \series default
32935 '
32936 \family default
32937  pueden generar errores con el estilo 
32938 \series bold
32939 spanish
32940 \series default
32941  de 
32942 \series bold
32943 babel
32944 \series default
32945 .
32946  Para evitarlo se pueden sustituir por sus sinónimos 
32947 \family sans
32948 '
32949 \series bold
32950 )
32951 \series default
32952 '
32953 \family default
32954  y 
32955 \family sans
32956 '
32957 \series bold
32958 (
32959 \series default
32960 '
32961 \family default
32962  respectivamente.
32963  Véase 
32964 \begin_inset CommandInset citation
32965 LatexCommand cite
32966 key "spanish"
32967
32968 \end_inset
32969
32970 .
32971  (
32972 \emph on
32973 N.
32974 \begin_inset space \thinspace{}
32975 \end_inset
32976
32977 del t.
32978 \emph default
32979 )
32980 \end_layout
32981
32982 \end_inset
32983
32984
32985 \end_layout
32986
32987 \begin_layout Itemize
32988
32989 \series bold
32990 @<<<
32991 \series default
32992  genera una flecha hacia la izquierda, 
32993 \series bold
32994 @>>>
32995 \series default
32996  una hacia la derecha, y 
32997 \series bold
32998 @=
32999 \series default
33000  un signo igual largo
33001 \end_layout
33002
33003 \begin_layout Itemize
33004
33005 \series bold
33006 @AAA
33007 \series default
33008  genera una flecha hacia arriba, 
33009 \series bold
33010 @VVV
33011 \series default
33012  una hacia abajo, y 
33013 \series bold
33014 @|
33015 \series default
33016  un signo igual vertical
33017 \end_layout
33018
33019 \begin_layout Itemize
33020
33021 \series bold
33022 @.
33023
33024 \series default
33025  genera una ubicación vacía para relaciones inexistentes
33026 \end_layout
33027
33028 \begin_layout Standard
33029 Todas las flechas pueden etiquetarse como sigue:
33030 \end_layout
33031
33032 \begin_layout Itemize
33033 Si se inserta texto entre el primero y el segundo 
33034 \series bold
33035 <
33036 \series default
33037  o 
33038 \series bold
33039 >
33040 \series default
33041 , respectivamente, se muestra sobre la flecha.
33042  Si se inserta entre el segundo y el tercero, bajo la flecha.
33043 \end_layout
33044
33045 \begin_layout Itemize
33046 Para flechas verticales, si se inserta texto entre la primera y la segunda
33047  
33048 \series bold
33049 A
33050 \series default
33051  o 
33052 \series bold
33053 V
33054 \series default
33055 , respectivamente, se muestra al lado izquierdo de la flecha.
33056  Si se inserta entre la segunda y la tercera, al lado derecho.
33057  Si el texto contiene A o V, estas letras deben ponerse entre llaves TeX.
33058 \end_layout
33059
33060 \begin_layout Standard
33061 Como ejemplo un diagrama con todas las relaciones posibles:
33062 \begin_inset Formula \[
33063 \begin{CD}A@)j))B@))k)C@=F\\
33064 @AmAA@.@VV{V}V@|\\
33065 D@((j\,(E@)k))F@=C
33066 \end{CD}\]
33067
33068 \end_inset
33069
33070 El comando para este diagrama es:
33071 \begin_inset Newline newline
33072 \end_inset
33073
33074
33075 \series bold
33076
33077 \backslash
33078 CD
33079 \begin_inset ERT
33080 status collapsed
33081
33082 \begin_layout Plain Layout
33083
33084
33085 \backslash
33086 spce 
33087 \end_layout
33088
33089 \end_inset
33090
33091 A@>j>>B@>>k>C@=F Ctrl+Retorno
33092 \begin_inset Newline newline
33093 \end_inset
33094
33095
33096 \begin_inset Phantom HPhantom
33097 status open
33098
33099 \begin_layout Plain Layout
33100
33101 \series bold
33102
33103 \backslash
33104 CD
33105 \begin_inset ERT
33106 status collapsed
33107
33108 \begin_layout Plain Layout
33109
33110
33111 \backslash
33112 spce 
33113 \end_layout
33114
33115 \end_inset
33116
33117
33118 \end_layout
33119
33120 \end_inset
33121
33122 @AmAA@.@VV
33123 \backslash
33124 {V
33125 \series default
33126
33127 \begin_inset Formula $\to$
33128 \end_inset
33129
33130
33131 \series bold
33132 V@| Ctrl+Retorno
33133 \begin_inset Newline newline
33134 \end_inset
33135
33136
33137 \begin_inset Phantom HPhantom
33138 status open
33139
33140 \begin_layout Plain Layout
33141
33142 \series bold
33143
33144 \backslash
33145 CD
33146 \begin_inset ERT
33147 status collapsed
33148
33149 \begin_layout Plain Layout
33150
33151
33152 \backslash
33153 spce 
33154 \end_layout
33155
33156 \end_inset
33157
33158
33159 \end_layout
33160
33161 \end_inset
33162
33163 D@<<j<E@>k>>F@=C
33164 \end_layout
33165
33166 \begin_layout Subsection
33167 Diagramas xymatrix
33168 \begin_inset Index idx
33169 status collapsed
33170
33171 \begin_layout Plain Layout
33172 Diagramas ! xymatrix
33173 \end_layout
33174
33175 \end_inset
33176
33177
33178 \end_layout
33179
33180 \begin_layout Standard
33181 Para usar matrices xy debe estar instalado el paquete LaTeX 
33182 \series bold
33183 xypic
33184 \series default
33185 .
33186  Una matriz xy se crea insertando el comando 
33187 \series bold
33188
33189 \backslash
33190 xymatrix
33191 \series default
33192  en una ecuación.
33193  Después podrás añadir nuevas columnas y filas como en matrices normales,
33194  véase
33195 \begin_inset space ~
33196 \end_inset
33197
33198
33199 \begin_inset CommandInset ref
33200 LatexCommand ref
33201 reference "sec:Matrices"
33202
33203 \end_inset
33204
33205 .
33206 \end_layout
33207
33208 \begin_layout Standard
33209 A diferencia de los diagramas amscd, las matrices xy soportan flechas diagonales
33210  y curvadas, y mucho más.
33211  Todas las posibilidades para generar diagramas conmutativos y decoraciones
33212  se explican en el 
33213 \emph on
33214 Manual de XY-pic
33215 \emph default
33216  que se encuentra en el menú 
33217 \family sans
33218 Ayuda\SpecialChar \menuseparator
33219 Manuales
33220 \begin_inset space ~
33221 \end_inset
33222
33223 específicos
33224 \family default
33225 .
33226 \end_layout
33227
33228 \begin_layout Subsection
33229 Diagramas 
33230 \noun on
33231 Feynman
33232 \noun default
33233
33234 \begin_inset Index idx
33235 status collapsed
33236
33237 \begin_layout Plain Layout
33238 Diagramas ! Feynman
33239 \end_layout
33240
33241 \end_inset
33242
33243
33244 \end_layout
33245
33246 \begin_layout Standard
33247 Para usar diagramas 
33248 \noun on
33249 Feynman
33250 \noun default
33251  estar instalado el paquete LaTeX 
33252 \series bold
33253 feyn
33254 \series default
33255 .
33256  Un diagrama 
33257 \noun on
33258 Feynman
33259 \noun default
33260  se crea insertando el comando 
33261 \series bold
33262
33263 \backslash
33264 Diagram
33265 \series default
33266  en una ecuación.
33267  Después podrás añadir nuevas columnas y filas como en matrices normales,
33268  véase
33269 \begin_inset space ~
33270 \end_inset
33271
33272
33273 \begin_inset CommandInset ref
33274 LatexCommand ref
33275 reference "sec:Matrices"
33276
33277 \end_inset
33278
33279 .
33280 \end_layout
33281
33282 \begin_layout Standard
33283
33284 \lang english
33285 Examples how to create 
33286 \noun on
33287 Feynman-
33288 \noun default
33289 diagrams in LyX is given in the 
33290 \emph on
33291 Feynman-diagram manual
33292 \emph default
33293 \lang spanish
33294  que se encuentra en el menú 
33295 \family sans
33296 Ayuda\SpecialChar \menuseparator
33297 Manuales
33298 \begin_inset space ~
33299 \end_inset
33300
33301 específicos
33302 \family default
33303 .
33304 \end_layout
33305
33306 \begin_layout Section
33307 Comandos definidos por el usuario
33308 \begin_inset Index idx
33309 status collapsed
33310
33311 \begin_layout Plain Layout
33312 Comandos de usuario
33313 \end_layout
33314
33315 \end_inset
33316
33317
33318 \end_layout
33319
33320 \begin_layout Standard
33321 \begin_inset Note Greyedout
33322 status collapsed
33323
33324 \begin_layout Plain Layout
33325
33326 \series bold
33327 Nota:
33328 \series default
33329  Los nombres de los comandos definidos por el usuario y macros solo pueden
33330  contener letras latinas.
33331 \end_layout
33332
33333 \end_inset
33334
33335
33336 \end_layout
33337
33338 \begin_layout Subsection
33339 El comando 
33340 \backslash
33341 newcommand
33342 \begin_inset CommandInset label
33343 LatexCommand label
33344 name "sub:El-comando-newcommand"
33345
33346 \end_inset
33347
33348
33349 \begin_inset Index idx
33350 status collapsed
33351
33352 \begin_layout Plain Layout
33353 Comandos de usuario ! 
33354 \backslash
33355 newcommand
33356 \end_layout
33357
33358 \end_inset
33359
33360
33361 \begin_inset Index idx
33362 status collapsed
33363
33364 \begin_layout Plain Layout
33365 Comandos ! N ! 
33366 \backslash
33367 newcommand
33368 \end_layout
33369
33370 \end_inset
33371
33372
33373 \end_layout
33374
33375 \begin_layout Standard
33376 Muchos comandos LaTeX son demasiado largos para usarlos con frecuencia.
33377  Pero es posible definir nuevos comandos más cortos con el comando 
33378 \series bold
33379
33380 \backslash
33381 newcommand
33382 \series default
33383 .
33384  
33385 \end_layout
33386
33387 \begin_layout Standard
33388 El esquema del comando 
33389 \series bold
33390
33391 \backslash
33392 newcommand
33393 \series default
33394  es:
33395 \end_layout
33396
33397 \begin_layout Standard
33398
33399 \series bold
33400
33401 \backslash
33402 newcommand{nombre nuevo de comando}[número de argumentos]
33403 \begin_inset Newline newline
33404 \end_inset
33405
33406
33407 \begin_inset Phantom HPhantom
33408 status open
33409
33410 \begin_layout Plain Layout
33411
33412 \series bold
33413
33414 \backslash
33415 newcommand
33416 \end_layout
33417
33418 \end_inset
33419
33420 [valor opcional]{definición de comando}
33421 \end_layout
33422
33423 \begin_layout Standard
33424 \begin_inset Note Greyedout
33425 status collapsed
33426
33427 \begin_layout Plain Layout
33428
33429 \series bold
33430 Nota:
33431 \series default
33432  Asegúrate de que el nombre del nuevo comando no está definido ya en el
33433  documento o en paquetes LaTeX que uses.
33434  Si p.
33435 \begin_inset space \thinspace{}
33436 \end_inset
33437
33438 e.
33439  defines el comando 
33440 \series bold
33441
33442 \backslash
33443 le
33444 \series default
33445  para 
33446 \series bold
33447
33448 \backslash
33449 Leftarrow,
33450 \series default
33451  se producirán errores porque 
33452 \series bold
33453
33454 \backslash
33455 le
33456 \series default
33457  ya existe como comando para 
33458 \begin_inset Quotes fld
33459 \end_inset
33460
33461
33462 \begin_inset Formula $\le$
33463 \end_inset
33464
33465
33466 \begin_inset Quotes frd
33467 \end_inset
33468
33469 .
33470
33471 \series bold
33472  
33473 \end_layout
33474
33475 \end_inset
33476
33477
33478 \end_layout
33479
33480 \begin_layout Standard
33481 El número de argumentos es un entero en el rango 0-9 y especifica cuántos
33482  argumentos debería tener el nuevo comando.
33483  Con el valor opcional se puede predefinir un valor para un argumento opcional.
33484  Cuando se hace esto, el 
33485 \emph on
33486 primer
33487 \emph default
33488  argumento del nuevo comando es automáticamente opcional.
33489 \end_layout
33490
33491 \begin_layout Standard
33492 Veamos unos ejemplos:
33493 \end_layout
33494
33495 \begin_layout Itemize
33496 Para definir el comando 
33497 \series bold
33498
33499 \backslash
33500 gr
33501 \series default
33502  para 
33503 \series bold
33504
33505 \backslash
33506 Longrightarrow
33507 \series default
33508 , la línea de preámbulo LaTeX es:
33509 \begin_inset VSpace medskip
33510 \end_inset
33511
33512
33513 \begin_inset Newline newline
33514 \end_inset
33515
33516
33517 \series bold
33518
33519 \backslash
33520 newcommand{
33521 \backslash
33522 gr}{
33523 \backslash
33524 Longrightarrow}
33525 \end_layout
33526
33527 \begin_layout Itemize
33528 Para definir el comando 
33529 \series bold
33530
33531 \backslash
33532 us
33533 \series default
33534  para 
33535 \series bold
33536
33537 \backslash
33538 underline
33539 \series default
33540 , el argumento (que sería subrayado) debe tenerse en cuenta.
33541  Para esto la línea de preámbulo es:
33542 \begin_inset VSpace medskip
33543 \end_inset
33544
33545
33546 \begin_inset Newline newline
33547 \end_inset
33548
33549
33550 \series bold
33551
33552 \backslash
33553 newcommand{
33554 \backslash
33555 us}[1]{
33556 \backslash
33557 underline{#1}}
33558 \series default
33559
33560 \begin_inset VSpace medskip
33561 \end_inset
33562
33563
33564 \begin_inset Newline newline
33565 \end_inset
33566
33567 El carácter 
33568 \series bold
33569 #
33570 \series default
33571  actúa como colocador del argumento, el 
33572 \series bold
33573 1
33574 \series default
33575  indica que es el colocador para el primer argumento.
33576 \end_layout
33577
33578 \begin_layout Itemize
33579 Para 
33580 \series bold
33581
33582 \backslash
33583 framebox
33584 \series default
33585  se puede p.
33586 \begin_inset space \thinspace{}
33587 \end_inset
33588
33589 e.
33590  definir el comando 
33591 \series bold
33592
33593 \backslash
33594 fb
33595 \series default
33596 :
33597 \begin_inset VSpace medskip
33598 \end_inset
33599
33600
33601 \begin_inset Newline newline
33602 \end_inset
33603
33604
33605 \series bold
33606
33607 \backslash
33608 newcommand{
33609 \backslash
33610 fb}[3]{
33611 \backslash
33612 framebox#1#2{$#3$}}
33613 \series default
33614
33615 \begin_inset VSpace medskip
33616 \end_inset
33617
33618
33619 \begin_inset Newline newline
33620 \end_inset
33621
33622 Los dos signos dólar generan la ecuación extra necesaria para 
33623 \series bold
33624
33625 \backslash
33626 framebox
33627 \series default
33628 , véase 
33629 \begin_inset CommandInset ref
33630 LatexCommand ref
33631 reference "sub:Cuadros-con-marco"
33632
33633 \end_inset
33634
33635 .
33636 \end_layout
33637
33638 \begin_layout Itemize
33639 Para crear un nuevo comando para 
33640 \series bold
33641
33642 \backslash
33643 fcolorbox
33644 \series default
33645  donde no es necesario especificar el color para el cuadro, el argumento
33646  para el color se define opcional:
33647 \begin_inset VSpace medskip
33648 \end_inset
33649
33650
33651 \begin_inset Newline newline
33652 \end_inset
33653
33654
33655 \series bold
33656
33657 \backslash
33658 newcommand{
33659 \backslash
33660 cb}[3][white]{
33661 \backslash
33662 fcolorbox{#2}{#1}{$#3$}}
33663 \series default
33664
33665 \begin_inset VSpace medskip
33666 \end_inset
33667
33668
33669 \begin_inset Newline newline
33670 \end_inset
33671
33672 Si el color no es especificado al usar 
33673 \series bold
33674
33675 \backslash
33676 cb
33677 \series default
33678 , se elige el color 
33679 \series bold
33680 white
33681 \series default
33682  predefinido.
33683 \end_layout
33684
33685 \begin_layout Standard
33686 Un ensayo con los nuevos comandos definidos:
33687 \end_layout
33688
33689 \begin_layout Standard
33690 \noindent
33691 \align center
33692 \begin_inset Tabular
33693 <lyxtabular version="3" rows="6" columns="2">
33694 <features tabularvalignment="middle">
33695 <column alignment="center" valignment="top" width="0">
33696 <column alignment="center" valignment="top" width="0">
33697 <row>
33698 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33699 \begin_inset Text
33700
33701 \begin_layout Plain Layout
33702 Comando
33703 \end_layout
33704
33705 \end_inset
33706 </cell>
33707 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33708 \begin_inset Text
33709
33710 \begin_layout Plain Layout
33711 Resultado
33712 \begin_inset Note Note
33713 status collapsed
33714
33715 \begin_layout Plain Layout
33716
33717 \series bold
33718
33719 \backslash
33720 raisebox
33721 \series default
33722  se usa sólo como espaciador
33723 \end_layout
33724
33725 \end_inset
33726
33727
33728 \end_layout
33729
33730 \end_inset
33731 </cell>
33732 </row>
33733 <row>
33734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33735 \begin_inset Text
33736
33737 \begin_layout Plain Layout
33738 A
33739 \backslash
33740 gr
33741 \begin_inset ERT
33742 status collapsed
33743
33744 \begin_layout Plain Layout
33745
33746
33747 \backslash
33748 spce 
33749 \end_layout
33750
33751 \end_inset
33752
33753 B
33754 \end_layout
33755
33756 \end_inset
33757 </cell>
33758 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33759 \begin_inset Text
33760
33761 \begin_layout Plain Layout
33762 \begin_inset Formula $A\gr B$
33763 \end_inset
33764
33765
33766 \end_layout
33767
33768 \end_inset
33769 </cell>
33770 </row>
33771 <row>
33772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33773 \begin_inset Text
33774
33775 \begin_layout Plain Layout
33776
33777 \backslash
33778 us{ABcd
33779 \end_layout
33780
33781 \end_inset
33782 </cell>
33783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33784 \begin_inset Text
33785
33786 \begin_layout Plain Layout
33787 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
33788 \end_inset
33789
33790
33791 \end_layout
33792
33793 \end_inset
33794 </cell>
33795 </row>
33796 <row>
33797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33798 \begin_inset Text
33799
33800 \begin_layout Plain Layout
33801
33802 \backslash
33803 fb{[2cm]
33804 \begin_inset Formula $\to$
33805 \end_inset
33806
33807
33808 \backslash
33809 {
33810 \begin_inset Formula $\to$
33811 \end_inset
33812
33813
33814 \backslash
33815 {
33816 \backslash
33817 int
33818 \begin_inset ERT
33819 status collapsed
33820
33821 \begin_layout Plain Layout
33822
33823
33824 \backslash
33825 spce 
33826 \end_layout
33827
33828 \end_inset
33829
33830 A=B
33831 \end_layout
33832
33833 \end_inset
33834 </cell>
33835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33836 \begin_inset Text
33837
33838 \begin_layout Plain Layout
33839 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33840 \end_inset
33841
33842
33843 \end_layout
33844
33845 \end_inset
33846 </cell>
33847 </row>
33848 <row>
33849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33850 \begin_inset Text
33851
33852 \begin_layout Plain Layout
33853
33854 \backslash
33855 cb{red
33856 \begin_inset Formula $\to$
33857 \end_inset
33858
33859
33860 \backslash
33861 {
33862 \backslash
33863 int
33864 \begin_inset ERT
33865 status collapsed
33866
33867 \begin_layout Plain Layout
33868
33869
33870 \backslash
33871 spce 
33872 \end_layout
33873
33874 \end_inset
33875
33876 A=B
33877 \end_layout
33878
33879 \end_inset
33880 </cell>
33881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33882 \begin_inset Text
33883
33884 \begin_layout Plain Layout
33885 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33886 \end_inset
33887
33888
33889 \end_layout
33890
33891 \end_inset
33892 </cell>
33893 </row>
33894 <row>
33895 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33896 \begin_inset Text
33897
33898 \begin_layout Plain Layout
33899
33900 \backslash
33901 cb[green]
33902 \backslash
33903 {red
33904 \begin_inset Formula $\to$
33905 \end_inset
33906
33907
33908 \backslash
33909 {
33910 \backslash
33911 int
33912 \begin_inset ERT
33913 status collapsed
33914
33915 \begin_layout Plain Layout
33916
33917
33918 \backslash
33919 spce 
33920 \end_layout
33921
33922 \end_inset
33923
33924 A=B
33925 \end_layout
33926
33927 \end_inset
33928 </cell>
33929 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33930 \begin_inset Text
33931
33932 \begin_layout Plain Layout
33933 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33934 \end_inset
33935
33936
33937 \end_layout
33938
33939 \end_inset
33940 </cell>
33941 </row>
33942 </lyxtabular>
33943
33944 \end_inset
33945
33946
33947 \end_layout
33948
33949 \begin_layout Subsection
33950 Macros de ecuaciones
33951 \begin_inset Index idx
33952 status collapsed
33953
33954 \begin_layout Plain Layout
33955 Comandos de usuario ! Macros de ecuaciones
33956 \end_layout
33957
33958 \end_inset
33959
33960
33961 \begin_inset Index idx
33962 status collapsed
33963
33964 \begin_layout Plain Layout
33965 Macros
33966 \end_layout
33967
33968 \end_inset
33969
33970
33971 \end_layout
33972
33973 \begin_layout Standard
33974 Los comandos definidos por el usuario son especialmente convenientes para
33975  expresiones complejas.
33976  Por ejemplo, si estás trabajando en un documento con ecuaciones cuadráticas,
33977  el mismo tipo de solución se repite varias veces.
33978  La forma general de una ecuación de segundo grado es:
33979 \begin_inset Formula \[
33980 0=\lambda^{2}+p\lambda+q\]
33981
33982 \end_inset
33983
33984 La forma general de la solución es:
33985 \begin_inset Formula \[
33986 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}\]
33987
33988 \end_inset
33989
33990
33991 \end_layout
33992
33993 \begin_layout Standard
33994 Para definir un comando para la ecuación de la solución, en donde solo hay
33995  que especificar los tres parámetros 
33996 \begin_inset Formula $\lambda$
33997 \end_inset
33998
33999
34000 \begin_inset Formula $p$
34001 \end_inset
34002
34003 , y 
34004 \begin_inset Formula $q$
34005 \end_inset
34006
34007 , y el índice de 
34008 \begin_inset Formula $\lambda$
34009 \end_inset
34010
34011  puede darse opcionalmente, la línea de preámbulo LaTeX es
34012 \begin_inset Newline newline
34013 \end_inset
34014
34015
34016 \series bold
34017
34018 \backslash
34019 newcommand{
34020 \backslash
34021 qG}[4][1,
34022 \backslash
34023 ,2]{#2_{#1}=-
34024 \backslash
34025 frac{#3}{2}
34026 \backslash
34027 pm
34028 \begin_inset Newline newline
34029 \end_inset
34030
34031
34032 \begin_inset Phantom HPhantom
34033 status open
34034
34035 \begin_layout Plain Layout
34036
34037 \series bold
34038
34039 \backslash
34040 newcommand
34041 \end_layout
34042
34043 \end_inset
34044
34045
34046 \backslash
34047 sqrt{
34048 \backslash
34049 frac{#3^{2}}{4}-#4}}
34050 \end_layout
34051
34052 \begin_layout Standard
34053 Para generar la solución se inserta el comando
34054 \begin_inset Newline newline
34055 \end_inset
34056
34057
34058 \series bold
34059
34060 \backslash
34061 qG{
34062 \backslash
34063 lambda
34064 \begin_inset Formula $\to$
34065 \end_inset
34066
34067
34068 \backslash
34069 {p
34070 \begin_inset Formula $\to$
34071 \end_inset
34072
34073
34074 \backslash
34075 {q
34076 \series default
34077  en una ecuación
34078 \series bold
34079 .
34080 \end_layout
34081
34082 \begin_layout Standard
34083 La definición del nuevo comando no es intuitiva porque hay que conocer los
34084  esquemas de todos los comandos LaTeX usados, p.
34085 \begin_inset space \thinspace{}
34086 \end_inset
34087
34088 e., que una fracción se inserta en LaTeX como
34089 \series bold
34090  
34091 \backslash
34092 frac{numerador}{denominador}
34093 \series default
34094 .
34095  Además, uno puede olvidar fácilmente una llave en la definición y no puede
34096  ver en LyX lo que el nuevo comando está haciendo.
34097  Para evitar estos problemas, LyX ofrece la posibilidad de usar macros de
34098  ecuación en vez del comando
34099 \series bold
34100  
34101 \backslash
34102 newcommand
34103 \series default
34104 .
34105 \end_layout
34106
34107 \begin_layout Standard
34108 Una macro de ecuación se crea con el menú 
34109 \family sans
34110 Insertar\SpecialChar \menuseparator
34111 Ecuación\SpecialChar \menuseparator
34112 Macro
34113 \family default
34114  o con el botón 
34115 \begin_inset Graphics
34116         filename ../../images/math-macro_newmacroname_newcommand.png
34117         scale 85
34118
34119 \end_inset
34120
34121  de la barra de herramientas.
34122  Aparecen entonces la barra de herramientes de macros de ecuación y un recuadro
34123  como el siguiente donde se define la macro:
34124 \begin_inset Newline newline
34125 \end_inset
34126
34127
34128 \end_layout
34129
34130 \begin_layout Standard
34131 \begin_inset space \hspace*{\fill}
34132 \end_inset
34133
34134
34135 \begin_inset Graphics
34136         filename ../clipart/macrobox.png
34137
34138 \end_inset
34139
34140
34141 \begin_inset space \hspace*{\fill}
34142 \end_inset
34143
34144
34145 \begin_inset Newline newline
34146 \end_inset
34147
34148
34149 \begin_inset FormulaMacro
34150 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
34151 \end_inset
34152
34153
34154 \backslash
34155 newmacroname es el nombre por omisión y debería cambiarse por alguno sensato.
34156  En el primer marco azul se inserta la ecuación buscada.
34157  Con el comando 
34158 \series bold
34159
34160 \backslash
34161 #númerodeargumento
34162 \series default
34163 , , o con el botón 
34164 \begin_inset Graphics
34165         filename ../../images/math-macro-add-param.png
34166         scale 85
34167
34168 \end_inset
34169
34170  de la barra de herramientas de macros se inserta un colocador de argumento,
34171  p.
34172 \begin_inset space \thinspace{}
34173 \end_inset
34174
34175 e
34176 \begin_inset space \space{}
34177 \end_inset
34178
34179
34180 \series bold
34181
34182 \backslash
34183 #1
34184 \series default
34185 .
34186  Los colocadores de argumento se muestran en rojo.
34187  Se pueden poner 9 argumentos como máximo.
34188  Con el botón 
34189 \begin_inset Graphics
34190         filename ../../images/math-macro-add-optional-param.png
34191         scale 85
34192
34193 \end_inset
34194
34195  se crean argumentos opcionales.
34196  El primer argumento no opcional puede transformarse en opcional con el
34197  botón 
34198 \begin_inset Graphics
34199         filename ../../images/math-macro-make-optional.png
34200         scale 85
34201
34202 \end_inset
34203
34204 .
34205  En el segundo marco azul puede definirse el aspecto de la macro en LyX.
34206  Normalmente quieres verlo tal como está definido, así que el recuadro se
34207  deja vacío.
34208  Pero si has creado una macro que necesita mucho espacio en la pantalla,
34209  en dicho recuadro puedes insertar, por ejemplo
34210 \begin_inset Newline newline
34211 \end_inset
34212
34213
34214 \series bold
34215 qG: 
34216 \backslash
34217 #1
34218 \series default
34219  
34220 \series bold
34221 ,
34222 \series default
34223  
34224 \series bold
34225
34226 \backslash
34227 #2
34228 \series default
34229  
34230 \series bold
34231 ,
34232 \series default
34233  
34234 \series bold
34235
34236 \backslash
34237 #3, 
34238 \backslash
34239 #4
34240 \begin_inset Newline newline
34241 \end_inset
34242
34243
34244 \series default
34245 Para la macro solo los argumentos con el nombre delante de ellos se mostrarán
34246  en LyX, lo que conlleva una visualización mejor.
34247  La ecuación aparece en la salida tal como se ha definido en el primer recuadro.
34248 \begin_inset Newline newline
34249 \end_inset
34250
34251 Además, el aspecto de las macros en las ecuaciones puede cambiarse para
34252  macros individuales situando el cursor en la macro y usando el menú 
34253 \family sans
34254 Ver\SpecialChar \menuseparator
34255 (Des)plegar macro de ecuación.
34256 \end_layout
34257
34258 \begin_layout Standard
34259 Para usar una macro, se inserta el nombre de la misma como comando en una
34260  ecuación, en nuestro caso 
34261 \series bold
34262
34263 \backslash
34264 qG
34265 \series default
34266 .
34267  Nuestra macro se muestra en LyX así:
34268 \begin_inset Newline newline
34269 \end_inset
34270
34271
34272 \begin_inset space \hspace*{\fill}
34273 \end_inset
34274
34275
34276 \begin_inset Graphics
34277         filename ../clipart/macrouse.png
34278
34279 \end_inset
34280
34281
34282 \begin_inset space \hspace*{\fill}
34283 \end_inset
34284
34285
34286 \begin_inset Newline newline
34287 \end_inset
34288
34289 Aquí tenemos nuestro ejemplo de macro con los argumentos 
34290 \begin_inset Formula $x$
34291 \end_inset
34292
34293
34294 \begin_inset Formula $\ln(x)$
34295 \end_inset
34296
34297 , y 
34298 \begin_inset Formula $B$
34299 \end_inset
34300
34301 :
34302 \end_layout
34303
34304 \begin_layout Standard
34305 \begin_inset Formula \[
34306 \qG x{\ln(x)}B\]
34307
34308 \end_inset
34309
34310
34311 \end_layout
34312
34313 \begin_layout Standard
34314 LyX ofrece en el menú 
34315 \family sans
34316 Herramientas
34317 \family default
34318 \SpecialChar \menuseparator
34319
34320 \family sans
34321 Preferencias\SpecialChar \menuseparator
34322 Edición\SpecialChar \menuseparator
34323 Control
34324 \family default
34325  diferentes estilos para editar macros.
34326  Para encontrar el estilo que más te convenga, elige un estilo y pon el
34327  cursor en una macro para ver la diferencia.
34328 \end_layout
34329
34330 \begin_layout Standard
34331 Una macro de ecuación se transforma internamente en un comando 
34332 \series bold
34333
34334 \backslash
34335 newcommand
34336 \series default
34337  cuando se exporta el documento.
34338  El comando creado 
34339 \series bold
34340
34341 \backslash
34342 newcommand
34343 \series default
34344  no se coloca en el preámbulo LaTeX, por tanto las macros solo se pueden
34345  usar en ecuaciones que estén en recuadros de definición de macros en el
34346  documento.
34347  
34348 \end_layout
34349
34350 \begin_layout Standard
34351 Las macros de ecuación también pueden crearse directamente a partir de un
34352  comando
34353 \series bold
34354  
34355 \backslash
34356 newcommand
34357 \series default
34358 .
34359  Por ejemplo, escribiendo el comando
34360 \begin_inset Newline newline
34361 \end_inset
34362
34363
34364 \series bold
34365
34366 \backslash
34367 newcommand{
34368 \backslash
34369 larrow}[2]{
34370 \backslash
34371 xleftarrow[#2]{#1}}
34372 \begin_inset Newline newline
34373 \end_inset
34374
34375
34376 \series default
34377 como texto normal en LyX, seleccionándolo completamente y usando a continuación
34378  el atajo 
34379 \family sans
34380 Ctrl+M
34381 \family default
34382 , el comando se transformará en una macro de ecuación.
34383  Al emplear este método debes tener cuidado en escribir correctamente el
34384  comando 
34385 \series bold
34386
34387 \backslash
34388 newcommand
34389 \series default
34390 , de lo contrario la macro defectuosa lleva a obtener errores LaTeX.
34391  
34392 \end_layout
34393
34394 \begin_layout Standard
34395 Las macros de ecuación todavía tienen el problema de que fórmulas adicionales
34396  en definiciones de macros se manejan incorrectamente.
34397  Por eso el ejemplo 
34398 \series bold
34399
34400 \backslash
34401 fb
34402 \series default
34403  de 
34404 \begin_inset CommandInset ref
34405 LatexCommand ref
34406 reference "sub:El-comando-newcommand"
34407
34408 \end_inset
34409
34410  no puede crearse como macro.
34411 \end_layout
34412
34413 \begin_layout Standard
34414 Cuando el cursor está en un recuadro de definición de macro, verás en LyX
34415  la barra de herramientas de macros:
34416 \end_layout
34417
34418 \begin_layout Standard
34419 \begin_inset VSpace defskip
34420 \end_inset
34421
34422
34423 \end_layout
34424
34425 \begin_layout Standard
34426 \begin_inset Graphics
34427         filename ../clipart/MacroToolbar.png
34428
34429 \end_inset
34430
34431
34432 \begin_inset Index idx
34433 status collapsed
34434
34435 \begin_layout Plain Layout
34436 Macros ! Barra de herramientas
34437 \end_layout
34438
34439 \end_inset
34440
34441
34442 \end_layout
34443
34444 \begin_layout Standard
34445 \begin_inset VSpace defskip
34446 \end_inset
34447
34448
34449 \end_layout
34450
34451 \begin_layout Standard
34452 La barra de herramientas de macros contiene los siguientes botones:
34453 \end_layout
34454
34455 \begin_layout Standard
34456 \begin_inset VSpace defskip
34457 \end_inset
34458
34459
34460 \end_layout
34461
34462 \begin_layout Standard
34463 \begin_inset Tabular
34464 <lyxtabular version="3" rows="9" columns="2">
34465 <features islongtable="true" longtabularalignment="center">
34466 <column alignment="left" valignment="top" width="0">
34467 <column alignment="left" valignment="top" width="85col%">
34468 <row interlinespace="2.5mm">
34469 <cell alignment="center" valignment="top" usebox="none">
34470 \begin_inset Text
34471
34472 \begin_layout Plain Layout
34473 \begin_inset Graphics
34474         filename ../../images/math-macro-remove-param.png
34475         BoundingBox 0bp 5bp 20bp 25bp
34476         rotateOrigin center
34477
34478 \end_inset
34479
34480
34481 \end_layout
34482
34483 \end_inset
34484 </cell>
34485 <cell alignment="center" valignment="top" usebox="none">
34486 \begin_inset Text
34487
34488 \begin_layout Plain Layout
34489
34490 \family sans
34491 Editar\SpecialChar \menuseparator
34492 Ecuación\SpecialChar \menuseparator
34493 Definición de macro\SpecialChar \menuseparator
34494 Quitar último argumento
34495 \end_layout
34496
34497 \end_inset
34498 </cell>
34499 </row>
34500 <row interlinespace="2.5mm">
34501 <cell alignment="center" valignment="top" usebox="none">
34502 \begin_inset Text
34503
34504 \begin_layout Plain Layout
34505 \begin_inset Graphics
34506         filename ../../images/math-macro-add-param.png
34507         BoundingBox 0bp 5bp 20bp 25bp
34508         rotateOrigin center
34509
34510 \end_inset
34511
34512
34513 \end_layout
34514
34515 \end_inset
34516 </cell>
34517 <cell alignment="center" valignment="top" usebox="none">
34518 \begin_inset Text
34519
34520 \begin_layout Plain Layout
34521
34522 \family sans
34523 Editar\SpecialChar \menuseparator
34524 Ecuación\SpecialChar \menuseparator
34525 Definición de macro\SpecialChar \menuseparator
34526 Añadir argumento
34527 \end_layout
34528
34529 \end_inset
34530 </cell>
34531 </row>
34532 <row interlinespace="2.5mm">
34533 <cell alignment="center" valignment="top" usebox="none">
34534 \begin_inset Text
34535
34536 \begin_layout Plain Layout
34537 \begin_inset Graphics
34538         filename ../../images/math-macro-make-optional.png
34539         BoundingBox 0bp 5bp 20bp 25bp
34540         rotateOrigin center
34541
34542 \end_inset
34543
34544
34545 \end_layout
34546
34547 \end_inset
34548 </cell>
34549 <cell alignment="center" valignment="top" usebox="none">
34550 \begin_inset Text
34551
34552 \begin_layout Plain Layout
34553
34554 \family sans
34555 Editar\SpecialChar \menuseparator
34556 Ecuación\SpecialChar \menuseparator
34557 Definición de macro\SpecialChar \menuseparator
34558 Hacer opcional el primer
34559 \begin_inset Newline newline
34560 \end_inset
34561
34562
34563 \begin_inset Phantom HPhantom
34564 status open
34565
34566 \begin_layout Plain Layout
34567
34568 \family sans
34569 Editar\SpecialChar \menuseparator
34570 Ecuación\SpecialChar \menuseparator
34571 Definición de macro\SpecialChar \menuseparator
34572
34573 \end_layout
34574
34575 \end_inset
34576
34577 argumento no opcional
34578 \end_layout
34579
34580 \end_inset
34581 </cell>
34582 </row>
34583 <row interlinespace="2.5mm">
34584 <cell alignment="center" valignment="top" usebox="none">
34585 \begin_inset Text
34586
34587 \begin_layout Plain Layout
34588 \begin_inset Graphics
34589         filename ../../images/math-macro-make-nonoptional.png
34590         BoundingBox 0bp 5bp 20bp 25bp
34591         rotateOrigin center
34592
34593 \end_inset
34594
34595
34596 \end_layout
34597
34598 \end_inset
34599 </cell>
34600 <cell alignment="center" valignment="top" usebox="none">
34601 \begin_inset Text
34602
34603 \begin_layout Plain Layout
34604
34605 \family sans
34606 Editar\SpecialChar \menuseparator
34607 Ecuación\SpecialChar \menuseparator
34608 Definición de macro\SpecialChar \menuseparator
34609 Hacer no opcional el primer
34610 \begin_inset Newline newline
34611 \end_inset
34612
34613
34614 \begin_inset Phantom HPhantom
34615 status open
34616
34617 \begin_layout Plain Layout
34618
34619 \family sans
34620 Editar\SpecialChar \menuseparator
34621 Ecuación\SpecialChar \menuseparator
34622 Definición de macro\SpecialChar \menuseparator
34623
34624 \end_layout
34625
34626 \end_inset
34627
34628 argumento opcional
34629 \end_layout
34630
34631 \end_inset
34632 </cell>
34633 </row>
34634 <row interlinespace="2.5mm">
34635 <cell alignment="center" valignment="top" usebox="none">
34636 \begin_inset Text
34637
34638 \begin_layout Plain Layout
34639 \begin_inset Graphics
34640         filename ../../images/math-macro-remove-optional-param.png
34641         BoundingBox 0bp 5bp 20bp 25bp
34642         rotateOrigin center
34643
34644 \end_inset
34645
34646
34647 \end_layout
34648
34649 \end_inset
34650 </cell>
34651 <cell alignment="center" valignment="top" usebox="none">
34652 \begin_inset Text
34653
34654 \begin_layout Plain Layout
34655
34656 \family sans
34657 Editar\SpecialChar \menuseparator
34658 Ecuación\SpecialChar \menuseparator
34659 Definición de macro\SpecialChar \menuseparator
34660 Quitar argumento opcional
34661 \end_layout
34662
34663 \end_inset
34664 </cell>
34665 </row>
34666 <row interlinespace="2.5mm">
34667 <cell alignment="center" valignment="top" usebox="none">
34668 \begin_inset Text
34669
34670 \begin_layout Plain Layout
34671 \begin_inset Graphics
34672         filename ../../images/math-macro-add-optional-param.png
34673         BoundingBox 0bp 5bp 20bp 25bp
34674         rotateOrigin center
34675
34676 \end_inset
34677
34678
34679 \end_layout
34680
34681 \end_inset
34682 </cell>
34683 <cell alignment="center" valignment="top" usebox="none">
34684 \begin_inset Text
34685
34686 \begin_layout Plain Layout
34687
34688 \family sans
34689 Editar\SpecialChar \menuseparator
34690 Ecuación\SpecialChar \menuseparator
34691 Definición de macro\SpecialChar \menuseparator
34692 Insertar argumento opcional
34693 \end_layout
34694
34695 \end_inset
34696 </cell>
34697 </row>
34698 <row interlinespace="2.5mm">
34699 <cell alignment="center" valignment="top" usebox="none">
34700 \begin_inset Text
34701
34702 \begin_layout Plain Layout
34703 \begin_inset Graphics
34704         filename ../../images/math-macro-remove-greedy-param.png
34705         BoundingBox 0bp 5bp 20bp 25bp
34706         rotateOrigin center
34707
34708 \end_inset
34709
34710
34711 \end_layout
34712
34713 \end_inset
34714 </cell>
34715 <cell alignment="center" valignment="top" usebox="none">
34716 \begin_inset Text
34717
34718 \begin_layout Plain Layout
34719
34720 \family sans
34721 Editar\SpecialChar \menuseparator
34722 Ecuación\SpecialChar \menuseparator
34723 Definición de macro\SpecialChar \menuseparator
34724 Quitar último argumento
34725 \begin_inset Newline newline
34726 \end_inset
34727
34728
34729 \begin_inset Phantom HPhantom
34730 status open
34731
34732 \begin_layout Plain Layout
34733
34734 \family sans
34735 Editar\SpecialChar \menuseparator
34736 Ecuación\SpecialChar \menuseparator
34737 Definición de macro\SpecialChar \menuseparator
34738
34739 \end_layout
34740
34741 \end_inset
34742
34743 yendo hacia la derecha
34744 \end_layout
34745
34746 \end_inset
34747 </cell>
34748 </row>
34749 <row interlinespace="2.5mm">
34750 <cell alignment="center" valignment="top" usebox="none">
34751 \begin_inset Text
34752
34753 \begin_layout Plain Layout
34754 \begin_inset Graphics
34755         filename ../../images/math-macro-append-greedy-param.png
34756         BoundingBox 0bp 5bp 20bp 25bp
34757         rotateOrigin center
34758
34759 \end_inset
34760
34761
34762 \end_layout
34763
34764 \end_inset
34765 </cell>
34766 <cell alignment="center" valignment="top" usebox="none">
34767 \begin_inset Text
34768
34769 \begin_layout Plain Layout
34770
34771 \family sans
34772 Editar\SpecialChar \menuseparator
34773 Ecuación\SpecialChar \menuseparator
34774 Definición de macro\SpecialChar \menuseparator
34775 Añadir argumento comiendo
34776 \begin_inset Newline newline
34777 \end_inset
34778
34779
34780 \begin_inset Phantom HPhantom
34781 status open
34782
34783 \begin_layout Plain Layout
34784
34785 \family sans
34786 Editar\SpecialChar \menuseparator
34787 Ecuación\SpecialChar \menuseparator
34788 Definición de macro\SpecialChar \menuseparator
34789
34790 \end_layout
34791
34792 \end_inset
34793
34794 desde la derecha
34795 \end_layout
34796
34797 \end_inset
34798 </cell>
34799 </row>
34800 <row interlinespace="2.5mm">
34801 <cell alignment="center" valignment="top" usebox="none">
34802 \begin_inset Text
34803
34804 \begin_layout Plain Layout
34805 \begin_inset Graphics
34806         filename ../../images/math-macro-add-greedy-optional-param.png
34807         BoundingBox 0bp 5bp 20bp 25bp
34808         rotateOrigin center
34809
34810 \end_inset
34811
34812
34813 \end_layout
34814
34815 \end_inset
34816 </cell>
34817 <cell alignment="center" valignment="top" usebox="none">
34818 \begin_inset Text
34819
34820 \begin_layout Plain Layout
34821
34822 \family sans
34823 Editar\SpecialChar \menuseparator
34824 Ecuación\SpecialChar \menuseparator
34825 Definición de macro\SpecialChar \menuseparator
34826 Añadir argumento opcional
34827 \begin_inset Newline newline
34828 \end_inset
34829
34830
34831 \begin_inset Phantom HPhantom
34832 status open
34833
34834 \begin_layout Plain Layout
34835
34836 \family sans
34837 Editar\SpecialChar \menuseparator
34838 Ecuación\SpecialChar \menuseparator
34839 Definición de macro\SpecialChar \menuseparator
34840
34841 \end_layout
34842
34843 \end_inset
34844
34845 comiendo desde la derecha
34846 \end_layout
34847
34848 \end_inset
34849 </cell>
34850 </row>
34851 </lyxtabular>
34852
34853 \end_inset
34854
34855
34856 \end_layout
34857
34858 \begin_layout Standard
34859 \noindent
34860 \align center
34861 \begin_inset Newpage newpage
34862 \end_inset
34863
34864
34865 \end_layout
34866
34867 \begin_layout Section
34868 Indicaciones
34869 \begin_inset Index idx
34870 status collapsed
34871
34872 \begin_layout Plain Layout
34873 Indicaciones
34874 \end_layout
34875
34876 \end_inset
34877
34878
34879 \end_layout
34880
34881 \begin_layout Subsection
34882 Números negativos
34883 \begin_inset Index idx
34884 status collapsed
34885
34886 \begin_layout Plain Layout
34887 Numeros@Números ! negativos
34888 \end_layout
34889
34890 \end_inset
34891
34892
34893 \end_layout
34894
34895 \begin_layout Standard
34896 Los números negativos a veces se ven feos en las ecuaciones porque el signo
34897  menos delante del número tiene la misma longitud que el operador signo
34898  menos.
34899  Si se escribe el número negativo en texto normal el signo menos aparece
34900  correctamente.
34901 \end_layout
34902
34903 \begin_layout Standard
34904 Así pues, el problema desaparece si se convierte el signo menos a texto
34905  matemático.
34906 \end_layout
34907
34908 \begin_layout Standard
34909 Un ejemplo para visualizar el problema:
34910 \end_layout
34911
34912 \begin_layout Standard
34913 \noindent
34914 \align center
34915 \begin_inset Tabular
34916 <lyxtabular version="3" rows="3" columns="2">
34917 <features tabularvalignment="middle">
34918 <column alignment="center" valignment="top" width="0">
34919 <column alignment="center" valignment="top" width="0">
34920 <row>
34921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34922 \begin_inset Text
34923
34924 \begin_layout Plain Layout
34925 texto normal:
34926 \end_layout
34927
34928 \end_inset
34929 </cell>
34930 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34931 \begin_inset Text
34932
34933 \begin_layout Plain Layout
34934 x = -2
34935 \end_layout
34936
34937 \end_inset
34938 </cell>
34939 </row>
34940 <row>
34941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34942 \begin_inset Text
34943
34944 \begin_layout Plain Layout
34945 ecuación:
34946 \end_layout
34947
34948 \end_inset
34949 </cell>
34950 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34951 \begin_inset Text
34952
34953 \begin_layout Plain Layout
34954 \begin_inset Formula $x=-2$
34955 \end_inset
34956
34957
34958 \end_layout
34959
34960 \end_inset
34961 </cell>
34962 </row>
34963 <row>
34964 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34965 \begin_inset Text
34966
34967 \begin_layout Plain Layout
34968 solución:
34969 \end_layout
34970
34971 \end_inset
34972 </cell>
34973 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34974 \begin_inset Text
34975
34976 \begin_layout Plain Layout
34977 \begin_inset Formula $x=\mbox{-}2$
34978 \end_inset
34979
34980
34981 \end_layout
34982
34983 \end_inset
34984 </cell>
34985 </row>
34986 </lyxtabular>
34987
34988 \end_inset
34989
34990
34991 \end_layout
34992
34993 \begin_layout Subsection
34994 Coma como separador decimal
34995 \begin_inset Index idx
34996 status collapsed
34997
34998 \begin_layout Plain Layout
34999 Coma decimal
35000 \end_layout
35001
35002 \end_inset
35003
35004
35005 \end_layout
35006
35007 \begin_layout Standard
35008 En LaTeX, de acuerdo con la convención inglesa, se usa la coma como separador
35009  de grupos numéricos.
35010  Entonces en las fórmulas habrá un espacio añadido detrás de todas las comas.
35011 \end_layout
35012
35013 \begin_layout Standard
35014 Para evitarlo, se selecciona la coma y se cambia a texto matemático (atajo
35015  
35016 \family sans
35017 Ctrl+M
35018 \family default
35019 ).
35020 \end_layout
35021
35022 \begin_layout Standard
35023 Para usar las comas en todas las fórmulas del documento como separador decimal,
35024  se carga el archivo 
35025 \series bold
35026 icomma.sty
35027 \series default
35028
35029 \begin_inset Foot
35030 status collapsed
35031
35032 \begin_layout Plain Layout
35033
35034 \series bold
35035 icomma
35036 \series default
35037  forma parte del paquete LaTeX 
35038 \series bold
35039 was
35040 \series default
35041
35042 \begin_inset Index idx
35043 status collapsed
35044
35045 \begin_layout Plain Layout
35046 Paquetes ! was
35047 \begin_inset ERT
35048 status collapsed
35049
35050 \begin_layout Plain Layout
35051
35052
35053 \backslash
35054 vspace{4mm}
35055 \end_layout
35056
35057 \end_inset
35058
35059
35060 \end_layout
35061
35062 \end_inset
35063
35064 .
35065 \end_layout
35066
35067 \end_inset
35068
35069
35070 \begin_inset Index idx
35071 status collapsed
35072
35073 \begin_layout Plain Layout
35074 Paquetes ! icomma
35075 \end_layout
35076
35077 \end_inset
35078
35079  en el preámbulo LaTeX con la línea: 
35080 \end_layout
35081
35082 \begin_layout Standard
35083
35084 \series bold
35085
35086 \backslash
35087 usepackage{icomma}
35088 \end_layout
35089
35090 \begin_layout Subsection
35091 Vectores físicos
35092 \begin_inset CommandInset label
35093 LatexCommand label
35094 name "sub:Vectores-físicos"
35095
35096 \end_inset
35097
35098
35099 \begin_inset Index idx
35100 status collapsed
35101
35102 \begin_layout Plain Layout
35103 Vectores físicos
35104 \end_layout
35105
35106 \end_inset
35107
35108
35109 \end_layout
35110
35111 \begin_layout Standard
35112 El paquete LaTeX 
35113 \series bold
35114 braket
35115 \series default
35116
35117 \begin_inset Index idx
35118 status collapsed
35119
35120 \begin_layout Plain Layout
35121 Paquetes ! braket
35122 \end_layout
35123
35124 \end_inset
35125
35126  suministra vectores predefinidos; se carga con la línea de preámbulo LaTeX:
35127 \end_layout
35128
35129 \begin_layout Standard
35130
35131 \series bold
35132
35133 \backslash
35134 usepackage{braket}
35135 \end_layout
35136
35137 \begin_layout Standard
35138 \begin_inset ERT
35139 status collapsed
35140
35141 \begin_layout Plain Layout
35142
35143
35144 \backslash
35145 ifbraket 
35146 \end_layout
35147
35148 \end_inset
35149
35150
35151 \begin_inset Note Note
35152 status open
35153
35154 \begin_layout Plain Layout
35155 La tabla siguiente sólo se mostrará en la salida si el paquete LaTeX 
35156 \series bold
35157 braket
35158 \series default
35159  está instalado.
35160 \end_layout
35161
35162 \end_inset
35163
35164
35165 \end_layout
35166
35167 \begin_layout Standard
35168 Están definidos los siguientes comandos:
35169 \end_layout
35170
35171 \begin_layout Standard
35172 \noindent
35173 \align center
35174 \begin_inset Tabular
35175 <lyxtabular version="3" rows="4" columns="2">
35176 <features tabularvalignment="middle">
35177 <column alignment="center" valignment="top" width="0">
35178 <column alignment="center" valignment="top" width="0">
35179 <row>
35180 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35181 \begin_inset Text
35182
35183 \begin_layout Plain Layout
35184 Comando
35185 \end_layout
35186
35187 \end_inset
35188 </cell>
35189 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35190 \begin_inset Text
35191
35192 \begin_layout Plain Layout
35193 Resultado
35194 \end_layout
35195
35196 \end_inset
35197 </cell>
35198 </row>
35199 <row>
35200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35201 \begin_inset Text
35202
35203 \begin_layout Plain Layout
35204
35205 \backslash
35206 Bra{
35207 \backslash
35208 psi
35209 \end_layout
35210
35211 \end_inset
35212 </cell>
35213 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35214 \begin_inset Text
35215
35216 \begin_layout Plain Layout
35217 \begin_inset Formula $\Bra{\psi}$
35218 \end_inset
35219
35220
35221 \end_layout
35222
35223 \end_inset
35224 </cell>
35225 </row>
35226 <row>
35227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35228 \begin_inset Text
35229
35230 \begin_layout Plain Layout
35231
35232 \backslash
35233 Ket{
35234 \backslash
35235 psi
35236 \end_layout
35237
35238 \end_inset
35239 </cell>
35240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35241 \begin_inset Text
35242
35243 \begin_layout Plain Layout
35244 \begin_inset Formula $\Ket{\psi}$
35245 \end_inset
35246
35247
35248 \end_layout
35249
35250 \end_inset
35251 </cell>
35252 </row>
35253 <row>
35254 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35255 \begin_inset Text
35256
35257 \begin_layout Plain Layout
35258
35259 \backslash
35260 Braket{
35261 \backslash
35262 psi|
35263 \backslash
35264 phi
35265 \end_layout
35266
35267 \end_inset
35268 </cell>
35269 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35270 \begin_inset Text
35271
35272 \begin_layout Plain Layout
35273 \begin_inset Formula $\Braket{\psi|\phi}$
35274 \end_inset
35275
35276
35277 \end_layout
35278
35279 \end_inset
35280 </cell>
35281 </row>
35282 </lyxtabular>
35283
35284 \end_inset
35285
35286
35287 \end_layout
35288
35289 \begin_layout Standard
35290 El comando 
35291 \series bold
35292
35293 \backslash
35294 Braket
35295 \series default
35296  asegura que todas las barras verticales tienen el tamaño de los delimitadores
35297  circundantes:
35298 \begin_inset Formula \[
35299 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}\]
35300
35301 \end_inset
35302
35303
35304 \begin_inset ERT
35305 status collapsed
35306
35307 \begin_layout Plain Layout
35308
35309
35310 \backslash
35311 else
35312 \end_layout
35313
35314 \end_inset
35315
35316
35317 \begin_inset Note Note
35318 status open
35319
35320 \begin_layout Plain Layout
35321 Lo que sigue se verá en la salida si el paquete LaTeX 
35322 \series bold
35323 braket
35324 \series default
35325  no está instalado:
35326 \end_layout
35327
35328 \end_inset
35329
35330
35331 \end_layout
35332
35333 \begin_layout Standard
35334 Debes instalar el paquete LaTeX 
35335 \series bold
35336 braket
35337 \series default
35338  para ver en la salida el resto de esta subsección.
35339 \end_layout
35340
35341 \begin_layout Standard
35342 \begin_inset ERT
35343 status collapsed
35344
35345 \begin_layout Plain Layout
35346
35347
35348 \backslash
35349 fi
35350 \end_layout
35351
35352 \end_inset
35353
35354
35355 \end_layout
35356
35357 \begin_layout Standard
35358 El efecto de 
35359 \series bold
35360
35361 \backslash
35362 Braket
35363 \series default
35364  también se puede conseguir con el comando 
35365 \series bold
35366
35367 \backslash
35368 middle
35369 \series default
35370 , que se describe en 
35371 \begin_inset CommandInset ref
35372 LatexCommand ref
35373 reference "sub:Tamaño-automático-de"
35374
35375 \end_inset
35376
35377 .
35378 \end_layout
35379
35380 \begin_layout Subsection
35381 Fracciones definidas por el usuario
35382 \begin_inset CommandInset label
35383 LatexCommand label
35384 name "sub:Fracciones-personalizadas"
35385
35386 \end_inset
35387
35388
35389 \begin_inset Index idx
35390 status collapsed
35391
35392 \begin_layout Plain Layout
35393 Fracciones ! personalizadas
35394 \end_layout
35395
35396 \end_inset
35397
35398
35399 \end_layout
35400
35401 \begin_layout Standard
35402 Para definir comandos personalizados para fracciones, se usa el comando
35403  
35404 \series bold
35405
35406 \backslash
35407 genfrac
35408 \series default
35409
35410 \begin_inset Index idx
35411 status collapsed
35412
35413 \begin_layout Plain Layout
35414 Comandos ! G ! 
35415 \backslash
35416 genfrac
35417 \end_layout
35418
35419 \end_inset
35420
35421  con el siguiente esquema:
35422 \end_layout
35423
35424 \begin_layout Standard
35425
35426 \series bold
35427
35428 \backslash
35429 genfrac{delimitador izquierdo}{delimitador derecho}
35430 \begin_inset Newline newline
35431 \end_inset
35432
35433
35434 \begin_inset Phantom HPhantom
35435 status open
35436
35437 \begin_layout Plain Layout
35438
35439 \series bold
35440
35441 \backslash
35442 genfrac
35443 \end_layout
35444
35445 \end_inset
35446
35447 {grosor raya de fracción}{estilo}{numerador}{denominador}
35448 \end_layout
35449
35450 \begin_layout Standard
35451 El estilo es un número en el rango 0
35452 \begin_inset space \thinspace{}
35453 \end_inset
35454
35455 -
35456 \begin_inset space \thinspace{}
35457 \end_inset
35458
35459 3.
35460 \end_layout
35461
35462 \begin_layout Standard
35463 \align center
35464 \begin_inset Tabular
35465 <lyxtabular version="3" rows="5" columns="2">
35466 <features tabularvalignment="middle">
35467 <column alignment="center" valignment="top" width="0">
35468 <column alignment="center" valignment="top" width="0">
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 Número
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 Estilo (tamaño)
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 0
35495 \end_layout
35496
35497 \end_inset
35498 </cell>
35499 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35500 \begin_inset Text
35501
35502 \begin_layout Plain Layout
35503 ecuación presentada
35504 \end_layout
35505
35506 \end_inset
35507 </cell>
35508 </row>
35509 <row>
35510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35511 \begin_inset Text
35512
35513 \begin_layout Plain Layout
35514 1
35515 \end_layout
35516
35517 \end_inset
35518 </cell>
35519 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35520 \begin_inset Text
35521
35522 \begin_layout Plain Layout
35523 ecuación en línea
35524 \end_layout
35525
35526 \end_inset
35527 </cell>
35528 </row>
35529 <row>
35530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35531 \begin_inset Text
35532
35533 \begin_layout Plain Layout
35534 2
35535 \end_layout
35536
35537 \end_inset
35538 </cell>
35539 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35540 \begin_inset Text
35541
35542 \begin_layout Plain Layout
35543 pequeño
35544 \end_layout
35545
35546 \end_inset
35547 </cell>
35548 </row>
35549 <row>
35550 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35551 \begin_inset Text
35552
35553 \begin_layout Plain Layout
35554 3
35555 \end_layout
35556
35557 \end_inset
35558 </cell>
35559 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35560 \begin_inset Text
35561
35562 \begin_layout Plain Layout
35563 muy pequeño
35564 \end_layout
35565
35566 \end_inset
35567 </cell>
35568 </row>
35569 </lyxtabular>
35570
35571 \end_inset
35572
35573
35574 \end_layout
35575
35576 \begin_layout Standard
35577 Si no se pone estilo el tamaño se ajusta al entorno, como con el comando
35578  
35579 \series bold
35580
35581 \backslash
35582 frac
35583 \series default
35584 .
35585 \end_layout
35586
35587 \begin_layout Standard
35588 Si no se pone grosor de la raya de fracción se usará el valor predefinido
35589  de 0.4
35590 \begin_inset space \thinspace{}
35591 \end_inset
35592
35593 pt.
35594 \end_layout
35595
35596 \begin_layout Standard
35597 Por ejemplo, los comandos 
35598 \series bold
35599
35600 \backslash
35601 dfrac
35602 \series default
35603  y 
35604 \series bold
35605
35606 \backslash
35607 tbinom
35608 \series default
35609  de la 
35610 \begin_inset CommandInset ref
35611 LatexCommand ref
35612 reference "sub:Fracciones"
35613
35614 \end_inset
35615
35616  se definen con los comandos:
35617 \end_layout
35618
35619 \begin_layout Standard
35620
35621 \series bold
35622
35623 \backslash
35624 newcommand{
35625 \backslash
35626 dfrac}[2]{
35627 \backslash
35628 genfrac{}{}{}{0}{#1}{#2}}
35629 \end_layout
35630
35631 \begin_layout Standard
35632 y
35633 \end_layout
35634
35635 \begin_layout Standard
35636
35637 \series bold
35638
35639 \backslash
35640 newcommand{
35641 \backslash
35642 tbinom}[2]{
35643 \backslash
35644 genfrac{(}{)}{0pt}{1}{#1}{#2}}
35645 \end_layout
35646
35647 \begin_layout Standard
35648 \begin_inset VSpace medskip
35649 \end_inset
35650
35651
35652 \end_layout
35653
35654 \begin_layout Standard
35655 Para definir una fracción en la que el grosor de la raya se pueda definir
35656  como argumento opcional, se inserta la siguiente línea en el preámbulo
35657  LaTeX:
35658 \end_layout
35659
35660 \begin_layout Standard
35661
35662 \series bold
35663
35664 \backslash
35665 newcommand{
35666 \backslash
35667 fracS}[3][]{
35668 \backslash
35669 genfrac{}{}{#1}{}{#2}{#3}}
35670 \end_layout
35671
35672 \begin_layout Standard
35673 Un ensayo:
35674 \begin_inset Formula \begin{align*}
35675 \text{Comando} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
35676 \text{Resultado} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
35677 \end{align*}
35678
35679 \end_inset
35680
35681 Como se puede ver, la distancia del numerador y el denominador a la raya
35682  de fracción se redondea a unas tres veces el grosor de la raya.
35683 \end_layout
35684
35685 \begin_layout Subsection
35686 Ecuaciones canceladas
35687 \begin_inset Index idx
35688 status collapsed
35689
35690 \begin_layout Plain Layout
35691 Ecuación ! cancelada
35692 \end_layout
35693
35694 \end_inset
35695
35696
35697 \end_layout
35698
35699 \begin_layout Standard
35700 Para cancelar ecuaciones o partes de ellas hay que cargar el paquete LaTeX
35701  
35702 \series bold
35703 cancel
35704 \series default
35705
35706 \begin_inset Index idx
35707 status collapsed
35708
35709 \begin_layout Plain Layout
35710 Paquetes ! cancel
35711 \end_layout
35712
35713 \end_inset
35714
35715  con la línea de preámbulo LaTeX
35716 \end_layout
35717
35718 \begin_layout Standard
35719
35720 \series bold
35721
35722 \backslash
35723 usepackage[samesize]{cancel}
35724 \end_layout
35725
35726 \begin_layout Standard
35727 \begin_inset ERT
35728 status collapsed
35729
35730 \begin_layout Plain Layout
35731
35732
35733 \backslash
35734 ifcancel 
35735 \end_layout
35736
35737 \end_inset
35738
35739
35740 \begin_inset Note Note
35741 status open
35742
35743 \begin_layout Plain Layout
35744 La tabla siguiente sólo se mostrará en la salida si el paquete LaTeX 
35745 \series bold
35746 cancel
35747 \series default
35748  está instalado.
35749 \end_layout
35750
35751 \end_inset
35752
35753
35754 \end_layout
35755
35756 \begin_layout Standard
35757 Hay cuatro formas de cancelar ecuaciones:
35758 \end_layout
35759
35760 \begin_layout Standard
35761 \align center
35762 \begin_inset Tabular
35763 <lyxtabular version="3" rows="5" columns="2">
35764 <features tabularvalignment="middle">
35765 <column alignment="center" valignment="top" width="0">
35766 <column alignment="center" valignment="top" width="0">
35767 <row>
35768 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35769 \begin_inset Text
35770
35771 \begin_layout Plain Layout
35772 Comando
35773 \end_layout
35774
35775 \end_inset
35776 </cell>
35777 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35778 \begin_inset Text
35779
35780 \begin_layout Plain Layout
35781 Resultado
35782 \begin_inset Note Note
35783 status collapsed
35784
35785 \begin_layout Plain Layout
35786 El
35787 \series bold
35788  
35789 \series default
35790 espacio y 
35791 \series bold
35792
35793 \backslash
35794 raisebox
35795 \series default
35796  se usa sólo como espaciador
35797 \end_layout
35798
35799 \end_inset
35800
35801
35802 \end_layout
35803
35804 \end_inset
35805 </cell>
35806 </row>
35807 <row>
35808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35809 \begin_inset Text
35810
35811 \begin_layout Plain Layout
35812
35813 \backslash
35814 cancel{
35815 \backslash
35816 int
35817 \begin_inset ERT
35818 status collapsed
35819
35820 \begin_layout Plain Layout
35821
35822
35823 \backslash
35824 spce 
35825 \end_layout
35826
35827 \end_inset
35828
35829 A=B
35830 \end_layout
35831
35832 \end_inset
35833 </cell>
35834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35835 \begin_inset Text
35836
35837 \begin_layout Plain Layout
35838 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35839 \end_inset
35840
35841
35842 \end_layout
35843
35844 \end_inset
35845 </cell>
35846 </row>
35847 <row>
35848 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35849 \begin_inset Text
35850
35851 \begin_layout Plain Layout
35852
35853 \backslash
35854 bcancel{
35855 \backslash
35856 int
35857 \begin_inset ERT
35858 status collapsed
35859
35860 \begin_layout Plain Layout
35861
35862
35863 \backslash
35864 spce 
35865 \end_layout
35866
35867 \end_inset
35868
35869 A=B
35870 \end_layout
35871
35872 \end_inset
35873 </cell>
35874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35875 \begin_inset Text
35876
35877 \begin_layout Plain Layout
35878 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35879 \end_inset
35880
35881
35882 \end_layout
35883
35884 \end_inset
35885 </cell>
35886 </row>
35887 <row>
35888 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35889 \begin_inset Text
35890
35891 \begin_layout Plain Layout
35892
35893 \backslash
35894 xcancel{
35895 \backslash
35896 int
35897 \begin_inset ERT
35898 status collapsed
35899
35900 \begin_layout Plain Layout
35901
35902
35903 \backslash
35904 spce 
35905 \end_layout
35906
35907 \end_inset
35908
35909 A=B
35910 \end_layout
35911
35912 \end_inset
35913 </cell>
35914 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35915 \begin_inset Text
35916
35917 \begin_layout Plain Layout
35918 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35919 \end_inset
35920
35921
35922 \end_layout
35923
35924 \end_inset
35925 </cell>
35926 </row>
35927 <row>
35928 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35929 \begin_inset Text
35930
35931 \begin_layout Plain Layout
35932
35933 \backslash
35934 cancelto{1
35935 \begin_inset Formula $\to$
35936 \end_inset
35937
35938
35939 \backslash
35940 {
35941 \backslash
35942 int
35943 \begin_inset ERT
35944 status collapsed
35945
35946 \begin_layout Plain Layout
35947
35948
35949 \backslash
35950 spce 
35951 \end_layout
35952
35953 \end_inset
35954
35955 A=B
35956 \end_layout
35957
35958 \end_inset
35959 </cell>
35960 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35961 \begin_inset Text
35962
35963 \begin_layout Plain Layout
35964 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35965 \end_inset
35966
35967
35968 \end_layout
35969
35970 \end_inset
35971 </cell>
35972 </row>
35973 </lyxtabular>
35974
35975 \end_inset
35976
35977
35978 \end_layout
35979
35980 \begin_layout Standard
35981
35982 \series bold
35983
35984 \backslash
35985 cancelto
35986 \series default
35987  es especialmente apropiada para visualizar la simplificación de fracciones
35988  en una ecuación:
35989 \begin_inset Formula \[
35990 \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}}}\]
35991
35992 \end_inset
35993
35994
35995 \end_layout
35996
35997 \begin_layout Standard
35998 \begin_inset ERT
35999 status collapsed
36000
36001 \begin_layout Plain Layout
36002
36003
36004 \backslash
36005 else
36006 \end_layout
36007
36008 \end_inset
36009
36010
36011 \begin_inset Note Note
36012 status open
36013
36014 \begin_layout Plain Layout
36015 Lo que sigue se verá en la salida si el paquete LaTeX 
36016 \series bold
36017 cancel
36018 \series default
36019  no está instalado:
36020 \end_layout
36021
36022 \end_inset
36023
36024
36025 \end_layout
36026
36027 \begin_layout Standard
36028 Debes instalar el paquete LaTeX 
36029 \series bold
36030 cancel
36031 \series default
36032  para ver en la salida el resto de esta subsección.
36033 \end_layout
36034
36035 \begin_layout Standard
36036 \begin_inset ERT
36037 status collapsed
36038
36039 \begin_layout Plain Layout
36040
36041
36042 \backslash
36043 fi
36044 \end_layout
36045
36046 \end_inset
36047
36048
36049 \end_layout
36050
36051 \begin_layout Subsection
36052 Ecuaciones en encabezados de sección
36053 \begin_inset CommandInset label
36054 LatexCommand label
36055 name "sub:Ecuaciones-en-encabezados"
36056
36057 \end_inset
36058
36059
36060 \begin_inset Index idx
36061 status collapsed
36062
36063 \begin_layout Plain Layout
36064 Ecuación ! en encabezados de sección
36065 \end_layout
36066
36067 \end_inset
36068
36069
36070 \end_layout
36071
36072 \begin_layout Standard
36073 Si se quiere poner una ecuación en un encabezado de sección hay que tener
36074  en cuenta lo siguiente:
36075 \end_layout
36076
36077 \begin_layout Standard
36078 \begin_inset Note Greyedout
36079 status open
36080
36081 \begin_layout Plain Layout
36082 Si el soporte para 
36083 \series bold
36084 hyperref
36085 \series default
36086
36087 \begin_inset Index idx
36088 status collapsed
36089
36090 \begin_layout Plain Layout
36091 Paquetes ! hyperref
36092 \end_layout
36093
36094 \end_inset
36095
36096  está activado en la configuración del documento, 
36097 \family sans
36098 Propiedades
36099 \begin_inset space ~
36100 \end_inset
36101
36102
36103 \family default
36104 PDF, se generan marcadores PDF para cada encabezado de sección en el índice.
36105  Si el encabezado contiene ecuaciones, se muestran incorrectamente en el
36106  texto del marcador, porque se infringen las convenciones PDF.
36107 \end_layout
36108
36109 \end_inset
36110
36111
36112 \end_layout
36113
36114 \begin_layout Standard
36115 Estos problemas se pueden solucionar insertando al final del encabezado
36116  un título breve con el menú 
36117 \family sans
36118 Insertar\SpecialChar \menuseparator
36119 Título
36120 \begin_inset space ~
36121 \end_inset
36122
36123 breve
36124 \family default
36125 .
36126  Los títulos breves se usan como alternativa para encabezados de sección
36127  con más de una línea para mantener el buen aspecto del índice.
36128  En éste sólo aparece el título breve y por tanto también en los marcadores.
36129 \end_layout
36130
36131 \begin_layout Standard
36132 Si hay que poner ecuaciones en el índice y se usa 
36133 \series bold
36134 hyperref
36135 \series default
36136 , se puede insertar el siguiente comando en modo TeX:
36137 \end_layout
36138
36139 \begin_layout Standard
36140
36141 \series bold
36142
36143 \backslash
36144 texorpdfstring{parte}{alternativa}
36145 \begin_inset Index idx
36146 status collapsed
36147
36148 \begin_layout Plain Layout
36149 Comandos ! T ! 
36150 \backslash
36151 texorpdfstring
36152 \end_layout
36153
36154 \end_inset
36155
36156
36157 \end_layout
36158
36159 \begin_layout Standard
36160 parte se refiere a la parte del encabezado que no debería aparecer en el
36161  marcador PDF.
36162  Puede ser caracteres, ecuaciones, notas al pie, y también referencias cruzadas.
36163  La alternativa se usa para el marcador en vez de la parte.
36164 \end_layout
36165
36166 \begin_layout Standard
36167 Aquí hay dos ejemplos de encabezados con ecuación:
36168 \end_layout
36169
36170 \begin_layout Standard
36171 \begin_inset VSpace -3mm
36172 \end_inset
36173
36174
36175 \end_layout
36176
36177 \begin_layout Standard
36178 \begin_inset ERT
36179 status collapsed
36180
36181 \begin_layout Plain Layout
36182
36183
36184 \backslash
36185 boldmath 
36186 \end_layout
36187
36188 \end_inset
36189
36190
36191 \end_layout
36192
36193 \begin_layout Subsubsection
36194 Encabezado sin ecuación en el índice 
36195 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36196 \end_inset
36197
36198
36199 \begin_inset Argument
36200 status collapsed
36201
36202 \begin_layout Plain Layout
36203 Encabezado sin ecuación en el índice
36204 \end_layout
36205
36206 \end_inset
36207
36208
36209 \end_layout
36210
36211 \begin_layout Subsubsection
36212 Encabezado con ecuación en el índice
36213 \begin_inset ERT
36214 status collapsed
36215
36216 \begin_layout Plain Layout
36217
36218
36219 \backslash
36220 texorpdfstring{
36221 \end_layout
36222
36223 \end_inset
36224
36225  
36226 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36227 \end_inset
36228
36229
36230 \begin_inset ERT
36231 status collapsed
36232
36233 \begin_layout Plain Layout
36234
36235 }{}
36236 \end_layout
36237
36238 \end_inset
36239
36240
36241 \end_layout
36242
36243 \begin_layout Standard
36244 \begin_inset ERT
36245 status collapsed
36246
36247 \begin_layout Plain Layout
36248
36249
36250 \backslash
36251 unboldmath 
36252 \end_layout
36253
36254 \end_inset
36255
36256 En el primer encabezado se ha puesto un título breve, en el segundo un 
36257 \series bold
36258
36259 \backslash
36260 texorpdfstring
36261 \series default
36262 .
36263 \end_layout
36264
36265 \begin_layout Standard
36266 Para obtener el mismo formato que en los demás encabezados se han puesto
36267  ambos en un entorno 
36268 \series bold
36269 boldmath
36270 \series default
36271 .
36272 \begin_inset Foot
36273 status collapsed
36274
36275 \begin_layout Plain Layout
36276 véase 
36277 \begin_inset CommandInset ref
36278 LatexCommand ref
36279 reference "sub:Ecuaciones-en-negrita"
36280
36281 \end_inset
36282
36283
36284 \end_layout
36285
36286 \end_inset
36287
36288
36289 \end_layout
36290
36291 \begin_layout Subsection
36292 Ecuaciones en texto multicolumna
36293 \begin_inset Index idx
36294 status collapsed
36295
36296 \begin_layout Plain Layout
36297 Ecuación ! en texto multicolumna
36298 \end_layout
36299
36300 \end_inset
36301
36302
36303 \end_layout
36304
36305 \begin_layout Standard
36306 Las ecuaciones en texto multicolumna son con frecuencia demasiado anchas
36307  para ajustarse a la columna y entonces es preciso abarcar la anchura total
36308  de la página.
36309  Esto se hace usando el paquete LaTeX 
36310 \series bold
36311 multicol
36312 \series default
36313 ,
36314 \begin_inset Foot
36315 status collapsed
36316
36317 \begin_layout Plain Layout
36318
36319 \series bold
36320 multicol
36321 \series default
36322  forma parte de las distribuciones LaTeX estándar.
36323 \end_layout
36324
36325 \end_inset
36326
36327
36328 \begin_inset Index idx
36329 status collapsed
36330
36331 \begin_layout Plain Layout
36332 Paquetes ! multicol
36333 \end_layout
36334
36335 \end_inset
36336
36337  que se carga en el preámbulo LaTeX con la línea
36338 \end_layout
36339
36340 \begin_layout Standard
36341
36342 \series bold
36343
36344 \backslash
36345 usepackage{multicol}
36346 \end_layout
36347
36348 \begin_layout Standard
36349 \begin_inset Note Greyedout
36350 status collapsed
36351
36352 \begin_layout Plain Layout
36353 Ten en cuenta que la opción 
36354 \family sans
36355 Documento
36356 \begin_inset space ~
36357 \end_inset
36358
36359 con
36360 \begin_inset space ~
36361 \end_inset
36362
36363 dos
36364 \begin_inset space ~
36365 \end_inset
36366
36367 caras
36368 \family default
36369 , bajo 
36370 \family sans
36371 Diseño
36372 \begin_inset space ~
36373 \end_inset
36374
36375 de
36376 \begin_inset space ~
36377 \end_inset
36378
36379 página 
36380 \family default
36381 en el menú 
36382 \family sans
36383 Documento\SpecialChar \menuseparator
36384 Configuración
36385 \family default
36386  
36387 \emph on
36388 debe
36389 \emph default
36390  estar desmarcada.
36391 \end_layout
36392
36393 \end_inset
36394
36395
36396 \end_layout
36397
36398 \begin_layout Standard
36399 Antes del texto multicolumna se inserta en modo TeX el comando
36400 \end_layout
36401
36402 \begin_layout Standard
36403
36404 \series bold
36405
36406 \backslash
36407 begin{multicols}{número de columnas}
36408 \end_layout
36409
36410 \begin_layout Standard
36411 El número de columnas está en el rango 2-10.
36412  Antes de la ecuación, se finaliza el texto multicolumna insertando en modo
36413  TeX el comando
36414 \end_layout
36415
36416 \begin_layout Standard
36417
36418 \series bold
36419
36420 \backslash
36421 end{multicols}
36422 \end_layout
36423
36424 \begin_layout Standard
36425 Debido al comando se añade automáticamente algún espacio delante de la ecuación.
36426  Para quitarlo se inserta un espacio vertical de -6
36427 \begin_inset space \thinspace{}
36428 \end_inset
36429
36430 mm antes de la ecuación.
36431  Si se usa el estilo 
36432 \series bold
36433 Sangrado
36434 \series default
36435 ,
36436 \begin_inset Foot
36437 status collapsed
36438
36439 \begin_layout Plain Layout
36440 véase estilos de ecuación en 
36441 \begin_inset CommandInset ref
36442 LatexCommand ref
36443 reference "sec:Estilos-de-ecuación"
36444
36445 \end_inset
36446
36447
36448 \end_layout
36449
36450 \end_inset
36451
36452  se inserta un espacio de -9
36453 \begin_inset space \thinspace{}
36454 \end_inset
36455
36456 mm.
36457 \end_layout
36458
36459 \begin_layout Standard
36460 Un ejemplo de texto multicolumna con una ecuación en modo presentación:
36461 \end_layout
36462
36463 \begin_layout Standard
36464
36465 \lang german
36466 \begin_inset ERT
36467 status collapsed
36468
36469 \begin_layout Plain Layout
36470
36471
36472 \backslash
36473 begin{multicols}{2}
36474 \end_layout
36475
36476 \end_inset
36477
36478 Das Spektrum wird fouriertransformiert.
36479  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
36480 , Lösungsmittel) zu trennen.
36481  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
36482  nun das Aussehen des Ausgangssignals.
36483  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
36484  über alle Phasen integrieren muss.
36485  Sei nun 
36486 \begin_inset Formula $S$
36487 \end_inset
36488
36489  unser normiertes Ausgangssignal und 
36490 \begin_inset Formula $P$
36491 \end_inset
36492
36493  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
36494 \begin_inset ERT
36495 status collapsed
36496
36497 \begin_layout Plain Layout
36498
36499
36500 \backslash
36501 end{multicols}
36502 \end_layout
36503
36504 \end_inset
36505
36506
36507 \begin_inset VSpace -6mm
36508 \end_inset
36509
36510
36511 \begin_inset Formula \begin{equation}
36512 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi\end{equation}
36513
36514 \end_inset
36515
36516
36517 \begin_inset ERT
36518 status collapsed
36519
36520 \begin_layout Plain Layout
36521
36522
36523 \backslash
36524 begin{multicols}{2}
36525 \end_layout
36526
36527 \end_inset
36528
36529 wobei 
36530 \begin_inset Formula $S_{0}$
36531 \end_inset
36532
36533  das Signal ohne Gradient ist und die Normierungsbedingung 
36534 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
36535 \end_inset
36536
36537  gilt.
36538  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
36539  Direkt nach dem 
36540 \begin_inset Formula $\nicefrac{\pi}{2}$
36541 \end_inset
36542
36543
36544 \begin_inset space \thinspace{}
36545 \end_inset
36546
36547 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
36548  das Signal zusätzlich abschwächt.
36549  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
36550  
36551 \begin_inset Formula $T_{2}$
36552 \end_inset
36553
36554 -Zeit.
36555 \end_layout
36556
36557 \begin_layout Standard
36558
36559 \lang german
36560 \begin_inset ERT
36561 status collapsed
36562
36563 \begin_layout Plain Layout
36564
36565
36566 \backslash
36567 end{multicols}
36568 \end_layout
36569
36570 \end_inset
36571
36572
36573 \end_layout
36574
36575 \begin_layout Subsection
36576 Ecuaciones con descripción de variables
36577 \begin_inset Index idx
36578 status collapsed
36579
36580 \begin_layout Plain Layout
36581 Ecuación ! con descripción de variables
36582 \end_layout
36583
36584 \end_inset
36585
36586
36587 \end_layout
36588
36589 \begin_layout Standard
36590 Para describir variables en una ecuación, como en la fórmula 
36591 \begin_inset CommandInset ref
36592 LatexCommand eqref
36593 reference "eq:within"
36594
36595 \end_inset
36596
36597 , se inserta una matriz 2×
36598 \begin_inset Formula $n$
36599 \end_inset
36600
36601  con columnas alineadas a la izquierda para las 
36602 \emph on
36603
36604 \begin_inset Formula $n$
36605 \end_inset
36606
36607
36608 \emph default
36609  variables usadas.
36610 \begin_inset Foot
36611 status collapsed
36612
36613 \begin_layout Plain Layout
36614 véase matrices en 
36615 \begin_inset CommandInset ref
36616 LatexCommand ref
36617 reference "sec:Matrices"
36618
36619 \end_inset
36620
36621
36622 \end_layout
36623
36624 \end_inset
36625
36626  Para poner la descripción en tamaño más pequeño se inserta, p.e, el comando
36627  
36628 \series bold
36629
36630 \backslash
36631 footnotesize
36632 \series default
36633  antes de la matriz.
36634 \begin_inset Foot
36635 status collapsed
36636
36637 \begin_layout Plain Layout
36638 véase tamaños de fuentes en 
36639 \begin_inset CommandInset ref
36640 LatexCommand ref
36641 reference "sub:Tamaños-de-fuentes"
36642
36643 \end_inset
36644
36645 .
36646 \end_layout
36647
36648 \end_inset
36649
36650
36651 \end_layout
36652
36653 \begin_layout Standard
36654 Si se usa el estilo 
36655 \series bold
36656 Sangrado
36657 \series default
36658 ,
36659 \begin_inset Foot
36660 status collapsed
36661
36662 \begin_layout Plain Layout
36663 véase estilos de ecuación en 
36664 \begin_inset CommandInset ref
36665 LatexCommand ref
36666 reference "sec:Estilos-de-ecuación"
36667
36668 \end_inset
36669
36670
36671 \end_layout
36672
36673 \end_inset
36674
36675  se inserta un 
36676 \series bold
36677
36678 \backslash
36679 hfill
36680 \series default
36681
36682 \begin_inset Foot
36683 status collapsed
36684
36685 \begin_layout Plain Layout
36686
36687 \series bold
36688
36689 \backslash
36690 hfill
36691 \series default
36692  sólo funciona en ecuaciones en estilo 
36693 \series bold
36694 Sangrado
36695 \series default
36696 , véase 
36697 \begin_inset CommandInset ref
36698 LatexCommand ref
36699 reference "sub:Espacio-variable"
36700
36701 \end_inset
36702
36703
36704 \end_layout
36705
36706 \end_inset
36707
36708  delante y detrás de la matriz para que tenga la misma separación con la
36709  ecuación y con el margen.
36710 \end_layout
36711
36712 \begin_layout Standard
36713 Si se usa el estilo 
36714 \series bold
36715 Centrado
36716 \series default
36717  se emplea el método descrito en la 
36718 \begin_inset CommandInset ref
36719 LatexCommand ref
36720 reference "sub:Entorno-flalign"
36721
36722 \end_inset
36723
36724  para sangrar la ecuación.
36725  La ecuación 
36726 \begin_inset CommandInset ref
36727 LatexCommand eqref
36728 reference "eq:within"
36729
36730 \end_inset
36731
36732  consta de cinco columnas ya que las dos primeras contienen la fórmula,
36733  la tercera la matriz y la última una llave TeX vacía.
36734 \begin_inset Formula \begin{flalign}
36735 \hspace{30pt} & F_{A}=\rho\cdot V\cdot g & \footnotesize\begin{array}{ll}
36736 \rho & \mbox{densidad}\\
36737 V & \mbox{volumen}\\
36738 g & \mbox{aceleración gravitatoria}
36739 \end{array} &  & {}\label{eq:within}\end{flalign}
36740
36741 \end_inset
36742
36743
36744 \end_layout
36745
36746 \begin_layout Subsection
36747 Letras griegas minúsculas en redonda
36748 \begin_inset CommandInset label
36749 LatexCommand label
36750 name "sub:Griegas-en-redonda"
36751
36752 \end_inset
36753
36754
36755 \begin_inset Index idx
36756 status collapsed
36757
36758 \begin_layout Plain Layout
36759 Letras griegas ! en redonda
36760 \end_layout
36761
36762 \end_inset
36763
36764
36765 \end_layout
36766
36767 \begin_layout Standard
36768 La mayoría de las fuentes sólo suministran letras griegas minúsculas en
36769  cursiva.
36770  Pero para símbolos de partículas elementales como piones y neutrinos hacen
36771  falta letras griegas en redonda.
36772  El archivo 
36773 \series bold
36774 upgreek.sty
36775 \series default
36776
36777 \begin_inset Foot
36778 status collapsed
36779
36780 \begin_layout Plain Layout
36781
36782 \series bold
36783 upgreek
36784 \series default
36785  forma parte del paquete LaTeX 
36786 \series bold
36787 was
36788 \series default
36789
36790 \begin_inset Index idx
36791 status collapsed
36792
36793 \begin_layout Plain Layout
36794 Paquetes ! was
36795 \begin_inset ERT
36796 status collapsed
36797
36798 \begin_layout Plain Layout
36799
36800
36801 \backslash
36802 vspace{4mm}
36803 \end_layout
36804
36805 \end_inset
36806
36807
36808 \end_layout
36809
36810 \end_inset
36811
36812 .
36813 \end_layout
36814
36815 \end_inset
36816
36817
36818 \begin_inset Index idx
36819 status collapsed
36820
36821 \begin_layout Plain Layout
36822 Paquetes ! upgreek
36823 \end_layout
36824
36825 \end_inset
36826
36827 , que se carga en el preámbulo LaTeX con la línea
36828 \end_layout
36829
36830 \begin_layout Standard
36831
36832 \series bold
36833
36834 \backslash
36835 usepackage{upgreek}
36836 \end_layout
36837
36838 \begin_layout Standard
36839 las suministra.
36840  
36841 \begin_inset ERT
36842 status collapsed
36843
36844 \begin_layout Plain Layout
36845
36846
36847 \backslash
36848 ifupgreek 
36849 \end_layout
36850
36851 \end_inset
36852
36853
36854 \begin_inset Note Note
36855 status open
36856
36857 \begin_layout Plain Layout
36858 Lo siguinente sólo se podrá ver si está instalado el paquete LaTeX 
36859 \series bold
36860 upgreek
36861 \series default
36862 :
36863 \end_layout
36864
36865 \end_inset
36866
36867  Se imprimen con el comando de la letra correspondiente precedido de 
36868 \series bold
36869 up
36870 \series default
36871 .
36872  Por ejemplo, el comando 
36873 \series bold
36874
36875 \backslash
36876 uptau
36877 \series default
36878  genera: 
36879 \begin_inset Formula $\uptau$
36880 \end_inset
36881
36882
36883 \end_layout
36884
36885 \begin_layout Standard
36886 Con estos comandos se pueden escribir reacciones entre partículas elementales:
36887 \begin_inset Formula \[
36888 \uppi^{+}\rightarrow\upmu^{+}+\upnu_{\upmu}\]
36889
36890 \end_inset
36891
36892
36893 \end_layout
36894
36895 \begin_layout Standard
36896 Las letras en redonda son más remarcadas y más grandes que las correspondientes
36897  en cursiva.
36898  Por tanto no deberían emplearse para unidades como 
36899 \begin_inset Quotes fld
36900 \end_inset
36901
36902 µm
36903 \begin_inset Quotes frd
36904 \end_inset
36905
36906 .
36907 \end_layout
36908
36909 \begin_layout Standard
36910 \begin_inset ERT
36911 status collapsed
36912
36913 \begin_layout Plain Layout
36914
36915
36916 \backslash
36917 else 
36918 \end_layout
36919
36920 \end_inset
36921
36922
36923 \begin_inset Note Note
36924 status open
36925
36926 \begin_layout Plain Layout
36927 Lo siguiente se mostrará si el paquete LaTeX 
36928 \series bold
36929 upgreek
36930 \series default
36931  no está instalado:
36932 \end_layout
36933
36934 \end_inset
36935
36936
36937 \end_layout
36938
36939 \begin_layout Standard
36940 Debes instalar el paquete LaTeX 
36941 \series bold
36942 upgreek
36943 \series default
36944  para ver en la salida el resto de esta subsección.
36945  
36946 \end_layout
36947
36948 \begin_layout Standard
36949 \begin_inset ERT
36950 status collapsed
36951
36952 \begin_layout Plain Layout
36953
36954
36955 \backslash
36956 fi
36957 \end_layout
36958
36959 \end_inset
36960
36961
36962 \end_layout
36963
36964 \begin_layout Subsection
36965 Caracteres de texto en ecuaciones
36966 \begin_inset CommandInset label
36967 LatexCommand label
36968 name "sub:Caracteres-de-texto"
36969
36970 \end_inset
36971
36972
36973 \begin_inset Index idx
36974 status collapsed
36975
36976 \begin_layout Plain Layout
36977 Texto ! en ecuaciones
36978 \end_layout
36979
36980 \end_inset
36981
36982
36983 \end_layout
36984
36985 \begin_layout Standard
36986 En algunos casos podrías querer insertar caracteres de texto directamente
36987  en ecuaciones.
36988  Por ejemplo, cuando se usa con frecuencia el punto centrado 
36989 \begin_inset Formula $\cdot$
36990 \end_inset
36991
36992  en expresiones como 
36993 \begin_inset Formula $v=5\cdot10^{5}\,\mathrm{Hz}$
36994 \end_inset
36995
36996 , habría que insertar el comando 
36997 \series bold
36998
36999 \backslash
37000 cdot
37001 \series default
37002
37003 \begin_inset Foot
37004 status collapsed
37005
37006 \begin_layout Plain Layout
37007 véase 
37008 \begin_inset CommandInset ref
37009 LatexCommand ref
37010 reference "sub:Operadores-binarios"
37011
37012 \end_inset
37013
37014
37015 \end_layout
37016
37017 \end_inset
37018
37019  continuamente, porque este carácter está definido en todas las codificaciones
37020  como carácter de texto.
37021  Pero la codificación se puede cambiar con la línea de preámbulo LaTeX:
37022 \end_layout
37023
37024 \begin_layout Standard
37025
37026 \series bold
37027
37028 \backslash
37029 Declare Inputtext{183}{
37030 \backslash
37031 ifmmode
37032 \backslash
37033 cdot
37034 \backslash
37035 else
37036 \backslash
37037 textperiodcentered
37038 \backslash
37039 f\SpecialChar \textcompwordmark{}
37040 i}
37041 \end_layout
37042
37043 \begin_layout Standard
37044 La codificación de caracteres (menú 
37045 \family sans
37046 Documento\SpecialChar \menuseparator
37047 Configuración\SpecialChar \menuseparator
37048 Idioma
37049 \family default
37050 ) especifica el carácter que se muestra al pulsar una tecla.
37051  Si se pulsa la tecla para el carácter '·', se usa internamente el comando
37052  
37053 \series bold
37054
37055 \backslash
37056 textperiodcentered
37057 \series default
37058 .
37059  Pero este comando no está disponible en ecuaciones así que obtendrías errores
37060  de LaTeX.
37061  Con la codificación cambiada se escoge automáticamente el comando correcto,
37062  dependiendo de si el carácter se ha insertado en una ecuación o no.
37063 \end_layout
37064
37065 \begin_layout Standard
37066 La codificación de diversos caracteres se guarda en archivos de definición.
37067  Por ejemplo la codificación 
37068 \series bold
37069 latin9
37070 \series default
37071  se define en el archivo 
37072 \series bold
37073 latin9.def
37074 \series default
37075  que está en el directorio de LaTeX.
37076  La codificación sólo debería cambiarse en el preámbulo LaTeX y no en el
37077  archivo de definición, de lo contrario nuestros documentos no podrían ser
37078  editados en otros ordenadores.
37079 \begin_inset VSpace medskip
37080 \end_inset
37081
37082
37083 \end_layout
37084
37085 \begin_layout Standard
37086 Además del punto centrado, en este documento se ha definido el símbolo grado
37087  ° con la siguiente línea de preámbulo LaTeX, para que se pueda insertar
37088  directamente en una fórmula:
37089 \end_layout
37090
37091 \begin_layout Standard
37092
37093 \series bold
37094
37095 \backslash
37096 DeclareInputtext{176}{
37097 \backslash
37098 ifmmode^
37099 \backslash
37100 circ
37101 \backslash
37102 else
37103 \backslash
37104 textdegree
37105 \backslash
37106 f\SpecialChar \textcompwordmark{}
37107 i}
37108 \begin_inset Newpage newpage
37109 \end_inset
37110
37111
37112 \end_layout
37113
37114 \begin_layout Section
37115 \start_of_appendix
37116 Notas sobre tipografía
37117 \begin_inset Index idx
37118 status collapsed
37119
37120 \begin_layout Plain Layout
37121 Tipografía, notas
37122 \end_layout
37123
37124 \end_inset
37125
37126
37127 \end_layout
37128
37129 \begin_layout Standard
37130 Esta sección es un resumen de las normas tipográficas ISO más importantes.
37131 \begin_inset Foot
37132 status collapsed
37133
37134 \begin_layout Plain Layout
37135 Este compendio se ha tomado parcialmente del diccionario semioficial alemán
37136  
37137 \begin_inset Quotes fld
37138 \end_inset
37139
37140 Duden
37141 \begin_inset Quotes frd
37142 \end_inset
37143
37144  
37145 \begin_inset CommandInset citation
37146 LatexCommand cite
37147 key "Duden"
37148
37149 \end_inset
37150
37151 , que incluye algunas de las normas ISO.
37152  
37153 \begin_inset Newline newline
37154 \end_inset
37155
37156 (
37157 \emph on
37158 N.
37159 \begin_inset space \thinspace{}
37160 \end_inset
37161
37162 del t.
37163 \emph default
37164 : Para documentación en español sobre el tema, véase 
37165 \begin_inset CommandInset citation
37166 LatexCommand cite
37167 key "Bezos"
37168
37169 \end_inset
37170
37171 .)
37172 \end_layout
37173
37174 \end_inset
37175
37176
37177 \end_layout
37178
37179 \begin_layout Itemize
37180 Las unidades físicas se escriben 
37181 \emph on
37182 siempre 
37183 \emph default
37184 en redonda
37185 \begin_inset Foot
37186 status collapsed
37187
37188 \begin_layout Plain Layout
37189 véase estilos de fuentes en 
37190 \begin_inset CommandInset ref
37191 LatexCommand ref
37192 reference "sub:Estilos-de-fuentes"
37193
37194 \end_inset
37195
37196
37197 \end_layout
37198
37199 \end_inset
37200
37201 , aunque aparezcan en un texto en cursiva: 30
37202 \begin_inset space \thinspace{}
37203 \end_inset
37204
37205 km/h
37206 \begin_inset Newline newline
37207 \end_inset
37208
37209 Entre el valor y la unidad hay un espacio delgado, véase 
37210 \begin_inset CommandInset ref
37211 LatexCommand ref
37212 reference "sub:Espacio-predefinido"
37213
37214 \end_inset
37215
37216 .
37217 \begin_inset Newline newline
37218 \end_inset
37219
37220 Esta norma la cumple automáticamente el comando 
37221 \series bold
37222
37223 \backslash
37224 unittwo
37225 \series default
37226 .
37227  Si se introduce en una fórmula aparecen dos cuadros.
37228  En el primero se inserta el valor y en el segundo la unidad, y se obtiene,
37229  como antes, 
37230 \begin_inset Formula $\unit[30]{km/h}$
37231 \end_inset
37232
37233
37234 \begin_inset space \thinspace{}
37235 \end_inset
37236
37237 .
37238  Ten en cuenta que 
37239 \series bold
37240
37241 \backslash
37242 unittwo
37243 \series default
37244  no es un auténtico comando LaTeX, sino el comando 
37245 \series bold
37246
37247 \backslash
37248 unit[value]{unit}
37249 \series default
37250 , por tanto no lo puedes usar en código TeX.
37251 \end_layout
37252
37253 \begin_layout Itemize
37254 Los signos por ciento y por mil se escriben como las unidades físicas:
37255 \begin_inset Newline newline
37256 \end_inset
37257
37258 1,2
37259 \begin_inset space \thinspace{}
37260 \end_inset
37261
37262 ‰ de alcohol en sangre.
37263 \end_layout
37264
37265 \begin_layout Itemize
37266 El símbolo grado sigue directamente al valor: 15°, excepto si acompaña a
37267  otra unidad: 15
37268 \begin_inset space \thinspace{}
37269 \end_inset
37270
37271 °C
37272 \end_layout
37273
37274 \begin_layout Itemize
37275 En números con más de cuatro dígitos se inserta un espacio delgado para
37276  separarlos en grupos de tres cifras: 18
37277 \begin_inset space \thinspace{}
37278 \end_inset
37279
37280 473
37281 \begin_inset space \thinspace{}
37282 \end_inset
37283
37284 588
37285 \end_layout
37286
37287 \begin_layout Itemize
37288 Para dimensiones como 120×90×40
37289 \begin_inset space \thinspace{}
37290 \end_inset
37291
37292 cm se usa el aspa de multiplicar 
37293 \begin_inset Quotes fld
37294 \end_inset
37295
37296 ×
37297 \begin_inset Quotes frd
37298 \end_inset
37299
37300 .
37301  Está disponible en el menú 
37302 \family sans
37303 Insertar\SpecialChar \menuseparator
37304 Carácter especial
37305 \family default
37306 \SpecialChar \menuseparator
37307
37308 \family sans
37309 Símbolos
37310 \family default
37311  o bien mediante el comando 
37312 \series bold
37313
37314 \backslash
37315 times
37316 \series default
37317 .
37318  Se puede insertar directamente con cierta combinación de teclas.
37319 \end_layout
37320
37321 \begin_layout Itemize
37322 Las funciones con nombres que constan de varias letras se escriben en redonda
37323  para evitar confusiones, véase 
37324 \begin_inset CommandInset ref
37325 LatexCommand ref
37326 reference "sub:Funciones-predefinidas"
37327
37328 \end_inset
37329
37330 .
37331 \end_layout
37332
37333 \begin_layout Itemize
37334 Los índices que constan de varias letras se escriben en redonda: 
37335 \begin_inset Formula $E_{\mathrm{cin}}$
37336 \end_inset
37337
37338
37339 \begin_inset Newline newline
37340 \end_inset
37341
37342 Los componentes de una matriz se escriben en cursiva: 
37343 \begin_inset Formula $\hat{H}_{kl}$
37344 \end_inset
37345
37346
37347 \end_layout
37348
37349 \begin_layout Itemize
37350 El operador de diferenciación/integración 'd', el número de Euler 'e' y
37351  el número imaginario 'i' deberían escribirse en redonda para evitar confundirlo
37352 s con otras variables.
37353 \end_layout
37354
37355 \begin_layout Itemize
37356 El carácter que indica una transformación 
37357 \noun on
37358 Fourier
37359 \noun default
37360  se inserta con el comando 
37361 \series bold
37362
37363 \backslash
37364 mathscr
37365 \begin_inset ERT
37366 status collapsed
37367
37368 \begin_layout Plain Layout
37369
37370
37371 \backslash
37372 spce 
37373 \end_layout
37374
37375 \end_inset
37376
37377
37378 \backslash
37379 {F
37380 \series default
37381
37382 \begin_inset Index idx
37383 status collapsed
37384
37385 \begin_layout Plain Layout
37386 Comandos ! M ! 
37387 \backslash
37388 mathscr
37389 \end_layout
37390
37391 \end_inset
37392
37393  o mediante el menú
37394 \family sans
37395  Insertar\SpecialChar \menuseparator
37396 Carácter especial
37397 \family default
37398 \SpecialChar \menuseparator
37399
37400 \family sans
37401 Símbolos\SpecialChar \menuseparator
37402 Símbolos de letra
37403 \family default
37404
37405 \begin_inset Formula $\mathscr{F}$
37406 \end_inset
37407
37408
37409 \begin_inset Newline newline
37410 \end_inset
37411
37412 Para poder usar el comando 
37413 \series bold
37414
37415 \backslash
37416 mathscr
37417 \series default
37418 , hay que cargar el paquete LaTeX
37419 \series bold
37420  mathrsfs
37421 \series default
37422
37423 \begin_inset Index idx
37424 status collapsed
37425
37426 \begin_layout Plain Layout
37427 Paquetes ! mathrsfs
37428 \end_layout
37429
37430 \end_inset
37431
37432  en el preámbulo LaTeX mediante la línea 
37433 \series bold
37434
37435 \backslash
37436 usepackage{mathrsfs}
37437 \series default
37438 .
37439 \end_layout
37440
37441 \begin_layout Standard
37442 \begin_inset Newpage newpage
37443 \end_inset
37444
37445
37446 \end_layout
37447
37448 \begin_layout Section
37449 Sinónimos
37450 \begin_inset Index idx
37451 status collapsed
37452
37453 \begin_layout Plain Layout
37454 Sinónimos
37455 \end_layout
37456
37457 \end_inset
37458
37459
37460 \end_layout
37461
37462 \begin_layout Standard
37463 Algunos caracteres y símbolos se pueden componer con varios comandos sinónimos
37464  como los que se recogen en esta lista:
37465 \begin_inset Foot
37466 status collapsed
37467
37468 \begin_layout Plain Layout
37469 véase también 
37470 \begin_inset CommandInset ref
37471 LatexCommand ref
37472 reference "fn:sinónimos"
37473
37474 \end_inset
37475
37476 .
37477 \end_layout
37478
37479 \end_inset
37480
37481
37482 \end_layout
37483
37484 \begin_layout Standard
37485
37486 \end_layout
37487
37488 \begin_layout Standard
37489 \begin_inset VSpace bigskip
37490 \end_inset
37491
37492
37493 \begin_inset space \hfill{}
37494 \end_inset
37495
37496
37497 \begin_inset Tabular
37498 <lyxtabular version="3" rows="12" columns="2">
37499 <features tabularvalignment="middle">
37500 <column alignment="center" valignment="top" width="0pt">
37501 <column alignment="center" valignment="top" width="0pt">
37502 <row>
37503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37504 \begin_inset Text
37505
37506 \begin_layout Plain Layout
37507 Comando
37508 \end_layout
37509
37510 \end_inset
37511 </cell>
37512 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37513 \begin_inset Text
37514
37515 \begin_layout Plain Layout
37516 equivalente a
37517 \begin_inset Note Note
37518 status collapsed
37519
37520 \begin_layout Plain Layout
37521
37522 \series bold
37523
37524 \backslash
37525 raisebox
37526 \series default
37527  se usa sólo como espaciador
37528 \end_layout
37529
37530 \end_inset
37531
37532
37533 \end_layout
37534
37535 \end_inset
37536 </cell>
37537 </row>
37538 <row>
37539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37540 \begin_inset Text
37541
37542 \begin_layout Plain Layout
37543
37544 \backslash
37545 ast
37546 \end_layout
37547
37548 \end_inset
37549 </cell>
37550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37551 \begin_inset Text
37552
37553 \begin_layout Plain Layout
37554 \begin_inset ERT
37555 status collapsed
37556
37557 \begin_layout Plain Layout
37558
37559
37560 \backslash
37561 raisebox{-1.2mm}{
37562 \end_layout
37563
37564 \end_inset
37565
37566 *
37567 \begin_inset ERT
37568 status collapsed
37569
37570 \begin_layout Plain Layout
37571
37572 }
37573 \end_layout
37574
37575 \end_inset
37576
37577
37578 \end_layout
37579
37580 \end_inset
37581 </cell>
37582 </row>
37583 <row>
37584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37585 \begin_inset Text
37586
37587 \begin_layout Plain Layout
37588
37589 \backslash
37590 choose
37591 \end_layout
37592
37593 \end_inset
37594 </cell>
37595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37596 \begin_inset Text
37597
37598 \begin_layout Plain Layout
37599
37600 \backslash
37601 binom
37602 \end_layout
37603
37604 \end_inset
37605 </cell>
37606 </row>
37607 <row>
37608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37609 \begin_inset Text
37610
37611 \begin_layout Plain Layout
37612
37613 \backslash
37614 geq
37615 \end_layout
37616
37617 \end_inset
37618 </cell>
37619 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37620 \begin_inset Text
37621
37622 \begin_layout Plain Layout
37623
37624 \backslash
37625 ge
37626 \end_layout
37627
37628 \end_inset
37629 </cell>
37630 </row>
37631 <row>
37632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37633 \begin_inset Text
37634
37635 \begin_layout Plain Layout
37636
37637 \backslash
37638 lbrace
37639 \end_layout
37640
37641 \end_inset
37642 </cell>
37643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37644 \begin_inset Text
37645
37646 \begin_layout Plain Layout
37647 {
37648 \end_layout
37649
37650 \end_inset
37651 </cell>
37652 </row>
37653 <row>
37654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37655 \begin_inset Text
37656
37657 \begin_layout Plain Layout
37658
37659 \backslash
37660 lbracket
37661 \end_layout
37662
37663 \end_inset
37664 </cell>
37665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37666 \begin_inset Text
37667
37668 \begin_layout Plain Layout
37669 [
37670 \end_layout
37671
37672 \end_inset
37673 </cell>
37674 </row>
37675 <row>
37676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37677 \begin_inset Text
37678
37679 \begin_layout Plain Layout
37680
37681 \backslash
37682 leftarrow
37683 \end_layout
37684
37685 \end_inset
37686 </cell>
37687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37688 \begin_inset Text
37689
37690 \begin_layout Plain Layout
37691
37692 \backslash
37693 gets
37694 \end_layout
37695
37696 \end_inset
37697 </cell>
37698 </row>
37699 <row>
37700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37701 \begin_inset Text
37702
37703 \begin_layout Plain Layout
37704
37705 \backslash
37706 leq
37707 \end_layout
37708
37709 \end_inset
37710 </cell>
37711 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37712 \begin_inset Text
37713
37714 \begin_layout Plain Layout
37715
37716 \backslash
37717 le
37718 \end_layout
37719
37720 \end_inset
37721 </cell>
37722 </row>
37723 <row>
37724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37725 \begin_inset Text
37726
37727 \begin_layout Plain Layout
37728
37729 \backslash
37730 lor
37731 \end_layout
37732
37733 \end_inset
37734 </cell>
37735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37736 \begin_inset Text
37737
37738 \begin_layout Plain Layout
37739
37740 \backslash
37741 vee
37742 \end_layout
37743
37744 \end_inset
37745 </cell>
37746 </row>
37747 <row>
37748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37749 \begin_inset Text
37750
37751 \begin_layout Plain Layout
37752
37753 \backslash
37754 neq
37755 \end_layout
37756
37757 \end_inset
37758 </cell>
37759 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37760 \begin_inset Text
37761
37762 \begin_layout Plain Layout
37763
37764 \backslash
37765 not=
37766 \end_layout
37767
37768 \end_inset
37769 </cell>
37770 </row>
37771 <row>
37772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37773 \begin_inset Text
37774
37775 \begin_layout Plain Layout
37776
37777 \backslash
37778 slash
37779 \end_layout
37780
37781 \end_inset
37782 </cell>
37783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37784 \begin_inset Text
37785
37786 \begin_layout Plain Layout
37787 /
37788 \end_layout
37789
37790 \end_inset
37791 </cell>
37792 </row>
37793 <row>
37794 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37795 \begin_inset Text
37796
37797 \begin_layout Plain Layout
37798
37799 \backslash
37800 vert
37801 \end_layout
37802
37803 \end_inset
37804 </cell>
37805 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37806 \begin_inset Text
37807
37808 \begin_layout Plain Layout
37809 |
37810 \end_layout
37811
37812 \end_inset
37813 </cell>
37814 </row>
37815 </lyxtabular>
37816
37817 \end_inset
37818
37819
37820 \begin_inset space \hfill{}
37821 \end_inset
37822
37823
37824 \begin_inset Tabular
37825 <lyxtabular version="3" rows="12" columns="2">
37826 <features tabularvalignment="middle">
37827 <column alignment="center" valignment="top" width="0pt">
37828 <column alignment="center" valignment="top" width="0pt">
37829 <row>
37830 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37831 \begin_inset Text
37832
37833 \begin_layout Plain Layout
37834 Comando
37835 \end_layout
37836
37837 \end_inset
37838 </cell>
37839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37840 \begin_inset Text
37841
37842 \begin_layout Plain Layout
37843 equivalente a
37844 \end_layout
37845
37846 \end_inset
37847 </cell>
37848 </row>
37849 <row>
37850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37851 \begin_inset Text
37852
37853 \begin_layout Plain Layout
37854
37855 \backslash
37856 backslash
37857 \end_layout
37858
37859 \end_inset
37860 </cell>
37861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37862 \begin_inset Text
37863
37864 \begin_layout Plain Layout
37865
37866 \backslash
37867
37868 \backslash
37869
37870 \end_layout
37871
37872 \end_inset
37873 </cell>
37874 </row>
37875 <row>
37876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37877 \begin_inset Text
37878
37879 \begin_layout Plain Layout
37880
37881 \backslash
37882 dasharrow
37883 \end_layout
37884
37885 \end_inset
37886 </cell>
37887 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37888 \begin_inset Text
37889
37890 \begin_layout Plain Layout
37891
37892 \backslash
37893 dashrightarrow
37894 \end_layout
37895
37896 \end_inset
37897 </cell>
37898 </row>
37899 <row>
37900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37901 \begin_inset Text
37902
37903 \begin_layout Plain Layout
37904
37905 \backslash
37906 land
37907 \end_layout
37908
37909 \end_inset
37910 </cell>
37911 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37912 \begin_inset Text
37913
37914 \begin_layout Plain Layout
37915
37916 \backslash
37917 wedge
37918 \end_layout
37919
37920 \end_inset
37921 </cell>
37922 </row>
37923 <row>
37924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37925 \begin_inset Text
37926
37927 \begin_layout Plain Layout
37928
37929 \backslash
37930 rbrace
37931 \end_layout
37932
37933 \end_inset
37934 </cell>
37935 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37936 \begin_inset Text
37937
37938 \begin_layout Plain Layout
37939 }
37940 \end_layout
37941
37942 \end_inset
37943 </cell>
37944 </row>
37945 <row>
37946 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37947 \begin_inset Text
37948
37949 \begin_layout Plain Layout
37950
37951 \backslash
37952 rbracket
37953 \end_layout
37954
37955 \end_inset
37956 </cell>
37957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37958 \begin_inset Text
37959
37960 \begin_layout Plain Layout
37961 ]
37962 \end_layout
37963
37964 \end_inset
37965 </cell>
37966 </row>
37967 <row>
37968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37969 \begin_inset Text
37970
37971 \begin_layout Plain Layout
37972
37973 \backslash
37974 rightarrow
37975 \end_layout
37976
37977 \end_inset
37978 </cell>
37979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37980 \begin_inset Text
37981
37982 \begin_layout Plain Layout
37983
37984 \backslash
37985 to
37986 \end_layout
37987
37988 \end_inset
37989 </cell>
37990 </row>
37991 <row>
37992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37993 \begin_inset Text
37994
37995 \begin_layout Plain Layout
37996
37997 \backslash
37998 lnot
37999 \end_layout
38000
38001 \end_inset
38002 </cell>
38003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38004 \begin_inset Text
38005
38006 \begin_layout Plain Layout
38007
38008 \backslash
38009 neg
38010 \end_layout
38011
38012 \end_inset
38013 </cell>
38014 </row>
38015 <row>
38016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38017 \begin_inset Text
38018
38019 \begin_layout Plain Layout
38020
38021 \backslash
38022 ne
38023 \end_layout
38024
38025 \end_inset
38026 </cell>
38027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38028 \begin_inset Text
38029
38030 \begin_layout Plain Layout
38031
38032 \backslash
38033 not=
38034 \end_layout
38035
38036 \end_inset
38037 </cell>
38038 </row>
38039 <row>
38040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38041 \begin_inset Text
38042
38043 \begin_layout Plain Layout
38044
38045 \backslash
38046 owns
38047 \end_layout
38048
38049 \end_inset
38050 </cell>
38051 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38052 \begin_inset Text
38053
38054 \begin_layout Plain Layout
38055
38056 \backslash
38057 ni
38058 \end_layout
38059
38060 \end_inset
38061 </cell>
38062 </row>
38063 <row>
38064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38065 \begin_inset Text
38066
38067 \begin_layout Plain Layout
38068
38069 \backslash
38070 square
38071 \end_layout
38072
38073 \end_inset
38074 </cell>
38075 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38076 \begin_inset Text
38077
38078 \begin_layout Plain Layout
38079
38080 \backslash
38081 Box
38082 \end_layout
38083
38084 \end_inset
38085 </cell>
38086 </row>
38087 <row>
38088 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
38089 \begin_inset Text
38090
38091 \begin_layout Plain Layout
38092
38093 \backslash
38094 Vert
38095 \end_layout
38096
38097 \end_inset
38098 </cell>
38099 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
38100 \begin_inset Text
38101
38102 \begin_layout Plain Layout
38103
38104 \backslash
38105 |
38106 \end_layout
38107
38108 \end_inset
38109 </cell>
38110 </row>
38111 </lyxtabular>
38112
38113 \end_inset
38114
38115
38116 \begin_inset space \hfill{}
38117 \end_inset
38118
38119
38120 \end_layout
38121
38122 \begin_layout Standard
38123 \begin_inset Newpage newpage
38124 \end_inset
38125
38126
38127 \end_layout
38128
38129 \begin_layout Bibliography
38130 \labelwidthstring Referencias
38131 \begin_inset CommandInset bibitem
38132 LatexCommand bibitem
38133 key "TLC2"
38134
38135 \end_inset
38136
38137
38138 \shape smallcaps
38139 Mittelbach, F.
38140  ; Goossens, M.
38141 \shape default
38142
38143 \shape italic
38144 The LaTeX Companion
38145 \shape default
38146 .
38147  Addison Wesley, 2004
38148 \end_layout
38149
38150 \begin_layout Bibliography
38151 \labelwidthstring Referencias
38152 \begin_inset CommandInset bibitem
38153 LatexCommand bibitem
38154 key "Mathmode"
38155
38156 \end_inset
38157
38158
38159 \begin_inset CommandInset href
38160 LatexCommand href
38161 name "Descripción"
38162 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
38163
38164 \end_inset
38165
38166  de habilidades matemáticas de LaTeX
38167 \end_layout
38168
38169 \begin_layout Bibliography
38170 \labelwidthstring Referencias
38171 \begin_inset CommandInset bibitem
38172 LatexCommand bibitem
38173 key "AMS"
38174
38175 \end_inset
38176
38177
38178 \begin_inset CommandInset href
38179 LatexCommand href
38180 name "Descripción"
38181 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
38182
38183 \end_inset
38184
38185  de 
38186 \begin_inset ERT
38187 status collapsed
38188
38189 \begin_layout Plain Layout
38190
38191
38192 \backslash
38193 AmS
38194 \end_layout
38195
38196 \end_inset
38197
38198 -LaTeX
38199 \end_layout
38200
38201 \begin_layout Bibliography
38202 \labelwidthstring Referencias
38203 \begin_inset CommandInset bibitem
38204 LatexCommand bibitem
38205 key "Symbols"
38206
38207 \end_inset
38208
38209
38210 \begin_inset CommandInset href
38211 LatexCommand href
38212 name "Lista"
38213 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
38214
38215 \end_inset
38216
38217  de todos los símbolos disponibles con paquetes LaTeX
38218 \end_layout
38219
38220 \begin_layout Bibliography
38221 \labelwidthstring Referencias
38222 \begin_inset CommandInset bibitem
38223 LatexCommand bibitem
38224 key "hyperref"
38225
38226 \end_inset
38227
38228
38229 \begin_inset CommandInset href
38230 LatexCommand href
38231 name "Documentación"
38232 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
38233
38234 \end_inset
38235
38236  del paquete LaTeX 
38237 \series bold
38238 hyperref
38239 \series default
38240
38241 \begin_inset Index idx
38242 status collapsed
38243
38244 \begin_layout Plain Layout
38245 Paquetes ! hyperref
38246 \end_layout
38247
38248 \end_inset
38249
38250
38251 \end_layout
38252
38253 \begin_layout Bibliography
38254 \labelwidthstring Referencias
38255 \begin_inset CommandInset bibitem
38256 LatexCommand bibitem
38257 key "mhchem"
38258
38259 \end_inset
38260
38261
38262 \begin_inset CommandInset href
38263 LatexCommand href
38264 name "Documentación"
38265 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
38266
38267 \end_inset
38268
38269  del paquete LaTeX 
38270 \series bold
38271 mhchem
38272 \series default
38273
38274 \begin_inset Index idx
38275 status collapsed
38276
38277 \begin_layout Plain Layout
38278 Paquetes ! mhchem
38279 \end_layout
38280
38281 \end_inset
38282
38283
38284 \end_layout
38285
38286 \begin_layout Bibliography
38287 \labelwidthstring Referencias
38288 \begin_inset CommandInset bibitem
38289 LatexCommand bibitem
38290 key "Mathclap"
38291
38292 \end_inset
38293
38294
38295 \begin_inset CommandInset href
38296 LatexCommand href
38297 name "Descripción"
38298 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
38299
38300 \end_inset
38301
38302  del comando 
38303 \series bold
38304
38305 \backslash
38306 mathclap
38307 \series default
38308 , descrito en 
38309 \begin_inset CommandInset ref
38310 LatexCommand ref
38311 reference "sub:Límites-de-operadores"
38312
38313 \end_inset
38314
38315
38316 \begin_inset Index idx
38317 status collapsed
38318
38319 \begin_layout Plain Layout
38320 Comandos ! M ! 
38321 \backslash
38322 mathclap
38323 \end_layout
38324
38325 \end_inset
38326
38327
38328 \end_layout
38329
38330 \begin_layout Bibliography
38331 \labelwidthstring Referencias
38332 \begin_inset CommandInset bibitem
38333 LatexCommand bibitem
38334 key "Duden"
38335
38336 \end_inset
38337
38338
38339 \emph on
38340 Duden Band 1
38341 \emph default
38342 .
38343  22.
38344  Auflage, Duden 2001
38345 \end_layout
38346
38347 \begin_layout Bibliography
38348 \labelwidthstring Referencias
38349 \begin_inset CommandInset bibitem
38350 LatexCommand bibitem
38351 key "spanish"
38352
38353 \end_inset
38354
38355
38356 \begin_inset CommandInset href
38357 LatexCommand href
38358 name "Página web"
38359 target "http://www.tex-tipografia.com/spanish.html"
38360
38361 \end_inset
38362
38363  del estilo 
38364 \series bold
38365 spanish
38366 \family sans
38367 \series default
38368  
38369 \family default
38370 incluido en el paquete 
38371 \series bold
38372 babel
38373 \end_layout
38374
38375 \begin_layout Bibliography
38376 \labelwidthstring Referencias
38377 \begin_inset CommandInset bibitem
38378 LatexCommand bibitem
38379 key "Bezos"
38380
38381 \end_inset
38382
38383
38384 \begin_inset CommandInset href
38385 LatexCommand href
38386 name "Documento"
38387 target "http://www.tex-tipografia.com/archive/ortomatem.pdf"
38388
38389 \end_inset
38390
38391  sobre ortotipografía y notaciones matemáticas en español
38392 \end_layout
38393
38394 \begin_layout Standard
38395
38396 \family sans
38397 \series bold
38398 \begin_inset CommandInset index_print
38399 LatexCommand printindex
38400 type "idx"
38401
38402 \end_inset
38403
38404
38405 \end_layout
38406
38407 \end_body
38408 \end_document