]> git.lyx.org Git - features.git/blob - lib/doc/es/EmbeddedObjects.lyx
ba9c92823cd4cda950c04a33fe4ec7e41d720cf3
[features.git] / lib / doc / es / EmbeddedObjects.lyx
1 #LyX 1.5.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 269
3 \begin_document
4 \begin_header
5 \textclass scrbook
6 \begin_preamble
7 % provides caption formatting
8 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}[2004/07/16]
9
10 % provides commands to set caption
11 % beside tables/images
12 \usepackage{sidecap}
13
14 \newcommand{\TabBesBeg}{%
15  \let\MyTable\table
16  \let\MyEndtable\endtable
17  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
18
19 \newcommand{\TabBesEnd}{%
20  \let\table\MyTable
21  \let\endtable\MyEndtable}
22
23 \newcommand{\FigBesBeg}{%
24  \let\MyFigure\figure
25  \let\MyEndfigure\endfigure
26  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
27
28 \newcommand{\FigBesEnd}{%
29  \let\figure\MyFigure
30  \let\endfigure\MyEndfigure}
31
32 % enables calculation of values,
33 \usepackage{calc}
34
35 % provides special table cell alignments
36 \usepackage{dcolumn}
37
38 % increase the bottom float placement fraction
39 \renewcommand{\bottomfraction}{0.5}
40
41 % avoids that floats are placed before their
42 % corresponding section starts
43 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
44
45 % speed up the longtable calculation
46 \setcounter{LTchunksize}{100}
47
48 % if pdflatex is used
49 \usepackage{ifpdf}
50 \ifpdf
51
52 % set fonts for nicer pdf view
53 \IfFileExists{lmodern.sty}
54  {\usepackage{lmodern}} % if it exists
55  {% if it exists not
56   \usepackage[scaled=0.92]{helvet}
57   \usepackage{mathptmx}
58   \usepackage{courier}
59  } % end if it exists not
60
61 % link all cross references and URLs
62 % in pdf output
63  \usepackage[colorlinks=true, bookmarks, bookmarksnumbered, bookmarksopen, bookmarksopenlevel=1,
64   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,
65   pdfpagelayout=OneColumn, pdfnewwindow=true,
66   pdfstartview=XYZ, plainpages=false, pdfpagelabels,
67   pdfauthor={LyX Team}, pdftex,
68   pdftitle={LyX's Figure, Table, Floats, Notes, and Boxes manual},
69   pdfsubject={LyX-documentation about figures, tables, floats, notes, and boxes},
70   pdfkeywords={LyX, Tables, Figures, Floats, Boxes, Notes}]{hyperref}
71  
72 \else % if dvi or ps is produced
73
74  % link all cross references and URLs in DVI output
75  \usepackage[ps2pdf, colorlinks=true,
76   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue]{hyperref}
77
78 \fi % end if pdflatex is used
79
80 % that links to image floats jumps
81 % to the beginning of the float and 
82 % not to its caption
83 \usepackage[figure]{hypcap}
84
85 % used for colored tables
86 \@ifundefined{textcolor}
87  {\usepackage{color}}{}
88 \usepackage{colortbl}
89 \definecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
90 \definecolor{grisclaro}{gray}{0.8}
91
92 % used for multirows
93 \usepackage{multirow}
94 %\renewcommand{\multirowsetup}{\centering}
95
96 % used for book-style tables
97 \usepackage{booktabs}
98
99 % used to have extra space in table cells,
100 \setlength{\extrarowheight}{2pt}
101
102 % used for customized tables
103 % ---
104 \newcolumntype{M}[1]
105  {>{\centering\hspace{0pt}}m{#1}}
106
107 \newcolumntype{S}[2]
108  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
109
110 \newcolumntype{K}[1]
111  {>{\columncolor{#1}\hspace{0pt}}c}
112
113 \newcolumntype{V}{!{\vrule width 1.5pt}}
114
115 \newcolumntype{W}{!{\color{green}\vline}}
116 % ---
117
118 % To be able to enter the characters ° and · directly in LyX
119 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
120 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
121
122 % the pages of the TOC are numbered roman
123 % and a PDF-bookmark for the TOC is added
124 \pagenumbering{Roman}
125 \let\myTOC\tableofcontents
126 \renewcommand{\tableofcontents}{%
127  \pdfbookmark[1]{Índice General}{}
128  \myTOC
129  \cleardoublepage
130  \pagenumbering{arabic}}
131
132 % insert additional vertical space of
133 % 1.5 mm between footnotes
134 \let\myFoot\footnote
135 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
136
137 % enable algorithm floats to be referenced
138 \newfloat{Xalgorithm}{tbp}{loa}
139 \floatname{Xalgorithm}{Algoritmo}
140 \newcommand{\theHalgorithm}{\theHXalgorithm}
141 \renewenvironment{algorithm}[1][tbp]
142  {\begin{Xalgorithm}[#1]}{\end{Xalgorithm}}
143
144 % number algorithm floats within chapters
145 \numberwithin{Xalgorithm}{chapter}
146
147 % redefine the greyed out note
148 \renewenvironment{lyxgreyedout}
149  {\textcolor{blue}\bgroup}{\egroup}
150
151 % ------------------------------------
152 % used to check for needed LaTeX packages
153 \usepackage{ifthen}
154
155 % check for package arydshln
156 % used for tables with dashed lines
157 \newboolean{arydshln}
158 \IfFileExists{arydshln.sty}
159  {\usepackage{arydshln}
160   \setboolean{arydshln}{true}}
161  {\setboolean{arydshln}{false}}
162
163 % check for package marginnote
164 % used for margin notes
165 \newboolean{marginnote}
166 \IfFileExists{marginnote.sty}
167  {\usepackage{marginnote}
168   \let\marginpar\marginnote
169   \setboolean{marginnote}{true}}
170  {\setboolean{marginnote}{false}}
171 \end_preamble
172 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
173 \language spanish
174 \inputencoding auto
175 \font_roman default
176 \font_sans default
177 \font_typewriter default
178 \font_default_family default
179 \font_sc false
180 \font_osf false
181 \font_sf_scale 100
182 \font_tt_scale 100
183 \graphics default
184 \paperfontsize 12
185 \spacing single
186 \papersize default
187 \use_geometry false
188 \use_amsmath 2
189 \use_esint 0
190 \cite_engine basic
191 \use_bibtopic false
192 \paperorientation portrait
193 \secnumdepth 3
194 \tocdepth 3
195 \paragraph_separation skip
196 \defskip medskip
197 \quotes_language english
198 \papercolumns 1
199 \papersides 2
200 \paperpagestyle default
201 \bullet 1 1 34 -1
202 \bullet 2 2 35 -1
203 \bullet 3 2 7 -1
204 \tracking_changes false
205 \output_changes false
206 \author "usti" 
207 \author "IG,,," 
208 \author "IG" 
209 \author "Uwe Stöhr" 
210 \end_header
211
212 \begin_body
213
214 \begin_layout Title
215 Manual detallado de Figuras, Tablas, Flotantes, Notas, Cuadros y Archivos
216  en LyX
217 \end_layout
218
219 \begin_layout Author
220 por el Equipo LyX
221 \begin_inset Foot
222 status collapsed
223
224 \begin_layout Standard
225 \noindent
226 Si tienes comentarios o correcciones, por favor, envíalo a la lista de correo
227  de Documentación de LyX: 
228 \family typewriter
229
230 \begin_inset ERT
231 status collapsed
232
233 \begin_layout Standard
234
235
236 \backslash
237 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's es-ExtendedInsets manual}{
238 \end_layout
239
240 \end_inset
241
242 lyx-docs@lists.lyx.org
243 \begin_inset ERT
244 status collapsed
245
246 \begin_layout Standard
247
248 }
249 \end_layout
250
251 \end_inset
252
253
254 \end_layout
255
256 \end_inset
257
258
259 \begin_inset Note Note
260 status collapsed
261
262 \begin_layout Standard
263 autor original: Uwe Stöhr
264 \end_layout
265
266 \end_inset
267
268
269 \begin_inset Note Note
270 status collapsed
271
272 \begin_layout Standard
273 Traducción de: Ignacio García
274 \end_layout
275
276 \end_inset
277
278
279 \newline
280
281 \newline
282
283 \family sans
284 Versión 1.5.0-1
285 \end_layout
286
287 \begin_layout Standard
288 \begin_inset LatexCommand tableofcontents
289
290 \end_inset
291
292
293 \end_layout
294
295 \begin_layout Standard
296 \begin_inset Note Note
297 status open
298
299 \begin_layout Standard
300 Para exportar todas las partes de este documento a PDF, PS, o DVI, deben
301  estar instalados los paquetes LaTeX 
302 \series bold
303 arydshln
304 \series default
305  y 
306 \series bold
307 marginnote
308 \series default
309 .
310  Si no están instalados, también podrás exportar el documento, pero las
311  secciones en que dichos paquetes son necesarios no aparecen en la salida.
312 \end_layout
313
314 \begin_layout Standard
315 La última versión en PDF de este documento puede encontrarse aquí:
316 \series bold
317
318 \newline
319 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
320 \end_layout
321
322 \end_inset
323
324
325 \end_layout
326
327 \begin_layout Chapter
328 Figuras
329 \begin_inset LatexCommand label
330 name "cha:Figuras"
331
332 \end_inset
333
334
335 \begin_inset LatexCommand index
336 name "Figuras"
337
338 \end_inset
339
340
341 \begin_inset LatexCommand index
342 name "Gráficos|see{Figuras}"
343
344 \end_inset
345
346
347 \end_layout
348
349 \begin_layout Section
350 Diálogo Gráficos
351 \begin_inset LatexCommand label
352 name "sec:Diálogo-Gráficos"
353
354 \end_inset
355
356
357 \begin_inset LatexCommand index
358 name "Figuras ! Diálogo Gráficos"
359
360 \end_inset
361
362
363 \end_layout
364
365 \begin_layout Standard
366 Para insertar una imagen en un documento, sitúa el cursor en el lugar del
367  texto que desees y haz click en el icono 
368 \begin_inset Graphics
369         filename ../../images/dialog-show-new-inset_graphics.xpm
370         scale 85
371
372 \end_inset
373
374  o en el menú 
375 \family sans
376 Insertar\SpecialChar \menuseparator
377 Imagen\SpecialChar \ldots{}
378
379 \family default
380  Aparecerá un diálogo para escoger el archivo a cargar.
381  La imagen aparecerá en el archivo de salida exactamente en la misma posición
382  en la que la has colocado.
383 \end_layout
384
385 \begin_layout Standard
386 El diálogo Gráficos puede lanzarse en cualquier momento haciendo clic-derecha
387  sobre una imagen.
388  Este diálogo tiene tres pestañas:
389 \end_layout
390
391 \begin_layout Description
392 Gráficos Aquí puedes elegir tu archivo gráfico y ajustar separadamente su
393  presentación en LyX y en la salida.
394  En el apéndice\InsetSpace ~
395
396 \begin_inset LatexCommand ref
397 reference "cha:Unidades-disponibles-en"
398
399 \end_inset
400
401  se detallan las unidades disponibles para el tamaño del gráfico.
402 \newline
403 Puedes girar
404  los gráficos en el sentido de las agujas de reloj estableciendo un ángulo
405  y un origen de rotación.
406  La imagen también gira en LyX.
407 \newline
408 Las imágenes se pueden escalar mediante un
409  porcentaje o fijando explícitamente la altura y la anchura.
410  Si fijas solo la anchura o solo la altura, la otra dimensión se establece
411  automáticamente.
412  Si fijas ambas dimensiones
413 \family sans
414 ,
415 \family default
416  la imagen se adaptará a ellas, posiblemente distorsionada.
417  Para evitar distorsión en la imagen marca la opción 
418 \family sans
419 Mantener\InsetSpace ~
420 proporción
421 \family default
422 .
423  En ese caso la imagen será escalada de forma que su anchura y su altura
424  no excedan de las dimensiones especificadas.
425 \newline
426 Las imágenes se pueden abrir
427  con un programa de tu elección pulsando el botón 
428 \family sans
429 Editar
430 \family default
431 .
432  Los programas visor y editor para cada formato de imagen se pueden establecer
433  en la configuración de los formatos de archivo de las preferencias de LyX.
434 \end_layout
435
436 \begin_layout Description
437 Recorte Alternativamente al escalado, es posible establecer las coordenadas
438  de la imagen para ajustar su altura y anchura en la salida.
439  Además, las coordenadas se pueden calcular automáticamente pinchando el
440  botón 
441 \family sans
442 Obtener\InsetSpace ~
443 de\InsetSpace ~
444 archivo
445 \family default
446 .
447  El botón 
448 \family sans
449 Recortar\InsetSpace ~
450 al\InsetSpace ~
451 cuadro\InsetSpace ~
452 delimitador
453 \family default
454  imprimirá sólo la región de la imagen comprendida en las coordenadas introducid
455 as.
456  Normalmente no necesitarás preocuparte por esto y puedes ignorar esta solapa.
457 \end_layout
458
459 \begin_layout Description
460 Opciones\InsetSpace ~
461 extra En esta solapa puedes modificar la apariencia de la imagen
462  en LyX, y poner la imagen como subfigura de una figura flotante con su
463  propio título.Las subfiguras se explican en la sección\InsetSpace ~
464
465 \begin_inset LatexCommand ref
466 reference "sec:Figuras-Flotantes"
467
468 \end_inset
469
470 .
471 \newline
472 Los expertos en LaTeX pueden especificar aquí opciones LaTeX adicionales.
473 \newline
474 La
475  opción 
476 \family sans
477 Modo\InsetSpace ~
478 borrador
479 \family default
480  hace que en la salida se muestre sólo un marco con el tamaño de la imagen.
481 \newline
482 La
483  opción 
484 \family sans
485 No\InsetSpace ~
486 descomprimir\InsetSpace ~
487 al\InsetSpace ~
488 exportar
489 \family default
490  sólo afecta a los gráficos EPS comprimidos, p.\InsetSpace \thinspace{}
491 e.\InsetSpace ~
492
493 \emph on
494 x.eps.gz
495 \emph default
496 .
497  Si se usa esta opción, las imágenes no serán descomprimidas al exportar,
498  puesto que LaTeX puede manejarlas como están.
499 \newline
500 Los gráficos EPS comprimidos
501  sirven para ahorrar espacio de disco si se utiliza PostScript como formato
502  de salida, ver apéndice\InsetSpace ~
503
504 \begin_inset LatexCommand ref
505 reference "sec:PostScript"
506
507 \end_inset
508
509 .
510  Para comprimir gráficos EPS, usa los siguientes comandos en un UNIX-shell
511  o en consola de Windows:
512 \newline
513
514 \series bold
515 gzip x.eps
516 \series default
517
518 \newline
519
520 \series bold
521 zgrep %%Bounding x.eps.gz > x.eps.bb
522 \series default
523
524 \newline
525 El segundo comando crea un archivo de cuadro delimitador 
526 \begin_inset Quotes eld
527 \end_inset
528
529 x.eps.bb
530 \begin_inset Quotes erd
531 \end_inset
532
533  que necesita LaTeX para gráficos comprimidos.
534 \end_layout
535
536 \begin_layout Standard
537 \begin_inset VSpace bigskip
538 \end_inset
539
540
541 \end_layout
542
543 \begin_layout Standard
544 Esto es un ejemplo de imagen en formato EPS
545 \begin_inset Foot
546 status collapsed
547
548 \begin_layout Standard
549 Los formatos de imagen se explica en el sección\InsetSpace ~
550
551 \begin_inset LatexCommand ref
552 reference "sec:Formatos-de-imagen"
553
554 \end_inset
555
556 .
557 \end_layout
558
559 \end_inset
560
561  en un párrafo separado centrado horizontalmente:
562 \end_layout
563
564 \begin_layout Standard
565 \align center
566 \begin_inset Graphics
567         filename ../clipart/mobius.eps
568         display color
569         scale 70
570         rotateOrigin center
571
572 \end_inset
573
574
575 \end_layout
576
577 \begin_layout Standard
578 Esta es la misma imagen pero en modo borrador:
579 \end_layout
580
581 \begin_layout Standard
582 \align center
583 \begin_inset Graphics
584         filename ../clipart/mobius.eps
585         display color
586         scale 70
587         draft
588         rotateOrigin center
589
590 \end_inset
591
592
593 \end_layout
594
595 \begin_layout Section
596 Figuras Flotantes
597 \begin_inset LatexCommand label
598 name "sec:Figuras-Flotantes"
599
600 \end_inset
601
602
603 \begin_inset LatexCommand index
604 name "Flotantes ! Figuras Flotantes"
605
606 \end_inset
607
608
609 \begin_inset LatexCommand index
610 name "Figuras ! Flotantes"
611
612 \end_inset
613
614
615 \end_layout
616
617 \begin_layout Standard
618 Para información general sobre flotantes, echa una ojeada a la sección\InsetSpace ~
619
620 \begin_inset LatexCommand ref
621 reference "sec:IntroducciónFlotantes"
622
623 \end_inset
624
625 .
626 \end_layout
627
628 \begin_layout Standard
629 El botón 
630 \begin_inset Graphics
631         filename ../../images/float-insert_figure.xpm
632         scale 85
633
634 \end_inset
635
636  y el menú 
637 \family sans
638 Insertar\SpecialChar \menuseparator
639 Flotante\SpecialChar \menuseparator
640 Figura
641 \family default
642  insertan un flotante con la etiqueta 
643 \begin_inset Quotes eld
644 \end_inset
645
646 Figura #:
647 \begin_inset Quotes erd
648 \end_inset
649
650  (# es el número actual).
651  La imagen se puede insertar sobre el título, como en la figura\InsetSpace ~
652
653 \begin_inset LatexCommand ref
654 reference "fig:kill-plat"
655
656 \end_inset
657
658 , o bajo el título, como en la figura\InsetSpace ~
659
660 \begin_inset LatexCommand ref
661 reference "fig:escher"
662
663 \end_inset
664
665 .
666  Más información sobre ubicación de títulos en la sección\InsetSpace ~
667
668 \begin_inset LatexCommand ref
669 reference "sec:Colocación-de-Encabezados"
670
671 \end_inset
672
673 .
674 \end_layout
675
676 \begin_layout Standard
677 \begin_inset Float figure
678 wide false
679 sideways false
680 status collapsed
681
682 \begin_layout Standard
683 \align center
684 \begin_inset Graphics
685         filename ../clipart/platypus.eps
686         display color
687         width 50col%
688         rotateOrigin center
689
690 \end_inset
691
692
693 \end_layout
694
695 \begin_layout Standard
696 \begin_inset Caption
697
698 \begin_layout Standard
699 \begin_inset LatexCommand label
700 name "fig:kill-plat"
701
702 \end_inset
703
704 Un platypus muy distorsionado en un flotante.
705 \end_layout
706
707 \end_inset
708
709
710 \end_layout
711
712 \end_inset
713
714
715 \end_layout
716
717 \begin_layout Standard
718 \begin_inset Float figure
719 wide false
720 sideways false
721 status collapsed
722
723 \begin_layout Standard
724 \begin_inset Caption
725
726 \begin_layout Standard
727 \begin_inset LatexCommand label
728 name "fig:escher"
729
730 \end_inset
731
732 M.C.
733  Escher en ácido.
734 \end_layout
735
736 \end_inset
737
738
739 \end_layout
740
741 \begin_layout Standard
742 \align center
743 \begin_inset Graphics
744         filename ../clipart/escher-lsd.eps
745         display color
746         scale 80
747         rotateOrigin center
748
749 \end_inset
750
751
752 \end_layout
753
754 \end_inset
755
756
757 \end_layout
758
759 \begin_layout Standard
760 \begin_inset LatexCommand index
761 name "Referencias ! a Figuras"
762
763 \end_inset
764
765 Las figuras\InsetSpace ~
766
767 \begin_inset LatexCommand ref
768 reference "fig:kill-plat"
769
770 \end_inset
771
772  y 
773 \begin_inset LatexCommand ref
774 reference "fig:escher"
775
776 \end_inset
777
778  son ejemplos de figuras con referencias cruzadas.
779  Las figuras pueden tener referencias cruzadas en el documento mediante
780  referencia a su etiqueta.
781  Para hacerlo inserta una etiqueta en el encabezado usando el menú 
782 \family sans
783 Insertar\SpecialChar \menuseparator
784 Etiqueta
785 \family default
786  o el botón 
787 \begin_inset Graphics
788         filename ../../images/label-insert.xpm
789         scale 85
790
791 \end_inset
792
793 .
794  Ahora puedes referirte a la etiqueta usando el menú 
795 \family sans
796 Insertar\SpecialChar \menuseparator
797 Referencia\InsetSpace ~
798 cruzada
799 \family default
800  o el botón 
801 \begin_inset Graphics
802         filename ../../images/dialog-show-new-inset_ref.xpm
803         scale 85
804
805 \end_inset
806
807 .
808  Es importante emplear referencias a flotantes, mejor que alusiones vagas
809  como 
810 \begin_inset Quotes eld
811 \end_inset
812
813 la figura de arriba
814 \begin_inset Quotes erd
815 \end_inset
816
817 , porque como LaTeX recolocará los flotantes en el documento final, podría
818  no quedar 
819 \begin_inset Quotes eld
820 \end_inset
821
822 arriba
823 \begin_inset Quotes erd
824 \end_inset
825
826  precisamente.
827 \newline
828 Las referencias se explican con detalle en la sección\InsetSpace ~
829
830 \begin_inset LatexCommand ref
831 reference "sec:Referencias-a-Flotantes"
832
833 \end_inset
834
835 .
836 \end_layout
837
838 \begin_layout Standard
839 Normalmente solo se inserta una imagen en un flotante, pero es posible que
840  en alguna ocasión queramos poner dos imágenes cada una con su subtítulo.
841  Esto es posible mediante la solapa 
842 \family sans
843 Opciones\InsetSpace ~
844 extra
845 \family default
846  del diálogo gráficos.
847  Elige la opción 
848 \family sans
849 Subfigura
850 \family default
851  e introduce el subtítulo en la casilla 
852 \family sans
853 Descripción
854 \family default
855 .
856  Ten en cuenta que solo el título principal  del flotante se añade a la
857  Lista de Figuras.
858 \newline
859 Las referencias a las subfiguras se explican en la sección\InsetSpace ~
860
861 \begin_inset LatexCommand ref
862 reference "sub:Referencias-a-Subfiguras"
863
864 \end_inset
865
866 .
867 \end_layout
868
869 \begin_layout Standard
870 La figura\InsetSpace ~
871
872 \begin_inset LatexCommand ref
873 reference "fig:Dos-imágenes-distorsionadas"
874
875 \end_inset
876
877  es un ejemplo de figura flotante con dos imágenes una junto a otra.
878  También se pueden poner una sobre otra.
879 \end_layout
880
881 \begin_layout Standard
882 \begin_inset Float figure
883 wide false
884 sideways false
885 status collapsed
886
887 \begin_layout Standard
888
889 \hfill
890
891 \begin_inset Graphics
892         filename ../clipart/escher-lsd.eps
893         width 45col%
894         subcaption
895         subcaptionText "Estructura indefinible"
896
897 \end_inset
898
899
900 \hfill
901
902 \begin_inset Graphics
903         filename ../clipart/platypus.eps
904         lyxscale 60
905         width 45col%
906         subcaption
907         subcaptionText "\label{fig:Platypus} Platypus"
908
909 \end_inset
910
911
912 \hfill
913
914 \end_layout
915
916 \begin_layout Standard
917 \begin_inset Caption
918
919 \begin_layout Standard
920 \begin_inset LatexCommand label
921 name "fig:Dos-imágenes-distorsionadas"
922
923 \end_inset
924
925 Dos imágenes distorsionadas.
926 \end_layout
927
928 \end_inset
929
930
931 \end_layout
932
933 \end_inset
934
935
936 \end_layout
937
938 \begin_layout Section
939 Formatos de Imagen
940 \begin_inset LatexCommand label
941 name "sec:Formatos-de-imagen"
942
943 \end_inset
944
945
946 \begin_inset LatexCommand index
947 name "Formatos de Imagen"
948
949 \end_inset
950
951
952 \begin_inset LatexCommand index
953 name "Figuras ! Formatos de Imagen"
954
955 \end_inset
956
957
958 \end_layout
959
960 \begin_layout Standard
961 Puedes insertar imágenes en cualquier formato.
962  Pero como se explica en el apéndice\InsetSpace ~
963
964 \begin_inset LatexCommand ref
965 reference "cha:Formatos-de-Archivos-de-Salida"
966
967 \end_inset
968
969 , cada formato de archivo del documento de salida permite solo ciertos formatos
970  de archivo de imagen.
971  Por eso LyX usa el programa 
972 \family sans
973 Imagemagick
974 \family default
975  en segundo plano para convertir imágenes al formato adecuado.
976  Para aumentar el rendimiento evitando estas conversiones, puedes usar sólo
977  los formatos de imagen admitidos en el formato de archivo de salida.
978  Los formatos de salida se explican en el apéndice\InsetSpace ~
979
980 \begin_inset LatexCommand ref
981 reference "cha:Formatos-de-Archivos-de-Salida"
982
983 \end_inset
984
985 .
986 \end_layout
987
988 \begin_layout Standard
989 Como en el caso de las fuentes, hay dos tipos de formatos de imagen:
990 \end_layout
991
992 \begin_layout Description
993 Imágenes\InsetSpace ~
994 Mapa\InsetSpace ~
995 de\InsetSpace ~
996 bits\InsetSpace ~
997 (Bitmap) formadas por mapas de puntos (píxeles), generalmente
998  comprimidos.
999  Por tanto no son totalmente escalables y se ven pixeladas a valores altos
1000  de zoom.
1001  Formatos de imágenes en bitmap bien conocidos son 
1002 \begin_inset Quotes eld
1003 \end_inset
1004
1005 Graphics Interchange Format
1006 \begin_inset Quotes erd
1007 \end_inset
1008
1009  (GIF, extensión 
1010 \begin_inset Quotes eld
1011 \end_inset
1012
1013 .gif
1014 \begin_inset Quotes erd
1015 \end_inset
1016
1017 )
1018 \begin_inset LatexCommand index
1019 name "GIF|see{Formatos de Imagen}"
1020
1021 \end_inset
1022
1023
1024 \begin_inset Quotes eld
1025 \end_inset
1026
1027 Portable Network Graphics
1028 \begin_inset Quotes erd
1029 \end_inset
1030
1031  (PNG, extensión 
1032 \begin_inset Quotes eld
1033 \end_inset
1034
1035 .png
1036 \begin_inset Quotes erd
1037 \end_inset
1038
1039 )
1040 \begin_inset LatexCommand index
1041 name "PNG|see{Formatos de Imagen}"
1042
1043 \end_inset
1044
1045 , y 
1046 \begin_inset Quotes eld
1047 \end_inset
1048
1049 Joint Photographic Experts Group
1050 \begin_inset Quotes erd
1051 \end_inset
1052
1053  (JPG, extensión 
1054 \begin_inset Quotes eld
1055 \end_inset
1056
1057 .jpg
1058 \begin_inset Quotes erd
1059 \end_inset
1060
1061  o 
1062 \begin_inset Quotes eld
1063 \end_inset
1064
1065 .jpeg
1066 \begin_inset Quotes erd
1067 \end_inset
1068
1069 )
1070 \begin_inset LatexCommand index
1071 name "JPG|see{Formatos de Imagen}"
1072
1073 \end_inset
1074
1075 .
1076 \end_layout
1077
1078 \begin_layout Description
1079 Imágenes\InsetSpace ~
1080 vectoriales se generan mediante una descripción de una serie de
1081  trazos (vectores) y por tanto pueden escalarse a cualquier tamaño sin pérdidas.
1082  La posibilidad de escalado hace falta para crear presentaciones, porque
1083  éstas siempre son escaladas por el proyector.
1084  El escalado también es útil en los documentoos en línea para permitir el
1085  zoom en diagramas.
1086 \newline
1087 Formatos de imagen escalables pueden ser 
1088 \begin_inset Quotes eld
1089 \end_inset
1090
1091 Scalable Vector Graphics
1092 \begin_inset Quotes erd
1093 \end_inset
1094
1095  (SVG, extensión 
1096 \begin_inset Quotes eld
1097 \end_inset
1098
1099 .svg
1100 \begin_inset Quotes erd
1101 \end_inset
1102
1103 )
1104 \begin_inset LatexCommand index
1105 name "SVG|see{Formatos de Imagen}"
1106
1107 \end_inset
1108
1109
1110 \begin_inset Quotes eld
1111 \end_inset
1112
1113 Encapsulated PostScript
1114 \begin_inset Quotes erd
1115 \end_inset
1116
1117  (EPS, extensión 
1118 \begin_inset Quotes eld
1119 \end_inset
1120
1121 .eps
1122 \begin_inset Quotes erd
1123 \end_inset
1124
1125 )
1126 \begin_inset LatexCommand index
1127 name "EPS|see{Formatos de Imagen}"
1128
1129 \end_inset
1130
1131
1132 \begin_inset Quotes eld
1133 \end_inset
1134
1135 Portable Document Format
1136 \begin_inset Quotes erd
1137 \end_inset
1138
1139  (PDF, extensión 
1140 \begin_inset Quotes eld
1141 \end_inset
1142
1143 .pdf
1144 \begin_inset Quotes erd
1145 \end_inset
1146
1147 )
1148 \begin_inset LatexCommand index
1149 name "PDF|see{Formatos de Imagen}"
1150
1151 \end_inset
1152
1153 , y 
1154 \begin_inset Quotes eld
1155 \end_inset
1156
1157 Windows Metafile
1158 \begin_inset Quotes erd
1159 \end_inset
1160
1161  (WMF, extensión 
1162 \begin_inset Quotes eld
1163 \end_inset
1164
1165 .wmf
1166 \begin_inset Quotes erd
1167 \end_inset
1168
1169 )
1170 \begin_inset LatexCommand index
1171 name "WMF|see{Formatos de Imagen}"
1172
1173 \end_inset
1174
1175 .
1176  Escribimos 
1177 \begin_inset Quotes eld
1178 \end_inset
1179
1180 pueden ser
1181 \begin_inset Quotes erd
1182 \end_inset
1183
1184 , porque se puede convertir cualquier imagen bitmap a PDF o EPS y el resultado
1185  será todavía una imagen bitmap.
1186  En estos casos sólo se añade una cabecera con las propiedades de la imagen
1187  a la imagen original
1188 \begin_inset Foot
1189 status collapsed
1190
1191 \begin_layout Standard
1192 En el caso de PDF, además se comprime la imagen original.
1193 \end_layout
1194
1195 \end_inset
1196
1197 .
1198  Por ejemplo, los archivos PDF generados por 
1199 \family sans
1200 Adobe Photoshop
1201 \family default
1202  son imágenes bitmap.
1203 \end_layout
1204
1205 \begin_layout Standard
1206 Normalmente no es posible convertir una imagen bitmap a escalable, solo
1207  viceversa.
1208  Solo los formatos de imagen PDF y EPS pueden empotrarse directamente en
1209  archivos de salida PDF y PostScript, respectivamente.
1210  Las imágenes SVG y WMF son recalculadas a bitmaps cuando se genera el archivo
1211  de salida porque actualmente no hay convertidores adecuados WMF/SVG 
1212 \begin_inset Formula $\to$
1213 \end_inset
1214
1215  PDF/EPS.
1216 \end_layout
1217
1218 \begin_layout Chapter
1219 Tablas
1220 \begin_inset LatexCommand label
1221 name "cha:Tablas"
1222
1223 \end_inset
1224
1225
1226 \begin_inset LatexCommand index
1227 name "Tablas"
1228
1229 \end_inset
1230
1231
1232 \end_layout
1233
1234 \begin_layout Section
1235 Introducción
1236 \begin_inset LatexCommand index
1237 name "Tablas ! Introducción"
1238
1239 \end_inset
1240
1241
1242 \end_layout
1243
1244 \begin_layout Standard
1245 Puede insertarse una tabla mediante el botón
1246 \begin_inset Graphics
1247         filename ../../images/tabular-insert.xpm
1248         scale 85
1249
1250 \end_inset
1251
1252  o el menú 
1253 \family sans
1254 Insertar\SpecialChar \menuseparator
1255 Tabla
1256 \family default
1257 .
1258  Aparece un diálogo en el que se pide el número de filas y columnas.
1259  Por defecto, la tabla tiene líneas que enmarcan cada celda y la primera
1260  fila aparece separada por una línea doble: la línea inferior de la primera
1261  fila y la línea superior de la segunda fila.
1262  Ejemplo de tabla:
1263 \end_layout
1264
1265 \begin_layout Standard
1266 \align center
1267 \begin_inset Tabular
1268 <lyxtabular version="3" rows="4" columns="4">
1269 <features>
1270 <column alignment="center" valignment="top" leftline="true" width="0">
1271 <column alignment="center" valignment="top" leftline="true" width="0pt">
1272 <column alignment="center" valignment="top" leftline="true" width="0in">
1273 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1274 <row topline="true" bottomline="true">
1275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1276 \begin_inset Text
1277
1278 \begin_layout Standard
1279
1280 \end_layout
1281
1282 \end_inset
1283 </cell>
1284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1285 \begin_inset Text
1286
1287 \begin_layout Standard
1288
1289 \family roman
1290 \series medium
1291 \shape up
1292 \size normal
1293 \emph off
1294 \bar no
1295 \noun off
1296 \color none
1297 1
1298 \end_layout
1299
1300 \end_inset
1301 </cell>
1302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1303 \begin_inset Text
1304
1305 \begin_layout Standard
1306 2
1307 \end_layout
1308
1309 \end_inset
1310 </cell>
1311 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1312 \begin_inset Text
1313
1314 \begin_layout Standard
1315 3
1316 \end_layout
1317
1318 \end_inset
1319 </cell>
1320 </row>
1321 <row topline="true">
1322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1323 \begin_inset Text
1324
1325 \begin_layout Standard
1326
1327 \family roman
1328 \series medium
1329 \shape up
1330 \size normal
1331 \emph off
1332 \bar no
1333 \noun off
1334 \color none
1335 A
1336 \end_layout
1337
1338 \end_inset
1339 </cell>
1340 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1341 \begin_inset Text
1342
1343 \begin_layout Standard
1344
1345 \end_layout
1346
1347 \end_inset
1348 </cell>
1349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1350 \begin_inset Text
1351
1352 \begin_layout Standard
1353
1354 \end_layout
1355
1356 \end_inset
1357 </cell>
1358 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1359 \begin_inset Text
1360
1361 \begin_layout Standard
1362
1363 \end_layout
1364
1365 \end_inset
1366 </cell>
1367 </row>
1368 <row topline="true">
1369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1370 \begin_inset Text
1371
1372 \begin_layout Standard
1373
1374 \family roman
1375 \series medium
1376 \shape up
1377 \size normal
1378 \emph off
1379 \bar no
1380 \noun off
1381 \color none
1382 B
1383 \end_layout
1384
1385 \end_inset
1386 </cell>
1387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1388 \begin_inset Text
1389
1390 \begin_layout Standard
1391
1392 \end_layout
1393
1394 \end_inset
1395 </cell>
1396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1397 \begin_inset Text
1398
1399 \begin_layout Standard
1400
1401 \size normal
1402 \noun off
1403 \color none
1404  
1405 \end_layout
1406
1407 \end_inset
1408 </cell>
1409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1410 \begin_inset Text
1411
1412 \begin_layout Standard
1413
1414 \end_layout
1415
1416 \end_inset
1417 </cell>
1418 </row>
1419 <row topline="true" bottomline="true">
1420 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1421 \begin_inset Text
1422
1423 \begin_layout Standard
1424
1425 \family roman
1426 \series medium
1427 \shape up
1428 \size normal
1429 \emph off
1430 \bar no
1431 \noun off
1432 \color none
1433 C
1434 \end_layout
1435
1436 \end_inset
1437 </cell>
1438 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1439 \begin_inset Text
1440
1441 \begin_layout Standard
1442
1443 \end_layout
1444
1445 \end_inset
1446 </cell>
1447 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1448 \begin_inset Text
1449
1450 \begin_layout Standard
1451
1452 \end_layout
1453
1454 \end_inset
1455 </cell>
1456 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1457 \begin_inset Text
1458
1459 \begin_layout Standard
1460
1461 \end_layout
1462
1463 \end_inset
1464 </cell>
1465 </row>
1466 </lyxtabular>
1467
1468 \end_inset
1469
1470
1471 \end_layout
1472
1473 \begin_layout Section
1474 Diálogo Tablas
1475 \begin_inset LatexCommand index
1476 name "Tablas ! Diálogo"
1477
1478 \end_inset
1479
1480
1481 \end_layout
1482
1483 \begin_layout Standard
1484 Una tabla se puede cambiar mediante el cuadro de diálogo que aparece al
1485  pinchar sobre ella con el botón derecho del ratón.
1486  Se pueden ajustar los parámetros de la celda y fila/columna en la que se
1487  encuentra el cursor.
1488  La mayoría de opciones también trabajan sobre una selección de celdas,
1489  de filas o de columnas.
1490  Observa que hay que diferenciar entre seleccionar una celda o seleccionar
1491  su 
1492 \emph on
1493 contenido
1494 \emph default
1495 .
1496  En el cuadro de diálogo aparecen las siguientes solapas:
1497 \end_layout
1498
1499 \begin_layout Description
1500
1501 \family sans
1502 Configuración\InsetSpace ~
1503 de\InsetSpace ~
1504 Tabla
1505 \family default
1506  Aquí puedes establecer la alineación horizontal y la anchura de la columna
1507  actual.
1508  Una vez puesta la anchura puedes ajustar también el alineamiento vertical.
1509  Una anchura determinada permite tener saltos de línea y distintos párrafos
1510  de texto, ver sección \InsetSpace ~
1511
1512 \begin_inset LatexCommand ref
1513 reference "sub:Líneas-Múltiples-en"
1514
1515 \end_inset
1516
1517 .
1518  Si no estableces anchura, la columna será tan ancha como el contenido de
1519  la celda más ancha.
1520 \newline
1521 Además, puedes marcar una o más celdas de una fila como
1522  una celda multicolumna, ver sección\InsetSpace ~
1523
1524 \begin_inset LatexCommand ref
1525 reference "sub:Multicolumnas"
1526
1527 \end_inset
1528
1529 .
1530 \newline
1531 Las casillas de giro rotan la celda actual, una selección o toda la tabla
1532  90º en el sentido de las agujas del reloj.
1533  La rotación no se ve en LyX, sí en la salida.
1534 \newline
1535
1536 \begin_inset Note Greyedout
1537 status open
1538
1539 \begin_layout Standard
1540
1541 \series bold
1542 Nota:
1543 \series default
1544  no todos los visores DVI pueden mostrar rotaciones.
1545 \end_layout
1546
1547 \end_inset
1548
1549
1550 \newline
1551 También es posible introducir argumentos LaTeX necesarios para formatos
1552  especiales, ver sección\InsetSpace ~
1553
1554 \begin_inset LatexCommand ref
1555 reference "sub:Cálculos-en-Multicolumnas"
1556
1557 \end_inset
1558
1559  y 
1560 \begin_inset LatexCommand ref
1561 reference "sec:Tablas-Coloreadas"
1562
1563 \end_inset
1564
1565 .
1566 \end_layout
1567
1568 \begin_layout Description
1569
1570 \family sans
1571 Bordes
1572 \family default
1573  En esta solapa puedes añadir y quitar bordes para la fila/columna actual.
1574 \end_layout
1575
1576 \begin_layout Description
1577
1578 \family sans
1579 Tabla\InsetSpace ~
1580 Larga
1581 \family default
1582  Para hacer 
1583 \emph on
1584 tablas largas
1585 \emph default
1586  que pueden extenderse por varias páginas.
1587  La sección\InsetSpace ~
1588
1589 \begin_inset LatexCommand ref
1590 reference "sec:Tablas-Largas"
1591
1592 \end_inset
1593
1594  describe su uso en detalle.
1595 \end_layout
1596
1597 \begin_layout Standard
1598 Si la barra de herramientas de tabla está abierta, puedes mover el cursor
1599  con las teclas de flecha de celda en celda y la propiedad de la celda actual
1600  aparecerá inmediatamente en el diálogo.
1601 \end_layout
1602
1603 \begin_layout Section
1604 Barra de Herramientas de Tablas
1605 \begin_inset LatexCommand index
1606 name "Tablas ! Barra de Herramientas"
1607
1608 \end_inset
1609
1610
1611 \end_layout
1612
1613 \begin_layout Standard
1614 La barra de herramientas de tabla es una alternativa al cuadro de diálogo
1615  para cambiar las tablas de manera más rápida.
1616  Normalmente debería aparecer en la parte inferior de la ventana principal
1617  de LyX cuando el cursor está dentro de una tabla.
1618  En cualquier momento se puede presentar esta barra pinchando con el botón
1619  derecho del ratón en cualquier punto de la barra principal de menú.
1620 \end_layout
1621
1622 \begin_layout Standard
1623 La barra de herramientas tiene los siguientes iconos:
1624 \end_layout
1625
1626 \begin_layout Labeling
1627 \labelwidthstring 00.00.0000
1628 \begin_inset Graphics
1629         filename ../../images/tabular-feature_append-row.xpm
1630
1631 \end_inset
1632
1633  añade una fila bajo la celda actual o selección
1634 \end_layout
1635
1636 \begin_layout Labeling
1637 \labelwidthstring 00.00.0000
1638 \begin_inset Graphics
1639         filename ../../images/tabular-feature_append-column.xpm
1640
1641 \end_inset
1642
1643  añade una columna a la derecha de la celda actual o selección
1644 \end_layout
1645
1646 \begin_layout Labeling
1647 \labelwidthstring 00.00.0000
1648 \begin_inset Graphics
1649         filename ../../images/tabular-feature_delete-row.xpm
1650
1651 \end_inset
1652
1653  borra la fila actual o selección
1654 \end_layout
1655
1656 \begin_layout Labeling
1657 \labelwidthstring 00.00.0000
1658 \begin_inset Graphics
1659         filename ../../images/tabular-feature_delete-column.xpm
1660
1661 \end_inset
1662
1663  borra la columna actual o selección
1664 \end_layout
1665
1666 \begin_layout Labeling
1667 \labelwidthstring 00.00.0000
1668 \begin_inset Graphics
1669         filename ../../images/tabular-feature_toggle-line-top.xpm
1670
1671 \end_inset
1672
1673  añade una línea sobre la celda/fila actual o la selección
1674 \end_layout
1675
1676 \begin_layout Labeling
1677 \labelwidthstring 00.00.0000
1678 \begin_inset Graphics
1679         filename ../../images/tabular-feature_toggle-line-bottom.xpm
1680
1681 \end_inset
1682
1683  añade una línea bajo la celda/fila actual o la selección
1684 \end_layout
1685
1686 \begin_layout Labeling
1687 \labelwidthstring 00.00.0000
1688 \begin_inset Graphics
1689         filename ../../images/tabular-feature_toggle-line-left.xpm
1690
1691 \end_inset
1692
1693  añade una línea a la izquierda de la celda/fila actual o la selección
1694 \end_layout
1695
1696 \begin_layout Labeling
1697 \labelwidthstring 00.00.0000
1698 \begin_inset Graphics
1699         filename ../../images/tabular-feature_toggle-line-right.xpm
1700
1701 \end_inset
1702
1703  añade una línea a la derecha de la celda/fila actual o la selección
1704 \end_layout
1705
1706 \begin_layout Labeling
1707 \labelwidthstring 00.00.0000
1708 \begin_inset Graphics
1709         filename ../../images/tabular-feature_set-all-lines.xpm
1710
1711 \end_inset
1712
1713  añade líneas alrededor de la celda actual o seleccionadas (si la celda
1714  actual no es multicolumna esto afecta también a la fila y a la columna)
1715 \end_layout
1716
1717 \begin_layout Labeling
1718 \labelwidthstring 00.00.0000
1719 \begin_inset Graphics
1720         filename ../../images/tabular-feature_unset-all-lines.xpm
1721
1722 \end_inset
1723
1724  borra todas las líneas de la celda o celdas seleccionadas (si la celda
1725  actual no es multicolumna esto afecta también a la fila y a la columna)
1726 \end_layout
1727
1728 \begin_layout Labeling
1729 \labelwidthstring 00.00.0000
1730 \begin_inset Graphics
1731         filename ../../images/tabular-feature_align-left.xpm
1732
1733 \end_inset
1734
1735  alinea a la izquierda el contenido de la celda/columna
1736 \end_layout
1737
1738 \begin_layout Labeling
1739 \labelwidthstring 00.00.0000
1740 \begin_inset Graphics
1741         filename ../../images/tabular-feature_align-center.xpm
1742
1743 \end_inset
1744
1745  centra el contenido de la celda/columna horizontalmente
1746 \end_layout
1747
1748 \begin_layout Labeling
1749 \labelwidthstring 00.00.0000
1750 \begin_inset Graphics
1751         filename ../../images/tabular-feature_align-right.xpm
1752
1753 \end_inset
1754
1755  alinea a la derecha el contenido de la celda/columna
1756 \end_layout
1757
1758 \begin_layout Labeling
1759 \labelwidthstring 00.00.0000
1760 \begin_inset Graphics
1761         filename ../../images/tabular-feature_valign-top.xpm
1762
1763 \end_inset
1764
1765  alinea arriba el contenido de la celda
1766 \end_layout
1767
1768 \begin_layout Labeling
1769 \labelwidthstring 00.00.0000
1770 \begin_inset Graphics
1771         filename ../../images/tabular-feature_valign-middle.xpm
1772
1773 \end_inset
1774
1775  centra verticalmente el contenido de la celda
1776 \end_layout
1777
1778 \begin_layout Labeling
1779 \labelwidthstring 00.00.0000
1780 \begin_inset Graphics
1781         filename ../../images/tabular-feature_valign-bottom.xpm
1782
1783 \end_inset
1784
1785  alinea abajo el contenido de la celda
1786 \end_layout
1787
1788 \begin_layout Labeling
1789 \labelwidthstring 00.00.0000
1790 \begin_inset Graphics
1791         filename ../../images/tabular-feature_set-rotate-cell.xpm
1792
1793 \end_inset
1794
1795  gira la celda o selección 90° como las agujas de reloj
1796 \end_layout
1797
1798 \begin_layout Labeling
1799 \labelwidthstring 00.00.0000
1800 \begin_inset Graphics
1801         filename ../../images/tabular-feature_set-rotate-tabular.xpm
1802
1803 \end_inset
1804
1805  gira toda la tabla 90° como agujas del reloj
1806 \end_layout
1807
1808 \begin_layout Labeling
1809 \labelwidthstring 00.00.0000
1810 \begin_inset Graphics
1811         filename ../../images/tabular-feature_multicolumn.xpm
1812
1813 \end_inset
1814
1815  establece la celda actual o selección como multicolumna
1816 \end_layout
1817
1818 \begin_layout Section
1819 Menú Editar Tabla
1820 \begin_inset LatexCommand index
1821 name "Tablas ! Menú Editar"
1822
1823 \end_inset
1824
1825
1826 \end_layout
1827
1828 \begin_layout Standard
1829 Además del diálogo y la barra de herramientas, el menú 
1830 \family sans
1831 Editar\SpecialChar \menuseparator
1832 Tabla
1833 \family default
1834  permite añadir y borrar bordes para la fila/columna actual y establecer
1835  la selección como multicolumna.
1836  El menú sólo está disponible si el cursor está en la tabla.
1837 \end_layout
1838
1839 \begin_layout Section
1840 Tablas Flotantes
1841 \begin_inset LatexCommand label
1842 name "sec:Tablas-Flotantes"
1843
1844 \end_inset
1845
1846
1847 \begin_inset LatexCommand index
1848 name "Flotantes ! Tablas"
1849
1850 \end_inset
1851
1852
1853 \begin_inset LatexCommand index
1854 name "Tablas ! Flotantes"
1855
1856 \end_inset
1857
1858
1859 \end_layout
1860
1861 \begin_layout Standard
1862 Para una explicación general sobre flotantes, echa un vistazo a la sección\InsetSpace ~
1863
1864 \begin_inset LatexCommand ref
1865 reference "sec:IntroducciónFlotantes"
1866
1867 \end_inset
1868
1869 .
1870 \end_layout
1871
1872 \begin_layout Standard
1873 \begin_inset Float table
1874 placement h
1875 wide false
1876 sideways false
1877 status open
1878
1879 \begin_layout Standard
1880 \begin_inset Caption
1881
1882 \begin_layout Standard
1883 \begin_inset LatexCommand label
1884 name "tab:una tabla flotante"
1885
1886 \end_inset
1887
1888 Una tabla flotante.
1889 \end_layout
1890
1891 \end_inset
1892
1893
1894 \end_layout
1895
1896 \begin_layout Standard
1897 \align center
1898 \begin_inset Tabular
1899 <lyxtabular version="3" rows="3" columns="3">
1900 <features>
1901 <column alignment="center" valignment="top" leftline="true" width="0pt">
1902 <column alignment="center" valignment="top" leftline="true" width="0pt">
1903 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1904 <row topline="true" bottomline="true">
1905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1906 \begin_inset Text
1907
1908 \begin_layout Standard
1909
1910 \family roman
1911 \series medium
1912 \shape up
1913 \size normal
1914 \emph off
1915 \bar no
1916 \noun off
1917 \color none
1918 1
1919 \end_layout
1920
1921 \end_inset
1922 </cell>
1923 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1924 \begin_inset Text
1925
1926 \begin_layout Standard
1927
1928 \family roman
1929 \series medium
1930 \shape up
1931 \size normal
1932 \emph off
1933 \bar no
1934 \noun off
1935 \color none
1936 2
1937 \end_layout
1938
1939 \end_inset
1940 </cell>
1941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1942 \begin_inset Text
1943
1944 \begin_layout Standard
1945
1946 \family roman
1947 \series medium
1948 \shape up
1949 \size normal
1950 \emph off
1951 \bar no
1952 \noun off
1953 \color none
1954 3
1955 \end_layout
1956
1957 \end_inset
1958 </cell>
1959 </row>
1960 <row topline="true">
1961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1962 \begin_inset Text
1963
1964 \begin_layout Standard
1965
1966 \family roman
1967 \series medium
1968 \shape up
1969 \size normal
1970 \emph off
1971 \bar no
1972 \noun off
1973 \color none
1974 Pepe
1975 \end_layout
1976
1977 \end_inset
1978 </cell>
1979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1980 \begin_inset Text
1981
1982 \begin_layout Standard
1983
1984 \family roman
1985 \series medium
1986 \shape up
1987 \size normal
1988 \emph off
1989 \bar no
1990 \noun off
1991 \color none
1992 Mari
1993 \end_layout
1994
1995 \end_inset
1996 </cell>
1997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1998 \begin_inset Text
1999
2000 \begin_layout Standard
2001
2002 \family roman
2003 \series medium
2004 \shape up
2005 \size normal
2006 \emph off
2007 \bar no
2008 \noun off
2009 \color none
2010 Teo
2011 \end_layout
2012
2013 \end_inset
2014 </cell>
2015 </row>
2016 <row topline="true" bottomline="true">
2017 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2018 \begin_inset Text
2019
2020 \begin_layout Standard
2021
2022 \family roman
2023 \series medium
2024 \shape up
2025 \size normal
2026 \emph off
2027 \bar no
2028 \noun off
2029 \color none
2030 \begin_inset Formula $\int x^{2}dx$
2031 \end_inset
2032
2033
2034 \end_layout
2035
2036 \end_inset
2037 </cell>
2038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2039 \begin_inset Text
2040
2041 \begin_layout Standard
2042
2043 \family roman
2044 \series medium
2045 \shape up
2046 \size normal
2047 \emph off
2048 \bar no
2049 \noun off
2050 \color none
2051 \begin_inset Formula $\left[\begin{array}{cc}
2052 a & b\\
2053 c & d\end{array}\right]$
2054 \end_inset
2055
2056
2057 \end_layout
2058
2059 \end_inset
2060 </cell>
2061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2062 \begin_inset Text
2063
2064 \begin_layout Standard
2065
2066 \family roman
2067 \series medium
2068 \shape up
2069 \size normal
2070 \emph off
2071 \bar no
2072 \noun off
2073 \color none
2074 \begin_inset Formula $1+1=2$
2075 \end_inset
2076
2077
2078 \end_layout
2079
2080 \end_inset
2081 </cell>
2082 </row>
2083 </lyxtabular>
2084
2085 \end_inset
2086
2087
2088 \end_layout
2089
2090 \end_inset
2091
2092
2093 \end_layout
2094
2095 \begin_layout Standard
2096 Las tablas flotantes pueden insertarse con el menú 
2097 \family sans
2098 Insertar\SpecialChar \menuseparator
2099 Flotante\SpecialChar \menuseparator
2100 Tabla
2101 \family default
2102  o con el botón 
2103 \begin_inset Graphics
2104         filename ../../images/float-insert_table.xpm
2105         scale 85
2106
2107 \end_inset
2108
2109 .
2110 \end_layout
2111
2112 \begin_layout Standard
2113 El flotante se muestra como un cuadro desplegable con la etiqueta 
2114 \begin_inset Quotes eld
2115 \end_inset
2116
2117 Tabla\InsetSpace ~
2118 #:
2119 \begin_inset Quotes erd
2120 \end_inset
2121
2122  (# es el número actual).
2123  El texto que sigue a dicha etiqueta es el encabezado de tabla.
2124  Para insertar una tabla en el flotante se sitúa el cursor al final del
2125  texto del encabezado y se pulsa Enter.
2126  El encabezado se imprime encima de la tabla.
2127 \end_layout
2128
2129 \begin_layout Standard
2130 La tabla\InsetSpace ~
2131
2132 \begin_inset LatexCommand ref
2133 reference "tab:una tabla flotante"
2134
2135 \end_inset
2136
2137  es un ejemplo de tabla flotante.
2138 \end_layout
2139
2140 \begin_layout Standard
2141 Lo habitual es poner el encabezado sobre la tabla, lo que desafortunadamente
2142  no es soportado en las clases estándar de LaTeX.
2143  Esto significa que si estás usando las clases de documento 
2144 \family sans
2145 article
2146 \family default
2147
2148 \family sans
2149 book
2150 \family default
2151
2152 \family sans
2153 letter
2154 \family default
2155 , o 
2156 \family sans
2157 report
2158 \family default
2159  no habrá espacio entre el encabezado y la tabla.
2160  Para añadir un espacio entre ellos hay que poner en el preámbulo LaTeX
2161  del documento la siguiente opción al comando del paquete de LaTeX 
2162 \series bold
2163 caption
2164 \series default
2165
2166 \begin_inset LatexCommand index
2167 name "LaTeX-paquetes ! caption"
2168
2169 \end_inset
2170
2171
2172 \begin_inset Foot
2173 status open
2174
2175 \begin_layout Standard
2176 Para más información ve a la sección\InsetSpace ~
2177
2178 \begin_inset LatexCommand ref
2179 reference "sec:Colocación-de-Encabezados"
2180
2181 \end_inset
2182
2183 .
2184 \end_layout
2185
2186 \end_inset
2187
2188 :
2189 \end_layout
2190
2191 \begin_layout Standard
2192
2193 \series bold
2194 tableposition=top
2195 \end_layout
2196
2197 \begin_layout Standard
2198 El formato del encabezado se puede controlar mediante el paquete de LaTeX
2199  
2200 \series bold
2201 caption
2202 \series default
2203  como se describe en la sección\InsetSpace ~
2204
2205 \begin_inset LatexCommand ref
2206 reference "sec:Formato-de-Encabezados"
2207
2208 \end_inset
2209
2210 .
2211  
2212 \end_layout
2213
2214 \begin_layout Standard
2215 \begin_inset LatexCommand index
2216 name "Referencias ! a Tablas"
2217
2218 \end_inset
2219
2220 Las tablas pueden tener referencias cruzadas en el texto referenciando su
2221  etiqueta.
2222  Para hacerlo inserta una etiqueta en el encabezado con el menú 
2223 \family sans
2224 Insertar\SpecialChar \menuseparator
2225 Etiqueta
2226 \family default
2227  o con el botón 
2228 \begin_inset Graphics
2229         filename ../../images/label-insert.xpm
2230         scale 85
2231
2232 \end_inset
2233
2234 .
2235  Ahora puedes referenciar la etiqueta con el menú 
2236 \family sans
2237 Insertar\SpecialChar \menuseparator
2238 Referencia\InsetSpace ~
2239 cruzada
2240 \family default
2241  o con el botón 
2242 \begin_inset Graphics
2243         filename ../../images/dialog-show-new-inset_ref.xpm
2244         scale 85
2245
2246 \end_inset
2247
2248 .
2249 \newline
2250 Las referencias se explican con detalle en la sección\InsetSpace ~
2251
2252 \begin_inset LatexCommand ref
2253 reference "sec:Referencias-a-Flotantes"
2254
2255 \end_inset
2256
2257 .
2258 \end_layout
2259
2260 \begin_layout Section
2261 Tablas Largas
2262 \begin_inset LatexCommand label
2263 name "sec:Tablas-Largas"
2264
2265 \end_inset
2266
2267
2268 \begin_inset LatexCommand index
2269 name "Tablas Largas"
2270
2271 \end_inset
2272
2273
2274 \begin_inset LatexCommand index
2275 name "Tablas ! Largas"
2276
2277 \end_inset
2278
2279
2280 \end_layout
2281
2282 \begin_layout Standard
2283 Si la tabla es demasiado larga para una página, puedes usar la opción 
2284 \family sans
2285 Usar\InsetSpace ~
2286 tabla\InsetSpace ~
2287 larga
2288 \family default
2289  en la solapa 
2290 \family sans
2291 Tabla\InsetSpace ~
2292 larga
2293 \family default
2294  del diálogo de tablas, para repartir automáticamente la tabla en varias
2295  páginas.
2296  Al hacerlo se habilitan diversos botones opcionales en los que puedes definir:
2297 \end_layout
2298
2299 \begin_layout Description
2300
2301 \family sans
2302 Encabezado:
2303 \family default
2304  La fila actual y todas las de arriba, que no tienen ninguna opción especial
2305  definida, se definen como filas de encabezado para todas las páginas de
2306  la tabla, excepto para la primera página si 
2307 \family sans
2308 Primer\InsetSpace ~
2309 encabezado
2310 \family default
2311  está definido.
2312  Este se denomina encabezado principal.
2313 \end_layout
2314
2315 \begin_layout Description
2316
2317 \family sans
2318 Primer\InsetSpace ~
2319 encabezado:
2320 \family default
2321  La fila actual y superiores, que no tienen ninguna opción especial definida,
2322  se definen como filas cabeceras de la primera página de la tabla.
2323 \end_layout
2324
2325 \begin_layout Description
2326
2327 \family sans
2328 Pie:
2329 \family default
2330  La fila actual y todas las siguientes, que no tienen ninguna opción especial
2331  definida, se definen como filas de pie de todas las páginas de la tabla,
2332  excepto para la última página si se define 
2333 \family sans
2334 Último\InsetSpace ~
2335 pie.
2336 \end_layout
2337
2338 \begin_layout Description
2339
2340 \family sans
2341 Último\InsetSpace ~
2342 pie: L
2343 \family default
2344 a fila actual y siguientes, que no tienen ninguna opción especial definida,
2345  se definen como filas de pie de la última página de la tabla.
2346 \end_layout
2347
2348 \begin_layout Standard
2349 También se puede especificar en qué fila se ha de cortar la tabla.
2350  Si se establece más de una opción en la misma fila, habría que tener en
2351  cuenta que solo la primera de ellas se usa en la fila dada.
2352  Las otras quedarán definidas como 
2353 \emph on
2354 vacías
2355 \emph default
2356 .
2357  En este contexto, primera significa primero en este orden: 
2358 \family sans
2359 Encabezado, Primer\InsetSpace ~
2360 encabezado
2361 \family default
2362
2363 \family sans
2364 Pie, Último\InsetSpace ~
2365 pie
2366 \family default
2367 .
2368  La siguiente tabla muestra cómo funciona:
2369 \end_layout
2370
2371 \begin_layout Standard
2372
2373 \end_layout
2374
2375 \begin_layout Standard
2376 \align center
2377 \begin_inset Tabular
2378 <lyxtabular version="3" rows="69" columns="3">
2379 <features islongtable="true">
2380 <column alignment="left" valignment="top" leftline="true" width="0cm">
2381 <column alignment="left" valignment="top" width="0pt">
2382 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2383 <row topline="true" bottomline="true" endfirsthead="true">
2384 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2385 \begin_inset Text
2386
2387 \begin_layout Standard
2388
2389 \series bold
2390 Ejemplo de lista telefónica (ignore los nombres)
2391 \end_layout
2392
2393 \end_inset
2394 </cell>
2395 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2396 \begin_inset Text
2397
2398 \begin_layout Standard
2399
2400 \end_layout
2401
2402 \end_inset
2403 </cell>
2404 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2405 \begin_inset Text
2406
2407 \begin_layout Standard
2408
2409 \end_layout
2410
2411 \end_inset
2412 </cell>
2413 </row>
2414 <row topline="true" bottomline="true" endfirsthead="true">
2415 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2416 \begin_inset Text
2417
2418 \begin_layout Standard
2419
2420 \series bold
2421 NOMBRE
2422 \end_layout
2423
2424 \end_inset
2425 </cell>
2426 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2427 \begin_inset Text
2428
2429 \begin_layout Standard
2430
2431 \end_layout
2432
2433 \end_inset
2434 </cell>
2435 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2436 \begin_inset Text
2437
2438 \begin_layout Standard
2439
2440 \series bold
2441 TEL.
2442 \end_layout
2443
2444 \end_inset
2445 </cell>
2446 </row>
2447 <row topline="true" bottomline="true" endhead="true">
2448 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2449 \begin_inset Text
2450
2451 \begin_layout Standard
2452
2453 \series bold
2454 Ejemplo de lista telefónica
2455 \end_layout
2456
2457 \end_inset
2458 </cell>
2459 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2460 \begin_inset Text
2461
2462 \begin_layout Standard
2463
2464 \end_layout
2465
2466 \end_inset
2467 </cell>
2468 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2469 \begin_inset Text
2470
2471 \begin_layout Standard
2472
2473 \end_layout
2474
2475 \end_inset
2476 </cell>
2477 </row>
2478 <row topline="true" bottomline="true" endhead="true">
2479 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2480 \begin_inset Text
2481
2482 \begin_layout Standard
2483
2484 \series bold
2485 NOMBRE
2486 \end_layout
2487
2488 \end_inset
2489 </cell>
2490 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2491 \begin_inset Text
2492
2493 \begin_layout Standard
2494
2495 \end_layout
2496
2497 \end_inset
2498 </cell>
2499 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2500 \begin_inset Text
2501
2502 \begin_layout Standard
2503
2504 \series bold
2505 TEL.
2506 \end_layout
2507
2508 \end_inset
2509 </cell>
2510 </row>
2511 <row topline="true" bottomline="true" endfoot="true">
2512 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2513 \begin_inset Text
2514
2515 \begin_layout Standard
2516  continúa en la página siguiente
2517 \end_layout
2518
2519 \end_inset
2520 </cell>
2521 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2522 \begin_inset Text
2523
2524 \begin_layout Standard
2525
2526 \end_layout
2527
2528 \end_inset
2529 </cell>
2530 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2531 \begin_inset Text
2532
2533 \begin_layout Standard
2534
2535 \end_layout
2536
2537 \end_inset
2538 </cell>
2539 </row>
2540 <row>
2541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2542 \begin_inset Text
2543
2544 \begin_layout Standard
2545
2546 \series bold
2547 Annovi
2548 \end_layout
2549
2550 \end_inset
2551 </cell>
2552 <cell alignment="center" valignment="top" topline="true" usebox="none">
2553 \begin_inset Text
2554
2555 \begin_layout Standard
2556 Silvia
2557 \end_layout
2558
2559 \end_inset
2560 </cell>
2561 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2562 \begin_inset Text
2563
2564 \begin_layout Standard
2565 111
2566 \end_layout
2567
2568 \end_inset
2569 </cell>
2570 </row>
2571 <row>
2572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2573 \begin_inset Text
2574
2575 \begin_layout Standard
2576
2577 \series bold
2578 Bertoli
2579 \end_layout
2580
2581 \end_inset
2582 </cell>
2583 <cell alignment="center" valignment="top" topline="true" usebox="none">
2584 \begin_inset Text
2585
2586 \begin_layout Standard
2587 Stefano
2588 \end_layout
2589
2590 \end_inset
2591 </cell>
2592 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2593 \begin_inset Text
2594
2595 \begin_layout Standard
2596 111
2597 \end_layout
2598
2599 \end_inset
2600 </cell>
2601 </row>
2602 <row>
2603 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2604 \begin_inset Text
2605
2606 \begin_layout Standard
2607
2608 \series bold
2609 Bozzi
2610 \end_layout
2611
2612 \end_inset
2613 </cell>
2614 <cell alignment="center" valignment="top" topline="true" usebox="none">
2615 \begin_inset Text
2616
2617 \begin_layout Standard
2618 Walter
2619 \end_layout
2620
2621 \end_inset
2622 </cell>
2623 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2624 \begin_inset Text
2625
2626 \begin_layout Standard
2627 111
2628 \end_layout
2629
2630 \end_inset
2631 </cell>
2632 </row>
2633 <row>
2634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2635 \begin_inset Text
2636
2637 \begin_layout Standard
2638
2639 \series bold
2640 Cachia
2641 \end_layout
2642
2643 \end_inset
2644 </cell>
2645 <cell alignment="center" valignment="top" topline="true" usebox="none">
2646 \begin_inset Text
2647
2648 \begin_layout Standard
2649 Maria
2650 \end_layout
2651
2652 \end_inset
2653 </cell>
2654 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2655 \begin_inset Text
2656
2657 \begin_layout Standard
2658 111
2659 \end_layout
2660
2661 \end_inset
2662 </cell>
2663 </row>
2664 <row>
2665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2666 \begin_inset Text
2667
2668 \begin_layout Standard
2669
2670 \series bold
2671 Cachia
2672 \end_layout
2673
2674 \end_inset
2675 </cell>
2676 <cell alignment="center" valignment="top" topline="true" usebox="none">
2677 \begin_inset Text
2678
2679 \begin_layout Standard
2680 Maurizio
2681 \end_layout
2682
2683 \end_inset
2684 </cell>
2685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2686 \begin_inset Text
2687
2688 \begin_layout Standard
2689 111
2690 \end_layout
2691
2692 \end_inset
2693 </cell>
2694 </row>
2695 <row>
2696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2697 \begin_inset Text
2698
2699 \begin_layout Standard
2700
2701 \series bold
2702 Cinquemani
2703 \end_layout
2704
2705 \end_inset
2706 </cell>
2707 <cell alignment="center" valignment="top" topline="true" usebox="none">
2708 \begin_inset Text
2709
2710 \begin_layout Standard
2711 Giusi
2712 \end_layout
2713
2714 \end_inset
2715 </cell>
2716 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2717 \begin_inset Text
2718
2719 \begin_layout Standard
2720 111
2721 \end_layout
2722
2723 \end_inset
2724 </cell>
2725 </row>
2726 <row>
2727 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2728 \begin_inset Text
2729
2730 \begin_layout Standard
2731
2732 \series bold
2733 Colin
2734 \end_layout
2735
2736 \end_inset
2737 </cell>
2738 <cell alignment="center" valignment="top" topline="true" usebox="none">
2739 \begin_inset Text
2740
2741 \begin_layout Standard
2742 Bernard
2743 \end_layout
2744
2745 \end_inset
2746 </cell>
2747 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2748 \begin_inset Text
2749
2750 \begin_layout Standard
2751 111
2752 \end_layout
2753
2754 \end_inset
2755 </cell>
2756 </row>
2757 <row>
2758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2759 \begin_inset Text
2760
2761 \begin_layout Standard
2762
2763 \series bold
2764 Concli
2765 \end_layout
2766
2767 \end_inset
2768 </cell>
2769 <cell alignment="center" valignment="top" topline="true" usebox="none">
2770 \begin_inset Text
2771
2772 \begin_layout Standard
2773 Gianfranco
2774 \end_layout
2775
2776 \end_inset
2777 </cell>
2778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2779 \begin_inset Text
2780
2781 \begin_layout Standard
2782 111
2783 \end_layout
2784
2785 \end_inset
2786 </cell>
2787 </row>
2788 <row>
2789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2790 \begin_inset Text
2791
2792 \begin_layout Standard
2793
2794 \series bold
2795 Dal Bosco
2796 \end_layout
2797
2798 \end_inset
2799 </cell>
2800 <cell alignment="center" valignment="top" topline="true" usebox="none">
2801 \begin_inset Text
2802
2803 \begin_layout Standard
2804 Carolina
2805 \end_layout
2806
2807 \end_inset
2808 </cell>
2809 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2810 \begin_inset Text
2811
2812 \begin_layout Standard
2813 111
2814 \end_layout
2815
2816 \end_inset
2817 </cell>
2818 </row>
2819 <row>
2820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2821 \begin_inset Text
2822
2823 \begin_layout Standard
2824
2825 \series bold
2826 Dalpiaz
2827 \end_layout
2828
2829 \end_inset
2830 </cell>
2831 <cell alignment="center" valignment="top" topline="true" usebox="none">
2832 \begin_inset Text
2833
2834 \begin_layout Standard
2835 Annamaria
2836 \end_layout
2837
2838 \end_inset
2839 </cell>
2840 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2841 \begin_inset Text
2842
2843 \begin_layout Standard
2844 111
2845 \end_layout
2846
2847 \end_inset
2848 </cell>
2849 </row>
2850 <row>
2851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2852 \begin_inset Text
2853
2854 \begin_layout Standard
2855
2856 \series bold
2857 Feliciello
2858 \end_layout
2859
2860 \end_inset
2861 </cell>
2862 <cell alignment="center" valignment="top" topline="true" usebox="none">
2863 \begin_inset Text
2864
2865 \begin_layout Standard
2866 Domenico
2867 \end_layout
2868
2869 \end_inset
2870 </cell>
2871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2872 \begin_inset Text
2873
2874 \begin_layout Standard
2875 111
2876 \end_layout
2877
2878 \end_inset
2879 </cell>
2880 </row>
2881 <row>
2882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2883 \begin_inset Text
2884
2885 \begin_layout Standard
2886
2887 \series bold
2888 Focarelli
2889 \end_layout
2890
2891 \end_inset
2892 </cell>
2893 <cell alignment="center" valignment="top" topline="true" usebox="none">
2894 \begin_inset Text
2895
2896 \begin_layout Standard
2897 Paola
2898 \end_layout
2899
2900 \end_inset
2901 </cell>
2902 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2903 \begin_inset Text
2904
2905 \begin_layout Standard
2906 111
2907 \end_layout
2908
2909 \end_inset
2910 </cell>
2911 </row>
2912 <row>
2913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2914 \begin_inset Text
2915
2916 \begin_layout Standard
2917
2918 \series bold
2919 Galletti
2920 \end_layout
2921
2922 \end_inset
2923 </cell>
2924 <cell alignment="center" valignment="top" topline="true" usebox="none">
2925 \begin_inset Text
2926
2927 \begin_layout Standard
2928 Oreste
2929 \end_layout
2930
2931 \end_inset
2932 </cell>
2933 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2934 \begin_inset Text
2935
2936 \begin_layout Standard
2937 111
2938 \end_layout
2939
2940 \end_inset
2941 </cell>
2942 </row>
2943 <row>
2944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2945 \begin_inset Text
2946
2947 \begin_layout Standard
2948
2949 \series bold
2950 Gasparini
2951 \end_layout
2952
2953 \end_inset
2954 </cell>
2955 <cell alignment="center" valignment="top" topline="true" usebox="none">
2956 \begin_inset Text
2957
2958 \begin_layout Standard
2959 Franca
2960 \end_layout
2961
2962 \end_inset
2963 </cell>
2964 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2965 \begin_inset Text
2966
2967 \begin_layout Standard
2968 111
2969 \end_layout
2970
2971 \end_inset
2972 </cell>
2973 </row>
2974 <row>
2975 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2976 \begin_inset Text
2977
2978 \begin_layout Standard
2979
2980 \series bold
2981 Rizzardi
2982 \end_layout
2983
2984 \end_inset
2985 </cell>
2986 <cell alignment="center" valignment="top" topline="true" usebox="none">
2987 \begin_inset Text
2988
2989 \begin_layout Standard
2990 Paola
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 Standard
2999 111
3000 \end_layout
3001
3002 \end_inset
3003 </cell>
3004 </row>
3005 <row>
3006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3007 \begin_inset Text
3008
3009 \begin_layout Standard
3010
3011 \series bold
3012 Lassini
3013 \end_layout
3014
3015 \end_inset
3016 </cell>
3017 <cell alignment="center" valignment="top" topline="true" usebox="none">
3018 \begin_inset Text
3019
3020 \begin_layout Standard
3021 Giancarlo
3022 \end_layout
3023
3024 \end_inset
3025 </cell>
3026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3027 \begin_inset Text
3028
3029 \begin_layout Standard
3030 111
3031 \end_layout
3032
3033 \end_inset
3034 </cell>
3035 </row>
3036 <row>
3037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3038 \begin_inset Text
3039
3040 \begin_layout Standard
3041
3042 \series bold
3043 Malfatti
3044 \end_layout
3045
3046 \end_inset
3047 </cell>
3048 <cell alignment="center" valignment="top" topline="true" usebox="none">
3049 \begin_inset Text
3050
3051 \begin_layout Standard
3052 Luciano
3053 \end_layout
3054
3055 \end_inset
3056 </cell>
3057 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3058 \begin_inset Text
3059
3060 \begin_layout Standard
3061 111
3062 \end_layout
3063
3064 \end_inset
3065 </cell>
3066 </row>
3067 <row>
3068 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3069 \begin_inset Text
3070
3071 \begin_layout Standard
3072
3073 \series bold
3074 Malfatti
3075 \end_layout
3076
3077 \end_inset
3078 </cell>
3079 <cell alignment="center" valignment="top" topline="true" usebox="none">
3080 \begin_inset Text
3081
3082 \begin_layout Standard
3083 Valeriano
3084 \end_layout
3085
3086 \end_inset
3087 </cell>
3088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3089 \begin_inset Text
3090
3091 \begin_layout Standard
3092 111
3093 \end_layout
3094
3095 \end_inset
3096 </cell>
3097 </row>
3098 <row>
3099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3100 \begin_inset Text
3101
3102 \begin_layout Standard
3103
3104 \series bold
3105 Meneguzzo
3106 \end_layout
3107
3108 \end_inset
3109 </cell>
3110 <cell alignment="center" valignment="top" topline="true" usebox="none">
3111 \begin_inset Text
3112
3113 \begin_layout Standard
3114 Roberto
3115 \end_layout
3116
3117 \end_inset
3118 </cell>
3119 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3120 \begin_inset Text
3121
3122 \begin_layout Standard
3123 111
3124 \end_layout
3125
3126 \end_inset
3127 </cell>
3128 </row>
3129 <row>
3130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3131 \begin_inset Text
3132
3133 \begin_layout Standard
3134
3135 \series bold
3136 Mezzadra
3137 \end_layout
3138
3139 \end_inset
3140 </cell>
3141 <cell alignment="center" valignment="top" topline="true" usebox="none">
3142 \begin_inset Text
3143
3144 \begin_layout Standard
3145 Roberto
3146 \end_layout
3147
3148 \end_inset
3149 </cell>
3150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3151 \begin_inset Text
3152
3153 \begin_layout Standard
3154 111
3155 \end_layout
3156
3157 \end_inset
3158 </cell>
3159 </row>
3160 <row>
3161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3162 \begin_inset Text
3163
3164 \begin_layout Standard
3165
3166 \series bold
3167 Pirpamer
3168 \end_layout
3169
3170 \end_inset
3171 </cell>
3172 <cell alignment="center" valignment="top" topline="true" usebox="none">
3173 \begin_inset Text
3174
3175 \begin_layout Standard
3176 Erich
3177 \end_layout
3178
3179 \end_inset
3180 </cell>
3181 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3182 \begin_inset Text
3183
3184 \begin_layout Standard
3185 111
3186 \end_layout
3187
3188 \end_inset
3189 </cell>
3190 </row>
3191 <row>
3192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3193 \begin_inset Text
3194
3195 \begin_layout Standard
3196
3197 \series bold
3198 Pochiesa
3199 \end_layout
3200
3201 \end_inset
3202 </cell>
3203 <cell alignment="center" valignment="top" topline="true" usebox="none">
3204 \begin_inset Text
3205
3206 \begin_layout Standard
3207 Paolo
3208 \end_layout
3209
3210 \end_inset
3211 </cell>
3212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3213 \begin_inset Text
3214
3215 \begin_layout Standard
3216 111, 222
3217 \end_layout
3218
3219 \end_inset
3220 </cell>
3221 </row>
3222 <row>
3223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3224 \begin_inset Text
3225
3226 \begin_layout Standard
3227
3228 \series bold
3229 Radina
3230 \end_layout
3231
3232 \end_inset
3233 </cell>
3234 <cell alignment="center" valignment="top" topline="true" usebox="none">
3235 \begin_inset Text
3236
3237 \begin_layout Standard
3238 Claudio
3239 \end_layout
3240
3241 \end_inset
3242 </cell>
3243 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3244 \begin_inset Text
3245
3246 \begin_layout Standard
3247 111
3248 \end_layout
3249
3250 \end_inset
3251 </cell>
3252 </row>
3253 <row>
3254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3255 \begin_inset Text
3256
3257 \begin_layout Standard
3258
3259 \series bold
3260 Stuffer
3261 \end_layout
3262
3263 \end_inset
3264 </cell>
3265 <cell alignment="center" valignment="top" topline="true" usebox="none">
3266 \begin_inset Text
3267
3268 \begin_layout Standard
3269 Oskar
3270 \end_layout
3271
3272 \end_inset
3273 </cell>
3274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3275 \begin_inset Text
3276
3277 \begin_layout Standard
3278 111
3279 \end_layout
3280
3281 \end_inset
3282 </cell>
3283 </row>
3284 <row>
3285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3286 \begin_inset Text
3287
3288 \begin_layout Standard
3289
3290 \series bold
3291 Tacchelli
3292 \end_layout
3293
3294 \end_inset
3295 </cell>
3296 <cell alignment="center" valignment="top" topline="true" usebox="none">
3297 \begin_inset Text
3298
3299 \begin_layout Standard
3300 Ugo
3301 \end_layout
3302
3303 \end_inset
3304 </cell>
3305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3306 \begin_inset Text
3307
3308 \begin_layout Standard
3309 111
3310 \end_layout
3311
3312 \end_inset
3313 </cell>
3314 </row>
3315 <row>
3316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3317 \begin_inset Text
3318
3319 \begin_layout Standard
3320
3321 \series bold
3322 Tezzele
3323 \end_layout
3324
3325 \end_inset
3326 </cell>
3327 <cell alignment="center" valignment="top" topline="true" usebox="none">
3328 \begin_inset Text
3329
3330 \begin_layout Standard
3331 Margit
3332 \end_layout
3333
3334 \end_inset
3335 </cell>
3336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3337 \begin_inset Text
3338
3339 \begin_layout Standard
3340 111
3341 \end_layout
3342
3343 \end_inset
3344 </cell>
3345 </row>
3346 <row>
3347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3348 \begin_inset Text
3349
3350 \begin_layout Standard
3351
3352 \series bold
3353 Unterkalmsteiner
3354 \end_layout
3355
3356 \end_inset
3357 </cell>
3358 <cell alignment="center" valignment="top" topline="true" usebox="none">
3359 \begin_inset Text
3360
3361 \begin_layout Standard
3362 Frieda
3363 \end_layout
3364
3365 \end_inset
3366 </cell>
3367 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3368 \begin_inset Text
3369
3370 \begin_layout Standard
3371 111
3372 \end_layout
3373
3374 \end_inset
3375 </cell>
3376 </row>
3377 <row>
3378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3379 \begin_inset Text
3380
3381 \begin_layout Standard
3382
3383 \series bold
3384 Vieider
3385 \end_layout
3386
3387 \end_inset
3388 </cell>
3389 <cell alignment="center" valignment="top" topline="true" usebox="none">
3390 \begin_inset Text
3391
3392 \begin_layout Standard
3393 Hilde
3394 \end_layout
3395
3396 \end_inset
3397 </cell>
3398 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3399 \begin_inset Text
3400
3401 \begin_layout Standard
3402 111
3403 \end_layout
3404
3405 \end_inset
3406 </cell>
3407 </row>
3408 <row>
3409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3410 \begin_inset Text
3411
3412 \begin_layout Standard
3413
3414 \series bold
3415 Vigna
3416 \end_layout
3417
3418 \end_inset
3419 </cell>
3420 <cell alignment="center" valignment="top" topline="true" usebox="none">
3421 \begin_inset Text
3422
3423 \begin_layout Standard
3424 Jürgen
3425 \end_layout
3426
3427 \end_inset
3428 </cell>
3429 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3430 \begin_inset Text
3431
3432 \begin_layout Standard
3433 111
3434 \end_layout
3435
3436 \end_inset
3437 </cell>
3438 </row>
3439 <row>
3440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3441 \begin_inset Text
3442
3443 \begin_layout Standard
3444
3445 \series bold
3446 Weber
3447 \end_layout
3448
3449 \end_inset
3450 </cell>
3451 <cell alignment="center" valignment="top" topline="true" usebox="none">
3452 \begin_inset Text
3453
3454 \begin_layout Standard
3455 Maurizio
3456 \end_layout
3457
3458 \end_inset
3459 </cell>
3460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3461 \begin_inset Text
3462
3463 \begin_layout Standard
3464 111
3465 \end_layout
3466
3467 \end_inset
3468 </cell>
3469 </row>
3470 <row bottomline="true">
3471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3472 \begin_inset Text
3473
3474 \begin_layout Standard
3475
3476 \series bold
3477 Winkler
3478 \end_layout
3479
3480 \end_inset
3481 </cell>
3482 <cell alignment="center" valignment="top" topline="true" usebox="none">
3483 \begin_inset Text
3484
3485 \begin_layout Standard
3486 Franz
3487 \end_layout
3488
3489 \end_inset
3490 </cell>
3491 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3492 \begin_inset Text
3493
3494 \begin_layout Standard
3495 111
3496 \end_layout
3497
3498 \end_inset
3499 </cell>
3500 </row>
3501 <row bottomline="true">
3502 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3503 \begin_inset Text
3504
3505 \begin_layout Standard
3506  
3507 \end_layout
3508
3509 \end_inset
3510 </cell>
3511 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3512 \begin_inset Text
3513
3514 \begin_layout Standard
3515
3516 \end_layout
3517
3518 \end_inset
3519 </cell>
3520 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3521 \begin_inset Text
3522
3523 \begin_layout Standard
3524
3525 \end_layout
3526
3527 \end_inset
3528 </cell>
3529 </row>
3530 <row>
3531 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3532 \begin_inset Text
3533
3534 \begin_layout Standard
3535
3536 \series bold
3537 Annovi
3538 \end_layout
3539
3540 \end_inset
3541 </cell>
3542 <cell alignment="center" valignment="top" topline="true" usebox="none">
3543 \begin_inset Text
3544
3545 \begin_layout Standard
3546 Silvia
3547 \end_layout
3548
3549 \end_inset
3550 </cell>
3551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3552 \begin_inset Text
3553
3554 \begin_layout Standard
3555 555
3556 \end_layout
3557
3558 \end_inset
3559 </cell>
3560 </row>
3561 <row>
3562 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3563 \begin_inset Text
3564
3565 \begin_layout Standard
3566
3567 \series bold
3568 Bertoli
3569 \end_layout
3570
3571 \end_inset
3572 </cell>
3573 <cell alignment="center" valignment="top" topline="true" usebox="none">
3574 \begin_inset Text
3575
3576 \begin_layout Standard
3577 Stefano
3578 \end_layout
3579
3580 \end_inset
3581 </cell>
3582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3583 \begin_inset Text
3584
3585 \begin_layout Standard
3586 555
3587 \end_layout
3588
3589 \end_inset
3590 </cell>
3591 </row>
3592 <row>
3593 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3594 \begin_inset Text
3595
3596 \begin_layout Standard
3597
3598 \series bold
3599 Bozzi
3600 \end_layout
3601
3602 \end_inset
3603 </cell>
3604 <cell alignment="center" valignment="top" topline="true" usebox="none">
3605 \begin_inset Text
3606
3607 \begin_layout Standard
3608 Walter
3609 \end_layout
3610
3611 \end_inset
3612 </cell>
3613 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3614 \begin_inset Text
3615
3616 \begin_layout Standard
3617 555
3618 \end_layout
3619
3620 \end_inset
3621 </cell>
3622 </row>
3623 <row>
3624 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3625 \begin_inset Text
3626
3627 \begin_layout Standard
3628
3629 \series bold
3630 Cachia
3631 \end_layout
3632
3633 \end_inset
3634 </cell>
3635 <cell alignment="center" valignment="top" topline="true" usebox="none">
3636 \begin_inset Text
3637
3638 \begin_layout Standard
3639 Maria
3640 \end_layout
3641
3642 \end_inset
3643 </cell>
3644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3645 \begin_inset Text
3646
3647 \begin_layout Standard
3648 555
3649 \end_layout
3650
3651 \end_inset
3652 </cell>
3653 </row>
3654 <row>
3655 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3656 \begin_inset Text
3657
3658 \begin_layout Standard
3659
3660 \series bold
3661 Cachia
3662 \end_layout
3663
3664 \end_inset
3665 </cell>
3666 <cell alignment="center" valignment="top" topline="true" usebox="none">
3667 \begin_inset Text
3668
3669 \begin_layout Standard
3670 Maurizio
3671 \end_layout
3672
3673 \end_inset
3674 </cell>
3675 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3676 \begin_inset Text
3677
3678 \begin_layout Standard
3679 555
3680 \end_layout
3681
3682 \end_inset
3683 </cell>
3684 </row>
3685 <row>
3686 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3687 \begin_inset Text
3688
3689 \begin_layout Standard
3690
3691 \series bold
3692 Cinquemani
3693 \end_layout
3694
3695 \end_inset
3696 </cell>
3697 <cell alignment="center" valignment="top" topline="true" usebox="none">
3698 \begin_inset Text
3699
3700 \begin_layout Standard
3701 Giusi
3702 \end_layout
3703
3704 \end_inset
3705 </cell>
3706 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3707 \begin_inset Text
3708
3709 \begin_layout Standard
3710 555
3711 \end_layout
3712
3713 \end_inset
3714 </cell>
3715 </row>
3716 <row>
3717 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3718 \begin_inset Text
3719
3720 \begin_layout Standard
3721
3722 \series bold
3723 Colin
3724 \end_layout
3725
3726 \end_inset
3727 </cell>
3728 <cell alignment="center" valignment="top" topline="true" usebox="none">
3729 \begin_inset Text
3730
3731 \begin_layout Standard
3732 Bernard
3733 \end_layout
3734
3735 \end_inset
3736 </cell>
3737 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3738 \begin_inset Text
3739
3740 \begin_layout Standard
3741 555
3742 \end_layout
3743
3744 \end_inset
3745 </cell>
3746 </row>
3747 <row>
3748 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3749 \begin_inset Text
3750
3751 \begin_layout Standard
3752
3753 \series bold
3754 Concli
3755 \end_layout
3756
3757 \end_inset
3758 </cell>
3759 <cell alignment="center" valignment="top" topline="true" usebox="none">
3760 \begin_inset Text
3761
3762 \begin_layout Standard
3763 Gianfranco
3764 \end_layout
3765
3766 \end_inset
3767 </cell>
3768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3769 \begin_inset Text
3770
3771 \begin_layout Standard
3772 555
3773 \end_layout
3774
3775 \end_inset
3776 </cell>
3777 </row>
3778 <row>
3779 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3780 \begin_inset Text
3781
3782 \begin_layout Standard
3783
3784 \series bold
3785 Dal Bosco
3786 \end_layout
3787
3788 \end_inset
3789 </cell>
3790 <cell alignment="center" valignment="top" topline="true" usebox="none">
3791 \begin_inset Text
3792
3793 \begin_layout Standard
3794 Carolina
3795 \end_layout
3796
3797 \end_inset
3798 </cell>
3799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3800 \begin_inset Text
3801
3802 \begin_layout Standard
3803 555
3804 \end_layout
3805
3806 \end_inset
3807 </cell>
3808 </row>
3809 <row>
3810 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3811 \begin_inset Text
3812
3813 \begin_layout Standard
3814
3815 \series bold
3816 Dalpiaz
3817 \end_layout
3818
3819 \end_inset
3820 </cell>
3821 <cell alignment="center" valignment="top" topline="true" usebox="none">
3822 \begin_inset Text
3823
3824 \begin_layout Standard
3825 Annamaria
3826 \end_layout
3827
3828 \end_inset
3829 </cell>
3830 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3831 \begin_inset Text
3832
3833 \begin_layout Standard
3834 555
3835 \end_layout
3836
3837 \end_inset
3838 </cell>
3839 </row>
3840 <row>
3841 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3842 \begin_inset Text
3843
3844 \begin_layout Standard
3845
3846 \series bold
3847 Feliciello
3848 \end_layout
3849
3850 \end_inset
3851 </cell>
3852 <cell alignment="center" valignment="top" topline="true" usebox="none">
3853 \begin_inset Text
3854
3855 \begin_layout Standard
3856 Domenico
3857 \end_layout
3858
3859 \end_inset
3860 </cell>
3861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3862 \begin_inset Text
3863
3864 \begin_layout Standard
3865 555
3866 \end_layout
3867
3868 \end_inset
3869 </cell>
3870 </row>
3871 <row>
3872 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3873 \begin_inset Text
3874
3875 \begin_layout Standard
3876
3877 \series bold
3878 Focarelli
3879 \end_layout
3880
3881 \end_inset
3882 </cell>
3883 <cell alignment="center" valignment="top" topline="true" usebox="none">
3884 \begin_inset Text
3885
3886 \begin_layout Standard
3887 Paola
3888 \end_layout
3889
3890 \end_inset
3891 </cell>
3892 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3893 \begin_inset Text
3894
3895 \begin_layout Standard
3896 555
3897 \end_layout
3898
3899 \end_inset
3900 </cell>
3901 </row>
3902 <row>
3903 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3904 \begin_inset Text
3905
3906 \begin_layout Standard
3907
3908 \series bold
3909 Galletti
3910 \end_layout
3911
3912 \end_inset
3913 </cell>
3914 <cell alignment="center" valignment="top" topline="true" usebox="none">
3915 \begin_inset Text
3916
3917 \begin_layout Standard
3918 Oreste
3919 \end_layout
3920
3921 \end_inset
3922 </cell>
3923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3924 \begin_inset Text
3925
3926 \begin_layout Standard
3927 555
3928 \end_layout
3929
3930 \end_inset
3931 </cell>
3932 </row>
3933 <row>
3934 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3935 \begin_inset Text
3936
3937 \begin_layout Standard
3938
3939 \series bold
3940 Gasparini
3941 \end_layout
3942
3943 \end_inset
3944 </cell>
3945 <cell alignment="center" valignment="top" topline="true" usebox="none">
3946 \begin_inset Text
3947
3948 \begin_layout Standard
3949 Franca
3950 \end_layout
3951
3952 \end_inset
3953 </cell>
3954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3955 \begin_inset Text
3956
3957 \begin_layout Standard
3958 555
3959 \end_layout
3960
3961 \end_inset
3962 </cell>
3963 </row>
3964 <row>
3965 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3966 \begin_inset Text
3967
3968 \begin_layout Standard
3969
3970 \series bold
3971 Rizzardi
3972 \end_layout
3973
3974 \end_inset
3975 </cell>
3976 <cell alignment="center" valignment="top" topline="true" usebox="none">
3977 \begin_inset Text
3978
3979 \begin_layout Standard
3980 Paola
3981 \end_layout
3982
3983 \end_inset
3984 </cell>
3985 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3986 \begin_inset Text
3987
3988 \begin_layout Standard
3989 555
3990 \end_layout
3991
3992 \end_inset
3993 </cell>
3994 </row>
3995 <row>
3996 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3997 \begin_inset Text
3998
3999 \begin_layout Standard
4000
4001 \series bold
4002 Lassini
4003 \end_layout
4004
4005 \end_inset
4006 </cell>
4007 <cell alignment="center" valignment="top" topline="true" usebox="none">
4008 \begin_inset Text
4009
4010 \begin_layout Standard
4011 Giancarlo
4012 \end_layout
4013
4014 \end_inset
4015 </cell>
4016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4017 \begin_inset Text
4018
4019 \begin_layout Standard
4020 555
4021 \end_layout
4022
4023 \end_inset
4024 </cell>
4025 </row>
4026 <row>
4027 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4028 \begin_inset Text
4029
4030 \begin_layout Standard
4031
4032 \series bold
4033 Malfatti
4034 \end_layout
4035
4036 \end_inset
4037 </cell>
4038 <cell alignment="center" valignment="top" topline="true" usebox="none">
4039 \begin_inset Text
4040
4041 \begin_layout Standard
4042 Luciano
4043 \end_layout
4044
4045 \end_inset
4046 </cell>
4047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4048 \begin_inset Text
4049
4050 \begin_layout Standard
4051 555
4052 \end_layout
4053
4054 \end_inset
4055 </cell>
4056 </row>
4057 <row>
4058 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4059 \begin_inset Text
4060
4061 \begin_layout Standard
4062
4063 \series bold
4064 Malfatti
4065 \end_layout
4066
4067 \end_inset
4068 </cell>
4069 <cell alignment="center" valignment="top" topline="true" usebox="none">
4070 \begin_inset Text
4071
4072 \begin_layout Standard
4073 Valeriano
4074 \end_layout
4075
4076 \end_inset
4077 </cell>
4078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4079 \begin_inset Text
4080
4081 \begin_layout Standard
4082 555
4083 \end_layout
4084
4085 \end_inset
4086 </cell>
4087 </row>
4088 <row>
4089 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4090 \begin_inset Text
4091
4092 \begin_layout Standard
4093
4094 \series bold
4095 Meneguzzo
4096 \end_layout
4097
4098 \end_inset
4099 </cell>
4100 <cell alignment="center" valignment="top" topline="true" usebox="none">
4101 \begin_inset Text
4102
4103 \begin_layout Standard
4104 Roberto
4105 \end_layout
4106
4107 \end_inset
4108 </cell>
4109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4110 \begin_inset Text
4111
4112 \begin_layout Standard
4113 555
4114 \end_layout
4115
4116 \end_inset
4117 </cell>
4118 </row>
4119 <row>
4120 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4121 \begin_inset Text
4122
4123 \begin_layout Standard
4124
4125 \series bold
4126 Mezzadra
4127 \end_layout
4128
4129 \end_inset
4130 </cell>
4131 <cell alignment="center" valignment="top" topline="true" usebox="none">
4132 \begin_inset Text
4133
4134 \begin_layout Standard
4135 Roberto
4136 \end_layout
4137
4138 \end_inset
4139 </cell>
4140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4141 \begin_inset Text
4142
4143 \begin_layout Standard
4144 555
4145 \end_layout
4146
4147 \end_inset
4148 </cell>
4149 </row>
4150 <row>
4151 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4152 \begin_inset Text
4153
4154 \begin_layout Standard
4155
4156 \series bold
4157 Pirpamer
4158 \end_layout
4159
4160 \end_inset
4161 </cell>
4162 <cell alignment="center" valignment="top" topline="true" usebox="none">
4163 \begin_inset Text
4164
4165 \begin_layout Standard
4166 Erich
4167 \end_layout
4168
4169 \end_inset
4170 </cell>
4171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4172 \begin_inset Text
4173
4174 \begin_layout Standard
4175 555
4176 \end_layout
4177
4178 \end_inset
4179 </cell>
4180 </row>
4181 <row>
4182 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4183 \begin_inset Text
4184
4185 \begin_layout Standard
4186
4187 \series bold
4188 Pochiesa
4189 \end_layout
4190
4191 \end_inset
4192 </cell>
4193 <cell alignment="center" valignment="top" topline="true" usebox="none">
4194 \begin_inset Text
4195
4196 \begin_layout Standard
4197 Paolo
4198 \end_layout
4199
4200 \end_inset
4201 </cell>
4202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4203 \begin_inset Text
4204
4205 \begin_layout Standard
4206 555, 222
4207 \end_layout
4208
4209 \end_inset
4210 </cell>
4211 </row>
4212 <row>
4213 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4214 \begin_inset Text
4215
4216 \begin_layout Standard
4217
4218 \series bold
4219 Radina
4220 \end_layout
4221
4222 \end_inset
4223 </cell>
4224 <cell alignment="center" valignment="top" topline="true" usebox="none">
4225 \begin_inset Text
4226
4227 \begin_layout Standard
4228 Claudio
4229 \end_layout
4230
4231 \end_inset
4232 </cell>
4233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4234 \begin_inset Text
4235
4236 \begin_layout Standard
4237 555
4238 \end_layout
4239
4240 \end_inset
4241 </cell>
4242 </row>
4243 <row>
4244 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4245 \begin_inset Text
4246
4247 \begin_layout Standard
4248
4249 \series bold
4250 Stuffer
4251 \end_layout
4252
4253 \end_inset
4254 </cell>
4255 <cell alignment="center" valignment="top" topline="true" usebox="none">
4256 \begin_inset Text
4257
4258 \begin_layout Standard
4259 Oskar
4260 \end_layout
4261
4262 \end_inset
4263 </cell>
4264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4265 \begin_inset Text
4266
4267 \begin_layout Standard
4268 555
4269 \end_layout
4270
4271 \end_inset
4272 </cell>
4273 </row>
4274 <row>
4275 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4276 \begin_inset Text
4277
4278 \begin_layout Standard
4279
4280 \series bold
4281 Tacchelli
4282 \end_layout
4283
4284 \end_inset
4285 </cell>
4286 <cell alignment="center" valignment="top" topline="true" usebox="none">
4287 \begin_inset Text
4288
4289 \begin_layout Standard
4290 Ugo
4291 \end_layout
4292
4293 \end_inset
4294 </cell>
4295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4296 \begin_inset Text
4297
4298 \begin_layout Standard
4299 555
4300 \end_layout
4301
4302 \end_inset
4303 </cell>
4304 </row>
4305 <row>
4306 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4307 \begin_inset Text
4308
4309 \begin_layout Standard
4310
4311 \series bold
4312 Tezzele
4313 \end_layout
4314
4315 \end_inset
4316 </cell>
4317 <cell alignment="center" valignment="top" topline="true" usebox="none">
4318 \begin_inset Text
4319
4320 \begin_layout Standard
4321 Margit
4322 \end_layout
4323
4324 \end_inset
4325 </cell>
4326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4327 \begin_inset Text
4328
4329 \begin_layout Standard
4330 555
4331 \end_layout
4332
4333 \end_inset
4334 </cell>
4335 </row>
4336 <row>
4337 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4338 \begin_inset Text
4339
4340 \begin_layout Standard
4341
4342 \series bold
4343 Unterkalmsteiner
4344 \end_layout
4345
4346 \end_inset
4347 </cell>
4348 <cell alignment="center" valignment="top" topline="true" usebox="none">
4349 \begin_inset Text
4350
4351 \begin_layout Standard
4352 Frieda
4353 \end_layout
4354
4355 \end_inset
4356 </cell>
4357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4358 \begin_inset Text
4359
4360 \begin_layout Standard
4361 555
4362 \end_layout
4363
4364 \end_inset
4365 </cell>
4366 </row>
4367 <row>
4368 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4369 \begin_inset Text
4370
4371 \begin_layout Standard
4372
4373 \series bold
4374 Vieider
4375 \end_layout
4376
4377 \end_inset
4378 </cell>
4379 <cell alignment="center" valignment="top" topline="true" usebox="none">
4380 \begin_inset Text
4381
4382 \begin_layout Standard
4383 Hilde
4384 \end_layout
4385
4386 \end_inset
4387 </cell>
4388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4389 \begin_inset Text
4390
4391 \begin_layout Standard
4392 555
4393 \end_layout
4394
4395 \end_inset
4396 </cell>
4397 </row>
4398 <row>
4399 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4400 \begin_inset Text
4401
4402 \begin_layout Standard
4403
4404 \series bold
4405 Vigna
4406 \end_layout
4407
4408 \end_inset
4409 </cell>
4410 <cell alignment="center" valignment="top" topline="true" usebox="none">
4411 \begin_inset Text
4412
4413 \begin_layout Standard
4414 Jürgen
4415 \end_layout
4416
4417 \end_inset
4418 </cell>
4419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4420 \begin_inset Text
4421
4422 \begin_layout Standard
4423 999
4424 \end_layout
4425
4426 \end_inset
4427 </cell>
4428 </row>
4429 <row>
4430 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4431 \begin_inset Text
4432
4433 \begin_layout Standard
4434
4435 \series bold
4436 Weber
4437 \end_layout
4438
4439 \end_inset
4440 </cell>
4441 <cell alignment="center" valignment="top" topline="true" usebox="none">
4442 \begin_inset Text
4443
4444 \begin_layout Standard
4445 Maurizio
4446 \end_layout
4447
4448 \end_inset
4449 </cell>
4450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4451 \begin_inset Text
4452
4453 \begin_layout Standard
4454 555
4455 \end_layout
4456
4457 \end_inset
4458 </cell>
4459 </row>
4460 <row bottomline="true">
4461 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4462 \begin_inset Text
4463
4464 \begin_layout Standard
4465
4466 \series bold
4467 Winkler
4468 \end_layout
4469
4470 \end_inset
4471 </cell>
4472 <cell alignment="center" valignment="top" topline="true" usebox="none">
4473 \begin_inset Text
4474
4475 \begin_layout Standard
4476 Franz
4477 \end_layout
4478
4479 \end_inset
4480 </cell>
4481 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4482 \begin_inset Text
4483
4484 \begin_layout Standard
4485 555
4486 \end_layout
4487
4488 \end_inset
4489 </cell>
4490 </row>
4491 <row bottomline="true" endlastfoot="true">
4492 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4493 \begin_inset Text
4494
4495 \begin_layout Standard
4496 fin
4497 \end_layout
4498
4499 \end_inset
4500 </cell>
4501 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4502 \begin_inset Text
4503
4504 \begin_layout Standard
4505
4506 \end_layout
4507
4508 \end_inset
4509 </cell>
4510 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4511 \begin_inset Text
4512
4513 \begin_layout Standard
4514
4515 \end_layout
4516
4517 \end_inset
4518 </cell>
4519 </row>
4520 </lyxtabular>
4521
4522 \end_inset
4523
4524
4525 \begin_inset ERT
4526 status collapsed
4527
4528 \begin_layout Standard
4529
4530
4531 \backslash
4532 addtocounter{table}{-1}
4533 \end_layout
4534
4535 \end_inset
4536
4537
4538 \begin_inset Note Note
4539 status open
4540
4541 \begin_layout Standard
4542 Para comprender el uso de este comando, lee al final de la sección\InsetSpace ~
4543 2.6.2 la
4544  primera nota resaltada en gris.
4545  
4546 \end_layout
4547
4548 \end_inset
4549
4550
4551 \end_layout
4552
4553 \begin_layout Subsection
4554 Notas al pie en Tablas Largas
4555 \begin_inset LatexCommand label
4556 name "sub:Notas-al-pie-en-Tablas-Largas"
4557
4558 \end_inset
4559
4560
4561 \begin_inset LatexCommand index
4562 name "Tablas Largas ! Notas al pie"
4563
4564 \end_inset
4565
4566
4567 \end_layout
4568
4569 \begin_layout Standard
4570 Se pueden insertar notas al pie en cada celda de una tabla larga.
4571  Salen abajo en la página donde esté la celda con la nota.
4572  La tabla\InsetSpace ~
4573
4574 \begin_inset LatexCommand ref
4575 reference "tab:DifEncabezados"
4576
4577 \end_inset
4578
4579  tiene un ejemplo de nota al pie.
4580 \end_layout
4581
4582 \begin_layout Subsection
4583 Encabezados en Tablas Largas
4584 \begin_inset LatexCommand index
4585 name "Tablas Largas ! Encabezados"
4586
4587 \end_inset
4588
4589
4590 \end_layout
4591
4592 \begin_layout Standard
4593 Una tabla larga no se puede poner flotante porque los flotantes solo pueden
4594  estar en una página, aunque el entorno 
4595 \family sans
4596 encabezado
4597 \family default
4598  de flotantes sí puede usarse para tablas largas.
4599 \end_layout
4600
4601 \begin_layout Standard
4602 LyX todavía no soporta totalmente encabezados en tablas largas, de modo
4603  que hay que crearlos de la sigiente forma:
4604 \end_layout
4605
4606 \begin_layout Enumerate
4607 Crea una tabla larga.
4608 \end_layout
4609
4610 \begin_layout Enumerate
4611 Marca la primera fila y deshabilita su línea superior.
4612 \end_layout
4613
4614 \begin_layout Enumerate
4615 Inserta un encabezado con el menú 
4616 \family sans
4617 Insertar\SpecialChar \menuseparator
4618 Encabezado
4619 \family default
4620  en la primera celda.
4621 \newline
4622 También puedes añadir un 
4623 \family sans
4624 título breve
4625 \family default
4626  para el encabezado.
4627 \end_layout
4628
4629 \begin_layout Enumerate
4630 Inserta un 
4631 \begin_inset Quotes eld
4632 \end_inset
4633
4634
4635 \series bold
4636
4637 \backslash
4638
4639 \backslash
4640 %
4641 \series default
4642
4643 \begin_inset Quotes erd
4644 \end_inset
4645
4646  como ERT detrás del encabezado.
4647 \end_layout
4648
4649 \begin_layout Standard
4650 En la Lista de Tablas aparecerá el título breve en vez del título completo.
4651  El 
4652 \series bold
4653
4654 \begin_inset Quotes eld
4655 \end_inset
4656
4657
4658 \backslash
4659
4660 \backslash
4661 %
4662 \series default
4663
4664 \begin_inset Quotes erd
4665 \end_inset
4666
4667  detrás del encabezado elimina las líneas verticales entre las siguientes
4668  celdas de la fila.
4669  Ahora, la primera fila de la tabla es solo una fila postiza para el encabezado,
4670  la tabla real comienza en la segunda fila.
4671 \end_layout
4672
4673 \begin_layout Standard
4674 He aquí una pequeña tabla larga para mostrar cómo funciona:
4675 \end_layout
4676
4677 \begin_layout Standard
4678 \begin_inset Tabular
4679 <lyxtabular version="3" rows="6" columns="5">
4680 <features islongtable="true">
4681 <column alignment="center" valignment="top" leftline="true" width="0">
4682 <column alignment="center" valignment="top" leftline="true" width="0">
4683 <column alignment="center" valignment="top" leftline="true" width="0">
4684 <column alignment="center" valignment="top" leftline="true" width="0">
4685 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4686 <row>
4687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4688 \begin_inset Text
4689
4690 \begin_layout Standard
4691 \begin_inset Caption
4692
4693 \begin_layout Standard
4694 Tabla larga con encabezado
4695 \begin_inset OptArg
4696 status collapsed
4697
4698 \begin_layout Standard
4699 Tabla larga con encabezado
4700 \end_layout
4701
4702 \end_inset
4703
4704
4705 \end_layout
4706
4707 \end_inset
4708
4709
4710 \begin_inset ERT
4711 status collapsed
4712
4713 \begin_layout Standard
4714
4715
4716 \backslash
4717
4718 \backslash
4719 %
4720 \end_layout
4721
4722 \end_inset
4723
4724
4725 \end_layout
4726
4727 \end_inset
4728 </cell>
4729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4730 \begin_inset Text
4731
4732 \begin_layout Standard
4733
4734 \end_layout
4735
4736 \end_inset
4737 </cell>
4738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4739 \begin_inset Text
4740
4741 \begin_layout Standard
4742
4743 \end_layout
4744
4745 \end_inset
4746 </cell>
4747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4748 \begin_inset Text
4749
4750 \begin_layout Standard
4751
4752 \end_layout
4753
4754 \end_inset
4755 </cell>
4756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4757 \begin_inset Text
4758
4759 \begin_layout Standard
4760
4761 \end_layout
4762
4763 \end_inset
4764 </cell>
4765 </row>
4766 <row topline="true">
4767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4768 \begin_inset Text
4769
4770 \begin_layout Standard
4771 1
4772 \end_layout
4773
4774 \end_inset
4775 </cell>
4776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4777 \begin_inset Text
4778
4779 \begin_layout Standard
4780 2
4781 \end_layout
4782
4783 \end_inset
4784 </cell>
4785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4786 \begin_inset Text
4787
4788 \begin_layout Standard
4789 3
4790 \end_layout
4791
4792 \end_inset
4793 </cell>
4794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4795 \begin_inset Text
4796
4797 \begin_layout Standard
4798 4
4799 \end_layout
4800
4801 \end_inset
4802 </cell>
4803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4804 \begin_inset Text
4805
4806 \begin_layout Standard
4807 5
4808 \end_layout
4809
4810 \end_inset
4811 </cell>
4812 </row>
4813 <row topline="true">
4814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4815 \begin_inset Text
4816
4817 \begin_layout Standard
4818 asd
4819 \end_layout
4820
4821 \end_inset
4822 </cell>
4823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4824 \begin_inset Text
4825
4826 \begin_layout Standard
4827 s
4828 \end_layout
4829
4830 \end_inset
4831 </cell>
4832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4833 \begin_inset Text
4834
4835 \begin_layout Standard
4836 s
4837 \end_layout
4838
4839 \end_inset
4840 </cell>
4841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4842 \begin_inset Text
4843
4844 \begin_layout Standard
4845 s
4846 \end_layout
4847
4848 \end_inset
4849 </cell>
4850 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4851 \begin_inset Text
4852
4853 \begin_layout Standard
4854 asd
4855 \end_layout
4856
4857 \end_inset
4858 </cell>
4859 </row>
4860 <row topline="true">
4861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4862 \begin_inset Text
4863
4864 \begin_layout Standard
4865 asd
4866 \end_layout
4867
4868 \end_inset
4869 </cell>
4870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4871 \begin_inset Text
4872
4873 \begin_layout Standard
4874 s
4875 \end_layout
4876
4877 \end_inset
4878 </cell>
4879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4880 \begin_inset Text
4881
4882 \begin_layout Standard
4883 s
4884 \end_layout
4885
4886 \end_inset
4887 </cell>
4888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4889 \begin_inset Text
4890
4891 \begin_layout Standard
4892 s
4893 \end_layout
4894
4895 \end_inset
4896 </cell>
4897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4898 \begin_inset Text
4899
4900 \begin_layout Standard
4901 asd
4902 \end_layout
4903
4904 \end_inset
4905 </cell>
4906 </row>
4907 <row topline="true">
4908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4909 \begin_inset Text
4910
4911 \begin_layout Standard
4912 asd
4913 \end_layout
4914
4915 \end_inset
4916 </cell>
4917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4918 \begin_inset Text
4919
4920 \begin_layout Standard
4921 s
4922 \end_layout
4923
4924 \end_inset
4925 </cell>
4926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4927 \begin_inset Text
4928
4929 \begin_layout Standard
4930 s
4931 \end_layout
4932
4933 \end_inset
4934 </cell>
4935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4936 \begin_inset Text
4937
4938 \begin_layout Standard
4939 s
4940 \end_layout
4941
4942 \end_inset
4943 </cell>
4944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4945 \begin_inset Text
4946
4947 \begin_layout Standard
4948 asd
4949 \end_layout
4950
4951 \end_inset
4952 </cell>
4953 </row>
4954 <row topline="true" bottomline="true">
4955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4956 \begin_inset Text
4957
4958 \begin_layout Standard
4959 asd
4960 \end_layout
4961
4962 \end_inset
4963 </cell>
4964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4965 \begin_inset Text
4966
4967 \begin_layout Standard
4968 asd
4969 \end_layout
4970
4971 \end_inset
4972 </cell>
4973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4974 \begin_inset Text
4975
4976 \begin_layout Standard
4977 asd
4978 \end_layout
4979
4980 \end_inset
4981 </cell>
4982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4983 \begin_inset Text
4984
4985 \begin_layout Standard
4986 asd
4987 \end_layout
4988
4989 \end_inset
4990 </cell>
4991 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4992 \begin_inset Text
4993
4994 \begin_layout Standard
4995 asd
4996 \end_layout
4997
4998 \end_inset
4999 </cell>
5000 </row>
5001 </lyxtabular>
5002
5003 \end_inset
5004
5005
5006 \end_layout
5007
5008 \begin_layout Standard
5009 \begin_inset VSpace medskip
5010 \end_inset
5011
5012
5013 \begin_inset Note Greyedout
5014 status open
5015
5016 \begin_layout Standard
5017
5018 \series bold
5019 Nota
5020 \series default
5021 : El número de la tabla se incrementa para cada tabla larga, aunque no pongas
5022  encabezado en alguna de ellas.
5023  Por esto podría suceder que, p.\InsetSpace \thinspace{}
5024 e., la tabla\InsetSpace ~
5025 2.4 siga a la tabla\InsetSpace ~
5026 2.1 en la lista
5027  de tablas debido a que hay dos tablas largas sin encabezado.
5028  Para evitarlo, añade detrás de cada tabla larga sin encabezado este comando
5029  en ERT:
5030 \end_layout
5031
5032 \begin_layout Standard
5033
5034 \series bold
5035
5036 \backslash
5037 addtocounter{table}{-1}
5038 \end_layout
5039
5040 \end_inset
5041
5042
5043 \end_layout
5044
5045 \begin_layout Standard
5046 \begin_inset Note Greyedout
5047 status open
5048
5049 \begin_layout Standard
5050
5051 \series bold
5052 Nota:
5053 \series default
5054  Si utilizas el paquete LaTeX 
5055 \series bold
5056 hyperref
5057 \series default
5058
5059 \begin_inset LatexCommand index
5060 name "LaTeX-paquetes ! hyperref"
5061
5062 \end_inset
5063
5064  para enlazar referencias cruzadas en la salida, los enlaces a tablas largas
5065  llevan siempre al principio del documento.
5066 \end_layout
5067
5068 \end_inset
5069
5070
5071 \end_layout
5072
5073 \begin_layout Subsubsection
5074 Referencias a Tablas Largas
5075 \begin_inset LatexCommand index
5076 name "Tablas Largas ! Referencias a"
5077
5078 \end_inset
5079
5080
5081 \end_layout
5082
5083 \begin_layout Standard
5084 \begin_inset Tabular
5085 <lyxtabular version="3" rows="6" columns="5">
5086 <features islongtable="true">
5087 <column alignment="center" valignment="top" leftline="true" width="0">
5088 <column alignment="center" valignment="top" leftline="true" width="0">
5089 <column alignment="center" valignment="top" leftline="true" width="0">
5090 <column alignment="center" valignment="top" leftline="true" width="0">
5091 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5092 <row>
5093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5094 \begin_inset Text
5095
5096 \begin_layout Standard
5097 \begin_inset Caption
5098
5099 \begin_layout Standard
5100 Tabla larga referenciada
5101 \begin_inset LatexCommand label
5102 name "tab:RefEjemplo"
5103
5104 \end_inset
5105
5106
5107 \end_layout
5108
5109 \end_inset
5110
5111
5112 \begin_inset ERT
5113 status collapsed
5114
5115 \begin_layout Standard
5116
5117
5118 \backslash
5119
5120 \backslash
5121 %
5122 \end_layout
5123
5124 \end_inset
5125
5126
5127 \end_layout
5128
5129 \end_inset
5130 </cell>
5131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5132 \begin_inset Text
5133
5134 \begin_layout Standard
5135
5136 \end_layout
5137
5138 \end_inset
5139 </cell>
5140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5141 \begin_inset Text
5142
5143 \begin_layout Standard
5144
5145 \end_layout
5146
5147 \end_inset
5148 </cell>
5149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5150 \begin_inset Text
5151
5152 \begin_layout Standard
5153
5154 \end_layout
5155
5156 \end_inset
5157 </cell>
5158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5159 \begin_inset Text
5160
5161 \begin_layout Standard
5162
5163 \end_layout
5164
5165 \end_inset
5166 </cell>
5167 </row>
5168 <row topline="true">
5169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5170 \begin_inset Text
5171
5172 \begin_layout Standard
5173 1
5174 \end_layout
5175
5176 \end_inset
5177 </cell>
5178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5179 \begin_inset Text
5180
5181 \begin_layout Standard
5182 2
5183 \end_layout
5184
5185 \end_inset
5186 </cell>
5187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5188 \begin_inset Text
5189
5190 \begin_layout Standard
5191 3
5192 \end_layout
5193
5194 \end_inset
5195 </cell>
5196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5197 \begin_inset Text
5198
5199 \begin_layout Standard
5200 4
5201 \end_layout
5202
5203 \end_inset
5204 </cell>
5205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5206 \begin_inset Text
5207
5208 \begin_layout Standard
5209 5
5210 \end_layout
5211
5212 \end_inset
5213 </cell>
5214 </row>
5215 <row topline="true">
5216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5217 \begin_inset Text
5218
5219 \begin_layout Standard
5220 asd
5221 \end_layout
5222
5223 \end_inset
5224 </cell>
5225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5226 \begin_inset Text
5227
5228 \begin_layout Standard
5229 s
5230 \end_layout
5231
5232 \end_inset
5233 </cell>
5234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5235 \begin_inset Text
5236
5237 \begin_layout Standard
5238 s
5239 \end_layout
5240
5241 \end_inset
5242 </cell>
5243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5244 \begin_inset Text
5245
5246 \begin_layout Standard
5247 s
5248 \end_layout
5249
5250 \end_inset
5251 </cell>
5252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5253 \begin_inset Text
5254
5255 \begin_layout Standard
5256 asd
5257 \end_layout
5258
5259 \end_inset
5260 </cell>
5261 </row>
5262 <row topline="true">
5263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5264 \begin_inset Text
5265
5266 \begin_layout Standard
5267 asd
5268 \end_layout
5269
5270 \end_inset
5271 </cell>
5272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5273 \begin_inset Text
5274
5275 \begin_layout Standard
5276 s
5277 \end_layout
5278
5279 \end_inset
5280 </cell>
5281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5282 \begin_inset Text
5283
5284 \begin_layout Standard
5285 s
5286 \end_layout
5287
5288 \end_inset
5289 </cell>
5290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5291 \begin_inset Text
5292
5293 \begin_layout Standard
5294 s
5295 \end_layout
5296
5297 \end_inset
5298 </cell>
5299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5300 \begin_inset Text
5301
5302 \begin_layout Standard
5303 asd
5304 \end_layout
5305
5306 \end_inset
5307 </cell>
5308 </row>
5309 <row topline="true">
5310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5311 \begin_inset Text
5312
5313 \begin_layout Standard
5314 asd
5315 \end_layout
5316
5317 \end_inset
5318 </cell>
5319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5320 \begin_inset Text
5321
5322 \begin_layout Standard
5323 s
5324 \end_layout
5325
5326 \end_inset
5327 </cell>
5328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5329 \begin_inset Text
5330
5331 \begin_layout Standard
5332 s
5333 \end_layout
5334
5335 \end_inset
5336 </cell>
5337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5338 \begin_inset Text
5339
5340 \begin_layout Standard
5341 s
5342 \end_layout
5343
5344 \end_inset
5345 </cell>
5346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5347 \begin_inset Text
5348
5349 \begin_layout Standard
5350 asd
5351 \end_layout
5352
5353 \end_inset
5354 </cell>
5355 </row>
5356 <row topline="true" bottomline="true">
5357 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5358 \begin_inset Text
5359
5360 \begin_layout Standard
5361 asd
5362 \end_layout
5363
5364 \end_inset
5365 </cell>
5366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5367 \begin_inset Text
5368
5369 \begin_layout Standard
5370 sad
5371 \end_layout
5372
5373 \end_inset
5374 </cell>
5375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5376 \begin_inset Text
5377
5378 \begin_layout Standard
5379 asd
5380 \end_layout
5381
5382 \end_inset
5383 </cell>
5384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5385 \begin_inset Text
5386
5387 \begin_layout Standard
5388 asd
5389 \end_layout
5390
5391 \end_inset
5392 </cell>
5393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5394 \begin_inset Text
5395
5396 \begin_layout Standard
5397 asd
5398 \end_layout
5399
5400 \end_inset
5401 </cell>
5402 </row>
5403 </lyxtabular>
5404
5405 \end_inset
5406
5407
5408 \end_layout
5409
5410 \begin_layout Standard
5411 Para referenciar una tabla larga, inserta una etiqueta en el encabezado.Observa
5412  que tienes que añadir el prefijo 
5413 \begin_inset Quotes eld
5414 \end_inset
5415
5416
5417 \emph on
5418 tab
5419 \emph default
5420 :
5421 \begin_inset Quotes erd
5422 \end_inset
5423
5424  manualmente en el campo de etiqueta.
5425  
5426 \end_layout
5427
5428 \begin_layout Standard
5429 Esto es una referencia a la tabla\InsetSpace ~
5430
5431 \begin_inset LatexCommand ref
5432 reference "tab:RefEjemplo"
5433
5434 \end_inset
5435
5436 .
5437 \end_layout
5438
5439 \begin_layout Standard
5440 El formato del encabezado puede configurarse junto con todos los demás encabezad
5441 os del documento mediante el paquete LaTeX 
5442 \series bold
5443 caption
5444 \series default
5445
5446 \begin_inset LatexCommand index
5447 name "LaTeX-paquetes ! caption"
5448
5449 \end_inset
5450
5451 , ver sección\InsetSpace ~
5452  
5453 \begin_inset LatexCommand ref
5454 reference "sec:Formato-de-Encabezados"
5455
5456 \end_inset
5457
5458 .
5459 \end_layout
5460
5461 \begin_layout Subsubsection
5462 Anchura de Encabezado
5463 \begin_inset LatexCommand index
5464 name "Tablas Largas ! Anchura de Encabezados"
5465
5466 \end_inset
5467
5468
5469 \end_layout
5470
5471 \begin_layout Standard
5472 La anchura máxima se define por la longitud 
5473 \series bold
5474
5475 \backslash
5476 LTcapwidth
5477 \series default
5478 .
5479  Por defecto es 4\InsetSpace \thinspace{}
5480 in (4\InsetSpace ~
5481 pulgadas).
5482  Para cambiarla añade el siguiente comando al preámbulo o como ERT en el
5483  documento antes de la tabla larga a la que afecta
5484 \end_layout
5485
5486 \begin_layout Standard
5487
5488 \series bold
5489
5490 \backslash
5491 setlength{
5492 \backslash
5493 LTcapwidth}{ancho}
5494 \end_layout
5495
5496 \begin_layout Standard
5497 donde el ancho puede ser una de las unidades listadas en el apéndice\InsetSpace ~
5498
5499 \begin_inset LatexCommand ref
5500 reference "cha:Unidades-disponibles-en"
5501
5502 \end_inset
5503
5504 .
5505 \end_layout
5506
5507 \begin_layout Standard
5508 Las tablas siguientes muestran la diferencia:
5509 \end_layout
5510
5511 \begin_layout Standard
5512 \begin_inset Tabular
5513 <lyxtabular version="3" rows="6" columns="5">
5514 <features islongtable="true">
5515 <column alignment="center" valignment="top" leftline="true" width="0">
5516 <column alignment="center" valignment="top" leftline="true" width="0">
5517 <column alignment="center" valignment="top" leftline="true" width="0">
5518 <column alignment="center" valignment="top" leftline="true" width="0">
5519 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5520 <row>
5521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5522 \begin_inset Text
5523
5524 \begin_layout Standard
5525 \begin_inset Caption
5526
5527 \begin_layout Standard
5528 Encabezado completo con ancho predeterminado encabezado completo con ancho
5529  predeterminado encabezado completo con ancho predeterminado
5530 \begin_inset OptArg
5531 status collapsed
5532
5533 \begin_layout Standard
5534 Encabezado con ancho predeterminado
5535 \end_layout
5536
5537 \end_inset
5538
5539
5540 \end_layout
5541
5542 \end_inset
5543
5544
5545 \begin_inset ERT
5546 status collapsed
5547
5548 \begin_layout Standard
5549
5550
5551 \backslash
5552
5553 \backslash
5554 %
5555 \end_layout
5556
5557 \end_inset
5558
5559
5560 \end_layout
5561
5562 \end_inset
5563 </cell>
5564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5565 \begin_inset Text
5566
5567 \begin_layout Standard
5568
5569 \end_layout
5570
5571 \end_inset
5572 </cell>
5573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5574 \begin_inset Text
5575
5576 \begin_layout Standard
5577
5578 \end_layout
5579
5580 \end_inset
5581 </cell>
5582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5583 \begin_inset Text
5584
5585 \begin_layout Standard
5586
5587 \end_layout
5588
5589 \end_inset
5590 </cell>
5591 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5592 \begin_inset Text
5593
5594 \begin_layout Standard
5595
5596 \end_layout
5597
5598 \end_inset
5599 </cell>
5600 </row>
5601 <row topline="true">
5602 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5603 \begin_inset Text
5604
5605 \begin_layout Standard
5606 1
5607 \end_layout
5608
5609 \end_inset
5610 </cell>
5611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5612 \begin_inset Text
5613
5614 \begin_layout Standard
5615 2
5616 \end_layout
5617
5618 \end_inset
5619 </cell>
5620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5621 \begin_inset Text
5622
5623 \begin_layout Standard
5624 3
5625 \end_layout
5626
5627 \end_inset
5628 </cell>
5629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5630 \begin_inset Text
5631
5632 \begin_layout Standard
5633 4
5634 \end_layout
5635
5636 \end_inset
5637 </cell>
5638 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5639 \begin_inset Text
5640
5641 \begin_layout Standard
5642 5
5643 \end_layout
5644
5645 \end_inset
5646 </cell>
5647 </row>
5648 <row topline="true">
5649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5650 \begin_inset Text
5651
5652 \begin_layout Standard
5653 asd
5654 \end_layout
5655
5656 \end_inset
5657 </cell>
5658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5659 \begin_inset Text
5660
5661 \begin_layout Standard
5662 s
5663 \end_layout
5664
5665 \end_inset
5666 </cell>
5667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5668 \begin_inset Text
5669
5670 \begin_layout Standard
5671 s
5672 \end_layout
5673
5674 \end_inset
5675 </cell>
5676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5677 \begin_inset Text
5678
5679 \begin_layout Standard
5680 s
5681 \end_layout
5682
5683 \end_inset
5684 </cell>
5685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5686 \begin_inset Text
5687
5688 \begin_layout Standard
5689 asd
5690 \end_layout
5691
5692 \end_inset
5693 </cell>
5694 </row>
5695 <row topline="true">
5696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5697 \begin_inset Text
5698
5699 \begin_layout Standard
5700 asd
5701 \end_layout
5702
5703 \end_inset
5704 </cell>
5705 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5706 \begin_inset Text
5707
5708 \begin_layout Standard
5709 s
5710 \end_layout
5711
5712 \end_inset
5713 </cell>
5714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5715 \begin_inset Text
5716
5717 \begin_layout Standard
5718 s
5719 \end_layout
5720
5721 \end_inset
5722 </cell>
5723 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5724 \begin_inset Text
5725
5726 \begin_layout Standard
5727 s
5728 \end_layout
5729
5730 \end_inset
5731 </cell>
5732 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5733 \begin_inset Text
5734
5735 \begin_layout Standard
5736 asd
5737 \end_layout
5738
5739 \end_inset
5740 </cell>
5741 </row>
5742 <row topline="true">
5743 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5744 \begin_inset Text
5745
5746 \begin_layout Standard
5747 asd
5748 \end_layout
5749
5750 \end_inset
5751 </cell>
5752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5753 \begin_inset Text
5754
5755 \begin_layout Standard
5756 s
5757 \end_layout
5758
5759 \end_inset
5760 </cell>
5761 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5762 \begin_inset Text
5763
5764 \begin_layout Standard
5765 s
5766 \end_layout
5767
5768 \end_inset
5769 </cell>
5770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5771 \begin_inset Text
5772
5773 \begin_layout Standard
5774 s
5775 \end_layout
5776
5777 \end_inset
5778 </cell>
5779 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5780 \begin_inset Text
5781
5782 \begin_layout Standard
5783 asd
5784 \end_layout
5785
5786 \end_inset
5787 </cell>
5788 </row>
5789 <row topline="true" bottomline="true">
5790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5791 \begin_inset Text
5792
5793 \begin_layout Standard
5794 asd
5795 \end_layout
5796
5797 \end_inset
5798 </cell>
5799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5800 \begin_inset Text
5801
5802 \begin_layout Standard
5803 sad
5804 \end_layout
5805
5806 \end_inset
5807 </cell>
5808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5809 \begin_inset Text
5810
5811 \begin_layout Standard
5812 asd
5813 \end_layout
5814
5815 \end_inset
5816 </cell>
5817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5818 \begin_inset Text
5819
5820 \begin_layout Standard
5821 asd
5822 \end_layout
5823
5824 \end_inset
5825 </cell>
5826 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5827 \begin_inset Text
5828
5829 \begin_layout Standard
5830 asd
5831 \end_layout
5832
5833 \end_inset
5834 </cell>
5835 </row>
5836 </lyxtabular>
5837
5838 \end_inset
5839
5840
5841 \end_layout
5842
5843 \begin_layout Standard
5844 \begin_inset ERT
5845 status collapsed
5846
5847 \begin_layout Standard
5848
5849
5850 \backslash
5851 setlength{
5852 \backslash
5853 LTcapwidth}{5cm}
5854 \end_layout
5855
5856 \end_inset
5857
5858
5859 \begin_inset Tabular
5860 <lyxtabular version="3" rows="6" columns="5">
5861 <features islongtable="true">
5862 <column alignment="center" valignment="top" leftline="true" width="0">
5863 <column alignment="center" valignment="top" leftline="true" width="0">
5864 <column alignment="center" valignment="top" leftline="true" width="0">
5865 <column alignment="center" valignment="top" leftline="true" width="0">
5866 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5867 <row>
5868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5869 \begin_inset Text
5870
5871 \begin_layout Standard
5872 \begin_inset Caption
5873
5874 \begin_layout Standard
5875 Encabezado completo con ancho de  5\InsetSpace \thinspace{}
5876 cm encabezado completo con ancho de 5\InsetSpace \thinspace{}
5877 cm
5878  encabezado completo con ancho de 5\InsetSpace \thinspace{}
5879 cm
5880 \begin_inset OptArg
5881 status collapsed
5882
5883 \begin_layout Standard
5884 Encabezado con anchura\InsetSpace \thinspace{}
5885 =\InsetSpace \thinspace{}
5886 5\InsetSpace \thinspace{}
5887 cm
5888 \end_layout
5889
5890 \end_inset
5891
5892
5893 \end_layout
5894
5895 \end_inset
5896
5897
5898 \begin_inset ERT
5899 status collapsed
5900
5901 \begin_layout Standard
5902
5903
5904 \backslash
5905
5906 \backslash
5907 %
5908 \end_layout
5909
5910 \end_inset
5911
5912
5913 \end_layout
5914
5915 \end_inset
5916 </cell>
5917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5918 \begin_inset Text
5919
5920 \begin_layout Standard
5921
5922 \end_layout
5923
5924 \end_inset
5925 </cell>
5926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5927 \begin_inset Text
5928
5929 \begin_layout Standard
5930
5931 \end_layout
5932
5933 \end_inset
5934 </cell>
5935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5936 \begin_inset Text
5937
5938 \begin_layout Standard
5939
5940 \end_layout
5941
5942 \end_inset
5943 </cell>
5944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5945 \begin_inset Text
5946
5947 \begin_layout Standard
5948
5949 \end_layout
5950
5951 \end_inset
5952 </cell>
5953 </row>
5954 <row topline="true">
5955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5956 \begin_inset Text
5957
5958 \begin_layout Standard
5959 1
5960 \end_layout
5961
5962 \end_inset
5963 </cell>
5964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5965 \begin_inset Text
5966
5967 \begin_layout Standard
5968 2
5969 \end_layout
5970
5971 \end_inset
5972 </cell>
5973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5974 \begin_inset Text
5975
5976 \begin_layout Standard
5977 3
5978 \end_layout
5979
5980 \end_inset
5981 </cell>
5982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5983 \begin_inset Text
5984
5985 \begin_layout Standard
5986 4
5987 \end_layout
5988
5989 \end_inset
5990 </cell>
5991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5992 \begin_inset Text
5993
5994 \begin_layout Standard
5995 5
5996 \end_layout
5997
5998 \end_inset
5999 </cell>
6000 </row>
6001 <row topline="true">
6002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6003 \begin_inset Text
6004
6005 \begin_layout Standard
6006 asd
6007 \end_layout
6008
6009 \end_inset
6010 </cell>
6011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6012 \begin_inset Text
6013
6014 \begin_layout Standard
6015 s
6016 \end_layout
6017
6018 \end_inset
6019 </cell>
6020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6021 \begin_inset Text
6022
6023 \begin_layout Standard
6024 s
6025 \end_layout
6026
6027 \end_inset
6028 </cell>
6029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6030 \begin_inset Text
6031
6032 \begin_layout Standard
6033 s
6034 \end_layout
6035
6036 \end_inset
6037 </cell>
6038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6039 \begin_inset Text
6040
6041 \begin_layout Standard
6042 asd
6043 \end_layout
6044
6045 \end_inset
6046 </cell>
6047 </row>
6048 <row topline="true">
6049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6050 \begin_inset Text
6051
6052 \begin_layout Standard
6053 asd
6054 \end_layout
6055
6056 \end_inset
6057 </cell>
6058 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6059 \begin_inset Text
6060
6061 \begin_layout Standard
6062 s
6063 \end_layout
6064
6065 \end_inset
6066 </cell>
6067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6068 \begin_inset Text
6069
6070 \begin_layout Standard
6071 s
6072 \end_layout
6073
6074 \end_inset
6075 </cell>
6076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6077 \begin_inset Text
6078
6079 \begin_layout Standard
6080 s
6081 \end_layout
6082
6083 \end_inset
6084 </cell>
6085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6086 \begin_inset Text
6087
6088 \begin_layout Standard
6089 asd
6090 \end_layout
6091
6092 \end_inset
6093 </cell>
6094 </row>
6095 <row topline="true">
6096 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6097 \begin_inset Text
6098
6099 \begin_layout Standard
6100 asd
6101 \end_layout
6102
6103 \end_inset
6104 </cell>
6105 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6106 \begin_inset Text
6107
6108 \begin_layout Standard
6109 s
6110 \end_layout
6111
6112 \end_inset
6113 </cell>
6114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6115 \begin_inset Text
6116
6117 \begin_layout Standard
6118 s
6119 \end_layout
6120
6121 \end_inset
6122 </cell>
6123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6124 \begin_inset Text
6125
6126 \begin_layout Standard
6127 s
6128 \end_layout
6129
6130 \end_inset
6131 </cell>
6132 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6133 \begin_inset Text
6134
6135 \begin_layout Standard
6136 asd
6137 \end_layout
6138
6139 \end_inset
6140 </cell>
6141 </row>
6142 <row topline="true" bottomline="true">
6143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6144 \begin_inset Text
6145
6146 \begin_layout Standard
6147 asd
6148 \end_layout
6149
6150 \end_inset
6151 </cell>
6152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6153 \begin_inset Text
6154
6155 \begin_layout Standard
6156 sad
6157 \end_layout
6158
6159 \end_inset
6160 </cell>
6161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6162 \begin_inset Text
6163
6164 \begin_layout Standard
6165 asd
6166 \end_layout
6167
6168 \end_inset
6169 </cell>
6170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6171 \begin_inset Text
6172
6173 \begin_layout Standard
6174 asd
6175 \end_layout
6176
6177 \end_inset
6178 </cell>
6179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6180 \begin_inset Text
6181
6182 \begin_layout Standard
6183 asd
6184 \end_layout
6185
6186 \end_inset
6187 </cell>
6188 </row>
6189 </lyxtabular>
6190
6191 \end_inset
6192
6193
6194 \begin_inset ERT
6195 status collapsed
6196
6197 \begin_layout Standard
6198
6199
6200 \backslash
6201 setlength{
6202 \backslash
6203 LTcapwidth}{4in}
6204 \end_layout
6205
6206 \end_inset
6207
6208
6209 \end_layout
6210
6211 \begin_layout Standard
6212 \begin_inset Note Greyedout
6213 status collapsed
6214
6215 \begin_layout Standard
6216
6217 \series bold
6218 Nota: 
6219 \series default
6220 Si se usa el paquete LaTeX 
6221 \series bold
6222 caption
6223 \series default
6224
6225 \begin_inset LatexCommand index
6226 name "LaTeX-paquetes ! caption"
6227
6228 \end_inset
6229
6230 , como en este documento, se usa la anchura de toda la página para el pie
6231  si utilizas el valor por defecto de 4\InsetSpace \thinspace{}
6232 in para 
6233 \series bold
6234
6235 \backslash
6236 LTcapwidth
6237 \series default
6238 .
6239  En este caso, para conseguir exactamente un pie de 4\InsetSpace \thinspace{}
6240 in, puedes poner un
6241  valor ligeramente diferente de 4.0\InsetSpace \thinspace{}
6242 in, p.\InsetSpace \thinspace{}
6243 e.
6244  3.99\InsetSpace \thinspace{}
6245 in, o el comando de LaTeX 
6246 \series bold
6247
6248 \backslash
6249 captionsetup{width=valor}
6250 \series default
6251 , suministrado por el paquete 
6252 \series bold
6253 caption
6254 \series default
6255 .
6256 \end_layout
6257
6258 \end_inset
6259
6260
6261 \end_layout
6262
6263 \begin_layout Subsubsection
6264 Encabezados Distintos para cada Página
6265 \begin_inset LatexCommand index
6266 name "Tablas Largas ! Encabezados Diferentes para cada Página"
6267
6268 \end_inset
6269
6270
6271 \end_layout
6272
6273 \begin_layout Standard
6274 Si los otros encabezados debieran ser diferentes del de la primera página,
6275  inserta un encabezado con un título breve no vacío en una fila postiza
6276  de encabezado marcado como primer encabezado.
6277  El encabezado para las restantes páginas se inserta como encabezado sin
6278  título breve en una fila postiza de encabezado marcado como primer encabezado.
6279  Si este encabezado no ha de incluir el número de tabla, usa el comando
6280 \end_layout
6281
6282 \begin_layout Standard
6283
6284 \series bold
6285
6286 \backslash
6287 caption*{texto del encabezado}
6288 \end_layout
6289
6290 \begin_layout Standard
6291 en vez del recuadro de encabezados de LyX.
6292  La etiqueta para referenciar la tabla se inserta en el primer encabezado.
6293  La tabla\InsetSpace ~
6294
6295 \begin_inset LatexCommand ref
6296 reference "tab:DifEncabezados"
6297
6298 \end_inset
6299
6300  es un ejemplo de tabla larga con encabezados distintos donde el segundo
6301  no incluye número de tabla.
6302 \end_layout
6303
6304 \begin_layout Standard
6305 \align center
6306 \begin_inset Tabular
6307 <lyxtabular version="3" rows="60" columns="3">
6308 <features islongtable="true">
6309 <column alignment="left" valignment="top" leftline="true" width="0cm">
6310 <column alignment="left" valignment="top" rightline="true" width="0pt">
6311 <column alignment="right" valignment="top" rightline="true" width="0pt">
6312 <row endfirsthead="true">
6313 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6314 \begin_inset Text
6315
6316 \begin_layout Standard
6317 \begin_inset Caption
6318
6319 \begin_layout Standard
6320 Ejemplo de lista telefónica
6321 \begin_inset LatexCommand label
6322 name "tab:DifEncabezados"
6323
6324 \end_inset
6325
6326
6327 \begin_inset OptArg
6328 status collapsed
6329
6330 \begin_layout Standard
6331 Ejemplo de lista telefónica
6332 \end_layout
6333
6334 \end_inset
6335
6336
6337 \end_layout
6338
6339 \end_inset
6340
6341
6342 \begin_inset ERT
6343 status collapsed
6344
6345 \begin_layout Standard
6346
6347
6348 \backslash
6349
6350 \backslash
6351 %
6352 \end_layout
6353
6354 \end_inset
6355
6356
6357 \end_layout
6358
6359 \end_inset
6360 </cell>
6361 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6362 \begin_inset Text
6363
6364 \begin_layout Standard
6365
6366 \end_layout
6367
6368 \end_inset
6369 </cell>
6370 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6371 \begin_inset Text
6372
6373 \begin_layout Standard
6374
6375 \end_layout
6376
6377 \end_inset
6378 </cell>
6379 </row>
6380 <row topline="true" bottomline="true" endfirsthead="true">
6381 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6382 \begin_inset Text
6383
6384 \begin_layout Standard
6385
6386 \series bold
6387 Ejemplo de lista telefónica (ignore los nombres)
6388 \end_layout
6389
6390 \end_inset
6391 </cell>
6392 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6393 \begin_inset Text
6394
6395 \begin_layout Standard
6396
6397 \end_layout
6398
6399 \end_inset
6400 </cell>
6401 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6402 \begin_inset Text
6403
6404 \begin_layout Standard
6405
6406 \end_layout
6407
6408 \end_inset
6409 </cell>
6410 </row>
6411 <row topline="true" bottomline="true" endfirsthead="true">
6412 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6413 \begin_inset Text
6414
6415 \begin_layout Standard
6416
6417 \series bold
6418 NOMBRE
6419 \end_layout
6420
6421 \end_inset
6422 </cell>
6423 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6424 \begin_inset Text
6425
6426 \begin_layout Standard
6427
6428 \end_layout
6429
6430 \end_inset
6431 </cell>
6432 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6433 \begin_inset Text
6434
6435 \begin_layout Standard
6436
6437 \series bold
6438 TEL.
6439 \end_layout
6440
6441 \end_inset
6442 </cell>
6443 </row>
6444 <row bottomline="true" endhead="true">
6445 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6446 \begin_inset Text
6447
6448 \begin_layout Standard
6449 \begin_inset ERT
6450 status collapsed
6451
6452 \begin_layout Standard
6453
6454
6455 \backslash
6456 caption*{Continúa Ejemplo de lista telefónica}
6457 \backslash
6458
6459 \backslash
6460 %
6461 \end_layout
6462
6463 \end_inset
6464
6465
6466 \end_layout
6467
6468 \end_inset
6469 </cell>
6470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6471 \begin_inset Text
6472
6473 \begin_layout Standard
6474
6475 \end_layout
6476
6477 \end_inset
6478 </cell>
6479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6480 \begin_inset Text
6481
6482 \begin_layout Standard
6483
6484 \end_layout
6485
6486 \end_inset
6487 </cell>
6488 </row>
6489 <row topline="true" bottomline="true" endhead="true">
6490 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6491 \begin_inset Text
6492
6493 \begin_layout Standard
6494
6495 \series bold
6496 Ejemplo de lista telefónica
6497 \end_layout
6498
6499 \end_inset
6500 </cell>
6501 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6502 \begin_inset Text
6503
6504 \begin_layout Standard
6505
6506 \end_layout
6507
6508 \end_inset
6509 </cell>
6510 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6511 \begin_inset Text
6512
6513 \begin_layout Standard
6514
6515 \end_layout
6516
6517 \end_inset
6518 </cell>
6519 </row>
6520 <row topline="true" bottomline="true" endhead="true">
6521 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6522 \begin_inset Text
6523
6524 \begin_layout Standard
6525
6526 \series bold
6527 NOMBRE
6528 \end_layout
6529
6530 \end_inset
6531 </cell>
6532 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6533 \begin_inset Text
6534
6535 \begin_layout Standard
6536
6537 \end_layout
6538
6539 \end_inset
6540 </cell>
6541 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6542 \begin_inset Text
6543
6544 \begin_layout Standard
6545
6546 \series bold
6547 TEL.
6548 \end_layout
6549
6550 \end_inset
6551 </cell>
6552 </row>
6553 <row topline="true" bottomline="true" endfoot="true">
6554 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6555 \begin_inset Text
6556
6557 \begin_layout Standard
6558 continúa en página siguiente
6559 \end_layout
6560
6561 \end_inset
6562 </cell>
6563 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6564 \begin_inset Text
6565
6566 \begin_layout Standard
6567
6568 \end_layout
6569
6570 \end_inset
6571 </cell>
6572 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6573 \begin_inset Text
6574
6575 \begin_layout Standard
6576
6577 \end_layout
6578
6579 \end_inset
6580 </cell>
6581 </row>
6582 <row>
6583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6584 \begin_inset Text
6585
6586 \begin_layout Standard
6587
6588 \series bold
6589 Annovi
6590 \end_layout
6591
6592 \end_inset
6593 </cell>
6594 <cell alignment="center" valignment="top" topline="true" usebox="none">
6595 \begin_inset Text
6596
6597 \begin_layout Standard
6598 Silvia
6599 \end_layout
6600
6601 \end_inset
6602 </cell>
6603 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6604 \begin_inset Text
6605
6606 \begin_layout Standard
6607 111
6608 \end_layout
6609
6610 \end_inset
6611 </cell>
6612 </row>
6613 <row>
6614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6615 \begin_inset Text
6616
6617 \begin_layout Standard
6618
6619 \series bold
6620 Bertoli
6621 \end_layout
6622
6623 \end_inset
6624 </cell>
6625 <cell alignment="center" valignment="top" topline="true" usebox="none">
6626 \begin_inset Text
6627
6628 \begin_layout Standard
6629 Stefano
6630 \end_layout
6631
6632 \end_inset
6633 </cell>
6634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6635 \begin_inset Text
6636
6637 \begin_layout Standard
6638 111
6639 \end_layout
6640
6641 \end_inset
6642 </cell>
6643 </row>
6644 <row>
6645 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6646 \begin_inset Text
6647
6648 \begin_layout Standard
6649
6650 \series bold
6651 Bozzi
6652 \end_layout
6653
6654 \end_inset
6655 </cell>
6656 <cell alignment="center" valignment="top" topline="true" usebox="none">
6657 \begin_inset Text
6658
6659 \begin_layout Standard
6660 Walter
6661 \end_layout
6662
6663 \end_inset
6664 </cell>
6665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6666 \begin_inset Text
6667
6668 \begin_layout Standard
6669 111
6670 \end_layout
6671
6672 \end_inset
6673 </cell>
6674 </row>
6675 <row>
6676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6677 \begin_inset Text
6678
6679 \begin_layout Standard
6680
6681 \series bold
6682 Cachia
6683 \end_layout
6684
6685 \end_inset
6686 </cell>
6687 <cell alignment="center" valignment="top" topline="true" usebox="none">
6688 \begin_inset Text
6689
6690 \begin_layout Standard
6691 Maria
6692 \end_layout
6693
6694 \end_inset
6695 </cell>
6696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6697 \begin_inset Text
6698
6699 \begin_layout Standard
6700 111
6701 \end_layout
6702
6703 \end_inset
6704 </cell>
6705 </row>
6706 <row>
6707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6708 \begin_inset Text
6709
6710 \begin_layout Standard
6711
6712 \series bold
6713 Cachia
6714 \end_layout
6715
6716 \end_inset
6717 </cell>
6718 <cell alignment="center" valignment="top" topline="true" usebox="none">
6719 \begin_inset Text
6720
6721 \begin_layout Standard
6722 Maurizio
6723 \end_layout
6724
6725 \end_inset
6726 </cell>
6727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6728 \begin_inset Text
6729
6730 \begin_layout Standard
6731 111
6732 \end_layout
6733
6734 \end_inset
6735 </cell>
6736 </row>
6737 <row>
6738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6739 \begin_inset Text
6740
6741 \begin_layout Standard
6742
6743 \series bold
6744 Cinquemani
6745 \end_layout
6746
6747 \end_inset
6748 </cell>
6749 <cell alignment="center" valignment="top" topline="true" usebox="none">
6750 \begin_inset Text
6751
6752 \begin_layout Standard
6753 Giusi
6754 \end_layout
6755
6756 \end_inset
6757 </cell>
6758 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6759 \begin_inset Text
6760
6761 \begin_layout Standard
6762 111
6763 \end_layout
6764
6765 \end_inset
6766 </cell>
6767 </row>
6768 <row>
6769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6770 \begin_inset Text
6771
6772 \begin_layout Standard
6773
6774 \series bold
6775 Colin
6776 \end_layout
6777
6778 \end_inset
6779 </cell>
6780 <cell alignment="center" valignment="top" topline="true" usebox="none">
6781 \begin_inset Text
6782
6783 \begin_layout Standard
6784 Bernard
6785 \end_layout
6786
6787 \end_inset
6788 </cell>
6789 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6790 \begin_inset Text
6791
6792 \begin_layout Standard
6793 111
6794 \end_layout
6795
6796 \end_inset
6797 </cell>
6798 </row>
6799 <row>
6800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6801 \begin_inset Text
6802
6803 \begin_layout Standard
6804
6805 \series bold
6806 Concli
6807 \end_layout
6808
6809 \end_inset
6810 </cell>
6811 <cell alignment="center" valignment="top" topline="true" usebox="none">
6812 \begin_inset Text
6813
6814 \begin_layout Standard
6815 Gianfranco
6816 \end_layout
6817
6818 \end_inset
6819 </cell>
6820 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6821 \begin_inset Text
6822
6823 \begin_layout Standard
6824 111
6825 \end_layout
6826
6827 \end_inset
6828 </cell>
6829 </row>
6830 <row>
6831 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6832 \begin_inset Text
6833
6834 \begin_layout Standard
6835
6836 \series bold
6837 Dal Bosco
6838 \end_layout
6839
6840 \end_inset
6841 </cell>
6842 <cell alignment="center" valignment="top" topline="true" usebox="none">
6843 \begin_inset Text
6844
6845 \begin_layout Standard
6846 Carolina
6847 \end_layout
6848
6849 \end_inset
6850 </cell>
6851 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6852 \begin_inset Text
6853
6854 \begin_layout Standard
6855 111
6856 \end_layout
6857
6858 \end_inset
6859 </cell>
6860 </row>
6861 <row>
6862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6863 \begin_inset Text
6864
6865 \begin_layout Standard
6866
6867 \series bold
6868 Dalpiaz
6869 \end_layout
6870
6871 \end_inset
6872 </cell>
6873 <cell alignment="center" valignment="top" topline="true" usebox="none">
6874 \begin_inset Text
6875
6876 \begin_layout Standard
6877 Annamaria
6878 \end_layout
6879
6880 \end_inset
6881 </cell>
6882 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6883 \begin_inset Text
6884
6885 \begin_layout Standard
6886 111
6887 \end_layout
6888
6889 \end_inset
6890 </cell>
6891 </row>
6892 <row>
6893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6894 \begin_inset Text
6895
6896 \begin_layout Standard
6897
6898 \series bold
6899 Feliciello
6900 \end_layout
6901
6902 \end_inset
6903 </cell>
6904 <cell alignment="center" valignment="top" topline="true" usebox="none">
6905 \begin_inset Text
6906
6907 \begin_layout Standard
6908 Domenico
6909 \end_layout
6910
6911 \end_inset
6912 </cell>
6913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6914 \begin_inset Text
6915
6916 \begin_layout Standard
6917 111
6918 \end_layout
6919
6920 \end_inset
6921 </cell>
6922 </row>
6923 <row>
6924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6925 \begin_inset Text
6926
6927 \begin_layout Standard
6928
6929 \series bold
6930 Focarelli
6931 \end_layout
6932
6933 \end_inset
6934 </cell>
6935 <cell alignment="center" valignment="top" topline="true" usebox="none">
6936 \begin_inset Text
6937
6938 \begin_layout Standard
6939 Paola
6940 \end_layout
6941
6942 \end_inset
6943 </cell>
6944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6945 \begin_inset Text
6946
6947 \begin_layout Standard
6948 111
6949 \end_layout
6950
6951 \end_inset
6952 </cell>
6953 </row>
6954 <row>
6955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6956 \begin_inset Text
6957
6958 \begin_layout Standard
6959
6960 \series bold
6961 Galletti
6962 \end_layout
6963
6964 \end_inset
6965 </cell>
6966 <cell alignment="center" valignment="top" topline="true" usebox="none">
6967 \begin_inset Text
6968
6969 \begin_layout Standard
6970 Oreste
6971 \end_layout
6972
6973 \end_inset
6974 </cell>
6975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6976 \begin_inset Text
6977
6978 \begin_layout Standard
6979 111
6980 \end_layout
6981
6982 \end_inset
6983 </cell>
6984 </row>
6985 <row>
6986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6987 \begin_inset Text
6988
6989 \begin_layout Standard
6990
6991 \series bold
6992 Gasparini
6993 \end_layout
6994
6995 \end_inset
6996 </cell>
6997 <cell alignment="center" valignment="top" topline="true" usebox="none">
6998 \begin_inset Text
6999
7000 \begin_layout Standard
7001 Franca
7002 \end_layout
7003
7004 \end_inset
7005 </cell>
7006 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7007 \begin_inset Text
7008
7009 \begin_layout Standard
7010 111
7011 \end_layout
7012
7013 \end_inset
7014 </cell>
7015 </row>
7016 <row>
7017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7018 \begin_inset Text
7019
7020 \begin_layout Standard
7021
7022 \series bold
7023 Rizzardi
7024 \series default
7025
7026 \begin_inset Foot
7027 status open
7028
7029 \begin_layout Standard
7030 Ejemplo de nota al pie
7031 \end_layout
7032
7033 \end_inset
7034
7035
7036 \end_layout
7037
7038 \end_inset
7039 </cell>
7040 <cell alignment="center" valignment="top" topline="true" usebox="none">
7041 \begin_inset Text
7042
7043 \begin_layout Standard
7044 Paola
7045 \end_layout
7046
7047 \end_inset
7048 </cell>
7049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7050 \begin_inset Text
7051
7052 \begin_layout Standard
7053 111
7054 \end_layout
7055
7056 \end_inset
7057 </cell>
7058 </row>
7059 <row>
7060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7061 \begin_inset Text
7062
7063 \begin_layout Standard
7064
7065 \series bold
7066 Lassini
7067 \end_layout
7068
7069 \end_inset
7070 </cell>
7071 <cell alignment="center" valignment="top" topline="true" usebox="none">
7072 \begin_inset Text
7073
7074 \begin_layout Standard
7075 Giancarlo
7076 \end_layout
7077
7078 \end_inset
7079 </cell>
7080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7081 \begin_inset Text
7082
7083 \begin_layout Standard
7084 111
7085 \end_layout
7086
7087 \end_inset
7088 </cell>
7089 </row>
7090 <row>
7091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7092 \begin_inset Text
7093
7094 \begin_layout Standard
7095
7096 \series bold
7097 Malfatti
7098 \end_layout
7099
7100 \end_inset
7101 </cell>
7102 <cell alignment="center" valignment="top" topline="true" usebox="none">
7103 \begin_inset Text
7104
7105 \begin_layout Standard
7106 Luciano
7107 \end_layout
7108
7109 \end_inset
7110 </cell>
7111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7112 \begin_inset Text
7113
7114 \begin_layout Standard
7115 111
7116 \end_layout
7117
7118 \end_inset
7119 </cell>
7120 </row>
7121 <row>
7122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7123 \begin_inset Text
7124
7125 \begin_layout Standard
7126
7127 \series bold
7128 Malfatti
7129 \end_layout
7130
7131 \end_inset
7132 </cell>
7133 <cell alignment="center" valignment="top" topline="true" usebox="none">
7134 \begin_inset Text
7135
7136 \begin_layout Standard
7137 Valeriano
7138 \end_layout
7139
7140 \end_inset
7141 </cell>
7142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7143 \begin_inset Text
7144
7145 \begin_layout Standard
7146 111
7147 \end_layout
7148
7149 \end_inset
7150 </cell>
7151 </row>
7152 <row>
7153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7154 \begin_inset Text
7155
7156 \begin_layout Standard
7157
7158 \series bold
7159 Meneguzzo
7160 \end_layout
7161
7162 \end_inset
7163 </cell>
7164 <cell alignment="center" valignment="top" topline="true" usebox="none">
7165 \begin_inset Text
7166
7167 \begin_layout Standard
7168 Roberto
7169 \end_layout
7170
7171 \end_inset
7172 </cell>
7173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7174 \begin_inset Text
7175
7176 \begin_layout Standard
7177 111
7178 \end_layout
7179
7180 \end_inset
7181 </cell>
7182 </row>
7183 <row>
7184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7185 \begin_inset Text
7186
7187 \begin_layout Standard
7188
7189 \series bold
7190 Mezzadra
7191 \end_layout
7192
7193 \end_inset
7194 </cell>
7195 <cell alignment="center" valignment="top" topline="true" usebox="none">
7196 \begin_inset Text
7197
7198 \begin_layout Standard
7199 Roberto
7200 \end_layout
7201
7202 \end_inset
7203 </cell>
7204 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7205 \begin_inset Text
7206
7207 \begin_layout Standard
7208 111
7209 \end_layout
7210
7211 \end_inset
7212 </cell>
7213 </row>
7214 <row>
7215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7216 \begin_inset Text
7217
7218 \begin_layout Standard
7219
7220 \series bold
7221 Pirpamer
7222 \end_layout
7223
7224 \end_inset
7225 </cell>
7226 <cell alignment="center" valignment="top" topline="true" usebox="none">
7227 \begin_inset Text
7228
7229 \begin_layout Standard
7230 Erich
7231 \end_layout
7232
7233 \end_inset
7234 </cell>
7235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7236 \begin_inset Text
7237
7238 \begin_layout Standard
7239 111
7240 \end_layout
7241
7242 \end_inset
7243 </cell>
7244 </row>
7245 <row>
7246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7247 \begin_inset Text
7248
7249 \begin_layout Standard
7250
7251 \series bold
7252 Pochiesa
7253 \end_layout
7254
7255 \end_inset
7256 </cell>
7257 <cell alignment="center" valignment="top" topline="true" usebox="none">
7258 \begin_inset Text
7259
7260 \begin_layout Standard
7261 Paolo
7262 \end_layout
7263
7264 \end_inset
7265 </cell>
7266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7267 \begin_inset Text
7268
7269 \begin_layout Standard
7270 111, 222
7271 \end_layout
7272
7273 \end_inset
7274 </cell>
7275 </row>
7276 <row>
7277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7278 \begin_inset Text
7279
7280 \begin_layout Standard
7281
7282 \series bold
7283 Radina
7284 \end_layout
7285
7286 \end_inset
7287 </cell>
7288 <cell alignment="center" valignment="top" topline="true" usebox="none">
7289 \begin_inset Text
7290
7291 \begin_layout Standard
7292 Claudio
7293 \end_layout
7294
7295 \end_inset
7296 </cell>
7297 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7298 \begin_inset Text
7299
7300 \begin_layout Standard
7301 111
7302 \end_layout
7303
7304 \end_inset
7305 </cell>
7306 </row>
7307 <row>
7308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7309 \begin_inset Text
7310
7311 \begin_layout Standard
7312
7313 \series bold
7314 Stuffer
7315 \end_layout
7316
7317 \end_inset
7318 </cell>
7319 <cell alignment="center" valignment="top" topline="true" usebox="none">
7320 \begin_inset Text
7321
7322 \begin_layout Standard
7323 Oskar
7324 \end_layout
7325
7326 \end_inset
7327 </cell>
7328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7329 \begin_inset Text
7330
7331 \begin_layout Standard
7332 111
7333 \end_layout
7334
7335 \end_inset
7336 </cell>
7337 </row>
7338 <row>
7339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7340 \begin_inset Text
7341
7342 \begin_layout Standard
7343
7344 \series bold
7345 Tacchelli
7346 \end_layout
7347
7348 \end_inset
7349 </cell>
7350 <cell alignment="center" valignment="top" topline="true" usebox="none">
7351 \begin_inset Text
7352
7353 \begin_layout Standard
7354 Ugo
7355 \end_layout
7356
7357 \end_inset
7358 </cell>
7359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7360 \begin_inset Text
7361
7362 \begin_layout Standard
7363 111
7364 \end_layout
7365
7366 \end_inset
7367 </cell>
7368 </row>
7369 <row>
7370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7371 \begin_inset Text
7372
7373 \begin_layout Standard
7374
7375 \series bold
7376 Tezzele
7377 \end_layout
7378
7379 \end_inset
7380 </cell>
7381 <cell alignment="center" valignment="top" topline="true" usebox="none">
7382 \begin_inset Text
7383
7384 \begin_layout Standard
7385 Margit
7386 \end_layout
7387
7388 \end_inset
7389 </cell>
7390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7391 \begin_inset Text
7392
7393 \begin_layout Standard
7394 111
7395 \end_layout
7396
7397 \end_inset
7398 </cell>
7399 </row>
7400 <row>
7401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7402 \begin_inset Text
7403
7404 \begin_layout Standard
7405
7406 \series bold
7407 Unterkalmsteiner
7408 \end_layout
7409
7410 \end_inset
7411 </cell>
7412 <cell alignment="center" valignment="top" topline="true" usebox="none">
7413 \begin_inset Text
7414
7415 \begin_layout Standard
7416 Frieda
7417 \end_layout
7418
7419 \end_inset
7420 </cell>
7421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7422 \begin_inset Text
7423
7424 \begin_layout Standard
7425 111
7426 \end_layout
7427
7428 \end_inset
7429 </cell>
7430 </row>
7431 <row>
7432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7433 \begin_inset Text
7434
7435 \begin_layout Standard
7436
7437 \series bold
7438 Vieider
7439 \end_layout
7440
7441 \end_inset
7442 </cell>
7443 <cell alignment="center" valignment="top" topline="true" usebox="none">
7444 \begin_inset Text
7445
7446 \begin_layout Standard
7447 Hilde
7448 \end_layout
7449
7450 \end_inset
7451 </cell>
7452 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7453 \begin_inset Text
7454
7455 \begin_layout Standard
7456 111
7457 \end_layout
7458
7459 \end_inset
7460 </cell>
7461 </row>
7462 <row>
7463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7464 \begin_inset Text
7465
7466 \begin_layout Standard
7467
7468 \series bold
7469 Vigna
7470 \end_layout
7471
7472 \end_inset
7473 </cell>
7474 <cell alignment="center" valignment="top" topline="true" usebox="none">
7475 \begin_inset Text
7476
7477 \begin_layout Standard
7478 Jürgen
7479 \end_layout
7480
7481 \end_inset
7482 </cell>
7483 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7484 \begin_inset Text
7485
7486 \begin_layout Standard
7487 111
7488 \end_layout
7489
7490 \end_inset
7491 </cell>
7492 </row>
7493 <row>
7494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7495 \begin_inset Text
7496
7497 \begin_layout Standard
7498
7499 \series bold
7500 Weber
7501 \end_layout
7502
7503 \end_inset
7504 </cell>
7505 <cell alignment="center" valignment="top" topline="true" usebox="none">
7506 \begin_inset Text
7507
7508 \begin_layout Standard
7509 Maurizio
7510 \end_layout
7511
7512 \end_inset
7513 </cell>
7514 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7515 \begin_inset Text
7516
7517 \begin_layout Standard
7518 111
7519 \end_layout
7520
7521 \end_inset
7522 </cell>
7523 </row>
7524 <row bottomline="true">
7525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7526 \begin_inset Text
7527
7528 \begin_layout Standard
7529
7530 \series bold
7531 Winkler
7532 \end_layout
7533
7534 \end_inset
7535 </cell>
7536 <cell alignment="center" valignment="top" topline="true" usebox="none">
7537 \begin_inset Text
7538
7539 \begin_layout Standard
7540 Franz
7541 \end_layout
7542
7543 \end_inset
7544 </cell>
7545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7546 \begin_inset Text
7547
7548 \begin_layout Standard
7549 111
7550 \end_layout
7551
7552 \end_inset
7553 </cell>
7554 </row>
7555 <row bottomline="true">
7556 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7557 \begin_inset Text
7558
7559 \begin_layout Standard
7560  
7561 \end_layout
7562
7563 \end_inset
7564 </cell>
7565 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7566 \begin_inset Text
7567
7568 \begin_layout Standard
7569
7570 \end_layout
7571
7572 \end_inset
7573 </cell>
7574 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7575 \begin_inset Text
7576
7577 \begin_layout Standard
7578
7579 \end_layout
7580
7581 \end_inset
7582 </cell>
7583 </row>
7584 <row>
7585 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7586 \begin_inset Text
7587
7588 \begin_layout Standard
7589
7590 \series bold
7591 Annovi
7592 \end_layout
7593
7594 \end_inset
7595 </cell>
7596 <cell alignment="center" valignment="top" topline="true" usebox="none">
7597 \begin_inset Text
7598
7599 \begin_layout Standard
7600 Silvia
7601 \end_layout
7602
7603 \end_inset
7604 </cell>
7605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7606 \begin_inset Text
7607
7608 \begin_layout Standard
7609 555
7610 \end_layout
7611
7612 \end_inset
7613 </cell>
7614 </row>
7615 <row>
7616 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7617 \begin_inset Text
7618
7619 \begin_layout Standard
7620
7621 \series bold
7622 Bertoli
7623 \end_layout
7624
7625 \end_inset
7626 </cell>
7627 <cell alignment="center" valignment="top" topline="true" usebox="none">
7628 \begin_inset Text
7629
7630 \begin_layout Standard
7631 Stefano
7632 \end_layout
7633
7634 \end_inset
7635 </cell>
7636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7637 \begin_inset Text
7638
7639 \begin_layout Standard
7640 555
7641 \end_layout
7642
7643 \end_inset
7644 </cell>
7645 </row>
7646 <row>
7647 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7648 \begin_inset Text
7649
7650 \begin_layout Standard
7651
7652 \series bold
7653 Bozzi
7654 \end_layout
7655
7656 \end_inset
7657 </cell>
7658 <cell alignment="center" valignment="top" topline="true" usebox="none">
7659 \begin_inset Text
7660
7661 \begin_layout Standard
7662 Walter
7663 \end_layout
7664
7665 \end_inset
7666 </cell>
7667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7668 \begin_inset Text
7669
7670 \begin_layout Standard
7671 555
7672 \end_layout
7673
7674 \end_inset
7675 </cell>
7676 </row>
7677 <row>
7678 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7679 \begin_inset Text
7680
7681 \begin_layout Standard
7682
7683 \series bold
7684 Cachia
7685 \end_layout
7686
7687 \end_inset
7688 </cell>
7689 <cell alignment="center" valignment="top" topline="true" usebox="none">
7690 \begin_inset Text
7691
7692 \begin_layout Standard
7693 Maria
7694 \end_layout
7695
7696 \end_inset
7697 </cell>
7698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7699 \begin_inset Text
7700
7701 \begin_layout Standard
7702 555
7703 \end_layout
7704
7705 \end_inset
7706 </cell>
7707 </row>
7708 <row>
7709 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7710 \begin_inset Text
7711
7712 \begin_layout Standard
7713
7714 \series bold
7715 Cachia
7716 \end_layout
7717
7718 \end_inset
7719 </cell>
7720 <cell alignment="center" valignment="top" topline="true" usebox="none">
7721 \begin_inset Text
7722
7723 \begin_layout Standard
7724 Maurizio
7725 \end_layout
7726
7727 \end_inset
7728 </cell>
7729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7730 \begin_inset Text
7731
7732 \begin_layout Standard
7733 555
7734 \end_layout
7735
7736 \end_inset
7737 </cell>
7738 </row>
7739 <row>
7740 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7741 \begin_inset Text
7742
7743 \begin_layout Standard
7744
7745 \series bold
7746 Cinquemani
7747 \end_layout
7748
7749 \end_inset
7750 </cell>
7751 <cell alignment="center" valignment="top" topline="true" usebox="none">
7752 \begin_inset Text
7753
7754 \begin_layout Standard
7755 Giusi
7756 \end_layout
7757
7758 \end_inset
7759 </cell>
7760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7761 \begin_inset Text
7762
7763 \begin_layout Standard
7764 555
7765 \end_layout
7766
7767 \end_inset
7768 </cell>
7769 </row>
7770 <row>
7771 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7772 \begin_inset Text
7773
7774 \begin_layout Standard
7775
7776 \series bold
7777 Colin
7778 \end_layout
7779
7780 \end_inset
7781 </cell>
7782 <cell alignment="center" valignment="top" topline="true" usebox="none">
7783 \begin_inset Text
7784
7785 \begin_layout Standard
7786 Bernard
7787 \end_layout
7788
7789 \end_inset
7790 </cell>
7791 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7792 \begin_inset Text
7793
7794 \begin_layout Standard
7795 555
7796 \end_layout
7797
7798 \end_inset
7799 </cell>
7800 </row>
7801 <row>
7802 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7803 \begin_inset Text
7804
7805 \begin_layout Standard
7806
7807 \series bold
7808 Concli
7809 \end_layout
7810
7811 \end_inset
7812 </cell>
7813 <cell alignment="center" valignment="top" topline="true" usebox="none">
7814 \begin_inset Text
7815
7816 \begin_layout Standard
7817 Gianfranco
7818 \end_layout
7819
7820 \end_inset
7821 </cell>
7822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7823 \begin_inset Text
7824
7825 \begin_layout Standard
7826 555
7827 \end_layout
7828
7829 \end_inset
7830 </cell>
7831 </row>
7832 <row>
7833 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7834 \begin_inset Text
7835
7836 \begin_layout Standard
7837
7838 \series bold
7839 Dal Bosco
7840 \end_layout
7841
7842 \end_inset
7843 </cell>
7844 <cell alignment="center" valignment="top" topline="true" usebox="none">
7845 \begin_inset Text
7846
7847 \begin_layout Standard
7848 Carolina
7849 \end_layout
7850
7851 \end_inset
7852 </cell>
7853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7854 \begin_inset Text
7855
7856 \begin_layout Standard
7857 555
7858 \end_layout
7859
7860 \end_inset
7861 </cell>
7862 </row>
7863 <row>
7864 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7865 \begin_inset Text
7866
7867 \begin_layout Standard
7868
7869 \series bold
7870 Dalpiaz
7871 \end_layout
7872
7873 \end_inset
7874 </cell>
7875 <cell alignment="center" valignment="top" topline="true" usebox="none">
7876 \begin_inset Text
7877
7878 \begin_layout Standard
7879 Annamaria
7880 \end_layout
7881
7882 \end_inset
7883 </cell>
7884 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7885 \begin_inset Text
7886
7887 \begin_layout Standard
7888 555
7889 \end_layout
7890
7891 \end_inset
7892 </cell>
7893 </row>
7894 <row>
7895 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7896 \begin_inset Text
7897
7898 \begin_layout Standard
7899
7900 \series bold
7901 Feliciello
7902 \end_layout
7903
7904 \end_inset
7905 </cell>
7906 <cell alignment="center" valignment="top" topline="true" usebox="none">
7907 \begin_inset Text
7908
7909 \begin_layout Standard
7910 Domenico
7911 \end_layout
7912
7913 \end_inset
7914 </cell>
7915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7916 \begin_inset Text
7917
7918 \begin_layout Standard
7919 555
7920 \end_layout
7921
7922 \end_inset
7923 </cell>
7924 </row>
7925 <row>
7926 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7927 \begin_inset Text
7928
7929 \begin_layout Standard
7930
7931 \series bold
7932 Focarelli
7933 \end_layout
7934
7935 \end_inset
7936 </cell>
7937 <cell alignment="center" valignment="top" topline="true" usebox="none">
7938 \begin_inset Text
7939
7940 \begin_layout Standard
7941 Paola
7942 \end_layout
7943
7944 \end_inset
7945 </cell>
7946 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7947 \begin_inset Text
7948
7949 \begin_layout Standard
7950 555
7951 \end_layout
7952
7953 \end_inset
7954 </cell>
7955 </row>
7956 <row>
7957 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7958 \begin_inset Text
7959
7960 \begin_layout Standard
7961
7962 \series bold
7963 Galletti
7964 \end_layout
7965
7966 \end_inset
7967 </cell>
7968 <cell alignment="center" valignment="top" topline="true" usebox="none">
7969 \begin_inset Text
7970
7971 \begin_layout Standard
7972 Oreste
7973 \end_layout
7974
7975 \end_inset
7976 </cell>
7977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7978 \begin_inset Text
7979
7980 \begin_layout Standard
7981 555
7982 \end_layout
7983
7984 \end_inset
7985 </cell>
7986 </row>
7987 <row>
7988 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7989 \begin_inset Text
7990
7991 \begin_layout Standard
7992
7993 \series bold
7994 Gasparini
7995 \end_layout
7996
7997 \end_inset
7998 </cell>
7999 <cell alignment="center" valignment="top" topline="true" usebox="none">
8000 \begin_inset Text
8001
8002 \begin_layout Standard
8003 Franca
8004 \end_layout
8005
8006 \end_inset
8007 </cell>
8008 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8009 \begin_inset Text
8010
8011 \begin_layout Standard
8012 555
8013 \end_layout
8014
8015 \end_inset
8016 </cell>
8017 </row>
8018 <row>
8019 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8020 \begin_inset Text
8021
8022 \begin_layout Standard
8023
8024 \series bold
8025 Rizzardi
8026 \end_layout
8027
8028 \end_inset
8029 </cell>
8030 <cell alignment="center" valignment="top" topline="true" usebox="none">
8031 \begin_inset Text
8032
8033 \begin_layout Standard
8034 Paola
8035 \end_layout
8036
8037 \end_inset
8038 </cell>
8039 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8040 \begin_inset Text
8041
8042 \begin_layout Standard
8043 555
8044 \end_layout
8045
8046 \end_inset
8047 </cell>
8048 </row>
8049 <row>
8050 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8051 \begin_inset Text
8052
8053 \begin_layout Standard
8054
8055 \series bold
8056 Lassini
8057 \end_layout
8058
8059 \end_inset
8060 </cell>
8061 <cell alignment="center" valignment="top" topline="true" usebox="none">
8062 \begin_inset Text
8063
8064 \begin_layout Standard
8065 Giancarlo
8066 \end_layout
8067
8068 \end_inset
8069 </cell>
8070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8071 \begin_inset Text
8072
8073 \begin_layout Standard
8074 555
8075 \end_layout
8076
8077 \end_inset
8078 </cell>
8079 </row>
8080 <row>
8081 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8082 \begin_inset Text
8083
8084 \begin_layout Standard
8085
8086 \series bold
8087 Malfatti
8088 \end_layout
8089
8090 \end_inset
8091 </cell>
8092 <cell alignment="center" valignment="top" topline="true" usebox="none">
8093 \begin_inset Text
8094
8095 \begin_layout Standard
8096 Luciano
8097 \end_layout
8098
8099 \end_inset
8100 </cell>
8101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8102 \begin_inset Text
8103
8104 \begin_layout Standard
8105 555
8106 \end_layout
8107
8108 \end_inset
8109 </cell>
8110 </row>
8111 <row>
8112 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8113 \begin_inset Text
8114
8115 \begin_layout Standard
8116
8117 \series bold
8118 Malfatti
8119 \end_layout
8120
8121 \end_inset
8122 </cell>
8123 <cell alignment="center" valignment="top" topline="true" usebox="none">
8124 \begin_inset Text
8125
8126 \begin_layout Standard
8127 Valeriano
8128 \end_layout
8129
8130 \end_inset
8131 </cell>
8132 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8133 \begin_inset Text
8134
8135 \begin_layout Standard
8136 555
8137 \end_layout
8138
8139 \end_inset
8140 </cell>
8141 </row>
8142 <row>
8143 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8144 \begin_inset Text
8145
8146 \begin_layout Standard
8147
8148 \series bold
8149 Meneguzzo
8150 \end_layout
8151
8152 \end_inset
8153 </cell>
8154 <cell alignment="center" valignment="top" topline="true" usebox="none">
8155 \begin_inset Text
8156
8157 \begin_layout Standard
8158 Roberto
8159 \end_layout
8160
8161 \end_inset
8162 </cell>
8163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8164 \begin_inset Text
8165
8166 \begin_layout Standard
8167 555
8168 \end_layout
8169
8170 \end_inset
8171 </cell>
8172 </row>
8173 <row bottomline="true">
8174 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8175 \begin_inset Text
8176
8177 \begin_layout Standard
8178
8179 \series bold
8180 Mezzadra
8181 \end_layout
8182
8183 \end_inset
8184 </cell>
8185 <cell alignment="center" valignment="top" topline="true" usebox="none">
8186 \begin_inset Text
8187
8188 \begin_layout Standard
8189 Roberto
8190 \end_layout
8191
8192 \end_inset
8193 </cell>
8194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8195 \begin_inset Text
8196
8197 \begin_layout Standard
8198 555
8199 \end_layout
8200
8201 \end_inset
8202 </cell>
8203 </row>
8204 <row bottomline="true" endlastfoot="true">
8205 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8206 \begin_inset Text
8207
8208 \begin_layout Standard
8209
8210 \end_layout
8211
8212 \end_inset
8213 </cell>
8214 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8215 \begin_inset Text
8216
8217 \begin_layout Standard
8218
8219 \end_layout
8220
8221 \end_inset
8222 </cell>
8223 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8224 \begin_inset Text
8225
8226 \begin_layout Standard
8227
8228 \end_layout
8229
8230 \end_inset
8231 </cell>
8232 </row>
8233 </lyxtabular>
8234
8235 \end_inset
8236
8237
8238 \end_layout
8239
8240 \begin_layout Section
8241 Particularidades de las Tablas Largas
8242 \end_layout
8243
8244 \begin_layout Subsection
8245 Cálculos
8246 \begin_inset LatexCommand index
8247 name "Tablas Largas ! Cálculos"
8248
8249 \end_inset
8250
8251
8252 \end_layout
8253
8254 \begin_layout Standard
8255 LaTeX calcula la altura de las páginas con tabla y sus saltos de página
8256  utilizando los denominados 
8257 \begin_inset Quotes eld
8258 \end_inset
8259
8260 trozos
8261 \begin_inset Quotes erd
8262 \end_inset
8263
8264 , que son partes de la tabla presentes en la memoria de LaTeX.
8265  El valor predeterminado está establecido a solo 20 filas.
8266  Si estás usando tablas largas con muchas páginas, la generación del documento
8267  puede hacerse muy lenta.
8268  No hay problema en aumentar el tamaño de los trozos hasta 100-1000 añadiendo
8269  el siguiente comando en el preámbulo del documento:
8270 \end_layout
8271
8272 \begin_layout Standard
8273
8274 \series bold
8275
8276 \backslash
8277 setcounter{LTchunksize}{100}
8278 \end_layout
8279
8280 \begin_layout Subsection
8281 Flotantes y Tablas Largas
8282 \begin_inset LatexCommand index
8283 name "Tablas Largas ! Flotantes"
8284
8285 \end_inset
8286
8287
8288 \end_layout
8289
8290 \begin_layout Standard
8291 Podría haber problemas si un flotante aparece en la misma página donde comienza
8292  una tabla larga.
8293  Para evitarlo, añade el comando 
8294 \series bold
8295
8296 \backslash
8297 clearpage
8298 \series default
8299  como ERT antes de la tabla.
8300 \end_layout
8301
8302 \begin_layout Subsection
8303 Saltos de Página Forzados
8304 \begin_inset LatexCommand index
8305 name "Tablas Largas ! Saltos de Página Forzados"
8306
8307 \end_inset
8308
8309
8310 \end_layout
8311
8312 \begin_layout Standard
8313 Por defecto, las tablas solo se cortan entre filas.
8314  Si tienes una celda con líneas múltiples y necesitas un salto de página
8315  dentro de la celda, inserta el comando de nueva línea 
8316 \begin_inset Quotes eld
8317 \end_inset
8318
8319
8320 \series bold
8321
8322 \backslash
8323
8324 \backslash
8325
8326 \series default
8327
8328 \begin_inset Quotes erd
8329 \end_inset
8330
8331  como ERT en el punto en que quieras cortar.
8332  Antes del comando 
8333 \begin_inset Quotes eld
8334 \end_inset
8335
8336
8337 \series bold
8338
8339 \backslash
8340
8341 \backslash
8342
8343 \series default
8344
8345 \begin_inset Quotes erd
8346 \end_inset
8347
8348  debes insertar en ERT tantos caracteres 
8349 \begin_inset Quotes eld
8350 \end_inset
8351
8352
8353 \series bold
8354 &
8355 \series default
8356
8357 \begin_inset Quotes erd
8358 \end_inset
8359
8360  como columnas siguientes de la tabla.
8361  
8362 \series bold
8363 &
8364 \series default
8365  es el caracter para separar celdas.
8366  Escribe en ERT después de cada 
8367 \series bold
8368 &
8369 \series default
8370  el contenido de la celda siguiente correspondiente y borra el contenido
8371  de esas celdas.
8372 \newline
8373 Detrás del comando 
8374 \series bold
8375
8376 \backslash
8377
8378 \backslash
8379
8380 \series default
8381 , inserta tantos 
8382 \series bold
8383 &
8384 \series default
8385  como columnas haya delante de la actual.
8386  En la tabla\InsetSpace ~
8387
8388 \begin_inset LatexCommand ref
8389 reference "tab:Saltos de Página Forzados"
8390
8391 \end_inset
8392
8393  la celda que debería cortarse está en la segunda columna seguida de otra
8394  columna.
8395  Por eso el siguiente comando se inserta en la celda como ERT detrás de
8396  
8397 \begin_inset Quotes eld
8398 \end_inset
8399
8400
8401 \emph on
8402 Castelchiodato,
8403 \emph default
8404
8405 \begin_inset Quotes erd
8406 \end_inset
8407
8408 :
8409 \end_layout
8410
8411 \begin_layout Standard
8412
8413 \series bold
8414 & 111
8415 \backslash
8416
8417 \backslash
8418
8419 \newline
8420 &
8421 \end_layout
8422
8423 \begin_layout Standard
8424 El 
8425 \begin_inset Quotes eld
8426 \end_inset
8427
8428 111
8429 \begin_inset Quotes erd
8430 \end_inset
8431
8432  en la tercera columna de la fila se ha borrado.
8433  Si la fila más baja de la tabla larga no tiene, por alguna razón, línea
8434  superior pero quisieras una línea horizontal donde se corta la celda, usa
8435  este comando alternativo:
8436 \end_layout
8437
8438 \begin_layout Standard
8439
8440 \series bold
8441 & 111
8442 \backslash
8443
8444 \backslash
8445
8446 \newline
8447
8448 \backslash
8449 hline &
8450 \end_layout
8451
8452 \begin_layout Standard
8453 Cuando la celda a cortar está en la última columna, el comando
8454 \end_layout
8455
8456 \begin_layout Standard
8457
8458 \series bold
8459
8460 \backslash
8461 setlength{
8462 \backslash
8463 parf\SpecialChar \textcompwordmark{}
8464 illskip}{0pt}
8465 \end_layout
8466
8467 \begin_layout Standard
8468 debe insertarse como ERT al principio de la celda.
8469  Esto garantiza que la parte de la celda que será mostrada en la nueva página
8470  aparecerá con toda su anchura.
8471 \end_layout
8472
8473 \begin_layout Standard
8474 \align center
8475 \begin_inset Tabular
8476 <lyxtabular version="3" rows="39" columns="3">
8477 <features islongtable="true">
8478 <column alignment="left" valignment="top" leftline="true" width="0cm">
8479 <column alignment="left" valignment="top" rightline="true" width="3cm">
8480 <column alignment="right" valignment="top" rightline="true" width="0pt">
8481 <row endfirsthead="true">
8482 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8483 \begin_inset Text
8484
8485 \begin_layout Standard
8486 \begin_inset Caption
8487
8488 \begin_layout Standard
8489 Tabla con salto de página forzado en celda
8490 \begin_inset LatexCommand label
8491 name "tab:Saltos de Página Forzados"
8492
8493 \end_inset
8494
8495
8496 \begin_inset OptArg
8497 status collapsed
8498
8499 \begin_layout Standard
8500 Tabla con salto de página forzado en celda
8501 \end_layout
8502
8503 \end_inset
8504
8505
8506 \end_layout
8507
8508 \end_inset
8509
8510
8511 \begin_inset ERT
8512 status collapsed
8513
8514 \begin_layout Standard
8515
8516
8517 \backslash
8518
8519 \backslash
8520 %
8521 \end_layout
8522
8523 \end_inset
8524
8525
8526 \end_layout
8527
8528 \end_inset
8529 </cell>
8530 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8531 \begin_inset Text
8532
8533 \begin_layout Standard
8534
8535 \end_layout
8536
8537 \end_inset
8538 </cell>
8539 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8540 \begin_inset Text
8541
8542 \begin_layout Standard
8543
8544 \end_layout
8545
8546 \end_inset
8547 </cell>
8548 </row>
8549 <row topline="true" bottomline="true" endfirsthead="true">
8550 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8551 \begin_inset Text
8552
8553 \begin_layout Standard
8554
8555 \series bold
8556 Ejemplo de lista telefónica (ignore los nombres)
8557 \end_layout
8558
8559 \end_inset
8560 </cell>
8561 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8562 \begin_inset Text
8563
8564 \begin_layout Standard
8565
8566 \end_layout
8567
8568 \end_inset
8569 </cell>
8570 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8571 \begin_inset Text
8572
8573 \begin_layout Standard
8574
8575 \end_layout
8576
8577 \end_inset
8578 </cell>
8579 </row>
8580 <row topline="true" bottomline="true" endfirsthead="true">
8581 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8582 \begin_inset Text
8583
8584 \begin_layout Standard
8585
8586 \series bold
8587 NOMBRE
8588 \end_layout
8589
8590 \end_inset
8591 </cell>
8592 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8593 \begin_inset Text
8594
8595 \begin_layout Standard
8596
8597 \end_layout
8598
8599 \end_inset
8600 </cell>
8601 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8602 \begin_inset Text
8603
8604 \begin_layout Standard
8605
8606 \series bold
8607 TEL.
8608 \end_layout
8609
8610 \end_inset
8611 </cell>
8612 </row>
8613 <row bottomline="true" endhead="true">
8614 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8615 \begin_inset Text
8616
8617 \begin_layout Standard
8618 \begin_inset ERT
8619 status collapsed
8620
8621 \begin_layout Standard
8622
8623
8624 \backslash
8625 caption*{Continúa tabla con salto de página forzado en celda}
8626 \backslash
8627
8628 \backslash
8629 %
8630 \end_layout
8631
8632 \end_inset
8633
8634
8635 \end_layout
8636
8637 \end_inset
8638 </cell>
8639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8640 \begin_inset Text
8641
8642 \begin_layout Standard
8643
8644 \end_layout
8645
8646 \end_inset
8647 </cell>
8648 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8649 \begin_inset Text
8650
8651 \begin_layout Standard
8652
8653 \end_layout
8654
8655 \end_inset
8656 </cell>
8657 </row>
8658 <row topline="true" bottomline="true" endhead="true">
8659 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8660 \begin_inset Text
8661
8662 \begin_layout Standard
8663  
8664 \series bold
8665 Ejemplo de lista telefónica
8666 \end_layout
8667
8668 \end_inset
8669 </cell>
8670 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8671 \begin_inset Text
8672
8673 \begin_layout Standard
8674
8675 \end_layout
8676
8677 \end_inset
8678 </cell>
8679 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8680 \begin_inset Text
8681
8682 \begin_layout Standard
8683
8684 \end_layout
8685
8686 \end_inset
8687 </cell>
8688 </row>
8689 <row topline="true" bottomline="true" endhead="true">
8690 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8691 \begin_inset Text
8692
8693 \begin_layout Standard
8694
8695 \series bold
8696 NOMBRE
8697 \end_layout
8698
8699 \end_inset
8700 </cell>
8701 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8702 \begin_inset Text
8703
8704 \begin_layout Standard
8705
8706 \end_layout
8707
8708 \end_inset
8709 </cell>
8710 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8711 \begin_inset Text
8712
8713 \begin_layout Standard
8714
8715 \series bold
8716 TEL.
8717 \end_layout
8718
8719 \end_inset
8720 </cell>
8721 </row>
8722 <row topline="true" bottomline="true" endfoot="true">
8723 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8724 \begin_inset Text
8725
8726 \begin_layout Standard
8727 continúa en página siguiente
8728 \end_layout
8729
8730 \end_inset
8731 </cell>
8732 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8733 \begin_inset Text
8734
8735 \begin_layout Standard
8736
8737 \end_layout
8738
8739 \end_inset
8740 </cell>
8741 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8742 \begin_inset Text
8743
8744 \begin_layout Standard
8745
8746 \end_layout
8747
8748 \end_inset
8749 </cell>
8750 </row>
8751 <row>
8752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8753 \begin_inset Text
8754
8755 \begin_layout Standard
8756
8757 \series bold
8758 Annovi
8759 \end_layout
8760
8761 \end_inset
8762 </cell>
8763 <cell alignment="center" valignment="top" topline="true" usebox="none">
8764 \begin_inset Text
8765
8766 \begin_layout Standard
8767 Silvia
8768 \end_layout
8769
8770 \end_inset
8771 </cell>
8772 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8773 \begin_inset Text
8774
8775 \begin_layout Standard
8776 111
8777 \end_layout
8778
8779 \end_inset
8780 </cell>
8781 </row>
8782 <row>
8783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8784 \begin_inset Text
8785
8786 \begin_layout Standard
8787
8788 \series bold
8789 Bertoli
8790 \end_layout
8791
8792 \end_inset
8793 </cell>
8794 <cell alignment="center" valignment="top" topline="true" usebox="none">
8795 \begin_inset Text
8796
8797 \begin_layout Standard
8798 Stefano
8799 \end_layout
8800
8801 \end_inset
8802 </cell>
8803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8804 \begin_inset Text
8805
8806 \begin_layout Standard
8807 111
8808 \end_layout
8809
8810 \end_inset
8811 </cell>
8812 </row>
8813 <row>
8814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8815 \begin_inset Text
8816
8817 \begin_layout Standard
8818
8819 \series bold
8820 Bozzi
8821 \end_layout
8822
8823 \end_inset
8824 </cell>
8825 <cell alignment="center" valignment="top" topline="true" usebox="none">
8826 \begin_inset Text
8827
8828 \begin_layout Standard
8829 Walter
8830 \end_layout
8831
8832 \end_inset
8833 </cell>
8834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8835 \begin_inset Text
8836
8837 \begin_layout Standard
8838 111
8839 \end_layout
8840
8841 \end_inset
8842 </cell>
8843 </row>
8844 <row>
8845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8846 \begin_inset Text
8847
8848 \begin_layout Standard
8849
8850 \series bold
8851 Cachia
8852 \end_layout
8853
8854 \end_inset
8855 </cell>
8856 <cell alignment="center" valignment="top" topline="true" usebox="none">
8857 \begin_inset Text
8858
8859 \begin_layout Standard
8860 Maria
8861 \end_layout
8862
8863 \end_inset
8864 </cell>
8865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8866 \begin_inset Text
8867
8868 \begin_layout Standard
8869 111
8870 \end_layout
8871
8872 \end_inset
8873 </cell>
8874 </row>
8875 <row>
8876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8877 \begin_inset Text
8878
8879 \begin_layout Standard
8880
8881 \series bold
8882 Cachia
8883 \end_layout
8884
8885 \end_inset
8886 </cell>
8887 <cell alignment="center" valignment="top" topline="true" usebox="none">
8888 \begin_inset Text
8889
8890 \begin_layout Standard
8891 Maurizio
8892 \end_layout
8893
8894 \end_inset
8895 </cell>
8896 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8897 \begin_inset Text
8898
8899 \begin_layout Standard
8900 111
8901 \end_layout
8902
8903 \end_inset
8904 </cell>
8905 </row>
8906 <row>
8907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8908 \begin_inset Text
8909
8910 \begin_layout Standard
8911
8912 \series bold
8913 Cinquemani
8914 \end_layout
8915
8916 \end_inset
8917 </cell>
8918 <cell alignment="center" valignment="top" topline="true" usebox="none">
8919 \begin_inset Text
8920
8921 \begin_layout Standard
8922 Giusi
8923 \end_layout
8924
8925 \end_inset
8926 </cell>
8927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8928 \begin_inset Text
8929
8930 \begin_layout Standard
8931 111
8932 \end_layout
8933
8934 \end_inset
8935 </cell>
8936 </row>
8937 <row>
8938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8939 \begin_inset Text
8940
8941 \begin_layout Standard
8942
8943 \series bold
8944 Colin
8945 \end_layout
8946
8947 \end_inset
8948 </cell>
8949 <cell alignment="center" valignment="top" topline="true" usebox="none">
8950 \begin_inset Text
8951
8952 \begin_layout Standard
8953 Bernard
8954 \end_layout
8955
8956 \end_inset
8957 </cell>
8958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8959 \begin_inset Text
8960
8961 \begin_layout Standard
8962 111
8963 \end_layout
8964
8965 \end_inset
8966 </cell>
8967 </row>
8968 <row>
8969 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8970 \begin_inset Text
8971
8972 \begin_layout Standard
8973
8974 \series bold
8975 Concli
8976 \end_layout
8977
8978 \end_inset
8979 </cell>
8980 <cell alignment="center" valignment="top" topline="true" usebox="none">
8981 \begin_inset Text
8982
8983 \begin_layout Standard
8984 Gianfranco
8985 \end_layout
8986
8987 \end_inset
8988 </cell>
8989 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8990 \begin_inset Text
8991
8992 \begin_layout Standard
8993 111
8994 \end_layout
8995
8996 \end_inset
8997 </cell>
8998 </row>
8999 <row>
9000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9001 \begin_inset Text
9002
9003 \begin_layout Standard
9004
9005 \series bold
9006 Dal Bosco
9007 \end_layout
9008
9009 \end_inset
9010 </cell>
9011 <cell alignment="center" valignment="top" topline="true" usebox="none">
9012 \begin_inset Text
9013
9014 \begin_layout Standard
9015 Carolina
9016 \end_layout
9017
9018 \end_inset
9019 </cell>
9020 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9021 \begin_inset Text
9022
9023 \begin_layout Standard
9024 111
9025 \end_layout
9026
9027 \end_inset
9028 </cell>
9029 </row>
9030 <row>
9031 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9032 \begin_inset Text
9033
9034 \begin_layout Standard
9035
9036 \series bold
9037 Dalpiaz
9038 \end_layout
9039
9040 \end_inset
9041 </cell>
9042 <cell alignment="center" valignment="top" topline="true" usebox="none">
9043 \begin_inset Text
9044
9045 \begin_layout Standard
9046 Annamaria
9047 \end_layout
9048
9049 \end_inset
9050 </cell>
9051 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9052 \begin_inset Text
9053
9054 \begin_layout Standard
9055 111
9056 \end_layout
9057
9058 \end_inset
9059 </cell>
9060 </row>
9061 <row>
9062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9063 \begin_inset Text
9064
9065 \begin_layout Standard
9066
9067 \series bold
9068 Feliciello
9069 \end_layout
9070
9071 \end_inset
9072 </cell>
9073 <cell alignment="center" valignment="top" topline="true" usebox="none">
9074 \begin_inset Text
9075
9076 \begin_layout Standard
9077 Domenico
9078 \end_layout
9079
9080 \end_inset
9081 </cell>
9082 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9083 \begin_inset Text
9084
9085 \begin_layout Standard
9086 111
9087 \end_layout
9088
9089 \end_inset
9090 </cell>
9091 </row>
9092 <row>
9093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9094 \begin_inset Text
9095
9096 \begin_layout Standard
9097
9098 \series bold
9099 Focarelli
9100 \end_layout
9101
9102 \end_inset
9103 </cell>
9104 <cell alignment="center" valignment="top" topline="true" usebox="none">
9105 \begin_inset Text
9106
9107 \begin_layout Standard
9108 Paola
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 Standard
9117 111
9118 \end_layout
9119
9120 \end_inset
9121 </cell>
9122 </row>
9123 <row>
9124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9125 \begin_inset Text
9126
9127 \begin_layout Standard
9128
9129 \series bold
9130 Galletti
9131 \end_layout
9132
9133 \end_inset
9134 </cell>
9135 <cell alignment="center" valignment="top" topline="true" usebox="none">
9136 \begin_inset Text
9137
9138 \begin_layout Standard
9139 Oreste
9140 \end_layout
9141
9142 \end_inset
9143 </cell>
9144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9145 \begin_inset Text
9146
9147 \begin_layout Standard
9148 111
9149 \end_layout
9150
9151 \end_inset
9152 </cell>
9153 </row>
9154 <row>
9155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9156 \begin_inset Text
9157
9158 \begin_layout Standard
9159
9160 \series bold
9161 Gasparini
9162 \end_layout
9163
9164 \end_inset
9165 </cell>
9166 <cell alignment="center" valignment="top" topline="true" usebox="none">
9167 \begin_inset Text
9168
9169 \begin_layout Standard
9170 Franca
9171 \end_layout
9172
9173 \end_inset
9174 </cell>
9175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9176 \begin_inset Text
9177
9178 \begin_layout Standard
9179 111
9180 \end_layout
9181
9182 \end_inset
9183 </cell>
9184 </row>
9185 <row>
9186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9187 \begin_inset Text
9188
9189 \begin_layout Standard
9190
9191 \series bold
9192 Lassini
9193 \end_layout
9194
9195 \end_inset
9196 </cell>
9197 <cell alignment="center" valignment="top" topline="true" usebox="none">
9198 \begin_inset Text
9199
9200 \begin_layout Standard
9201 Giancarlo
9202 \end_layout
9203
9204 \end_inset
9205 </cell>
9206 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9207 \begin_inset Text
9208
9209 \begin_layout Standard
9210 111
9211 \end_layout
9212
9213 \end_inset
9214 </cell>
9215 </row>
9216 <row>
9217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9218 \begin_inset Text
9219
9220 \begin_layout Standard
9221
9222 \series bold
9223 Malfatti
9224 \end_layout
9225
9226 \end_inset
9227 </cell>
9228 <cell alignment="center" valignment="top" topline="true" usebox="none">
9229 \begin_inset Text
9230
9231 \begin_layout Standard
9232 Luciano
9233 \end_layout
9234
9235 \end_inset
9236 </cell>
9237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9238 \begin_inset Text
9239
9240 \begin_layout Standard
9241 111
9242 \end_layout
9243
9244 \end_inset
9245 </cell>
9246 </row>
9247 <row>
9248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9249 \begin_inset Text
9250
9251 \begin_layout Standard
9252
9253 \series bold
9254 Malfatti
9255 \end_layout
9256
9257 \end_inset
9258 </cell>
9259 <cell alignment="center" valignment="top" topline="true" usebox="none">
9260 \begin_inset Text
9261
9262 \begin_layout Standard
9263 Valeriano
9264 \end_layout
9265
9266 \end_inset
9267 </cell>
9268 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9269 \begin_inset Text
9270
9271 \begin_layout Standard
9272 111
9273 \end_layout
9274
9275 \end_inset
9276 </cell>
9277 </row>
9278 <row>
9279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9280 \begin_inset Text
9281
9282 \begin_layout Standard
9283
9284 \series bold
9285 Meneguzzo
9286 \end_layout
9287
9288 \end_inset
9289 </cell>
9290 <cell alignment="center" valignment="top" topline="true" usebox="none">
9291 \begin_inset Text
9292
9293 \begin_layout Standard
9294 Roberto
9295 \end_layout
9296
9297 \end_inset
9298 </cell>
9299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9300 \begin_inset Text
9301
9302 \begin_layout Standard
9303 111
9304 \end_layout
9305
9306 \end_inset
9307 </cell>
9308 </row>
9309 <row>
9310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9311 \begin_inset Text
9312
9313 \begin_layout Standard
9314
9315 \series bold
9316 Mezzadra
9317 \end_layout
9318
9319 \end_inset
9320 </cell>
9321 <cell alignment="center" valignment="top" topline="true" usebox="none">
9322 \begin_inset Text
9323
9324 \begin_layout Standard
9325 Roberto
9326 \end_layout
9327
9328 \end_inset
9329 </cell>
9330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9331 \begin_inset Text
9332
9333 \begin_layout Standard
9334 111
9335 \end_layout
9336
9337 \end_inset
9338 </cell>
9339 </row>
9340 <row>
9341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9342 \begin_inset Text
9343
9344 \begin_layout Standard
9345
9346 \series bold
9347 Pirpamer
9348 \end_layout
9349
9350 \end_inset
9351 </cell>
9352 <cell alignment="center" valignment="top" topline="true" usebox="none">
9353 \begin_inset Text
9354
9355 \begin_layout Standard
9356 Erich
9357 \end_layout
9358
9359 \end_inset
9360 </cell>
9361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9362 \begin_inset Text
9363
9364 \begin_layout Standard
9365 111
9366 \end_layout
9367
9368 \end_inset
9369 </cell>
9370 </row>
9371 <row>
9372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9373 \begin_inset Text
9374
9375 \begin_layout Standard
9376
9377 \series bold
9378 Pochiesa
9379 \end_layout
9380
9381 \end_inset
9382 </cell>
9383 <cell alignment="center" valignment="top" topline="true" usebox="none">
9384 \begin_inset Text
9385
9386 \begin_layout Standard
9387 Paolo
9388 \end_layout
9389
9390 \end_inset
9391 </cell>
9392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9393 \begin_inset Text
9394
9395 \begin_layout Standard
9396 111, 222
9397 \end_layout
9398
9399 \end_inset
9400 </cell>
9401 </row>
9402 <row>
9403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9404 \begin_inset Text
9405
9406 \begin_layout Standard
9407
9408 \series bold
9409 Radina
9410 \end_layout
9411
9412 \end_inset
9413 </cell>
9414 <cell alignment="center" valignment="top" topline="true" usebox="none">
9415 \begin_inset Text
9416
9417 \begin_layout Standard
9418 Claudio
9419 \end_layout
9420
9421 \end_inset
9422 </cell>
9423 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9424 \begin_inset Text
9425
9426 \begin_layout Standard
9427 111
9428 \end_layout
9429
9430 \end_inset
9431 </cell>
9432 </row>
9433 <row>
9434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9435 \begin_inset Text
9436
9437 \begin_layout Standard
9438
9439 \series bold
9440 Rizzardi
9441 \end_layout
9442
9443 \end_inset
9444 </cell>
9445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9446 \begin_inset Text
9447
9448 \begin_layout Standard
9449 Paolo, 11.
9450  Fürst von Montecompatri, 11.
9451  Fürst von Sulmona und Vivaro, 10.
9452  Fürst von Rossano, 5.
9453  Herzog von Canemorte, 11.
9454  Herzog von Palombara, 5.
9455  Herzog von Castelchiodato,
9456 \begin_inset ERT
9457 status collapsed
9458
9459 \begin_layout Standard
9460
9461 & 111
9462 \backslash
9463
9464 \backslash
9465
9466 \end_layout
9467
9468 \begin_layout Standard
9469
9470 &
9471 \end_layout
9472
9473 \end_inset
9474
9475  11.
9476  Herzog von Poggionativo, 11.
9477  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9478  Graf von Valinfreda, 11.
9479  Baron von Cropalati, 11.
9480  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9481 \end_layout
9482
9483 \end_inset
9484 </cell>
9485 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9486 \begin_inset Text
9487
9488 \begin_layout Standard
9489
9490 \end_layout
9491
9492 \end_inset
9493 </cell>
9494 </row>
9495 <row>
9496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9497 \begin_inset Text
9498
9499 \begin_layout Standard
9500
9501 \series bold
9502 Stuffer
9503 \end_layout
9504
9505 \end_inset
9506 </cell>
9507 <cell alignment="center" valignment="top" topline="true" usebox="none">
9508 \begin_inset Text
9509
9510 \begin_layout Standard
9511 Oskar
9512 \end_layout
9513
9514 \end_inset
9515 </cell>
9516 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9517 \begin_inset Text
9518
9519 \begin_layout Standard
9520 111
9521 \end_layout
9522
9523 \end_inset
9524 </cell>
9525 </row>
9526 <row>
9527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9528 \begin_inset Text
9529
9530 \begin_layout Standard
9531
9532 \series bold
9533 Tacchelli
9534 \end_layout
9535
9536 \end_inset
9537 </cell>
9538 <cell alignment="center" valignment="top" topline="true" usebox="none">
9539 \begin_inset Text
9540
9541 \begin_layout Standard
9542 Ugo
9543 \end_layout
9544
9545 \end_inset
9546 </cell>
9547 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9548 \begin_inset Text
9549
9550 \begin_layout Standard
9551 111
9552 \end_layout
9553
9554 \end_inset
9555 </cell>
9556 </row>
9557 <row>
9558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9559 \begin_inset Text
9560
9561 \begin_layout Standard
9562
9563 \series bold
9564 Tezzele
9565 \end_layout
9566
9567 \end_inset
9568 </cell>
9569 <cell alignment="center" valignment="top" topline="true" usebox="none">
9570 \begin_inset Text
9571
9572 \begin_layout Standard
9573 Margit
9574 \end_layout
9575
9576 \end_inset
9577 </cell>
9578 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9579 \begin_inset Text
9580
9581 \begin_layout Standard
9582 111
9583 \end_layout
9584
9585 \end_inset
9586 </cell>
9587 </row>
9588 <row>
9589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9590 \begin_inset Text
9591
9592 \begin_layout Standard
9593
9594 \series bold
9595 Unterkalmsteiner
9596 \end_layout
9597
9598 \end_inset
9599 </cell>
9600 <cell alignment="center" valignment="top" topline="true" usebox="none">
9601 \begin_inset Text
9602
9603 \begin_layout Standard
9604 Frieda
9605 \end_layout
9606
9607 \end_inset
9608 </cell>
9609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9610 \begin_inset Text
9611
9612 \begin_layout Standard
9613 111
9614 \end_layout
9615
9616 \end_inset
9617 </cell>
9618 </row>
9619 <row>
9620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9621 \begin_inset Text
9622
9623 \begin_layout Standard
9624
9625 \series bold
9626 Vieider
9627 \end_layout
9628
9629 \end_inset
9630 </cell>
9631 <cell alignment="center" valignment="top" topline="true" usebox="none">
9632 \begin_inset Text
9633
9634 \begin_layout Standard
9635 Hilde
9636 \end_layout
9637
9638 \end_inset
9639 </cell>
9640 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9641 \begin_inset Text
9642
9643 \begin_layout Standard
9644 111
9645 \end_layout
9646
9647 \end_inset
9648 </cell>
9649 </row>
9650 <row>
9651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9652 \begin_inset Text
9653
9654 \begin_layout Standard
9655
9656 \series bold
9657 Vigna
9658 \end_layout
9659
9660 \end_inset
9661 </cell>
9662 <cell alignment="center" valignment="top" topline="true" usebox="none">
9663 \begin_inset Text
9664
9665 \begin_layout Standard
9666 Jürgen
9667 \end_layout
9668
9669 \end_inset
9670 </cell>
9671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9672 \begin_inset Text
9673
9674 \begin_layout Standard
9675 111
9676 \end_layout
9677
9678 \end_inset
9679 </cell>
9680 </row>
9681 <row>
9682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9683 \begin_inset Text
9684
9685 \begin_layout Standard
9686
9687 \series bold
9688 Weber
9689 \end_layout
9690
9691 \end_inset
9692 </cell>
9693 <cell alignment="center" valignment="top" topline="true" usebox="none">
9694 \begin_inset Text
9695
9696 \begin_layout Standard
9697 Maurizio
9698 \end_layout
9699
9700 \end_inset
9701 </cell>
9702 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9703 \begin_inset Text
9704
9705 \begin_layout Standard
9706 111
9707 \end_layout
9708
9709 \end_inset
9710 </cell>
9711 </row>
9712 <row bottomline="true">
9713 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9714 \begin_inset Text
9715
9716 \begin_layout Standard
9717
9718 \series bold
9719 Winkler
9720 \end_layout
9721
9722 \end_inset
9723 </cell>
9724 <cell alignment="center" valignment="top" topline="true" usebox="none">
9725 \begin_inset Text
9726
9727 \begin_layout Standard
9728 Franz
9729 \end_layout
9730
9731 \end_inset
9732 </cell>
9733 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9734 \begin_inset Text
9735
9736 \begin_layout Standard
9737 111
9738 \end_layout
9739
9740 \end_inset
9741 </cell>
9742 </row>
9743 <row endlastfoot="true">
9744 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9745 \begin_inset Text
9746
9747 \begin_layout Standard
9748
9749 \end_layout
9750
9751 \end_inset
9752 </cell>
9753 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9754 \begin_inset Text
9755
9756 \begin_layout Standard
9757
9758 \end_layout
9759
9760 \end_inset
9761 </cell>
9762 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9763 \begin_inset Text
9764
9765 \begin_layout Standard
9766
9767 \end_layout
9768
9769 \end_inset
9770 </cell>
9771 </row>
9772 </lyxtabular>
9773
9774 \end_inset
9775
9776
9777 \end_layout
9778
9779 \begin_layout Section
9780 Líneas Múltiples en Columnas y Filas
9781 \end_layout
9782
9783 \begin_layout Subsection
9784 Líneas Múltiples en Celdas
9785 \begin_inset LatexCommand label
9786 name "sub:Líneas-Múltiples-en"
9787
9788 \end_inset
9789
9790
9791 \begin_inset LatexCommand index
9792 name "Líneas Múltiples en Celdas"
9793
9794 \end_inset
9795
9796
9797 \begin_inset LatexCommand index
9798 name "Tablas ! Saltos de Línea"
9799
9800 \end_inset
9801
9802
9803 \end_layout
9804
9805 \begin_layout Standard
9806 \align center
9807 \begin_inset Float table
9808 placement H
9809 wide false
9810 sideways false
9811 status open
9812
9813 \begin_layout Standard
9814 \begin_inset Caption
9815
9816 \begin_layout Standard
9817 \begin_inset LatexCommand label
9818 name "tab:Tabla-con-múltiples"
9819
9820 \end_inset
9821
9822 Tabla con líneas múltiples en celda
9823 \end_layout
9824
9825 \end_inset
9826
9827
9828 \end_layout
9829
9830 \begin_layout Standard
9831 \align center
9832 \begin_inset Tabular
9833 <lyxtabular version="3" rows="3" columns="3">
9834 <features>
9835 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9836 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9837 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9838 <row topline="true">
9839 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9840 \begin_inset Text
9841
9842 \begin_layout Standard
9843 líneas
9844 \begin_inset ERT
9845 status collapsed
9846
9847 \begin_layout Standard
9848
9849
9850 \backslash
9851 linebreak 
9852 \end_layout
9853
9854 \end_inset
9855
9856 múltiples
9857 \end_layout
9858
9859 \end_inset
9860 </cell>
9861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9862 \begin_inset Text
9863
9864 \begin_layout Standard
9865 b
9866 \end_layout
9867
9868 \end_inset
9869 </cell>
9870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9871 \begin_inset Text
9872
9873 \begin_layout Standard
9874 c
9875 \end_layout
9876
9877 \end_inset
9878 </cell>
9879 </row>
9880 <row topline="true">
9881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9882 \begin_inset Text
9883
9884 \begin_layout Standard
9885 d
9886 \end_layout
9887
9888 \end_inset
9889 </cell>
9890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9891 \begin_inset Text
9892
9893 \begin_layout Standard
9894 e
9895 \end_layout
9896
9897 \end_inset
9898 </cell>
9899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9900 \begin_inset Text
9901
9902 \begin_layout Standard
9903 f
9904 \end_layout
9905
9906 \end_inset
9907 </cell>
9908 </row>
9909 <row topline="true" bottomline="true">
9910 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9911 \begin_inset Text
9912
9913 \begin_layout Standard
9914 g
9915 \end_layout
9916
9917 \end_inset
9918 </cell>
9919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9920 \begin_inset Text
9921
9922 \begin_layout Standard
9923 h
9924 \end_layout
9925
9926 \end_inset
9927 </cell>
9928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9929 \begin_inset Text
9930
9931 \begin_layout Standard
9932 i
9933 \end_layout
9934
9935 \end_inset
9936 </cell>
9937 </row>
9938 </lyxtabular>
9939
9940 \end_inset
9941
9942
9943 \end_layout
9944
9945 \end_inset
9946
9947
9948 \end_layout
9949
9950 \begin_layout Standard
9951 Al ajustar anchura fija en una columna se habilita la entrada de texto como
9952  párrafos con varias líneas y guionado.
9953 \end_layout
9954
9955 \begin_layout Standard
9956 Para generar la tabla\InsetSpace ~
9957
9958 \begin_inset LatexCommand ref
9959 reference "tab:Tabla-con-múltiples"
9960
9961 \end_inset
9962
9963 , crea una tabla 3×3, marca la primera celda y clic-derecha sobre ella.
9964  En el diálogo que surge establece una anchura de 2.5\InsetSpace \thinspace{}
9965 cm y escoge centro en
9966  alineación vertical y horizontal.
9967  Como nuestro texto es menor de 2.5\InsetSpace \thinspace{}
9968 cm, sólo aparece una línea.
9969  Para poner dos añadimos un salto de línea con el comando en ERT
9970 \end_layout
9971
9972 \begin_layout Standard
9973
9974 \series bold
9975
9976 \backslash
9977 linebreak
9978 \end_layout
9979
9980 \begin_layout Standard
9981 Si el texto es más ancho que la celda será automáticamente dividido en líneas.
9982 \end_layout
9983
9984 \begin_layout Standard
9985 Para centrar verticalmente el texto en las otras dos celdas de la primera
9986  fila, haz clic-derecha en la segunda celda, ajusta una anchura de 0.5\InsetSpace \thinspace{}
9987 cm
9988  y marca alineaciones centrales.
9989  Haz lo mismo con la tercera celda de la fila.
9990 \end_layout
9991
9992 \begin_layout Standard
9993 Si hay una palabra larga en una celda con anchura fija, LaTeX no puede cortarla
9994  con guión si es la primera entrada.
9995  Por eso hay que insertar algo para que dicha palabra no sea la primera
9996  entrada: añade el comando
9997 \end_layout
9998
9999 \begin_layout Standard
10000
10001 \series bold
10002
10003 \backslash
10004 hspace{0pt}
10005 \end_layout
10006
10007 \begin_layout Standard
10008 en ERT antes de la palabra.
10009  Como el espacio es 0 la salida no cambia.
10010  La tabla\InsetSpace ~
10011
10012 \begin_inset LatexCommand ref
10013 reference "tab:Tabla-con-y"
10014
10015 \end_inset
10016
10017  muestra el efecto.
10018 \end_layout
10019
10020 \begin_layout Standard
10021 \begin_inset Float table
10022 placement b
10023 wide false
10024 sideways false
10025 status open
10026
10027 \begin_layout Standard
10028 \begin_inset Caption
10029
10030 \begin_layout Standard
10031 \begin_inset LatexCommand label
10032 name "tab:Tabla-con-y"
10033
10034 \end_inset
10035
10036 Tablas con y sin guión
10037 \end_layout
10038
10039 \end_inset
10040
10041
10042 \end_layout
10043
10044 \begin_layout Standard
10045
10046 \hfill
10047
10048 \begin_inset Tabular
10049 <lyxtabular version="3" rows="3" columns="3">
10050 <features>
10051 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10052 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10053 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10054 <row topline="true">
10055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10056 \begin_inset Text
10057
10058 \begin_layout Standard
10059 celdaconpalabramuylarga
10060 \end_layout
10061
10062 \end_inset
10063 </cell>
10064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10065 \begin_inset Text
10066
10067 \begin_layout Standard
10068 b
10069 \end_layout
10070
10071 \end_inset
10072 </cell>
10073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10074 \begin_inset Text
10075
10076 \begin_layout Standard
10077 c
10078 \end_layout
10079
10080 \end_inset
10081 </cell>
10082 </row>
10083 <row topline="true">
10084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10085 \begin_inset Text
10086
10087 \begin_layout Standard
10088 d
10089 \end_layout
10090
10091 \end_inset
10092 </cell>
10093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10094 \begin_inset Text
10095
10096 \begin_layout Standard
10097 e
10098 \end_layout
10099
10100 \end_inset
10101 </cell>
10102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10103 \begin_inset Text
10104
10105 \begin_layout Standard
10106 f
10107 \end_layout
10108
10109 \end_inset
10110 </cell>
10111 </row>
10112 <row topline="true" bottomline="true">
10113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10114 \begin_inset Text
10115
10116 \begin_layout Standard
10117 g
10118 \end_layout
10119
10120 \end_inset
10121 </cell>
10122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10123 \begin_inset Text
10124
10125 \begin_layout Standard
10126 h
10127 \end_layout
10128
10129 \end_inset
10130 </cell>
10131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10132 \begin_inset Text
10133
10134 \begin_layout Standard
10135 i
10136 \end_layout
10137
10138 \end_inset
10139 </cell>
10140 </row>
10141 </lyxtabular>
10142
10143 \end_inset
10144
10145
10146 \hfill
10147
10148 \begin_inset Tabular
10149 <lyxtabular version="3" rows="3" columns="3">
10150 <features>
10151 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10152 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10153 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10154 <row topline="true">
10155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10156 \begin_inset Text
10157
10158 \begin_layout Standard
10159 \begin_inset ERT
10160 status collapsed
10161
10162 \begin_layout Standard
10163
10164
10165 \backslash
10166 hspace{0pt}
10167 \end_layout
10168
10169 \end_inset
10170
10171 celdaconpalabramuylarga
10172 \end_layout
10173
10174 \end_inset
10175 </cell>
10176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10177 \begin_inset Text
10178
10179 \begin_layout Standard
10180 b
10181 \end_layout
10182
10183 \end_inset
10184 </cell>
10185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10186 \begin_inset Text
10187
10188 \begin_layout Standard
10189 c
10190 \end_layout
10191
10192 \end_inset
10193 </cell>
10194 </row>
10195 <row topline="true">
10196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10197 \begin_inset Text
10198
10199 \begin_layout Standard
10200 d
10201 \end_layout
10202
10203 \end_inset
10204 </cell>
10205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10206 \begin_inset Text
10207
10208 \begin_layout Standard
10209 e
10210 \end_layout
10211
10212 \end_inset
10213 </cell>
10214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10215 \begin_inset Text
10216
10217 \begin_layout Standard
10218 f
10219 \end_layout
10220
10221 \end_inset
10222 </cell>
10223 </row>
10224 <row topline="true" bottomline="true">
10225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10226 \begin_inset Text
10227
10228 \begin_layout Standard
10229 g
10230 \end_layout
10231
10232 \end_inset
10233 </cell>
10234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10235 \begin_inset Text
10236
10237 \begin_layout Standard
10238 h
10239 \end_layout
10240
10241 \end_inset
10242 </cell>
10243 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10244 \begin_inset Text
10245
10246 \begin_layout Standard
10247 i
10248 \end_layout
10249
10250 \end_inset
10251 </cell>
10252 </row>
10253 </lyxtabular>
10254
10255 \end_inset
10256
10257
10258 \hfill
10259
10260 \end_layout
10261
10262 \end_inset
10263
10264
10265 \end_layout
10266
10267 \begin_layout Standard
10268
10269 \end_layout
10270
10271 \begin_layout Subsection
10272 Multicolumnas
10273 \begin_inset LatexCommand label
10274 name "sub:Multicolumnas"
10275
10276 \end_inset
10277
10278
10279 \begin_inset LatexCommand index
10280 name "Multicolumnas"
10281
10282 \end_inset
10283
10284
10285 \begin_inset LatexCommand index
10286 name "Tablas ! Multicolumnas"
10287
10288 \end_inset
10289
10290
10291 \end_layout
10292
10293 \begin_layout Subsubsection
10294 Fundamentos de Multicolumna
10295 \end_layout
10296
10297 \begin_layout Standard
10298 Para extender una celda sobre varias columnas, se marcan las celdas que
10299  se desee combinar y se usa el botón 
10300 \begin_inset Graphics
10301         filename ../../images/tabular-feature_multicolumn.xpm
10302         scale 85
10303
10304 \end_inset
10305
10306 , el menú 
10307 \family sans
10308 Editar\SpecialChar \menuseparator
10309 Tabla\SpecialChar \menuseparator
10310 Multicolumna
10311 \family default
10312 , o clic-derecha sobre las celdas marcadas y se selecciona en el diálogo,
10313  bajo la solapa 
10314 \family sans
10315 Configuración
10316 \family default
10317 , la casilla Multicolumna.
10318 \end_layout
10319
10320 \begin_layout Standard
10321 Las multicolumnas tienen su propia configuración de celdas.
10322  Esto es, los cambios de bordes, alineación y anchura sólo afectan a la
10323  multicolumna.
10324  Aquí hay un ejemplo de tabla con una multicolumna en la primera fila y
10325  otra en la última fila sin borde superior:
10326 \end_layout
10327
10328 \begin_layout Standard
10329 \align center
10330 \begin_inset Tabular
10331 <lyxtabular version="3" rows="3" columns="4">
10332 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10333 <column alignment="center" valignment="top" leftline="true" width="0pt">
10334 <column alignment="center" valignment="middle" leftline="true" width="0">
10335 <column alignment="center" valignment="top" leftline="true" width="0in">
10336 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10337 <row topline="true" bottomline="true">
10338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10339 \begin_inset Text
10340
10341 \begin_layout Standard
10342 abc
10343 \end_layout
10344
10345 \end_inset
10346 </cell>
10347 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10348 \begin_inset Text
10349
10350 \begin_layout Standard
10351 def ghi
10352 \end_layout
10353
10354 \end_inset
10355 </cell>
10356 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10357 \begin_inset Text
10358
10359 \begin_layout Standard
10360
10361 \end_layout
10362
10363 \end_inset
10364 </cell>
10365 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10366 \begin_inset Text
10367
10368 \begin_layout Standard
10369 jkl
10370 \end_layout
10371
10372 \end_inset
10373 </cell>
10374 </row>
10375 <row topline="true">
10376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10377 \begin_inset Text
10378
10379 \begin_layout Standard
10380
10381 \family roman
10382 \series medium
10383 \shape up
10384 \size normal
10385 \emph off
10386 \bar no
10387 \noun off
10388 \color none
10389 A
10390 \end_layout
10391
10392 \end_inset
10393 </cell>
10394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10395 \begin_inset Text
10396
10397 \begin_layout Standard
10398 B
10399 \end_layout
10400
10401 \end_inset
10402 </cell>
10403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10404 \begin_inset Text
10405
10406 \begin_layout Standard
10407 C
10408 \end_layout
10409
10410 \end_inset
10411 </cell>
10412 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10413 \begin_inset Text
10414
10415 \begin_layout Standard
10416 D
10417 \end_layout
10418
10419 \end_inset
10420 </cell>
10421 </row>
10422 <row topline="true" bottomline="true">
10423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10424 \begin_inset Text
10425
10426 \begin_layout Standard
10427 1
10428 \end_layout
10429
10430 \end_inset
10431 </cell>
10432 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10433 \begin_inset Text
10434
10435 \begin_layout Standard
10436 2
10437 \end_layout
10438
10439 \end_inset
10440 </cell>
10441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10442 \begin_inset Text
10443
10444 \begin_layout Standard
10445 3
10446 \end_layout
10447
10448 \end_inset
10449 </cell>
10450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10451 \begin_inset Text
10452
10453 \begin_layout Standard
10454 4
10455 \end_layout
10456
10457 \end_inset
10458 </cell>
10459 </row>
10460 </lyxtabular>
10461
10462 \end_inset
10463
10464
10465 \end_layout
10466
10467 \begin_layout Subsubsection
10468 Cálculos en Multicolumnas
10469 \begin_inset LatexCommand label
10470 name "sub:Cálculos-en-Multicolumnas"
10471
10472 \end_inset
10473
10474
10475 \begin_inset LatexCommand index
10476 name "Multicolumnas ! Cálculos"
10477
10478 \end_inset
10479
10480
10481 \end_layout
10482
10483 \begin_layout Standard
10484 LyX soporta multicolumnas directamente, pero hay que prestar atención a
10485  la anchura de celda de las columnas combinadas en la celda multicolumna.
10486 \end_layout
10487
10488 \begin_layout Standard
10489 \begin_inset Float table
10490 wide false
10491 sideways false
10492 status open
10493
10494 \begin_layout Standard
10495 \begin_inset Caption
10496
10497 \begin_layout Standard
10498 \begin_inset LatexCommand label
10499 name "tab:Tabla-con-centrado"
10500
10501 \end_inset
10502
10503 Tabla con texto centrado en multicolumna sobre dos columnas que tienen exactamen
10504 te la mitad de anchura que la celda multicolumna
10505 \begin_inset OptArg
10506 status collapsed
10507
10508 \begin_layout Standard
10509 Tabla multicolumna perfecta
10510 \end_layout
10511
10512 \end_inset
10513
10514
10515 \end_layout
10516
10517 \end_inset
10518
10519
10520 \end_layout
10521
10522 \begin_layout Standard
10523 \align center
10524 \begin_inset Tabular
10525 <lyxtabular version="3" rows="3" columns="3">
10526 <features>
10527 <column alignment="center" valignment="middle" leftline="true" width="0" special=">{\centering}m{1.25cm-6.2pt}">
10528 <column alignment="center" valignment="middle" leftline="true" width="0">
10529 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10530 <row topline="true">
10531 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special=">{\centering}m{2.5cm}">
10532 \begin_inset Text
10533
10534 \begin_layout Standard
10535 multicolumna línea múltiple
10536 \end_layout
10537
10538 \end_inset
10539 </cell>
10540 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10541 \begin_inset Text
10542
10543 \begin_layout Standard
10544
10545 \end_layout
10546
10547 \end_inset
10548 </cell>
10549 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10550 \begin_inset Text
10551
10552 \begin_layout Standard
10553 c
10554 \end_layout
10555
10556 \end_inset
10557 </cell>
10558 </row>
10559 <row topline="true">
10560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10561 \begin_inset Text
10562
10563 \begin_layout Standard
10564 d
10565 \end_layout
10566
10567 \end_inset
10568 </cell>
10569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10570 \begin_inset Text
10571
10572 \begin_layout Standard
10573 e
10574 \end_layout
10575
10576 \end_inset
10577 </cell>
10578 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10579 \begin_inset Text
10580
10581 \begin_layout Standard
10582 f
10583 \end_layout
10584
10585 \end_inset
10586 </cell>
10587 </row>
10588 <row topline="true" bottomline="true">
10589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10590 \begin_inset Text
10591
10592 \begin_layout Standard
10593 g
10594 \end_layout
10595
10596 \end_inset
10597 </cell>
10598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10599 \begin_inset Text
10600
10601 \begin_layout Standard
10602 h
10603 \end_layout
10604
10605 \end_inset
10606 </cell>
10607 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10608 \begin_inset Text
10609
10610 \begin_layout Standard
10611 i
10612 \end_layout
10613
10614 \end_inset
10615 </cell>
10616 </row>
10617 </lyxtabular>
10618
10619 \end_inset
10620
10621
10622 \end_layout
10623
10624 \end_inset
10625
10626
10627 \end_layout
10628
10629 \begin_layout Standard
10630 Por ejemplo, para crear la tabla\InsetSpace ~
10631
10632 \begin_inset LatexCommand ref
10633 reference "tab:Tabla-con-centrado"
10634
10635 \end_inset
10636
10637 , marca las dos primeras celdas en la primera fila de una tabla 3×3 y haz
10638  clic-derecha.
10639  En el diálogo marca 
10640 \emph on
10641 multicolumna
10642 \emph default
10643
10644 \emph on
10645 alineación centro
10646 \emph default
10647  y una anchura de 2.5\InsetSpace \thinspace{}
10648 cm.
10649  Las columnas combinadas deberían tener exactamente la mitad de la anchura
10650  de la celda multicolumna, así que deberías ajustar 1.25\InsetSpace \thinspace{}
10651 cm para la primera
10652  columna.
10653  La segunda columna tendrá entonces automáticamente 1.25\InsetSpace \thinspace{}
10654 cm de anchura.
10655  Para la tabla\InsetSpace ~
10656
10657 \begin_inset LatexCommand ref
10658 reference "tab:Tabla-sin-mitad"
10659
10660 \end_inset
10661
10662  se ha procedido de la siguiente manera:
10663 \end_layout
10664
10665 \begin_layout Standard
10666 \begin_inset Float table
10667 wide false
10668 sideways false
10669 status open
10670
10671 \begin_layout Standard
10672 \begin_inset Caption
10673
10674 \begin_layout Standard
10675 \begin_inset LatexCommand label
10676 name "tab:Tabla-sin-mitad"
10677
10678 \end_inset
10679
10680 Tabla en la que las columnas combinadas no tienen exactamente la mitad de
10681  anchura que la celda multicolumna
10682 \begin_inset OptArg
10683 status open
10684
10685 \begin_layout Standard
10686 Tabla multicolumna imperfecta
10687 \end_layout
10688
10689 \end_inset
10690
10691
10692 \end_layout
10693
10694 \end_inset
10695
10696
10697 \end_layout
10698
10699 \begin_layout Standard
10700 \align center
10701 \begin_inset Tabular
10702 <lyxtabular version="3" rows="3" columns="3">
10703 <features>
10704 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10705 <column alignment="center" valignment="top" leftline="true" width="0">
10706 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10707 <row topline="true" bottomline="true">
10708 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10709 \begin_inset Text
10710
10711 \begin_layout Standard
10712 multicolumna línea múltiple
10713 \end_layout
10714
10715 \end_inset
10716 </cell>
10717 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10718 \begin_inset Text
10719
10720 \begin_layout Standard
10721
10722 \end_layout
10723
10724 \end_inset
10725 </cell>
10726 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10727 \begin_inset Text
10728
10729 \begin_layout Standard
10730 c
10731 \end_layout
10732
10733 \end_inset
10734 </cell>
10735 </row>
10736 <row topline="true">
10737 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10738 \begin_inset Text
10739
10740 \begin_layout Standard
10741 d
10742 \end_layout
10743
10744 \end_inset
10745 </cell>
10746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10747 \begin_inset Text
10748
10749 \begin_layout Standard
10750 e
10751 \end_layout
10752
10753 \end_inset
10754 </cell>
10755 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10756 \begin_inset Text
10757
10758 \begin_layout Standard
10759 f
10760 \end_layout
10761
10762 \end_inset
10763 </cell>
10764 </row>
10765 <row topline="true" bottomline="true">
10766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10767 \begin_inset Text
10768
10769 \begin_layout Standard
10770 g
10771 \end_layout
10772
10773 \end_inset
10774 </cell>
10775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10776 \begin_inset Text
10777
10778 \begin_layout Standard
10779 h
10780 \end_layout
10781
10782 \end_inset
10783 </cell>
10784 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10785 \begin_inset Text
10786
10787 \begin_layout Standard
10788 i
10789 \end_layout
10790
10791 \end_inset
10792 </cell>
10793 </row>
10794 </lyxtabular>
10795
10796 \end_inset
10797
10798
10799 \end_layout
10800
10801 \end_inset
10802
10803
10804 \end_layout
10805
10806 \begin_layout Standard
10807 Se ve que la primera columna no tiene la mitad de ancho que la celda multicolumn
10808 a, es un poco mayor.
10809  La razón es que la anchura dada para una celda 
10810 \begin_inset Formula $W_{g}$
10811 \end_inset
10812
10813  no es su anchura total 
10814 \begin_inset Formula $W_{\mathrm{tot}}$
10815 \end_inset
10816
10817  porque una celda es siempre algo mayor que la anchura dada.
10818  El Apéndice\InsetSpace ~
10819
10820 \begin_inset LatexCommand eqref
10821 reference "cha:Explicación-de-la-Ecuación"
10822
10823 \end_inset
10824
10825  lo explica con detalle.
10826 \end_layout
10827
10828 \begin_layout Standard
10829 La anchura dada necesaria, 
10830 \begin_inset Formula $W_{g\, n}$
10831 \end_inset
10832
10833  para combinar 
10834 \emph on
10835 n
10836 \emph default
10837  columnas puede calcularse de manera que cada columna tenga una anchura
10838  total de 
10839 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10840 \end_inset
10841
10842 :
10843 \begin_inset Formula \begin{equation}
10844 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10845
10846 \end_inset
10847
10848
10849 \end_layout
10850
10851 \begin_layout Standard
10852 En nuestro caso tenemos 
10853 \begin_inset Formula $n=2$
10854 \end_inset
10855
10856
10857 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10858 \end_inset
10859
10860 \InsetSpace \thinspace{}
10861 cm y los valores predeterminados para longitudes, así la ecuación\InsetSpace ~
10862
10863 \begin_inset LatexCommand ref
10864 reference "eq:Wgn"
10865
10866 \end_inset
10867
10868  queda
10869 \begin_inset Formula \begin{equation}
10870 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10871
10872 \end_inset
10873
10874
10875 \end_layout
10876
10877 \begin_layout Standard
10878 Para habilitar cálculos en LaTeX, debe cargarse en el preámbulo el paquete
10879  
10880 \series bold
10881 calc
10882 \series default
10883  con la línea
10884 \begin_inset LatexCommand index
10885 name "LaTeX-paquetes ! calc"
10886
10887 \end_inset
10888
10889
10890 \end_layout
10891
10892 \begin_layout Standard
10893
10894 \series bold
10895
10896 \backslash
10897 usepackage{calc}
10898 \end_layout
10899
10900 \begin_layout Standard
10901 LyX no permite calcular longitudes en el campo Ancho del cuadro de diálogo.
10902  Por tanto hay que insertar un argumento LaTeX en el diálogo.
10903  He aquí un repaso de los argumentos:
10904 \end_layout
10905
10906 \begin_layout Itemize
10907
10908 \series bold
10909 p{ancho}
10910 \series default
10911  crea celdas con anchura fija, el texto alineado arriba
10912 \end_layout
10913
10914 \begin_layout Itemize
10915
10916 \series bold
10917 m{ancho}
10918 \series default
10919  crea celdas con anchura fija, el texto con alineación vertical centrada
10920  
10921 \end_layout
10922
10923 \begin_layout Itemize
10924
10925 \series bold
10926 b{ancho}
10927 \series default
10928  crea celdas con anchura fija, el texto alineado abajo
10929 \end_layout
10930
10931 \begin_layout Standard
10932 Al introducir un argumento LaTeX, todas las propiedades de celda puestas
10933  en el diálogo se ignoran.
10934  
10935 \begin_inset Note Greyedout
10936 status open
10937
10938 \begin_layout Standard
10939
10940 \series bold
10941 Nota:
10942 \series default
10943  Debido a un error, LyX muestra de todas formas estas propiedades.
10944 \end_layout
10945
10946 \end_inset
10947
10948  El comando 
10949 \series bold
10950
10951 \backslash
10952 centering
10953 \series default
10954  centra horizontalmente el texto.
10955  Puedes entonces introducir el siguiente argumento de LaTeX para la primera
10956  columna extendida:
10957 \end_layout
10958
10959 \begin_layout Standard
10960
10961 \series bold
10962 >{
10963 \backslash
10964 centering}m{1.25cm-6.2pt}
10965 \end_layout
10966
10967 \begin_layout Standard
10968 El comando 
10969 \series bold
10970 >{ }
10971 \series default
10972  significa que los comandos entre llaves se aplican antes de crear la celda.
10973 \end_layout
10974
10975 \begin_layout Standard
10976 Aunque hemos escogido alineación centrada para el texto de la celda multicolumna
10977 , aún está alineado a la izquierda.
10978  Esto se debe a que LyX solo aplica alineado a columnas simples.
10979  Así que para multicolumnas hemos de usar el argumento de LaTeX
10980 \end_layout
10981
10982 \begin_layout Standard
10983
10984 \series bold
10985 >{
10986 \backslash
10987 centering}m{2.5cm}
10988 \end_layout
10989
10990 \begin_layout Subsection
10991 Multifilas
10992 \begin_inset LatexCommand index
10993 name "Multifilas"
10994
10995 \end_inset
10996
10997
10998 \begin_inset LatexCommand index
10999 name "Tablas ! Multifilas"
11000
11001 \end_inset
11002
11003
11004 \begin_inset LatexCommand index
11005 name "LaTeX-paquetes ! multirow"
11006
11007 \end_inset
11008
11009
11010 \end_layout
11011
11012 \begin_layout Standard
11013 A diferencia de multicolumnas, LyX aún no soporta multifilas por lo que
11014  hace falta un poco de ERT.
11015  Hay que cargar el paquete de LaTeX 
11016 \series bold
11017 multirow
11018 \series default
11019  en el preámbulo del documento con el comando
11020 \end_layout
11021
11022 \begin_layout Standard
11023
11024 \series bold
11025
11026 \backslash
11027 usepackage{multirow}
11028 \end_layout
11029
11030 \begin_layout Standard
11031 Las multifilas se crean con el comando
11032 \end_layout
11033
11034 \begin_layout Standard
11035
11036 \series bold
11037
11038 \backslash
11039 multirow{número de filas}{ancho de celda}{entrada de celda}
11040 \end_layout
11041
11042 \begin_layout Standard
11043 Para crear la siguiente tabla:
11044 \end_layout
11045
11046 \begin_layout Standard
11047 \align center
11048 \begin_inset ERT
11049 status collapsed
11050
11051 \begin_layout Standard
11052
11053
11054 \backslash
11055 renewcommand{
11056 \backslash
11057 multirowsetup}{
11058 \backslash
11059 centering}
11060 \end_layout
11061
11062 \end_inset
11063
11064
11065 \begin_inset Tabular
11066 <lyxtabular version="3" rows="3" columns="3">
11067 <features>
11068 <column alignment="center" valignment="top" leftline="true" width="0">
11069 <column alignment="center" valignment="top" leftline="true" width="0">
11070 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11071 <row topline="true">
11072 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11073 \begin_inset Text
11074
11075 \begin_layout Standard
11076 a
11077 \end_layout
11078
11079 \end_inset
11080 </cell>
11081 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11082 \begin_inset Text
11083
11084 \begin_layout Standard
11085 b
11086 \end_layout
11087
11088 \end_inset
11089 </cell>
11090 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11091 \begin_inset Text
11092
11093 \begin_layout Standard
11094 c
11095 \end_layout
11096
11097 \end_inset
11098 </cell>
11099 </row>
11100 <row topline="true">
11101 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11102 \begin_inset Text
11103
11104 \begin_layout Standard
11105 \begin_inset ERT
11106 status collapsed
11107
11108 \begin_layout Standard
11109
11110
11111 \backslash
11112 multirow{2}{2.5cm}{
11113 \end_layout
11114
11115 \end_inset
11116
11117 entrada multifila
11118 \begin_inset ERT
11119 status collapsed
11120
11121 \begin_layout Standard
11122
11123 }
11124 \end_layout
11125
11126 \end_inset
11127
11128
11129 \end_layout
11130
11131 \end_inset
11132 </cell>
11133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11134 \begin_inset Text
11135
11136 \begin_layout Standard
11137 e
11138 \end_layout
11139
11140 \end_inset
11141 </cell>
11142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11143 \begin_inset Text
11144
11145 \begin_layout Standard
11146 f
11147 \end_layout
11148
11149 \end_inset
11150 </cell>
11151 </row>
11152 <row topline="true" bottomline="true">
11153 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11154 \begin_inset Text
11155
11156 \begin_layout Standard
11157
11158 \end_layout
11159
11160 \end_inset
11161 </cell>
11162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11163 \begin_inset Text
11164
11165 \begin_layout Standard
11166 h
11167 \end_layout
11168
11169 \end_inset
11170 </cell>
11171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11172 \begin_inset Text
11173
11174 \begin_layout Standard
11175 i
11176 \end_layout
11177
11178 \end_inset
11179 </cell>
11180 </row>
11181 </lyxtabular>
11182
11183 \end_inset
11184
11185
11186 \begin_inset ERT
11187 status collapsed
11188
11189 \begin_layout Standard
11190
11191
11192 \backslash
11193 renewcommand{
11194 \backslash
11195 multirowsetup}{
11196 \backslash
11197 raggedright}
11198 \end_layout
11199
11200 \end_inset
11201
11202
11203 \end_layout
11204
11205 \begin_layout Standard
11206 crea una tabla 3×3.
11207  Para quitar la línea sobre la última celda en la primera columna, se marca
11208  la celda como multicolumna y se quita el borde superior.
11209  Ahora se crea la multifila en la segunda fila de la primera columna insertando
11210  ahí el comando
11211 \end_layout
11212
11213 \begin_layout Standard
11214
11215 \series bold
11216
11217 \backslash
11218 multirow{2}{2.5cm}{
11219 \end_layout
11220
11221 \begin_layout Standard
11222 como ERT.
11223  Según los parámetros del comando la multifila se expande a dos filas y
11224  tiene de ancho 2.5\InsetSpace \thinspace{}
11225 cm.
11226  El contenido de la celda multifila sigue fuera del cuadro ERT y el comando
11227  finaliza con llave derecha 
11228 \series bold
11229 }
11230 \series default
11231  en otro cuadro ERT tras el texto.
11232 \end_layout
11233
11234 \begin_layout Standard
11235
11236 \series bold
11237
11238 \backslash
11239 multirow
11240 \series default
11241  alinea su contenido a la izquierda por defecto.
11242  Para cambiarlo renombra el comando 
11243 \series bold
11244
11245 \backslash
11246 multirowsetup
11247 \series default
11248  con el comando
11249 \end_layout
11250
11251 \begin_layout Standard
11252
11253 \series bold
11254
11255 \backslash
11256 renewcommand{
11257 \backslash
11258 multirowsetup}{
11259 \backslash
11260 centering}
11261 \end_layout
11262
11263 \begin_layout Standard
11264 en ERT en el preámbulo del documento.
11265  Entonces se centran todas las entradas de celdas multifila en el documento.
11266  Si solo queremos centrar en algunas tablas, se puede renombrar el comando
11267  en ERT justo antes de la tabla en lugar de en el preámbulo.
11268  Si el texto debe estar alineado a la derecha, reemplaza 
11269 \series bold
11270
11271 \backslash
11272 centering
11273 \series default
11274  por 
11275 \series bold
11276
11277 \backslash
11278 raggedleft
11279 \series default
11280 .
11281  Para volver a alineado a la izquierda usa 
11282 \series bold
11283
11284 \backslash
11285 raggedright
11286 \series default
11287 .
11288 \end_layout
11289
11290 \begin_layout Section
11291 Tablas Formales
11292 \begin_inset LatexCommand label
11293 name "sec:Tablas-Formales"
11294
11295 \end_inset
11296
11297
11298 \begin_inset LatexCommand index
11299 name "Tablas Formales"
11300
11301 \end_inset
11302
11303
11304 \begin_inset LatexCommand index
11305 name "Tablas ! Estilo Formal"
11306
11307 \end_inset
11308
11309  
11310 \end_layout
11311
11312 \begin_layout Standard
11313 En los libros, las tablas se suelen presentar en un formato como el de la
11314  tabla \InsetSpace ~
11315
11316 \begin_inset LatexCommand ref
11317 reference "tab:Ejemplo-tabla-formal"
11318
11319 \end_inset
11320
11321 .
11322  Se denominan tablas 
11323 \emph on
11324 formales
11325 \emph default
11326 .
11327  Para hacer tablas con este diseño, elige 
11328 \family sans
11329 Estilo
11330 \family default
11331 \InsetSpace ~
11332
11333 \family sans
11334 Formal
11335 \family default
11336  en la solapa 
11337 \family sans
11338 Bordes
11339 \family default
11340  del cuadro de diálogo de tablas.
11341 \end_layout
11342
11343 \begin_layout Standard
11344 \begin_inset Float table
11345 placement h
11346 wide false
11347 sideways false
11348 status open
11349
11350 \begin_layout Standard
11351 \begin_inset Caption
11352
11353 \begin_layout Standard
11354 \begin_inset LatexCommand label
11355 name "tab:Ejemplo-tabla-formal"
11356
11357 \end_inset
11358
11359 Ejemplo de tabla formal
11360 \end_layout
11361
11362 \end_inset
11363
11364
11365 \end_layout
11366
11367 \begin_layout Standard
11368 \align center
11369 \begin_inset Tabular
11370 <lyxtabular version="3" rows="8" columns="4">
11371 <features booktabs="true">
11372 <column alignment="center" valignment="top" rightline="true" width="0">
11373 <column alignment="center" valignment="top" width="0">
11374 <column alignment="center" valignment="top" width="0">
11375 <column alignment="center" valignment="top" width="0">
11376 <row topline="true">
11377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11378 \begin_inset Text
11379
11380 \begin_layout Standard
11381 System
11382 \end_layout
11383
11384 \end_inset
11385 </cell>
11386 <cell alignment="center" valignment="top" topline="true" usebox="none">
11387 \begin_inset Text
11388
11389 \begin_layout Standard
11390 Medipix
11391 \begin_inset Formula $\,$
11392 \end_inset
11393
11394 1
11395 \end_layout
11396
11397 \end_inset
11398 </cell>
11399 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11400 \begin_inset Text
11401
11402 \begin_layout Standard
11403 Medipix
11404 \begin_inset Formula $\,$
11405 \end_inset
11406
11407 2
11408 \end_layout
11409
11410 \end_inset
11411 </cell>
11412 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11413 \begin_inset Text
11414
11415 \begin_layout Standard
11416
11417 \end_layout
11418
11419 \end_inset
11420 </cell>
11421 </row>
11422 <row>
11423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11424 \begin_inset Text
11425
11426 \begin_layout Standard
11427 \begin_inset ERT
11428 status collapsed
11429
11430 \begin_layout Standard
11431
11432
11433 \backslash
11434 cmidrule(r){2-2}
11435 \end_layout
11436
11437 \end_inset
11438
11439
11440 \begin_inset ERT
11441 status collapsed
11442
11443 \begin_layout Standard
11444
11445
11446 \backslash
11447 cmidrule(l){3-4}
11448 \end_layout
11449
11450 \end_inset
11451
11452 Detector thickness [µm]
11453 \end_layout
11454
11455 \end_inset
11456 </cell>
11457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11458 \begin_inset Text
11459
11460 \begin_layout Standard
11461 300
11462 \end_layout
11463
11464 \end_inset
11465 </cell>
11466 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11467 \begin_inset Text
11468
11469 \begin_layout Standard
11470 300
11471 \end_layout
11472
11473 \end_inset
11474 </cell>
11475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11476 \begin_inset Text
11477
11478 \begin_layout Standard
11479 700
11480 \end_layout
11481
11482 \end_inset
11483 </cell>
11484 </row>
11485 <row topline="true">
11486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11487 \begin_inset Text
11488
11489 \begin_layout Standard
11490 Edge angle [°]
11491 \end_layout
11492
11493 \end_inset
11494 </cell>
11495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11496 \begin_inset Text
11497
11498 \begin_layout Standard
11499 3.55
11500 \end_layout
11501
11502 \end_inset
11503 </cell>
11504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11505 \begin_inset Text
11506
11507 \begin_layout Standard
11508 2.71
11509 \end_layout
11510
11511 \end_inset
11512 </cell>
11513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11514 \begin_inset Text
11515
11516 \begin_layout Standard
11517 7.99
11518 \end_layout
11519
11520 \end_inset
11521 </cell>
11522 </row>
11523 <row topspace="default">
11524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11525 \begin_inset Text
11526
11527 \begin_layout Standard
11528 Spatial resolution [µm]
11529 \end_layout
11530
11531 \end_inset
11532 </cell>
11533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11534 \begin_inset Text
11535
11536 \begin_layout Standard
11537 4.26
11538 \end_layout
11539
11540 \end_inset
11541 </cell>
11542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11543 \begin_inset Text
11544
11545 \begin_layout Standard
11546 10.17
11547 \end_layout
11548
11549 \end_inset
11550 </cell>
11551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11552 \begin_inset Text
11553
11554 \begin_layout Standard
11555 10.56
11556 \end_layout
11557
11558 \end_inset
11559 </cell>
11560 </row>
11561 <row topspace="default">
11562 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11563 \begin_inset Text
11564
11565 \begin_layout Standard
11566 MTF at 
11567 \begin_inset Formula $f_{\mathrm{max}}$
11568 \end_inset
11569
11570
11571 \end_layout
11572
11573 \end_inset
11574 </cell>
11575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11576 \begin_inset Text
11577
11578 \begin_layout Standard
11579 0.53
11580 \end_layout
11581
11582 \end_inset
11583 </cell>
11584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11585 \begin_inset Text
11586
11587 \begin_layout Standard
11588 0.37
11589 \end_layout
11590
11591 \end_inset
11592 </cell>
11593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11594 \begin_inset Text
11595
11596 \begin_layout Standard
11597 0.39
11598 \end_layout
11599
11600 \end_inset
11601 </cell>
11602 </row>
11603 <row topspace="default">
11604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11605 \begin_inset Text
11606
11607 \begin_layout Standard
11608 \begin_inset ERT
11609 status collapsed
11610
11611 \begin_layout Standard
11612
11613
11614 \backslash
11615 cmidrule(l{10pt}){1-1}
11616 \end_layout
11617
11618 \end_inset
11619
11620 LSF-spatial resolution
11621 \end_layout
11622
11623 \end_inset
11624 </cell>
11625 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11626 \begin_inset Text
11627
11628 \begin_layout Standard
11629
11630 \end_layout
11631
11632 \end_inset
11633 </cell>
11634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11635 \begin_inset Text
11636
11637 \begin_layout Standard
11638
11639 \end_layout
11640
11641 \end_inset
11642 </cell>
11643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11644 \begin_inset Text
11645
11646 \begin_layout Standard
11647
11648 \end_layout
11649
11650 \end_inset
11651 </cell>
11652 </row>
11653 <row>
11654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11655 \begin_inset Text
11656
11657 \begin_layout Standard
11658 in µm
11659 \end_layout
11660
11661 \end_inset
11662 </cell>
11663 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11664 \begin_inset Text
11665
11666 \begin_layout Standard
11667 129.7
11668 \end_layout
11669
11670 \end_inset
11671 </cell>
11672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11673 \begin_inset Text
11674
11675 \begin_layout Standard
11676 52.75
11677 \end_layout
11678
11679 \end_inset
11680 </cell>
11681 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11682 \begin_inset Text
11683
11684 \begin_layout Standard
11685 50.78
11686 \end_layout
11687
11688 \end_inset
11689 </cell>
11690 </row>
11691 <row bottomline="true">
11692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11693 \begin_inset Text
11694
11695 \begin_layout Standard
11696 in % of pixel size
11697 \end_layout
11698
11699 \end_inset
11700 </cell>
11701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11702 \begin_inset Text
11703
11704 \begin_layout Standard
11705 76.3
11706 \end_layout
11707
11708 \end_inset
11709 </cell>
11710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11711 \begin_inset Text
11712
11713 \begin_layout Standard
11714 95.9
11715 \end_layout
11716
11717 \end_inset
11718 </cell>
11719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11720 \begin_inset Text
11721
11722 \begin_layout Standard
11723 92.3
11724 \end_layout
11725
11726 \end_inset
11727 </cell>
11728 </row>
11729 </lyxtabular>
11730
11731 \end_inset
11732
11733
11734 \end_layout
11735
11736 \end_inset
11737
11738
11739 \end_layout
11740
11741 \begin_layout Standard
11742 Se puede añadir espacio adicional a las filas de la tabla mediante los botones
11743  correspondientes que se encuentran en la solapa 
11744 \family sans
11745 Bordes 
11746 \family default
11747 del diálogo
11748 \family sans
11749  Configuración\InsetSpace ~
11750 de\InsetSpace ~
11751 la\InsetSpace ~
11752 tabla
11753 \family default
11754 , como se explica en la sección\InsetSpace ~
11755
11756 \begin_inset LatexCommand ref
11757 reference "sub:Espacio-adicional"
11758
11759 \end_inset
11760
11761
11762 \end_layout
11763
11764 \begin_layout Standard
11765 A diferencia de las tablas normales, las tablas formales no tienen líneas
11766  verticales.
11767  Las líneas horizontales se pueden poner o no como en las tablas normales,
11768  pero en la salida se mostrarán con distinto grosor:
11769 \newline
11770 Las líneas primera y
11771  última tienen un grosor predeterminado de 0.08\InsetSpace \thinspace{}
11772 em, las demás tienen un grosor
11773  predeterminado de 0.05\InsetSpace \thinspace{}
11774 em.
11775 \end_layout
11776
11777 \begin_layout Standard
11778 Estos valores predeterminados se pueden cambiar
11779 \series bold
11780  
11781 \series default
11782 con las líneas de preámbulo:
11783 \end_layout
11784
11785 \begin_layout Standard
11786
11787 \series bold
11788
11789 \backslash
11790 let
11791 \backslash
11792 mytoprule
11793 \backslash
11794 toprule
11795 \newline
11796
11797 \backslash
11798 renewcommand{
11799 \backslash
11800 toprule}{
11801 \backslash
11802 mytoprule[grosor]}
11803 \end_layout
11804
11805 \begin_layout Standard
11806 Este ejemplo es para la primera línea, la denominada 
11807 \emph on
11808 toprule
11809 \emph default
11810 .
11811  Si quieres cambiar el grosor de la última línea, reemplaza 
11812 \series bold
11813 toprule
11814 \series default
11815  por 
11816 \series bold
11817 bottomrule
11818 \series default
11819 .
11820  Y para cambiar el grosor de las demás líneas cambia 
11821 \series bold
11822 toprule
11823 \series default
11824  por 
11825 \series bold
11826 midrule
11827 \series default
11828 .
11829  Puedes usar cualquiera de las unidades listadas en el apéndice\InsetSpace ~
11830
11831 \begin_inset LatexCommand ref
11832 reference "cha:Unidades-disponibles-en"
11833
11834 \end_inset
11835
11836 para establecer el grosor.
11837 \end_layout
11838
11839 \begin_layout Standard
11840 Para dibujar líneas que no se extiendan a todas las columnas de la tabla,
11841  puedes marcarlas como celdas multicolumna y entonces ponerles borde.
11842  LyX empleará internamente el comando 
11843 \series bold
11844
11845 \backslash
11846 cmidrule
11847 \series default
11848  para dibujar la línea.
11849  El esquema completo es
11850 \end_layout
11851
11852 \begin_layout Standard
11853
11854 \series bold
11855
11856 \backslash
11857 cmidrule[grosor](recorte){inicol-fincol}
11858 \end_layout
11859
11860 \begin_layout Standard
11861 Por el momento, LyX no soporta las opciones de 
11862 \series bold
11863
11864 \backslash
11865 cmidrule
11866 \series default
11867 , así que para usarlas hay que emplear ERT.
11868  Las líneas 
11869 \series bold
11870
11871 \backslash
11872 cmidrule
11873 \series default
11874  se pueden insertar manualmente con el comando en ERT como primera entrada
11875  de la primera celda de una fila.
11876  En la salida se dibujará la línea sobre dicha fila.
11877 \end_layout
11878
11879 \begin_layout Standard
11880 El grosor predeterminado es 0.03\InsetSpace \thinspace{}
11881 em.
11882  
11883 \series bold
11884 inicol
11885 \series default
11886  es el número de la columna en la que comienza la línea y 
11887 \series bold
11888 fincol
11889 \series default
11890  es el número de la columna en la que acaba la línea.
11891  El valor 
11892 \series bold
11893 fincol
11894 \series default
11895  debe especificarse siempre, aunque la línea se extienda sobre una sola
11896  columna.
11897  El parámetro opcional 
11898 \series bold
11899 recorte
11900 \series default
11901  debe ser 
11902 \emph on
11903 l{recorte}
11904 \emph default
11905  o 
11906 \emph on
11907 r{recorte}
11908 \emph default
11909 , donde 
11910 \emph on
11911 recorte
11912 \emph default
11913  también es opcional.
11914  Por ejemplo, el parámetro 
11915 \emph on
11916 l{2pt}
11917 \emph default
11918  significa que la línea se recorta 2\InsetSpace \thinspace{}
11919 pt por su izquierda.
11920  Si no se especifica el tamaño  las líneas se recortan por defecto en 0.5\InsetSpace \thinspace{}
11921 em.
11922
11923 \series bold
11924  
11925 \end_layout
11926
11927 \begin_layout Standard
11928
11929 \end_layout
11930
11931 \begin_layout Standard
11932 \begin_inset VSpace bigskip
11933 \end_inset
11934
11935
11936 \end_layout
11937
11938 \begin_layout Standard
11939 La tabla\InsetSpace ~
11940
11941 \begin_inset LatexCommand ref
11942 reference "tab:Ejemplo-tabla-formal"
11943
11944 \end_inset
11945
11946  se ha creado con los comandos
11947 \end_layout
11948
11949 \begin_layout Standard
11950
11951 \series bold
11952
11953 \backslash
11954 cmidrule(r){2-2}
11955 \backslash
11956 cmidrule(l){3-4}
11957 \end_layout
11958
11959 \begin_layout Standard
11960 en la segunda fila, 
11961 \series bold
11962
11963 \backslash
11964 midrule
11965 \series default
11966  en la tercera, y
11967 \end_layout
11968
11969 \begin_layout Standard
11970
11971 \series bold
11972
11973 \backslash
11974 cmidrule(l{10pt}){1-1}
11975 \end_layout
11976
11977 \begin_layout Standard
11978 en la sexta fila.
11979 \end_layout
11980
11981 \begin_layout Standard
11982 \begin_inset VSpace bigskip
11983 \end_inset
11984
11985
11986 \end_layout
11987
11988 \begin_layout Standard
11989 Quizá quieras superponer líneas 
11990 \series bold
11991
11992 \backslash
11993 cmidrules
11994 \series default
11995  como en la tabla\InsetSpace ~
11996
11997 \begin_inset LatexCommand ref
11998 reference "tab:Tabla-formal-especial"
11999
12000 \end_inset
12001
12002 .
12003  Esto se consigue con el comando ERT
12004 \end_layout
12005
12006 \begin_layout Standard
12007
12008 \series bold
12009
12010 \backslash
12011 morecmidrules
12012 \end_layout
12013
12014 \begin_layout Standard
12015 El comando que se ha utilizado para la segunda fila de la tabla\InsetSpace ~
12016
12017 \begin_inset LatexCommand ref
12018 reference "tab:Tabla-formal-especial"
12019
12020 \end_inset
12021
12022  es
12023 \end_layout
12024
12025 \begin_layout Standard
12026
12027 \series bold
12028
12029 \backslash
12030 cmidrule(r){2-2}
12031 \backslash
12032 cmidrule(l){3-4}
12033 \backslash
12034 morecmidrules
12035 \backslash
12036 cmidrule{2-4}
12037 \end_layout
12038
12039 \begin_layout Standard
12040 El comando para la sexta fila es
12041 \end_layout
12042
12043 \begin_layout Standard
12044
12045 \series bold
12046
12047 \backslash
12048 midrule
12049 \backslash
12050 morecmidrules
12051 \backslash
12052 cmidrule{3-4}
12053 \series default
12054
12055 \begin_inset VSpace bigskip
12056 \end_inset
12057
12058
12059 \end_layout
12060
12061 \begin_layout Standard
12062 Si de todas formas no te satisface el espaciado de los bordes, puedes usar
12063  el siguiente comando para dibujar líneas que se extienden sobre todas las
12064  columnas
12065 \end_layout
12066
12067 \begin_layout Standard
12068
12069 \series bold
12070
12071 \backslash
12072 specialrule{anchura}{espacio superior}{espacio inferior}
12073 \end_layout
12074
12075 \begin_layout Standard
12076 Para más información sobre estas características especiales, acude al manual
12077  del paquete LaTeX 
12078 \series bold
12079 booktabs
12080 \series default
12081
12082 \begin_inset LatexCommand cite
12083 key "booktabs"
12084
12085 \end_inset
12086
12087 .
12088 \begin_inset LatexCommand index
12089 name "LaTeX-paquetes ! booktabs"
12090
12091 \end_inset
12092
12093  
12094 \begin_inset VSpace bigskip
12095 \end_inset
12096
12097
12098 \end_layout
12099
12100 \begin_layout Standard
12101 \begin_inset Float table
12102 placement h
12103 wide false
12104 sideways false
12105 status open
12106
12107 \begin_layout Standard
12108 \begin_inset Caption
12109
12110 \begin_layout Standard
12111 \begin_inset LatexCommand label
12112 name "tab:Tabla-formal-especial"
12113
12114 \end_inset
12115
12116 Tabla formal especial
12117 \end_layout
12118
12119 \end_inset
12120
12121
12122 \end_layout
12123
12124 \begin_layout Standard
12125 \align center
12126 \begin_inset Tabular
12127 <lyxtabular version="3" rows="8" columns="4">
12128 <features booktabs="true">
12129 <column alignment="center" valignment="top" width="0">
12130 <column alignment="center" valignment="top" width="0">
12131 <column alignment="center" valignment="top" width="0">
12132 <column alignment="center" valignment="top" width="0">
12133 <row topline="true">
12134 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12135 \begin_inset Text
12136
12137 \begin_layout Standard
12138 System
12139 \end_layout
12140
12141 \end_inset
12142 </cell>
12143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12144 \begin_inset Text
12145
12146 \begin_layout Standard
12147 Medipix\InsetSpace \thinspace{}
12148 1
12149 \end_layout
12150
12151 \end_inset
12152 </cell>
12153 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12154 \begin_inset Text
12155
12156 \begin_layout Standard
12157 Medipix\InsetSpace \thinspace{}
12158 2
12159 \end_layout
12160
12161 \end_inset
12162 </cell>
12163 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12164 \begin_inset Text
12165
12166 \begin_layout Standard
12167
12168 \end_layout
12169
12170 \end_inset
12171 </cell>
12172 </row>
12173 <row>
12174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12175 \begin_inset Text
12176
12177 \begin_layout Standard
12178 \begin_inset ERT
12179 status collapsed
12180
12181 \begin_layout Standard
12182
12183
12184 \backslash
12185 cmidrule(r){2-2}
12186 \end_layout
12187
12188 \end_inset
12189
12190
12191 \begin_inset ERT
12192 status collapsed
12193
12194 \begin_layout Standard
12195
12196
12197 \backslash
12198 cmidrule(l){3-4}
12199 \end_layout
12200
12201 \end_inset
12202
12203
12204 \begin_inset ERT
12205 status collapsed
12206
12207 \begin_layout Standard
12208
12209
12210 \backslash
12211 morecmidrules 
12212 \end_layout
12213
12214 \end_inset
12215
12216
12217 \begin_inset ERT
12218 status collapsed
12219
12220 \begin_layout Standard
12221
12222
12223 \backslash
12224 cmidrule{2-4}
12225 \end_layout
12226
12227 \end_inset
12228
12229 Detector thickness [µm]
12230 \end_layout
12231
12232 \end_inset
12233 </cell>
12234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12235 \begin_inset Text
12236
12237 \begin_layout Standard
12238 300
12239 \end_layout
12240
12241 \end_inset
12242 </cell>
12243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12244 \begin_inset Text
12245
12246 \begin_layout Standard
12247 300
12248 \end_layout
12249
12250 \end_inset
12251 </cell>
12252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12253 \begin_inset Text
12254
12255 \begin_layout Standard
12256 700
12257 \end_layout
12258
12259 \end_inset
12260 </cell>
12261 </row>
12262 <row topline="true">
12263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12264 \begin_inset Text
12265
12266 \begin_layout Standard
12267 Edge angle [°]
12268 \end_layout
12269
12270 \end_inset
12271 </cell>
12272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12273 \begin_inset Text
12274
12275 \begin_layout Standard
12276 3.55
12277 \end_layout
12278
12279 \end_inset
12280 </cell>
12281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12282 \begin_inset Text
12283
12284 \begin_layout Standard
12285 2.71
12286 \end_layout
12287
12288 \end_inset
12289 </cell>
12290 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12291 \begin_inset Text
12292
12293 \begin_layout Standard
12294 7.99
12295 \end_layout
12296
12297 \end_inset
12298 </cell>
12299 </row>
12300 <row topspace="default">
12301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12302 \begin_inset Text
12303
12304 \begin_layout Standard
12305 Spatial resolution [µm]
12306 \end_layout
12307
12308 \end_inset
12309 </cell>
12310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12311 \begin_inset Text
12312
12313 \begin_layout Standard
12314 4.26
12315 \end_layout
12316
12317 \end_inset
12318 </cell>
12319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12320 \begin_inset Text
12321
12322 \begin_layout Standard
12323 10.17
12324 \end_layout
12325
12326 \end_inset
12327 </cell>
12328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12329 \begin_inset Text
12330
12331 \begin_layout Standard
12332 10.56
12333 \end_layout
12334
12335 \end_inset
12336 </cell>
12337 </row>
12338 <row topspace="default">
12339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12340 \begin_inset Text
12341
12342 \begin_layout Standard
12343 MTF at 
12344 \begin_inset Formula $f_{\mathrm{max}}$
12345 \end_inset
12346
12347
12348 \end_layout
12349
12350 \end_inset
12351 </cell>
12352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12353 \begin_inset Text
12354
12355 \begin_layout Standard
12356 0.53
12357 \end_layout
12358
12359 \end_inset
12360 </cell>
12361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12362 \begin_inset Text
12363
12364 \begin_layout Standard
12365 0.37
12366 \end_layout
12367
12368 \end_inset
12369 </cell>
12370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12371 \begin_inset Text
12372
12373 \begin_layout Standard
12374 0.39
12375 \end_layout
12376
12377 \end_inset
12378 </cell>
12379 </row>
12380 <row topline="true">
12381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12382 \begin_inset Text
12383
12384 \begin_layout Standard
12385 \begin_inset ERT
12386 status collapsed
12387
12388 \begin_layout Standard
12389
12390
12391 \backslash
12392 morecmidrules 
12393 \end_layout
12394
12395 \end_inset
12396
12397
12398 \begin_inset ERT
12399 status collapsed
12400
12401 \begin_layout Standard
12402
12403
12404 \backslash
12405 cmidrule{3-4}
12406 \end_layout
12407
12408 \end_inset
12409
12410 LSF-spatial resolution
12411 \end_layout
12412
12413 \end_inset
12414 </cell>
12415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12416 \begin_inset Text
12417
12418 \begin_layout Standard
12419
12420 \end_layout
12421
12422 \end_inset
12423 </cell>
12424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12425 \begin_inset Text
12426
12427 \begin_layout Standard
12428
12429 \end_layout
12430
12431 \end_inset
12432 </cell>
12433 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12434 \begin_inset Text
12435
12436 \begin_layout Standard
12437
12438 \end_layout
12439
12440 \end_inset
12441 </cell>
12442 </row>
12443 <row>
12444 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12445 \begin_inset Text
12446
12447 \begin_layout Standard
12448 in µm
12449 \end_layout
12450
12451 \end_inset
12452 </cell>
12453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12454 \begin_inset Text
12455
12456 \begin_layout Standard
12457 129.7
12458 \end_layout
12459
12460 \end_inset
12461 </cell>
12462 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12463 \begin_inset Text
12464
12465 \begin_layout Standard
12466 52.75
12467 \end_layout
12468
12469 \end_inset
12470 </cell>
12471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12472 \begin_inset Text
12473
12474 \begin_layout Standard
12475 50.78
12476 \end_layout
12477
12478 \end_inset
12479 </cell>
12480 </row>
12481 <row bottomline="true">
12482 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12483 \begin_inset Text
12484
12485 \begin_layout Standard
12486 in % of pixel size
12487 \end_layout
12488
12489 \end_inset
12490 </cell>
12491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12492 \begin_inset Text
12493
12494 \begin_layout Standard
12495 76.3
12496 \end_layout
12497
12498 \end_inset
12499 </cell>
12500 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12501 \begin_inset Text
12502
12503 \begin_layout Standard
12504 95.9
12505 \end_layout
12506
12507 \end_inset
12508 </cell>
12509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12510 \begin_inset Text
12511
12512 \begin_layout Standard
12513 92.3
12514 \end_layout
12515
12516 \end_inset
12517 </cell>
12518 </row>
12519 </lyxtabular>
12520
12521 \end_inset
12522
12523
12524 \end_layout
12525
12526 \end_inset
12527
12528
12529 \end_layout
12530
12531 \begin_layout Section
12532 Alineación Vertical en Tablas
12533 \begin_inset LatexCommand index
12534 name "Tablas ! Alineación Vertical"
12535
12536 \end_inset
12537
12538
12539 \end_layout
12540
12541 \begin_layout Standard
12542 Para alinear tablas verticalmente en una línea de texto la tabla debe estar
12543  en un cuadro.
12544  Entonces el cuadro se puede alinear verticalmente como se describe en la
12545  sección\InsetSpace ~
12546
12547 \begin_inset LatexCommand ref
12548 reference "sec:Diálogo-Cuadros"
12549
12550 \end_inset
12551
12552 .
12553  
12554 \end_layout
12555
12556 \begin_layout Standard
12557 En el ejemplo siguiente las tablas están en un cuadro de minipágina
12558 \begin_inset Foot
12559 status collapsed
12560
12561 \begin_layout Standard
12562 Las minipáginas se describen en la sección\InsetSpace ~
12563
12564 \begin_inset LatexCommand ref
12565 reference "sec:Minipáginas"
12566
12567 \end_inset
12568
12569 .
12570 \end_layout
12571
12572 \end_inset
12573
12574  que tiene una anchura de 15\InsetSpace \thinspace{}
12575 col%:
12576 \end_layout
12577
12578 \begin_layout Itemize
12579 test 
12580 \begin_inset Box Frameless
12581 position "t"
12582 hor_pos "c"
12583 has_inner_box 1
12584 inner_pos "c"
12585 use_parbox 0
12586 width "15col%"
12587 special "none"
12588 height "1in"
12589 height_special "totalheight"
12590 status collapsed
12591
12592 \begin_layout Standard
12593 \begin_inset Tabular
12594 <lyxtabular version="3" rows="3" columns="3">
12595 <features>
12596 <column alignment="center" valignment="top" leftline="true" width="0">
12597 <column alignment="center" valignment="top" leftline="true" width="0">
12598 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12599 <row topline="true">
12600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12601 \begin_inset Text
12602
12603 \begin_layout Standard
12604 a
12605 \end_layout
12606
12607 \end_inset
12608 </cell>
12609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12610 \begin_inset Text
12611
12612 \begin_layout Standard
12613 d
12614 \end_layout
12615
12616 \end_inset
12617 </cell>
12618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12619 \begin_inset Text
12620
12621 \begin_layout Standard
12622 g
12623 \end_layout
12624
12625 \end_inset
12626 </cell>
12627 </row>
12628 <row topline="true">
12629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12630 \begin_inset Text
12631
12632 \begin_layout Standard
12633 b
12634 \end_layout
12635
12636 \end_inset
12637 </cell>
12638 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12639 \begin_inset Text
12640
12641 \begin_layout Standard
12642 e
12643 \end_layout
12644
12645 \end_inset
12646 </cell>
12647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12648 \begin_inset Text
12649
12650 \begin_layout Standard
12651 h
12652 \end_layout
12653
12654 \end_inset
12655 </cell>
12656 </row>
12657 <row topline="true" bottomline="true">
12658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12659 \begin_inset Text
12660
12661 \begin_layout Standard
12662 c
12663 \end_layout
12664
12665 \end_inset
12666 </cell>
12667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12668 \begin_inset Text
12669
12670 \begin_layout Standard
12671 f
12672 \end_layout
12673
12674 \end_inset
12675 </cell>
12676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12677 \begin_inset Text
12678
12679 \begin_layout Standard
12680 i
12681 \end_layout
12682
12683 \end_inset
12684 </cell>
12685 </row>
12686 </lyxtabular>
12687
12688 \end_inset
12689
12690
12691 \end_layout
12692
12693 \end_inset
12694
12695  test 
12696 \begin_inset ERT
12697 status collapsed
12698
12699 \begin_layout Standard
12700
12701
12702 \backslash
12703 raisebox{0.85
12704 \backslash
12705 baselineskip}{
12706 \end_layout
12707
12708 \end_inset
12709
12710
12711 \begin_inset Box Frameless
12712 position "t"
12713 hor_pos "c"
12714 has_inner_box 1
12715 inner_pos "c"
12716 use_parbox 0
12717 width "15col%"
12718 special "none"
12719 height "1in"
12720 height_special "totalheight"
12721 status collapsed
12722
12723 \begin_layout Standard
12724 \begin_inset Tabular
12725 <lyxtabular version="3" rows="3" columns="3">
12726 <features>
12727 <column alignment="center" valignment="top" leftline="true" width="0">
12728 <column alignment="center" valignment="top" leftline="true" width="0">
12729 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12730 <row topline="true">
12731 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12732 \begin_inset Text
12733
12734 \begin_layout Standard
12735 a
12736 \end_layout
12737
12738 \end_inset
12739 </cell>
12740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12741 \begin_inset Text
12742
12743 \begin_layout Standard
12744 d
12745 \end_layout
12746
12747 \end_inset
12748 </cell>
12749 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12750 \begin_inset Text
12751
12752 \begin_layout Standard
12753 g
12754 \end_layout
12755
12756 \end_inset
12757 </cell>
12758 </row>
12759 <row topline="true">
12760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12761 \begin_inset Text
12762
12763 \begin_layout Standard
12764 b
12765 \end_layout
12766
12767 \end_inset
12768 </cell>
12769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12770 \begin_inset Text
12771
12772 \begin_layout Standard
12773 e
12774 \end_layout
12775
12776 \end_inset
12777 </cell>
12778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12779 \begin_inset Text
12780
12781 \begin_layout Standard
12782 h
12783 \end_layout
12784
12785 \end_inset
12786 </cell>
12787 </row>
12788 <row topline="true" bottomline="true">
12789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12790 \begin_inset Text
12791
12792 \begin_layout Standard
12793 c
12794 \end_layout
12795
12796 \end_inset
12797 </cell>
12798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12799 \begin_inset Text
12800
12801 \begin_layout Standard
12802 f
12803 \end_layout
12804
12805 \end_inset
12806 </cell>
12807 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12808 \begin_inset Text
12809
12810 \begin_layout Standard
12811 i
12812 \end_layout
12813
12814 \end_inset
12815 </cell>
12816 </row>
12817 </lyxtabular>
12818
12819 \end_inset
12820
12821
12822 \end_layout
12823
12824 \end_inset
12825
12826
12827 \begin_inset ERT
12828 status collapsed
12829
12830 \begin_layout Standard
12831
12832 }
12833 \end_layout
12834
12835 \end_inset
12836
12837
12838 \end_layout
12839
12840 \begin_layout Itemize
12841 test 
12842 \begin_inset Box Frameless
12843 position "c"
12844 hor_pos "c"
12845 has_inner_box 1
12846 inner_pos "c"
12847 use_parbox 0
12848 width "15col%"
12849 special "none"
12850 height "1in"
12851 height_special "totalheight"
12852 status collapsed
12853
12854 \begin_layout Standard
12855 \begin_inset Tabular
12856 <lyxtabular version="3" rows="3" columns="3">
12857 <features>
12858 <column alignment="center" valignment="top" leftline="true" width="0">
12859 <column alignment="center" valignment="top" leftline="true" width="0">
12860 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12861 <row topline="true">
12862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12863 \begin_inset Text
12864
12865 \begin_layout Standard
12866 a
12867 \end_layout
12868
12869 \end_inset
12870 </cell>
12871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12872 \begin_inset Text
12873
12874 \begin_layout Standard
12875 d
12876 \end_layout
12877
12878 \end_inset
12879 </cell>
12880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12881 \begin_inset Text
12882
12883 \begin_layout Standard
12884 g
12885 \end_layout
12886
12887 \end_inset
12888 </cell>
12889 </row>
12890 <row topline="true">
12891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12892 \begin_inset Text
12893
12894 \begin_layout Standard
12895 b
12896 \end_layout
12897
12898 \end_inset
12899 </cell>
12900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12901 \begin_inset Text
12902
12903 \begin_layout Standard
12904 e
12905 \end_layout
12906
12907 \end_inset
12908 </cell>
12909 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12910 \begin_inset Text
12911
12912 \begin_layout Standard
12913 h
12914 \end_layout
12915
12916 \end_inset
12917 </cell>
12918 </row>
12919 <row topline="true" bottomline="true">
12920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12921 \begin_inset Text
12922
12923 \begin_layout Standard
12924 c
12925 \end_layout
12926
12927 \end_inset
12928 </cell>
12929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12930 \begin_inset Text
12931
12932 \begin_layout Standard
12933 f
12934 \end_layout
12935
12936 \end_inset
12937 </cell>
12938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12939 \begin_inset Text
12940
12941 \begin_layout Standard
12942 i
12943 \end_layout
12944
12945 \end_inset
12946 </cell>
12947 </row>
12948 </lyxtabular>
12949
12950 \end_inset
12951
12952
12953 \end_layout
12954
12955 \end_inset
12956
12957
12958 \end_layout
12959
12960 \begin_layout Itemize
12961 test 
12962 \begin_inset Box Frameless
12963 position "b"
12964 hor_pos "c"
12965 has_inner_box 1
12966 inner_pos "c"
12967 use_parbox 0
12968 width "15col%"
12969 special "none"
12970 height "1in"
12971 height_special "totalheight"
12972 status collapsed
12973
12974 \begin_layout Standard
12975 \begin_inset Tabular
12976 <lyxtabular version="3" rows="3" columns="3">
12977 <features>
12978 <column alignment="center" valignment="top" leftline="true" width="0">
12979 <column alignment="center" valignment="top" leftline="true" width="0">
12980 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12981 <row topline="true">
12982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12983 \begin_inset Text
12984
12985 \begin_layout Standard
12986 a
12987 \end_layout
12988
12989 \end_inset
12990 </cell>
12991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12992 \begin_inset Text
12993
12994 \begin_layout Standard
12995 d
12996 \end_layout
12997
12998 \end_inset
12999 </cell>
13000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13001 \begin_inset Text
13002
13003 \begin_layout Standard
13004 g
13005 \end_layout
13006
13007 \end_inset
13008 </cell>
13009 </row>
13010 <row topline="true">
13011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13012 \begin_inset Text
13013
13014 \begin_layout Standard
13015 b
13016 \end_layout
13017
13018 \end_inset
13019 </cell>
13020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13021 \begin_inset Text
13022
13023 \begin_layout Standard
13024 e
13025 \end_layout
13026
13027 \end_inset
13028 </cell>
13029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13030 \begin_inset Text
13031
13032 \begin_layout Standard
13033 h
13034 \end_layout
13035
13036 \end_inset
13037 </cell>
13038 </row>
13039 <row topline="true" bottomline="true">
13040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13041 \begin_inset Text
13042
13043 \begin_layout Standard
13044 c
13045 \end_layout
13046
13047 \end_inset
13048 </cell>
13049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13050 \begin_inset Text
13051
13052 \begin_layout Standard
13053 f
13054 \end_layout
13055
13056 \end_inset
13057 </cell>
13058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13059 \begin_inset Text
13060
13061 \begin_layout Standard
13062 i
13063 \end_layout
13064
13065 \end_inset
13066 </cell>
13067 </row>
13068 </lyxtabular>
13069
13070 \end_inset
13071
13072
13073 \end_layout
13074
13075 \end_inset
13076
13077  test 
13078 \begin_inset ERT
13079 status collapsed
13080
13081 \begin_layout Standard
13082
13083
13084 \backslash
13085 raisebox{-0.32
13086 \backslash
13087 baselineskip}{
13088 \end_layout
13089
13090 \end_inset
13091
13092
13093 \begin_inset Box Frameless
13094 position "b"
13095 hor_pos "c"
13096 has_inner_box 1
13097 inner_pos "c"
13098 use_parbox 0
13099 width "15col%"
13100 special "none"
13101 height "1in"
13102 height_special "totalheight"
13103 status collapsed
13104
13105 \begin_layout Standard
13106 \begin_inset Tabular
13107 <lyxtabular version="3" rows="3" columns="3">
13108 <features>
13109 <column alignment="center" valignment="top" leftline="true" width="0">
13110 <column alignment="center" valignment="top" leftline="true" width="0">
13111 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13112 <row topline="true">
13113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13114 \begin_inset Text
13115
13116 \begin_layout Standard
13117 a
13118 \end_layout
13119
13120 \end_inset
13121 </cell>
13122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13123 \begin_inset Text
13124
13125 \begin_layout Standard
13126 d
13127 \end_layout
13128
13129 \end_inset
13130 </cell>
13131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13132 \begin_inset Text
13133
13134 \begin_layout Standard
13135 g
13136 \end_layout
13137
13138 \end_inset
13139 </cell>
13140 </row>
13141 <row topline="true">
13142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13143 \begin_inset Text
13144
13145 \begin_layout Standard
13146 b
13147 \end_layout
13148
13149 \end_inset
13150 </cell>
13151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13152 \begin_inset Text
13153
13154 \begin_layout Standard
13155 e
13156 \end_layout
13157
13158 \end_inset
13159 </cell>
13160 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13161 \begin_inset Text
13162
13163 \begin_layout Standard
13164 h
13165 \end_layout
13166
13167 \end_inset
13168 </cell>
13169 </row>
13170 <row topline="true" bottomline="true">
13171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13172 \begin_inset Text
13173
13174 \begin_layout Standard
13175 c
13176 \end_layout
13177
13178 \end_inset
13179 </cell>
13180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13181 \begin_inset Text
13182
13183 \begin_layout Standard
13184 f
13185 \end_layout
13186
13187 \end_inset
13188 </cell>
13189 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13190 \begin_inset Text
13191
13192 \begin_layout Standard
13193 i
13194 \end_layout
13195
13196 \end_inset
13197 </cell>
13198 </row>
13199 </lyxtabular>
13200
13201 \end_inset
13202
13203
13204 \end_layout
13205
13206 \end_inset
13207
13208
13209 \begin_inset ERT
13210 status collapsed
13211
13212 \begin_layout Standard
13213
13214 }
13215 \end_layout
13216
13217 \end_inset
13218
13219
13220 \end_layout
13221
13222 \begin_layout Standard
13223 Como ves, los contenidos de la primera y última filas no se alinean correctament
13224 e con la línea de texto donde está la tabla.
13225  Para conseguir esta alineación, el cuadro (minipágina) debe ponerse en
13226  un cuadro elevado (
13227 \begin_inset Quotes eld
13228 \end_inset
13229
13230 raisebox
13231 \begin_inset Quotes erd
13232 \end_inset
13233
13234 )
13235 \begin_inset Foot
13236 status collapsed
13237
13238 \begin_layout Standard
13239 El uso del comando 
13240 \series bold
13241
13242 \backslash
13243 raisebox
13244 \series default
13245  se explica en la sección\InsetSpace ~
13246
13247 \begin_inset LatexCommand ref
13248 reference "sub:Alineación-Vertical"
13249
13250 \end_inset
13251
13252 .
13253 \end_layout
13254
13255 \end_inset
13256
13257 .
13258  En el ejemplo anterior, la segunda tabla del primer ítem está alineada
13259  usando el comando en ERT
13260 \end_layout
13261
13262 \begin_layout Standard
13263
13264 \series bold
13265
13266 \backslash
13267 raisebox{0.85
13268 \backslash
13269 baselineskip}{
13270 \end_layout
13271
13272 \begin_layout Standard
13273 antes del cuadro.
13274  Tras él, se pone la llave de cierre 
13275 \series bold
13276 }
13277 \series default
13278  también como ERT.
13279  Para la segunda tabla en el tercer ítem se usa el comando 
13280 \end_layout
13281
13282 \begin_layout Standard
13283
13284 \series bold
13285
13286 \backslash
13287 raisebox{-0.32
13288 \backslash
13289 baselineskip}{
13290 \end_layout
13291
13292 \begin_layout Standard
13293 \begin_inset Note Greyedout
13294 status open
13295
13296 \begin_layout Standard
13297
13298 \series bold
13299 Not
13300 \series default
13301 a: La alineación del contenido de la fila con la línea del texto adyacente
13302  no es exacta.
13303  El factor necesario del comando 
13304 \series bold
13305
13306 \backslash
13307 raisebox
13308 \series default
13309  para este alineamiento depende de la fuente del documento, del tamaño de
13310  la fuente y del grosor de línea de la tabla.
13311 \end_layout
13312
13313 \end_inset
13314
13315
13316 \end_layout
13317
13318 \begin_layout Section
13319 Tablas Coloreadas
13320 \begin_inset LatexCommand label
13321 name "sec:Tablas-Coloreadas"
13322
13323 \end_inset
13324
13325
13326 \begin_inset LatexCommand index
13327 name "Tablas ! Coloreadas"
13328
13329 \end_inset
13330
13331
13332 \end_layout
13333
13334 \begin_layout Subsection
13335 Celdas Coloreadas
13336 \begin_inset LatexCommand index
13337 name "Tablas Coloreadas ! Celdas"
13338
13339 \end_inset
13340
13341
13342 \begin_inset LatexCommand index
13343 name "Color ! en Celdas de Tablas"
13344
13345 \end_inset
13346
13347
13348 \end_layout
13349
13350 \begin_layout Standard
13351 \begin_inset Float table
13352 placement h
13353 wide false
13354 sideways false
13355 status open
13356
13357 \begin_layout Standard
13358 \begin_inset Caption
13359
13360 \begin_layout Standard
13361 \begin_inset LatexCommand label
13362 name "tab:Tabla-coloreada-sin"
13363
13364 \end_inset
13365
13366 Tabla coloreada sin usar el paquete 
13367 \series bold
13368 colortbl
13369 \series default
13370
13371 \begin_inset OptArg
13372 status collapsed
13373
13374 \begin_layout Standard
13375 Tabla sin colortbl
13376 \end_layout
13377
13378 \end_inset
13379
13380
13381 \end_layout
13382
13383 \end_inset
13384
13385
13386 \end_layout
13387
13388 \begin_layout Standard
13389 \align center
13390 \begin_inset Tabular
13391 <lyxtabular version="3" rows="3" columns="3">
13392 <features>
13393 <column alignment="center" valignment="top" leftline="true" width="0">
13394 <column alignment="center" valignment="top" leftline="true" width="0">
13395 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13396 <row topline="true">
13397 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13398 \begin_inset Text
13399
13400 \begin_layout Standard
13401
13402 \color green
13403 a
13404 \end_layout
13405
13406 \end_inset
13407 </cell>
13408 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13409 \begin_inset Text
13410
13411 \begin_layout Standard
13412
13413 \color red
13414 b
13415 \end_layout
13416
13417 \end_inset
13418 </cell>
13419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13420 \begin_inset Text
13421
13422 \begin_layout Standard
13423
13424 \color red
13425 c
13426 \end_layout
13427
13428 \end_inset
13429 </cell>
13430 </row>
13431 <row topline="true">
13432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13433 \begin_inset Text
13434
13435 \begin_layout Standard
13436
13437 \color green
13438 d
13439 \end_layout
13440
13441 \end_inset
13442 </cell>
13443 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13444 \begin_inset Text
13445
13446 \begin_layout Standard
13447
13448 \color blue
13449 e
13450 \end_layout
13451
13452 \end_inset
13453 </cell>
13454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13455 \begin_inset Text
13456
13457 \begin_layout Standard
13458
13459 \color blue
13460 f
13461 \end_layout
13462
13463 \end_inset
13464 </cell>
13465 </row>
13466 <row topline="true" bottomline="true">
13467 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13468 \begin_inset Text
13469
13470 \begin_layout Standard
13471
13472 \color green
13473 g
13474 \end_layout
13475
13476 \end_inset
13477 </cell>
13478 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13479 \begin_inset Text
13480
13481 \begin_layout Standard
13482
13483 \color blue
13484 h
13485 \end_layout
13486
13487 \end_inset
13488 </cell>
13489 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13490 \begin_inset Text
13491
13492 \begin_layout Standard
13493
13494 \color blue
13495 i
13496 \end_layout
13497
13498 \end_inset
13499 </cell>
13500 </row>
13501 </lyxtabular>
13502
13503 \end_inset
13504
13505
13506 \end_layout
13507
13508 \end_inset
13509
13510
13511 \end_layout
13512
13513 \begin_layout Standard
13514 Si solo necesitas color en el texto, marca las celdas y elige un color en
13515  el menú 
13516 \family sans
13517 Editar\SpecialChar \menuseparator
13518 Estilo\InsetSpace ~
13519 del\InsetSpace ~
13520 Texto
13521 \family default
13522 .
13523  Esto se ha hecho en la tabla\InsetSpace ~
13524
13525 \begin_inset LatexCommand ref
13526 reference "tab:Tabla-coloreada-sin"
13527
13528 \end_inset
13529
13530 .
13531  En cualquier otro caso hay que usar el paquete LaTeX 
13532 \series bold
13533 colortbl
13534 \series default
13535 .
13536 \begin_inset LatexCommand index
13537 name "LaTeX-paquetes ! colortbl"
13538
13539 \end_inset
13540
13541
13542 \end_layout
13543
13544 \begin_layout Standard
13545 Para crear tablas coloreadas, 
13546 \series bold
13547 colortbl
13548 \series default
13549  debe cargarse en el preámbulo con la línea
13550 \end_layout
13551
13552 \begin_layout Standard
13553
13554 \series bold
13555
13556 \backslash
13557 usepackage{colortbl}
13558 \end_layout
13559
13560 \begin_layout Standard
13561 El color de una columna se define con el comando
13562 \end_layout
13563
13564 \begin_layout Standard
13565
13566 \series bold
13567
13568 \backslash
13569 columncolor{nombre del color}
13570 \end_layout
13571
13572 \begin_layout Standard
13573 dentro del comando 
13574 \series bold
13575 >{ }
13576 \series default
13577 .
13578  Más sobre el comando 
13579 \series bold
13580 >{}
13581 \series default
13582  se explica en la sección\InsetSpace ~
13583
13584 \begin_inset LatexCommand ref
13585 reference "sub:Cálculos-en-Multicolumnas"
13586
13587 \end_inset
13588
13589 .
13590 \end_layout
13591
13592 \begin_layout Standard
13593 Los siguientes nombres de color están predefinidos:
13594 \end_layout
13595
13596 \begin_layout Standard
13597
13598 \family sans
13599 red
13600 \family default
13601
13602 \family sans
13603 green
13604 \family default
13605
13606 \family sans
13607 yellow, blue
13608 \family default
13609
13610 \family sans
13611 cyan
13612 \family default
13613 \series bold
13614 ,
13615 \series default
13616  
13617 \family sans
13618 magenta, black
13619 \family default
13620
13621 \family sans
13622 white
13623 \end_layout
13624
13625 \begin_layout Standard
13626 \begin_inset VSpace medskip
13627 \end_inset
13628
13629
13630 \end_layout
13631
13632 \begin_layout Standard
13633 Puedes definir tus propios colores con el comando
13634 \end_layout
13635
13636 \begin_layout Standard
13637
13638 \series bold
13639
13640 \backslash
13641 def\SpecialChar \textcompwordmark{}
13642 inecolor{nombre del color}{modelo de color}{valores de color}
13643 \end_layout
13644
13645 \begin_layout Standard
13646 El modelo de color puede ser
13647 \end_layout
13648
13649 \begin_layout Labeling
13650 \labelwidthstring 00.00.0000
13651 cmyk: cyan, magenta, yellow, black
13652 \end_layout
13653
13654 \begin_layout Labeling
13655 \labelwidthstring 00.00.0000
13656 rgb: red, green, blue
13657 \end_layout
13658
13659 \begin_layout Labeling
13660 \labelwidthstring 00.00.0000
13661 gray: gray
13662 \end_layout
13663
13664 \begin_layout Standard
13665 y los valores de color son números separados por comas entre 0 y 1 que describen
13666  el factor para el color correspondiente del modelo de color.
13667 \end_layout
13668
13669 \begin_layout Standard
13670 Por ejemplo, puedes definir el color
13671 \series bold
13672  
13673 \series default
13674
13675 \begin_inset Quotes eld
13676 \end_inset
13677
13678
13679 \emph on
13680 verde oscuro
13681 \emph default
13682
13683 \begin_inset Quotes erd
13684 \end_inset
13685
13686  en el preámbulo con
13687 \end_layout
13688
13689 \begin_layout Standard
13690
13691 \series bold
13692
13693 \backslash
13694 def\SpecialChar \textcompwordmark{}
13695 inecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
13696 \end_layout
13697
13698 \begin_layout Standard
13699 y el color 
13700 \begin_inset Quotes eld
13701 \end_inset
13702
13703
13704 \emph on
13705 gris claro
13706 \emph default
13707
13708 \begin_inset Quotes erd
13709 \end_inset
13710
13711  con
13712 \end_layout
13713
13714 \begin_layout Standard
13715
13716 \series bold
13717
13718 \backslash
13719 def\SpecialChar \textcompwordmark{}
13720 inecolor{grisclaro}{gray}{0.8}
13721 \end_layout
13722
13723 \begin_layout Standard
13724 \begin_inset VSpace medskip
13725 \end_inset
13726
13727
13728 \end_layout
13729
13730 \begin_layout Standard
13731 Las líneas se colorean con el comando
13732 \end_layout
13733
13734 \begin_layout Standard
13735
13736 \series bold
13737
13738 \backslash
13739 rowcolor{nombre del color}
13740 \end_layout
13741
13742 \begin_layout Standard
13743 y las celdas se colorean con el comando
13744 \end_layout
13745
13746 \begin_layout Standard
13747
13748 \series bold
13749
13750 \backslash
13751 cellcolor{nombre del color}
13752 \end_layout
13753
13754 \begin_layout Standard
13755 Ambos comandos se insertan al principio de una celda como ERT.
13756 \end_layout
13757
13758 \begin_layout Standard
13759 Para colorear caracteres en la tabla marca las celdas y usa el menú 
13760 \family sans
13761 Editar\SpecialChar \menuseparator
13762 Estilo\InsetSpace ~
13763 del\InsetSpace ~
13764 Texto
13765 \family default
13766 .
13767  Si una celda contiene ERT marca solo los caracteres, si no el ERT con color
13768  puede ocasionar errores de LaTeX.
13769 \end_layout
13770
13771 \begin_layout Standard
13772 \begin_inset VSpace bigskip
13773 \end_inset
13774
13775
13776 \end_layout
13777
13778 \begin_layout Standard
13779 Para crear la tabla\InsetSpace ~
13780
13781 \begin_inset LatexCommand ref
13782 reference "tab:Tabla-coloreada-con"
13783
13784 \end_inset
13785
13786  haz lo siguiente: el color de la primera columna debe ser 
13787 \emph on
13788 verde oscuro
13789 \emph default
13790 , entonces inserta
13791 \end_layout
13792
13793 \begin_layout Standard
13794
13795 \series bold
13796 >{
13797 \backslash
13798 columncolor{verdeoscuro}
13799 \backslash
13800 centering}c
13801 \end_layout
13802
13803 \begin_layout Standard
13804 como argumento LaTeX para esta columna.
13805  La primera fila debe ser azul, por tanto inserta el comando ERT
13806 \end_layout
13807
13808 \begin_layout Standard
13809
13810 \series bold
13811
13812 \backslash
13813 rowcolow{cyan}
13814 \end_layout
13815
13816 \begin_layout Standard
13817 en la primera celda de esta fila.
13818  Observa que esto sobreescribe el color de la columna para la primera celda.
13819  La última celda de la última fila se colorea magenta insertando el comando
13820  ERT
13821 \end_layout
13822
13823 \begin_layout Standard
13824
13825 \series bold
13826
13827 \backslash
13828 cellcolor{magenta}
13829 \end_layout
13830
13831 \begin_layout Standard
13832 Ahora podrían colorearse los caracteres usando el menú 
13833 \family sans
13834 Editar\SpecialChar \menuseparator
13835 Estilo\InsetSpace ~
13836 del\InsetSpace ~
13837 Texto
13838 \family default
13839 .
13840 \end_layout
13841
13842 \begin_layout Standard
13843 \begin_inset Float table
13844 placement h
13845 wide false
13846 sideways false
13847 status open
13848
13849 \begin_layout Standard
13850 \begin_inset Caption
13851
13852 \begin_layout Standard
13853 \begin_inset LatexCommand label
13854 name "tab:Tabla-coloreada-con"
13855
13856 \end_inset
13857
13858 Tabla coloreada usando el paquete 
13859 \series bold
13860 colortbl
13861 \series default
13862
13863 \begin_inset OptArg
13864 status collapsed
13865
13866 \begin_layout Standard
13867 Tabla con colortbl
13868 \end_layout
13869
13870 \end_inset
13871
13872
13873 \end_layout
13874
13875 \end_inset
13876
13877
13878 \end_layout
13879
13880 \begin_layout Standard
13881 \align center
13882 \begin_inset Tabular
13883 <lyxtabular version="3" rows="3" columns="3">
13884 <features>
13885 <column alignment="center" valignment="top" width="0" special=">{\columncolor{verdeoscuro}\centering}c">
13886 <column alignment="center" valignment="top" width="0">
13887 <column alignment="center" valignment="top" width="0">
13888 <row>
13889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13890 \begin_inset Text
13891
13892 \begin_layout Standard
13893 \begin_inset ERT
13894 status collapsed
13895
13896 \begin_layout Standard
13897
13898
13899 \backslash
13900 rowcolor{cyan}
13901 \end_layout
13902
13903 \end_inset
13904
13905
13906 \color magenta
13907 a
13908 \end_layout
13909
13910 \end_inset
13911 </cell>
13912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13913 \begin_inset Text
13914
13915 \begin_layout Standard
13916
13917 \color red
13918 b
13919 \end_layout
13920
13921 \end_inset
13922 </cell>
13923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13924 \begin_inset Text
13925
13926 \begin_layout Standard
13927
13928 \color red
13929 c
13930 \end_layout
13931
13932 \end_inset
13933 </cell>
13934 </row>
13935 <row>
13936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13937 \begin_inset Text
13938
13939 \begin_layout Standard
13940
13941 \color yellow
13942 d
13943 \end_layout
13944
13945 \end_inset
13946 </cell>
13947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13948 \begin_inset Text
13949
13950 \begin_layout Standard
13951
13952 \color blue
13953 e
13954 \end_layout
13955
13956 \end_inset
13957 </cell>
13958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13959 \begin_inset Text
13960
13961 \begin_layout Standard
13962
13963 \color blue
13964 f
13965 \end_layout
13966
13967 \end_inset
13968 </cell>
13969 </row>
13970 <row>
13971 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13972 \begin_inset Text
13973
13974 \begin_layout Standard
13975
13976 \color yellow
13977 g
13978 \end_layout
13979
13980 \end_inset
13981 </cell>
13982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13983 \begin_inset Text
13984
13985 \begin_layout Standard
13986
13987 \color blue
13988 h
13989 \end_layout
13990
13991 \end_inset
13992 </cell>
13993 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13994 \begin_inset Text
13995
13996 \begin_layout Standard
13997 \begin_inset ERT
13998 status collapsed
13999
14000 \begin_layout Standard
14001
14002
14003 \backslash
14004 cellcolor{magenta}
14005 \end_layout
14006
14007 \end_inset
14008
14009
14010 \color green
14011 i
14012 \end_layout
14013
14014 \end_inset
14015 </cell>
14016 </row>
14017 </lyxtabular>
14018
14019 \end_inset
14020
14021
14022 \end_layout
14023
14024 \end_inset
14025
14026
14027 \end_layout
14028
14029 \begin_layout Subsection
14030 Líneas coloreadas
14031 \begin_inset LatexCommand index
14032 name "Tablas Coloreadas ! Líneas"
14033
14034 \end_inset
14035
14036
14037 \begin_inset LatexCommand index
14038 name "Color ! en Líneas de Tabla"
14039
14040 \end_inset
14041
14042
14043 \end_layout
14044
14045 \begin_layout Standard
14046 Como se describe en la sección\InsetSpace ~
14047
14048 \begin_inset LatexCommand ref
14049 reference "sub:Grosor-de-Líneas"
14050
14051 \end_inset
14052
14053 , el grosor para todas las líneas en una tabla puede ajustarse con el comando
14054  
14055 \series bold
14056
14057 \backslash
14058 arrayrulewidth
14059 \series default
14060 .
14061  Se ha puesto 1.5\InsetSpace \thinspace{}
14062 pt para todas las tablas de esta sección.
14063 \begin_inset ERT
14064 status collapsed
14065
14066 \begin_layout Standard
14067
14068
14069 \backslash
14070 setlength{
14071 \backslash
14072 arrayrulewidth}{1.5pt}
14073 \end_layout
14074
14075 \end_inset
14076
14077
14078 \end_layout
14079
14080 \begin_layout Standard
14081 Por ejemplo, para colorear todas las líneas verticales en verde, crea en
14082  el preámbulo del documento el siguiente formato de columna, de acuerdo
14083  a lo descrito en la sección\InsetSpace ~
14084
14085 \begin_inset LatexCommand ref
14086 reference "sub:Formato-Personalizado"
14087
14088 \end_inset
14089
14090 :
14091 \end_layout
14092
14093 \begin_layout Standard
14094
14095 \series bold
14096
14097 \backslash
14098 newcolumntype{W}{!{
14099 \backslash
14100 color{green}
14101 \backslash
14102 vline}}
14103 \end_layout
14104
14105 \begin_layout Standard
14106 Para la tabla\InsetSpace ~
14107
14108 \begin_inset LatexCommand ref
14109 reference "tab:Tabla-con-verticales-coloreadas"
14110
14111 \end_inset
14112
14113  se usó el argumento LaTeX
14114 \end_layout
14115
14116 \begin_layout Standard
14117
14118 \series bold
14119 WcW
14120 \end_layout
14121
14122 \begin_layout Standard
14123 para la última columna y
14124 \end_layout
14125
14126 \begin_layout Standard
14127
14128 \series bold
14129 Wc
14130 \end_layout
14131
14132 \begin_layout Standard
14133 para las demás.
14134 \end_layout
14135
14136 \begin_layout Standard
14137 Si quieres tener varios colores, define más formatos de columna.
14138 \end_layout
14139
14140 \begin_layout Standard
14141 \begin_inset Float table
14142 wide false
14143 sideways false
14144 status open
14145
14146 \begin_layout Standard
14147 \begin_inset Caption
14148
14149 \begin_layout Standard
14150 \begin_inset LatexCommand label
14151 name "tab:Tabla-con-verticales-coloreadas"
14152
14153 \end_inset
14154
14155 Tabla con líneas verticales coloreadas
14156 \end_layout
14157
14158 \end_inset
14159
14160
14161 \end_layout
14162
14163 \begin_layout Standard
14164 \align center
14165 \begin_inset Tabular
14166 <lyxtabular version="3" rows="3" columns="3">
14167 <features>
14168 <column alignment="center" valignment="top" width="0" special="Wc">
14169 <column alignment="center" valignment="top" width="0" special="Wc">
14170 <column alignment="center" valignment="top" width="0" special="WcW">
14171 <row topline="true">
14172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14173 \begin_inset Text
14174
14175 \begin_layout Standard
14176 sd
14177 \end_layout
14178
14179 \end_inset
14180 </cell>
14181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14182 \begin_inset Text
14183
14184 \begin_layout Standard
14185
14186 \end_layout
14187
14188 \end_inset
14189 </cell>
14190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14191 \begin_inset Text
14192
14193 \begin_layout Standard
14194
14195 \end_layout
14196
14197 \end_inset
14198 </cell>
14199 </row>
14200 <row topline="true">
14201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14202 \begin_inset Text
14203
14204 \begin_layout Standard
14205
14206 \end_layout
14207
14208 \end_inset
14209 </cell>
14210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14211 \begin_inset Text
14212
14213 \begin_layout Standard
14214 sd
14215 \end_layout
14216
14217 \end_inset
14218 </cell>
14219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14220 \begin_inset Text
14221
14222 \begin_layout Standard
14223
14224 \end_layout
14225
14226 \end_inset
14227 </cell>
14228 </row>
14229 <row topline="true" bottomline="true">
14230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14231 \begin_inset Text
14232
14233 \begin_layout Standard
14234
14235 \end_layout
14236
14237 \end_inset
14238 </cell>
14239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14240 \begin_inset Text
14241
14242 \begin_layout Standard
14243
14244 \end_layout
14245
14246 \end_inset
14247 </cell>
14248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14249 \begin_inset Text
14250
14251 \begin_layout Standard
14252 sd
14253 \end_layout
14254
14255 \end_inset
14256 </cell>
14257 </row>
14258 </lyxtabular>
14259
14260 \end_inset
14261
14262
14263 \end_layout
14264
14265 \end_inset
14266
14267
14268 \end_layout
14269
14270 \begin_layout Standard
14271 \begin_inset VSpace bigskip
14272 \end_inset
14273
14274 Para colorear líneas horizontales, por ejemplo en rojo, como en la tabla\InsetSpace ~
14275
14276 \begin_inset LatexCommand ref
14277 reference "tab:Tabla-con-horizontales-coloreadas"
14278
14279 \end_inset
14280
14281 , inserta estos comandos en ERT antes de la tabla o del flotante:
14282 \end_layout
14283
14284 \begin_layout Standard
14285
14286 \series bold
14287
14288 \backslash
14289 let
14290 \backslash
14291 myHlineC
14292 \backslash
14293 hline
14294 \newline
14295
14296 \backslash
14297 renewcommand{
14298 \backslash
14299 hline}{
14300 \backslash
14301 arrayrulecolor{red}
14302 \backslash
14303 myHlineC
14304 \backslash
14305 arrayrulecolor{black}}
14306 \end_layout
14307
14308 \begin_layout Standard
14309 \begin_inset ERT
14310 status collapsed
14311
14312 \begin_layout Standard
14313
14314
14315 \backslash
14316 let
14317 \backslash
14318 myHlineC
14319 \backslash
14320 hline
14321 \end_layout
14322
14323 \begin_layout Standard
14324
14325
14326 \backslash
14327 renewcommand{
14328 \backslash
14329 hline}{
14330 \backslash
14331 arrayrulecolor{red}
14332 \backslash
14333 myHlineC
14334 \backslash
14335 arrayrulecolor{black}}
14336 \end_layout
14337
14338 \end_inset
14339
14340
14341 \begin_inset Float table
14342 wide false
14343 sideways false
14344 status open
14345
14346 \begin_layout Standard
14347 \begin_inset Caption
14348
14349 \begin_layout Standard
14350 \begin_inset LatexCommand label
14351 name "tab:Tabla-con-horizontales-coloreadas"
14352
14353 \end_inset
14354
14355 Tabla con líneas horizontales coloreadas
14356 \end_layout
14357
14358 \end_inset
14359
14360
14361 \end_layout
14362
14363 \begin_layout Standard
14364 \align center
14365 \begin_inset Tabular
14366 <lyxtabular version="3" rows="3" columns="3">
14367 <features>
14368 <column alignment="center" valignment="top" leftline="true" width="0">
14369 <column alignment="center" valignment="top" leftline="true" width="0">
14370 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14371 <row topline="true">
14372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14373 \begin_inset Text
14374
14375 \begin_layout Standard
14376 sd
14377 \end_layout
14378
14379 \end_inset
14380 </cell>
14381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14382 \begin_inset Text
14383
14384 \begin_layout Standard
14385
14386 \end_layout
14387
14388 \end_inset
14389 </cell>
14390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14391 \begin_inset Text
14392
14393 \begin_layout Standard
14394
14395 \end_layout
14396
14397 \end_inset
14398 </cell>
14399 </row>
14400 <row topline="true">
14401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14402 \begin_inset Text
14403
14404 \begin_layout Standard
14405
14406 \end_layout
14407
14408 \end_inset
14409 </cell>
14410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14411 \begin_inset Text
14412
14413 \begin_layout Standard
14414 sd
14415 \end_layout
14416
14417 \end_inset
14418 </cell>
14419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14420 \begin_inset Text
14421
14422 \begin_layout Standard
14423
14424 \end_layout
14425
14426 \end_inset
14427 </cell>
14428 </row>
14429 <row topline="true" bottomline="true">
14430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14431 \begin_inset Text
14432
14433 \begin_layout Standard
14434
14435 \end_layout
14436
14437 \end_inset
14438 </cell>
14439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14440 \begin_inset Text
14441
14442 \begin_layout Standard
14443
14444 \end_layout
14445
14446 \end_inset
14447 </cell>
14448 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14449 \begin_inset Text
14450
14451 \begin_layout Standard
14452 sd
14453 \end_layout
14454
14455 \end_inset
14456 </cell>
14457 </row>
14458 </lyxtabular>
14459
14460 \end_inset
14461
14462
14463 \end_layout
14464
14465 \end_inset
14466
14467
14468 \end_layout
14469
14470 \begin_layout Standard
14471 \begin_inset ERT
14472 status collapsed
14473
14474 \begin_layout Standard
14475
14476
14477 \backslash
14478 pagebreak 
14479 \end_layout
14480
14481 \end_inset
14482
14483
14484 \end_layout
14485
14486 \begin_layout Standard
14487 Para volver al color de línea negro predeterminado inserta este comando
14488  en ERT detrás de la tabla o el flotante:
14489 \end_layout
14490
14491 \begin_layout Standard
14492
14493 \series bold
14494
14495 \backslash
14496 renewcommand{
14497 \backslash
14498 hline}{
14499 \backslash
14500 myHlineC}
14501 \end_layout
14502
14503 \begin_layout Standard
14504 La tabla\InsetSpace ~
14505
14506 \begin_inset LatexCommand ref
14507 reference "tab:Tabla-con-líneas-coloreadas"
14508
14509 \end_inset
14510
14511  es un ejemplo con líneas verticales y horizontales coloreadas.
14512 \end_layout
14513
14514 \begin_layout Standard
14515 \begin_inset Float table
14516 wide false
14517 sideways false
14518 status open
14519
14520 \begin_layout Standard
14521 \begin_inset Caption
14522
14523 \begin_layout Standard
14524 \begin_inset LatexCommand label
14525 name "tab:Tabla-con-líneas-coloreadas"
14526
14527 \end_inset
14528
14529 Tabla con líneas coloreadas
14530 \end_layout
14531
14532 \end_inset
14533
14534
14535 \end_layout
14536
14537 \begin_layout Standard
14538 \align center
14539 \begin_inset Tabular
14540 <lyxtabular version="3" rows="3" columns="3">
14541 <features>
14542 <column alignment="center" valignment="top" width="0" special="Wc">
14543 <column alignment="center" valignment="top" width="0" special="Wc">
14544 <column alignment="center" valignment="top" width="0" special="WcW">
14545 <row topline="true">
14546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14547 \begin_inset Text
14548
14549 \begin_layout Standard
14550 sd
14551 \end_layout
14552
14553 \end_inset
14554 </cell>
14555 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14556 \begin_inset Text
14557
14558 \begin_layout Standard
14559
14560 \end_layout
14561
14562 \end_inset
14563 </cell>
14564 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14565 \begin_inset Text
14566
14567 \begin_layout Standard
14568
14569 \end_layout
14570
14571 \end_inset
14572 </cell>
14573 </row>
14574 <row topline="true">
14575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14576 \begin_inset Text
14577
14578 \begin_layout Standard
14579
14580 \end_layout
14581
14582 \end_inset
14583 </cell>
14584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14585 \begin_inset Text
14586
14587 \begin_layout Standard
14588 sd
14589 \end_layout
14590
14591 \end_inset
14592 </cell>
14593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14594 \begin_inset Text
14595
14596 \begin_layout Standard
14597
14598 \end_layout
14599
14600 \end_inset
14601 </cell>
14602 </row>
14603 <row topline="true" bottomline="true">
14604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14605 \begin_inset Text
14606
14607 \begin_layout Standard
14608
14609 \end_layout
14610
14611 \end_inset
14612 </cell>
14613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14614 \begin_inset Text
14615
14616 \begin_layout Standard
14617
14618 \end_layout
14619
14620 \end_inset
14621 </cell>
14622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14623 \begin_inset Text
14624
14625 \begin_layout Standard
14626 sd
14627 \end_layout
14628
14629 \end_inset
14630 </cell>
14631 </row>
14632 </lyxtabular>
14633
14634 \end_inset
14635
14636
14637 \end_layout
14638
14639 \end_inset
14640
14641
14642 \end_layout
14643
14644 \begin_layout Standard
14645 \begin_inset ERT
14646 status collapsed
14647
14648 \begin_layout Standard
14649
14650
14651 \backslash
14652 renewcommand{
14653 \backslash
14654 hline}{
14655 \backslash
14656 myHlineC}
14657 \end_layout
14658
14659 \end_inset
14660
14661
14662 \end_layout
14663
14664 \begin_layout Standard
14665 \begin_inset ERT
14666 status collapsed
14667
14668 \begin_layout Standard
14669
14670
14671 \backslash
14672 setlength{
14673 \backslash
14674 arrayrulewidth}{0.4pt}
14675 \end_layout
14676
14677 \end_inset
14678
14679
14680 \end_layout
14681
14682 \begin_layout Section
14683 Personalización de Tablas
14684 \begin_inset LatexCommand index
14685 name "Personalización de Tablas"
14686
14687 \end_inset
14688
14689
14690 \begin_inset LatexCommand index
14691 name "Tablas ! Personalización"
14692
14693 \end_inset
14694
14695
14696 \end_layout
14697
14698 \begin_layout Subsection
14699 Espacio Adicional en Filas
14700 \begin_inset LatexCommand label
14701 name "sub:Espacio-adicional"
14702
14703 \end_inset
14704
14705
14706 \begin_inset LatexCommand index
14707 name "Personalización de Tablas ! Espacio Adicional en Filas"
14708
14709 \end_inset
14710
14711
14712 \end_layout
14713
14714 \begin_layout Standard
14715 Es posible añadir espacio vertical a las filas de una tabla en la solapa
14716  
14717 \family sans
14718 Bordes,
14719 \family default
14720  del diálogo de configuración de tablas.
14721  En el marco 
14722 \family sans
14723 Espacio\InsetSpace ~
14724 adicional
14725 \family default
14726  dispones de tres posibilidades:
14727 \end_layout
14728
14729 \begin_layout Description
14730 Superior\InsetSpace ~
14731 de\InsetSpace ~
14732 la\InsetSpace ~
14733 fila añade espacio sobre los caracteres de la fila.
14734  Si la tabla es de estilo formal
14735 \begin_inset Foot
14736 status collapsed
14737
14738 \begin_layout Standard
14739 Las tablas formales se explican en la sección\InsetSpace ~
14740
14741 \begin_inset LatexCommand ref
14742 reference "sec:Tablas-Formales"
14743
14744 \end_inset
14745
14746
14747 \end_layout
14748
14749 \end_inset
14750
14751  LyX insertará 0.5\InsetSpace \thinspace{}
14752 em por defecto.
14753  Si la tabla es de estilo normal el espacio adicional destruirá las líneas
14754  verticales, como se ve en la tabla siguiente:
14755 \begin_inset VSpace defskip
14756 \end_inset
14757
14758
14759 \newline
14760
14761 \begin_inset ERT
14762 status collapsed
14763
14764 \begin_layout Standard
14765
14766
14767 \backslash
14768 hspace*{0pt}
14769 \end_layout
14770
14771 \end_inset
14772
14773
14774 \hfill
14775
14776 \begin_inset Tabular
14777 <lyxtabular version="3" rows="3" columns="1">
14778 <features>
14779 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14780 <row topline="true">
14781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14782 \begin_inset Text
14783
14784 \begin_layout Standard
14785 A
14786 \end_layout
14787
14788 \end_inset
14789 </cell>
14790 </row>
14791 <row topline="true" topspace="3mm">
14792 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14793 \begin_inset Text
14794
14795 \begin_layout Standard
14796 3\InsetSpace \thinspace{}
14797 mm sobre la fila
14798 \end_layout
14799
14800 \end_inset
14801 </cell>
14802 </row>
14803 <row topline="true" bottomline="true">
14804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14805 \begin_inset Text
14806
14807 \begin_layout Standard
14808 C
14809 \end_layout
14810
14811 \end_inset
14812 </cell>
14813 </row>
14814 </lyxtabular>
14815
14816 \end_inset
14817
14818
14819 \hfill
14820
14821 \begin_inset ERT
14822 status collapsed
14823
14824 \begin_layout Standard
14825
14826
14827 \backslash
14828 hspace*{0pt}
14829 \end_layout
14830
14831 \end_inset
14832
14833
14834 \begin_inset VSpace defskip
14835 \end_inset
14836
14837
14838 \newline
14839 Así pues, insertar espacio superior en tablas normales solo es útil en tablas
14840  sin líneas verticales.
14841 \end_layout
14842
14843 \begin_layout Description
14844 Inferior\InsetSpace ~
14845 de\InsetSpace ~
14846 la\InsetSpace ~
14847 fila añade espacio bajo los caracteres de la fila.
14848  Si la tabla es formal LyX inserta por defecto 0.5\InsetSpace \thinspace{}
14849 em; si la tabla es normal
14850  inserta 2\InsetSpace \thinspace{}
14851 pt.
14852  
14853 \end_layout
14854
14855 \begin_layout Description
14856 Entre\InsetSpace ~
14857 las\InsetSpace ~
14858 filas añade espacio entre la fila actual y la siguiente.
14859  Si la tabla es formal LyX inserta 0.5\InsetSpace \thinspace{}
14860 em por defecto.
14861  En tablas normales, el espacio adicional destruirá las líneas verticales
14862  de la tabla, como se ve en la siguiente:
14863 \begin_inset VSpace defskip
14864 \end_inset
14865
14866
14867 \newline
14868
14869 \begin_inset ERT
14870 status collapsed
14871
14872 \begin_layout Standard
14873
14874
14875 \backslash
14876 hspace*{0pt}
14877 \end_layout
14878
14879 \end_inset
14880
14881
14882 \hfill
14883
14884 \begin_inset Tabular
14885 <lyxtabular version="3" rows="3" columns="1">
14886 <features>
14887 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14888 <row topline="true">
14889 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14890 \begin_inset Text
14891
14892 \begin_layout Standard
14893 A
14894 \end_layout
14895
14896 \end_inset
14897 </cell>
14898 </row>
14899 <row topline="true" interlinespace="3mm">
14900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14901 \begin_inset Text
14902
14903 \begin_layout Standard
14904 \begin_inset Formula $\downarrow$
14905 \end_inset
14906
14907  3\InsetSpace \thinspace{}
14908 mm entre las filas
14909 \end_layout
14910
14911 \end_inset
14912 </cell>
14913 </row>
14914 <row topline="true" bottomline="true">
14915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14916 \begin_inset Text
14917
14918 \begin_layout Standard
14919 \begin_inset Formula $\uparrow$
14920 \end_inset
14921
14922  3\InsetSpace \thinspace{}
14923 mm entre las filas 
14924 \begin_inset Formula $\uparrow$
14925 \end_inset
14926
14927
14928 \end_layout
14929
14930 \end_inset
14931 </cell>
14932 </row>
14933 </lyxtabular>
14934
14935 \end_inset
14936
14937
14938 \hfill
14939
14940 \begin_inset ERT
14941 status collapsed
14942
14943 \begin_layout Standard
14944
14945
14946 \backslash
14947 hspace*{0pt}
14948 \end_layout
14949
14950 \end_inset
14951
14952
14953 \begin_inset VSpace defskip
14954 \end_inset
14955
14956
14957 \newline
14958 Así pues, los espacios adicionales entre filas de tablas normales sólo sirven
14959  para tablas sin líneas verticales.
14960 \end_layout
14961
14962 \begin_layout Standard
14963 Para añadir altura vertical extra a todas las celdas de todas las tablas,
14964  utiliza el siguiente comando en el preámbulo:
14965 \end_layout
14966
14967 \begin_layout Standard
14968
14969 \series bold
14970
14971 \backslash
14972 setlength{
14973 \backslash
14974 extrarowheight}{altura}
14975 \end_layout
14976
14977 \begin_layout Standard
14978 Esto tiene el inconveniente de que el texto de las celdas no estará exactamente
14979  centrado en vertical.
14980 \end_layout
14981
14982 \begin_layout Standard
14983
14984 \end_layout
14985
14986 \begin_layout Subsection
14987 Alineación Especial de Celdas
14988 \begin_inset LatexCommand index
14989 name "Personalización de Tablas ! Alineación Especial de Celdas"
14990
14991 \end_inset
14992
14993
14994 \end_layout
14995
14996 \begin_layout Standard
14997 A veces mejora la presentación si las entradas en las celdas de una columna
14998  se alinean con un carácter determinado, p.\InsetSpace \thinspace{}
14999 e.\InsetSpace ~
15000 el separador decimal, como en
15001  la tabla\InsetSpace ~
15002
15003 \begin_inset LatexCommand ref
15004 reference "tab:Tabla-con-celdas-de"
15005
15006 \end_inset
15007
15008 .
15009 \end_layout
15010
15011 \begin_layout Standard
15012 \begin_inset Float table
15013 wide false
15014 sideways false
15015 status open
15016
15017 \begin_layout Standard
15018 \begin_inset Caption
15019
15020 \begin_layout Standard
15021 \begin_inset LatexCommand label
15022 name "tab:Tabla-con-celdas-de"
15023
15024 \end_inset
15025
15026 Tabla con celdas alineadas con el separador decimal.
15027 \end_layout
15028
15029 \end_inset
15030
15031
15032 \end_layout
15033
15034 \begin_layout Standard
15035 \align center
15036 \begin_inset Tabular
15037 <lyxtabular version="3" rows="4" columns="2">
15038 <features>
15039 <column alignment="right" valignment="top" width="0">
15040 <column alignment="left" valignment="top" width="0" special="@{}l">
15041 <row bottomline="true">
15042 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15043 \begin_inset Text
15044
15045 \begin_layout Standard
15046 encabezado
15047 \end_layout
15048
15049 \end_inset
15050 </cell>
15051 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15052 \begin_inset Text
15053
15054 \begin_layout Standard
15055
15056 \end_layout
15057
15058 \end_inset
15059 </cell>
15060 </row>
15061 <row>
15062 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15063 \begin_inset Text
15064
15065 \begin_layout Standard
15066 12.
15067 \end_layout
15068
15069 \end_inset
15070 </cell>
15071 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15072 \begin_inset Text
15073
15074 \begin_layout Standard
15075 6
15076 \end_layout
15077
15078 \end_inset
15079 </cell>
15080 </row>
15081 <row>
15082 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15083 \begin_inset Text
15084
15085 \begin_layout Standard
15086 0.
15087 \end_layout
15088
15089 \end_inset
15090 </cell>
15091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15092 \begin_inset Text
15093
15094 \begin_layout Standard
15095 68
15096 \end_layout
15097
15098 \end_inset
15099 </cell>
15100 </row>
15101 <row>
15102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15103 \begin_inset Text
15104
15105 \begin_layout Standard
15106 -123.
15107 \end_layout
15108
15109 \end_inset
15110 </cell>
15111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15112 \begin_inset Text
15113
15114 \begin_layout Standard
15115 0
15116 \end_layout
15117
15118 \end_inset
15119 </cell>
15120 </row>
15121 </lyxtabular>
15122
15123 \end_inset
15124
15125
15126 \end_layout
15127
15128 \end_inset
15129
15130
15131 \end_layout
15132
15133 \begin_layout Standard
15134 Esta es una tabla 4×2.
15135  El encabezado es una multicolumna centrada.
15136  La primera columna está alineada a la derecha y contiene el punto decimal
15137  y los dígitos anteriores.
15138  La segunda columna está alineada a la izquierda y contiene los dígitos
15139  posteriores al punto decimal.
15140  Para omitir el espacio que hay normalmente entre dos columnas usa el siguiente
15141  argumento LaTeX para la segunda columna:
15142 \end_layout
15143
15144 \begin_layout Standard
15145
15146 \series bold
15147 @{}l
15148 \end_layout
15149
15150 \begin_layout Standard
15151 La tabla\InsetSpace ~
15152
15153 \begin_inset LatexCommand ref
15154 reference "tab:Varias-alineaciones"
15155
15156 \end_inset
15157
15158  muestra varios ejemplos de alineación.
15159  Para alinear con el signo de relación debes añadir el segundo espacio matemátic
15160 o más pequeño al comienzo de la última columna para conseguir el espacio
15161  adecuado alrededor del signo.
15162 \end_layout
15163
15164 \begin_layout Standard
15165 \begin_inset Float table
15166 wide false
15167 sideways false
15168 status open
15169
15170 \begin_layout Standard
15171 \begin_inset Caption
15172
15173 \begin_layout Standard
15174 \begin_inset LatexCommand label
15175 name "tab:Varias-alineaciones"
15176
15177 \end_inset
15178
15179 Tabla con varias alineaciones.
15180 \end_layout
15181
15182 \end_inset
15183
15184
15185 \end_layout
15186
15187 \begin_layout Standard
15188 \align center
15189 \begin_inset Tabular
15190 <lyxtabular version="3" rows="4" columns="6">
15191 <features>
15192 <column alignment="right" valignment="top" width="0">
15193 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15194 <column alignment="right" valignment="top" width="0">
15195 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15196 <column alignment="right" valignment="top" width="0">
15197 <column alignment="left" valignment="top" width="0" special="@{}l">
15198 <row bottomline="true">
15199 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15200 \begin_inset Text
15201
15202 \begin_layout Standard
15203 unidades
15204 \end_layout
15205
15206 \end_inset
15207 </cell>
15208 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15209 \begin_inset Text
15210
15211 \begin_layout Standard
15212
15213 \end_layout
15214
15215 \end_inset
15216 </cell>
15217 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15218 \begin_inset Text
15219
15220 \begin_layout Standard
15221 exponentes
15222 \end_layout
15223
15224 \end_inset
15225 </cell>
15226 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15227 \begin_inset Text
15228
15229 \begin_layout Standard
15230
15231 \end_layout
15232
15233 \end_inset
15234 </cell>
15235 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15236 \begin_inset Text
15237
15238 \begin_layout Standard
15239 relaciones
15240 \end_layout
15241
15242 \end_inset
15243 </cell>
15244 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15245 \begin_inset Text
15246
15247 \begin_layout Standard
15248
15249 \end_layout
15250
15251 \end_inset
15252 </cell>
15253 </row>
15254 <row>
15255 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15256 \begin_inset Text
15257
15258 \begin_layout Standard
15259 12×
15260 \end_layout
15261
15262 \end_inset
15263 </cell>
15264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15265 \begin_inset Text
15266
15267 \begin_layout Standard
15268 24\InsetSpace \thinspace{}
15269 bottles
15270 \end_layout
15271
15272 \end_inset
15273 </cell>
15274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15275 \begin_inset Text
15276
15277 \begin_layout Standard
15278 \begin_inset Formula $10\cdot$
15279 \end_inset
15280
15281
15282 \end_layout
15283
15284 \end_inset
15285 </cell>
15286 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15287 \begin_inset Text
15288
15289 \begin_layout Standard
15290 \begin_inset Formula $10^{\mbox{-}17}$
15291 \end_inset
15292
15293
15294 \end_layout
15295
15296 \end_inset
15297 </cell>
15298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15299 \begin_inset Text
15300
15301 \begin_layout Standard
15302 \begin_inset Formula $\Gamma(t)\propto$
15303 \end_inset
15304
15305
15306 \end_layout
15307
15308 \end_inset
15309 </cell>
15310 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15311 \begin_inset Text
15312
15313 \begin_layout Standard
15314 \begin_inset Formula $\:\Upsilon(t)$
15315 \end_inset
15316
15317
15318 \end_layout
15319
15320 \end_inset
15321 </cell>
15322 </row>
15323 <row>
15324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15325 \begin_inset Text
15326
15327 \begin_layout Standard
15328 1024×
15329 \end_layout
15330
15331 \end_inset
15332 </cell>
15333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15334 \begin_inset Text
15335
15336 \begin_layout Standard
15337 768\InsetSpace \thinspace{}
15338 Pixels
15339 \end_layout
15340
15341 \end_inset
15342 </cell>
15343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15344 \begin_inset Text
15345
15346 \begin_layout Standard
15347 \begin_inset Formula $5.78\cdot$
15348 \end_inset
15349
15350
15351 \end_layout
15352
15353 \end_inset
15354 </cell>
15355 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15356 \begin_inset Text
15357
15358 \begin_layout Standard
15359 \begin_inset Formula $10^{7}$
15360 \end_inset
15361
15362
15363 \end_layout
15364
15365 \end_inset
15366 </cell>
15367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15368 \begin_inset Text
15369
15370 \begin_layout Standard
15371 \begin_inset Formula $A\ne$
15372 \end_inset
15373
15374
15375 \end_layout
15376
15377 \end_inset
15378 </cell>
15379 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15380 \begin_inset Text
15381
15382 \begin_layout Standard
15383 \begin_inset Formula $\: B_{\mathrm{red}}$
15384 \end_inset
15385
15386
15387 \end_layout
15388
15389 \end_inset
15390 </cell>
15391 </row>
15392 <row>
15393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15394 \begin_inset Text
15395
15396 \begin_layout Standard
15397 32×
15398 \end_layout
15399
15400 \end_inset
15401 </cell>
15402 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15403 \begin_inset Text
15404
15405 \begin_layout Standard
15406 6\InsetSpace \thinspace{}
15407 cm
15408 \end_layout
15409
15410 \end_inset
15411 </cell>
15412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15413 \begin_inset Text
15414
15415 \begin_layout Standard
15416 -
15417 \begin_inset Formula $33.5\cdot$
15418 \end_inset
15419
15420
15421 \end_layout
15422
15423 \end_inset
15424 </cell>
15425 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15426 \begin_inset Text
15427
15428 \begin_layout Standard
15429 \begin_inset Formula $10^{4}$
15430 \end_inset
15431
15432
15433 \end_layout
15434
15435 \end_inset
15436 </cell>
15437 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15438 \begin_inset Text
15439
15440 \begin_layout Standard
15441 \begin_inset Formula $\sin(\alpha)\ge$
15442 \end_inset
15443
15444
15445 \end_layout
15446
15447 \end_inset
15448 </cell>
15449 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15450 \begin_inset Text
15451
15452 \begin_layout Standard
15453 \begin_inset Formula $\:\sin(\beta)$
15454 \end_inset
15455
15456
15457 \end_layout
15458
15459 \end_inset
15460 </cell>
15461 </row>
15462 </lyxtabular>
15463
15464 \end_inset
15465
15466
15467 \end_layout
15468
15469 \end_inset
15470
15471
15472 \end_layout
15473
15474 \begin_layout Standard
15475 \begin_inset VSpace bigskip
15476 \end_inset
15477
15478 También hay un paquete LaTeX, 
15479 \series bold
15480 dcolumn
15481 \series default
15482
15483 \begin_inset LatexCommand index
15484 name "LaTeX-paquetes ! dcolumn"
15485
15486 \end_inset
15487
15488 , que permite alinear el contenido de las celdas.
15489  Pero desgraciadamente trata las entradas de celda en modo matemático y
15490  no permite fórmulas en celdas: la primera columna de la tabla\InsetSpace ~
15491
15492 \begin_inset LatexCommand ref
15493 reference "tab:Varias-alineaciones"
15494
15495 \end_inset
15496
15497  se verá con 
15498 \series bold
15499 dcolumn
15500 \series default
15501  como la primera columna en la tabla\InsetSpace ~
15502
15503 \begin_inset LatexCommand ref
15504 reference "tab:Alineaciones-con-el"
15505
15506 \end_inset
15507
15508  y solo con algunos trucos se consigue lo que se espera.
15509  La alineación de la segunda y tercera columnas de la tabla\InsetSpace ~
15510
15511 \begin_inset LatexCommand ref
15512 reference "tab:Varias-alineaciones"
15513
15514 \end_inset
15515
15516  no es posible con 
15517 \series bold
15518 dcolumn
15519 \series default
15520 .
15521 \end_layout
15522
15523 \begin_layout Standard
15524 \begin_inset Float table
15525 placement h
15526 wide false
15527 sideways false
15528 status open
15529
15530 \begin_layout Standard
15531 \begin_inset Caption
15532
15533 \begin_layout Standard
15534 \begin_inset LatexCommand label
15535 name "tab:Alineaciones-con-el"
15536
15537 \end_inset
15538
15539
15540 \begin_inset OptArg
15541 status open
15542
15543 \begin_layout Standard
15544 Tabla alineada con 
15545 \series bold
15546 dcolumn
15547 \end_layout
15548
15549 \end_inset
15550
15551 Alineaciones con el paquete LaTeX 
15552 \series bold
15553 dcolumn
15554 \series default
15555 .
15556  Se han tenido que usar unos trucos para la alineación de las columnas en
15557  la salida.
15558 \end_layout
15559
15560 \end_inset
15561
15562
15563 \end_layout
15564
15565 \begin_layout Standard
15566 \align center
15567 \begin_inset Tabular
15568 <lyxtabular version="3" rows="4" columns="3">
15569 <features>
15570 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{4.9}">
15571 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{4.9}">
15572 <column alignment="center" valignment="top" width="0" special="D{~}{\,}{9.7}">
15573 <row bottomline="true">
15574 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15575 \begin_inset Text
15576
15577 \begin_layout Standard
15578 unidades
15579 \end_layout
15580
15581 \end_inset
15582 </cell>
15583 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15584 \begin_inset Text
15585
15586 \begin_layout Standard
15587 unidades
15588 \end_layout
15589
15590 \end_inset
15591 </cell>
15592 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15593 \begin_inset Text
15594
15595 \begin_layout Standard
15596 unidades
15597 \end_layout
15598
15599 \end_inset
15600 </cell>
15601 </row>
15602 <row>
15603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15604 \begin_inset Text
15605
15606 \begin_layout Standard
15607 12x24\InsetSpace \thinspace{}
15608 bottles
15609 \end_layout
15610
15611 \end_inset
15612 </cell>
15613 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15614 \begin_inset Text
15615
15616 \begin_layout Standard
15617 12x24\InsetSpace \thinspace{}
15618
15619 \begin_inset Formula $\mbox{bottles}$
15620 \end_inset
15621
15622
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 Standard
15631 12
15632 \begin_inset ERT
15633 status collapsed
15634
15635 \begin_layout Standard
15636
15637
15638 \backslash
15639 times
15640 \end_layout
15641
15642 \end_inset
15643
15644 24~
15645 \begin_inset Formula $\mbox{bottles}$
15646 \end_inset
15647
15648
15649 \end_layout
15650
15651 \end_inset
15652 </cell>
15653 </row>
15654 <row>
15655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15656 \begin_inset Text
15657
15658 \begin_layout Standard
15659 1024x768\InsetSpace \thinspace{}
15660 Pixels
15661 \end_layout
15662
15663 \end_inset
15664 </cell>
15665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15666 \begin_inset Text
15667
15668 \begin_layout Standard
15669 1024x768\InsetSpace \thinspace{}
15670
15671 \begin_inset Formula $\mbox{Pixels}$
15672 \end_inset
15673
15674
15675 \end_layout
15676
15677 \end_inset
15678 </cell>
15679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15680 \begin_inset Text
15681
15682 \begin_layout Standard
15683 1024
15684 \begin_inset ERT
15685 status collapsed
15686
15687 \begin_layout Standard
15688
15689
15690 \backslash
15691 times
15692 \end_layout
15693
15694 \end_inset
15695
15696 768~
15697 \begin_inset Formula $\mbox{Pixels}$
15698 \end_inset
15699
15700  
15701 \end_layout
15702
15703 \end_inset
15704 </cell>
15705 </row>
15706 <row>
15707 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15708 \begin_inset Text
15709
15710 \begin_layout Standard
15711 32x6\InsetSpace \thinspace{}
15712 cm
15713 \end_layout
15714
15715 \end_inset
15716 </cell>
15717 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15718 \begin_inset Text
15719
15720 \begin_layout Standard
15721 32x6\InsetSpace \thinspace{}
15722
15723 \begin_inset Formula $\mbox{cm}$
15724 \end_inset
15725
15726
15727 \end_layout
15728
15729 \end_inset
15730 </cell>
15731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15732 \begin_inset Text
15733
15734 \begin_layout Standard
15735 32
15736 \begin_inset ERT
15737 status collapsed
15738
15739 \begin_layout Standard
15740
15741
15742 \backslash
15743 times
15744 \end_layout
15745
15746 \end_inset
15747
15748 6~
15749 \begin_inset Formula $\mbox{cm}$
15750 \end_inset
15751
15752
15753 \end_layout
15754
15755 \end_inset
15756 </cell>
15757 </row>
15758 </lyxtabular>
15759
15760 \end_inset
15761
15762
15763 \end_layout
15764
15765 \end_inset
15766
15767
15768 \end_layout
15769
15770 \begin_layout Subsection
15771 Formato Personalizado de Celda/Columna
15772 \begin_inset LatexCommand label
15773 name "sub:Formato-Personalizado"
15774
15775 \end_inset
15776
15777
15778 \begin_inset LatexCommand index
15779 name "Personalización de Tablas ! Formato de Celda/Columna"
15780
15781 \end_inset
15782
15783
15784 \end_layout
15785
15786 \begin_layout Standard
15787 El cálculo de la anchura necesaria para columnas extendidas descrito en
15788  la sección\InsetSpace ~
15789
15790 \begin_inset LatexCommand ref
15791 reference "sub:Cálculos-en-Multicolumnas"
15792
15793 \end_inset
15794
15795  es muy pesado si tienes varias tablas con multicolumnas.
15796  Para hacerlo más fácil, puedes definir en el preámbulo un formato de celda/colu
15797 mna aplicable a todas las tablas del documento.
15798  El formato se define con el comando
15799 \end_layout
15800
15801 \begin_layout Standard
15802
15803 \series bold
15804
15805 \backslash
15806 newcolumntype{nombre del formato}[número de argumentos]{comandos}
15807 \end_layout
15808
15809 \begin_layout Standard
15810 El nombre de formato puede ser una sola letra.
15811  Las letras 
15812 \emph on
15813 b, c, l, m, p
15814 \emph default
15815  y 
15816 \emph on
15817 r
15818 \emph default
15819  están predefinidas y no pueden usarse.
15820  Pero se permiten todas las mayúsculas.
15821 \end_layout
15822
15823 \begin_layout Standard
15824 \begin_inset VSpace medskip
15825 \end_inset
15826
15827
15828 \end_layout
15829
15830 \begin_layout Standard
15831 Para celdas multicolumna vertical y horizontalmente centradas con una anchura
15832  fija puedes definir el formato de celda
15833 \end_layout
15834
15835 \begin_layout Standard
15836
15837 \series bold
15838
15839 \backslash
15840 newcolumntype{M}[1]{>{
15841 \backslash
15842 centering
15843 \backslash
15844 hspace{0pt}}m{#1}}
15845 \end_layout
15846
15847 \begin_layout Standard
15848 donde 
15849 \series bold
15850
15851 \backslash
15852 hspace{0pt}
15853 \series default
15854  evita el problema de partir con guión la primera palabra, como se describe
15855  en la sección\InsetSpace ~
15856
15857 \begin_inset LatexCommand ref
15858 reference "sub:Líneas-Múltiples-en"
15859
15860 \end_inset
15861
15862 .
15863  Ahora puedes introducir simplemente
15864 \end_layout
15865
15866 \begin_layout Standard
15867
15868 \series bold
15869 M{ancho}
15870 \end_layout
15871
15872 \begin_layout Standard
15873 como argumento LaTeX en el diálogo de tabla para crear una multicolumna.
15874 \end_layout
15875
15876 \begin_layout Standard
15877 \begin_inset VSpace bigskip
15878 \end_inset
15879
15880
15881 \end_layout
15882
15883 \begin_layout Standard
15884 Para celdas extendidas en una celda multicolumna, puedes definir el formato
15885 \end_layout
15886
15887 \begin_layout Standard
15888
15889 \series bold
15890
15891 \backslash
15892 newcolumntype{S}[2]{>{
15893 \backslash
15894 centering
15895 \backslash
15896 hspace{0pt}}
15897 \newline
15898
15899 \begin_inset ERT
15900 status collapsed
15901
15902 \begin_layout Standard
15903
15904
15905 \backslash
15906 phantom{
15907 \end_layout
15908
15909 \end_inset
15910
15911
15912 \backslash
15913 newcolumntype{S}[2]
15914 \begin_inset ERT
15915 status collapsed
15916
15917 \begin_layout Standard
15918
15919 }
15920 \end_layout
15921
15922 \end_inset
15923
15924 m{(#1+(2
15925 \backslash
15926 tabcolsep+
15927 \backslash
15928 arrayrulewidth)*(1-#2))/#2}}
15929 \end_layout
15930
15931 \begin_layout Standard
15932 Este formato usa la ecuación 
15933 \begin_inset LatexCommand eqref
15934 reference "eq:Wgn"
15935
15936 \end_inset
15937
15938  para calcular la anchura necesaria para que cada celda extendida tenga
15939  la misma anchura.
15940 \end_layout
15941
15942 \begin_layout Standard
15943 Ahora puedes introducir
15944 \end_layout
15945
15946 \begin_layout Standard
15947
15948 \series bold
15949 S{ancho de la celda multicolumna}{número de columnas extendidas}
15950 \end_layout
15951
15952 \begin_layout Standard
15953 como argumento LaTeX de la columna.
15954 \end_layout
15955
15956 \begin_layout Standard
15957 \begin_inset VSpace bigskip
15958 \end_inset
15959
15960
15961 \end_layout
15962
15963 \begin_layout Standard
15964 Para columnas coloreadas puedes definir
15965 \end_layout
15966
15967 \begin_layout Standard
15968
15969 \series bold
15970
15971 \backslash
15972 newcolumntype{K}[1]{>{
15973 \backslash
15974 columncolor{#1}
15975 \backslash
15976 hspace{0pt}}c}
15977 \end_layout
15978
15979 \begin_layout Standard
15980 La 
15981 \begin_inset Quotes eld
15982 \end_inset
15983
15984 c
15985 \begin_inset Quotes erd
15986 \end_inset
15987
15988  al final crea una columna con anchura flexible cuyo texto está centrado
15989  horizontalmente.
15990  Ahora puedes introducir
15991 \end_layout
15992
15993 \begin_layout Standard
15994
15995 \series bold
15996 K{nombre del color}
15997 \end_layout
15998
15999 \begin_layout Standard
16000 como argumento LaTeX.
16001 \end_layout
16002
16003 \begin_layout Standard
16004 \begin_inset VSpace bigskip
16005 \end_inset
16006
16007
16008 \end_layout
16009
16010 \begin_layout Standard
16011 Para crear la tabla\InsetSpace ~
16012
16013 \begin_inset LatexCommand ref
16014 reference "tab:Tabla-con-formatos-definidos-por"
16015
16016 \end_inset
16017
16018  usa los argumentos LaTeX
16019 \end_layout
16020
16021 \begin_layout Standard
16022
16023 \series bold
16024 M{2.5cm}
16025 \end_layout
16026
16027 \begin_layout Standard
16028 para la primera columna y la multicolumna,
16029 \end_layout
16030
16031 \begin_layout Standard
16032
16033 \series bold
16034 K{red}
16035 \end_layout
16036
16037 \begin_layout Standard
16038 para la última columna y
16039 \end_layout
16040
16041 \begin_layout Standard
16042
16043 \series bold
16044 S{2.5cm}{2}
16045 \end_layout
16046
16047 \begin_layout Standard
16048 para las celdas en la segunda columna.
16049 \end_layout
16050
16051 \begin_layout Standard
16052 \begin_inset Float table
16053 placement h
16054 wide false
16055 sideways false
16056 status open
16057
16058 \begin_layout Standard
16059 \begin_inset Caption
16060
16061 \begin_layout Standard
16062 \begin_inset LatexCommand label
16063 name "tab:Tabla-con-formatos-definidos-por"
16064
16065 \end_inset
16066
16067 Tabla con formatos definidos por el usuario
16068 \end_layout
16069
16070 \end_inset
16071
16072
16073 \end_layout
16074
16075 \begin_layout Standard
16076 \align center
16077 \begin_inset Tabular
16078 <lyxtabular version="3" rows="3" columns="4">
16079 <features>
16080 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="M{2.5cm}">
16081 <column alignment="center" valignment="middle" leftline="true" width="0" special="S{2.5cm}{2}">
16082 <column alignment="center" valignment="middle" leftline="true" width="0">
16083 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="K{red}">
16084 <row topline="true">
16085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16086 \begin_inset Text
16087
16088 \begin_layout Standard
16089 palabramuylargaenceldadetabla
16090 \end_layout
16091
16092 \end_inset
16093 </cell>
16094 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}">
16095 \begin_inset Text
16096
16097 \begin_layout Standard
16098 multicolumna línea múltiple
16099 \end_layout
16100
16101 \end_inset
16102 </cell>
16103 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16104 \begin_inset Text
16105
16106 \begin_layout Standard
16107
16108 \end_layout
16109
16110 \end_inset
16111 </cell>
16112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16113 \begin_inset Text
16114
16115 \begin_layout Standard
16116 c
16117 \end_layout
16118
16119 \end_inset
16120 </cell>
16121 </row>
16122 <row topline="true">
16123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16124 \begin_inset Text
16125
16126 \begin_layout Standard
16127 d
16128 \end_layout
16129
16130 \end_inset
16131 </cell>
16132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16133 \begin_inset Text
16134
16135 \begin_layout Standard
16136 e
16137 \end_layout
16138
16139 \end_inset
16140 </cell>
16141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16142 \begin_inset Text
16143
16144 \begin_layout Standard
16145 f
16146 \end_layout
16147
16148 \end_inset
16149 </cell>
16150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16151 \begin_inset Text
16152
16153 \begin_layout Standard
16154 g
16155 \end_layout
16156
16157 \end_inset
16158 </cell>
16159 </row>
16160 <row topline="true" bottomline="true">
16161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16162 \begin_inset Text
16163
16164 \begin_layout Standard
16165 h
16166 \end_layout
16167
16168 \end_inset
16169 </cell>
16170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16171 \begin_inset Text
16172
16173 \begin_layout Standard
16174 i
16175 \end_layout
16176
16177 \end_inset
16178 </cell>
16179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16180 \begin_inset Text
16181
16182 \begin_layout Standard
16183 j
16184 \end_layout
16185
16186 \end_inset
16187 </cell>
16188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16189 \begin_inset Text
16190
16191 \begin_layout Standard
16192 k
16193 \end_layout
16194
16195 \end_inset
16196 </cell>
16197 </row>
16198 </lyxtabular>
16199
16200 \end_inset
16201
16202
16203 \end_layout
16204
16205 \end_inset
16206
16207
16208 \end_layout
16209
16210 \begin_layout Subsection
16211 Grosor de Líneas
16212 \begin_inset LatexCommand label
16213 name "sub:Grosor-de-Líneas"
16214
16215 \end_inset
16216
16217
16218 \begin_inset LatexCommand index
16219 name "Personalización de Tablas ! Grosor de Línea"
16220
16221 \end_inset
16222
16223
16224 \end_layout
16225
16226 \begin_layout Standard
16227 El grosor para todas las líneas de una tabla puede ajustarse con la longitud
16228  
16229 \series bold
16230
16231 \backslash
16232 arrayrulewidth
16233 \series default
16234 .
16235  Por ejemplo, para poner un grosor de línea de 1.5\InsetSpace \thinspace{}
16236 pt, como en la tabla\InsetSpace ~
16237
16238 \begin_inset LatexCommand ref
16239 reference "tab:Tabla-con-líneas"
16240
16241 \end_inset
16242
16243 , inserta el comando
16244 \end_layout
16245
16246 \begin_layout Standard
16247
16248 \series bold
16249
16250 \backslash
16251 setlength{
16252 \backslash
16253 arrayrulewidth}{1.5pt}
16254 \end_layout
16255
16256 \begin_layout Standard
16257 en ERT antes de la tabla o flotante.
16258  Este cambio es válido para todas las siguientes tablas.
16259  Para volver al valor predeterminado, define 
16260 \series bold
16261
16262 \backslash
16263 arrayrulewidth
16264 \series default
16265  a 0.4\InsetSpace \thinspace{}
16266 pt en ERT detrás de la tabla o flotante.
16267 \end_layout
16268
16269 \begin_layout Standard
16270 \begin_inset ERT
16271 status collapsed
16272
16273 \begin_layout Standard
16274
16275
16276 \backslash
16277 setlength{
16278 \backslash
16279 arrayrulewidth}{1.5pt}
16280 \end_layout
16281
16282 \end_inset
16283
16284
16285 \begin_inset Float table
16286 wide false
16287 sideways false
16288 status open
16289
16290 \begin_layout Standard
16291 \begin_inset Caption
16292
16293 \begin_layout Standard
16294 \begin_inset LatexCommand label
16295 name "tab:Tabla-con-líneas"
16296
16297 \end_inset
16298
16299 Tabla con líneas de grosor 1.5\InsetSpace \thinspace{}
16300 pt
16301 \end_layout
16302
16303 \end_inset
16304
16305
16306 \end_layout
16307
16308 \begin_layout Standard
16309 \align center
16310 \begin_inset Tabular
16311 <lyxtabular version="3" rows="3" columns="3">
16312 <features>
16313 <column alignment="center" valignment="top" leftline="true" width="0">
16314 <column alignment="center" valignment="top" leftline="true" width="0">
16315 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16316 <row topline="true">
16317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16318 \begin_inset Text
16319
16320 \begin_layout Standard
16321 sd
16322 \end_layout
16323
16324 \end_inset
16325 </cell>
16326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16327 \begin_inset Text
16328
16329 \begin_layout Standard
16330
16331 \end_layout
16332
16333 \end_inset
16334 </cell>
16335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16336 \begin_inset Text
16337
16338 \begin_layout Standard
16339
16340 \end_layout
16341
16342 \end_inset
16343 </cell>
16344 </row>
16345 <row topline="true">
16346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16347 \begin_inset Text
16348
16349 \begin_layout Standard
16350
16351 \end_layout
16352
16353 \end_inset
16354 </cell>
16355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16356 \begin_inset Text
16357
16358 \begin_layout Standard
16359 sd
16360 \end_layout
16361
16362 \end_inset
16363 </cell>
16364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16365 \begin_inset Text
16366
16367 \begin_layout Standard
16368
16369 \end_layout
16370
16371 \end_inset
16372 </cell>
16373 </row>
16374 <row topline="true" bottomline="true">
16375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16376 \begin_inset Text
16377
16378 \begin_layout Standard
16379
16380 \end_layout
16381
16382 \end_inset
16383 </cell>
16384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16385 \begin_inset Text
16386
16387 \begin_layout Standard
16388
16389 \end_layout
16390
16391 \end_inset
16392 </cell>
16393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16394 \begin_inset Text
16395
16396 \begin_layout Standard
16397 sd
16398 \end_layout
16399
16400 \end_inset
16401 </cell>
16402 </row>
16403 </lyxtabular>
16404
16405 \end_inset
16406
16407
16408 \end_layout
16409
16410 \end_inset
16411
16412
16413 \begin_inset ERT
16414 status collapsed
16415
16416 \begin_layout Standard
16417
16418
16419 \backslash
16420 setlength{
16421 \backslash
16422 arrayrulewidth}{0.4pt}
16423 \end_layout
16424
16425 \end_inset
16426
16427
16428 \end_layout
16429
16430 \begin_layout Standard
16431 \begin_inset VSpace bigskip
16432 \end_inset
16433
16434 Para definir un grosor de 1.5\InsetSpace \thinspace{}
16435 pt sólo para líneas horizontales, como en la
16436  tabla\InsetSpace ~
16437
16438 \begin_inset LatexCommand ref
16439 reference "tab:Tabla-con-horizontales"
16440
16441 \end_inset
16442
16443 , inserta estos comandos en ERT antes de la tabla o flotante:
16444 \end_layout
16445
16446 \begin_layout Standard
16447
16448 \series bold
16449
16450 \backslash
16451 let
16452 \backslash
16453 myHline
16454 \backslash
16455 hline
16456 \newline
16457
16458 \backslash
16459 renewcommand{
16460 \backslash
16461 hline}
16462 \newline
16463  {
16464 \backslash
16465 noalign{
16466 \backslash
16467 global
16468 \backslash
16469 arrayrulewidth 1.5pt}
16470 \newline
16471   
16472 \backslash
16473 myHline
16474 \backslash
16475 noalign{
16476 \backslash
16477 global
16478 \backslash
16479 arrayrulewidth 0.4pt}}
16480 \end_layout
16481
16482 \begin_layout Standard
16483 Para volver al grosor predeterminado, inserta este comando en ERT detrás
16484  de la tabla o flotante:
16485 \end_layout
16486
16487 \begin_layout Standard
16488
16489 \series bold
16490
16491 \backslash
16492 renewcommand{
16493 \backslash
16494 hline}{
16495 \backslash
16496 myHline}
16497 \end_layout
16498
16499 \begin_layout Standard
16500 \begin_inset ERT
16501 status collapsed
16502
16503 \begin_layout Standard
16504
16505
16506 \backslash
16507 let
16508 \backslash
16509 myHline
16510 \backslash
16511 hline
16512 \end_layout
16513
16514 \begin_layout Standard
16515
16516
16517 \backslash
16518 renewcommand{
16519 \backslash
16520 hline}
16521 \end_layout
16522
16523 \begin_layout Standard
16524
16525  {
16526 \backslash
16527 noalign{
16528 \backslash
16529 global
16530 \backslash
16531 arrayrulewidth 1.5pt}
16532 \end_layout
16533
16534 \begin_layout Standard
16535
16536   
16537 \backslash
16538 myHline
16539 \backslash
16540 noalign{
16541 \backslash
16542 global
16543 \backslash
16544 arrayrulewidth 0.4pt}}
16545 \end_layout
16546
16547 \end_inset
16548
16549
16550 \begin_inset Float table
16551 wide false
16552 sideways false
16553 status open
16554
16555 \begin_layout Standard
16556 \begin_inset Caption
16557
16558 \begin_layout Standard
16559 \begin_inset LatexCommand label
16560 name "tab:Tabla-con-horizontales"
16561
16562 \end_inset
16563
16564 Tabla con líneas horizontales de 1.5\InsetSpace \thinspace{}
16565 pt
16566 \end_layout
16567
16568 \end_inset
16569
16570
16571 \end_layout
16572
16573 \begin_layout Standard
16574 \align center
16575 \begin_inset Tabular
16576 <lyxtabular version="3" rows="3" columns="3">
16577 <features>
16578 <column alignment="center" valignment="top" leftline="true" width="0">
16579 <column alignment="center" valignment="top" leftline="true" width="0">
16580 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16581 <row topline="true">
16582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16583 \begin_inset Text
16584
16585 \begin_layout Standard
16586 sd
16587 \end_layout
16588
16589 \end_inset
16590 </cell>
16591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16592 \begin_inset Text
16593
16594 \begin_layout Standard
16595
16596 \end_layout
16597
16598 \end_inset
16599 </cell>
16600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16601 \begin_inset Text
16602
16603 \begin_layout Standard
16604
16605 \end_layout
16606
16607 \end_inset
16608 </cell>
16609 </row>
16610 <row topline="true">
16611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16612 \begin_inset Text
16613
16614 \begin_layout Standard
16615
16616 \end_layout
16617
16618 \end_inset
16619 </cell>
16620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16621 \begin_inset Text
16622
16623 \begin_layout Standard
16624 sd
16625 \end_layout
16626
16627 \end_inset
16628 </cell>
16629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16630 \begin_inset Text
16631
16632 \begin_layout Standard
16633
16634 \end_layout
16635
16636 \end_inset
16637 </cell>
16638 </row>
16639 <row topline="true" bottomline="true">
16640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16641 \begin_inset Text
16642
16643 \begin_layout Standard
16644
16645 \end_layout
16646
16647 \end_inset
16648 </cell>
16649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16650 \begin_inset Text
16651
16652 \begin_layout Standard
16653
16654 \end_layout
16655
16656 \end_inset
16657 </cell>
16658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16659 \begin_inset Text
16660
16661 \begin_layout Standard
16662 sd
16663 \end_layout
16664
16665 \end_inset
16666 </cell>
16667 </row>
16668 </lyxtabular>
16669
16670 \end_inset
16671
16672
16673 \end_layout
16674
16675 \end_inset
16676
16677
16678 \begin_inset ERT
16679 status collapsed
16680
16681 \begin_layout Standard
16682
16683
16684 \backslash
16685 renewcommand{
16686 \backslash
16687 hline}{
16688 \backslash
16689 myHline}
16690 \end_layout
16691
16692 \end_inset
16693
16694
16695 \end_layout
16696
16697 \begin_layout Standard
16698 \begin_inset VSpace bigskip
16699 \end_inset
16700
16701 Para establecer un grosor de 1.5 pt sólo para líneas verticales, crea el
16702  siguiente formato de columna en el preámbulo del documento, de acuerdo
16703  con lo descrito en la sección\InsetSpace ~
16704
16705 \begin_inset LatexCommand ref
16706 reference "sub:Formato-Personalizado"
16707
16708 \end_inset
16709
16710 :
16711 \end_layout
16712
16713 \begin_layout Standard
16714
16715 \series bold
16716
16717 \backslash
16718 newcolumntype{V}{!{
16719 \backslash
16720 vrule width 1.5pt}}
16721 \end_layout
16722
16723 \begin_layout Standard
16724 Para la tabla\InsetSpace ~
16725
16726 \begin_inset LatexCommand ref
16727 reference "tab:Tabla-con-verticales"
16728
16729 \end_inset
16730
16731  se usó el argumento LaTeX
16732 \end_layout
16733
16734 \begin_layout Standard
16735
16736 \series bold
16737 VcV
16738 \end_layout
16739
16740 \begin_layout Standard
16741 para la última columna y
16742 \end_layout
16743
16744 \begin_layout Standard
16745
16746 \series bold
16747 Vc
16748 \end_layout
16749
16750 \begin_layout Standard
16751 para las otras.
16752 \end_layout
16753
16754 \begin_layout Standard
16755 \begin_inset Float table
16756 wide false
16757 sideways false
16758 status open
16759
16760 \begin_layout Standard
16761 \begin_inset Caption
16762
16763 \begin_layout Standard
16764 \begin_inset LatexCommand label
16765 name "tab:Tabla-con-verticales"
16766
16767 \end_inset
16768
16769 Tabla con líneas verticales de 1.5\InsetSpace \thinspace{}
16770 pt de grosor
16771 \end_layout
16772
16773 \end_inset
16774
16775
16776 \end_layout
16777
16778 \begin_layout Standard
16779 \align center
16780 \begin_inset Tabular
16781 <lyxtabular version="3" rows="3" columns="3">
16782 <features>
16783 <column alignment="center" valignment="top" width="0" special="Vc">
16784 <column alignment="center" valignment="top" width="0" special="Vc">
16785 <column alignment="center" valignment="top" width="0" special="VcV">
16786 <row topline="true">
16787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16788 \begin_inset Text
16789
16790 \begin_layout Standard
16791 sd
16792 \end_layout
16793
16794 \end_inset
16795 </cell>
16796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16797 \begin_inset Text
16798
16799 \begin_layout Standard
16800
16801 \end_layout
16802
16803 \end_inset
16804 </cell>
16805 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16806 \begin_inset Text
16807
16808 \begin_layout Standard
16809
16810 \end_layout
16811
16812 \end_inset
16813 </cell>
16814 </row>
16815 <row topline="true">
16816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16817 \begin_inset Text
16818
16819 \begin_layout Standard
16820
16821 \end_layout
16822
16823 \end_inset
16824 </cell>
16825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16826 \begin_inset Text
16827
16828 \begin_layout Standard
16829 sd
16830 \end_layout
16831
16832 \end_inset
16833 </cell>
16834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16835 \begin_inset Text
16836
16837 \begin_layout Standard
16838
16839 \end_layout
16840
16841 \end_inset
16842 </cell>
16843 </row>
16844 <row topline="true" bottomline="true">
16845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16846 \begin_inset Text
16847
16848 \begin_layout Standard
16849
16850 \end_layout
16851
16852 \end_inset
16853 </cell>
16854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16855 \begin_inset Text
16856
16857 \begin_layout Standard
16858
16859 \end_layout
16860
16861 \end_inset
16862 </cell>
16863 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16864 \begin_inset Text
16865
16866 \begin_layout Standard
16867 sd
16868 \end_layout
16869
16870 \end_inset
16871 </cell>
16872 </row>
16873 </lyxtabular>
16874
16875 \end_inset
16876
16877
16878 \end_layout
16879
16880 \end_inset
16881
16882
16883 \end_layout
16884
16885 \begin_layout Subsection
16886 Líneas de Trazos
16887 \begin_inset LatexCommand index
16888 name "Personalización de Tablas ! Líneas de Trazos"
16889
16890 \end_inset
16891
16892
16893 \end_layout
16894
16895 \begin_layout Standard
16896 \begin_inset ERT
16897 status collapsed
16898
16899 \begin_layout Standard
16900
16901
16902 \backslash
16903 ifarydshln
16904 \end_layout
16905
16906 \end_inset
16907
16908
16909 \begin_inset Note Note
16910 status open
16911
16912 \begin_layout Standard
16913 La siguiente sección sólo se mostrará en pantalla si está instalado el paquete
16914  LaTeX 
16915 \series bold
16916 arydshln
16917 \series default
16918 .
16919 \end_layout
16920
16921 \end_inset
16922
16923
16924 \end_layout
16925
16926 \begin_layout Standard
16927 \begin_inset Float table
16928 placement H
16929 wide false
16930 sideways false
16931 status open
16932
16933 \begin_layout Standard
16934 \begin_inset Caption
16935
16936 \begin_layout Standard
16937 \begin_inset LatexCommand label
16938 name "tab:Tabla-con-trazos"
16939
16940 \end_inset
16941
16942 Tabla con líneas de trazos
16943 \end_layout
16944
16945 \end_inset
16946
16947
16948 \end_layout
16949
16950 \begin_layout Standard
16951 \align center
16952 \begin_inset Tabular
16953 <lyxtabular version="3" rows="5" columns="5">
16954 <features>
16955 <column alignment="center" valignment="top" leftline="true" width="0">
16956 <column alignment="center" valignment="top" leftline="true" width="0">
16957 <column alignment="center" valignment="top" width="0" special=":c">
16958 <column alignment="center" valignment="top" leftline="true" width="0">
16959 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16960 <row topline="true" bottomline="true">
16961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16962 \begin_inset Text
16963
16964 \begin_layout Standard
16965 a
16966 \end_layout
16967
16968 \end_inset
16969 </cell>
16970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16971 \begin_inset Text
16972
16973 \begin_layout Standard
16974 b
16975 \end_layout
16976
16977 \end_inset
16978 </cell>
16979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16980 \begin_inset Text
16981
16982 \begin_layout Standard
16983 c
16984 \end_layout
16985
16986 \end_inset
16987 </cell>
16988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16989 \begin_inset Text
16990
16991 \begin_layout Standard
16992 d
16993 \end_layout
16994
16995 \end_inset
16996 </cell>
16997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16998 \begin_inset Text
16999
17000 \begin_layout Standard
17001 e
17002 \end_layout
17003
17004 \end_inset
17005 </cell>
17006 </row>
17007 <row topline="true">
17008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17009 \begin_inset Text
17010
17011 \begin_layout Standard
17012 f
17013 \end_layout
17014
17015 \end_inset
17016 </cell>
17017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17018 \begin_inset Text
17019
17020 \begin_layout Standard
17021 g
17022 \end_layout
17023
17024 \end_inset
17025 </cell>
17026 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17027 \begin_inset Text
17028
17029 \begin_layout Standard
17030 h
17031 \end_layout
17032
17033 \end_inset
17034 </cell>
17035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17036 \begin_inset Text
17037
17038 \begin_layout Standard
17039 i
17040 \end_layout
17041
17042 \end_inset
17043 </cell>
17044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17045 \begin_inset Text
17046
17047 \begin_layout Standard
17048 j
17049 \end_layout
17050
17051 \end_inset
17052 </cell>
17053 </row>
17054 <row>
17055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17056 \begin_inset Text
17057
17058 \begin_layout Standard
17059 \begin_inset ERT
17060 status collapsed
17061
17062 \begin_layout Standard
17063
17064
17065 \backslash
17066 hdashline 
17067 \end_layout
17068
17069 \end_inset
17070
17071 k
17072 \end_layout
17073
17074 \end_inset
17075 </cell>
17076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17077 \begin_inset Text
17078
17079 \begin_layout Standard
17080 l
17081 \end_layout
17082
17083 \end_inset
17084 </cell>
17085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17086 \begin_inset Text
17087
17088 \begin_layout Standard
17089 m
17090 \end_layout
17091
17092 \end_inset
17093 </cell>
17094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17095 \begin_inset Text
17096
17097 \begin_layout Standard
17098 n
17099 \end_layout
17100
17101 \end_inset
17102 </cell>
17103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17104 \begin_inset Text
17105
17106 \begin_layout Standard
17107 o
17108 \end_layout
17109
17110 \end_inset
17111 </cell>
17112 </row>
17113 <row topline="true">
17114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17115 \begin_inset Text
17116
17117 \begin_layout Standard
17118 \begin_inset ERT
17119 status collapsed
17120
17121 \begin_layout Standard
17122
17123
17124 \backslash
17125 cdashline{4-5}
17126 \end_layout
17127
17128 \end_inset
17129
17130 p
17131 \end_layout
17132
17133 \end_inset
17134 </cell>
17135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17136 \begin_inset Text
17137
17138 \begin_layout Standard
17139 q
17140 \end_layout
17141
17142 \end_inset
17143 </cell>
17144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
17145 \begin_inset Text
17146
17147 \begin_layout Standard
17148 r
17149 \end_layout
17150
17151 \end_inset
17152 </cell>
17153 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
17154 \begin_inset Text
17155
17156 \begin_layout Standard
17157 s
17158 \end_layout
17159
17160 \end_inset
17161 </cell>
17162 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17163 \begin_inset Text
17164
17165 \begin_layout Standard
17166
17167 \end_layout
17168
17169 \end_inset
17170 </cell>
17171 </row>
17172 <row topline="true" bottomline="true">
17173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17174 \begin_inset Text
17175
17176 \begin_layout Standard
17177 t
17178 \end_layout
17179
17180 \end_inset
17181 </cell>
17182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17183 \begin_inset Text
17184
17185 \begin_layout Standard
17186 u
17187 \end_layout
17188
17189 \end_inset
17190 </cell>
17191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17192 \begin_inset Text
17193
17194 \begin_layout Standard
17195 v
17196 \end_layout
17197
17198 \end_inset
17199 </cell>
17200 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17201 \begin_inset Text
17202
17203 \begin_layout Standard
17204 w
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 Standard
17213 x
17214 \end_layout
17215
17216 \end_inset
17217 </cell>
17218 </row>
17219 </lyxtabular>
17220
17221 \end_inset
17222
17223
17224 \end_layout
17225
17226 \end_inset
17227
17228
17229 \end_layout
17230
17231 \begin_layout Standard
17232 En principio LyX no soporta líneas de trazos, hay que usar ERT.
17233  Hay que cargar antes en el preámbulo del documento el paquete LaTeX 
17234 \series bold
17235 arydshln
17236 \series default
17237
17238 \begin_inset LatexCommand index
17239 name "LaTeX-paquetes ! arydshln"
17240
17241 \end_inset
17242
17243  
17244 \end_layout
17245
17246 \begin_layout Standard
17247
17248 \series bold
17249
17250 \backslash
17251 usepackage{arydshln}
17252 \end_layout
17253
17254 \begin_layout Standard
17255 Para hacer una línea vertical a trazos, introduce dos puntos 
17256 \begin_inset Quotes eld
17257 \end_inset
17258
17259 :
17260 \begin_inset Quotes erd
17261 \end_inset
17262
17263  junto con el carácter para alineación horizontal como argumento LaTeX en
17264  el diálogo de celda de tabla.
17265 \end_layout
17266
17267 \begin_layout Standard
17268 Para una línea de trazos horizontal añade el comando
17269 \end_layout
17270
17271 \begin_layout Standard
17272
17273 \series bold
17274
17275 \backslash
17276 hdashline
17277 \end_layout
17278
17279 \begin_layout Standard
17280 en ERT como primer elemento de la primera celda en la fila.
17281 \end_layout
17282
17283 \begin_layout Standard
17284 Para líneas de trazos en multicolumna usa el comando
17285 \end_layout
17286
17287 \begin_layout Standard
17288
17289 \series bold
17290
17291 \backslash
17292 cdashline{line number
17293 \series default
17294 }
17295 \end_layout
17296
17297 \begin_layout Standard
17298 en ERT como primer elemento de la primera celda en la fila.
17299  Si por ejemplo tienes una multicolumna extendida sobre las columnas 2 a
17300  4 y quieres una línea de trazos por encima, añade el comando
17301 \end_layout
17302
17303 \begin_layout Standard
17304
17305 \series bold
17306
17307 \backslash
17308 cdashline{2-4}
17309 \end_layout
17310
17311 \begin_layout Standard
17312 como primer elemento de la primera celda en la fila de la multicolumna.
17313 \end_layout
17314
17315 \begin_layout Standard
17316 \begin_inset VSpace bigskip
17317 \end_inset
17318
17319
17320 \end_layout
17321
17322 \begin_layout Standard
17323 La tabla\InsetSpace ~
17324
17325 \begin_inset LatexCommand ref
17326 reference "tab:Tabla-con-trazos"
17327
17328 \end_inset
17329
17330  se ha hecho usando 
17331 \begin_inset Quotes eld
17332 \end_inset
17333
17334
17335 \series bold
17336 :c
17337 \series default
17338
17339 \begin_inset Quotes erd
17340 \end_inset
17341
17342  como argumento LaTeX de la tercera columna.
17343  El comando ERT 
17344 \series bold
17345
17346 \backslash
17347 hdashline
17348 \series default
17349  se ha insertado en la primera celda de la tercera fila y el comando ERT
17350 \newline
17351
17352 \series bold
17353
17354 \backslash
17355 cdashline{4-5}
17356 \series default
17357  en la primera celda de la cuarta fila.
17358 \end_layout
17359
17360 \begin_layout Standard
17361 \begin_inset Note Greyedout
17362 status open
17363
17364 \begin_layout Standard
17365
17366 \series bold
17367 Nota:
17368 \series default
17369  Aparentemente el paquete LaTeX 
17370 \series bold
17371 arydshln
17372 \series default
17373  no es compatible con el paquete LaTeX 
17374 \series bold
17375 colortbl
17376 \series default
17377
17378 \begin_inset LatexCommand index
17379 name "LaTeX-paquetes ! colortbl"
17380
17381 \end_inset
17382
17383  que se usa para tablas coloreadas en la sección\InsetSpace ~
17384
17385 \begin_inset LatexCommand ref
17386 reference "sec:Tablas-Coloreadas"
17387
17388 \end_inset
17389
17390 .
17391  Esto implica que las tablas coloreadas no pueden tener líneas de trazos.
17392 \end_layout
17393
17394 \end_inset
17395
17396
17397 \end_layout
17398
17399 \begin_layout Standard
17400 \begin_inset ERT
17401 status collapsed
17402
17403 \begin_layout Standard
17404
17405
17406 \backslash
17407 else
17408 \end_layout
17409
17410 \end_inset
17411
17412
17413 \begin_inset Note Note
17414 status open
17415
17416 \begin_layout Standard
17417 Lo siguiente se mostrará en pantalla si no está instalado el paquete LaTeX
17418  
17419 \series bold
17420 arydshln
17421 \series default
17422 .
17423 \end_layout
17424
17425 \end_inset
17426
17427
17428 \end_layout
17429
17430 \begin_layout Standard
17431 Debes instalar el paquete LaTeX 
17432 \series bold
17433 arydshln
17434 \series default
17435  para ver la parte siguiente en la salida.
17436 \end_layout
17437
17438 \begin_layout Standard
17439 \begin_inset ERT
17440 status collapsed
17441
17442 \begin_layout Standard
17443
17444
17445 \backslash
17446 fi
17447 \end_layout
17448
17449 \end_inset
17450
17451
17452 \end_layout
17453
17454 \begin_layout Chapter
17455 Flotantes
17456 \begin_inset LatexCommand label
17457 name "cha:Flotantes"
17458
17459 \end_inset
17460
17461
17462 \begin_inset LatexCommand index
17463 name "Flotantes"
17464
17465 \end_inset
17466
17467
17468 \end_layout
17469
17470 \begin_layout Section
17471 Introducción
17472 \begin_inset LatexCommand label
17473 name "sec:IntroducciónFlotantes"
17474
17475 \end_inset
17476
17477
17478 \begin_inset LatexCommand index
17479 name "Flotantes ! Introducción"
17480
17481 \end_inset
17482
17483
17484 \end_layout
17485
17486 \begin_layout Standard
17487 Un flotante es un bloque de texto asociado con alguna especie de etiqueta
17488  que no tiene posición fija.
17489  Puede 
17490 \begin_inset Quotes eld
17491 \end_inset
17492
17493 flotar
17494 \begin_inset Quotes erd
17495 \end_inset
17496
17497  adelante o atrás una o dos páginas, donde encaje mejor.
17498  Las 
17499 \family sans
17500 Notas\InsetSpace ~
17501 al\InsetSpace ~
17502 pie
17503 \family default
17504  y 
17505 \family sans
17506 Notas\InsetSpace ~
17507 al\InsetSpace ~
17508 margen
17509 \family default
17510  también son flotantes, porque pueden flotar a la página siguiente cuando
17511  hay demasiadas notas en la página.
17512 \end_layout
17513
17514 \begin_layout Standard
17515 Los flotantes hacen posible composiciones de alta calidad.
17516  Imágenes y tablas se pueden distribuir equitativamente en las páginas para
17517  impedir espacios en blanco y páginas sin texto.
17518  Como el flotante destruye a menudo el contexto entre texto e imagen/tabla,
17519  cada flotante puede estar referido en el texto.
17520  Por lo tanto los flotantes están numerados.
17521  Las referencias se describen en la sección\InsetSpace ~
17522
17523 \begin_inset LatexCommand ref
17524 reference "sec:Referencias-a-Flotantes"
17525
17526 \end_inset
17527
17528 .
17529 \end_layout
17530
17531 \begin_layout Standard
17532 Para insertar un flotante, usa el menú 
17533 \family sans
17534 Insertar\SpecialChar \menuseparator
17535 Flotante
17536 \family default
17537 .
17538  En el documento se inserta un cuadro con etiqueta en el entorno 
17539 \family sans
17540 Encabezado.
17541
17542 \family default
17543  La etiqueta será traducida automáticamente al lenguaje del documento.
17544  Tras la etiqueta se puede insertar el texto de encabezado.
17545  La imagen o tabla se inserta encima o debajo del encabezado en un párrafo
17546  separado dentro del flotante.
17547  Más sobre colocación de encabezados se describe en la sección\InsetSpace ~
17548
17549 \begin_inset LatexCommand ref
17550 reference "sec:Colocación-de-Encabezados"
17551
17552 \end_inset
17553
17554 .
17555  Para mantener legible el documento LyX, puedes abrir y cerrar el cuadro
17556  del flotante haciendo cilc-izquierda sobre él.
17557  Un cuadro cerrado se muestra así: 
17558 \begin_inset Graphics
17559         filename clipart/flotanteQt4.png
17560         scale 70
17561
17562 \end_inset
17563
17564  ---un cuadro gris con etiqueta en rojo---.
17565 \end_layout
17566
17567 \begin_layout Standard
17568 Se recomienda insertar flotantes como párrafos separados para evitar posibles
17569  errores de LaTeX si el texto circundante se formatea de modo especial.
17570 \end_layout
17571
17572 \begin_layout Standard
17573 Figuras o tablas ya existentes pueden ponerse en un flotante marcándolas
17574  y pinchando el botón correspondiente de la barra de herramientas para un
17575  flotante nuevo.
17576 \end_layout
17577
17578 \begin_layout Section
17579 Tipos de Flotantes
17580 \end_layout
17581
17582 \begin_layout Standard
17583 Además de los flotantes de imagen y de tabla que se describen en la sección\InsetSpace ~
17584
17585 \begin_inset LatexCommand ref
17586 reference "sec:Figuras-Flotantes"
17587
17588 \end_inset
17589
17590  y 
17591 \begin_inset LatexCommand ref
17592 reference "sec:Tablas-Flotantes"
17593
17594 \end_inset
17595
17596 , respectivamente, LyX ofrece los tipos 
17597 \series bold
17598 Algoritmo
17599 \series default
17600  y 
17601 \series bold
17602 Ajustado\InsetSpace ~
17603 al\InsetSpace ~
17604 Texto
17605 \series default
17606 .
17607 \end_layout
17608
17609 \begin_layout Subsection
17610 Algoritmos Flotantes
17611 \begin_inset LatexCommand index
17612 name "Flotantes ! Algoritmos Flotantes"
17613
17614 \end_inset
17615
17616
17617 \end_layout
17618
17619 \begin_layout Standard
17620 \begin_inset Float algorithm
17621 placement h
17622 wide false
17623 sideways false
17624 status open
17625
17626 \begin_layout Standard
17627 \begin_inset Caption
17628
17629 \begin_layout Standard
17630 \begin_inset LatexCommand label
17631 name "alg:Ejemplo-de-Algoritmo-flotante"
17632
17633 \end_inset
17634
17635 Ejemplo de Algoritmo flotante
17636 \end_layout
17637
17638 \end_inset
17639
17640
17641 \end_layout
17642
17643 \begin_layout LyX-Code
17644 for I in 1..N loop
17645 \newline
17646  Sum:= Sum + A(I); /*senseless comment*/
17647 \newline
17648 end loop
17649 \begin_inset VSpace -4mm
17650 \end_inset
17651
17652
17653 \end_layout
17654
17655 \end_inset
17656
17657
17658 \end_layout
17659
17660 \begin_layout Standard
17661 Este tipo de flotante se inserta con el menú 
17662 \family sans
17663 Insertar\SpecialChar \menuseparator
17664 Flotante\SpecialChar \menuseparator
17665 Algoritmo
17666 \family default
17667 .
17668  Se usa para códigos y descripciones de algoritmos.
17669  Un posible entorno para algoritmos es 
17670 \family sans
17671 Código-LyX
17672 \family default
17673 , descrito en 
17674 \emph on
17675 Guía del Usuario
17676 \emph default
17677  de LyX.
17678  El algoritmo\InsetSpace ~
17679
17680 \begin_inset LatexCommand ref
17681 reference "alg:Ejemplo-de-Algoritmo-flotante"
17682
17683 \end_inset
17684
17685  es un ejemplo de algoritmo flotante en el que se ha añadido un espacio
17686  vertical de -4\InsetSpace \thinspace{}
17687 mm al final para tener la línea inferior exactamente bajo
17688  la última línea de texto.
17689 \end_layout
17690
17691 \begin_layout Standard
17692 La etiqueta de flotante no se traduce automáticamente al lenguaje del documento.
17693  Si tu documento no es en Inglés, tienes que hacerlo manualmente añadiendo
17694  la siguiente línea al preámbulo del documento
17695 \series bold
17696 :
17697 \end_layout
17698
17699 \begin_layout Standard
17700
17701 \series bold
17702
17703 \backslash
17704 floatname{algorithm}{nombre}
17705 \end_layout
17706
17707 \begin_layout Standard
17708
17709 \family sans
17710 nombre
17711 \family default
17712  es la palabra 
17713 \begin_inset Quotes eld
17714 \end_inset
17715
17716
17717 \emph on
17718 algorithm
17719 \emph default
17720
17721 \begin_inset Quotes erd
17722 \end_inset
17723
17724  en el lenguaje deseado.
17725 \end_layout
17726
17727 \begin_layout Description
17728
17729 \series bold
17730 Nota:
17731 \series default
17732  Si se emplea el paquete LaTeX 
17733 \series bold
17734 hyperref
17735 \series default
17736
17737 \begin_inset LatexCommand index
17738 name "LaTeX-paquetes ! hyperref"
17739
17740 \end_inset
17741
17742  para enlazar referencias cruzadas a flotantes en la salida PDF, debe cargarse
17743  en el preámbulo LaTeX antes de la definición de flotantes para poder referirse
17744  a ellos.
17745  LyX establece la definición de algoritmos flotantes automáticamente antes
17746  de la parte del preámbulo editable por el usuario, así que hay que insertar
17747  las siguientes líneas 
17748 \emph on
17749 después
17750 \emph default
17751  de cargar el comando 
17752 \series bold
17753 hyperref:
17754 \begin_inset VSpace defskip
17755 \end_inset
17756
17757
17758 \newline
17759
17760 \backslash
17761 newfloat{Xalgorithm}{tbp}{loa}
17762 \newline
17763
17764 \backslash
17765 floatname{Xalgorithm}{nombre}
17766 \newline
17767
17768 \backslash
17769 newcommand{
17770 \backslash
17771 theHalgorithm}{
17772 \backslash
17773 theHXalgorithm}
17774 \newline
17775
17776 \backslash
17777 renewenvironment{algorithm}[1][tbp]
17778 \newline
17779
17780 \begin_inset ERT
17781 status collapsed
17782
17783 \begin_layout Standard
17784
17785
17786 \backslash
17787 hphantom{ }
17788 \end_layout
17789
17790 \end_inset
17791
17792 {
17793 \backslash
17794 begin{Xalgorithm}[#1]}{
17795 \backslash
17796 end{Xalgorithm}}
17797 \begin_inset VSpace defskip
17798 \end_inset
17799
17800
17801 \series default
17802
17803 \newline
17804 Donde 
17805 \family sans
17806 nombre
17807 \family default
17808  es la palabra 
17809 \begin_inset Quotes eld
17810 \end_inset
17811
17812
17813 \emph on
17814 algorithm
17815 \emph default
17816
17817 \begin_inset Quotes erd
17818 \end_inset
17819
17820  en el lenguaje deseado.
17821 \end_layout
17822
17823 \begin_layout Standard
17824 Los algoritmos flotantes no se numeran por defecto según el esquema 
17825 \begin_inset Quotes eld
17826 \end_inset
17827
17828 capítulo.algoritmo
17829 \begin_inset Quotes erd
17830 \end_inset
17831
17832  como es el caso para tablas e imágenes flotantes en muchas clases de documento.
17833  Para numerar algoritmos flotantes según ese mismo esquema, añade este comando
17834  en el preámbulo del documento:
17835 \end_layout
17836
17837 \begin_layout Standard
17838
17839 \series bold
17840
17841 \backslash
17842 numberwithin{algorithm}{chapter}
17843 \end_layout
17844
17845 \begin_layout Standard
17846 Si usas el paquete LaTeX 
17847 \series bold
17848 hyperref
17849 \series default
17850 , añade en su lugar esta línea 
17851 \emph on
17852 después
17853 \emph default
17854  de la definición de 
17855 \family sans
17856 Xalgorithm
17857 \family default
17858  (los comandos anteriores) en el preámbulo:
17859 \end_layout
17860
17861 \begin_layout Standard
17862
17863 \series bold
17864
17865 \backslash
17866 numberwithin{Xalgorithm}{chapter}
17867 \end_layout
17868
17869 \begin_layout Standard
17870 Para poder usar el comando 
17871 \series bold
17872
17873 \backslash
17874 numberwithin
17875 \series default
17876 , marca la opción 
17877 \family sans
17878 Usar\InsetSpace ~
17879 el\InsetSpace ~
17880 paquete\InsetSpace ~
17881 AMS
17882 \family default
17883  en el menú 
17884 \family sans
17885 Documento\SpecialChar \menuseparator
17886 Configuración\SpecialChar \menuseparator
17887 Ecuaciones
17888 \family default
17889 .
17890 \end_layout
17891
17892 \begin_layout Subsection
17893 Flotantes Ajustados a Texto
17894 \begin_inset LatexCommand index
17895 name "Flotantes ! Ajustados a Texto"
17896
17897 \end_inset
17898
17899
17900 \begin_inset LatexCommand label
17901 name "sub:floatflt-flotante-ajustado"
17902
17903 \end_inset
17904
17905
17906 \end_layout
17907
17908 \begin_layout Standard
17909 Este tipo de flotante se usa cuando quieres adosar una figura al texto,
17910  de manera que ocupe solo una parte del ancho de columna.
17911  Puede insertarse usando el menú 
17912 \begin_inset Wrap figure
17913 placement l
17914 width "40col%"
17915 status open
17916
17917 \begin_layout Standard
17918 \begin_inset Graphics
17919         filename ../clipart/mobius.eps
17920         display color
17921         width 40col%
17922         rotateOrigin center
17923
17924 \end_inset
17925
17926
17927 \end_layout
17928
17929 \begin_layout Standard
17930 \begin_inset Caption
17931
17932 \begin_layout Standard
17933 \begin_inset LatexCommand label
17934 name "fig:Esto-es-una"
17935
17936 \end_inset
17937
17938 Esto es una figura adosada, y esto la genial cabecera que la describe.
17939 \begin_inset VSpace medskip
17940 \end_inset
17941
17942
17943 \end_layout
17944
17945 \end_inset
17946
17947
17948 \end_layout
17949
17950 \end_inset
17951
17952  
17953 \family sans
17954 Insertar\SpecialChar \menuseparator
17955 Flotante\SpecialChar \menuseparator
17956 Flotante\InsetSpace ~
17957 de\InsetSpace ~
17958 ajuste\InsetSpace ~
17959 de\InsetSpace ~
17960 texto
17961 \family default
17962  si está instalado el paquete LaTeX 
17963 \series bold
17964 floatflt
17965 \series default
17966
17967 \begin_inset LatexCommand index
17968 name "LaTeX-paquetes ! floatflt"
17969
17970 \end_inset
17971
17972 .
17973 \begin_inset Foot
17974 status collapsed
17975
17976 \begin_layout Standard
17977 La instalación de paquetes LaTeX se explica en el manual 
17978 \emph on
17979 Configuración de LaTeX
17980 \emph default
17981 .
17982 \end_layout
17983
17984 \end_inset
17985
17986  La anchura y posición del flotante se ajusta con cilc-derecha sobre el
17987  cuadro del flotante.
17988  La figura\InsetSpace ~
17989
17990 \begin_inset LatexCommand ref
17991 reference "fig:Esto-es-una"
17992
17993 \end_inset
17994
17995  es un ejemplo de flotante ajustado al texto con una anchura del 40\InsetSpace \thinspace{}
17996 col%.
17997 \begin_inset Foot
17998 status collapsed
17999
18000 \begin_layout Standard
18001 Ver unidades disponibles en\InsetSpace ~
18002
18003 \begin_inset LatexCommand ref
18004 reference "cha:Unidades-disponibles-en"
18005
18006 \end_inset
18007
18008 .
18009 \end_layout
18010
18011 \end_inset
18012
18013  Se ha añadido un espacio vertical bajo el encabezado para separarlo mejor
18014  del texto envolvente.
18015 \end_layout
18016
18017 \begin_layout Standard
18018 El paquete LaTeX 
18019 \series bold
18020 floatflt
18021 \series default
18022  también soporta tablas adosadas a texto pero aún no es soportado por LyX.
18023  Si lo necesitas, consulta la documentación de 
18024 \series bold
18025 floatflt
18026 \series default
18027  
18028 \begin_inset LatexCommand cite
18029 key "floatflt"
18030
18031 \end_inset
18032
18033 .
18034 \end_layout
18035
18036 \begin_layout Standard
18037 \begin_inset Note Greyedout
18038 status open
18039
18040 \begin_layout Standard
18041
18042 \series bold
18043 Nota:
18044 \series default
18045  ¡Los flotantes adosados a texto son frágiles! P.\InsetSpace \thinspace{}
18046 e.\InsetSpace ~
18047 si una figura está demasiado
18048  cerca de la parte inferior de la página se pueden perder cosas en el proceso
18049  de salida, el flotante puede no aparecer o situarse junto a otro texto.
18050 \begin_inset Foot
18051 status open
18052
18053 \begin_layout Standard
18054 La mejor solución es usar el paquete LaTeX 
18055 \series bold
18056 wrapf\SpecialChar \textcompwordmark{}
18057 ig
18058 \series default
18059
18060 \begin_inset LatexCommand index
18061 name "LaTeX-paquetes ! wrapfig\\vspace{4mm}"
18062
18063 \end_inset
18064
18065  en vez de 
18066 \series bold
18067 floatf\SpecialChar \textcompwordmark{}
18068 lt
18069 \series default
18070  pero actualmente no es soportado por LyX.
18071 \end_layout
18072
18073 \end_inset
18074
18075
18076 \end_layout
18077
18078 \end_inset
18079
18080
18081 \end_layout
18082
18083 \begin_layout Standard
18084 En general:
18085 \end_layout
18086
18087 \begin_layout Itemize
18088 Los flotantes adosados no deberían situarse en párrafos que van sobre un
18089  salto de página.
18090  Esto implica que lo mejor es insertarlos en el sitio exacto cuando el documento
18091  esté casi listo y puedas prever los saltos de página.
18092 \end_layout
18093
18094 \begin_layout Itemize
18095 Los flotantes adosados deberían situarse, bien en un párrafo propio antes
18096  del párrafo al que deben ajustarse, o bien dentro de un párrafo.
18097 \end_layout
18098
18099 \begin_layout Itemize
18100 Los flotantes adosados a párrafos consecutivos pueden dar problemas, así
18101  que asegura que hay un párrafo de texto entre ellos.
18102 \end_layout
18103
18104 \begin_layout Itemize
18105 Los flotantes adosados no están permitidos en cabeceras de sección o tablas.
18106 \end_layout
18107
18108 \begin_layout Section
18109 Numeración de flotantes
18110 \begin_inset LatexCommand label
18111 name "sec:Numeración-de-flotantes"
18112
18113 \end_inset
18114
18115
18116 \begin_inset LatexCommand index
18117 name "Flotantes ! Numeración"
18118
18119 \end_inset
18120
18121
18122 \end_layout
18123
18124 \begin_layout Standard
18125 En general, los flotantes se numeran independientemente de las secciones
18126  en las que se encuentran o según el esquema 
18127 \begin_inset Quotes eld
18128 \end_inset
18129
18130 capítulo.número
18131 \begin_inset Quotes erd
18132 \end_inset
18133
18134  o 
18135 \begin_inset Quotes eld
18136 \end_inset
18137
18138 sección.número
18139 \begin_inset Quotes erd
18140 \end_inset
18141
18142 , dependiendo de la clase de documento utilizada.
18143 \end_layout
18144
18145 \begin_layout Standard
18146 Para cambiar la numeración independiente de la sección, puedes usar el siguiente
18147  comando en el preámbulo del documento:
18148 \end_layout
18149
18150 \begin_layout Standard
18151
18152 \series bold
18153
18154 \backslash
18155 renewcommand{
18156 \backslash
18157 thetable}{
18158 \backslash
18159 roman{table}}
18160 \end_layout
18161
18162 \begin_layout Standard
18163
18164 \series bold
18165
18166 \backslash
18167 thetable 
18168 \series default
18169 es el comando que imprime el número de la tabla, para figuras flotantes
18170  el comando sería 
18171 \series bold
18172
18173 \backslash
18174 thefigure
18175 \series default
18176 .
18177  El comando 
18178 \series bold
18179
18180 \backslash
18181 roman
18182 \series default
18183  imprime el número de tabla en números romanos en minúscula.
18184 \end_layout
18185
18186 \begin_layout Standard
18187 Para cambiar el esquema de numeración, por ejemplo a 
18188 \begin_inset Quotes eld
18189 \end_inset
18190
18191 subsección.número
18192 \begin_inset Quotes erd
18193 \end_inset
18194
18195 , usa este comando en el preámbulo:
18196 \end_layout
18197
18198 \begin_layout Standard
18199
18200 \series bold
18201
18202 \backslash
18203 numberwithin{table}{subsection}
18204 \end_layout
18205
18206 \begin_layout Standard
18207 Para poder usar el comando 
18208 \series bold
18209
18210 \backslash
18211 numberwithin
18212 \series default
18213 , debes marcar la opción 
18214 \family sans
18215 Usar\InsetSpace ~
18216 el\InsetSpace ~
18217 paquete\InsetSpace ~
18218 AMS 
18219 \family default
18220 en el apartado 
18221 \family sans
18222 Ecuaciones 
18223 \family default
18224 de las preferencias del documento.
18225 \end_layout
18226
18227 \begin_layout Standard
18228 Puedes ver más detalles y notas importantes sobre comandos de numeración
18229  en la sección\InsetSpace ~
18230
18231 \begin_inset LatexCommand ref
18232 reference "sub:Numeración-de-Notas-al-Pie"
18233
18234 \end_inset
18235
18236 .
18237 \end_layout
18238
18239 \begin_layout Section
18240 Referencias a Flotantes
18241 \begin_inset LatexCommand label
18242 name "sec:Referencias-a-Flotantes"
18243
18244 \end_inset
18245
18246
18247 \begin_inset LatexCommand index
18248 name "Flotantes ! Referencias"
18249
18250 \end_inset
18251
18252
18253 \begin_inset LatexCommand index
18254 name "Referencias"
18255
18256 \end_inset
18257
18258
18259 \end_layout
18260
18261 \begin_layout Standard
18262 Para referirse a un flotante, inserta una etiqueta en su encabezado con
18263  el menú 
18264 \family sans
18265 Insertar\SpecialChar \menuseparator
18266 Etiqueta
18267 \family default
18268  o el botón 
18269 \begin_inset Graphics
18270         filename ../../images/label-insert.xpm
18271         scale 85
18272
18273 \end_inset
18274
18275 .
18276  Aparece una ventana esperando la introducción del texto de la etiqueta
18277  y se inserta un cuadro gris como este: 
18278 \begin_inset Graphics
18279         filename clipart/etiquetaQt4.png
18280         scale 85
18281
18282 \end_inset
18283
18284 .
18285  LyX ofrece como texto las primeras palabras del encabezado con un prefijo.
18286  El prefijo depende del tipo de flotante, p.\InsetSpace \thinspace{}
18287 e.\InsetSpace ~
18288 para figuras el prefijo será
18289  
18290 \begin_inset Quotes eld
18291 \end_inset
18292
18293
18294 \family sans
18295 fig:
18296 \family default
18297
18298 \begin_inset Quotes erd
18299 \end_inset
18300
18301 .
18302 \end_layout
18303
18304 \begin_layout Standard
18305 La etiqueta se usa como ancla y el nombre para la referencia.
18306  Puedes referenciar la etiqueta usando el menú 
18307 \family sans
18308 Insertar\SpecialChar \menuseparator
18309 Referencia
18310 \family default
18311 \InsetSpace ~
18312
18313 \family sans
18314 cruzada
18315 \family default
18316  o el botón 
18317 \begin_inset Graphics
18318         filename ../../images/dialog-show-new-inset_ref.xpm
18319         scale 85
18320
18321 \end_inset
18322
18323 .
18324  Aparece una ventana de referencia cruzada con todas las etiquetas del documento.
18325  Si tienes abiertos varios documentos LyX, escoge aquel con el  que estás
18326  trabajando de la lista desplegable de la parte superior del diálogo.
18327  Puedes ordenar las etiquetas alfabéticamente y elegir una.
18328  Se inserta un cuadro gris como este: 
18329 \begin_inset Graphics
18330         filename clipart/referenciaQt4.png
18331         scale 85
18332
18333 \end_inset
18334
18335 .
18336  En la salida, en lugar de este cuadro aparecerá el número de la referencia.
18337 \end_layout
18338
18339 \begin_layout Standard
18340 Se recomienda poner un espacio protegido entre el nombre de la referencia
18341  cruzada y su número para evitar saltos de línea entre ellos.
18342  Si una referencia cruzada corresponde a una etiqueta inexistente verás
18343  dos interrogaciones en la salida.
18344 \end_layout
18345
18346 \begin_layout Standard
18347 En cualquier momento puedes cambiar etiquetas haciendo cilc sobre el cuadro.
18348  Las referencias a las etiquetas cambiadas cambian automáticamente su enlace
18349  al texto de la etiqueta nueva, no te ocupes por eso.
18350 \end_layout
18351
18352 \begin_layout Standard
18353 El botón 
18354 \family sans
18355 Ir\InsetSpace ~
18356 a\InsetSpace ~
18357 la\InsetSpace ~
18358 etiqueta
18359 \family default
18360  en la ventana de referencia cruzada lleva el cursor hasta dicha etiqueta,
18361  y el texto del botón cambia a 
18362 \family sans
18363 Volver
18364 \family default
18365 , con el que se puede retornar a la referencia.
18366  cilc-derecha sobre el cuadro de la referencia también lleva el cursor hasta
18367  la etiqueta pero sin opción de volver.
18368 \end_layout
18369
18370 \begin_layout Subsection
18371 Formatos de Referencia Cruzada
18372 \begin_inset LatexCommand label
18373 name "sub:Formatos-referencia-cruzada"
18374
18375 \end_inset
18376
18377
18378 \begin_inset LatexCommand index
18379 name "Referencias ! Formatos"
18380
18381 \end_inset
18382
18383
18384 \end_layout
18385
18386 \begin_layout Standard
18387 Hay seis variedades de referencias cruzadas:
18388 \end_layout
18389
18390 \begin_layout Description
18391 <referencia>: imprime el número flotante, esta es la opción predeterminada:
18392  
18393 \begin_inset LatexCommand ref
18394 reference "fig:Dos-imágenes-distorsionadas"
18395
18396 \end_inset
18397
18398
18399 \end_layout
18400
18401 \begin_layout Description
18402 (<referencia>): imprime el número flotante entre paréntesis, es el estilo
18403  habitual para referirse a fórmulas, especialmente si se omite el nombre
18404  
18405 \begin_inset Quotes eld
18406 \end_inset
18407
18408 Ecuación
18409 \begin_inset Quotes erd
18410 \end_inset
18411
18412
18413 \begin_inset LatexCommand eqref
18414 reference "eq:Wgn"
18415
18416 \end_inset
18417
18418
18419 \end_layout
18420
18421 \begin_layout Description
18422 <página>: imprime el número de página: Página\InsetSpace ~
18423
18424 \begin_inset LatexCommand pageref
18425 reference "fig:Dos-imágenes-distorsionadas"
18426
18427 \end_inset
18428
18429
18430 \end_layout
18431
18432 \begin_layout Description
18433 en\InsetSpace ~
18434 página\InsetSpace ~
18435 <página>: imprime el texto 
18436 \begin_inset Quotes eld
18437 \end_inset
18438
18439 en la página
18440 \begin_inset Quotes erd
18441 \end_inset
18442
18443  y el número de página: 
18444 \begin_inset LatexCommand vpageref
18445 reference "fig:Dos-imágenes-distorsionadas"
18446
18447 \end_inset
18448
18449
18450 \end_layout
18451
18452 \begin_layout Description
18453 <referencia>\InsetSpace ~
18454 en\InsetSpace ~
18455 página\InsetSpace ~
18456 <página>: imprime el número flotante, el texto 
18457 \begin_inset Quotes eld
18458 \end_inset
18459
18460 en la página
18461 \begin_inset Quotes erd
18462 \end_inset
18463
18464  y el número de página: 
18465 \begin_inset LatexCommand vref
18466 reference "fig:Dos-imágenes-distorsionadas"
18467
18468 \end_inset
18469
18470
18471 \end_layout
18472
18473 \begin_layout Description
18474 Referencia\InsetSpace ~
18475 con\InsetSpace ~
18476 formato: imprime un formato personalizado.
18477  
18478 \begin_inset Note Greyedout
18479 status open
18480
18481 \begin_layout Standard
18482
18483 \series bold
18484 Nota:
18485 \series default
18486  Esta característica sólo está disponible si está instalado el paquete LaTeX
18487  
18488 \series bold
18489 prettyref
18490 \series default
18491 .
18492 \end_layout
18493
18494 \end_inset
18495
18496
18497 \end_layout
18498
18499 \begin_layout Standard
18500 Ten en cuenta que el estilo <página> no imprime el número si la etiqueta
18501  está en la misma página, en la anterior o en la siguiente.
18502  En su lugar verás p.\InsetSpace \thinspace{}
18503 e.\InsetSpace ~
18504 el texto 
18505 \begin_inset Quotes eld
18506 \end_inset
18507
18508
18509 \family sans
18510 en esta página
18511 \family default
18512
18513 \begin_inset Quotes erd
18514 \end_inset
18515
18516 .
18517 \end_layout
18518
18519 \begin_layout Standard
18520 El número y página actual de la parte del documento referida es automáticamente
18521  calculado por LaTeX en la salida.
18522  Las variedades se ajustan en el campo 
18523 \family sans
18524 Formato
18525 \family default
18526  de la ventana de referencia cruzada, que aparece al pinchar sobre el cuadro.
18527 \end_layout
18528
18529 \begin_layout Subsection
18530 Referencias a Subfiguras 
18531 \begin_inset LatexCommand label
18532 name "sub:Referencias-a-Subfiguras"
18533
18534 \end_inset
18535
18536
18537 \begin_inset LatexCommand index
18538 name "Referencias ! a Subfiguras"
18539
18540 \end_inset
18541
18542
18543 \end_layout
18544
18545 \begin_layout Standard
18546 Por el momento LyX no soporta las referencias a subfiguras, de modo que
18547  hay que emplear comandos LaTeX.
18548  La etiqueta se crea con el comando
18549 \end_layout
18550
18551 \begin_layout Standard
18552
18553 \series bold
18554
18555 \backslash
18556 label{fig:NombreEtiqueta}
18557 \end_layout
18558
18559 \begin_layout Standard
18560 que se inserta directamente en el campo de encabezado de la subfigura.
18561  Para referenciar la etiqueta añade el siguiente comando en ERT
18562 \end_layout
18563
18564 \begin_layout Standard
18565
18566 \series bold
18567
18568 \backslash
18569 ref{fig:NombreEtiqueta}
18570 \end_layout
18571
18572 \begin_layout Standard
18573 en la posición del documento en la que quieras que aparezca la referencia.
18574  Aquí hay una referencia a una subfigura: Subfigura\InsetSpace ~
18575
18576 \begin_inset ERT
18577 status collapsed
18578
18579 \begin_layout Standard
18580
18581
18582 \backslash
18583 ref{fig:Platypus}
18584 \end_layout
18585
18586 \end_inset
18587
18588
18589 \end_layout
18590
18591 \begin_layout Standard
18592
18593 \end_layout
18594
18595 \begin_layout Subsection
18596 Designación Automática de Referencias
18597 \begin_inset LatexCommand index
18598 name "Referencias ! Designación Automática"
18599
18600 \end_inset
18601
18602
18603 \end_layout
18604
18605 \begin_layout Standard
18606 El paquete LaTeX 
18607 \series bold
18608 hyperref
18609 \series default
18610  dispone de una característica muy útil que permite incluir automáticamente
18611  en las referencias cruzadas el nombre de los flotantes referidos (o partes
18612  de texto como secciones).
18613  Quieres p.\InsetSpace \thinspace{}
18614 e.\InsetSpace ~
18615 escribir la palabra 
18616 \begin_inset Quotes eld
18617 \end_inset
18618
18619 Figura
18620 \begin_inset Quotes erd
18621 \end_inset
18622
18623  antes de cada cuadro de referencia.
18624  Para conseguirlo debes cargar el paquete LaTeX 
18625 \series bold
18626 hyperref
18627 \series default
18628
18629 \begin_inset LatexCommand index
18630 name "LaTeX-paquetes ! hyperref"
18631
18632 \end_inset
18633
18634  en el preámbulo del documento con
18635 \end_layout
18636
18637 \begin_layout Standard
18638
18639 \series bold
18640
18641 \backslash
18642 usepackage[pdfborder={0 0 0}]{hyperref}
18643 \newline
18644
18645 \backslash
18646 AtBeginDocument{
18647 \backslash
18648 renewcommand{
18649 \backslash
18650 ref}[1]{
18651 \backslash
18652 mbox{
18653 \backslash
18654 autoref{#1}}}}
18655 \end_layout
18656
18657 \begin_layout Standard
18658
18659 \series bold
18660 hyperref
18661 \series default
18662  se utiliza para enlazar referencias cruzadas en las salidas DVI y PDF,
18663  esto significa que el lector del documento podrá pinchar sobre una entrada
18664  de Índice o una referencia y será inmediatamente dirigido a esa parte del
18665  documento.
18666  
18667 \series bold
18668 hyperref
18669 \series default
18670  también crea marcadores PDF para cada sección para facilitar al lector
18671  la navegación por el documento.
18672  Esto también se ha usado en este documento pero si echas una ojeada al
18673  preámbulo encontrarás varias opciones en la carga de 
18674 \series bold
18675 hyperref
18676 \series default
18677 .
18678  Para aprender más sobre ello acude a la documentación del paquete 
18679 \begin_inset LatexCommand cite
18680 key "hyperref"
18681
18682 \end_inset
18683
18684 .
18685 \end_layout
18686
18687 \begin_layout Standard
18688 \begin_inset Note Greyedout
18689 status open
18690
18691 \begin_layout Standard
18692
18693 \series bold
18694 Nota:
18695 \series default
18696  La designación automática de referencias no puede usarse en el estilo 
18697 \family sans
18698 Referencia\InsetSpace ~
18699 con\InsetSpace ~
18700 formato
18701 \family default
18702 , descrita en la sección\InsetSpace ~
18703
18704 \begin_inset LatexCommand ref
18705 reference "sub:Formatos-referencia-cruzada"
18706
18707 \end_inset
18708
18709 .
18710 \end_layout
18711
18712 \end_inset
18713
18714
18715 \end_layout
18716
18717 \begin_layout Subsection
18718 Colocación de Referencias
18719 \begin_inset LatexCommand label
18720 name "sub:Colocación-de-Referencias"
18721
18722 \end_inset
18723
18724
18725 \begin_inset LatexCommand index
18726 name "Referencias ! Colocación"
18727
18728 \end_inset
18729
18730
18731 \end_layout
18732
18733 \begin_layout Standard
18734 Si usas 
18735 \series bold
18736 hyperref
18737 \series default
18738
18739 \begin_inset LatexCommand index
18740 name "LaTeX-paquetes ! hyperref"
18741
18742 \end_inset
18743
18744  para enlazar referencias cruzadas en la salida, verás que al pinchar sobre
18745  la referencia de una imagen flotante te lleva hasta la etiqueta de la imagen.
18746  El encabezado será la primera parte de texto en pantalla, de forma que
18747  para ver la imagen debes deslizar.
18748  Se debe a que el ancla de enlace de la referencia se sitúa en la etiqueta.
18749  Usando el paquete 
18750 \series bold
18751 hypcap
18752 \series default
18753
18754 \begin_inset LatexCommand index
18755 name "LaTeX-paquetes ! hypcap"
18756
18757 \end_inset
18758
18759 , que forma parte del paquete LaTeX 
18760 \series bold
18761 oberdiek
18762 \series default
18763
18764 \begin_inset LatexCommand index
18765 name "LaTeX-paquetes ! oberdiek"
18766
18767 \end_inset
18768
18769 , el ancla de enlace se sitúa al comienzo de un flotante.
18770  Para usar esta característica para figuras flotantes carga 
18771 \series bold
18772 hypcap
18773 \series default
18774  en el preámbulo con
18775 \end_layout
18776
18777 \begin_layout Standard
18778
18779 \series bold
18780
18781 \backslash
18782 usepackage[f\SpecialChar \textcompwordmark{}
18783 igure]{hypcap}
18784 \end_layout
18785
18786 \begin_layout Standard
18787 Puedes usar 
18788 \series bold
18789 hypcap
18790 \series default
18791  para todos los flotantes aunque no se recomienda por razones de estabilidad.
18792  Más información en el manual de 
18793 \series bold
18794 hypcap
18795 \series default
18796  
18797 \begin_inset LatexCommand cite
18798 key "hypcap"
18799
18800 \end_inset
18801
18802 .
18803 \end_layout
18804
18805 \begin_layout Standard
18806 \begin_inset Note Greyedout
18807 status open
18808
18809 \begin_layout Standard
18810
18811 \series bold
18812 Nota: hypcap
18813 \series default
18814  debe cargarse después de 
18815 \series bold
18816 hyperref
18817 \series default
18818  en el preámbulo
18819 \series bold
18820 .
18821 \end_layout
18822
18823 \end_inset
18824
18825
18826 \end_layout
18827
18828 \begin_layout Standard
18829 \begin_inset Note Greyedout
18830 status open
18831
18832 \begin_layout Standard
18833
18834 \series bold
18835 Nota:
18836 \series default
18837  
18838 \series bold
18839 hypcap
18840 \series default
18841  no afecta a las referencias a subfiguras.
18842 \end_layout
18843
18844 \end_inset
18845
18846
18847 \end_layout
18848
18849 \begin_layout Section
18850 Colocación de Flotantes
18851 \begin_inset LatexCommand label
18852 name "sec:Colocación-de-Flotantes"
18853
18854 \end_inset
18855
18856
18857 \begin_inset LatexCommand index
18858 name "Flotantes ! Colocación"
18859
18860 \end_inset
18861
18862
18863 \end_layout
18864
18865 \begin_layout Standard
18866 cilc-derecha sobre un cuadro de flotante abre un diálogo en el que pueden
18867  cambiarse las opciones de LaTeX para situar los flotantes.
18868 \newline
18869 La opción 
18870 \family sans
18871 Extender\InsetSpace ~
18872 columnas
18873 \family default
18874  solo es aplicable a documentos de dos columnas: Si lo seleccionas, el flotante
18875  abarcará ambas columnas en lugar de una sola.
18876 \newline
18877 La opción 
18878 \family sans
18879 Girar\InsetSpace ~
18880 a\InsetSpace ~
18881 un\InsetSpace ~
18882 lado
18883 \family default
18884  sirve para girar flotantes, ver sección\InsetSpace ~
18885
18886 \begin_inset LatexCommand ref
18887 reference "sec:Rotación-de-Flotantes"
18888
18889 \end_inset
18890
18891 .
18892  
18893 \end_layout
18894
18895 \begin_layout Standard
18896 Puedes usar una o más de las siguientes opciones en el diálogo para establecer
18897  la posición de un flotante si desmarcas la opción 
18898 \family sans
18899 Usar\InsetSpace ~
18900 ubicación\InsetSpace ~
18901 predeterminada
18902 \family default
18903 :
18904 \end_layout
18905
18906 \begin_layout Description
18907
18908 \family sans
18909 \series bold
18910 Aquí\InsetSpace ~
18911 si\InsetSpace ~
18912 es\InsetSpace ~
18913 posible:
18914 \family default
18915 \series default
18916  intenta situar el flotante en la posición en la que se inserta
18917 \end_layout
18918
18919 \begin_layout Description
18920
18921 \family sans
18922 \series bold
18923 Principio\InsetSpace ~
18924 de\InsetSpace ~
18925 página:
18926 \family default
18927 \series default
18928  intenta situar el flotante al principio de la página actual
18929 \end_layout
18930
18931 \begin_layout Description
18932
18933 \family sans
18934 \series bold
18935 Fin\InsetSpace ~
18936 de\InsetSpace ~
18937 página:
18938 \family default
18939 \series default
18940  intenta situar el flotante al final de la página actual
18941 \end_layout
18942
18943 \begin_layout Description
18944
18945 \family sans
18946 \series bold
18947 Página\InsetSpace ~
18948 de\InsetSpace ~
18949 flotantes:
18950 \family default
18951 \series default
18952  intenta situar el flotante en una página propia 
18953 \end_layout
18954
18955 \begin_layout Standard
18956 LaTeX usa 
18957 \emph on
18958 siempre
18959 \emph default
18960  ese orden de opciones.
18961  Significa que si usas la colocación predeterminada, LaTeX probará en primer
18962  lugar 
18963 \family sans
18964 Aquí\InsetSpace ~
18965 si\InsetSpace ~
18966 es\InsetSpace ~
18967 posible
18968 \family default
18969 , luego 
18970 \family sans
18971 Principio\InsetSpace ~
18972 de\InsetSpace ~
18973 página
18974 \family default
18975 , y después las otras.
18976  Si no usas la predeterminada, LaTeX solo probará las opciones marcadas
18977  pero en dicho orden.
18978  Si no es posible ninguna de las 4 ubicaciones el proceso se repite internamente
18979  pero intenta poner el flotante en la página siguiente.
18980 \end_layout
18981
18982 \begin_layout Standard
18983 De forma predeterminada cada una de las opciones tiene sus propias reglas:
18984 \end_layout
18985
18986 \begin_layout Labeling
18987 \labelwidthstring 00.00.0000
18988
18989 \family sans
18990 Principio\InsetSpace ~
18991 de\InsetSpace ~
18992 página:
18993 \family default
18994  solo si el flotante ocupa menos del 70\InsetSpace \thinspace{}
18995 % de la página puede ubicarse al
18996  principio de página (
18997 \series bold
18998
18999 \backslash
19000 topfraction
19001 \series default
19002 )
19003 \end_layout
19004
19005 \begin_layout Labeling
19006 \labelwidthstring 00.00.0000
19007
19008 \family sans
19009 Fin\InsetSpace ~
19010 de\InsetSpace ~
19011 página:
19012 \family default
19013  solo si el flotante ocupa menos del 30\InsetSpace \thinspace{}
19014 % de la página puede ubicarse al
19015  fin de página.
19016  (
19017 \series bold
19018
19019 \backslash
19020 bottomfraction
19021 \series default
19022 )
19023 \end_layout
19024
19025 \begin_layout Labeling
19026 \labelwidthstring 00.00.0000
19027
19028 \family sans
19029 Página\InsetSpace ~
19030 de\InsetSpace ~
19031 flotantes:
19032 \family default
19033  solo si más del 50\InsetSpace \thinspace{}
19034 % de la página se ocupa por flotantes puede haber varios
19035  juntos en la misma página.
19036  (
19037 \series bold
19038
19039 \backslash
19040 floatpagefraction
19041 \series default
19042 )
19043 \end_layout
19044
19045 \begin_layout Standard
19046 Si no te agradan estas reglas puedes ignorarlas marcando la opción adicional
19047  
19048 \family sans
19049 Ignorar\InsetSpace ~
19050 reglas\InsetSpace ~
19051 de\InsetSpace ~
19052 LaTeX
19053 \family default
19054 .
19055 \newline
19056 También puedes redefinir las reglas con los comandos LaTeX que van entre
19057  paréntesis tras la descripción de las reglas anteriores.
19058  Por ejemplo, para aumentar el valor predeterminado, quizás pequeño, de
19059  la regla 
19060 \family sans
19061 Fin
19062 \family default
19063 \InsetSpace ~
19064
19065 \family sans
19066 de
19067 \family default
19068 \InsetSpace ~
19069
19070 \family sans
19071 página
19072 \family default
19073  al 50\InsetSpace \thinspace{}
19074 %, añade esta línea en el preámbulo:
19075 \end_layout
19076
19077 \begin_layout Standard
19078
19079 \series bold
19080
19081 \backslash
19082 renewcommand{
19083 \backslash
19084 bottomfraction}{0.5}
19085 \end_layout
19086
19087 \begin_layout Standard
19088 En determinados casos podrías necesitar ubicar un flotante exactamente en
19089  la posición en la que se inserta.
19090  Para esto puedes usar la opción 
19091 \family sans
19092 Aquí\InsetSpace ~
19093 definitivamente
19094 \family default
19095 .
19096  Usa esta opción esporádicamente y solo cuando el documento esté casi listo,
19097  porque el flotante ya no podrá 
19098 \begin_inset Quotes eld
19099 \end_inset
19100
19101 flotar
19102 \begin_inset Quotes erd
19103 \end_inset
19104
19105  y si haces cambios al documento se podría estropear el diseño de la página.
19106 \end_layout
19107
19108 \begin_layout Standard
19109 No hay opciones de ubicación para flotantes ajustados a texto porque siempre
19110  están rodeados por texto de un párrafo determinado.
19111 \begin_inset VSpace bigskip
19112 \end_inset
19113
19114
19115 \end_layout
19116
19117 \begin_layout Standard
19118 A veces surge el problema de que un flotante se sitúa al principio de la
19119  página mientras que su sección correspondiente empieza en mitad de la página,
19120  así que el lector podría creer que el flotante forma parte de la sección
19121  anterior.
19122  Para evitarlo puede emplearse el comando LaTeX 
19123 \series bold
19124
19125 \backslash
19126 suppressf\SpecialChar \textcompwordmark{}
19127 loats
19128 \series default
19129 , que suprime la ubicación de un flotante dado en la página donde se inserta
19130  y además puede servir para evitar que el flotante se coloque antes del
19131  inicio de sección.
19132  Para ello, añade estos comandos al preámbulo:
19133 \end_layout
19134
19135 \begin_layout Standard
19136
19137 \series bold
19138
19139 \backslash
19140 let
19141 \backslash
19142 mySection
19143 \backslash
19144 section
19145 \newline
19146
19147 \backslash
19148 renewcommand{
19149 \backslash
19150 section}{
19151 \backslash
19152 suppressf\SpecialChar \textcompwordmark{}
19153 loats[t]
19154 \backslash
19155 mySection}
19156 \end_layout
19157
19158 \begin_layout Standard
19159 Se puede hacer lo mismo para todas las cabeceras de sección, capítulos y
19160  subsecciones.
19161  No es recomendable para partes pequeñas de texto como subsubsecciones porque
19162  LaTeX podría tener problemas para encontrar una ubicación adecuada.
19163 \end_layout
19164
19165 \begin_layout Standard
19166 \begin_inset VSpace bigskip
19167 \end_inset
19168
19169 En ciertos casos se quieren tener todas las figuras/tablas al final del
19170  documento.
19171  Para estos casos está el paquete LaTeX 
19172 \series bold
19173 endf\SpecialChar \textcompwordmark{}
19174 loat
19175 \series default
19176
19177 \begin_inset LatexCommand index
19178 name "LaTeX-paquetes ! endfloat"
19179
19180 \end_inset
19181
19182 .
19183  Pone todas las figuras y tablas flotantes al final del documento en secciones
19184  propias.
19185  En la posición original del flotante se inserta una indicación como 
19186 \begin_inset Quotes eld
19187 \end_inset
19188
19189
19190 \family sans
19191 [Figure\InsetSpace ~
19192 3.2 about here.]
19193 \family default
19194
19195 \begin_inset Quotes erd
19196 \end_inset
19197
19198 .
19199  El paquete 
19200 \series bold
19201 endf\SpecialChar \textcompwordmark{}
19202 loat
19203 \series default
19204  se carga en el preámbulo con la línea
19205 \end_layout
19206
19207 \begin_layout Standard
19208
19209 \series bold
19210
19211 \backslash
19212 usepackage[options]{endf\SpecialChar \textcompwordmark{}
19213 loat}
19214 \end_layout
19215
19216 \begin_layout Standard
19217 Hay varias opciones para diseñar las secciones figura/tabla creadas.
19218  Para más información ver la documentación de 
19219 \begin_inset LatexCommand cite
19220 key "endfloat"
19221
19222 \end_inset
19223
19224 .
19225 \newline
19226
19227 \begin_inset Note Greyedout
19228 status open
19229
19230 \begin_layout Standard
19231
19232 \series bold
19233 Nota: endf\SpecialChar \textcompwordmark{}
19234 loat
19235 \series default
19236  no traduce automáticamente la indicación, hay que hacerlo manualmente,
19237  ver sección\InsetSpace ~
19238 4 en 
19239 \begin_inset LatexCommand cite
19240 key "endfloat"
19241
19242 \end_inset
19243
19244 .
19245 \end_layout
19246
19247 \end_inset
19248
19249
19250 \newline
19251
19252 \begin_inset Note Greyedout
19253 status open
19254
19255 \begin_layout Standard
19256
19257 \series bold
19258 Nota:
19259 \series default
19260  Actualmente hay un error en 
19261 \series bold
19262 endf\SpecialChar \textcompwordmark{}
19263 loat
19264 \series default
19265  cuando el encabezado contiene el carácter alemán 
19266 \begin_inset Quotes eld
19267 \end_inset
19268
19269 ß
19270 \begin_inset Quotes erd
19271 \end_inset
19272
19273 .
19274  Usa en ese caso el comando 
19275 \begin_inset Quotes eld
19276 \end_inset
19277
19278
19279 \series bold
19280
19281 \backslash
19282 ss
19283 \series default
19284
19285 \begin_inset Quotes erd
19286 \end_inset
19287
19288  en ERT en vez de 
19289 \begin_inset Quotes eld
19290 \end_inset
19291
19292 ß
19293 \begin_inset Quotes erd
19294 \end_inset
19295
19296 .
19297 \end_layout
19298
19299 \end_inset
19300
19301
19302 \end_layout
19303
19304 \begin_layout Standard
19305 \begin_inset VSpace bigskip
19306 \end_inset
19307
19308 Más detalles sobre ubicación de flotantes en libros sobre LaTeX como 
19309 \begin_inset LatexCommand cite
19310 key "latexcompanion,latexguide,latexbook"
19311
19312 \end_inset
19313
19314 .
19315 \end_layout
19316
19317 \begin_layout Section
19318 Rotación de Flotantes
19319 \begin_inset LatexCommand label
19320 name "sec:Rotación-de-Flotantes"
19321
19322 \end_inset
19323
19324
19325 \begin_inset LatexCommand index
19326 name "Flotantes ! Rotación"
19327
19328 \end_inset
19329
19330
19331 \end_layout
19332
19333 \begin_layout Standard
19334 Podrías necesitar girar flotantes, especialmente con tablas grandes.
19335  Para girar todo el flotante y su encabezado, pincha sobre su cuadro y marca
19336  la opción 
19337 \family sans
19338 Girar\InsetSpace ~
19339 a\InsetSpace ~
19340 un\InsetSpace ~
19341 lado
19342 \family default
19343 .
19344 \end_layout
19345
19346 \begin_layout Standard
19347 Los flotantes girados son puestos siempre en su propia página (o columna
19348  si el documento es de dos columnas).
19349  Normalmente se rotan de forma que puedes leerlos desde el margen externo
19350  ---a la izquierda en páginas impares, a la derecha en pares---.
19351 \end_layout
19352
19353 \begin_layout Standard
19354 Los flotantes girados se refieren igual que los normales, y el formato de
19355  encabezado también es el mismo: un ejemplo es la tabla\InsetSpace ~
19356
19357 \begin_inset LatexCommand ref
19358 reference "tab:Tabla-girada"
19359
19360 \end_inset
19361
19362 .
19363 \end_layout
19364
19365 \begin_layout Standard
19366 \begin_inset Note Greyedout
19367 status open
19368
19369 \begin_layout Standard
19370
19371 \series bold
19372 Nota:
19373 \series default
19374  No todos los visores DVI pueden mostrar tablas giradas.
19375 \end_layout
19376
19377 \end_inset
19378
19379
19380 \end_layout
19381
19382 \begin_layout Standard
19383 \begin_inset Float table
19384 wide false
19385 sideways true
19386 status open
19387
19388 \begin_layout Standard
19389 \begin_inset Caption
19390
19391 \begin_layout Standard
19392 \begin_inset LatexCommand label
19393 name "tab:Tabla-girada"
19394
19395 \end_inset
19396
19397 Tabla girada
19398 \end_layout
19399
19400 \end_inset
19401
19402
19403 \end_layout
19404
19405 \begin_layout Standard
19406 \align center
19407 \begin_inset Tabular
19408 <lyxtabular version="3" rows="1" columns="5">
19409 <features>
19410 <column alignment="center" valignment="top" leftline="true" width="0">
19411 <column alignment="center" valignment="top" leftline="true" width="0">
19412 <column alignment="center" valignment="top" leftline="true" width="0">
19413 <column alignment="center" valignment="top" leftline="true" width="0">
19414 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19415 <row topline="true" bottomline="true">
19416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19417 \begin_inset Text
19418
19419 \begin_layout Standard
19420 test
19421 \end_layout
19422
19423 \end_inset
19424 </cell>
19425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19426 \begin_inset Text
19427
19428 \begin_layout Standard
19429 b
19430 \end_layout
19431
19432 \end_inset
19433 </cell>
19434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19435 \begin_inset Text
19436
19437 \begin_layout Standard
19438 c
19439 \end_layout
19440
19441 \end_inset
19442 </cell>
19443 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19444 \begin_inset Text
19445
19446 \begin_layout Standard
19447 d
19448 \end_layout
19449
19450 \end_inset
19451 </cell>
19452 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19453 \begin_inset Text
19454
19455 \begin_layout Standard
19456 e
19457 \end_layout
19458
19459 \end_inset
19460 </cell>
19461 </row>
19462 </lyxtabular>
19463
19464 \end_inset
19465
19466
19467 \end_layout
19468
19469 \end_inset
19470
19471
19472 \end_layout
19473
19474 \begin_layout Section
19475 Formato de Encabezados
19476 \begin_inset LatexCommand index
19477 name "Encabezados ! Formato"
19478
19479 \end_inset
19480
19481
19482 \begin_inset LatexCommand index
19483 name "Flotantes ! Formato de Encabezados"
19484
19485 \end_inset
19486
19487
19488 \begin_inset LatexCommand index
19489 name "LaTeX-paquetes ! caption"
19490
19491 \end_inset
19492
19493
19494 \begin_inset LatexCommand label
19495 name "sec:Formato-de-Encabezados"
19496
19497 \end_inset
19498
19499
19500 \end_layout
19501
19502 \begin_layout Standard
19503 El entorno 
19504 \family sans
19505 Encabezado
19506 \family default
19507  es el predeterminado para los 
19508 \family sans
19509 Flotantes
19510 \family default
19511 .
19512  En LyX los encabezados se muestran como etiqueta, p.\InsetSpace \thinspace{}
19513 e.\InsetSpace ~
19514
19515 \begin_inset Quotes eld
19516 \end_inset
19517
19518
19519 \family sans
19520 Figura #
19521 \family default
19522 :
19523 \begin_inset Quotes erd
19524 \end_inset
19525
19526  seguida por el texto.
19527  El símbolo de número 
19528 \begin_inset Quotes eld
19529 \end_inset
19530
19531 #
19532 \begin_inset Quotes erd
19533 \end_inset
19534
19535  es sustituido en la salida impresa por el número de referencia real.
19536  Por defecto la etiqueta y el número usan la misma fuente que el texto del
19537  encabezado y el signo dos puntos sigue al número para separar la etiqueta
19538  del texto.
19539  El formato de encabezado no es apropiado para todos los formatos de documento.
19540  
19541 \end_layout
19542
19543 \begin_layout Standard
19544 Para cambiar el formato predeterminado carga el paquete LaTeX 
19545 \series bold
19546 caption
19547 \series default
19548
19549 \begin_inset LatexCommand index
19550 name "LaTeX-paquetes ! caption"
19551
19552 \end_inset
19553
19554  en el preámbulo del documento con la línea:
19555 \end_layout
19556
19557 \begin_layout Standard
19558
19559 \series bold
19560
19561 \backslash
19562 usepackage[definición de formato]{caption}
19563 \end_layout
19564
19565 \begin_layout Standard
19566 Para poner, por ejemplo, la etiqueta y el número en sans-serif negrita y
19567  los encabezados de tabla siempre sobre ella como en este documento, usa
19568  el comando:
19569 \end_layout
19570
19571 \begin_layout Standard
19572
19573 \series bold
19574
19575 \backslash
19576 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19577 \end_layout
19578
19579 \begin_layout Standard
19580 También puedes definir distintos formatos de encabezado para los distintos
19581  tipos de flotantes.
19582  En ese caso carga el paquete 
19583 \series bold
19584 caption
19585 \series default
19586  sin opciones específicas y define los distintos formatos con ayuda del
19587  comando
19588 \end_layout
19589
19590 \begin_layout Standard
19591
19592 \series bold
19593
19594 \backslash
19595 captionsetup[tipo de flotante]{definición de formato}
19596 \end_layout
19597
19598 \begin_layout Standard
19599 en el preámbulo del documento.
19600  Por ejemplo los encabezados de la Figura\InsetSpace ~
19601
19602 \begin_inset LatexCommand ref
19603 reference "fig:Esto-es-una-fig"
19604
19605 \end_inset
19606
19607  y la tabla\InsetSpace ~
19608
19609 \begin_inset LatexCommand ref
19610 reference "tab:Esto-es-una-tab"
19611
19612 \end_inset
19613
19614  pueden crearse usando los siguientes comandos en el preámbulo:
19615 \end_layout
19616
19617 \begin_layout Standard
19618
19619 \series bold
19620
19621 \backslash
19622 usepackage[tableposition=top]{caption}
19623 \series default
19624
19625 \newline
19626
19627 \series bold
19628
19629 \backslash
19630 captionsetup[f\SpecialChar \textcompwordmark{}
19631 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19632 \newline
19633
19634 \begin_inset ERT
19635 status collapsed
19636
19637 \begin_layout Standard
19638
19639
19640 \backslash
19641 hphantom{
19642 \backslash
19643
19644 \backslash
19645 captionsetup[figure]
19646 \backslash
19647 {}
19648 \end_layout
19649
19650 \end_inset
19651
19652  labelsep=period}
19653 \newline
19654
19655 \backslash
19656 captionsetup[table]{labelfont={bf,sf}}
19657 \end_layout
19658
19659 \begin_layout Standard
19660 \begin_inset Note Greyedout
19661 status open
19662
19663 \begin_layout Standard
19664
19665 \series bold
19666 Nota: 
19667 \series default
19668 La opción 
19669 \series bold
19670 tableposition=top
19671 \series default
19672  no tiene efecto si se usa una clase de documento 
19673 \series bold
19674 koma-script
19675 \series default
19676 .
19677  En este caso debe utilizarse la opción de clase de documento 
19678 \series bold
19679 tablecaptionabove
19680 \series default
19681 .
19682  
19683 \end_layout
19684
19685 \end_inset
19686
19687
19688 \end_layout
19689
19690 \begin_layout Standard
19691 Para más información sobre el paquete 
19692 \series bold
19693 caption
19694 \series default
19695  acude a su documentación 
19696 \begin_inset LatexCommand cite
19697 key "caption,caption-de"
19698
19699 \end_inset
19700
19701 .
19702 \end_layout
19703
19704 \begin_layout Standard
19705 Para cambiar el nombre de la etiqueta de 
19706 \begin_inset Quotes eld
19707 \end_inset
19708
19709 Figura
19710 \begin_inset Quotes erd
19711 \end_inset
19712
19713  a 
19714 \begin_inset Quotes eld
19715 \end_inset
19716
19717 Imagen
19718 \begin_inset Quotes erd
19719 \end_inset
19720
19721 , p.\InsetSpace \thinspace{}
19722 e., usa el siguiente comando de preámbulo:
19723 \end_layout
19724
19725 \begin_layout Standard
19726
19727 \series bold
19728
19729 \backslash
19730 renewcommand{
19731 \backslash
19732 fnum@figure}{Imagen~
19733 \backslash
19734 thefigure}
19735 \end_layout
19736
19737 \begin_layout Standard
19738 donde 
19739 \series bold
19740
19741 \backslash
19742 thefigure
19743 \series default
19744  inserta el número de figura y 
19745 \series bold
19746
19747 \begin_inset Quotes eld
19748 \end_inset
19749
19750
19751 \series default
19752 ~
19753 \series bold
19754
19755 \begin_inset Quotes erd
19756 \end_inset
19757
19758
19759 \series default
19760  genera un espacio protegido.
19761
19762 \series bold
19763  
19764 \end_layout
19765
19766 \begin_layout Standard
19767 \begin_inset VSpace bigskip
19768 \end_inset
19769
19770 Si estás usando la clase de documento 
19771 \series bold
19772 koma-script
19773 \series default
19774
19775 \begin_inset LatexCommand index
19776 name "LaTeX-paquetes ! koma-script"
19777
19778 \end_inset
19779
19780  (
19781 \family sans
19782 article (koma-script)
19783 \family default
19784
19785 \family sans
19786 book (koma-script)
19787 \family default
19788
19789 \family sans
19790 letter (koma-script)
19791 \family default
19792 , o 
19793 \family sans
19794 report (koma-script)
19795 \family default
19796 \InsetSpace \thinspace{}
19797 ), puedes emplear en vez del paquete 
19798 \series bold
19799 caption
19800 \series default
19801  el comando 
19802 \series bold
19803
19804 \backslash
19805 setkomafont
19806 \series default
19807  incluido en 
19808 \series bold
19809 koma-script
19810 \series default
19811 .
19812  Por ejemplo, para poner en negrita la etiqueta del encabezado añade este
19813  comando en el preámbulo del documento:
19814 \end_layout
19815
19816 \begin_layout Standard
19817
19818 \series bold
19819
19820 \backslash
19821 setkomafont{captionlabel}{
19822 \backslash
19823 bfseries}
19824 \end_layout
19825
19826 \begin_layout Standard
19827 Más información sobre 
19828 \series bold
19829
19830 \backslash
19831 setkomafont
19832 \series default
19833  en la documentación de 
19834 \series bold
19835 koma-script
19836 \series default
19837  
19838 \begin_inset LatexCommand cite
19839 key "koma-script,koma-script-de"
19840
19841 \end_inset
19842
19843 .
19844 \end_layout
19845
19846 \begin_layout Standard
19847 \begin_inset ERT
19848 status collapsed
19849
19850 \begin_layout Standard
19851
19852
19853 \backslash
19854 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19855 }
19856 \end_layout
19857
19858 \end_inset
19859
19860
19861 \begin_inset Note Note
19862 status open
19863
19864 \begin_layout Standard
19865 El formato del encabezado se ha cambiado solo para este ejemplo.
19866 \end_layout
19867
19868 \end_inset
19869
19870
19871 \end_layout
19872
19873 \begin_layout Standard
19874 \begin_inset Float figure
19875 placement !p
19876 wide false
19877 sideways false
19878 status open
19879
19880 \begin_layout Standard
19881 \align center
19882 \begin_inset Graphics
19883         filename ../clipart/mobius.eps
19884         lyxscale 50
19885         scale 50
19886
19887 \end_inset
19888
19889
19890 \end_layout
19891
19892 \begin_layout Standard
19893 \begin_inset Caption
19894
19895 \begin_layout Standard
19896 \begin_inset LatexCommand label
19897 name "fig:Esto-es-una-fig"
19898
19899 \end_inset
19900
19901
19902 \begin_inset OptArg
19903 status open
19904
19905 \begin_layout Standard
19906 Figura con título muy largo
19907 \end_layout
19908
19909 \end_inset
19910
19911 Este es un ejemplo de figura con un título que es mayor de una línea para
19912  mostrar el formato diferente.
19913  Aquí se usa un título personalizado.
19914 \end_layout
19915
19916 \end_inset
19917
19918
19919 \end_layout
19920
19921 \end_inset
19922
19923
19924 \end_layout
19925
19926 \begin_layout Standard
19927 \begin_inset ERT
19928 status collapsed
19929
19930 \begin_layout Standard
19931
19932
19933 \backslash
19934 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19935 on}
19936 \end_layout
19937
19938 \end_inset
19939
19940
19941 \end_layout
19942
19943 \begin_layout Standard
19944 \begin_inset Float table
19945 placement !p
19946 wide false
19947 sideways false
19948 status open
19949
19950 \begin_layout Standard
19951 \begin_inset Caption
19952
19953 \begin_layout Standard
19954 \begin_inset LatexCommand label
19955 name "tab:Esto-es-una-tab"
19956
19957 \end_inset
19958
19959
19960 \begin_inset OptArg
19961 status collapsed
19962
19963 \begin_layout Standard
19964 Tabla con encabezado muy largo
19965 \end_layout
19966
19967 \end_inset
19968
19969 Este es un ejemplo de encabezado de tabla mayor que una línea para mostrar
19970  el formato diferente.
19971  Aquí se usa el formato de encabezado estándar para las tablas.
19972 \end_layout
19973
19974 \end_inset
19975
19976
19977 \end_layout
19978
19979 \begin_layout Standard
19980 \align center
19981 \begin_inset Tabular
19982 <lyxtabular version="3" rows="1" columns="5">
19983 <features>
19984 <column alignment="center" valignment="top" leftline="true" width="0">
19985 <column alignment="center" valignment="top" leftline="true" width="0">
19986 <column alignment="center" valignment="top" leftline="true" width="0">
19987 <column alignment="center" valignment="top" leftline="true" width="0">
19988 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19989 <row topline="true" bottomline="true">
19990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19991 \begin_inset Text
19992
19993 \begin_layout Standard
19994 a
19995 \end_layout
19996
19997 \end_inset
19998 </cell>
19999 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20000 \begin_inset Text
20001
20002 \begin_layout Standard
20003 b
20004 \end_layout
20005
20006 \end_inset
20007 </cell>
20008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20009 \begin_inset Text
20010
20011 \begin_layout Standard
20012 c
20013 \end_layout
20014
20015 \end_inset
20016 </cell>
20017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20018 \begin_inset Text
20019
20020 \begin_layout Standard
20021 d
20022 \end_layout
20023
20024 \end_inset
20025 </cell>
20026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20027 \begin_inset Text
20028
20029 \begin_layout Standard
20030 e
20031 \end_layout
20032
20033 \end_inset
20034 </cell>
20035 </row>
20036 </lyxtabular>
20037
20038 \end_inset
20039
20040
20041 \end_layout
20042
20043 \end_inset
20044
20045
20046 \end_layout
20047
20048 \begin_layout Section
20049 Colocación de Encabezados
20050 \begin_inset LatexCommand index
20051 name "Encabezados ! Colocación"
20052
20053 \end_inset
20054
20055
20056 \begin_inset LatexCommand index
20057 name "Flotantes ! Colocación de Encabezados"
20058
20059 \end_inset
20060
20061
20062 \begin_inset LatexCommand label
20063 name "sec:Colocación-de-Encabezados"
20064
20065 \end_inset
20066
20067
20068 \end_layout
20069
20070 \begin_layout Standard
20071 La norma habitual para colocar títulos o encabezados es:
20072 \end_layout
20073
20074 \begin_layout Description
20075 Figura: El título bajo la figura
20076 \end_layout
20077
20078 \begin_layout Description
20079 Tabla: El encabezado sobre la tabla
20080 \end_layout
20081
20082 \begin_layout Standard
20083 Desafortunadamente, las clases estándar de LaTeX no soportan encabezados
20084  sobre la tabla.
20085  Esto implica que si usas las clases de documento 
20086 \family sans
20087 article
20088 \family default
20089
20090 \family sans
20091 book
20092 \family default
20093
20094 \family sans
20095 letter
20096 \family default
20097 , o 
20098 \family sans
20099 report
20100 \family default
20101  no habrá espacio entre el encabezado y la tabla.
20102  Para insertar el espacio adecuado añade la siguiente opción al comando
20103  del paquete LaTeX 
20104 \series bold
20105 caption
20106 \series default
20107  en el preámbulo del documento
20108 \begin_inset Foot
20109 status collapsed
20110
20111 \begin_layout Standard
20112 Ver la sección\InsetSpace ~
20113
20114 \begin_inset LatexCommand ref
20115 reference "sec:Formato-de-Encabezados"
20116
20117 \end_inset
20118
20119  para más información sobre el paquete 
20120 \series bold
20121 caption
20122 \series default
20123 .
20124 \end_layout
20125
20126 \end_inset
20127
20128 :
20129 \end_layout
20130
20131 \begin_layout Standard
20132
20133 \series bold
20134 tableposition=top
20135 \end_layout
20136
20137 \begin_layout Standard
20138 Si estás usando la clase 
20139 \series bold
20140 koma-script
20141 \series default
20142
20143 \begin_inset LatexCommand index
20144 name "LaTeX-paquetes ! koma-script"
20145
20146 \end_inset
20147
20148  (
20149 \family sans
20150 article (koma-script)
20151 \family default
20152
20153 \family sans
20154 book (koma-script)
20155 \family default
20156
20157 \family sans
20158 letter (koma-script)
20159 \family default
20160 , o 
20161 \family sans
20162 report (koma-script)
20163 \family default
20164 \InsetSpace \thinspace{}
20165 ), en vez de 
20166 \series bold
20167 caption
20168 \series default
20169  puedes poner la opción 
20170 \series bold
20171 tablecaptionabove
20172 \series default
20173  de la clase de documento, o usar el entorno 
20174 \family sans
20175 Encabezado
20176 \family default
20177 \InsetSpace ~
20178
20179 \family sans
20180 Arriba
20181 \family default
20182  en vez del entorno 
20183 \family sans
20184 Encabezado
20185 \family default
20186 .
20187 \end_layout
20188
20189 \begin_layout Standard
20190 \begin_inset VSpace bigskip
20191 \end_inset
20192
20193 También es posible poner el encabezado junto a una figura o tabla.
20194  Para conseguirlo hay que cargar el paquete LaTeX 
20195 \series bold
20196 sidecap
20197 \series default
20198
20199 \begin_inset LatexCommand index
20200 name "LaTeX-paquetes ! sidecap"
20201
20202 \end_inset
20203
20204  añadiendo en el preámbulo del documento la línea
20205 \end_layout
20206
20207 \begin_layout Standard
20208
20209 \series bold
20210
20211 \backslash
20212 usepackage[option]{sidecap}
20213 \end_layout
20214
20215 \begin_layout Standard
20216 Si no se especifica opción, el encabezado se ubica del lado del margen externo
20217  de la página -- a la derecha en páginas impares, a la izquierda en las
20218  pares.
20219  Puedes cambiar la colocación al margen interno con la opción 
20220 \series bold
20221 innercaption
20222 \series default
20223 .
20224  Para forzar la ubicación siempre a la derecha o a la izquierda, usa las
20225  opciones 
20226 \series bold
20227 rightcaption
20228 \series default
20229  o 
20230 \series bold
20231 leftcaption
20232 \series default
20233 , respectivamente.
20234 \end_layout
20235
20236 \begin_layout Standard
20237 Para situar en LyX el encabezado de un flotante al lado, es necesario añadir
20238  estos comandos al preámbulo del documento:
20239 \end_layout
20240
20241 \begin_layout Standard
20242
20243 \lyxline
20244
20245 \end_layout
20246
20247 \begin_layout Standard
20248
20249 \series bold
20250
20251 \backslash
20252 newcommand{
20253 \backslash
20254 TabBesBeg}{%
20255 \newline
20256
20257 \begin_inset ERT
20258 status collapsed
20259
20260 \begin_layout Standard
20261
20262
20263 \backslash
20264 hphantom{ }
20265 \end_layout
20266
20267 \end_inset
20268
20269
20270 \backslash
20271 let
20272 \backslash
20273 MyTable
20274 \backslash
20275 table
20276 \newline
20277
20278 \begin_inset ERT
20279 status collapsed
20280
20281 \begin_layout Standard
20282
20283
20284 \backslash
20285 hphantom{ }
20286 \end_layout
20287
20288 \end_inset
20289
20290
20291 \backslash
20292 let
20293 \backslash
20294 MyEndtable
20295 \backslash
20296 endtable
20297 \newline
20298
20299 \begin_inset ERT
20300 status collapsed
20301
20302 \begin_layout Standard
20303
20304
20305 \backslash
20306 hphantom{ }
20307 \end_layout
20308
20309 \end_inset
20310
20311
20312 \backslash
20313 renewenvironment{table}{
20314 \backslash
20315 begin{SCtable}}{
20316 \backslash
20317 end{SCtable}}}
20318 \end_layout
20319
20320 \begin_layout Standard
20321
20322 \series bold
20323
20324 \backslash
20325 newcommand{
20326 \backslash
20327 TabBesEnd}{%
20328 \newline
20329
20330 \begin_inset ERT
20331 status collapsed
20332
20333 \begin_layout Standard
20334
20335
20336 \backslash
20337 hphantom{ }
20338 \end_layout
20339
20340 \end_inset
20341
20342
20343 \backslash
20344 let
20345 \backslash
20346 table
20347 \backslash
20348 MyTable
20349 \newline
20350
20351 \begin_inset ERT
20352 status collapsed
20353
20354 \begin_layout Standard
20355
20356
20357 \backslash
20358 hphantom{ }
20359 \end_layout
20360
20361 \end_inset
20362
20363
20364 \backslash
20365 let
20366 \backslash
20367 endtable
20368 \backslash
20369 MyEndtable
20370 \end_layout
20371
20372 \begin_layout Standard
20373
20374 \series bold
20375
20376 \backslash
20377 newcommand{
20378 \backslash
20379 FigBesBeg}{%
20380 \newline
20381
20382 \begin_inset ERT
20383 status collapsed
20384
20385 \begin_layout Standard
20386
20387
20388 \backslash
20389 hphantom{ }
20390 \end_layout
20391
20392 \end_inset
20393
20394
20395 \backslash
20396 let
20397 \backslash
20398 MyFigure
20399 \backslash
20400 f\SpecialChar \textcompwordmark{}
20401 igure
20402 \newline
20403
20404 \begin_inset ERT
20405 status collapsed
20406
20407 \begin_layout Standard
20408
20409
20410 \backslash
20411 hphantom{ }
20412 \end_layout
20413
20414 \end_inset
20415
20416
20417 \backslash
20418 let
20419 \backslash
20420 MyEndf\SpecialChar \textcompwordmark{}
20421 igure
20422 \backslash
20423 endf\SpecialChar \textcompwordmark{}
20424 igure
20425 \newline
20426
20427 \begin_inset ERT
20428 status collapsed
20429
20430 \begin_layout Standard
20431
20432
20433 \backslash
20434 hphantom{ }
20435 \end_layout
20436
20437 \end_inset
20438
20439
20440 \backslash
20441 renewenvironment{f\SpecialChar \textcompwordmark{}
20442 igure}{
20443 \backslash
20444 begin{SCf\SpecialChar \textcompwordmark{}
20445 igure}}{
20446 \backslash
20447 end{SCf\SpecialChar \textcompwordmark{}
20448 igure}}}
20449 \end_layout
20450
20451 \begin_layout Standard
20452
20453 \series bold
20454
20455 \backslash
20456 newcommand{
20457 \backslash
20458 FigBesEnd}{%
20459 \newline
20460
20461 \begin_inset ERT
20462 status collapsed
20463
20464 \begin_layout Standard
20465
20466
20467 \backslash
20468 hphantom{ }
20469 \end_layout
20470
20471 \end_inset
20472
20473
20474 \backslash
20475 let
20476 \backslash
20477 f\SpecialChar \textcompwordmark{}
20478 igure
20479 \backslash
20480 MyFigure
20481 \newline
20482
20483 \begin_inset ERT
20484 status collapsed
20485
20486 \begin_layout Standard
20487
20488
20489 \backslash
20490 hphantom{ }
20491 \end_layout
20492
20493 \end_inset
20494
20495
20496 \backslash
20497 let
20498 \backslash
20499 endf\SpecialChar \textcompwordmark{}
20500 igure
20501 \backslash
20502 MyEndf\SpecialChar \textcompwordmark{}
20503 igure}
20504 \end_layout
20505
20506 \begin_layout Standard
20507
20508 \lyxline
20509
20510 \end_layout
20511
20512 \begin_layout Standard
20513 Estos comandos permiten redefinir los flotantes de modo que el encabezado
20514  aparezca en un lado.
20515  Para figuras flotantes usa el comando
20516 \end_layout
20517
20518 \begin_layout Standard
20519
20520 \series bold
20521
20522 \backslash
20523 FigBesBeg
20524 \end_layout
20525
20526 \begin_layout Standard
20527 en ERT antes del flotante.
20528  Detrás del flotante inserta
20529 \end_layout
20530
20531 \begin_layout Standard
20532
20533 \series bold
20534
20535 \backslash
20536 FigBesEnd
20537 \end_layout
20538
20539 \begin_layout Standard
20540 en ERT para volver a la definición original de flotantes.
20541 \end_layout
20542
20543 \begin_layout Standard
20544 Para tablas flotantes usa los comandos correspondientes
20545 \end_layout
20546
20547 \begin_layout Standard
20548
20549 \series bold
20550
20551 \backslash
20552 TabBesBeg
20553 \series default
20554  y 
20555 \series bold
20556
20557 \backslash
20558 TabBesEnd
20559 \end_layout
20560
20561 \begin_layout Standard
20562 La figura\InsetSpace ~
20563
20564 \begin_inset LatexCommand ref
20565 reference "fig:encab-al-lado"
20566
20567 \end_inset
20568
20569  y la tabla\InsetSpace ~
20570
20571 \begin_inset LatexCommand ref
20572 reference "tab:encab-al-lado"
20573
20574 \end_inset
20575
20576  son ejemplos en los que el título se sitúa al lado.
20577 \end_layout
20578
20579 \begin_layout Standard
20580 En los ejemplos puedes ver que el texto del título aparece encima del flotante
20581  en tablas flotantes y debajo en las figuras flotantes.
20582  Para cambiarlo, puedes usar el comando
20583 \end_layout
20584
20585 \begin_layout Standard
20586
20587 \series bold
20588
20589 \backslash
20590 sidecaptionvpos{tipo de flotante}{colocación}
20591 \end_layout
20592
20593 \begin_layout Standard
20594 en el preámbulo o en ERT antes del flotante.
20595  El tipo de flotante es 
20596 \family sans
20597 figure
20598 \family default
20599  o 
20600 \family sans
20601 table
20602 \family default
20603 , la colocación puede ser 
20604 \begin_inset Quotes eld
20605 \end_inset
20606
20607
20608 \family sans
20609 t
20610 \family default
20611
20612 \begin_inset Quotes erd
20613 \end_inset
20614
20615  por 
20616 \begin_inset Quotes eld
20617 \end_inset
20618
20619 top
20620 \begin_inset Quotes erd
20621 \end_inset
20622
20623  (arriba), 
20624 \begin_inset Quotes eld
20625 \end_inset
20626
20627
20628 \family sans
20629 c
20630 \family default
20631
20632 \begin_inset Quotes erd
20633 \end_inset
20634
20635  por 
20636 \begin_inset Quotes eld
20637 \end_inset
20638
20639 center
20640 \begin_inset Quotes erd
20641 \end_inset
20642
20643  (centro), o 
20644 \begin_inset Quotes eld
20645 \end_inset
20646
20647
20648 \family sans
20649 b
20650 \family default
20651
20652 \begin_inset Quotes erd
20653 \end_inset
20654
20655  por 
20656 \begin_inset Quotes eld
20657 \end_inset
20658
20659 bottom
20660 \begin_inset Quotes erd
20661 \end_inset
20662
20663  (abajo).
20664  Para tener, por ejemplo, el título de figuras flotantes verticalmente centrado,
20665  usa el comando
20666 \end_layout
20667
20668 \begin_layout Standard
20669
20670 \series bold
20671
20672 \backslash
20673 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20674 igure}{c}
20675 \end_layout
20676
20677 \begin_layout Standard
20678 Esto se ha hecho en la figura\InsetSpace ~
20679
20680 \begin_inset LatexCommand ref
20681 reference "fig:encab-al-lado-de-fig"
20682
20683 \end_inset
20684
20685 .
20686 \end_layout
20687
20688 \begin_layout Standard
20689 \begin_inset VSpace defskip
20690 \end_inset
20691
20692 Más información sobre el paquete 
20693 \series bold
20694 sidecap
20695 \series default
20696  en su documentación 
20697 \begin_inset LatexCommand cite
20698 key "sidecap"
20699
20700 \end_inset
20701
20702 .
20703 \end_layout
20704
20705 \begin_layout Standard
20706 \begin_inset Note Greyedout
20707 status open
20708
20709 \begin_layout Standard
20710
20711 \series bold
20712 Nota:
20713 \series default
20714  El paquete LaTeX 
20715 \series bold
20716 hypcap
20717 \series default
20718
20719 \begin_inset LatexCommand index
20720 name "LaTeX-paquetes ! hypcap"
20721
20722 \end_inset
20723
20724 , descrito en la sección\InsetSpace ~
20725
20726 \begin_inset LatexCommand ref
20727 reference "sub:Colocación-de-Referencias"
20728
20729 \end_inset
20730
20731 , no afecta a flotantes con el encabezado al lado.
20732 \end_layout
20733
20734 \end_inset
20735
20736
20737 \end_layout
20738
20739 \begin_layout Standard
20740 \begin_inset ERT
20741 status collapsed
20742
20743 \begin_layout Standard
20744
20745
20746 \backslash
20747 FigBesBeg 
20748 \end_layout
20749
20750 \end_inset
20751
20752
20753 \end_layout
20754
20755 \begin_layout Standard
20756 \begin_inset Float figure
20757 wide false
20758 sideways false
20759 status open
20760
20761 \begin_layout Standard
20762 \begin_inset Graphics
20763         filename ../clipart/escher-lsd.eps
20764         scale 75
20765
20766 \end_inset
20767
20768
20769 \end_layout
20770
20771 \begin_layout Standard
20772 \begin_inset Caption
20773
20774 \begin_layout Standard
20775 \begin_inset LatexCommand label
20776 name "fig:encab-al-lado"
20777
20778 \end_inset
20779
20780 Título al lado de una figura.
20781 \end_layout
20782
20783 \end_inset
20784
20785
20786 \end_layout
20787
20788 \end_inset
20789
20790
20791 \end_layout
20792
20793 \begin_layout Standard
20794 \begin_inset ERT
20795 status collapsed
20796
20797 \begin_layout Standard
20798
20799
20800 \backslash
20801 TabBesBeg 
20802 \end_layout
20803
20804 \end_inset
20805
20806
20807 \end_layout
20808
20809 \begin_layout Standard
20810 \begin_inset Float table
20811 wide false
20812 sideways false
20813 status open
20814
20815 \begin_layout Standard
20816 \begin_inset Caption
20817
20818 \begin_layout Standard
20819 \begin_inset LatexCommand label
20820 name "tab:encab-al-lado"
20821
20822 \end_inset
20823
20824 Título al lado de una tabla.
20825 \end_layout
20826
20827 \end_inset
20828
20829
20830 \end_layout
20831
20832 \begin_layout Standard
20833 \begin_inset Tabular
20834 <lyxtabular version="3" rows="4" columns="5">
20835 <features>
20836 <column alignment="center" valignment="top" leftline="true" width="0">
20837 <column alignment="center" valignment="top" leftline="true" width="0">
20838 <column alignment="center" valignment="top" leftline="true" width="0">
20839 <column alignment="center" valignment="top" leftline="true" width="0">
20840 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20841 <row topline="true">
20842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20843 \begin_inset Text
20844
20845 \begin_layout Standard
20846 a
20847 \end_layout
20848
20849 \end_inset
20850 </cell>
20851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20852 \begin_inset Text
20853
20854 \begin_layout Standard
20855
20856 \end_layout
20857
20858 \end_inset
20859 </cell>
20860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20861 \begin_inset Text
20862
20863 \begin_layout Standard
20864 b
20865 \end_layout
20866
20867 \end_inset
20868 </cell>
20869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20870 \begin_inset Text
20871
20872 \begin_layout Standard
20873
20874 \end_layout
20875
20876 \end_inset
20877 </cell>
20878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20879 \begin_inset Text
20880
20881 \begin_layout Standard
20882 c
20883 \end_layout
20884
20885 \end_inset
20886 </cell>
20887 </row>
20888 <row topline="true">
20889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20890 \begin_inset Text
20891
20892 \begin_layout Standard
20893
20894 \end_layout
20895
20896 \end_inset
20897 </cell>
20898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20899 \begin_inset Text
20900
20901 \begin_layout Standard
20902 d
20903 \end_layout
20904
20905 \end_inset
20906 </cell>
20907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20908 \begin_inset Text
20909
20910 \begin_layout Standard
20911
20912 \end_layout
20913
20914 \end_inset
20915 </cell>
20916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20917 \begin_inset Text
20918
20919 \begin_layout Standard
20920 e
20921 \end_layout
20922
20923 \end_inset
20924 </cell>
20925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20926 \begin_inset Text
20927
20928 \begin_layout Standard
20929
20930 \end_layout
20931
20932 \end_inset
20933 </cell>
20934 </row>
20935 <row topline="true">
20936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20937 \begin_inset Text
20938
20939 \begin_layout Standard
20940 f
20941 \end_layout
20942
20943 \end_inset
20944 </cell>
20945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20946 \begin_inset Text
20947
20948 \begin_layout Standard
20949
20950 \end_layout
20951
20952 \end_inset
20953 </cell>
20954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20955 \begin_inset Text
20956
20957 \begin_layout Standard
20958 g
20959 \end_layout
20960
20961 \end_inset
20962 </cell>
20963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20964 \begin_inset Text
20965
20966 \begin_layout Standard
20967
20968 \end_layout
20969
20970 \end_inset
20971 </cell>
20972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20973 \begin_inset Text
20974
20975 \begin_layout Standard
20976 h
20977 \end_layout
20978
20979 \end_inset
20980 </cell>
20981 </row>
20982 <row topline="true" bottomline="true">
20983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20984 \begin_inset Text
20985
20986 \begin_layout Standard
20987
20988 \end_layout
20989
20990 \end_inset
20991 </cell>
20992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20993 \begin_inset Text
20994
20995 \begin_layout Standard
20996 i
20997 \end_layout
20998
20999 \end_inset
21000 </cell>
21001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21002 \begin_inset Text
21003
21004 \begin_layout Standard
21005
21006 \end_layout
21007
21008 \end_inset
21009 </cell>
21010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21011 \begin_inset Text
21012
21013 \begin_layout Standard
21014 j
21015 \end_layout
21016
21017 \end_inset
21018 </cell>
21019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21020 \begin_inset Text
21021
21022 \begin_layout Standard
21023
21024 \end_layout
21025
21026 \end_inset
21027 </cell>
21028 </row>
21029 </lyxtabular>
21030
21031 \end_inset
21032
21033
21034 \end_layout
21035
21036 \end_inset
21037
21038
21039 \end_layout
21040
21041 \begin_layout Standard
21042 \begin_inset ERT
21043 status collapsed
21044
21045 \begin_layout Standard
21046
21047
21048 \backslash
21049 TabBesEnd
21050 \end_layout
21051
21052 \end_inset
21053
21054
21055 \end_layout
21056
21057 \begin_layout Standard
21058 \begin_inset ERT
21059 status collapsed
21060
21061 \begin_layout Standard
21062
21063
21064 \backslash
21065 sidecaptionvpos{figure}{c}
21066 \end_layout
21067
21068 \end_inset
21069
21070
21071 \begin_inset Float figure
21072 wide false
21073 sideways false
21074 status open
21075
21076 \begin_layout Standard
21077 \begin_inset Graphics
21078         filename ../clipart/escher-lsd.eps
21079         scale 75
21080
21081 \end_inset
21082
21083
21084 \end_layout
21085
21086 \begin_layout Standard
21087 \begin_inset Caption
21088
21089 \begin_layout Standard
21090 \begin_inset LatexCommand label
21091 name "fig:encab-al-lado-de-fig"
21092
21093 \end_inset
21094
21095 Título junto a una figura centrado verticalmente.
21096 \end_layout
21097
21098 \end_inset
21099
21100
21101 \end_layout
21102
21103 \end_inset
21104
21105
21106 \end_layout
21107
21108 \begin_layout Standard
21109 \begin_inset ERT
21110 status collapsed
21111
21112 \begin_layout Standard
21113
21114
21115 \backslash
21116 FigBesEnd
21117 \end_layout
21118
21119 \end_inset
21120
21121
21122 \end_layout
21123
21124 \begin_layout Section
21125 Lista de Flotantes
21126 \begin_inset LatexCommand label
21127 name "sec:Lista-de-Flotantes"
21128
21129 \end_inset
21130
21131
21132 \begin_inset LatexCommand index
21133 name "Flotantes ! Lista"
21134
21135 \end_inset
21136
21137
21138 \end_layout
21139
21140 \begin_layout Standard
21141 Igual que en el índice general se listan las secciones del documento, hay
21142  listas para todos los tipos de flotantes, como las figuras.
21143  Se pueden insertar mediante los submenús 
21144 \family sans
21145 Insertar\SpecialChar \menuseparator
21146 Lista / IG
21147 \family default
21148 .
21149 \end_layout
21150
21151 \begin_layout Standard
21152 Las entradas de la lista son los títulos del flotante o su título corto,
21153  el número de flotante, y el número de la página del documento en la que
21154  aparecen.
21155 \end_layout
21156
21157 \begin_layout Standard
21158 Puedes encontrar las listas de figuras y tablas al final de este documento.
21159 \end_layout
21160
21161 \begin_layout Chapter
21162 Notas
21163 \end_layout
21164
21165 \begin_layout Section
21166 Notas en 
21167 \begin_inset ERT
21168 status collapsed
21169
21170 \begin_layout Standard
21171
21172
21173 \backslash
21174 texorpdfstring{
21175 \end_layout
21176
21177 \end_inset
21178
21179 LyX
21180 \begin_inset ERT
21181 status collapsed
21182
21183 \begin_layout Standard
21184
21185 }{LyX}
21186 \end_layout
21187
21188 \end_inset
21189
21190  
21191 \begin_inset LatexCommand label
21192 name "sec:Notas-en-LyX"
21193
21194 \end_inset
21195
21196
21197 \begin_inset LatexCommand index
21198 name "Notas ! Notas en LyX"
21199
21200 \end_inset
21201
21202
21203 \begin_inset Note Note
21204 status collapsed
21205
21206 \begin_layout Standard
21207 El comando 
21208 \backslash
21209 texorpdfstring es suministrado por el paquete LaTeX hyperref para evitar
21210  que los enlaces se muestren erróneamente en los marcadores PDF.
21211  Para más información sobre esto mira en 
21212 \begin_inset LatexCommand cite
21213 key "hyperref"
21214
21215 \end_inset
21216
21217 .
21218 \end_layout
21219
21220 \end_inset
21221
21222
21223 \end_layout
21224
21225 \begin_layout Standard
21226 Las notas se insertan con el botón 
21227 \begin_inset Graphics
21228         filename ../../images/note-insert.xpm
21229         scale 85
21230
21231 \end_inset
21232
21233  o con el menú 
21234 \family sans
21235 Insertar\SpecialChar \menuseparator
21236 Nota
21237 \family default
21238 .
21239  Hay tres tipos de notas:
21240 \end_layout
21241
21242 \begin_layout Description
21243 Nota\InsetSpace ~
21244 LyX Este tipo es para notas internas que no han de aparecer en la salida.
21245  Su cuadro se muestra como este:
21246 \newline
21247
21248 \newline
21249
21250 \begin_inset Graphics
21251         filename clipart/NotaLyXImagenQt4.png
21252         display none
21253         scale 85
21254
21255 \end_inset
21256
21257  
21258 \begin_inset Note Note
21259 status collapsed
21260
21261 \begin_layout Standard
21262 Este es un texto en un recuadro que no se muestra en la salida.
21263 \end_layout
21264
21265 \end_inset
21266
21267
21268 \end_layout
21269
21270 \begin_layout Description
21271 Comentario Esta nota tampoco se muestra en la salida pero aparece como un
21272  comentario de LaTeX, cuando exportas el documento a LaTeX vía menú 
21273 \family sans
21274 Archivo\SpecialChar \menuseparator
21275 Exportar\SpecialChar \menuseparator
21276 LaTeX (pdflatex) / LaTeX (plain)
21277 \family default
21278 .
21279  Su recuadro se ve así:
21280 \newline
21281
21282 \newline
21283
21284 \begin_inset Graphics
21285         filename clipart/ComentNotaImagenQt4.png
21286         display none
21287         scale 85
21288
21289 \end_inset
21290
21291  
21292 \begin_inset Note Comment
21293 status collapsed
21294
21295 \begin_layout Standard
21296 Una nota comentario que solo aparece como comentario en archivos LaTeX.
21297 \end_layout
21298
21299 \end_inset
21300
21301
21302 \end_layout
21303
21304 \begin_layout Description
21305 Resaltado\InsetSpace ~
21306 en\InsetSpace ~
21307 gris Esta nota aparece en la salida como texto resaltado en gris.
21308  Su recuadro se parece a este:
21309 \newline
21310
21311 \newline
21312
21313 \begin_inset Graphics
21314         filename clipart/GrisNotaImagenQt4.png
21315         display none
21316         scale 85
21317
21318 \end_inset
21319
21320
21321 \newline
21322
21323 \begin_inset ERT
21324 status collapsed
21325
21326 \begin_layout Standard
21327
21328
21329 \backslash
21330 renewenvironment{lyxgreyedout}
21331 \end_layout
21332
21333 \begin_layout Standard
21334
21335 {
21336 \backslash
21337 textcolor[gray]{0.8}
21338 \backslash
21339 bgroup}{
21340 \backslash
21341 egroup}
21342 \end_layout
21343
21344 \end_inset
21345
21346
21347 \begin_inset Note Greyedout
21348 status open
21349
21350 \begin_layout Standard
21351 Este es el texto
21352 \begin_inset Foot
21353 status open
21354
21355 \begin_layout Standard
21356 Esto es un ejemplo de nota al pie en una nota resaltada en gris.
21357 \end_layout
21358
21359 \end_inset
21360
21361  de un comentario que se muestra resaltado en gris.
21362 \end_layout
21363
21364 \end_inset
21365
21366
21367 \begin_inset ERT
21368 status collapsed
21369
21370 \begin_layout Standard
21371
21372
21373 \backslash
21374 renewenvironment{lyxgreyedout}
21375 \end_layout
21376
21377 \begin_layout Standard
21378
21379 {
21380 \backslash
21381 textcolor{blue}
21382 \backslash
21383 bgroup}{
21384 \backslash
21385 egroup}
21386 \end_layout
21387
21388 \end_inset
21389
21390
21391 \begin_inset Note Note
21392 status collapsed
21393
21394 \begin_layout Standard
21395 La nota resaltada en gris se ha redefinido aquí para mostrarla con la definición
21396  original de LyX, ya que en el preámbulo de este documento se han redefinido
21397  estas notas para que salgan en azul, como se indica más adelante.
21398 \end_layout
21399
21400 \end_inset
21401
21402
21403 \newline
21404
21405 \newline
21406 Como se ve en el ejemplo, la primera línea de las notas resaltadas en gris
21407  está un poco sangrada, y por otra parte pueden tener notas al pie.
21408 \end_layout
21409
21410 \begin_layout Description
21411 Enmarcado Este tipo de notas aparecerá en la salida como un texto enmarcado.
21412  Su recuadro se verá como este:
21413 \newline
21414
21415 \newline
21416
21417 \family roman
21418 \series medium
21419
21420 \begin_inset Graphics
21421         filename clipart/NotaEnmarcadaImg.png
21422         display none
21423
21424 \end_inset
21425
21426
21427 \family default
21428 \series default
21429  
21430 \family roman
21431 \series medium
21432
21433 \begin_inset Note Framed
21434 status open
21435
21436 \begin_layout Standard
21437
21438 \family roman
21439 Este texto en un cuadro de nota se verá enmarcado en la salida.
21440 \end_layout
21441
21442 \end_inset
21443
21444
21445 \family default
21446 \series default
21447  
21448 \family roman
21449 \series medium
21450
21451 \family default
21452 \series default
21453 diferencia de los cuadros enmarcados
21454 \begin_inset Foot
21455 status collapsed
21456
21457 \begin_layout Standard
21458 Los cuadros enmarcados se describen en la sección\InsetSpace ~
21459
21460 \begin_inset LatexCommand ref
21461 reference "sec:Cuadros-Enmarcados"
21462
21463 \end_inset
21464
21465
21466 \end_layout
21467
21468 \end_inset
21469
21470 , este marco emplea siempre la anchura total de página y la nota va en su
21471  propio párrafo.
21472 \end_layout
21473
21474 \begin_layout Description
21475 Sombreado Este tipo de nota se verá en la salida con un fondo de color rojo.
21476  Su recuadro se verá como este:
21477 \newline
21478
21479 \newline
21480
21481 \family roman
21482 \series medium
21483
21484 \begin_inset Graphics
21485         filename clipart/NotaSombreadaImg.png
21486         display none
21487
21488 \end_inset
21489
21490  
21491 \begin_inset Note Shaded
21492 status open
21493
21494 \begin_layout Standard
21495
21496 \family roman
21497 Este texto en un cuadro de nota se verá en la salida sobre fondo en rojo.
21498 \end_layout
21499
21500 \end_inset
21501
21502  A diferencia de los cuadros coloreados
21503 \family default
21504 \series default
21505
21506 \begin_inset Foot
21507 status collapsed
21508
21509 \begin_layout Standard
21510 Los cuadros coloreados se describen en la sección\InsetSpace ~
21511
21512 \begin_inset LatexCommand ref
21513 reference "sec:Cuadros-Coloreados"
21514
21515 \end_inset
21516
21517 .
21518 \end_layout
21519
21520 \end_inset
21521
21522 , este cuadro de nota siempre usa toda la anchura de página y va en su propio
21523  párrafo.
21524 \end_layout
21525
21526 \begin_layout Standard
21527 \begin_inset VSpace bigskip
21528 \end_inset
21529
21530 Si usas el botón de la barra de herramientas para insertar notas, se inserta
21531  una 
21532 \family sans
21533 Nota\InsetSpace ~
21534 LyX
21535 \family default
21536 .
21537  Puedes cambiar entre los tres tipos de nota con cilc-derecha sobre el recuadro.
21538  
21539 \family roman
21540 \series medium
21541 \bar no
21542 Si quieres convertir un texto presente a nota, márcalo y pincha sobre el
21543  botón de herramienta 
21544 \family sans
21545 \series default
21546 \bar default
21547 nota
21548 \family default
21549 .
21550 \end_layout
21551
21552 \begin_layout Standard
21553 \begin_inset VSpace bigskip
21554 \end_inset
21555
21556 Se puede cambiar el color del 
21557 \family sans
21558 Resaltado en gris
21559 \family default
21560  poniendo en el preámbulo el comando:
21561 \end_layout
21562
21563 \begin_layout Standard
21564
21565 \series bold
21566
21567 \backslash
21568 renewenvironment{lyxgreyedout}
21569 \newline
21570
21571 \begin_inset ERT
21572 status collapsed
21573
21574 \begin_layout Standard
21575
21576
21577 \backslash
21578 hphantom{ }
21579 \end_layout
21580
21581 \end_inset
21582
21583 {
21584 \backslash
21585 textcolor{color}
21586 \backslash
21587 bgroup}{
21588 \backslash
21589 egroup}
21590 \end_layout
21591
21592 \begin_layout Standard
21593 Los colores disponibles y el método para definir nuestros propios colores
21594  se explica en la sección\InsetSpace ~
21595
21596 \begin_inset LatexCommand ref
21597 reference "sec:Tablas-Coloreadas"
21598
21599 \end_inset
21600
21601 .
21602 \end_layout
21603
21604 \begin_layout Standard
21605 Las notas en azul en este documento se han hecho con notas del tipo 
21606 \family sans
21607 Resaltado en gris
21608 \family default
21609  pero definiendo el color del texto en azul.
21610 \end_layout
21611
21612 \begin_layout Standard
21613 \begin_inset VSpace bigskip
21614 \end_inset
21615
21616
21617 \end_layout
21618
21619 \begin_layout Standard
21620 El estilo de texto en las notas de tipo 
21621 \family sans
21622 Enmarcado
21623 \family default
21624  y 
21625 \family sans
21626 Sombreado
21627 \family default
21628  se puede establecer en el diálogo 
21629 \family sans
21630 Estilo del texto.
21631 \end_layout
21632
21633 \begin_layout Standard
21634 El grosor predeterminado del marco en las notas 
21635 \family sans
21636 Enmarcadas
21637 \family default
21638  es 0.4\InsetSpace \thinspace{}
21639 pt; se puede cambiar con el comando 
21640 \backslash
21641
21642 \series bold
21643 FrameRule
21644 \series default
21645 .
21646  El espacio entre el contenido y el marco es 9
21647 \series bold
21648 \InsetSpace \thinspace{}
21649
21650 \series default
21651 pt por defecto; se puede cambiar con 
21652 \series bold
21653
21654 \backslash
21655 FrameSep
21656 \series default
21657 .
21658  Por ejemplo, el marco de la siguiente nota 
21659 \family sans
21660 Enmarcada
21661 \family default
21662  está hecho con los comandos ERT
21663 \series bold
21664  
21665 \end_layout
21666
21667 \begin_layout Standard
21668
21669 \series bold
21670
21671 \backslash
21672 FrameRule 5pt 
21673 \backslash
21674 FrameSep 0.5cm
21675 \end_layout
21676
21677 \begin_layout Standard
21678 \begin_inset ERT
21679 status collapsed
21680
21681 \begin_layout Standard
21682
21683
21684 \backslash
21685 FrameRule 5pt 
21686 \backslash
21687 FrameSep 0.5cm
21688 \end_layout
21689
21690 \end_inset
21691
21692
21693 \begin_inset Note Framed
21694 status open
21695
21696 \begin_layout Standard
21697 Texto en una nota 
21698 \family sans
21699 Enmarcada
21700 \family default
21701 .
21702 \end_layout
21703
21704 \end_inset
21705
21706
21707 \begin_inset ERT
21708 status collapsed
21709
21710 \begin_layout Standard
21711
21712
21713 \backslash
21714 FrameRule 0.4pt 
21715 \backslash
21716 FrameSep 9pt
21717 \end_layout
21718
21719 \end_inset
21720
21721
21722 \end_layout
21723
21724 \begin_layout Standard
21725 \begin_inset VSpace bigskip
21726 \end_inset
21727
21728
21729 \end_layout
21730
21731 \begin_layout Standard
21732 Para las notas 
21733 \family sans
21734 Sombreadas
21735 \family default
21736  el espacio entre el contenido y el borde es 3\InsetSpace \thinspace{}
21737 pt por defecto; se puede cambiar
21738  con 
21739 \series bold
21740
21741 \backslash
21742 fboxsep
21743 \series default
21744 .
21745 \newline
21746 El color rojo predeterminado se puede cambiar con el comando 
21747 \series bold
21748
21749 \backslash
21750 def\SpecialChar \textcompwordmark{}
21751 inecolor{shadebox}
21752 \series default
21753 .
21754  El esquema del comando 
21755 \series bold
21756
21757 \backslash
21758 def\SpecialChar \textcompwordmark{}
21759 inecolor
21760 \series default
21761  se explica en la sección\InsetSpace ~
21762
21763 \begin_inset LatexCommand ref
21764 reference "sec:Tablas-Coloreadas"
21765
21766 \end_inset
21767
21768
21769 \begin_inset Foot
21770 status collapsed
21771
21772 \begin_layout Standard
21773 Observa que 
21774 \series bold
21775
21776 \backslash
21777 def\SpecialChar \textcompwordmark{}
21778 inecolor 
21779 \series default
21780 requiere el paquete LaTeX 
21781 \series bold
21782 color
21783 \series default
21784  en el preámbulo,  véase la sección
21785 \series bold
21786 \InsetSpace ~
21787
21788 \begin_inset LatexCommand ref
21789 reference "sec:Cuadros-Coloreados"
21790
21791 \end_inset
21792
21793
21794 \series default
21795 .
21796
21797 \series bold
21798  
21799 \end_layout
21800
21801 \end_inset
21802
21803 .
21804 \end_layout
21805
21806 \begin_layout Standard
21807 Por ejemplo, la siguiente nota 
21808 \family sans
21809 Sombreada
21810 \family default
21811  se ha hecho con los comandos ERT
21812 \end_layout
21813
21814 \begin_layout Standard
21815
21816 \series bold
21817
21818 \backslash
21819 fboxsep 0.5cm
21820 \newline
21821
21822 \backslash
21823 def\SpecialChar \textcompwordmark{}
21824 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21825 \end_layout
21826
21827 \begin_layout Standard
21828 \begin_inset ERT
21829 status open
21830
21831 \begin_layout Standard
21832
21833
21834 \backslash
21835 fboxsep 0.5cm
21836 \end_layout
21837
21838 \end_inset
21839
21840
21841 \begin_inset ERT
21842 status open
21843
21844 \begin_layout Standard
21845
21846
21847 \backslash
21848 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21849 \end_layout
21850
21851 \end_inset
21852
21853
21854 \begin_inset Note Shaded
21855 status open
21856
21857 \begin_layout Standard
21858
21859 \color yellow
21860 Texto amarillo en una nota 
21861 \family sans
21862 Sombreada
21863 \family default
21864  \InsetSpace ~
21865 con fondo verde oscuro.
21866 \end_layout
21867
21868 \end_inset
21869
21870
21871 \begin_inset ERT
21872 status collapsed
21873
21874 \begin_layout Standard
21875
21876
21877 \backslash
21878 fboxsep 3pt
21879 \end_layout
21880
21881 \end_inset
21882
21883
21884 \begin_inset ERT
21885 status collapsed
21886
21887 \begin_layout Standard
21888
21889
21890 \backslash
21891 definecolor{shadecolor}{rgb}{1,0,0}
21892 \end_layout
21893
21894 \end_inset
21895
21896
21897 \end_layout
21898
21899 \begin_layout Section
21900 Notas al pie
21901 \begin_inset LatexCommand label
21902 name "sec:Notas-al-pie"
21903
21904 \end_inset
21905
21906
21907 \begin_inset LatexCommand index
21908 name "Notas ! al Pie"
21909
21910 \end_inset
21911
21912
21913 \begin_inset LatexCommand index
21914 name "Notas al Pie"
21915
21916 \end_inset
21917
21918
21919 \end_layout
21920
21921 \begin_layout Standard
21922 Las notas al pie se insertan con el botón 
21923 \begin_inset Graphics
21924         filename ../../images/footnote-insert.xpm
21925         scale 85
21926
21927 \end_inset
21928
21929  o el menú 
21930 \family sans
21931 Insertar\SpecialChar \menuseparator
21932 Nota\InsetSpace ~
21933 al\InsetSpace ~
21934 pie
21935 \family default
21936 .
21937  
21938 \family roman
21939 \series medium
21940 \bar no
21941 Aparece un recuadro como este:
21942 \family default
21943 \series default
21944 \bar default
21945  
21946 \begin_inset Graphics
21947         filename clipart/notapieQt4.png
21948         scale 80
21949
21950 \end_inset
21951
21952  
21953 \family roman
21954 \series medium
21955 \bar no
21956 donde puedes introducir el texto.
21957  Si quieres convertir un texto existente en nota al pie, márcalo y pincha
21958  sobre el
21959 \family default
21960 \series default
21961 \bar default
21962  
21963 \family roman
21964 \series medium
21965 \bar no
21966 botón
21967 \family default
21968 \series default
21969 \bar default
21970 .
21971 \end_layout
21972
21973 \begin_layout Standard
21974 Aquí hay un ejemplo de nota al pie:
21975 \family roman
21976 \series medium
21977 \bar no
21978
21979 \begin_inset Foot
21980 status open
21981
21982 \begin_layout Standard
21983 \begin_inset LatexCommand label
21984 name "pie:Esto-es-una"
21985
21986 \end_inset
21987
21988 Ejemplo de nota al pie.
21989 \end_layout
21990
21991 \end_inset
21992
21993
21994 \family default
21995 \series default
21996 \bar default
21997
21998 \begin_inset ERT
21999 status collapsed
22000
22001 \begin_layout Standard
22002
22003
22004 \backslash
22005 newcounter{MyRepeatFoot}
22006 \end_layout
22007
22008 \begin_layout Standard
22009
22010
22011 \backslash
22012 setcounter{MyRepeatFoot}{
22013 \backslash
22014 thefootnote}
22015 \end_layout
22016
22017 \end_inset
22018
22019
22020 \end_layout
22021
22022 \begin_layout Standard
22023 En la salida, el pie se muestra como número exponente en el lugar del texto
22024  donde se coloca el recuadro.
22025  El texto se coloca al final de la página actual.
22026  Los números de las notas son calculados por LaTeX, y son consecutivos.
22027  Si comienza o no el recuento en cada capítulo depende de la clase de documento.
22028 \end_layout
22029
22030 \begin_layout Standard
22031 Las notas al pie pueden referenciarse como flotantes: inserta una etiqueta
22032  en la nota y pon una referencia cruzada a esta etiqueta en el texto como
22033  se describe en la sección\InsetSpace ~
22034
22035 \begin_inset LatexCommand ref
22036 reference "sec:Referencias-a-Flotantes"
22037
22038 \end_inset
22039
22040 .
22041 \newline
22042 Esto es una referencia cruzada a la Nota al pie\InsetSpace ~
22043
22044 \begin_inset LatexCommand ref
22045 reference "pie:Esto-es-una"
22046
22047 \end_inset
22048
22049 .
22050 \newline
22051
22052 \begin_inset Note Greyedout
22053 status collapsed
22054
22055 \begin_layout Standard
22056
22057 \series bold
22058 Nota:
22059 \series default
22060  LyX no suministra prefijos para etiquetas en notas al pie, así que has
22061  de insertar un prefijo, p.\InsetSpace \thinspace{}
22062 e.\InsetSpace ~
22063
22064 \family sans
22065
22066 \begin_inset Quotes eld
22067 \end_inset
22068
22069 pie:
22070 \family default
22071
22072 \begin_inset Quotes erd
22073 \end_inset
22074
22075  manualmente cuando quieras usar el estilo 
22076 \family sans
22077 Referencia\InsetSpace ~
22078 con\InsetSpace ~
22079 formato
22080 \family default
22081 .
22082 \end_layout
22083
22084 \end_inset
22085
22086
22087 \end_layout
22088
22089 \begin_layout Standard
22090 \begin_inset VSpace defskip
22091 \end_inset
22092
22093 Para poner notas al pie en tablas, tienes que usar minipáginas, ver sección\InsetSpace ~
22094
22095 \begin_inset LatexCommand ref
22096 reference "sec:Minipáginas"
22097
22098 \end_inset
22099
22100 .
22101  Los pies en tablas largas en la sección\InsetSpace ~
22102
22103 \begin_inset LatexCommand ref
22104 reference "sub:Notas-al-pie-en-Tablas-Largas"
22105
22106 \end_inset
22107
22108 .
22109 \end_layout
22110
22111 \begin_layout Standard
22112 \begin_inset VSpace defskip
22113 \end_inset
22114
22115 Para crear solo una marca para una nota al pie, puedes usar el comando 
22116 \series bold
22117
22118 \backslash
22119 footnotemark[número]
22120 \series default
22121  en ERT.
22122  Esto se emplea si tienes la misma anotación varias veces en el texto pero
22123  no quieres imprimir el pie cada vez.
22124 \newline
22125 Como no sabes el número del pie que
22126  se repite mientras escribes el texto, tienes que guardarlo.
22127  Para el siguiente ejemplo de marca de pie, se han insertado estos comandos
22128  en ERT detrás de Nota\InsetSpace ~
22129 al\InsetSpace ~
22130 pie\InsetSpace ~
22131
22132 \begin_inset LatexCommand ref
22133 reference "pie:Esto-es-una"
22134
22135 \end_inset
22136
22137  para guardar el número de pie:
22138 \end_layout
22139
22140 \begin_layout Standard
22141
22142 \series bold
22143
22144 \backslash
22145 newcounter{MyRepeatFoot}
22146 \newline
22147
22148 \backslash
22149 setcounter{MyRepeatFoot}{
22150 \backslash
22151 thefootnote}
22152 \end_layout
22153
22154 \begin_layout Standard
22155 La marca de pie se crea entonces con el comando:
22156 \end_layout
22157
22158 \begin_layout Standard
22159
22160 \series bold
22161
22162 \backslash
22163 footnotemark[
22164 \backslash
22165 theMyRepeatFoot]
22166 \end_layout
22167
22168 \begin_layout Standard
22169 Aquí hay un ejemplo de marca de pie:
22170 \family roman
22171 \series medium
22172 \bar no
22173
22174 \begin_inset ERT
22175 status collapsed
22176
22177 \begin_layout Standard
22178
22179
22180 \backslash
22181 footnotemark[
22182 \backslash
22183 theMyRepeatFoot]
22184 \end_layout
22185
22186 \end_inset
22187
22188
22189 \end_layout
22190
22191 \begin_layout Subsection
22192 Numeración de Notas al Pie
22193 \begin_inset LatexCommand label
22194 name "sub:Numeración-de-Notas-al-Pie"
22195
22196 \end_inset
22197
22198
22199 \begin_inset LatexCommand index
22200 name "Notas al Pie ! Numeración"
22201
22202 \end_inset
22203
22204
22205 \end_layout
22206
22207 \begin_layout Standard
22208 Para reiniciar el número de pie a 1 en cada sección añade este 
22209 \family roman
22210 comando en el preámbulo:
22211 \end_layout
22212
22213 \begin_layout Standard
22214
22215 \series bold
22216
22217 \backslash
22218 @addtoreset{footnote}{section}
22219 \end_layout
22220
22221 \begin_layout Standard
22222 \begin_inset VSpace bigskip
22223 \end_inset
22224
22225 El siguiente comando en el preámbulo cambia el estilo de numeración del
22226  pie a números romanos en minúsculas:
22227 \end_layout
22228
22229 \begin_layout Standard
22230
22231 \series bold
22232
22233 \backslash
22234 renewcommand{
22235 \backslash
22236 thefootnote}{
22237 \backslash
22238 roman{footnote}}
22239 \end_layout
22240
22241 \begin_layout Standard
22242 \begin_inset ERT
22243 status open
22244
22245 \begin_layout Standard
22246
22247
22248 \backslash
22249 renewcommand{
22250 \backslash
22251 thefootnote}{
22252 \backslash
22253 roman{footnote}}
22254 \end_layout
22255
22256 \end_inset
22257
22258  Nota al pie en números romanos:
22259 \begin_inset Foot
22260 status open
22261
22262 \begin_layout Standard
22263 Ejemplo de nota al pie en números romanos.
22264 \end_layout
22265
22266 \end_inset
22267
22268
22269 \begin_inset ERT
22270 status collapsed
22271
22272 \begin_layout Standard
22273
22274
22275 \backslash
22276 renewcommand{
22277 \backslash
22278 thefootnote}{
22279 \backslash
22280 arabic{footnote}}
22281 \end_layout
22282
22283 \end_inset
22284
22285
22286 \end_layout
22287
22288 \begin_layout Standard
22289 Para cambiar el estilo de número a romanos en mayúscula cambia el comando
22290  
22291 \series bold
22292
22293 \backslash
22294 roman
22295 \series default
22296  por 
22297 \series bold
22298
22299 \backslash
22300 Roman
22301 \series default
22302 .
22303  Para ordenar las notas al pie con letras mayúsculas o minúsculas usa 
22304 \series bold
22305
22306 \backslash
22307 Alph
22308 \series default
22309  o 
22310 \series bold
22311
22312 \backslash
22313 alph
22314 \series default
22315 , respectivamente.
22316  Para ordenar las notas al pie con símbolos usa 
22317 \series bold
22318
22319 \backslash
22320 fnsymbol
22321 \series default
22322 .
22323 \end_layout
22324
22325 \begin_layout Standard
22326 \begin_inset Note Greyedout
22327 status open
22328
22329 \begin_layout Standard
22330
22331 \series bold
22332 Nota:
22333 \series default
22334  Solo puedes ordenar hasta 26 pies con letras, porque está limitado a letras
22335  simples.
22336 \end_layout
22337
22338 \end_inset
22339
22340
22341 \newline
22342
22343 \begin_inset Note Greyedout
22344 status open
22345
22346 \begin_layout Standard
22347
22348 \series bold
22349 Nota:
22350 \series default
22351  Solo puedes ordenar hasta 9 pies con símbolos.
22352 \end_layout
22353
22354 \end_inset
22355
22356
22357 \end_layout
22358
22359 \begin_layout Standard
22360 Para volver al estilo de numeración predeterminado cuando has cambiado a
22361  otro estilo, usa 
22362 \series bold
22363
22364 \backslash
22365 arabic
22366 \series default
22367  en vez de 
22368 \series bold
22369
22370 \backslash
22371 roman
22372 \series default
22373  en el comando anterior.
22374 \end_layout
22375
22376 \begin_layout Standard
22377 \begin_inset VSpace bigskip
22378 \end_inset
22379
22380
22381 \end_layout
22382
22383 \begin_layout Standard
22384 Si quieres numerar notas al pie en el esquema 
22385 \begin_inset Quotes eld
22386 \end_inset
22387
22388 capítulo.nota
22389 \begin_inset Quotes erd
22390 \end_inset
22391
22392 , añade el siguiente comando al preámbulo del documento:
22393 \end_layout
22394
22395 \begin_layout Standard
22396
22397 \series bold
22398
22399 \backslash
22400 numberwithin{footnote}{chapter}
22401 \end_layout
22402
22403 \begin_layout Standard
22404 Para poder usar el comando 
22405 \series bold
22406
22407 \backslash
22408 numberwithin
22409 \series default
22410 , marca la opción 
22411 \family sans
22412 Usar
22413 \family default
22414 \InsetSpace ~
22415
22416 \family sans
22417 el
22418 \family default
22419 \InsetSpace ~
22420
22421 \family sans
22422 paquete
22423 \family default
22424 \InsetSpace ~
22425
22426 \family sans
22427 AMS
22428 \family default
22429  en la solapa 
22430 \family sans
22431 Ecuaciones
22432 \family default
22433  de la configuración del documento.
22434 \end_layout
22435
22436 \begin_layout Standard
22437 \begin_inset ERT
22438 status collapsed
22439
22440 \begin_layout Standard
22441
22442
22443 \backslash
22444 numberwithin{footnote}{chapter}
22445 \end_layout
22446
22447 \end_inset
22448
22449 Esto es otro ejemplo de nota al pie:
22450 \series bold
22451
22452 \begin_inset Foot
22453 status collapsed
22454
22455 \begin_layout Standard
22456 Nota al pie numerada en el esquema 
22457 \begin_inset Quotes eld
22458 \end_inset
22459
22460 capítulo.nota
22461 \begin_inset Quotes erd
22462 \end_inset
22463
22464 .
22465 \end_layout
22466
22467 \end_inset
22468
22469
22470 \series default
22471
22472 \begin_inset ERT
22473 status collapsed
22474
22475 \begin_layout Standard
22476
22477
22478 \backslash
22479 numberwithin{footnote}{part}
22480 \end_layout
22481
22482 \end_inset
22483
22484
22485 \end_layout
22486
22487 \begin_layout Standard
22488 \begin_inset Note Greyedout
22489 status open
22490
22491 \begin_layout Standard
22492
22493 \series bold
22494 Nota: 
22495 \backslash
22496 numberwithin 
22497 \series default
22498 siempre imprime el número de nota al pie en números arábigos; las redefiniciones
22499  previas para obtener números no arábigos se sobreescriben.
22500 \end_layout
22501
22502 \end_inset
22503
22504
22505 \end_layout
22506
22507 \begin_layout Standard
22508 Así, para obtener por ejemplo el esquema 
22509 \begin_inset Quotes eld
22510 \end_inset
22511
22512 capítulo.
22513 \backslash
22514 Roman{footnote}
22515 \begin_inset Quotes erd
22516 \end_inset
22517
22518 , usa este comando en vez de 
22519 \series bold
22520
22521 \backslash
22522 numberwithin
22523 \series default
22524 :
22525 \end_layout
22526
22527 \begin_layout Standard
22528
22529 \series bold
22530
22531 \backslash
22532 renewcommand{
22533 \backslash
22534 thefootnote}{
22535 \backslash
22536 thechapter.
22537 \backslash
22538 Roman{footnote}}
22539 \end_layout
22540
22541 \begin_layout Subsection
22542 Colocación de Notas al Pie
22543 \begin_inset LatexCommand index
22544 name "Notas al Pie ! Colocación"
22545
22546 \end_inset
22547
22548
22549 \end_layout
22550
22551 \begin_layout Standard
22552 Si tienes varias notas al pie de una página, se muestran sin espacio vertical
22553  entre ellas al final de la página.
22554  Para hacerlas más legibles puedes añadir p.\InsetSpace \thinspace{}
22555 e.\InsetSpace ~
22556 1.5\InsetSpace \thinspace{}
22557 mm con el comando siguiente
22558  en el preámbulo:
22559 \end_layout
22560
22561 \begin_layout Standard
22562
22563 \series bold
22564
22565 \backslash
22566 let
22567 \backslash
22568 myFoot
22569 \backslash
22570 footnote
22571 \newline
22572
22573 \backslash
22574 renewcommand{
22575 \backslash
22576 footnote}[1]{
22577 \backslash
22578 myFoot{#1
22579 \backslash
22580 vspace{1.5mm}}}
22581 \end_layout
22582
22583 \begin_layout Standard
22584 \begin_inset VSpace bigskip
22585 \end_inset
22586
22587 En documentos a dos columnas la nota al pie aparece al final de cada columna,
22588  ver la figura\InsetSpace ~
22589
22590 \begin_inset LatexCommand ref
22591 reference "fig:Colocación-standard-del-pie"
22592
22593 \end_inset
22594
22595 .
22596  Si las notas debieran mostrarse sólo al final de la columna derecha, como
22597  en la figura\InsetSpace ~
22598
22599 \begin_inset LatexCommand ref
22600 reference "fig:Colocación-del-pie-en"
22601
22602 \end_inset
22603
22604 , usa el paquete LaTeX 
22605 \series bold
22606 ftnright
22607 \series default
22608
22609 \begin_inset LatexCommand index
22610 name "LaTeX-paquetes ! ftnright"
22611
22612 \end_inset
22613
22614  con este comando en el preámbulo:
22615 \end_layout
22616
22617 \begin_layout Standard
22618
22619 \series bold
22620
22621 \backslash
22622 usepackage{ftnright}
22623 \end_layout
22624
22625 \begin_layout Standard
22626 \begin_inset Float figure
22627 placement !h
22628 wide false
22629 sideways false
22630 status open
22631
22632 \begin_layout Standard
22633 \begin_inset ERT
22634 status collapsed
22635
22636 \begin_layout Standard
22637
22638
22639 \backslash
22640 framebox{
22641 \end_layout
22642
22643 \end_inset
22644
22645
22646 \begin_inset Graphics
22647         filename ../clipart/without_fntright.pdf
22648         width 100col%
22649
22650 \end_inset
22651
22652
22653 \begin_inset ERT
22654 status collapsed
22655
22656 \begin_layout Standard
22657
22658 }
22659 \end_layout
22660
22661 \end_inset
22662
22663
22664 \end_layout
22665
22666 \begin_layout Standard
22667 \begin_inset Caption
22668
22669 \begin_layout Standard
22670 \begin_inset LatexCommand label
22671 name "fig:Colocación-standard-del-pie"
22672
22673 \end_inset
22674
22675 Colocación estándar de notas al pie en documentos a dos columnas.
22676 \end_layout
22677
22678 \end_inset
22679
22680
22681 \end_layout
22682
22683 \end_inset
22684
22685
22686 \end_layout
22687
22688 \begin_layout Standard
22689 \begin_inset Float figure
22690 placement !h
22691 wide false
22692 sideways false
22693 status open
22694
22695 \begin_layout Standard
22696 \begin_inset ERT
22697 status collapsed
22698
22699 \begin_layout Standard
22700
22701
22702 \backslash
22703 framebox{
22704 \end_layout
22705
22706 \end_inset
22707
22708
22709 \begin_inset Graphics
22710         filename ../clipart/with_fntright.pdf
22711         width 100col%
22712
22713 \end_inset
22714
22715
22716 \begin_inset ERT
22717 status collapsed
22718
22719 \begin_layout Standard
22720
22721 }
22722 \end_layout
22723
22724 \end_inset
22725
22726
22727 \end_layout
22728
22729 \begin_layout Standard
22730 \begin_inset Caption
22731
22732 \begin_layout Standard
22733 \begin_inset LatexCommand label
22734 name "fig:Colocación-del-pie-en"
22735
22736 \end_inset
22737
22738 Colocación del pie en documentos a dos columnas cuando se usa el paquete
22739  LaTeX 
22740 \series bold
22741 ftnright
22742 \series default
22743 .
22744 \end_layout
22745
22746 \end_inset
22747
22748
22749 \end_layout
22750
22751 \end_inset
22752
22753
22754 \end_layout
22755
22756 \begin_layout Standard
22757 \begin_inset VSpace bigskip
22758 \end_inset
22759
22760 En alguna literatura científica es habitual reunir las notas para imprimirlas
22761  en un párrafo separado al final de la sección, como en la figura\InsetSpace ~
22762
22763 \begin_inset LatexCommand ref
22764 reference "fig:Notas-al-final----notas-al-pie"
22765
22766 \end_inset
22767
22768 .
22769  Para usar notas finales en vez de notas al pie , carga el paquete LaTeX
22770  
22771 \series bold
22772 endnotes
22773 \series default
22774
22775 \begin_inset LatexCommand index
22776 name "LaTeX-paquetes ! endnotes"
22777
22778 \end_inset
22779
22780  con las siguientes líneas en el preámbulo de tu documento:
22781 \end_layout
22782
22783 \begin_layout Standard
22784
22785 \series bold
22786
22787 \backslash
22788 usepackage{endnotes}
22789 \newline
22790
22791 \backslash
22792 let
22793 \backslash
22794 footnote
22795 \backslash
22796 endnote
22797 \end_layout
22798
22799 \begin_layout Standard
22800 Para insertar la colección de notas, escribe el comando
22801 \end_layout
22802
22803 \begin_layout Standard
22804
22805 \series bold
22806
22807 \backslash
22808 theendnotes
22809 \end_layout
22810
22811 \begin_layout Standard
22812 en ERT al final de una sección o capítulo.
22813 \end_layout
22814
22815 \begin_layout Standard
22816 \begin_inset Float figure
22817 wide false
22818 sideways false
22819 status open
22820
22821 \begin_layout Standard
22822 \align center
22823 \begin_inset ERT
22824 status collapsed
22825
22826 \begin_layout Standard
22827
22828
22829 \backslash
22830 framebox{
22831 \end_layout
22832
22833 \end_inset
22834
22835
22836 \begin_inset Graphics
22837         filename ../clipart/endnotes.pdf
22838
22839 \end_inset
22840
22841
22842 \begin_inset ERT
22843 status collapsed
22844
22845 \begin_layout Standard
22846
22847 }
22848 \end_layout
22849
22850 \end_inset
22851
22852
22853 \end_layout
22854
22855 \begin_layout Standard
22856 \begin_inset Caption
22857
22858 \begin_layout Standard
22859 \begin_inset LatexCommand label
22860 name "fig:Notas-al-final----notas-al-pie"
22861
22862 \end_inset
22863
22864 Notas al final: notas impresas en párrafo separado al final de la sección
22865  o del capítulo.
22866 \end_layout
22867
22868 \end_inset
22869
22870
22871 \end_layout
22872
22873 \end_inset
22874
22875
22876 \end_layout
22877
22878 \begin_layout Standard
22879 \begin_inset VSpace defskip
22880 \end_inset
22881
22882 La cabecera de párrafo para las notas finales no se traduce automáticamente
22883  al lenguaje del documento, hay que hacerlo manualmente.
22884   El siguiente comando de preámbulo traduce el nombre en inglés 
22885 \begin_inset Quotes eld
22886 \end_inset
22887
22888 Notes
22889 \begin_inset Quotes erd
22890 \end_inset
22891
22892  al español 
22893 \begin_inset Quotes eld
22894 \end_inset
22895
22896 Notas
22897 \begin_inset Quotes erd
22898 \end_inset
22899
22900 :
22901 \end_layout
22902
22903 \begin_layout Standard
22904
22905 \series bold
22906
22907 \backslash
22908 renewcommand{
22909 \backslash
22910 notesname}{Notas}
22911 \end_layout
22912
22913 \begin_layout Standard
22914 \begin_inset VSpace defskip
22915 \end_inset
22916
22917 La numeración de notas finales puede cambiarse como la de las notas al pie,
22918  como se describe en la sección\InsetSpace ~
22919
22920 \begin_inset LatexCommand ref
22921 reference "sub:Numeración-de-Notas-al-Pie"
22922
22923 \end_inset
22924
22925 ; sólo hay que reemplazar el comando 
22926 \series bold
22927
22928 \backslash
22929 thefootnote
22930 \series default
22931  por 
22932 \series bold
22933
22934 \backslash
22935 theendnote
22936 \series default
22937 .
22938  Para restablecer la numeración usa el comando 
22939 \series bold
22940
22941 \backslash
22942 @addtoreset
22943 \series default
22944  como se describe en la sección\InsetSpace ~
22945
22946 \begin_inset LatexCommand ref
22947 reference "sub:Numeración-de-Notas-al-Pie"
22948
22949 \end_inset
22950
22951  y sustituye el parámetro de comando 
22952 \series bold
22953 footnote
22954 \series default
22955  por 
22956 \series bold
22957 endnote
22958 \series default
22959 .
22960 \end_layout
22961
22962 \begin_layout Standard
22963 Para crear solo una marca para una nota final, usa el comando 
22964 \series bold
22965
22966 \backslash
22967 endnotemark[número]
22968 \series default
22969  similar al comando 
22970 \series bold
22971
22972 \backslash
22973 footnotemark
22974 \series default
22975 , descrito en la sección\InsetSpace ~
22976
22977 \begin_inset LatexCommand ref
22978 reference "sec:Notas-al-pie"
22979
22980 \end_inset
22981
22982 .
22983 \end_layout
22984
22985 \begin_layout Standard
22986 \begin_inset VSpace bigskip
22987 \end_inset
22988
22989 Las notas al pie también pueden colocarse al margen de la página y la alineación
22990  del texto del pie también puede cambiarse, véase el paquete LaTeX 
22991 \series bold
22992 footmisc
22993 \series default
22994
22995 \begin_inset LatexCommand index
22996 name "LaTeX-paquetes ! footmisc"
22997
22998 \end_inset
22999
23000  
23001 \begin_inset LatexCommand cite
23002 key "footmisc"
23003
23004 \end_inset
23005
23006  para más información.
23007 \end_layout
23008
23009 \begin_layout Standard
23010 Para otras posibilidades de diseño de notas al pie mira en libros de LaTeX,
23011  
23012 \begin_inset LatexCommand cite
23013 key "latexcompanion,latexguide,latexbook"
23014
23015 \end_inset
23016
23017 .
23018 \end_layout
23019
23020 \begin_layout Section
23021 Notas al Margen
23022 \begin_inset LatexCommand index
23023 name "Notas ! al Margen"
23024
23025 \end_inset
23026
23027
23028 \end_layout
23029
23030 \begin_layout Standard
23031 Las notas al margen se ven y se comportan en LyX como notas al pie.
23032  Se insertan con el menú 
23033 \family sans
23034 Insertar\SpecialChar \menuseparator
23035 Nota\InsetSpace ~
23036 al\InsetSpace ~
23037 margen
23038 \family default
23039  o el botón 
23040 \begin_inset Graphics
23041         filename ../../images/marginalnote-insert.xpm
23042         scale 85
23043
23044 \end_inset
23045
23046 .
23047  Aparece un cuadro gris con la etiqueta en rojo 
23048 \family roman
23049 \series medium
23050
23051 \begin_inset Quotes eld
23052 \end_inset
23053
23054 margen
23055 \begin_inset Quotes erd
23056 \end_inset
23057
23058  en el que puedes escribir el texto de la nota.
23059 \end_layout
23060
23061 \begin_layout Standard
23062 Al lado hay un ejemplo de nota al margen.
23063 \family roman
23064 \series medium
23065
23066 \begin_inset Marginal
23067 status open
23068
23069 \begin_layout Standard
23070 Esto es una nota al margen.
23071 \end_layout
23072
23073 \end_inset
23074
23075
23076 \end_layout
23077
23078 \begin_layout Standard
23079 Estas notas salen en el margen derecho en documentos a una cara.
23080  En documentos a doble cara se muestran en el margen externo ---izquierdo
23081  en páginas pares, derecho en páginas impares---.
23082  El texto de las notas se ajusta a la parte opuesta al margen ---se ajusta
23083  a la derecha si la nota aparece en el margen izquierdo---.
23084  La primera línea de la nota se sitúa en la posición de la línea del texto
23085  en la que se inserta en el documento.
23086 \end_layout
23087
23088 \begin_layout Standard
23089 \begin_inset VSpace bigskip
23090 \end_inset
23091
23092 Para colocar la nota en el margen interno añade el comando
23093 \end_layout
23094
23095 \begin_layout Standard
23096
23097 \series bold
23098
23099 \backslash
23100 reversemarginpar
23101 \end_layout
23102
23103 \begin_layout Standard
23104 en ERT antes de la nota.
23105  La nueva colocación es válida para todas las siguientes notas al margen.
23106 \begin_inset ERT
23107 status collapsed
23108
23109 \begin_layout Standard
23110
23111
23112 \backslash
23113 reversemarginpar 
23114 \end_layout
23115
23116 \end_inset
23117
23118
23119 \begin_inset Marginal
23120 status open
23121
23122 \begin_layout Standard
23123 Esto es una nota en el margen interno.
23124 \end_layout
23125
23126 \end_inset
23127
23128
23129 \series bold
23130
23131 \newline
23132
23133 \series default
23134
23135 \begin_inset Note Greyedout
23136 status open
23137
23138 \begin_layout Standard
23139
23140 \series bold
23141 Nota:
23142 \series default
23143  A veces no hay espacio suficiente en el margen interno, por lo que la nota
23144  no se mostrará correctamente en la salida.
23145 \end_layout
23146
23147 \end_inset
23148
23149
23150 \end_layout
23151
23152 \begin_layout Standard
23153 \begin_inset ERT
23154 status collapsed
23155
23156 \begin_layout Standard
23157
23158
23159 \backslash
23160 normalmarginpar 
23161 \end_layout
23162
23163 \end_inset
23164
23165 Para volver a la ubicación predeterminada inserta en ERT el comando
23166 \end_layout
23167
23168 \begin_layout Standard
23169
23170 \series bold
23171
23172 \backslash
23173 normalmarginpar
23174 \end_layout
23175
23176 \begin_layout Standard
23177 \begin_inset Note Greyedout
23178 status open
23179
23180 \begin_layout Standard
23181
23182 \series bold
23183 Nota:
23184 \series default
23185  El comando se ignora si en el mismo párrafo está también presente el comando
23186  
23187 \series bold
23188
23189 \backslash
23190 reversemarginpar
23191 \series default
23192 .
23193 \end_layout
23194
23195 \end_inset
23196
23197
23198 \end_layout
23199
23200 \begin_layout Standard
23201 \begin_inset VSpace bigskip
23202 \end_inset
23203
23204
23205 \family roman
23206 \series medium
23207
23208 \begin_inset Marginal
23209 status open
23210
23211 \begin_layout Standard
23212 PalabraMuyLargaAlMargen no partida con guión.
23213 \end_layout
23214
23215 \end_inset
23216
23217
23218 \family default
23219 \series default
23220 Como en el caso descrito en la sección\InsetSpace ~
23221
23222 \begin_inset LatexCommand ref
23223 reference "sub:Líneas-Múltiples-en"
23224
23225 \end_inset
23226
23227 , una palabra larga no puede partirse con guión cuando es la primera en
23228  la nota al margen.
23229  Para evitar esto, inserta el comando
23230 \end_layout
23231
23232 \begin_layout Standard
23233
23234 \series bold
23235
23236 \backslash
23237 hspace{0pt}
23238 \end_layout
23239
23240 \begin_layout Standard
23241 en ERT antes de la palabra
23242 \family roman
23243 \series medium
23244 .
23245 \begin_inset Marginal
23246 status open
23247
23248 \begin_layout Standard
23249 \begin_inset ERT
23250 status collapsed
23251
23252 \begin_layout Standard
23253
23254
23255 \backslash
23256 hspace{0pt}
23257 \end_layout
23258
23259 \end_inset
23260
23261 PalabraMuyLargaAlMargen partida con guión.
23262 \end_layout
23263
23264 \end_inset
23265
23266
23267 \end_layout
23268
23269 \begin_layout Standard
23270 \begin_inset VSpace bigskip
23271 \end_inset
23272
23273
23274 \end_layout
23275
23276 \begin_layout Standard
23277 \begin_inset Note Greyedout
23278 status open
23279
23280 \begin_layout Standard
23281
23282 \series bold
23283 Nota:
23284 \series default
23285  Normalmente no pueden utilizarse notas al margen en tablas, flotantes y
23286  notas al pie.
23287 \end_layout
23288
23289 \end_inset
23290
23291
23292 \end_layout
23293
23294 \begin_layout Standard
23295 \begin_inset VSpace bigskip
23296 \end_inset
23297
23298
23299 \end_layout
23300
23301 \begin_layout Standard
23302 \begin_inset ERT
23303 status collapsed
23304
23305 \begin_layout Standard
23306
23307
23308 \backslash
23309 ifmarginnote
23310 \end_layout
23311
23312 \end_inset
23313
23314
23315 \begin_inset Note Note
23316 status open
23317
23318 \begin_layout Standard
23319 La siguiente sección sólo se mostrará en pantalla si está instalado el paquete
23320  LaTeX 
23321 \series bold
23322 marginnote
23323 \series default
23324 .
23325 \end_layout
23326
23327 \end_inset
23328
23329
23330 \end_layout
23331
23332 \begin_layout Standard
23333 Esta restricción se puede salvar con el paquete LaTeX 
23334 \series bold
23335 marginnote
23336 \series default
23337
23338 \begin_inset LatexCommand index
23339 name "LaTeX-paquetes ! marginnote"
23340
23341 \end_inset
23342
23343 .
23344  Poniendo estas dos líneas en el preámbulo, el comando usado por LyX para
23345  notas al margen es redefinido para usar el comando provisto por el paquete
23346  
23347 \series bold
23348 marginnote
23349 \series default
23350 :
23351 \end_layout
23352
23353 \begin_layout Standard
23354
23355 \series bold
23356
23357 \backslash
23358 usepackage{marginnote}
23359 \newline
23360
23361 \backslash
23362 let
23363 \backslash
23364 marginpar
23365 \backslash
23366 marginnote
23367 \end_layout
23368
23369 \begin_layout Standard
23370 Esto se ha utilizado en el presente documento porque 
23371 \series bold
23372 marginnote
23373 \series default
23374  tiene una característica adicional útil: Puedes imponer un offset vertical
23375  a la nota.
23376  A veces esto hace falta si hay demasiadas notas juntas o para mejorar el
23377  diseño de la página.
23378  El offset se determina en LyX como ERT directamente tras la nota al margen
23379  en el esquema
23380 \end_layout
23381
23382 \begin_layout Standard
23383
23384 \series bold
23385 [offset]
23386 \end_layout
23387
23388 \begin_layout Standard
23389 donde offset es una longitud en una de las unidades de la tabla\InsetSpace ~
23390
23391 \begin_inset LatexCommand ref
23392 reference "tab:Unidades"
23393
23394 \end_inset
23395
23396 .
23397  Un valor negativo desplaza la nota hacia arriba, un valor positivo hacia
23398  abajo.
23399  
23400 \family roman
23401 \series medium
23402 Por ejemplo la nota adjunta a esta línea de texto está desplazada 1.5\InsetSpace \thinspace{}
23403 cm arriba
23404  con el comando ERT 
23405 \begin_inset Quotes eld
23406 \end_inset
23407
23408
23409 \family default
23410 \series bold
23411 [-1.5cm]
23412 \family roman
23413 \series medium
23414
23415 \begin_inset Quotes erd
23416 \end_inset
23417
23418
23419 \begin_inset Marginal
23420 status collapsed
23421
23422 \begin_layout Standard
23423 Esta nota está 1.5\InsetSpace \thinspace{}
23424 cm por encima de su posición original.
23425 \end_layout
23426
23427 \end_inset
23428
23429
23430 \family default
23431 \series default
23432
23433 \begin_inset ERT
23434 status collapsed
23435
23436 \begin_layout Standard
23437
23438 [-1.5cm]
23439 \end_layout
23440
23441 \end_inset
23442
23443
23444 \end_layout
23445
23446 \begin_layout Standard
23447 \begin_inset VSpace defskip
23448 \end_inset
23449
23450 Con 
23451 \series bold
23452 marginnote
23453 \series default
23454  también puedes cambiar la alineación del texto en el margen.
23455  Por ejemplo los comandos
23456 \end_layout
23457
23458 \begin_layout Standard
23459
23460 \series bold
23461
23462 \backslash
23463 renewcommand*{
23464 \backslash
23465 raggedleftmarginnote}{
23466 \backslash
23467 centering}
23468 \newline
23469
23470 \backslash
23471 renewcommand*{
23472 \backslash
23473 raggedrightmarginnote}{
23474 \backslash
23475 centering}
23476 \end_layout
23477
23478 \begin_layout Standard
23479 producen alineación centrada.
23480  
23481 \series bold
23482
23483 \backslash
23484 raggedleftmarginnote
23485 \series default
23486  identifica las notas que aparecen al lado izquierdo.
23487 \family roman
23488 \series medium
23489
23490 \begin_inset ERT
23491 status collapsed
23492
23493 \begin_layout Standard
23494
23495
23496 \backslash
23497 renewcommand*{
23498 \backslash
23499 raggedleftmarginnote}{
23500 \backslash
23501 centering}
23502 \end_layout
23503
23504 \begin_layout Standard
23505
23506
23507 \backslash
23508 renewcommand*{
23509 \backslash
23510 raggedrightmarginnote}{
23511 \backslash
23512 centering}
23513 \end_layout
23514
23515 \end_inset
23516
23517
23518 \begin_inset Marginal
23519 status open
23520
23521 \begin_layout Standard
23522 El texto de esta nota está centrado.
23523 \end_layout
23524
23525 \end_inset
23526
23527
23528 \family default
23529 \series default
23530  El valor predeterminado es 
23531 \end_layout
23532
23533 \begin_layout Standard
23534
23535 \series bold
23536
23537 \backslash
23538 renewcommand*{
23539 \backslash
23540 raggedleftmarginnote}{
23541 \backslash
23542 raggedleft}
23543 \newline
23544
23545 \backslash
23546 renewcommand*{
23547 \backslash
23548 raggedrightmarginnote}{
23549 \backslash
23550 raggedright}
23551 \family roman
23552 \series medium
23553
23554 \begin_inset ERT
23555 status collapsed
23556
23557 \begin_layout Standard
23558
23559
23560 \backslash
23561 renewcommand*{
23562 \backslash
23563 raggedleftmarginnote}{
23564 \backslash
23565 raggedleft}
23566 \end_layout
23567
23568 \begin_layout Standard
23569
23570
23571 \backslash
23572 renewcommand*{
23573 \backslash
23574 raggedrightmarginnote}{
23575 \backslash
23576 raggedright}
23577 \end_layout
23578
23579 \end_inset
23580
23581
23582 \end_layout
23583
23584 \begin_layout Standard
23585 \begin_inset VSpace defskip
23586 \end_inset
23587
23588 Para otras características de 
23589 \series bold
23590 marginnote
23591 \series default
23592  mira en su documentación 
23593 \begin_inset LatexCommand cite
23594 key "marginnote"
23595
23596 \end_inset
23597
23598 .
23599 \end_layout
23600
23601 \begin_layout Standard
23602 \begin_inset VSpace bigskip
23603 \end_inset
23604
23605 El diseño de las notas al margen puede ser redefinido.
23606  Por ejemplo, para crear una cabecera para todas las notas con el texto
23607  
23608 \begin_inset Quotes eld
23609 \end_inset
23610
23611
23612 \series bold
23613 \bar under
23614 ¡
23615 \family sans
23616 Atención
23617 \family default
23618 !
23619 \series default
23620 \bar default
23621
23622 \begin_inset Quotes erd
23623 \end_inset
23624
23625 , subrayado, sans-serif en negrita, añade lo siguiente en el preámbulo:
23626 \end_layout
23627
23628 \begin_layout Standard
23629
23630 \series bold
23631
23632 \backslash
23633 let
23634 \backslash
23635 myMarginpar
23636 \backslash
23637 marginpar
23638 \newline
23639
23640 \backslash
23641 renewcommand{
23642 \backslash
23643 marginpar}[1]{
23644 \backslash
23645 myMarginpar{%
23646 \newline
23647
23648 \begin_inset ERT
23649 status collapsed
23650
23651 \begin_layout Standard
23652
23653
23654 \backslash
23655 hphantom{ }
23656 \end_layout
23657
23658 \end_inset
23659
23660
23661 \backslash
23662 hspace{0pt}
23663 \backslash
23664 textsf{
23665 \backslash
23666 textbf{
23667 \backslash
23668 underbar{¡Atención!}}}%
23669 \newline
23670
23671 \begin_inset ERT
23672 status collapsed
23673
23674 \begin_layout Standard
23675
23676
23677 \backslash
23678 hphantom{ }
23679 \end_layout
23680
23681 \end_inset
23682
23683
23684 \backslash
23685 vspace{1.5mm}
23686 \backslash
23687
23688 \backslash
23689 #1}}
23690 \end_layout
23691
23692 \begin_layout Standard
23693
23694 \family roman
23695 \series medium
23696 \begin_inset ERT
23697 status collapsed
23698
23699 \begin_layout Standard
23700
23701
23702 \backslash
23703 let
23704 \backslash
23705 myMarginpar
23706 \backslash
23707 marginpar
23708 \end_layout
23709
23710 \begin_layout Standard
23711
23712
23713 \backslash
23714 renewcommand{
23715 \backslash
23716 marginpar}[1]{
23717 \backslash
23718 myMarginpar{%
23719 \end_layout
23720
23721 \begin_layout Standard
23722
23723    
23724 \backslash
23725 textsf{
23726 \backslash
23727 textbf{
23728 \backslash
23729 underbar{¡Atención!}}}%
23730 \end_layout
23731
23732 \begin_layout Standard
23733
23734    
23735 \backslash
23736 vspace{1.5mm}
23737 \backslash
23738
23739 \backslash
23740 #1}}
23741 \end_layout
23742
23743 \end_inset
23744
23745
23746 \begin_inset Marginal
23747 status open
23748
23749 \begin_layout Standard
23750 Esta es una nota con una cabecera definida.
23751 \end_layout
23752
23753 \end_inset
23754
23755
23756 \family default
23757 \series default
23758
23759 \begin_inset ERT
23760 status collapsed
23761
23762 \begin_layout Standard
23763
23764 [-1.5cm]
23765 \end_layout
23766
23767 \end_inset
23768
23769
23770 \family roman
23771 \series medium
23772
23773 \begin_inset ERT
23774 status collapsed
23775
23776 \begin_layout Standard
23777
23778
23779 \backslash
23780 renewcommand{
23781 \backslash
23782 marginpar}[1]{
23783 \backslash
23784 myMarginpar{#1}}
23785 \end_layout
23786
23787 \end_inset
23788
23789
23790 \family default
23791 \series default
23792
23793 \begin_inset Note Note
23794 status collapsed
23795
23796 \begin_layout Standard
23797 El formato de la nota al margen se ha cambiado solo para este ejemplo.
23798 \end_layout
23799
23800 \end_inset
23801
23802
23803 \end_layout
23804
23805 \begin_layout Standard
23806 \begin_inset ERT
23807 status collapsed
23808
23809 \begin_layout Standard
23810
23811
23812 \backslash
23813 else
23814 \end_layout
23815
23816 \end_inset
23817
23818
23819 \begin_inset Note Note
23820 status open
23821
23822 \begin_layout Standard
23823 Lo siguiente se mostrará en pantalla si no está instalado el paquete LaTeX
23824  
23825 \series bold
23826 marginnote
23827 \series default
23828 .
23829 \end_layout
23830
23831 \end_inset
23832
23833
23834 \end_layout
23835
23836 \begin_layout Standard
23837 Debes instalar el paquete LaTeX 
23838 \series bold
23839 marginnote
23840 \series default
23841  para ver la parte siguiente en la salida.
23842 \end_layout
23843
23844 \begin_layout Standard
23845 \begin_inset ERT
23846 status collapsed
23847
23848 \begin_layout Standard
23849
23850
23851 \backslash
23852 fi
23853 \end_layout
23854
23855 \end_inset
23856
23857
23858 \end_layout
23859
23860 \begin_layout Chapter
23861 Cuadros
23862 \end_layout
23863
23864 \begin_layout Section
23865 Introducción
23866 \begin_inset LatexCommand index
23867 name "Cuadros ! Introducción"
23868
23869 \end_inset
23870
23871
23872 \end_layout
23873
23874 \begin_layout Standard
23875 Los cuadros se emplean para dar formato a bloques de texto.
23876  Se pueden usar para escribir documentos con varios lenguajes, ver sección\InsetSpace ~
23877
23878 \begin_inset LatexCommand ref
23879 reference "sec:Minipáginas"
23880
23881 \end_inset
23882
23883 , enmarcar textos, ver sección\InsetSpace ~
23884
23885 \begin_inset LatexCommand ref
23886 reference "sec:Cuadros-Enmarcados"
23887
23888 \end_inset
23889
23890 , evitar la división de palabras, ver sección\InsetSpace ~
23891
23892 \begin_inset LatexCommand ref
23893 reference "sec:Evitar-la-Partición-con-Guiones"
23894
23895 \end_inset
23896
23897 , alinear texto, ver sección\InsetSpace ~
23898
23899 \begin_inset LatexCommand ref
23900 reference "sub:Alineación-Vertical"
23901
23902 \end_inset
23903
23904 , o para poner color de fondo a un texto, ver sección\InsetSpace ~
23905
23906 \begin_inset LatexCommand ref
23907 reference "sec:Cuadros-Coloreados"
23908
23909 \end_inset
23910
23911 .
23912 \end_layout
23913
23914 \begin_layout Standard
23915 Se insertan con el menú 
23916 \family sans
23917 Insertar\SpecialChar \menuseparator
23918 Cuadro
23919 \family default
23920 .
23921  Surge un recuadro gris con la etiqueta 
23922 \family sans
23923 Cuadro (Minipágina)
23924 \family default
23925
23926 \begin_inset Graphics
23927         filename clipart/CuadroMinipagQt4.png
23928         scale 75
23929         keepAspectRatio
23930
23931 \end_inset
23932
23933 .
23934  El tipo de cuadro se puede elegir al hacer clic-derecho sobre él.
23935  Sale un diálogo en el que 
23936 \family sans
23937 Cuadro
23938 \family default
23939 \InsetSpace ~
23940
23941 \family sans
23942 interior
23943 \family default
23944  permite escoger los tipos 
23945 \family sans
23946 Parbox (
23947 \family default
23948
23949 \begin_inset Quotes eld
23950 \end_inset
23951
23952
23953 \family sans
23954 Párrafo
23955 \family default
23956
23957 \begin_inset Quotes erd
23958 \end_inset
23959
23960
23961 \family sans
23962 )
23963 \family default
23964  y 
23965 \family sans
23966 Minipágina
23967 \family default
23968 .
23969  
23970 \family sans
23971 Minipágina
23972 \family default
23973  es el predeterminado para nuevos cuadros y se explica en la sección\InsetSpace ~
23974
23975 \begin_inset LatexCommand ref
23976 reference "sec:Minipáginas"
23977
23978 \end_inset
23979
23980 ; el tipo 
23981 \family sans
23982 Parbox
23983 \family default
23984  se describe en la sección\InsetSpace ~
23985
23986 \begin_inset LatexCommand ref
23987 reference "sec:Cuadros-de-Párrafo"
23988
23989 \end_inset
23990
23991 .
23992 \end_layout
23993
23994 \begin_layout Standard
23995 Los cuadros no se numeran y por tanto no se pueden referenciar como los
23996  flotantes o las notas al pie.
23997 \end_layout
23998
23999 \begin_layout Standard
24000 \begin_inset Note Greyedout
24001 status open
24002
24003 \begin_layout Standard
24004
24005 \series bold
24006 Nota:
24007 \series default
24008  Debido a un error en LyX hay que insertar un espacio protegido detrás de
24009  un cuadro si se desea separar con un espacio el cuadro y el texto siguiente.
24010 \end_layout
24011
24012 \end_inset
24013
24014
24015 \end_layout
24016
24017 \begin_layout Standard
24018 \begin_inset Note Greyedout
24019 status open
24020
24021 \begin_layout Standard
24022
24023 \series bold
24024 Nota:
24025 \series default
24026  Los cuadros no deben ser el ítem en un entorno 
24027 \family sans
24028 Enumeración
24029 \family default
24030  o 
24031 \family sans
24032 Descripción
24033 \family default
24034 .
24035 \end_layout
24036
24037 \end_inset
24038
24039
24040 \end_layout
24041
24042 \begin_layout Standard
24043 \begin_inset Note Greyedout
24044 status open
24045
24046 \begin_layout Standard
24047
24048 \series bold
24049 Nota:
24050 \series default
24051  Por razones desconocidas sólo se puede poner el tipo 
24052 \family sans
24053 Cuadro\InsetSpace ~
24054 interior
24055 \family default
24056  en 
24057 \family sans
24058 Ninguno
24059 \family default
24060  cuando se emplea un cuadro enmarcado.
24061  Los cuadros sin ningún tipo de 
24062 \family sans
24063 Cuadro\InsetSpace ~
24064 interior
24065 \family default
24066  y sin marcos se explican en la sección\InsetSpace ~
24067
24068 \begin_inset LatexCommand ref
24069 reference "sec:Evitar-la-Partición-con-Guiones"
24070
24071 \end_inset
24072
24073 .
24074 \end_layout
24075
24076 \end_inset
24077
24078
24079 \end_layout
24080
24081 \begin_layout Section
24082 Diálogo Cuadros
24083 \begin_inset LatexCommand label
24084 name "sec:Diálogo-Cuadros"
24085
24086 \end_inset
24087
24088
24089 \begin_inset LatexCommand index
24090 name "Cuadros ! Diálogo"
24091
24092 \end_inset
24093
24094
24095 \begin_inset LatexCommand index
24096 name "Cuadros ! Alineación"
24097
24098 \end_inset
24099
24100
24101 \end_layout
24102
24103 \begin_layout Standard
24104 En el diálogo puedes ajustar la geometría del cuadro en los campos 
24105 \family sans
24106 Ancho
24107 \family default
24108  y 
24109 \family sans
24110 Alto
24111 \family default
24112 .
24113  Las unidades disponibles para la geometría se explican en la tabla\InsetSpace ~
24114
24115 \begin_inset LatexCommand ref
24116 reference "tab:Unidades"
24117
24118 \end_inset
24119
24120 .
24121  El campo 
24122 \family sans
24123 Alto
24124 \family default
24125  ofrece los siguientes tamaños adicionales:
24126 \end_layout
24127
24128 \begin_layout Description
24129 Profundidad Este es el texto plano 
24130 \begin_inset Quotes eld
24131 \end_inset
24132
24133 alto
24134 \begin_inset Quotes erd
24135 \end_inset
24136
24137 .
24138  Ignora la profundidad total cuando hay múltiples líneas de texto en el
24139  cuadro:
24140 \newline
24141
24142 \newline
24143
24144 \newline
24145
24146 \begin_inset Box Boxed
24147 position "c"
24148 hor_pos "c"
24149 has_inner_box 1
24150 inner_pos "c"
24151 use_parbox 0
24152 width "12col%"
24153 special "none"
24154 height "1in"
24155 height_special "depth"
24156 status open
24157
24158 \begin_layout Standard
24159 \align center
24160 Cuadro con altura establecida en 1\InsetSpace \thinspace{}
24161 Profundidad
24162 \end_layout
24163
24164 \end_inset
24165
24166
24167 \newline
24168
24169 \newline
24170
24171 \end_layout
24172
24173 \begin_layout Description
24174 Alto Es la altura del texto que está dentro del cuadro.
24175  Un valor de, p.\InsetSpace \thinspace{}
24176 e.\InsetSpace ~
24177 2 para este tamaño fijará la altura del cuadro a 2 veces
24178  la altura del texto: 
24179 \begin_inset Box Boxed
24180 position "c"
24181 hor_pos "c"
24182 has_inner_box 1
24183 inner_pos "c"
24184 use_parbox 0
24185 width "20col%"
24186 special "none"
24187 height "2in"
24188 height_special "height"
24189 status open
24190
24191 \begin_layout Standard
24192 \align center
24193 Cuadro con altura puesta en 2\InsetSpace \thinspace{}
24194 Alto
24195 \end_layout
24196
24197 \end_inset
24198
24199
24200 \end_layout
24201
24202 \begin_layout Description
24203 Alto\InsetSpace ~
24204 Total Esto es el Alto\InsetSpace \thinspace{}
24205 +\InsetSpace \thinspace{}
24206 Profundidad: 
24207 \begin_inset Box Boxed
24208 position "c"
24209 hor_pos "c"
24210 has_inner_box 1
24211 inner_pos "c"
24212 use_parbox 0
24213 width "20col%"
24214 special "none"
24215 height "1in"
24216 height_special "totalheight"
24217 status open
24218
24219 \begin_layout Standard
24220 \align center
24221 Cuadro con altura puesta a 1\InsetSpace \thinspace{}
24222 Alto\InsetSpace ~
24223 total
24224 \end_layout
24225
24226 \end_inset
24227
24228
24229 \end_layout
24230
24231 \begin_layout Description
24232 Ancho Esto determina al ancho del cuadro como altura: 
24233 \begin_inset Box Boxed
24234 position "c"
24235 hor_pos "c"
24236 has_inner_box 1
24237 inner_pos "c"
24238 use_parbox 0
24239 width "12col%"
24240 special "none"
24241 height "1in"
24242 height_special "width"
24243 status open
24244
24245 \begin_layout Standard
24246 \align center
24247 Cuadro con altura puesta en 1\InsetSpace \thinspace{}
24248 Ancho
24249 \end_layout
24250
24251 \end_inset
24252
24253
24254 \end_layout
24255
24256 \begin_layout Standard
24257 \begin_inset VSpace bigskip
24258 \end_inset
24259
24260 Si has elegido un 
24261 \family sans
24262 Cuadro\InsetSpace ~
24263 interior
24264 \family default
24265 , la alineación vertical del cuadro puede ser:
24266 \end_layout
24267
24268 \begin_layout Description
24269 Superior Ejemplo de línea de texto.
24270  
24271 \begin_inset Box Boxed
24272 position "t"
24273 hor_pos "c"
24274 has_inner_box 1
24275 inner_pos "c"
24276 use_parbox 0
24277 width "12col%"
24278 special "none"
24279 height "1in"
24280 height_special "totalheight"
24281 status open
24282
24283 \begin_layout Standard
24284 \align center
24285 Cuadro alineado arriba.
24286 \end_layout
24287
24288 \end_inset
24289
24290 \InsetSpace ~
24291 Ejemplo de línea de texto.
24292 \end_layout
24293
24294 \begin_layout Description
24295 Medio Ejemplo de línea de texto.
24296  
24297 \begin_inset Box Boxed
24298 position "c"
24299 hor_pos "c"
24300 has_inner_box 1
24301 inner_pos "c"
24302 use_parbox 0
24303 width "12col%"
24304 special "none"
24305 height "1in"
24306 height_special "totalheight"
24307 status open
24308
24309 \begin_layout Standard
24310 \align center
24311 Cuadro alineado en medio.
24312 \end_layout
24313
24314 \end_inset
24315
24316 \InsetSpace ~
24317 Ejemplo de línea de texto.
24318 \end_layout
24319
24320 \begin_layout Description
24321 Inferior Ejemplo de línea de texto.
24322  
24323 \begin_inset Box Boxed
24324 position "b"
24325 hor_pos "c"
24326 has_inner_box 1
24327 inner_pos "c"
24328 use_parbox 0
24329 width "12col%"
24330 special "none"
24331 height "1in"
24332 height_special "totalheight"
24333 status open
24334
24335 \begin_layout Standard
24336 \align center
24337 Cuadro alineado abajo.
24338 \end_layout
24339
24340 \end_inset
24341
24342 \InsetSpace ~
24343 Ejemplo de línea de texto.
24344 \end_layout
24345
24346 \begin_layout Standard
24347 La alineación horizontal del cuadro puede establecerse en el diálogo de
24348  configuración de párrafo de LyX si colocas el cuadro en su propio párrafo.
24349 \end_layout
24350
24351 \begin_layout Standard
24352 \begin_inset VSpace bigskip
24353 \end_inset
24354
24355 Si has escogido un 
24356 \family sans
24357 Cuadro\InsetSpace ~
24358 interior
24359 \family default
24360 , el contenido puede alinearse verticalmente a:
24361 \end_layout
24362
24363 \begin_layout Description
24364 Superior Ejemplo de línea de texto.
24365  
24366 \begin_inset Box Boxed
24367 position "c"
24368 hor_pos "c"
24369 has_inner_box 1
24370 inner_pos "t"
24371 use_parbox 0
24372 width "12col%"
24373 special "none"
24374 height "1.5in"
24375 height_special "totalheight"
24376 status open
24377
24378 \begin_layout Standard
24379 \align center
24380 Cuadro con texto alineado arriba.
24381 \end_layout
24382
24383 \end_inset
24384
24385 \InsetSpace ~
24386 Ejemplo de línea de texto.
24387 \end_layout
24388
24389 \begin_layout Description
24390 Medio Ejemplo de línea de texto.
24391  
24392 \begin_inset Box Boxed
24393 position "c"
24394 hor_pos "c"
24395 has_inner_box 1
24396 inner_pos "c"
24397 use_parbox 0
24398 width "12col%"
24399 special "none"
24400 height "1.5in"
24401 height_special "totalheight"
24402 status open
24403
24404 \begin_layout Standard
24405 \align center
24406 Cuadro con texto alineado en medio.
24407 \end_layout
24408
24409 \end_inset
24410
24411 \InsetSpace ~
24412 Ejemplo de línea de texto.
24413 \end_layout
24414
24415 \begin_layout Description
24416 Inferior Ejemplo de línea de texto.
24417  
24418 \begin_inset Box Boxed
24419 position "c"
24420 hor_pos "c"
24421 has_inner_box 1
24422 inner_pos "b"
24423 use_parbox 0
24424 width "12col%"
24425 special "none"
24426 height "1.5in"
24427 height_special "totalheight"
24428 status open
24429
24430 \begin_layout Standard
24431 \align center
24432 Cuadro con texto alineado abajo.
24433 \end_layout
24434
24435 \end_inset
24436
24437 \InsetSpace ~
24438 Ejemplo de línea de texto.
24439 \end_layout
24440
24441 \begin_layout Description
24442 Estirado Ejemplo de línea de texto.
24443  
24444 \begin_inset Box Boxed
24445 position "c"
24446 hor_pos "c"
24447 has_inner_box 1
24448 inner_pos "s"
24449 use_parbox 0
24450 width "12col%"
24451 special "none"
24452 height "1.5in"
24453 height_special "totalheight"
24454 status open
24455
24456 \begin_layout Standard
24457 \align center
24458 Este texto
24459 \end_layout
24460
24461 \begin_layout Standard
24462 \align center
24463 está
24464 \end_layout
24465
24466 \begin_layout Standard
24467 \align center
24468 estirado.
24469 \end_layout
24470
24471 \end_inset
24472
24473 \InsetSpace ~
24474 Ejemplo de línea de texto.
24475 \end_layout
24476
24477 \begin_layout Standard
24478 Para estirar el contenido debe tener más de un párrafo.
24479  En el ejemplo anterior cada línea de texto está en un párrafo propio.
24480 \end_layout
24481
24482 \begin_layout Standard
24483 \begin_inset VSpace bigskip
24484 \end_inset
24485
24486 Para estirar horizontalmente el contenido usa el diálogo de párrafos de
24487  LyX cuando hayas escogido un 
24488 \family sans
24489 Cuadro\InsetSpace ~
24490 interior
24491 \family default
24492 .
24493 \end_layout
24494
24495 \begin_layout Standard
24496 \align center
24497 \begin_inset Box Boxed
24498 position "c"
24499 hor_pos "c"
24500 has_inner_box 1
24501 inner_pos "s"
24502 use_parbox 0
24503 width "15col%"
24504 special "none"
24505 height "1.25in"
24506 height_special "totalheight"
24507 status open
24508
24509 \begin_layout Standard
24510 \align left
24511 Cuadro
24512 \end_layout
24513
24514 \begin_layout Standard
24515 \align center
24516 con texto
24517 \end_layout
24518
24519 \begin_layout Standard
24520 \align right
24521 estirado
24522 \end_layout
24523
24524 \end_inset
24525
24526
24527 \end_layout
24528
24529 \begin_layout Standard
24530 Si no has establecido un 
24531 \family sans
24532 Cuadro\InsetSpace ~
24533 interior
24534 \family default
24535 , puedes alinear horizontalmente el contenido del cuadro en el diálogo de
24536  cuadro.
24537 \end_layout
24538
24539 \begin_layout Standard
24540 \align center
24541 \begin_inset Box Boxed
24542 position "c"
24543 hor_pos "s"
24544 has_inner_box 0
24545 inner_pos "s"
24546 use_parbox 0
24547 width "90col%"
24548 special "none"
24549 height "1.25in"
24550 height_special "totalheight"
24551 status open
24552
24553 \begin_layout Standard
24554 \align left
24555 Texto estirado horizontalmente.
24556 \end_layout
24557
24558 \end_inset
24559
24560
24561 \end_layout
24562
24563 \begin_layout Section
24564 Cuadros Enmarcados
24565 \begin_inset LatexCommand label
24566 name "sec:Cuadros-Enmarcados"
24567
24568 \end_inset
24569
24570
24571 \begin_inset LatexCommand index
24572 name "Cuadros ! Marcos"
24573
24574 \end_inset
24575
24576
24577 \end_layout
24578
24579 \begin_layout Standard
24580 El estilo de marco del cuadro se puede determinar en la lista desplegable
24581  
24582 \family sans
24583 Tipo
24584 \family default
24585  del diálogo de cuadros.
24586  Son posibles los siguientes marcos:
24587 \end_layout
24588
24589 \begin_layout Description
24590 Marco\InsetSpace ~
24591 rectangular Dibuja un marco rectangular alrededor del cuadro.
24592  El grosor del marco depende de 
24593 \series bold
24594
24595 \backslash
24596 fboxrule
24597 \series default
24598 .
24599  
24600 \begin_inset Box Boxed
24601 position "c"
24602 hor_pos "c"
24603 has_inner_box 1
24604 inner_pos "c"
24605 use_parbox 0
24606 width "25col%"
24607 special "none"
24608 height "1in"
24609 height_special "totalheight"
24610 status open
24611
24612 \begin_layout Standard
24613 \align center
24614 Cuadro rectangular
24615 \end_layout
24616
24617 \end_inset
24618
24619
24620 \end_layout
24621
24622 \begin_layout Description
24623 Marco\InsetSpace ~
24624 ovalado,\InsetSpace ~
24625 fino Dibuja un marco ovalado cuya línea tiene un grosor de
24626  0.4\InsetSpace \thinspace{}
24627 pt.
24628  
24629 \begin_inset Box ovalbox
24630 position "c"
24631 hor_pos "c"
24632 has_inner_box 1
24633 inner_pos "c"
24634 use_parbox 0
24635 width "25col%"
24636 special "none"
24637 height "1in"
24638 height_special "totalheight"
24639 status open
24640
24641 \begin_layout Standard
24642 \align center
24643 Marco ovalado, fino
24644 \end_layout
24645
24646 \end_inset
24647
24648
24649 \end_layout
24650
24651 \begin_layout Description
24652 Marco\InsetSpace ~
24653 ovalado,\InsetSpace ~
24654 grueso Dibuja un marco ovalado cuya línea tiene un grosor de
24655  0.8\InsetSpace \thinspace{}
24656 pt.
24657  
24658 \begin_inset Box Ovalbox
24659 position "c"
24660 hor_pos "c"
24661 has_inner_box 1
24662 inner_pos "c"
24663 use_parbox 0
24664 width "30col%"
24665 special "none"
24666 height "1in"
24667 height_special "totalheight"
24668 status open
24669
24670 \begin_layout Standard
24671 \align center
24672 Cuadro ovalado, grueso
24673 \end_layout
24674
24675 \end_inset
24676
24677
24678 \end_layout
24679
24680 \begin_layout Description
24681 Marco\InsetSpace ~
24682 con\InsetSpace ~
24683 sombra Dibuja un cuadro rectangular con sombra alrededor del cuadro.
24684  El grosor de la línea tiene el tamaño dado por 
24685 \series bold
24686
24687 \backslash
24688 fboxrule
24689 \series default
24690 , la sombra tiene una anchura de 4\InsetSpace \thinspace{}
24691 pt.
24692  
24693 \begin_inset Box Shadowbox
24694 position "c"
24695 hor_pos "c"
24696 has_inner_box 1
24697 inner_pos "c"
24698 use_parbox 0
24699 width "20col%"
24700 special "none"
24701 height "1in"
24702 height_special "totalheight"
24703 status open
24704
24705 \begin_layout Standard
24706 \align center
24707 Marco sombrado
24708 \end_layout
24709
24710 \end_inset
24711
24712
24713 \end_layout
24714
24715 \begin_layout Description
24716 Marco\InsetSpace ~
24717 doble Dibuja un rectángulo de línea doble alrededor del cuadro.
24718  El grosor de la línea interior es 0.75\InsetSpace \thinspace{}
24719
24720 \series bold
24721
24722 \backslash
24723 fboxrule
24724 \series default
24725 , el de la línea exterior es 1.5\InsetSpace \thinspace{}
24726
24727 \series bold
24728
24729 \backslash
24730 fboxrule
24731 \series default
24732 .
24733  La distancia entre líneas es 1.5\InsetSpace \thinspace{}
24734
24735 \series bold
24736
24737 \backslash
24738 fboxrule
24739 \series default
24740 \InsetSpace \thinspace{}
24741 +\InsetSpace \thinspace{}
24742 0.5\InsetSpace \thinspace{}
24743 pt.
24744  
24745 \begin_inset Box Doublebox
24746 position "c"
24747 hor_pos "c"
24748 has_inner_box 1
24749 inner_pos "c"
24750 use_parbox 0
24751 width "20col%"
24752 special "none"
24753 height "1in"
24754 height_special "totalheight"
24755 status open
24756
24757 \begin_layout Standard
24758 \align center
24759 Marco doble
24760 \end_layout
24761
24762 \end_inset
24763
24764
24765 \end_layout
24766
24767 \begin_layout Standard
24768 \begin_inset VSpace bigskip
24769 \end_inset
24770
24771 La etiqueta del recuadro en LyX cambiará según el estilo de marco elegido.
24772  Para poder utilizar los distintos marcos, debe estar instalado el paquete
24773  LaTeX 
24774 \series bold
24775 fancybox
24776 \series default
24777
24778 \begin_inset LatexCommand index
24779 name "LaTeX-paquetes ! fancybox"
24780
24781 \end_inset
24782
24783 .
24784 \end_layout
24785
24786 \begin_layout Standard
24787 \begin_inset VSpace bigskip
24788 \end_inset
24789
24790 El valor predeterminado por 
24791 \series bold
24792
24793 \backslash
24794 fboxrule
24795 \series default
24796  es 0.4\InsetSpace \thinspace{}
24797 pt.
24798  Puede cambiarse con el siguiente comando en ERT, p.\InsetSpace \thinspace{}
24799 e.\InsetSpace ~
24800 a\InsetSpace ~
24801 2\InsetSpace \thinspace{}
24802 pt:
24803 \end_layout
24804
24805 \begin_layout Standard
24806
24807 \series bold
24808
24809 \backslash
24810 setlength{
24811 \backslash
24812 fboxrule}{2pt}
24813 \end_layout
24814
24815 \begin_layout Standard
24816 \begin_inset ERT
24817 status collapsed
24818
24819 \begin_layout Standard
24820
24821
24822 \backslash
24823 setlength{
24824 \backslash
24825 fboxrule}{2pt}
24826 \end_layout
24827
24828 \end_inset
24829
24830
24831 \begin_inset Box Boxed
24832 position "c"
24833 hor_pos "c"
24834 has_inner_box 1
24835 inner_pos "c"
24836 use_parbox 0
24837 width "25col%"
24838 special "none"
24839 height "1in"
24840 height_special "totalheight"
24841 status open
24842
24843 \begin_layout Standard
24844 \align center
24845 Cuadro rectangular con 
24846 \series bold
24847
24848 \backslash
24849 fboxrule
24850 \series default
24851 \InsetSpace \thinspace{}
24852 =\InsetSpace \thinspace{}
24853 2\InsetSpace \thinspace{}
24854 pt
24855 \end_layout
24856
24857 \end_inset
24858
24859
24860 \begin_inset ERT
24861 status collapsed
24862
24863 \begin_layout Standard
24864
24865
24866 \backslash
24867 setlength{
24868 \backslash
24869 fboxrule}{0.4pt}
24870 \end_layout
24871
24872 \end_inset
24873
24874
24875 \end_layout
24876
24877 \begin_layout Standard
24878 \begin_inset VSpace bigskip
24879 \end_inset
24880
24881 El espacio entre el marco y el contenido del cuadro es 3\InsetSpace \thinspace{}
24882 pt por defecto para
24883  todos los estilos.
24884  Se puede cambiar mediante la longitud 
24885 \series bold
24886
24887 \backslash
24888 fboxsep
24889 \series default
24890 .
24891  Por ejemplo el comando
24892 \end_layout
24893
24894 \begin_layout Standard
24895
24896 \series bold
24897
24898 \backslash
24899 setlength{
24900 \backslash
24901 fboxsep}{10pt}
24902 \end_layout
24903
24904 \begin_layout Standard
24905 determina un valor de 10\InsetSpace \thinspace{}
24906 pt, como en el siguiente cuadro:
24907 \end_layout
24908
24909 \begin_layout Standard
24910 \begin_inset ERT
24911 status collapsed
24912
24913 \begin_layout Standard
24914
24915
24916 \backslash
24917 setlength{
24918 \backslash
24919 fboxsep}{10pt}
24920 \end_layout
24921
24922 \end_inset
24923
24924
24925 \begin_inset Box Boxed
24926 position "c"
24927 hor_pos "c"
24928 has_inner_box 1
24929 inner_pos "c"
24930 use_parbox 0
24931 width "25col%"
24932 special "none"
24933 height "1in"
24934 height_special "totalheight"
24935 status open
24936
24937 \begin_layout Standard
24938 \align center
24939 Cuadro rectangular con 
24940 \series bold
24941
24942 \backslash
24943 fboxsep
24944 \series default
24945 \InsetSpace \thinspace{}
24946 =\InsetSpace \thinspace{}
24947 10\InsetSpace \thinspace{}
24948 pt
24949 \end_layout
24950
24951 \end_inset
24952
24953
24954 \begin_inset ERT
24955 status collapsed
24956
24957 \begin_layout Standard
24958
24959
24960 \backslash
24961 setlength{
24962 \backslash
24963 fboxsep}{3pt}
24964 \end_layout
24965
24966 \end_inset
24967
24968
24969 \end_layout
24970
24971 \begin_layout Standard
24972 \begin_inset VSpace bigskip
24973 \end_inset
24974
24975 El diámetro de las esquinas de los cuadros ovalados se puede modificar con
24976  el comando 
24977 \series bold
24978
24979 \backslash
24980 cornersize
24981 \series default
24982 .
24983  El comando
24984 \end_layout
24985
24986 \begin_layout Standard
24987
24988 \series bold
24989
24990 \backslash
24991 cornersize*{1cm}
24992 \end_layout
24993
24994 \begin_layout Standard
24995 establece un diámetro de 1\InsetSpace \thinspace{}
24996 cm.
24997  El comando
24998 \end_layout
24999
25000 \begin_layout Standard
25001
25002 \series bold
25003
25004 \backslash
25005 cornersize{num}
25006 \end_layout
25007
25008 \begin_layout Standard
25009 fija el diámetro en 
25010 \family sans
25011 num\InsetSpace \thinspace{}
25012 ×\InsetSpace \thinspace{}
25013 mínimo
25014 \family default
25015  
25016 \family sans
25017 (ancho y alto del cuadro)
25018 \family default
25019 .
25020  Por defecto es 
25021 \series bold
25022
25023 \backslash
25024 cornersize{0.5}
25025 \series default
25026 .
25027 \end_layout
25028
25029 \begin_layout Standard
25030 \begin_inset ERT
25031 status collapsed
25032
25033 \begin_layout Standard
25034
25035
25036 \backslash
25037 cornersize*{1.5cm}
25038 \end_layout
25039
25040 \end_inset
25041
25042
25043 \begin_inset Box Ovalbox
25044 position "c"
25045 hor_pos "c"
25046 has_inner_box 1
25047 inner_pos "c"
25048 use_parbox 0
25049 width "28col%"
25050 special "none"
25051 height "1in"
25052 height_special "totalheight"
25053 status open
25054
25055 \begin_layout Standard
25056 \align center
25057 Cuadro ovalado con 
25058 \series bold
25059
25060 \backslash
25061 cornersize
25062 \series default
25063 \InsetSpace \thinspace{}
25064 =\InsetSpace \thinspace{}
25065 1.5\InsetSpace \thinspace{}
25066 cm
25067 \end_layout
25068
25069 \end_inset
25070
25071
25072 \begin_inset ERT
25073 status collapsed
25074
25075 \begin_layout Standard
25076
25077
25078 \backslash
25079 cornersize{0.5}
25080 \end_layout
25081
25082 \end_inset
25083
25084
25085 \end_layout
25086
25087 \begin_layout Standard
25088 \begin_inset VSpace bigskip
25089 \end_inset
25090
25091 El tamaño de la sombra se puede ajustar cambiando la longitud 
25092 \series bold
25093
25094 \backslash
25095 shadowsize
25096 \series default
25097 .
25098  Este comando la ajusta a 2\InsetSpace \thinspace{}
25099 pt en el cuadro siguiente:
25100 \end_layout
25101
25102 \begin_layout Standard
25103
25104 \series bold
25105
25106 \backslash
25107 setlength{
25108 \backslash
25109 shadowsize}{2pt}
25110 \end_layout
25111
25112 \begin_layout Standard
25113 \begin_inset ERT
25114 status collapsed
25115
25116 \begin_layout Standard
25117
25118
25119 \backslash
25120 setlength{
25121 \backslash
25122 shadowsize}{2pt}
25123 \end_layout
25124
25125 \end_inset
25126
25127
25128 \begin_inset Box Shadowbox
25129 position "c"
25130 hor_pos "c"
25131 has_inner_box 1
25132 inner_pos "c"
25133 use_parbox 0
25134 width "28col%"
25135 special "none"
25136 height "1in"
25137 height_special "totalheight"
25138 status open
25139
25140 \begin_layout Standard
25141 \align center
25142 Cuadro sombreado con 
25143 \series bold
25144
25145 \backslash
25146 shadowsize
25147 \series default
25148 \InsetSpace \thinspace{}
25149 =\InsetSpace \thinspace{}
25150 2\InsetSpace \thinspace{}
25151 pt
25152 \end_layout
25153
25154 \end_inset
25155
25156
25157 \begin_inset ERT
25158 status collapsed
25159
25160 \begin_layout Standard
25161
25162
25163 \backslash
25164 setlength{
25165 \backslash
25166 shadowsize}{4pt}
25167 \end_layout
25168
25169 \end_inset
25170
25171
25172 \end_layout
25173
25174 \begin_layout Standard
25175 \begin_inset VSpace bigskip
25176 \end_inset
25177
25178 Los cambios en las dimensiones son válidos para todos los cuadros que siguen
25179  a los comandos.
25180 \end_layout
25181
25182 \begin_layout Section
25183 Minipáginas
25184 \begin_inset LatexCommand label
25185 name "sec:Minipáginas"
25186
25187 \end_inset
25188
25189
25190 \begin_inset LatexCommand index
25191 name "Cuadros ! Minipáginas"
25192
25193 \end_inset
25194
25195
25196 \end_layout
25197
25198 \begin_layout Standard
25199 Las minipáginas son tratadas por LaTeX como páginas dentro de páginas y
25200  por tanto pueden tener, por ejemplo, sus propias notas al pie.
25201 \end_layout
25202
25203 \begin_layout Standard
25204 Las minipáginas son útiles para escribir documentos con distintos lenguajes.
25205 \end_layout
25206
25207 \begin_layout Standard
25208 A continuación hay dos ejemplos de minipáginas adosadas.
25209  Su anchura está puesta en 45\InsetSpace \thinspace{}
25210 col% y separadas por un relleno horizontal,
25211  insertado vía el menú 
25212 \family sans
25213 Insertar\SpecialChar \menuseparator
25214 Formato\InsetSpace ~
25215
25216 \family default
25217 es
25218 \family sans
25219 pecial\InsetSpace ~
25220 \SpecialChar \menuseparator
25221 Relleno\InsetSpace ~
25222 horizontal
25223 \family default
25224 .
25225 \end_layout
25226
25227 \begin_layout Standard
25228 \begin_inset Box Frameless
25229 position "t"
25230 hor_pos "c"
25231 has_inner_box 1
25232 inner_pos "c"
25233 use_parbox 0
25234 width "45col%"
25235 special "none"
25236 height "1in"
25237 height_special "totalheight"
25238 status open
25239
25240 \begin_layout Standard
25241
25242 \lang german
25243 Dies ist ein deutscher Text.
25244  Dies ist ein deutscher Text.
25245  Dies ist ein deutscher Text.
25246  Dies ist ein deutscher Text.
25247  Dies ist ein deutscher Text.
25248  Dies ist ein deutscher Text.
25249  Dies ist ein deutscher Text.
25250  Dies ist ein deutscher Text.
25251  Dies ist ein deutscher Text.
25252  Dies ist ein deutscher Text.
25253  Dies ist ein deutscher Text.
25254  Dies ist ein deutscher Text.
25255  Dies ist ein deutscher Text
25256 \begin_inset Foot
25257 status collapsed
25258
25259 \begin_layout Standard
25260
25261 \lang german
25262 Dies ist eine deutsche Fußnote.
25263 \end_layout
25264
25265 \end_inset
25266
25267 .
25268  Dies ist ein deutscher Text.
25269  Dies ist ein deutscher Text.
25270 \end_layout
25271
25272 \end_inset
25273
25274
25275 \hfill
25276
25277 \begin_inset Box Frameless
25278 position "t"
25279 hor_pos "c"
25280 has_inner_box 1
25281 inner_pos "c"
25282 use_parbox 0
25283 width "45col%"
25284 special "none"
25285 height "1in"
25286 height_special "totalheight"
25287 status open
25288
25289 \begin_layout Standard
25290 This is an English Text.
25291  This is an English Text.
25292  This is an English Text.
25293  This is an English Text.
25294  This is an English Text.
25295  This is an English Text.
25296  This is an English Text.
25297  This is an English Text.
25298  This is an English Text.
25299  This is an English Text.
25300  This is an English Text.
25301  This is an English Text.
25302  This is an English Text.
25303  This is an English Text.
25304  This is an English Text.
25305  This is an English Text.
25306 \begin_inset Foot
25307 status collapsed
25308
25309 \begin_layout Standard
25310 This is an English footnote.
25311 \end_layout
25312
25313 \end_inset
25314
25315  This is an English Text.
25316  
25317 \end_layout
25318
25319 \end_inset
25320
25321
25322 \end_layout
25323
25324 \begin_layout Standard
25325 \begin_inset VSpace bigskip
25326 \end_inset
25327
25328 Otra aplicación de los cuadros son las notas a pie en tablas.
25329  Debido a una restricción de LaTeX las notas a pie en tablas no aparecen
25330  al final de la página actual.
25331  Pero si pones la tabla con notas al pie en una minipágina, las notas aparecen
25332  en la parte inferior, ordenadas con letras.
25333  La ordenación de las notas al pie se restablece en cada minipágina pero
25334  no fuera de las minipáginas.
25335 \end_layout
25336
25337 \begin_layout Standard
25338 La nota al pie en esta tabla no aparece: 
25339 \begin_inset Tabular
25340 <lyxtabular version="3" rows="3" columns="4">
25341 <features>
25342 <column alignment="center" valignment="top" leftline="true" width="0pt">
25343 <column alignment="center" valignment="top" leftline="true" width="0pt">
25344 <column alignment="center" valignment="top" leftline="true" width="0pt">
25345 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25346 <row topline="true">
25347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25348 \begin_inset Text
25349
25350 \begin_layout Standard
25351 1
25352 \end_layout
25353
25354 \end_inset
25355 </cell>
25356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25357 \begin_inset Text
25358
25359 \begin_layout Standard
25360 2
25361 \end_layout
25362
25363 \end_inset
25364 </cell>
25365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25366 \begin_inset Text
25367
25368 \begin_layout Standard
25369 3
25370 \begin_inset Foot
25371 status open
25372
25373 \begin_layout Standard
25374 Nota al pie en una tabla.
25375 \end_layout
25376
25377 \end_inset
25378
25379
25380 \end_layout
25381
25382 \end_inset
25383 </cell>
25384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25385 \begin_inset Text
25386
25387 \begin_layout Standard
25388 4
25389 \end_layout
25390
25391 \end_inset
25392 </cell>
25393 </row>
25394 <row topline="true">
25395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25396 \begin_inset Text
25397
25398 \begin_layout Standard
25399 a
25400 \end_layout
25401
25402 \end_inset
25403 </cell>
25404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25405 \begin_inset Text
25406
25407 \begin_layout Standard
25408 b
25409 \end_layout
25410
25411 \end_inset
25412 </cell>
25413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25414 \begin_inset Text
25415
25416 \begin_layout Standard
25417 c
25418 \end_layout
25419
25420 \end_inset
25421 </cell>
25422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25423 \begin_inset Text
25424
25425 \begin_layout Standard
25426 d
25427 \end_layout
25428
25429 \end_inset
25430 </cell>
25431 </row>
25432 <row topline="true" bottomline="true">
25433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25434 \begin_inset Text
25435
25436 \begin_layout Standard
25437 e
25438 \end_layout
25439
25440 \end_inset
25441 </cell>
25442 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25443 \begin_inset Text
25444
25445 \begin_layout Standard
25446 f
25447 \end_layout
25448
25449 \end_inset
25450 </cell>
25451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25452 \begin_inset Text
25453
25454 \begin_layout Standard
25455 g
25456 \end_layout
25457
25458 \end_inset
25459 </cell>
25460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25461 \begin_inset Text
25462
25463 \begin_layout Standard
25464 h
25465 \end_layout
25466
25467 \end_inset
25468 </cell>
25469 </row>
25470 </lyxtabular>
25471
25472 \end_inset
25473
25474
25475 \end_layout
25476
25477 \begin_layout Standard
25478 \align center
25479 \begin_inset Box Frameless
25480 position "t"
25481 hor_pos "c"
25482 has_inner_box 1
25483 inner_pos "c"
25484 use_parbox 0
25485 width "30col%"
25486 special "none"
25487 height "1in"
25488 height_special "totalheight"
25489 status open
25490
25491 \begin_layout Standard
25492 \align center
25493 \begin_inset Tabular
25494 <lyxtabular version="3" rows="3" columns="4">
25495 <features>
25496 <column alignment="center" valignment="top" leftline="true" width="0pt">
25497 <column alignment="center" valignment="top" leftline="true" width="0pt">
25498 <column alignment="center" valignment="top" leftline="true" width="0pt">
25499 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25500 <row topline="true">
25501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25502 \begin_inset Text
25503
25504 \begin_layout Standard
25505 1
25506 \end_layout
25507
25508 \end_inset
25509 </cell>
25510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25511 \begin_inset Text
25512
25513 \begin_layout Standard
25514 2
25515 \end_layout
25516
25517 \end_inset
25518 </cell>
25519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25520 \begin_inset Text
25521
25522 \begin_layout Standard
25523 3
25524 \begin_inset Foot
25525 status open
25526
25527 \begin_layout Standard
25528 Nota al pie en una tabla..
25529 \end_layout
25530
25531 \end_inset
25532
25533
25534 \end_layout
25535
25536 \end_inset
25537 </cell>
25538 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25539 \begin_inset Text
25540
25541 \begin_layout Standard
25542 4
25543 \end_layout
25544
25545 \end_inset
25546 </cell>
25547 </row>
25548 <row topline="true">
25549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25550 \begin_inset Text
25551
25552 \begin_layout Standard
25553 a
25554 \end_layout
25555
25556 \end_inset
25557 </cell>
25558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25559 \begin_inset Text
25560
25561 \begin_layout Standard
25562 b
25563 \end_layout
25564
25565 \end_inset
25566 </cell>
25567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25568 \begin_inset Text
25569
25570 \begin_layout Standard
25571 c
25572 \end_layout
25573
25574 \end_inset
25575 </cell>
25576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25577 \begin_inset Text
25578
25579 \begin_layout Standard
25580 d
25581 \end_layout
25582
25583 \end_inset
25584 </cell>
25585 </row>
25586 <row topline="true" bottomline="true">
25587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25588 \begin_inset Text
25589
25590 \begin_layout Standard
25591 e
25592 \end_layout
25593
25594 \end_inset
25595 </cell>
25596 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25597 \begin_inset Text
25598
25599 \begin_layout Standard
25600 f
25601 \end_layout
25602
25603 \end_inset
25604 </cell>
25605 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25606 \begin_inset Text
25607
25608 \begin_layout Standard
25609 g
25610 \end_layout
25611
25612 \end_inset
25613 </cell>
25614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25615 \begin_inset Text
25616
25617 \begin_layout Standard
25618 h
25619 \end_layout
25620
25621 \end_inset
25622 </cell>
25623 </row>
25624 </lyxtabular>
25625
25626 \end_inset
25627
25628
25629 \end_layout
25630
25631 \end_inset
25632
25633
25634 \end_layout
25635
25636 \begin_layout Standard
25637 \begin_inset VSpace bigskip
25638 \end_inset
25639
25640 La configuración global de párrafos se ignora en las minipáginas.
25641  Esto significa que en las mismas no habrá espacio entre párrafos aunque
25642  pongas p.\InsetSpace \thinspace{}
25643 e.\InsetSpace ~
25644
25645 \family sans
25646 Salto\InsetSpace ~
25647 medio
25648 \family default
25649  en la configuración del documento.
25650 \end_layout
25651
25652 \begin_layout Standard
25653 Las minipáginas también sirven para poner un color de fondo para partes
25654  de texto, ver sección\InsetSpace ~
25655
25656 \begin_inset LatexCommand ref
25657 reference "sub:Color-en-Párrafos"
25658
25659 \end_inset
25660
25661 .
25662 \end_layout
25663
25664 \begin_layout Standard
25665 \begin_inset Note Greyedout
25666 status open
25667
25668 \begin_layout Standard
25669
25670 \series bold
25671 Nota:
25672 \series default
25673  No puedes tener flotantes o notas al margen en minipáginas pero sí puedes
25674  tener minipáginas en tablas, flotantes, y otros cuadros.
25675 \end_layout
25676
25677 \end_inset
25678
25679
25680 \end_layout
25681
25682 \begin_layout Section
25683 Cuadros de Párrafo
25684 \begin_inset LatexCommand label
25685 name "sec:Cuadros-de-Párrafo"
25686
25687 \end_inset
25688
25689
25690 \begin_inset LatexCommand index
25691 name "Cuadros ! de Párrafo"
25692
25693 \end_inset
25694
25695
25696 \end_layout
25697
25698 \begin_layout Standard
25699 Los cuadros de párrafo son similares a las minipáginas con la diferencia
25700  de que no pueden contener notas al pie.
25701   La diferencia principal es que las minipáginas no son verdaderos cuadros
25702  sino entornos de LaTeX.
25703 \end_layout
25704
25705 \begin_layout Standard
25706 \align center
25707 \begin_inset Box Frameless
25708 position "t"
25709 hor_pos "c"
25710 has_inner_box 1
25711 inner_pos "t"
25712 use_parbox 1
25713 width "33col%"
25714 special "none"
25715 height "1in"
25716 height_special "totalheight"
25717 status collapsed
25718
25719 \begin_layout Standard
25720 Texto en un cuadro de párrafo.
25721  Texto en un cuadro de párrafo.
25722  Esta nota no aparece:
25723 \begin_inset Foot
25724 status open
25725
25726 \begin_layout Standard
25727 Esta es una nota en cuadro de párrafo y por eso no aparecerá.
25728 \end_layout
25729
25730 \end_inset
25731
25732
25733 \end_layout
25734
25735 \end_inset
25736
25737
25738 \end_layout
25739
25740 \begin_layout Section
25741 Cuadros para Palabras y Caracteres
25742 \begin_inset LatexCommand index
25743 name "Cuadros ! para Palabras y Caracteres"
25744
25745 \end_inset
25746
25747
25748 \end_layout
25749
25750 \begin_layout Subsection
25751 Evitar la Partición con Guiones
25752 \begin_inset LatexCommand label
25753 name "sec:Evitar-la-Partición-con-Guiones"
25754
25755 \end_inset
25756
25757
25758 \begin_inset LatexCommand index
25759 name "Cuadros ! Prevenir Partición con Guiones"
25760
25761 \end_inset
25762
25763
25764 \end_layout
25765
25766 \begin_layout Standard
25767 Hay un tipo especial de cuadro para impedir que una palabra sea partida
25768  con guión.
25769 \newline
25770 He aquí un ejemplo:
25771 \end_layout
25772
25773 \begin_layout Standard
25774 Esta línea es un ejemplo para mostrar cómo evitar la división de p.\InsetSpace \thinspace{}
25775 e.\InsetSpace ~
25776 estalarguísim
25777 apalabra.
25778 \end_layout
25779
25780 \begin_layout Standard
25781 Para evitar su división usa el comando
25782 \end_layout
25783
25784 \begin_layout Standard
25785
25786 \series bold
25787
25788 \backslash
25789 mbox{
25790 \end_layout
25791
25792 \begin_layout Standard
25793 en ERT antes de la palabra.
25794  Tras ella inserta una llave de cierre 
25795 \begin_inset Quotes eld
25796 \end_inset
25797
25798
25799 \series bold
25800 }
25801 \series default
25802
25803 \begin_inset Quotes erd
25804 \end_inset
25805
25806  en ERT.
25807 \begin_inset ERT
25808 status collapsed
25809
25810 \begin_layout Standard
25811
25812
25813 \backslash
25814 pagebreak 
25815 \end_layout
25816
25817 \end_inset
25818
25819
25820 \end_layout
25821
25822 \begin_layout Standard
25823 Este es el resultado:
25824 \end_layout
25825
25826 \begin_layout Standard
25827 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
25828 e.\InsetSpace ~
25829
25830 \begin_inset ERT
25831 status collapsed
25832
25833 \begin_layout Standard
25834
25835
25836 \backslash
25837 mbox{
25838 \end_layout
25839
25840 \end_inset
25841
25842 estalarguísimapalabra.
25843 \begin_inset ERT
25844 status collapsed
25845
25846 \begin_layout Standard
25847
25848 }
25849 \end_layout
25850
25851 \end_inset
25852
25853
25854 \end_layout
25855
25856 \begin_layout Standard
25857 Por supuesto, la palabra sobresale del margen.
25858  Para evitarlo añade, con el menú 
25859 \family sans
25860 Insertar\SpecialChar \menuseparator
25861 Formato\InsetSpace ~
25862 especial\InsetSpace ~
25863 \SpecialChar \menuseparator
25864 Salto\InsetSpace ~
25865 de\InsetSpace ~
25866
25867 \family default
25868 línea (atajo 
25869 \series bold
25870 Ctrl-Return
25871 \series default
25872 ), un salto de línea antes de la palabra:
25873 \end_layout
25874
25875 \begin_layout Standard
25876 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
25877 e.\InsetSpace ~
25878
25879 \newline
25880
25881 \begin_inset ERT
25882 status collapsed
25883
25884 \begin_layout Standard
25885
25886
25887 \backslash
25888 mbox{
25889 \end_layout
25890
25891 \end_inset
25892
25893 estalarguísimapalabra.
25894 \begin_inset ERT
25895 status collapsed
25896
25897 \begin_layout Standard
25898
25899 }
25900 \end_layout
25901
25902 \end_inset
25903
25904
25905 \end_layout
25906
25907 \begin_layout Subsection
25908 Alineación Vertical
25909 \begin_inset LatexCommand label
25910 name "sub:Alineación-Vertical"
25911
25912 \end_inset
25913
25914
25915 \begin_inset LatexCommand index
25916 name "Cuadros ! para Alineación Vertical"
25917
25918 \end_inset
25919
25920
25921 \end_layout
25922
25923 \begin_layout Standard
25924 Con ayuda del comando 
25925 \series bold
25926
25927 \backslash
25928 raisebox
25929 \series default
25930  puedes alinear verticalmente con el texto circundante palabras o caracteres.
25931  
25932 \series bold
25933
25934 \backslash
25935 raisebox
25936 \series default
25937  se utiliza según el esquema:
25938 \end_layout
25939
25940 \begin_layout Standard
25941
25942 \series bold
25943
25944 \backslash
25945 raisebox{elevación}[altura][profundidad]{contenido del cuadro}
25946 \end_layout
25947
25948 \begin_layout Standard
25949 La elevación puede ser un valor positivo para subir el cuadro o negativo
25950  para bajarlo.
25951 \end_layout
25952
25953 \begin_layout Standard
25954 Para alinear una palabra, p.\InsetSpace \thinspace{}
25955 e\InsetSpace ~
25956
25957 \begin_inset Quotes eld
25958 \end_inset
25959
25960 prevención
25961 \begin_inset Quotes erd
25962 \end_inset
25963
25964  para que la parte inferior de la letra más 
25965 \begin_inset Quotes eld
25966 \end_inset
25967
25968 profunda
25969 \begin_inset Quotes erd
25970 \end_inset
25971
25972  
25973 \begin_inset Quotes eld
25974 \end_inset
25975
25976 p
25977 \begin_inset Quotes erd
25978 \end_inset
25979
25980  esté en la línea de base, inserta el comando
25981 \end_layout
25982
25983 \begin_layout Standard
25984
25985 \series bold
25986
25987 \backslash
25988 raisebox{
25989 \backslash
25990 depth}{
25991 \end_layout
25992
25993 \begin_layout Standard
25994 en ERT antes de la palabra.
25995  Detrás de la palabra inserta una llave de cierre 
25996 \begin_inset Quotes eld
25997 \end_inset
25998
25999
26000 \series bold
26001 }
26002 \series default
26003
26004 \begin_inset Quotes erd
26005 \end_inset
26006
26007  en ERT.
26008 \newline
26009 Este es el resultado:
26010 \end_layout
26011
26012 \begin_layout Standard
26013 Esto es una línea de texto con la palabra 
26014 \begin_inset ERT
26015 status open
26016
26017 \begin_layout Standard
26018
26019
26020 \backslash
26021 raisebox{
26022 \backslash
26023 depth}{
26024 \end_layout
26025
26026 \end_inset
26027
26028
26029 \begin_inset Quotes eld
26030 \end_inset
26031
26032 prevención
26033 \begin_inset Quotes erd
26034 \end_inset
26035
26036
26037 \begin_inset ERT
26038 status collapsed
26039
26040 \begin_layout Standard
26041
26042 }
26043 \end_layout
26044
26045 \end_inset
26046
26047  elevada.
26048 \end_layout
26049
26050 \begin_layout Standard
26051 \begin_inset VSpace bigskip
26052 \end_inset
26053
26054 Al subir o bajar caracteres en una línea, se modifica el espacio entre líneas:
26055 \end_layout
26056
26057 \begin_layout Standard
26058 Esto es una línea de texto con la palabra 
26059 \begin_inset ERT
26060 status open
26061
26062 \begin_layout Standard
26063
26064
26065 \backslash
26066 raisebox{-
26067 \backslash
26068 depth}{
26069 \end_layout
26070
26071 \end_inset
26072
26073
26074 \begin_inset Quotes eld
26075 \end_inset
26076
26077 prevención
26078 \begin_inset Quotes erd
26079 \end_inset
26080
26081
26082 \begin_inset ERT
26083 status collapsed
26084
26085 \begin_layout Standard
26086
26087 }
26088 \end_layout
26089
26090 \end_inset
26091
26092  como palabra más baja.
26093 \newline
26094 Esto es una línea de texto con la palabra 
26095 \begin_inset ERT
26096 status collapsed
26097
26098 \begin_layout Standard
26099
26100
26101 \backslash
26102 raisebox{0.5cm}{
26103 \end_layout
26104
26105 \end_inset
26106
26107
26108 \begin_inset Quotes eld
26109 \end_inset
26110
26111 testigo
26112 \begin_inset Quotes erd
26113 \end_inset
26114
26115
26116 \begin_inset ERT
26117 status collapsed
26118
26119 \begin_layout Standard
26120
26121 }
26122 \end_layout
26123
26124 \end_inset
26125
26126  como palabra más alta.
26127 \end_layout
26128
26129 \begin_layout Standard
26130 Si por alguna razón quieres impedir esto, pon la altura de cuadro a cero.
26131  Por ejemplo
26132 \end_layout
26133
26134 \begin_layout Standard
26135
26136 \series bold
26137
26138 \backslash
26139 raisebox{-
26140 \backslash
26141 depth}[0pt]{
26142 \end_layout
26143
26144 \begin_layout Standard
26145 Esto es una línea de texto con la palabra 
26146 \begin_inset ERT
26147 status collapsed
26148
26149 \begin_layout Standard
26150
26151
26152 \backslash
26153 raisebox{-
26154 \backslash
26155 depth}[0pt]{
26156 \end_layout
26157
26158 \end_inset
26159
26160
26161 \begin_inset Quotes eld
26162 \end_inset
26163
26164 prevención
26165 \begin_inset Quotes erd
26166 \end_inset
26167
26168
26169 \begin_inset ERT
26170 status collapsed
26171
26172 \begin_layout Standard
26173
26174 }
26175 \end_layout
26176
26177 \end_inset
26178
26179  como palabra más baja.
26180 \newline
26181 Esto es una línea de texto con la palabra 
26182 \begin_inset ERT
26183 status collapsed
26184
26185 \begin_layout Standard
26186
26187
26188 \backslash
26189 raisebox{0.5cm}[0pt]{
26190 \end_layout
26191
26192 \end_inset
26193
26194
26195 \begin_inset Quotes eld
26196 \end_inset
26197
26198 testigo
26199 \begin_inset Quotes erd
26200 \end_inset
26201
26202
26203 \begin_inset ERT
26204 status collapsed
26205
26206 \begin_layout Standard
26207
26208 }
26209 \end_layout
26210
26211 \end_inset
26212
26213  como palabra más alta.
26214 \end_layout
26215
26216 \begin_layout Section
26217 Cuadros Coloreados
26218 \begin_inset LatexCommand label
26219 name "sec:Cuadros-Coloreados"
26220
26221 \end_inset
26222
26223
26224 \begin_inset LatexCommand index
26225 name "Cuadros ! Color"
26226
26227 \end_inset
26228
26229
26230 \end_layout
26231
26232 \begin_layout Subsection
26233 Color en Texto
26234 \begin_inset LatexCommand index
26235 name "Color ! en Texto"
26236
26237 \end_inset
26238
26239
26240 \end_layout
26241
26242 \begin_layout Standard
26243 Para colorear el fondo de un texto, éste debe ponerse en un cuadro coloreado.
26244  Esto requiere cargar el paquete LaTeX 
26245 \series bold
26246 color
26247 \series default
26248
26249 \begin_inset LatexCommand index
26250 name "LaTeX-paquetes ! color"
26251
26252 \end_inset
26253
26254  en el preámbulo del documento con
26255 \end_layout
26256
26257 \begin_layout Standard
26258
26259 \series bold
26260
26261 \backslash
26262 @ifundef\SpecialChar \textcompwordmark{}
26263 ined{textcolor}
26264 \newline
26265
26266 \begin_inset ERT
26267 status collapsed
26268
26269 \begin_layout Standard
26270
26271
26272 \backslash
26273 hphantom{ }
26274 \end_layout
26275
26276 \end_inset
26277
26278 {
26279 \backslash
26280 usepackage{color}}{}
26281 \end_layout
26282
26283 \begin_layout Standard
26284 LyX cargará automáticamente el paquete 
26285 \series bold
26286 color
26287 \series default
26288  cuando colorees texto
26289 \begin_inset Foot
26290 status collapsed
26291
26292 \begin_layout Standard
26293 Para evitar cargarlo dos veces se usa el comando 
26294 \series bold
26295
26296 \backslash
26297 @ifundef\SpecialChar \textcompwordmark{}
26298 ined
26299 \series default
26300 .
26301 \end_layout
26302
26303 \end_inset
26304
26305 .
26306 \end_layout
26307
26308 \begin_layout Standard
26309 \begin_inset VSpace medskip
26310 \end_inset
26311
26312 Los cuadros coloreados se crean con el comando 
26313 \series bold
26314
26315 \backslash
26316 colorbox
26317 \series default
26318 , de acuerdo con el siguiente esquema:
26319 \end_layout
26320
26321 \begin_layout Standard
26322
26323 \series bold
26324
26325 \backslash
26326 colorbox{color}{contenido del cuadro}
26327 \end_layout
26328
26329 \begin_layout Standard
26330 El contenido también puede ser un cuadro y los cuadros coloreados también
26331  pueden estar en otros cuadros.
26332 \end_layout
26333
26334 \begin_layout Standard
26335 Los siguientes colores están predefinidos:
26336 \newline
26337
26338 \family sans
26339 negro
26340 \family default
26341
26342 \family sans
26343 azul
26344 \family default
26345
26346 \family sans
26347 cyan
26348 \family default
26349 \series bold
26350 ,
26351 \series default
26352  
26353 \family sans
26354 verde
26355 \family default
26356
26357 \family sans
26358 magenta
26359 \family default
26360
26361 \family sans
26362 rojo
26363 \family default
26364
26365 \family sans
26366 blanco
26367 \family default
26368
26369 \family sans
26370 amarillo
26371 \family default
26372 .
26373 \newline
26374 También puedes definir tus propios colores según se explica en la sección\InsetSpace ~
26375
26376 \begin_inset LatexCommand ref
26377 reference "sec:Tablas-Coloreadas"
26378
26379 \end_inset
26380
26381 .
26382 \end_layout
26383
26384 \begin_layout Standard
26385 Por ejemplo, para poner fondo rojo a una palabra, inserta el comando
26386 \end_layout
26387
26388 \begin_layout Standard
26389
26390 \series bold
26391
26392 \backslash
26393 colorbox{red}{
26394 \end_layout
26395
26396 \begin_layout Standard
26397 en ERT antes de la palabra.
26398  Tras la palabra inserta una llave de cierre 
26399 \begin_inset Quotes eld
26400 \end_inset
26401
26402
26403 \series bold
26404 }
26405 \series default
26406
26407 \begin_inset Quotes erd
26408 \end_inset
26409
26410  en ERT.
26411 \newline
26412 Este es el resultado:
26413 \end_layout
26414
26415 \begin_layout Standard
26416 Línea en la que la palabra 
26417 \begin_inset ERT
26418 status collapsed
26419
26420 \begin_layout Standard
26421
26422
26423 \backslash
26424 colorbox{red}{
26425 \end_layout
26426
26427 \end_inset
26428
26429
26430 \begin_inset Quotes eld
26431 \end_inset
26432
26433 ¡Atención!
26434 \begin_inset Quotes erd
26435 \end_inset
26436
26437
26438 \begin_inset ERT
26439 status collapsed
26440
26441 \begin_layout Standard
26442
26443 }
26444 \end_layout
26445
26446 \end_inset
26447
26448  tiene fondo rojo.
26449 \end_layout
26450
26451 \begin_layout Standard
26452 \begin_inset VSpace bigskip
26453 \end_inset
26454
26455 Si quieres un marco de distinto color, puedes emplear el comando 
26456 \series bold
26457
26458 \backslash
26459 fcolorbox
26460 \series default
26461  con el esquema siguiente:
26462 \end_layout
26463
26464 \begin_layout Standard
26465
26466 \series bold
26467
26468 \backslash
26469 fcolorbox{color del marco}{color del cuadro}{contenido del cuadro}
26470 \end_layout
26471
26472 \begin_layout Standard
26473
26474 \series bold
26475
26476 \backslash
26477 fcolorbox
26478 \series default
26479  es una extensión de 
26480 \series bold
26481
26482 \backslash
26483 colorbox
26484 \series default
26485 .
26486  El grosor del marco y el espacio entre él y el contenido se puede ajustar
26487  con las longitudes 
26488 \series bold
26489
26490 \backslash
26491 fboxrule
26492 \series default
26493  y 
26494 \series bold
26495
26496 \backslash
26497 fboxsep
26498 \series default
26499 , respectivamente, como se describe en la sección\InsetSpace ~
26500
26501 \begin_inset LatexCommand ref
26502 reference "sec:Cuadros-Enmarcados"
26503
26504 \end_inset
26505
26506 .
26507 \end_layout
26508
26509 \begin_layout Standard
26510 Para el ejemplo siguiente se ha utilizado el comando
26511 \end_layout
26512
26513 \begin_layout Standard
26514
26515 \series bold
26516
26517 \backslash
26518 fcolorbox{cyan}{magenta}{
26519 \end_layout
26520
26521 \begin_layout Standard
26522 Este es un ejemplo en el que se ha puesto un grosor de 1\InsetSpace \thinspace{}
26523 mm para la línea
26524  del marco:
26525 \newline
26526
26527 \begin_inset ERT
26528 status collapsed
26529
26530 \begin_layout Standard
26531
26532
26533 \backslash
26534 fboxrule 1mm 
26535 \backslash
26536 fboxsep 1mm
26537 \end_layout
26538
26539 \end_inset
26540
26541
26542 \begin_inset ERT
26543 status collapsed
26544
26545 \begin_layout Standard
26546
26547
26548 \backslash
26549 fcolorbox{cyan}{magenta}{
26550 \end_layout
26551
26552 \end_inset
26553
26554 Texto en un marco coloreado y enmarcado.
26555 \begin_inset ERT
26556 status collapsed
26557
26558 \begin_layout Standard
26559
26560 }
26561 \end_layout
26562
26563 \end_inset
26564
26565
26566 \end_layout
26567
26568 \begin_layout Standard
26569 \begin_inset VSpace bigskip
26570 \end_inset
26571
26572 Por supuesto también puedes colorear el texto en un marco coloreado:
26573 \newline
26574
26575 \begin_inset ERT
26576 status collapsed
26577
26578 \begin_layout Standard
26579
26580
26581 \backslash
26582 fcolorbox{cyan}{magenta}{
26583 \end_layout
26584
26585 \end_inset
26586
26587
26588 \color yellow
26589 Texto coloreado en un marco sombreado y coloreado.
26590 \color none
26591
26592 \begin_inset ERT
26593 status collapsed
26594
26595 \begin_layout Standard
26596
26597 }
26598 \end_layout
26599
26600 \end_inset
26601
26602
26603 \begin_inset ERT
26604 status collapsed
26605
26606 \begin_layout Standard
26607
26608
26609 \backslash
26610 fboxrule 0.4pt 
26611 \backslash
26612 fboxsep 3pt
26613 \end_layout
26614
26615 \end_inset
26616
26617
26618 \end_layout
26619
26620 \begin_layout Standard
26621
26622 \series bold
26623 \begin_inset VSpace medskip
26624 \end_inset
26625
26626
26627 \end_layout
26628
26629 \begin_layout Standard
26630 \begin_inset Note Greyedout
26631 status open
26632
26633 \begin_layout Standard
26634
26635 \series bold
26636 Nota:
26637 \series default
26638  El texto en cuadros coloreados no puede tener saltos de línea.
26639  Para colorear líneas o párrafos múltiples, usa un cuadro dentro de un cuadro
26640  coloreado como se describe a continuación.
26641 \end_layout
26642
26643 \end_inset
26644
26645
26646 \end_layout
26647
26648 \begin_layout Subsection
26649 Color en Párrafos
26650 \begin_inset LatexCommand label
26651 name "sub:Color-en-Párrafos"
26652
26653 \end_inset
26654
26655
26656 \begin_inset LatexCommand index
26657 name "Color ! en Párrafos"
26658
26659 \end_inset
26660
26661
26662 \end_layout
26663
26664 \begin_layout Standard
26665 Para poner color de fondo en más de una línea, pon el texto en una minipágina.
26666  Antes de la minipágina inserta el comando 
26667 \series bold
26668
26669 \backslash
26670 colorbox
26671 \end_layout
26672
26673 \begin_layout Standard
26674
26675 \series bold
26676
26677 \backslash
26678 colorbox{color}{
26679 \end_layout
26680
26681 \begin_layout Standard
26682 en ERT.
26683  Detrás de la minipágina inserta una llave de cierre 
26684 \begin_inset Quotes eld
26685 \end_inset
26686
26687
26688 \series bold
26689 }
26690 \series default
26691
26692 \begin_inset Quotes erd
26693 \end_inset
26694
26695  en ERT.
26696 \end_layout
26697
26698 \begin_layout Standard
26699 \begin_inset ERT
26700 status collapsed
26701
26702 \begin_layout Standard
26703
26704
26705 \backslash
26706 colorbox{grisclaro}{
26707 \end_layout
26708
26709 \end_inset
26710
26711
26712 \begin_inset Box Frameless
26713 position "t"
26714 hor_pos "c"
26715 has_inner_box 1
26716 inner_pos "t"
26717 use_parbox 0
26718 width "100col%"
26719 special "none"
26720 height "1in"
26721 height_special "totalheight"
26722 status open
26723
26724 \begin_layout Standard
26725 Texto con color de fondo.
26726  Texto con color de fondo.
26727 \end_layout
26728
26729 \begin_layout Standard
26730 \begin_inset VSpace defskip
26731 \end_inset
26732
26733 El texto puede tener notas al pie
26734 \begin_inset Foot
26735 status open
26736
26737 \begin_layout Standard
26738 Otro ejemplo de nota
26739 \end_layout
26740
26741 \end_inset
26742
26743  y puede incluir tablas y figuras.
26744 \end_layout
26745
26746 \begin_layout Standard
26747 \align center
26748 \begin_inset Tabular
26749 <lyxtabular version="3" rows="3" columns="3">
26750 <features>
26751 <column alignment="center" valignment="top" leftline="true" width="0">
26752 <column alignment="center" valignment="top" leftline="true" width="0">
26753 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26754 <row topline="true">
26755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26756 \begin_inset Text
26757
26758 \begin_layout Standard
26759 a
26760 \end_layout
26761
26762 \end_inset
26763 </cell>
26764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26765 \begin_inset Text
26766
26767 \begin_layout Standard
26768 !
26769 \end_layout
26770
26771 \end_inset
26772 </cell>
26773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26774 \begin_inset Text
26775
26776 \begin_layout Standard
26777 3
26778 \end_layout
26779
26780 \end_inset
26781 </cell>
26782 </row>
26783 <row topline="true">
26784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26785 \begin_inset Text
26786
26787 \begin_layout Standard
26788 <
26789 \end_layout
26790
26791 \end_inset
26792 </cell>
26793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26794 \begin_inset Text
26795
26796 \begin_layout Standard
26797 b2
26798 \begin_inset Quotes erd
26799 \end_inset
26800
26801 |
26802 \end_layout
26803
26804 \end_inset
26805 </cell>
26806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26807 \begin_inset Text
26808
26809 \begin_layout Standard
26810 >
26811 \end_layout
26812
26813 \end_inset
26814 </cell>
26815 </row>
26816 <row topline="true" bottomline="true">
26817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26818 \begin_inset Text
26819
26820 \begin_layout Standard
26821 1
26822 \end_layout
26823
26824 \end_inset
26825 </cell>
26826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26827 \begin_inset Text
26828
26829 \begin_layout Standard
26830 §
26831 \end_layout
26832
26833 \end_inset
26834 </cell>
26835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26836 \begin_inset Text
26837
26838 \begin_layout Standard
26839 c
26840 \end_layout
26841
26842 \end_inset
26843 </cell>
26844 </row>
26845 </lyxtabular>
26846
26847 \end_inset
26848
26849
26850 \end_layout
26851
26852 \end_inset
26853
26854
26855 \begin_inset ERT
26856 status collapsed
26857
26858 \begin_layout Standard
26859
26860 }
26861 \end_layout
26862
26863 \end_inset
26864
26865
26866 \end_layout
26867
26868 \begin_layout Section
26869 URLs (Localizador Uniforme de Recursos)
26870 \begin_inset LatexCommand index
26871 name "URLs"
26872
26873 \end_inset
26874
26875
26876 \end_layout
26877
26878 \begin_layout Standard
26879 Los enlaces a páginas web o direcciones de correo se insertan con el menú
26880  
26881 \family sans
26882 Insertar\SpecialChar \menuseparator
26883 URL
26884 \family default
26885 .
26886  Surge un diálogo con dos campos; el campo 
26887 \family sans
26888 URL
26889 \family default
26890  y el campo 
26891 \family sans
26892 Nombre
26893 \family default
26894  para la descripción del URL, que saldrá impreso como texto normal inmediatament
26895 e antes del URL.
26896 \end_layout
26897
26898 \begin_layout Standard
26899 He aquí un ejemplo de URL: 
26900 \begin_inset LatexCommand url
26901 name "Página de LyX"
26902 target "http://www.lyx.org"
26903
26904 \end_inset
26905
26906
26907 \end_layout
26908
26909 \begin_layout Standard
26910 La opción 
26911 \family sans
26912 Generar\InsetSpace ~
26913 hiperenlace
26914 \family default
26915  en el diálogo URL sólo tiene efecto al exportar el documento al formato
26916  
26917 \begin_inset Quotes eld
26918 \end_inset
26919
26920
26921 \family sans
26922 LinuxDoc
26923 \family default
26924
26925 \begin_inset Quotes erd
26926 \end_inset
26927
26928 .
26929 \end_layout
26930
26931 \begin_layout Standard
26932 No se puede cambiar el estilo del texto del enlace.
26933  El texto del campo 
26934 \family sans
26935 Nombre
26936 \family default
26937  tendrá el estilo de texto predeterminado para el documento mientras que
26938  el texto del campo 
26939 \family sans
26940 URL
26941 \family default
26942  tendrá el estilo 
26943 \begin_inset Quotes eld
26944 \end_inset
26945
26946
26947 \family sans
26948 Typewriter
26949 \family default
26950
26951 \begin_inset Quotes erd
26952 \end_inset
26953
26954 .
26955 \end_layout
26956
26957 \begin_layout Standard
26958 Cuando usas el paquete LaTeX 
26959 \series bold
26960 hyperref
26961 \series default
26962
26963 \begin_inset LatexCommand index
26964 name "LaTeX-paquetes ! hyperref"
26965
26966 \end_inset
26967
26968  para enlazar referencias cruzadas, en las salidas DVI y PDF los URLs se
26969  convierten automáticamente en hiperenlaces disponibles.
26970 \end_layout
26971
26972 \begin_layout Standard
26973 \begin_inset Note Greyedout
26974 status open
26975
26976 \begin_layout Standard
26977
26978 \series bold
26979 Nota:
26980 \series default
26981  Cuando utilices los caracteres: "%", "#", "^", debes escribirlos precedidos
26982  por una barra invertida, p.\InsetSpace \thinspace{}
26983 e.\InsetSpace ~
26984
26985 \begin_inset Quotes eld
26986 \end_inset
26987
26988
26989 \backslash
26990 #
26991 \begin_inset Quotes erd
26992 \end_inset
26993
26994 .
26995  Los URLs no deben finalizar con una barra invertida.
26996 \end_layout
26997
26998 \end_inset
26999
27000
27001 \end_layout
27002
27003 \begin_layout Standard
27004 \begin_inset VSpace bigskip
27005 \end_inset
27006
27007 Para crear hiperenlaces reales sin tener que escribir la dirección del enlace
27008  en el texto, puedes usar el comando
27009 \end_layout
27010
27011 \begin_layout Standard
27012
27013 \series bold
27014
27015 \backslash
27016 href{dirección del enlace}{texto del enlace}
27017 \end_layout
27018
27019 \begin_layout Standard
27020 en ERT.
27021  Por ejemplo, para conseguir un enlace a la página web de LyX, escribe el
27022  comando
27023 \end_layout
27024
27025 \begin_layout Standard
27026
27027 \series bold
27028
27029 \backslash
27030 href{http://www.lyx.org}{
27031 \end_layout
27032
27033 \begin_layout Standard
27034 en ERT.
27035  Inserta después del comando el texto del enlace 
27036 \begin_inset Quotes eld
27037 \end_inset
27038
27039 Página de LyX
27040 \begin_inset Quotes erd
27041 \end_inset
27042
27043  seguido por una llave en ERT.
27044  Este es el resultado: 
27045 \begin_inset ERT
27046 status collapsed
27047
27048 \begin_layout Standard
27049
27050
27051 \backslash
27052 href{http://www.lyx.org}{
27053 \end_layout
27054
27055 \end_inset
27056
27057 Página de LyX
27058 \begin_inset ERT
27059 status collapsed
27060
27061 \begin_layout Standard
27062
27063 }
27064 \end_layout
27065
27066 \end_inset
27067
27068
27069 \end_layout
27070
27071 \begin_layout Standard
27072 Para enlazar a direcciones de correo, añade el prefijo 
27073 \begin_inset Quotes eld
27074 \end_inset
27075
27076
27077 \family sans
27078 mailto:
27079 \family default
27080
27081 \begin_inset Quotes erd
27082 \end_inset
27083
27084  a la dirección del enlace:
27085 \newline
27086 Correo para 
27087 \begin_inset ERT
27088 status collapsed
27089
27090 \begin_layout Standard
27091
27092
27093 \backslash
27094 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
27095 \end_layout
27096
27097 \end_inset
27098
27099 la lista de correo de documentación de LyX (lyx-docs)
27100 \begin_inset ERT
27101 status collapsed
27102
27103 \begin_layout Standard
27104
27105 }
27106 \end_layout
27107
27108 \end_inset
27109
27110 .
27111 \end_layout
27112
27113 \begin_layout Standard
27114 Emplear 
27115 \series bold
27116
27117 \backslash
27118 href
27119 \series default
27120  en vez del cuadro URL de LyX tiene la ventaja de que puedes especificar
27121  el estilo de texto del enlace como en las demás partes del texto.
27122  Puedes poner guiones y saltos de línea forzados para dividir textos extensos
27123  de enlaces en el margen de página.
27124  También puedes cambiar el estilo de texto para todos los URLs en el documento
27125  con una opción en el comando de carga de 
27126 \series bold
27127 hyperref
27128 \series default
27129 .
27130  Además las restricciones mencionadas antes no se aplican a 
27131 \series bold
27132
27133 \backslash
27134 href
27135 \series default
27136 .
27137 \end_layout
27138
27139 \begin_layout Chapter
27140 Archivos
27141 \begin_inset LatexCommand index
27142 name "Archivos, insertar"
27143
27144 \end_inset
27145
27146
27147 \end_layout
27148
27149 \begin_layout Standard
27150 Con el menú 
27151 \family sans
27152 Insertar\SpecialChar \menuseparator
27153 Archivo 
27154 \family default
27155 se pueden insertar archivos externos en un documento.
27156  Estos pueden ser:
27157 \end_layout
27158
27159 \begin_layout Description
27160 Documento\InsetSpace ~
27161 LyX Otro documento LyX; su contenido se inserta directamente en
27162  tu documento.
27163 \end_layout
27164
27165 \begin_layout Description
27166 Texto\InsetSpace ~
27167 simple\InsetSpace ~
27168 como\InsetSpace ~
27169 líneas Un documento de texto; cada línea del mismo se inserta
27170  en tu documento como un nuevo párrafo.
27171 \end_layout
27172
27173 \begin_layout Description
27174 Texto\InsetSpace ~
27175 simple\InsetSpace ~
27176 como\InsetSpace ~
27177 párrafos Un documento de texto; cada línea del texto se inserta
27178  tal como está, formando un solo párrafo.
27179  Las líneas vacías generan un nuevo párrafo en tu documento.
27180 \end_layout
27181
27182 \begin_layout Description
27183 Material\InsetSpace ~
27184 externo Archivos en diversos formatos.
27185 \end_layout
27186
27187 \begin_layout Description
27188 Documento\InsetSpace ~
27189 hijo Documentos LyX, LaTeX o texto simple.
27190 \end_layout
27191
27192 \begin_layout Section
27193 Material Externo
27194 \begin_inset LatexCommand index
27195 name "Material Externo"
27196
27197 \end_inset
27198
27199
27200 \end_layout
27201
27202 \begin_layout Standard
27203 Esta característica te permite insertar archivos en tu documento sin convertirlo
27204 s previamente a un formato legible en la salida, ya que LyX se ocupa de
27205  las necesarias conversiones.
27206  Esto es parecido a la inserción de imágenes en diversos formatos en los
27207  documentos LyX.
27208 \end_layout
27209
27210 \begin_layout Standard
27211 El material externo se puede insertar mediante el diálogo que surge a partir
27212  del menú 
27213 \family sans
27214 Insertar\SpecialChar \menuseparator
27215 Archivo\SpecialChar \menuseparator
27216 Material\InsetSpace ~
27217 externo
27218 \family default
27219 .
27220  Actualmente se permiten los siguientes tipos de archivo (
27221 \family sans
27222 Plantillas
27223 \family default
27224 ):
27225 \end_layout
27226
27227 \begin_layout Description
27228 Diagrama\InsetSpace ~
27229 de\InsetSpace ~
27230 ajedrez Esta plantilla soporta diagramas posicionales de ajedrez
27231  hechos con el programa 
27232 \begin_inset ERT
27233 status collapsed
27234
27235 \begin_layout Standard
27236
27237
27238 \backslash
27239 href{http://en.wikipedia.org/wiki/XBoard}{
27240 \end_layout
27241
27242 \end_inset
27243
27244
27245 \series bold
27246 XBoard
27247 \series default
27248
27249 \begin_inset ERT
27250 status collapsed
27251
27252 \begin_layout Standard
27253
27254 }
27255 \end_layout
27256
27257 \end_inset
27258
27259 .
27260 \end_layout
27261
27262 \begin_layout Description
27263 Fecha Esta inserta la fecha en el formato 
27264 \emph on
27265 Día-Mes-Año.
27266
27267 \emph default
27268  A continuación hay una fecha insertada como material externo: 
27269 \begin_inset External
27270         template Date
27271         filename .
27272
27273 \end_inset
27274
27275
27276 \newline
27277 La fecha no se muestra en LyX, solo en la salida.
27278  Hay otros dos métodos de insertar una fecha, con el menú 
27279 \family sans
27280 Insertar\SpecialChar \menuseparator
27281 Fecha
27282 \family default
27283  y con el comando LaTeX 
27284 \series bold
27285
27286 \backslash
27287 today
27288 \series default
27289  en ERT.
27290  Los distintos métodos se comparan en la tabla\InsetSpace ~
27291
27292 \begin_inset LatexCommand ref
27293 reference "tab:Comparación-de"
27294
27295 \end_inset
27296
27297 .
27298 \end_layout
27299
27300 \begin_layout Description
27301 LilyPond Esta plantilla sirve para tipografiar notación musical con el programa
27302 \begin_inset ERT
27303 status collapsed
27304
27305 \begin_layout Standard
27306
27307
27308 \backslash
27309 linebreak 
27310 \end_layout
27311
27312 \end_inset
27313
27314
27315 \begin_inset ERT
27316 status collapsed
27317
27318 \begin_layout Standard
27319
27320
27321 \backslash
27322 href{http://en.wikipedia.org/wiki/LilyPond}{
27323 \end_layout
27324
27325 \end_inset
27326
27327
27328 \series bold
27329 LilyPond
27330 \series default
27331
27332 \begin_inset ERT
27333 status collapsed
27334
27335 \begin_layout Standard
27336
27337 }
27338 \end_layout
27339
27340 \end_inset
27341
27342 .
27343 \begin_inset Note Note
27344 status collapsed
27345
27346 \begin_layout Standard
27347 El comando 
27348 \series bold
27349
27350 \backslash
27351 linebreak
27352 \series default
27353  quiebra la línea de forma que el texto precedente se extiende hasta ajustarse
27354  al margen de página.
27355 \end_layout
27356
27357 \end_inset
27358
27359
27360 \end_layout
27361
27362 \begin_layout Description
27363 RasterImage Sirve para insertar imágenes bitmap.
27364  Casi todos los formatos populares de imágenes están soportados.
27365  Las imágenes se pueden tratar en el diálogo 
27366 \family sans
27367 Material Externo
27368 \family default
27369  como las que habitualmente se incluyen mediante el diálogo 
27370 \family sans
27371 Gráficos
27372 \family default
27373 , tal como se explica en la sección\InsetSpace ~
27374
27375 \begin_inset LatexCommand ref
27376 reference "sec:Diálogo-Gráficos"
27377
27378 \end_inset
27379
27380 .
27381  La diferencia es que solo se permiten imágenes bitmap, por tanto las imágenes
27382  PDF y EPS no están soportadas.
27383 \end_layout
27384
27385 \begin_layout Description
27386 XFig Esta plantilla soporta imágenes creadas con el programa 
27387 \begin_inset ERT
27388 status collapsed
27389
27390 \begin_layout Standard
27391
27392
27393 \backslash
27394 href{http://en.wikipedia.org/wiki/Xfig}{
27395 \end_layout
27396
27397 \end_inset
27398
27399
27400 \series bold
27401 Xfig
27402 \series default
27403
27404 \begin_inset ERT
27405 status collapsed
27406
27407 \begin_layout Standard
27408
27409 }
27410 \end_layout
27411
27412 \end_inset
27413
27414 .
27415 \end_layout
27416
27417 \begin_layout Standard
27418 \begin_inset Float table
27419 placement h
27420 wide false
27421 sideways false
27422 status open
27423
27424 \begin_layout Standard
27425 \begin_inset Caption
27426
27427 \begin_layout Standard
27428 \begin_inset LatexCommand label
27429 name "tab:Comparación-de"
27430
27431 \end_inset
27432
27433 Comparación de los métodos de inserción de fecha.
27434 \end_layout
27435
27436 \end_inset
27437
27438
27439 \end_layout
27440
27441 \begin_layout Standard
27442 \align center
27443 \begin_inset Tabular
27444 <lyxtabular version="3" rows="4" columns="4">
27445 <features>
27446 <column alignment="center" valignment="top" leftline="true" width="0">
27447 <column alignment="center" valignment="top" leftline="true" width="0">
27448 <column alignment="center" valignment="top" leftline="true" width="0">
27449 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27450 <row topline="true">
27451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27452 \begin_inset Text
27453
27454 \begin_layout Standard
27455 Tipo del Documento
27456 \end_layout
27457
27458 \end_inset
27459 </cell>
27460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27461 \begin_inset Text
27462
27463 \begin_layout Standard
27464
27465 \family sans
27466 Material Externo\SpecialChar \menuseparator
27467 Fecha
27468 \end_layout
27469
27470 \end_inset
27471 </cell>
27472 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27473 \begin_inset Text
27474
27475 \begin_layout Standard
27476
27477 \family sans
27478 Insertar\SpecialChar \menuseparator
27479 Fecha
27480 \end_layout
27481
27482 \end_inset
27483 </cell>
27484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27485 \begin_inset Text
27486
27487 \begin_layout Standard
27488 comando 
27489 \series bold
27490
27491 \backslash
27492 today
27493 \end_layout
27494
27495 \end_inset
27496 </cell>
27497 </row>
27498 <row topline="true">
27499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27500 \begin_inset Text
27501
27502 \begin_layout Standard
27503 LyX
27504 \end_layout
27505
27506 \end_inset
27507 </cell>
27508 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27509 \begin_inset Text
27510
27511 \begin_layout Standard
27512 como cuadro
27513 \end_layout
27514
27515 \end_inset
27516 </cell>
27517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27518 \begin_inset Text
27519
27520 \begin_layout Standard
27521 como fecha
27522 \end_layout
27523
27524 \end_inset
27525 </cell>
27526 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27527 \begin_inset Text
27528
27529 \begin_layout Standard
27530 como cuadro ERT
27531 \end_layout
27532
27533 \end_inset
27534 </cell>
27535 </row>
27536 <row topline="true">
27537 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27538 \begin_inset Text
27539
27540 \begin_layout Standard
27541 LaTeX
27542 \end_layout
27543
27544 \end_inset
27545 </cell>
27546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27547 \begin_inset Text
27548
27549 \begin_layout Standard
27550 como fecha
27551 \end_layout
27552
27553 \end_inset
27554 </cell>
27555 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27556 \begin_inset Text
27557
27558 \begin_layout Standard
27559 como fecha
27560 \end_layout
27561
27562 \end_inset
27563 </cell>
27564 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27565 \begin_inset Text
27566
27567 \begin_layout Standard
27568 como comando
27569 \end_layout
27570
27571 \end_inset
27572 </cell>
27573 </row>
27574 <row topline="true" bottomline="true">
27575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27576 \begin_inset Text
27577
27578 \begin_layout Standard
27579 DVI, PDF, PS
27580 \end_layout
27581
27582 \end_inset
27583 </cell>
27584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27585 \begin_inset Text
27586
27587 \begin_layout Standard
27588 como fecha
27589 \end_layout
27590
27591 \end_inset
27592 </cell>
27593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27594 \begin_inset Text
27595
27596 \begin_layout Standard
27597 como fecha
27598 \end_layout
27599
27600 \end_inset
27601 </cell>
27602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27603 \begin_inset Text
27604
27605 \begin_layout Standard
27606 como fecha
27607 \end_layout
27608
27609 \end_inset
27610 </cell>
27611 </row>
27612 </lyxtabular>
27613
27614 \end_inset
27615
27616
27617 \end_layout
27618
27619 \end_inset
27620
27621
27622 \end_layout
27623
27624 \begin_layout Standard
27625 Si utilizas la opción 
27626 \family sans
27627 Borrador
27628 \family default
27629  en la solapa 
27630 \family sans
27631 Archivo
27632 \family default
27633  del diálogo 
27634 \family sans
27635 Material Externo
27636 \family default
27637 , en el documento de salida solo se muestra la ruta al archivo insertado.
27638 \family sans
27639
27640 \newline
27641
27642 \family default
27643 El material externo se muestra en LyX como un cuadro del tipo:
27644 \family sans
27645  
27646 \family default
27647
27648 \begin_inset Graphics
27649         filename clipart/MaterialExternoQt4.png
27650         scale 80
27651
27652 \end_inset
27653
27654  o como imagen, según la configuración elegida en la solapa 
27655 \family sans
27656 Vista\InsetSpace ~
27657 LyX 
27658 \family default
27659 del diálogo 
27660 \family sans
27661 Material Externo.
27662 \end_layout
27663
27664 \begin_layout Standard
27665 En el manual 
27666 \emph on
27667 Personalización
27668 \emph default
27669  se explica cómo definir tus propias plantillas.
27670 \end_layout
27671
27672 \begin_layout Section
27673 Documento Hijo
27674 \begin_inset LatexCommand index
27675 name "Documento Hijo"
27676
27677 \end_inset
27678
27679
27680 \end_layout
27681
27682 \begin_layout Standard
27683 Los documentos hijos se emplean en el caso de tener un documento extenso
27684  compuesto por varias partes o secciones más grandes.
27685  Para trabajar en este tipo de documentos es útil, y a veces obligado, dividirlo
27686  en varios archivos que pueden ser revisados por separado.
27687  Estos archivos se conocen como documentos hijos, y el llamado documento
27688  maestro los conecta con el fin de imprimirlos como un todo o por partes.
27689  
27690 \end_layout
27691
27692 \begin_layout Standard
27693 Los documentos incluidos como hijos se muestran en la pantalla de LyX como
27694  cuadros del tipo: 
27695 \begin_inset Graphics
27696         filename clipart/DocumentoHijoQt4.png
27697         scale 80
27698
27699 \end_inset
27700
27701 .
27702  Para incluir documentos hijos en un documento maestro utiliza el menú 
27703 \family sans
27704 Insertar
27705 \family default
27706 \SpecialChar \menuseparator
27707
27708 \family sans
27709 Archivo
27710 \family default
27711 \SpecialChar \menuseparator
27712
27713 \family sans
27714 Documento\InsetSpace ~
27715 hijo
27716 \family default
27717 .
27718  Surge un diálogo en el que puedes elegir entre tres métodos de inclusión:
27719 \end_layout
27720
27721 \begin_layout Description
27722 Incluir Puedes incluir documentos LyX y documentos LaTeX.
27723  Al pulsar el botón 
27724 \family sans
27725 Cargar
27726 \family default
27727  en el diálogo 
27728 \family sans
27729 Documento hijo
27730 \family default
27731 , los documentos incluidos se abrirán en una nueva solapa de archivo en
27732  la ventana de LyX y así puedes modificarlos si quieres.
27733 \end_layout
27734
27735 \begin_layout Standard
27736 Aquí hay un archivo insertado con el método 
27737 \family sans
27738 Incluir
27739 \family default
27740 :
27741 \begin_inset Include \include{DocumentoPostizo1.lyx}
27742 preview false
27743
27744 \end_inset
27745
27746
27747 \end_layout
27748
27749 \begin_layout Standard
27750 La numeración de secciones tiene en cuenta las secciones de los archivos
27751  incluidos en el orden en que están insertados en el documento maestro.
27752  El documento incluido de ejemplo tiene una subsección que se numera como
27753  subsección de la presente sección.
27754  Las etiquetas de los documentos incluidos se pueden referenciar: Subsección\InsetSpace ~
27755
27756 \begin_inset LatexCommand ref
27757 reference "sub:Subsección-Externa-1"
27758
27759 \end_inset
27760
27761 .
27762 \end_layout
27763
27764 \begin_layout Standard
27765 El preámbulo del documento hijo se ignora, solo se utiliza el preámbulo
27766  del documento maestro.
27767  Los documentos incluidos se insertan comenzando una página nueva y acabando
27768  con un salto de página.
27769 \end_layout
27770
27771 \begin_layout Standard
27772 Con el comando LaTeX 
27773 \series bold
27774
27775 \backslash
27776 includeonly
27777 \series default
27778  puedes determinar qué documentos hijos serán procesados al generar la salida.
27779  Esto es útil si, por ejemplo, estás trabajando solo cierto capítulo de
27780  un extenso documento y quieres ahorrar tiempo de compilación.
27781  
27782 \series bold
27783
27784 \backslash
27785 includeonly 
27786 \series default
27787 se inserta en el preámbulo del documento maestro, poniendo como argumento
27788  una lista de los nombres de archivo separados con comas, p.\InsetSpace \thinspace{}
27789 e.
27790  la orden:
27791 \end_layout
27792
27793 \begin_layout Standard
27794
27795 \series bold
27796
27797 \backslash
27798 includeonly{capítulo1,capítulo5}
27799 \end_layout
27800
27801 \begin_layout Standard
27802 hará que solo se procesen los archivos incluidos cuyos nombres son 
27803 \begin_inset Quotes eld
27804 \end_inset
27805
27806 capítulo1.lyx
27807 \begin_inset Quotes erd
27808 \end_inset
27809
27810  (o 
27811 \begin_inset Quotes eld
27812 \end_inset
27813
27814 capítulo1.tex
27815 \begin_inset Quotes erd
27816 \end_inset
27817
27818 ) y 
27819 \begin_inset Quotes eld
27820 \end_inset
27821
27822 capítulo5.lyx
27823 \begin_inset Quotes erd
27824 \end_inset
27825
27826 .
27827 \end_layout
27828
27829 \begin_layout Standard
27830 \begin_inset Note Greyedout
27831 status collapsed
27832
27833 \begin_layout Standard
27834
27835 \series bold
27836 Nota:
27837 \series default
27838  Si has incluido un archivo LyX o LaTeX cuya clase de documento es distinta
27839  a la del documento maestro, recibirás una advertencia al exportar/ver el
27840  documento, ya que esto podría dar resultados inesperados.
27841 \end_layout
27842
27843 \end_inset
27844
27845
27846 \end_layout
27847
27848 \begin_layout Description
27849 Entrada Este método es muy parecido al método 
27850 \family sans
27851 Incluir
27852 \family default
27853 .
27854  Las diferencias son:
27855 \end_layout
27856
27857 \begin_deeper
27858 \begin_layout Itemize
27859 Los archivos del tipo Entrada no comienzan en página nueva ni acaban con
27860  un salto de página.
27861 \end_layout
27862
27863 \begin_layout Itemize
27864 Los archivos del tipo Entrada se pueden visualizar en LyX si la 
27865 \family sans
27866 Vista\InsetSpace ~
27867 preliminar\InsetSpace ~
27868 inmediata 
27869 \family default
27870 está activada en el diálogo 
27871 \family sans
27872 Herramientas\SpecialChar \menuseparator
27873 Preferencias
27874 \family default
27875 , apartado 
27876 \family sans
27877 Apariencia\SpecialChar \menuseparator
27878 Gráficos
27879 \family default
27880 .
27881 \end_layout
27882
27883 \begin_layout Itemize
27884 No se puede utilizar el comando LaTeX 
27885 \series bold
27886
27887 \backslash
27888 includeonly
27889 \series default
27890 .
27891 \end_layout
27892
27893 \end_deeper
27894 \begin_layout Standard
27895 Aquí hay un documento hijo insertado con el método 
27896 \family sans
27897 Entrada
27898 \family default
27899 :
27900 \end_layout
27901
27902 \begin_layout Standard
27903 \begin_inset Include \input{DocumentoPostizo2.lyx}
27904 preview true
27905
27906 \end_inset
27907
27908
27909 \end_layout
27910
27911 \begin_layout Description
27912 Literal Con este método se puede incluir todo archivo de texto.
27913  El archivo aparece en la salida con su código fuente, y si contiene comandos
27914  no se ejecutan.
27915  Con la opción 
27916 \family sans
27917 Marcar espacios en la salida
27918 \family default
27919  cada espacio en el código fuente se muestra en la salida con el carácter
27920  
27921 \begin_inset Quotes eld
27922 \end_inset
27923
27924
27925 \begin_inset ERT
27926 status open
27927
27928 \begin_layout Standard
27929
27930
27931 \backslash
27932 textvisiblespace
27933 \end_layout
27934
27935 \end_inset
27936
27937
27938 \begin_inset Quotes erd
27939 \end_inset
27940
27941 .
27942  La diferencia con el método de inserción mediante el menú 
27943 \family sans
27944 Insertar
27945 \family default
27946 \SpecialChar \menuseparator
27947
27948 \family sans
27949 Archivo
27950 \family default
27951 \SpecialChar \menuseparator
27952
27953 \family sans
27954 Texto\InsetSpace ~
27955 simple
27956 \family default
27957  es que en este caso el contenido del archivo se ve en LyX, mientras que
27958  en modo 
27959 \family sans
27960 Literal 
27961 \family default
27962 no se muestra el contenido, sino un recuadro con el nombre.
27963
27964 \family sans
27965  
27966 \end_layout
27967
27968 \begin_layout Standard
27969 Aquí se inserta un documento hijo en modo Literal:
27970 \begin_inset Include \verbatiminput{DocumentoTextoPostizo.txt}
27971 preview false
27972
27973 \end_inset
27974
27975
27976 \begin_inset VSpace bigskip
27977 \end_inset
27978
27979
27980 \end_layout
27981
27982 \begin_layout Standard
27983 Aquí se inserta un documento hijo en modo Literal con la opción 
27984 \family sans
27985 Marcar espacios en la salida
27986 \family default
27987 :
27988 \begin_inset Include \verbatiminput*{DocumentoTextoPostizo.txt}
27989 preview false
27990
27991 \end_inset
27992
27993
27994 \begin_inset VSpace bigskip
27995 \end_inset
27996
27997
27998 \end_layout
27999
28000 \begin_layout Standard
28001 \begin_inset Note Greyedout
28002 status open
28003
28004 \begin_layout Standard
28005
28006 \series bold
28007 Nota:
28008 \series default
28009  Como puedes ver en los ejemplos anteriores, el texto de los documentos
28010  incluidos en modo literal no contiene saltos de línea, a no ser que se
28011  incluyan expresamente en el archivo de texto.
28012 \end_layout
28013
28014 \end_inset
28015
28016
28017 \end_layout
28018
28019 \begin_layout Standard
28020 \begin_inset Note Greyedout
28021 status collapsed
28022
28023 \begin_layout Standard
28024
28025 \series bold
28026 Nota:
28027 \series default
28028  Incluir el mismo documento dos veces  con métodos diferentes podría causar
28029  problemas en LaTeX.
28030 \end_layout
28031
28032 \end_inset
28033
28034
28035 \end_layout
28036
28037 \begin_layout Standard
28038
28039 \newpage
28040
28041 \end_layout
28042
28043 \begin_layout Chapter
28044 \start_of_appendix
28045 Unidades disponibles en 
28046 \begin_inset ERT
28047 status collapsed
28048
28049 \begin_layout Standard
28050
28051
28052 \backslash
28053 texorpdfstring{
28054 \end_layout
28055
28056 \end_inset
28057
28058 LyX
28059 \begin_inset ERT
28060 status collapsed
28061
28062 \begin_layout Standard
28063
28064 }{LyX}
28065 \end_layout
28066
28067 \end_inset
28068
28069
28070 \begin_inset LatexCommand index
28071 name "Unidades"
28072
28073 \end_inset
28074
28075
28076 \begin_inset LatexCommand label
28077 name "cha:Unidades-disponibles-en"
28078
28079 \end_inset
28080
28081
28082 \begin_inset Note Note
28083 status collapsed
28084
28085 \begin_layout Standard
28086 El comando 
28087 \backslash
28088 texorpdfstring suministrado por el paquete LaTeX hyperref impide que los
28089  enlaces se muestren erróneamente en los marcadores PDF.
28090  Más información en 
28091 \begin_inset LatexCommand cite
28092 key "hyperref"
28093
28094 \end_inset
28095
28096 .
28097 \end_layout
28098
28099 \end_inset
28100
28101
28102 \end_layout
28103
28104 \begin_layout Standard
28105 Para comprender las unidades utilizadas en este manual, el cuadro\InsetSpace ~
28106
28107 \begin_inset LatexCommand ref
28108 reference "tab:Unidades"
28109
28110 \end_inset
28111
28112  describe todas las unidades disponibles en LyX.
28113 \end_layout
28114
28115 \begin_layout Standard
28116 \begin_inset Float table
28117 placement h
28118 wide false
28119 sideways false
28120 status open
28121
28122 \begin_layout Standard
28123 \begin_inset Caption
28124
28125 \begin_layout Standard
28126 \begin_inset LatexCommand label
28127 name "tab:Unidades"
28128
28129 \end_inset
28130
28131 Unidades
28132 \end_layout
28133
28134 \end_inset
28135
28136
28137 \end_layout
28138
28139 \begin_layout Standard
28140 \begin_inset VSpace medskip
28141 \end_inset
28142
28143
28144 \end_layout
28145
28146 \begin_layout Standard
28147 \align center
28148 \begin_inset Tabular
28149 <lyxtabular version="3" rows="20" columns="2">
28150 <features>
28151 <column alignment="center" valignment="top" leftline="true" width="0">
28152 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
28153 <row topline="true" bottomline="true">
28154 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28155 \begin_inset Text
28156
28157 \begin_layout Standard
28158 unidad
28159 \end_layout
28160
28161 \end_inset
28162 </cell>
28163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28164 \begin_inset Text
28165
28166 \begin_layout Standard
28167 nombre/descripción
28168 \end_layout
28169
28170 \end_inset
28171 </cell>
28172 </row>
28173 <row topline="true">
28174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28175 \begin_inset Text
28176
28177 \begin_layout Standard
28178 mm
28179 \end_layout
28180
28181 \end_inset
28182 </cell>
28183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28184 \begin_inset Text
28185
28186 \begin_layout Standard
28187 milímetro
28188 \end_layout
28189
28190 \end_inset
28191 </cell>
28192 </row>
28193 <row topline="true">
28194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28195 \begin_inset Text
28196
28197 \begin_layout Standard
28198 cm
28199 \end_layout
28200
28201 \end_inset
28202 </cell>
28203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28204 \begin_inset Text
28205
28206 \begin_layout Standard
28207 centímetro
28208 \end_layout
28209
28210 \end_inset
28211 </cell>
28212 </row>
28213 <row topline="true">
28214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28215 \begin_inset Text
28216
28217 \begin_layout Standard
28218 in
28219 \end_layout
28220
28221 \end_inset
28222 </cell>
28223 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28224 \begin_inset Text
28225
28226 \begin_layout Standard
28227 pulgada
28228 \end_layout
28229
28230 \end_inset
28231 </cell>
28232 </row>
28233 <row topline="true">
28234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28235 \begin_inset Text
28236
28237 \begin_layout Standard
28238 pt
28239 \end_layout
28240
28241 \end_inset
28242 </cell>
28243 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28244 \begin_inset Text
28245
28246 \begin_layout Standard
28247 punto (72.27\InsetSpace \thinspace{}
28248 pt = 1\InsetSpace \thinspace{}
28249 in)
28250 \end_layout
28251
28252 \end_inset
28253 </cell>
28254 </row>
28255 <row topline="true">
28256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28257 \begin_inset Text
28258
28259 \begin_layout Standard
28260 pc
28261 \end_layout
28262
28263 \end_inset
28264 </cell>
28265 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28266 \begin_inset Text
28267
28268 \begin_layout Standard
28269 pica (1\InsetSpace \thinspace{}
28270 pc = 12\InsetSpace \thinspace{}
28271 pt)
28272 \end_layout
28273
28274 \end_inset
28275 </cell>
28276 </row>
28277 <row topline="true">
28278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28279 \begin_inset Text
28280
28281 \begin_layout Standard
28282 sp
28283 \end_layout
28284
28285 \end_inset
28286 </cell>
28287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28288 \begin_inset Text
28289
28290 \begin_layout Standard
28291 punto escalado (65536\InsetSpace \thinspace{}
28292 sp = 1\InsetSpace \thinspace{}
28293 pt)
28294 \end_layout
28295
28296 \end_inset
28297 </cell>
28298 </row>
28299 <row topline="true">
28300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28301 \begin_inset Text
28302
28303 \begin_layout Standard
28304 bp
28305 \end_layout
28306
28307 \end_inset
28308 </cell>
28309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28310 \begin_inset Text
28311
28312 \begin_layout Standard
28313 punto grande (72\InsetSpace \thinspace{}
28314 bp = 1\InsetSpace \thinspace{}
28315 in)
28316 \end_layout
28317
28318 \end_inset
28319 </cell>
28320 </row>
28321 <row topline="true">
28322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28323 \begin_inset Text
28324
28325 \begin_layout Standard
28326 dd
28327 \end_layout
28328
28329 \end_inset
28330 </cell>
28331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28332 \begin_inset Text
28333
28334 \begin_layout Standard
28335 didot (72\InsetSpace \thinspace{}
28336 dd 
28337 \begin_inset Formula $\approx$
28338 \end_inset
28339
28340  37.6\InsetSpace \thinspace{}
28341 mm)
28342 \end_layout
28343
28344 \end_inset
28345 </cell>
28346 </row>
28347 <row topline="true">
28348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28349 \begin_inset Text
28350
28351 \begin_layout Standard
28352 cc
28353 \end_layout
28354
28355 \end_inset
28356 </cell>
28357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28358 \begin_inset Text
28359
28360 \begin_layout Standard
28361 cicero (1\InsetSpace \thinspace{}
28362 cc = 12\InsetSpace \thinspace{}
28363 dd)
28364 \end_layout
28365
28366 \end_inset
28367 </cell>
28368 </row>
28369 <row topline="true">
28370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28371 \begin_inset Text
28372
28373 \begin_layout Standard
28374 Scale%
28375 \end_layout
28376
28377 \end_inset
28378 </cell>
28379 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28380 \begin_inset Text
28381
28382 \begin_layout Standard
28383 % de anchura original de la imagen
28384 \end_layout
28385
28386 \end_inset
28387 </cell>
28388 </row>
28389 <row topline="true">
28390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28391 \begin_inset Text
28392
28393 \begin_layout Standard
28394 text%
28395 \end_layout
28396
28397 \end_inset
28398 </cell>
28399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28400 \begin_inset Text
28401
28402 \begin_layout Standard
28403 % de anchura de texto
28404 \end_layout
28405
28406 \end_inset
28407 </cell>
28408 </row>
28409 <row topline="true">
28410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28411 \begin_inset Text
28412
28413 \begin_layout Standard
28414 col%
28415 \end_layout
28416
28417 \end_inset
28418 </cell>
28419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28420 \begin_inset Text
28421
28422 \begin_layout Standard
28423 % de anchura de columna
28424 \end_layout
28425
28426 \end_inset
28427 </cell>
28428 </row>
28429 <row topline="true">
28430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28431 \begin_inset Text
28432
28433 \begin_layout Standard
28434 page%
28435 \end_layout
28436
28437 \end_inset
28438 </cell>
28439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28440 \begin_inset Text
28441
28442 \begin_layout Standard
28443 % de anchura de página
28444 \end_layout
28445
28446 \end_inset
28447 </cell>
28448 </row>
28449 <row topline="true">
28450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28451 \begin_inset Text
28452
28453 \begin_layout Standard
28454 line%
28455 \end_layout
28456
28457 \end_inset
28458 </cell>
28459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28460 \begin_inset Text
28461
28462 \begin_layout Standard
28463 % de anchura de línea
28464 \end_layout
28465
28466 \end_inset
28467 </cell>
28468 </row>
28469 <row topline="true">
28470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28471 \begin_inset Text
28472
28473 \begin_layout Standard
28474 theight%
28475 \end_layout
28476
28477 \end_inset
28478 </cell>
28479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28480 \begin_inset Text
28481
28482 \begin_layout Standard
28483 % de altura de texto
28484 \end_layout
28485
28486 \end_inset
28487 </cell>
28488 </row>
28489 <row topline="true">
28490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28491 \begin_inset Text
28492
28493 \begin_layout Standard
28494 pheight%
28495 \end_layout
28496
28497 \end_inset
28498 </cell>
28499 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28500 \begin_inset Text
28501
28502 \begin_layout Standard
28503 % de altura de página
28504 \end_layout
28505
28506 \end_inset
28507 </cell>
28508 </row>
28509 <row topline="true">
28510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28511 \begin_inset Text
28512
28513 \begin_layout Standard
28514 ex
28515 \end_layout
28516
28517 \end_inset
28518 </cell>
28519 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28520 \begin_inset Text
28521
28522 \begin_layout Standard
28523 altura de la letra 
28524 \emph on
28525 x
28526 \emph default
28527  en la fuente actual
28528 \end_layout
28529
28530 \end_inset
28531 </cell>
28532 </row>
28533 <row topline="true">
28534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28535 \begin_inset Text
28536
28537 \begin_layout Standard
28538 em
28539 \end_layout
28540
28541 \end_inset
28542 </cell>
28543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28544 \begin_inset Text
28545
28546 \begin_layout Standard
28547 anchura de la letra 
28548 \emph on
28549 M
28550 \emph default
28551  en la fuente actual
28552 \end_layout
28553
28554 \end_inset
28555 </cell>
28556 </row>
28557 <row topline="true" bottomline="true">
28558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28559 \begin_inset Text
28560
28561 \begin_layout Standard
28562 mu
28563 \end_layout
28564
28565 \end_inset
28566 </cell>
28567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28568 \begin_inset Text
28569
28570 \begin_layout Standard
28571 unidad matemática (1\InsetSpace \thinspace{}
28572 mu = 1/18\InsetSpace \thinspace{}
28573 em)
28574 \end_layout
28575
28576 \end_inset
28577 </cell>
28578 </row>
28579 </lyxtabular>
28580
28581 \end_inset
28582
28583
28584 \end_layout
28585
28586 \end_inset
28587
28588
28589 \end_layout
28590
28591 \begin_layout Chapter
28592 Formatos de Archivos de Salida con Gráficos
28593 \begin_inset LatexCommand label
28594 name "cha:Formatos-de-Archivos-de-Salida"
28595
28596 \end_inset
28597
28598
28599 \end_layout
28600
28601 \begin_layout Section
28602 DVI
28603 \begin_inset LatexCommand index
28604 name "Formatos de Archivo ! DVI"
28605
28606 \end_inset
28607
28608
28609 \begin_inset LatexCommand index
28610 name "DVI|see{Formatos de Archivo}"
28611
28612 \end_inset
28613
28614
28615 \end_layout
28616
28617 \begin_layout Standard
28618 Este tipo de archivo tiene la extensión 
28619 \begin_inset Quotes eld
28620 \end_inset
28621
28622
28623 \family typewriter
28624 .dvi
28625 \family default
28626
28627 \begin_inset Quotes erd
28628 \end_inset
28629
28630 .
28631  Se denomina 
28632 \begin_inset Quotes eld
28633 \end_inset
28634
28635 device-independent
28636 \begin_inset Quotes erd
28637 \end_inset
28638
28639  (DVI), porque es completamente portable; se pueden mover de una máquina
28640  a otra sin necesidad de conversión alguna.
28641  En la época en que se desarrolló este formato, esto no era un asunto baladí.
28642  Los DVIs se usan para previsualizaciones rápidas y como preparación para
28643  otros formatos de salida como PostScript.
28644 \end_layout
28645
28646 \begin_layout Standard
28647 \begin_inset Note Greyedout
28648 status open
28649
28650 \begin_layout Standard
28651
28652 \series bold
28653 Nota:
28654 \series default
28655  Los archivos DVI no contienen imágenes, sino enlaces a ellas.
28656 \end_layout
28657
28658 \end_inset
28659
28660  Por tanto no debes olvidar esto si mueves archivos 
28661 \family typewriter
28662 .dvi
28663 \family default
28664  a otro ordenador.
28665  Esta característica también puede retardar la visualización del archivo,
28666  porque el visor DVI tiene que convertir la imagen en segundo plano para
28667  hacerla visible al deslizar el visor.
28668  Así pues recomendamos usar PDF para archivos con muchas imágenes.
28669 \end_layout
28670
28671 \begin_layout Standard
28672 Un documento se exporta a DVI con el menú 
28673 \family sans
28674 Archivo\SpecialChar \menuseparator
28675 Exportar\SpecialChar \menuseparator
28676 DVI
28677 \family default
28678 .
28679  Puedes ver la salida del documento en DVI con el menú 
28680 \family sans
28681 Ver\SpecialChar \menuseparator
28682 DVI 
28683 \family default
28684 o con el botón\InsetSpace ~
28685
28686 \begin_inset Graphics
28687         filename ../../images/buffer-view_dvi.xpm
28688         scale 85
28689
28690 \end_inset
28691
28692 .
28693 \end_layout
28694
28695 \begin_layout Section
28696 PostScript
28697 \begin_inset LatexCommand label
28698 name "sec:PostScript"
28699
28700 \end_inset
28701
28702
28703 \begin_inset LatexCommand index
28704 name "Formatos de Archivo ! PostScript"
28705
28706 \end_inset
28707
28708
28709 \begin_inset LatexCommand index
28710 name "PostScript|see{Formatos de Archivo}"
28711
28712 \end_inset
28713
28714
28715 \end_layout
28716
28717 \begin_layout Standard
28718 Este tipo de archivo tiene la extensión 
28719 \begin_inset Quotes eld
28720 \end_inset
28721
28722
28723 \family typewriter
28724 .ps
28725 \family default
28726
28727 \begin_inset Quotes erd
28728 \end_inset
28729
28730 .
28731  PostScript fue desarrollado por la compañía 
28732 \family typewriter
28733 Adobe
28734 \family default
28735  como lenguaje para impresoras.
28736  Por eso estos archivos contienen comandos que usa la impresora para imprimirlos.
28737  PostScript puede considerarse como un 
28738 \begin_inset Quotes eld
28739 \end_inset
28740
28741 lenguaje de programación
28742 \begin_inset Quotes erd
28743 \end_inset
28744
28745 ; con él puedes calcular y dibujar imágenes y diagramas
28746 \begin_inset Foot
28747 status collapsed
28748
28749 \begin_layout Standard
28750 Si estás interesado en este tema acude al paquete LaTeX 
28751 \series bold
28752 PSTricks
28753 \series default
28754  
28755 \begin_inset LatexCommand cite
28756 key "pstricks"
28757
28758 \end_inset
28759
28760 .
28761 \end_layout
28762
28763 \end_inset
28764
28765 .
28766  Por esto los archivos suelen ser más grandes que los PDFs.
28767 \end_layout
28768
28769 \begin_layout Standard
28770 Los archivos PostScript solo pueden contener imágenes en el formato 
28771 \begin_inset Quotes eld
28772 \end_inset
28773
28774 Encapsulated PostScript
28775 \begin_inset Quotes erd
28776 \end_inset
28777
28778  (EPS, extensión 
28779 \begin_inset Quotes eld
28780 \end_inset
28781
28782
28783 \family typewriter
28784 .eps
28785 \family default
28786
28787 \begin_inset Quotes erd
28788 \end_inset
28789
28790 ).
28791  Como LyX permite usar cualquier formato de imagen conocido, tiene que trabajar
28792  en segundo plano para convertir las imágenes a EPS.
28793  Si por ejemplo, el documento tiene 50 imágenes, LyX ha de hacer 50 conversiones
28794  cada vez que veas o exportes el documento.
28795  Esto ralentizará mucho el trabajo, así que si piensas usar PostScript,
28796  puedes evitar el problema insertando las imágenes directamente en EPS.
28797 \end_layout
28798
28799 \begin_layout Standard
28800 El documento se puede exportar a PostScript con el menú 
28801 \family sans
28802 Archivo\SpecialChar \menuseparator
28803 Exportar\SpecialChar \menuseparator
28804 Postscript
28805 \family default
28806 .
28807  Se puede ver la salida en PostScript con el menú 
28808 \family sans
28809 Ver\SpecialChar \menuseparator
28810 Postscript 
28811 \family default
28812 o con el botón\InsetSpace ~
28813
28814 \begin_inset Graphics
28815         filename ../../images/buffer-view_ps.xpm
28816
28817 \end_inset
28818
28819 .
28820 \end_layout
28821
28822 \begin_layout Section
28823 PDF
28824 \begin_inset LatexCommand label
28825 name "sec:PDF"
28826
28827 \end_inset
28828
28829
28830 \begin_inset LatexCommand index
28831 name "Formatos de Archivo ! PDF"
28832
28833 \end_inset
28834
28835
28836 \begin_inset LatexCommand index
28837 name "PDF"
28838
28839 \end_inset
28840
28841
28842 \end_layout
28843
28844 \begin_layout Standard
28845 Este tipo de archivo tiene la extensión 
28846 \begin_inset Quotes eld
28847 \end_inset
28848
28849
28850 \family typewriter
28851 .pdf
28852 \family default
28853
28854 \begin_inset Quotes erd
28855 \end_inset
28856
28857 .
28858  El formato 
28859 \begin_inset Quotes eld
28860 \end_inset
28861
28862 Portable Document Format
28863 \begin_inset Quotes erd
28864 \end_inset
28865
28866  (PDF) fue desarrollado por 
28867 \family typewriter
28868 Adobe
28869 \family default
28870  como derivado de PostScript.
28871  Es más comprimido y utiliza muchos menos comandos que PostScript.
28872  Como su nombre 
28873 \begin_inset Quotes eld
28874 \end_inset
28875
28876 portable
28877 \begin_inset Quotes erd
28878 \end_inset
28879
28880  indica, puede ser procesado por cualquier sistema operativo y la salida
28881  impresa se muestra exactamente igual.
28882 \end_layout
28883
28884 \begin_layout Standard
28885 PDF puede contener imágenes en su propio formato PDF, en el formato 
28886 \begin_inset Quotes eld
28887 \end_inset
28888
28889 Joint Photographic Experts Group
28890 \begin_inset Quotes erd
28891 \end_inset
28892
28893  (JPG, extensión 
28894 \begin_inset Quotes eld
28895 \end_inset
28896
28897
28898 \family typewriter
28899 .jpg
28900 \family default
28901
28902 \begin_inset Quotes erd
28903 \end_inset
28904
28905  o 
28906 \begin_inset Quotes eld
28907 \end_inset
28908
28909
28910 \family typewriter
28911 .jpeg
28912 \family default
28913
28914 \begin_inset Quotes erd
28915 \end_inset
28916
28917 ), y en el formato 
28918 \begin_inset Quotes eld
28919 \end_inset
28920
28921 Portable Network Graphics
28922 \begin_inset Quotes erd
28923 \end_inset
28924
28925  (PNG, extensión 
28926 \begin_inset Quotes eld
28927 \end_inset
28928
28929
28930 \family typewriter
28931 .png
28932 \family default
28933
28934 \begin_inset Quotes erd
28935 \end_inset
28936
28937 ).
28938  Aunque puedes poner cualquier otro formato de imagen, porque LyX los convierte
28939  en segundo plano a alguno de los anteriores.
28940  Pero como se ha comentado en la sección sobre PostScript, la conversión
28941  de gráficos ralentiza el trabajo.
28942  Por tanto se recomienda utilizar alguno de los tres formatos de imagen
28943  mencionados.
28944 \end_layout
28945
28946 \begin_layout Standard
28947 Un documento se puede exportar a PDF con el menú 
28948 \family sans
28949 Archivo\SpecialChar \menuseparator
28950 Exportar
28951 \family default
28952  en tres modos diferentes:
28953 \end_layout
28954
28955 \begin_layout Description
28956 PDF Este utiliza el programa 
28957 \family typewriter
28958 ps2pdf
28959 \family default
28960  que crea un PDF a partir de una versión PostScript del archivo.
28961  La versión PostScript es producida por el programa 
28962 \family typewriter
28963 dvips
28964 \family default
28965  que usa una versión DVI como paso intermedio.
28966  Así que este modo de exportación consta de tres conversiones.
28967 \end_layout
28968
28969 \begin_layout Description
28970 PDF\InsetSpace ~
28971 (dvipdfm) Este utiliza el programa 
28972 \family typewriter
28973 dvipdfm
28974 \family default
28975  que convierte el archivo a DVI en segundo plano y en un segundo paso a
28976  PDF.
28977 \end_layout
28978
28979 \begin_layout Description
28980 PDF\InsetSpace ~
28981 (pdflatex) Este utiliza el programa 
28982 \family typewriter
28983 pdftex
28984 \family default
28985  que convierte directamente el archivo a PDF.
28986 \end_layout
28987
28988 \begin_layout Standard
28989 Se recomienda usar 
28990 \family sans
28991 PDF\InsetSpace ~
28992 (pdflatex)
28993 \family default
28994  porque 
28995 \family typewriter
28996 pdftex
28997 \family default
28998  soporta todas las características de las versiones actuales de PDF, es
28999  rápido y estable.
29000  El programa 
29001 \family typewriter
29002 dvipdfm
29003 \family default
29004  ya no se desarrolla y está un poco obsoleto.
29005 \end_layout
29006
29007 \begin_layout Standard
29008 La salida en formato PDF se puede ver con el menú 
29009 \family sans
29010 Ver 
29011 \family default
29012 o con el botón\InsetSpace ~
29013
29014 \begin_inset Graphics
29015         filename ../../images/buffer-view_pdf2.xpm
29016         scale 85
29017
29018 \end_inset
29019
29020  (que usa 
29021 \family sans
29022 PDF\InsetSpace ~
29023 (pdflatex)
29024 \family default
29025 ).
29026 \end_layout
29027
29028 \begin_layout Chapter
29029 Explicación de la Ecuación\InsetSpace ~
29030
29031 \begin_inset LatexCommand eqref
29032 reference "eq:Wgn"
29033
29034 \end_inset
29035
29036
29037 \begin_inset LatexCommand label
29038 name "cha:Explicación-de-la-Ecuación"
29039
29040 \end_inset
29041
29042
29043 \end_layout
29044
29045 \begin_layout Standard
29046 La anchura total de 
29047 \emph on
29048 n
29049 \emph default
29050  celdas de una tabla 
29051 \begin_inset Formula $W_{\mathrm{tot\, n}}$
29052 \end_inset
29053
29054  puede calcularse con
29055 \end_layout
29056
29057 \begin_layout Standard
29058 \begin_inset Formula \begin{equation}
29059 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
29060
29061 \end_inset
29062
29063
29064 \end_layout
29065
29066 \begin_layout Standard
29067 donde 
29068 \begin_inset Formula $W_{g\, n}$
29069 \end_inset
29070
29071  es el ancho dado de todas las celdas.
29072  
29073 \series bold
29074
29075 \backslash
29076 tabcolsep
29077 \series default
29078  es la longitud LaTeX entre el texto y el borde de la celda, 6\InsetSpace \thinspace{}
29079 pt por defecto.
29080  
29081 \series bold
29082
29083 \backslash
29084 arrayrulewidth
29085 \series default
29086  es el grosor de línea del borde, 0.4\InsetSpace \thinspace{}
29087 pt por defecto.
29088 \end_layout
29089
29090 \begin_layout Standard
29091 Procediendo como en la ecuación\InsetSpace ~
29092
29093 \begin_inset LatexCommand eqref
29094 reference "eq:Wtot_n"
29095
29096 \end_inset
29097
29098 , el ancho total de una multicolumna, 
29099 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
29100 \end_inset
29101
29102  es
29103 \end_layout
29104
29105 \begin_layout Standard
29106 \begin_inset Formula \begin{equation}
29107 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
29108
29109 \end_inset
29110
29111
29112 \end_layout
29113
29114 \begin_layout Standard
29115 Igualando las ecuaciones\InsetSpace ~
29116
29117 \begin_inset LatexCommand eqref
29118 reference "eq:Wtot_n"
29119
29120 \end_inset
29121
29122  y 
29123 \begin_inset LatexCommand eqref
29124 reference "eq:Wtot_mult"
29125
29126 \end_inset
29127
29128  podemos calcular el ancho dado necesario 
29129 \begin_inset Formula $W_{g\, n}$
29130 \end_inset
29131
29132  cuando se expanden 
29133 \emph on
29134 n
29135 \emph default
29136  columnas, de forma que cada una de ellas tiene una anchura total  
29137 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
29138 \end_inset
29139
29140 :
29141 \end_layout
29142
29143 \begin_layout Standard
29144 \begin_inset Formula \begin{equation}
29145 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
29146
29147 \end_inset
29148
29149
29150 \end_layout
29151
29152 \begin_layout Bibliography
29153 \begin_inset LatexCommand bibitem
29154 key "latexcompanion"
29155
29156 \end_inset
29157
29158 Frank Mittelbach and Michel Goossens: 
29159 \emph on
29160 The LaTeX Companion Second Edition.
29161
29162 \emph default
29163  Addison-Wesley, 2004
29164 \end_layout
29165
29166 \begin_layout Bibliography
29167 \begin_inset LatexCommand bibitem
29168 key "latexguide"
29169
29170 \end_inset
29171
29172 Helmut Kopka and Patrick W.
29173  Daly: 
29174 \emph on
29175 A Guide to LaTeX Fourth Edition.
29176
29177 \emph default
29178  Addison-Wesley, 2003
29179 \end_layout
29180
29181 \begin_layout Bibliography
29182 \begin_inset LatexCommand bibitem
29183 key "latexbook"
29184
29185 \end_inset
29186
29187 Leslie Lamport: 
29188 \emph on
29189 LaTeX: A Document Preparation System.
29190
29191 \emph default
29192  Addison-Wesley, second edition, 1994
29193 \end_layout
29194
29195 \begin_layout Bibliography
29196 \begin_inset LatexCommand bibitem
29197 key "booktabs"
29198
29199 \end_inset
29200
29201
29202 \begin_inset ERT
29203 status collapsed
29204
29205 \begin_layout Standard
29206
29207
29208 \backslash
29209 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
29210 {
29211 \end_layout
29212
29213 \end_inset
29214
29215 Documentación
29216 \begin_inset ERT
29217 status collapsed
29218
29219 \begin_layout Standard
29220
29221 }
29222 \end_layout
29223
29224 \end_inset
29225
29226  del paquete LaTeX 
29227 \series bold
29228 booktabs
29229 \series default
29230
29231 \begin_inset LatexCommand index
29232 name "LaTeX-paquetes ! booktabs"
29233
29234 \end_inset
29235
29236
29237 \end_layout
29238
29239 \begin_layout Bibliography
29240 \begin_inset LatexCommand bibitem
29241 key "caption"
29242
29243 \end_inset
29244
29245
29246 \begin_inset ERT
29247 status collapsed
29248
29249 \begin_layout Standard
29250
29251
29252 \backslash
29253 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
29254 \end_layout
29255
29256 \end_inset
29257
29258 Documentación
29259 \begin_inset ERT
29260 status collapsed
29261
29262 \begin_layout Standard
29263
29264 }
29265 \end_layout
29266
29267 \end_inset
29268
29269  del paquete LaTeX 
29270 \series bold
29271 caption
29272 \series default
29273
29274 \begin_inset LatexCommand index
29275 name "LaTeX-paquetes ! caption"
29276
29277 \end_inset
29278
29279
29280 \end_layout
29281
29282 \begin_layout Bibliography
29283 \begin_inset LatexCommand bibitem
29284 key "caption-de"
29285
29286 \end_inset
29287
29288
29289 \begin_inset ERT
29290 status collapsed
29291
29292 \begin_layout Standard
29293
29294
29295 \backslash
29296 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
29297 {
29298 \end_layout
29299
29300 \end_inset
29301
29302 Documentación
29303 \begin_inset ERT
29304 status collapsed
29305
29306 \begin_layout Standard
29307
29308 }
29309 \end_layout
29310
29311 \end_inset
29312
29313  del paquete LaTeX 
29314 \series bold
29315 caption 
29316 \series default
29317 (en alemán)
29318 \end_layout
29319
29320 \begin_layout Bibliography
29321 \begin_inset LatexCommand bibitem
29322 key "endfloat"
29323
29324 \end_inset
29325
29326
29327 \begin_inset ERT
29328 status collapsed
29329
29330 \begin_layout Standard
29331
29332
29333 \backslash
29334 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
29335 {
29336 \end_layout
29337
29338 \end_inset
29339
29340 Documentación
29341 \begin_inset ERT
29342 status collapsed
29343
29344 \begin_layout Standard
29345
29346 }
29347 \end_layout
29348
29349 \end_inset
29350
29351  del paquete LaTeX 
29352 \series bold
29353 endf\SpecialChar \textcompwordmark{}
29354 loat
29355 \series default
29356
29357 \begin_inset LatexCommand index
29358 name "LaTeX-paquetes ! endfloat"
29359
29360 \end_inset
29361
29362
29363 \end_layout
29364
29365 \begin_layout Bibliography
29366 \begin_inset LatexCommand bibitem
29367 key "floatflt"
29368
29369 \end_inset
29370
29371
29372 \begin_inset ERT
29373 status collapsed
29374
29375 \begin_layout Standard
29376
29377
29378 \backslash
29379 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
29380 {
29381 \end_layout
29382
29383 \end_inset
29384
29385 Documentación
29386 \begin_inset ERT
29387 status collapsed
29388
29389 \begin_layout Standard
29390
29391 }
29392 \end_layout
29393
29394 \end_inset
29395
29396  del paquete LaTeX 
29397 \series bold
29398 floatf\SpecialChar \textcompwordmark{}
29399 lt
29400 \series default
29401
29402 \begin_inset LatexCommand index
29403 name "LaTeX-paquetes ! floatflt"
29404
29405 \end_inset
29406
29407
29408 \end_layout
29409
29410 \begin_layout Bibliography
29411 \begin_inset LatexCommand bibitem
29412 key "footmisc"
29413
29414 \end_inset
29415
29416
29417 \begin_inset ERT
29418 status collapsed
29419
29420 \begin_layout Standard
29421
29422
29423 \backslash
29424 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
29425 {
29426 \end_layout
29427
29428 \end_inset
29429
29430 Documentación
29431 \begin_inset ERT
29432 status collapsed
29433
29434 \begin_layout Standard
29435
29436 }
29437 \end_layout
29438
29439 \end_inset
29440
29441  del paquete LaTeX 
29442 \series bold
29443 footmisc
29444 \series default
29445
29446 \begin_inset LatexCommand index
29447 name "LaTeX-paquetes ! footmisc"
29448
29449 \end_inset
29450
29451
29452 \end_layout
29453
29454 \begin_layout Bibliography
29455 \begin_inset LatexCommand bibitem
29456 key "hypcap"
29457
29458 \end_inset
29459
29460
29461 \begin_inset ERT
29462 status collapsed
29463
29464 \begin_layout Standard
29465
29466
29467 \backslash
29468 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
29469 \end_layout
29470
29471 \end_inset
29472
29473 Documentación
29474 \begin_inset ERT
29475 status collapsed
29476
29477 \begin_layout Standard
29478
29479 }
29480 \end_layout
29481
29482 \end_inset
29483
29484  del paquete LaTeX 
29485 \series bold
29486 hypcap
29487 \series default
29488
29489 \begin_inset LatexCommand index
29490 name "LaTeX-paquetes ! hyperref"
29491
29492 \end_inset
29493
29494
29495 \end_layout
29496
29497 \begin_layout Bibliography
29498 \begin_inset LatexCommand bibitem
29499 key "hyperref"
29500
29501 \end_inset
29502
29503
29504 \begin_inset ERT
29505 status collapsed
29506
29507 \begin_layout Standard
29508
29509
29510 \backslash
29511 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
29512 {
29513 \end_layout
29514
29515 \end_inset
29516
29517 Documentación
29518 \begin_inset ERT
29519 status collapsed
29520
29521 \begin_layout Standard
29522
29523 }
29524 \end_layout
29525
29526 \end_inset
29527
29528  del paquete LaTeX 
29529 \series bold
29530 hyperref
29531 \series default
29532
29533 \begin_inset LatexCommand index
29534 name "LaTeX-paquetes ! hyperref"
29535
29536 \end_inset
29537
29538
29539 \end_layout
29540
29541 \begin_layout Bibliography
29542 \begin_inset LatexCommand bibitem
29543 key "koma-script"
29544
29545 \end_inset
29546
29547
29548 \begin_inset ERT
29549 status collapsed
29550
29551 \begin_layout Standard
29552
29553
29554 \backslash
29555 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
29556 df}{
29557 \end_layout
29558
29559 \end_inset
29560
29561 Documentación
29562 \begin_inset ERT
29563 status collapsed
29564
29565 \begin_layout Standard
29566
29567 }
29568 \end_layout
29569
29570 \end_inset
29571
29572  del paquete LaTeX 
29573 \series bold
29574 koma-script
29575 \series default
29576
29577 \begin_inset LatexCommand index
29578 name "LaTeX-paquetes ! koma-script"
29579
29580 \end_inset
29581
29582
29583 \end_layout
29584
29585 \begin_layout Bibliography
29586 \begin_inset LatexCommand bibitem
29587 key "koma-script-de"
29588
29589 \end_inset
29590
29591
29592 \begin_inset ERT
29593 status collapsed
29594
29595 \begin_layout Standard
29596
29597
29598 \backslash
29599 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
29600 df}{
29601 \end_layout
29602
29603 \end_inset
29604
29605 Documentación
29606 \begin_inset ERT
29607 status collapsed
29608
29609 \begin_layout Standard
29610
29611 }
29612 \end_layout
29613
29614 \end_inset
29615
29616  del paquete LaTeX 
29617 \series bold
29618 koma-script
29619 \series default
29620
29621 \begin_inset LatexCommand index
29622 name "LaTeX-paquetes ! koma-script"
29623
29624 \end_inset
29625
29626  (en alemán)
29627 \end_layout
29628
29629 \begin_layout Bibliography
29630 \begin_inset LatexCommand bibitem
29631 key "marginnote"
29632
29633 \end_inset
29634
29635
29636 \begin_inset ERT
29637 status collapsed
29638
29639 \begin_layout Standard
29640
29641
29642 \backslash
29643 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
29644 pdf}{
29645 \end_layout
29646
29647 \end_inset
29648
29649 Documentación
29650 \begin_inset ERT
29651 status collapsed
29652
29653 \begin_layout Standard
29654
29655 }
29656 \end_layout
29657
29658 \end_inset
29659
29660  del paquete LaTeX 
29661 \series bold
29662 marginnote
29663 \series default
29664
29665 \begin_inset LatexCommand index
29666 name "LaTeX-paquetes ! marginnote"
29667
29668 \end_inset
29669
29670
29671 \end_layout
29672
29673 \begin_layout Bibliography
29674 \begin_inset LatexCommand bibitem
29675 key "pstricks"
29676
29677 \end_inset
29678
29679
29680 \begin_inset ERT
29681 status collapsed
29682
29683 \begin_layout Standard
29684
29685
29686 \backslash
29687 href{http://tug.org/PSTricks/main.cgi/}{
29688 \end_layout
29689
29690 \end_inset
29691
29692 Página Web
29693 \begin_inset ERT
29694 status collapsed
29695
29696 \begin_layout Standard
29697
29698 }
29699 \end_layout
29700
29701 \end_inset
29702
29703  del paquete LaTeX 
29704 \series bold
29705 PSTricks
29706 \series default
29707
29708 \begin_inset LatexCommand index
29709 name "LaTeX-paquetes ! PSTricks"
29710
29711 \end_inset
29712
29713
29714 \end_layout
29715
29716 \begin_layout Bibliography
29717 \begin_inset LatexCommand bibitem
29718 key "sidecap"
29719
29720 \end_inset
29721
29722
29723 \begin_inset ERT
29724 status collapsed
29725
29726 \begin_layout Standard
29727
29728
29729 \backslash
29730 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
29731 \end_layout
29732
29733 \end_inset
29734
29735 Documentación
29736 \begin_inset ERT
29737 status collapsed
29738
29739 \begin_layout Standard
29740
29741 }
29742 \end_layout
29743
29744 \end_inset
29745
29746  del paquete LaTeX 
29747 \series bold
29748 sidecap
29749 \series default
29750
29751 \begin_inset LatexCommand index
29752 name "LaTeX-paquetes ! sidecap"
29753
29754 \end_inset
29755
29756
29757 \end_layout
29758
29759 \begin_layout Bibliography
29760 \begin_inset LatexCommand bibitem
29761 key "NewInLyX15"
29762
29763 \end_inset
29764
29765
29766 \begin_inset ERT
29767 status collapsed
29768
29769 \begin_layout Standard
29770
29771
29772 \backslash
29773 href{http://wiki.lyx.org/LyX/NewInLyX15}{
29774 \end_layout
29775
29776 \end_inset
29777
29778 Página Wiki
29779 \begin_inset ERT
29780 status collapsed
29781
29782 \begin_layout Standard
29783
29784 }
29785 \end_layout
29786
29787 \end_inset
29788
29789  sobre características nuevas previstas para la versión 
29790 \family sans
29791 LyX\InsetSpace ~
29792 1.5
29793 \family default
29794 .
29795 \end_layout
29796
29797 \begin_layout Standard
29798 \begin_inset LatexCommand printindex
29799
29800 \end_inset
29801
29802
29803 \end_layout
29804
29805 \begin_layout Standard
29806 \begin_inset FloatList figure
29807
29808 \end_inset
29809
29810
29811 \end_layout
29812
29813 \begin_layout Standard
29814 \begin_inset FloatList table
29815
29816 \end_inset
29817
29818
29819 \end_layout
29820
29821 \end_body
29822 \end_document