]> git.lyx.org Git - features.git/blob - lib/doc/es/EmbeddedObjects.lyx
3512e217084c7e65023f076de9671cbf3e0a9ec6
[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 267
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 "Uwe Stöhr" 
209 \end_header
210
211 \begin_body
212
213 \begin_layout Title
214 Manual detallado de Figuras, Tablas, Flotantes, Notas, Cuadros y Archivos
215  en LyX
216 \end_layout
217
218 \begin_layout Author
219 por el Equipo LyX
220 \begin_inset Foot
221 status collapsed
222
223 \begin_layout Standard
224 \noindent
225 Si tienes comentarios o correcciones, por favor, envíalo a la lista de correo
226  de Documentación de LyX: 
227 \family typewriter
228
229 \begin_inset ERT
230 status collapsed
231
232 \begin_layout Standard
233
234
235 \backslash
236 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's es-ExtendedInsets manual}{
237 \end_layout
238
239 \end_inset
240
241 lyx-docs@lists.lyx.org
242 \begin_inset ERT
243 status collapsed
244
245 \begin_layout Standard
246
247 }
248 \end_layout
249
250 \end_inset
251
252
253 \end_layout
254
255 \end_inset
256
257
258 \begin_inset Note Note
259 status collapsed
260
261 \begin_layout Standard
262 autor original: Uwe Stöhr
263 \end_layout
264
265 \end_inset
266
267
268 \begin_inset Note Note
269 status collapsed
270
271 \begin_layout Standard
272 Traducción de: Ignacio García
273 \end_layout
274
275 \end_inset
276
277
278 \newline
279
280 \newline
281
282 \family sans
283 Versión 1.5.0-1
284 \end_layout
285
286 \begin_layout Standard
287 \begin_inset LatexCommand tableofcontents
288
289 \end_inset
290
291
292 \end_layout
293
294 \begin_layout Standard
295 \begin_inset Note Note
296 status open
297
298 \begin_layout Standard
299 Para exportar todas las partes de este documento a PDF, PS, o DVI, deben
300  estar instalados los paquetes LaTeX 
301 \series bold
302 arydshln
303 \series default
304  y 
305 \series bold
306 marginnote
307 \series default
308 .
309  Si no están instalados, también podrás exportar el documento, pero las
310  secciones en que dichos paquetes son necesarios no aparecen en la salida.
311 \end_layout
312
313 \begin_layout Standard
314 La última versión en PDF de este documento puede encontrarse aquí:
315 \series bold
316
317 \newline
318 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
319 \end_layout
320
321 \end_inset
322
323
324 \end_layout
325
326 \begin_layout Chapter
327 Figuras
328 \begin_inset LatexCommand label
329 name "cha:Figuras"
330
331 \end_inset
332
333
334 \begin_inset LatexCommand index
335 name "Figuras"
336
337 \end_inset
338
339
340 \begin_inset LatexCommand index
341 name "Gráficos|see{Figuras}"
342
343 \end_inset
344
345
346 \end_layout
347
348 \begin_layout Section
349 Diálogo Gráficos
350 \begin_inset LatexCommand label
351 name "sec:Diálogo-Gráficos"
352
353 \end_inset
354
355
356 \begin_inset LatexCommand index
357 name "Figuras ! Diálogo Gráficos"
358
359 \end_inset
360
361
362 \end_layout
363
364 \begin_layout Standard
365 Para insertar una imagen en un documento, sitúa el cursor en el lugar del
366  texto que desees y haz click en el icono 
367 \begin_inset Graphics
368         filename ../../images/dialog-show-new-inset_graphics.xpm
369         scale 85
370
371 \end_inset
372
373  o en el menú 
374 \family sans
375 Insertar\SpecialChar \menuseparator
376 Imagen\SpecialChar \ldots{}
377
378 \family default
379  Aparecerá un diálogo para escoger el archivo a cargar.
380  La imagen aparecerá en el archivo de salida exactamente en la misma posición
381  en la que la has colocado.
382 \end_layout
383
384 \begin_layout Standard
385 El diálogo Gráficos puede lanzarse en cualquier momento haciendo clic-derecha
386  sobre una imagen.
387  Este diálogo tiene tres pestañas:
388 \end_layout
389
390 \begin_layout Description
391 Gráficos Aquí puedes elegir tu archivo gráfico y ajustar separadamente su
392  presentación en LyX y en la salida.
393  En el apéndice\InsetSpace ~
394
395 \begin_inset LatexCommand ref
396 reference "cha:Unidades-disponibles-en"
397
398 \end_inset
399
400  se detallan las unidades disponibles para el tamaño del gráfico.
401 \newline
402 Puedes girar
403  los gráficos en el sentido de las agujas de reloj estableciendo un ángulo
404  y un origen de rotación.
405  La imagen también gira en LyX.
406 \newline
407 Las imágenes se pueden escalar mediante un
408  porcentaje o fijando explícitamente la altura y la anchura.
409  Si fijas solo la anchura o solo la altura, la otra dimensión se establece
410  automáticamente.
411  Si fijas ambas dimensiones
412 \family sans
413 ,
414 \family default
415  la imagen se adaptará a ellas, posiblemente distorsionada.
416  Para evitar distorsión en la imagen marca la opción 
417 \family sans
418 Mantener\InsetSpace ~
419 proporción
420 \family default
421 .
422  En ese caso la imagen será escalada de forma que su anchura y su altura
423  no excedan de las dimensiones especificadas.
424 \newline
425 Las imágenes se pueden abrir
426  con un programa de tu elección pulsando el botón 
427 \family sans
428 Editar
429 \family default
430 .
431  Los programas visor y editor para cada formato de imagen se pueden establecer
432  en la configuración de los formatos de archivo de las preferencias de LyX.
433 \end_layout
434
435 \begin_layout Description
436 Recorte Alternativamente al escalado, es posible establecer las coordenadas
437  de la imagen para ajustar su altura y anchura en la salida.
438  Además, las coordenadas se pueden calcular automáticamente pinchando el
439  botón 
440 \family sans
441 Obtener\InsetSpace ~
442 de\InsetSpace ~
443 archivo
444 \family default
445 .
446  El botón 
447 \family sans
448 Recortar\InsetSpace ~
449 al\InsetSpace ~
450 cuadro\InsetSpace ~
451 delimitador
452 \family default
453  imprimirá sólo la región de la imagen comprendida en las coordenadas introducid
454 as.
455  Normalmente no necesitarás preocuparte por esto y puedes ignorar esta solapa.
456 \end_layout
457
458 \begin_layout Description
459 Opciones\InsetSpace ~
460 extra En esta solapa puedes modificar la apariencia de la imagen
461  en LyX, y poner la imagen como subfigura de una figura flotante con su
462  propio título.Las subfiguras se explican en la sección\InsetSpace ~
463
464 \begin_inset LatexCommand ref
465 reference "sec:Figuras-Flotantes"
466
467 \end_inset
468
469 .
470 \newline
471 Los expertos en LaTeX pueden especificar aquí opciones LaTeX adicionales.
472 \newline
473 La
474  opción 
475 \family sans
476 Modo\InsetSpace ~
477 borrador
478 \family default
479  hace que en la salida se muestre sólo un marco con el tamaño de la imagen.
480 \newline
481 La
482  opción 
483 \family sans
484 No\InsetSpace ~
485 descomprimir\InsetSpace ~
486 al\InsetSpace ~
487 exportar
488 \family default
489  sólo afecta a los gráficos EPS comprimidos, p.\InsetSpace \thinspace{}
490 e.\InsetSpace ~
491
492 \emph on
493 x.eps.gz
494 \emph default
495 .
496  Si se usa esta opción, las imágenes no serán descomprimidas al exportar,
497  puesto que LaTeX puede manejarlas como están.
498 \newline
499 Los gráficos EPS comprimidos
500  sirven para ahorrar espacio de disco si se utiliza PostScript como formato
501  de salida, ver apéndice\InsetSpace ~
502
503 \begin_inset LatexCommand ref
504 reference "sec:PostScript"
505
506 \end_inset
507
508 .
509  Para comprimir gráficos EPS, usa los siguientes comandos en un UNIX-shell
510  o en consola de Windows:
511 \newline
512
513 \series bold
514 gzip x.eps
515 \series default
516
517 \newline
518
519 \series bold
520 zgrep %%Bounding x.eps.gz > x.eps.bb
521 \series default
522
523 \newline
524 El segundo comando crea un archivo de cuadro delimitador 
525 \begin_inset Quotes eld
526 \end_inset
527
528 x.eps.bb
529 \begin_inset Quotes erd
530 \end_inset
531
532  que necesita LaTeX para gráficos comprimidos.
533 \end_layout
534
535 \begin_layout Standard
536 \begin_inset VSpace bigskip
537 \end_inset
538
539
540 \end_layout
541
542 \begin_layout Standard
543 Esto es un ejemplo de imagen en formato EPS
544 \begin_inset Foot
545 status collapsed
546
547 \begin_layout Standard
548 Los formatos de imagen se explica en el sección\InsetSpace ~
549
550 \begin_inset LatexCommand ref
551 reference "sec:Formatos-de-imagen"
552
553 \end_inset
554
555 .
556 \end_layout
557
558 \end_inset
559
560  en un párrafo separado centrado horizontalmente:
561 \end_layout
562
563 \begin_layout Standard
564 \align center
565 \begin_inset Graphics
566         filename ../clipart/mobius.eps
567         display color
568         scale 70
569         rotateOrigin center
570
571 \end_inset
572
573
574 \end_layout
575
576 \begin_layout Standard
577 Esta es la misma imagen pero en modo borrador:
578 \end_layout
579
580 \begin_layout Standard
581 \align center
582 \begin_inset Graphics
583         filename ../clipart/mobius.eps
584         display color
585         scale 70
586         draft
587         rotateOrigin center
588
589 \end_inset
590
591
592 \end_layout
593
594 \begin_layout Section
595 Figuras Flotantes
596 \begin_inset LatexCommand label
597 name "sec:Figuras-Flotantes"
598
599 \end_inset
600
601
602 \begin_inset LatexCommand index
603 name "Flotantes ! Figuras Flotantes"
604
605 \end_inset
606
607
608 \begin_inset LatexCommand index
609 name "Figuras ! Flotantes"
610
611 \end_inset
612
613
614 \end_layout
615
616 \begin_layout Standard
617 Para información general sobre flotantes, echa una ojeada a la sección\InsetSpace ~
618
619 \begin_inset LatexCommand ref
620 reference "sec:IntroducciónFlotantes"
621
622 \end_inset
623
624 .
625 \end_layout
626
627 \begin_layout Standard
628 El botón 
629 \begin_inset Graphics
630         filename ../../images/float-insert_figure.xpm
631         scale 85
632
633 \end_inset
634
635  y el menú 
636 \family sans
637 Insertar\SpecialChar \menuseparator
638 Flotante\SpecialChar \menuseparator
639 Figura
640 \family default
641  insertan un flotante con la etiqueta 
642 \begin_inset Quotes eld
643 \end_inset
644
645 Figura #:
646 \begin_inset Quotes erd
647 \end_inset
648
649  (# es el número actual).
650  La imagen se puede insertar sobre el título, como en la figura\InsetSpace ~
651
652 \begin_inset LatexCommand ref
653 reference "fig:kill-plat"
654
655 \end_inset
656
657 , o bajo el título, como en la figura\InsetSpace ~
658
659 \begin_inset LatexCommand ref
660 reference "fig:escher"
661
662 \end_inset
663
664 .
665  Más información sobre ubicación de títulos en la sección\InsetSpace ~
666
667 \begin_inset LatexCommand ref
668 reference "sec:Colocación-de-Encabezados"
669
670 \end_inset
671
672 .
673 \end_layout
674
675 \begin_layout Standard
676 \begin_inset Float figure
677 wide false
678 sideways false
679 status collapsed
680
681 \begin_layout Standard
682 \align center
683 \begin_inset Graphics
684         filename ../clipart/platypus.eps
685         display color
686         width 50col%
687         rotateOrigin center
688
689 \end_inset
690
691
692 \end_layout
693
694 \begin_layout Standard
695 \begin_inset Caption
696
697 \begin_layout Standard
698 \begin_inset LatexCommand label
699 name "fig:kill-plat"
700
701 \end_inset
702
703 Un platypus muy distorsionado en un flotante.
704 \end_layout
705
706 \end_inset
707
708
709 \end_layout
710
711 \end_inset
712
713
714 \end_layout
715
716 \begin_layout Standard
717 \begin_inset Float figure
718 wide false
719 sideways false
720 status collapsed
721
722 \begin_layout Standard
723 \begin_inset Caption
724
725 \begin_layout Standard
726 \begin_inset LatexCommand label
727 name "fig:escher"
728
729 \end_inset
730
731 M.C.
732  Escher en ácido.
733 \end_layout
734
735 \end_inset
736
737
738 \end_layout
739
740 \begin_layout Standard
741 \align center
742 \begin_inset Graphics
743         filename ../clipart/escher-lsd.eps
744         display color
745         scale 80
746         rotateOrigin center
747
748 \end_inset
749
750
751 \end_layout
752
753 \end_inset
754
755
756 \end_layout
757
758 \begin_layout Standard
759 \begin_inset LatexCommand index
760 name "Referencias ! a Figuras"
761
762 \end_inset
763
764 Las figuras\InsetSpace ~
765
766 \begin_inset LatexCommand ref
767 reference "fig:kill-plat"
768
769 \end_inset
770
771  y 
772 \begin_inset LatexCommand ref
773 reference "fig:escher"
774
775 \end_inset
776
777  son ejemplos de figuras con referencias cruzadas.
778  Las figuras pueden tener referencias cruzadas en el documento mediante
779  referencia a su etiqueta.
780  Para hacerlo inserta una etiqueta en el encabezado usando el menú 
781 \family sans
782 Insertar\SpecialChar \menuseparator
783 Etiqueta
784 \family default
785  o el botón 
786 \begin_inset Graphics
787         filename ../../images/label-insert.xpm
788         scale 85
789
790 \end_inset
791
792 .
793  Ahora puedes referirte a la etiqueta usando el menú 
794 \family sans
795 Insertar\SpecialChar \menuseparator
796 Referencia\InsetSpace ~
797 cruzada
798 \family default
799  o el botón 
800 \begin_inset Graphics
801         filename ../../images/dialog-show-new-inset_ref.xpm
802         scale 85
803
804 \end_inset
805
806 .
807  Es importante emplear referencias a flotantes, mejor que alusiones vagas
808  como 
809 \begin_inset Quotes eld
810 \end_inset
811
812 la figura de arriba
813 \begin_inset Quotes erd
814 \end_inset
815
816 , porque como LaTeX recolocará los flotantes en el documento final, podría
817  no quedar 
818 \begin_inset Quotes eld
819 \end_inset
820
821 arriba
822 \begin_inset Quotes erd
823 \end_inset
824
825  precisamente.
826 \newline
827 Las referencias se explican con detalle en la sección\InsetSpace ~
828
829 \begin_inset LatexCommand ref
830 reference "sec:Referencias-a-Flotantes"
831
832 \end_inset
833
834 .
835 \end_layout
836
837 \begin_layout Standard
838 Normalmente solo se inserta una imagen en un flotante, pero es posible que
839  en alguna ocasión queramos poner dos imágenes cada una con su subtítulo.
840  Esto es posible mediante la solapa 
841 \family sans
842 Opciones\InsetSpace ~
843 extra
844 \family default
845  del diálogo gráficos.
846  Elige la opción 
847 \family sans
848 Subfigura
849 \family default
850  e introduce el subtítulo en la casilla 
851 \family sans
852 Descripción
853 \family default
854 .
855  Ten en cuenta que solo el título principal  del flotante se añade a la
856  Lista de Figuras.
857 \newline
858 Las referencias a las subfiguras se explican en la sección\InsetSpace ~
859
860 \begin_inset LatexCommand ref
861 reference "sub:Referencias-a-Subfiguras"
862
863 \end_inset
864
865 .
866 \end_layout
867
868 \begin_layout Standard
869 La figura\InsetSpace ~
870
871 \begin_inset LatexCommand ref
872 reference "fig:Dos-imágenes-distorsionadas"
873
874 \end_inset
875
876  es un ejemplo de figura flotante con dos imágenes una junto a otra.
877  También se pueden poner una sobre otra.
878 \end_layout
879
880 \begin_layout Standard
881 \begin_inset Float figure
882 wide false
883 sideways false
884 status collapsed
885
886 \begin_layout Standard
887
888 \hfill
889
890 \begin_inset Graphics
891         filename ../clipart/escher-lsd.eps
892         width 45col%
893         subcaption
894         subcaptionText "Estructura indefinible"
895
896 \end_inset
897
898
899 \hfill
900
901 \begin_inset Graphics
902         filename ../clipart/platypus.eps
903         lyxscale 60
904         width 45col%
905         subcaption
906         subcaptionText "\label{fig:Platypus} Platypus"
907
908 \end_inset
909
910
911 \hfill
912
913 \end_layout
914
915 \begin_layout Standard
916 \begin_inset Caption
917
918 \begin_layout Standard
919 \begin_inset LatexCommand label
920 name "fig:Dos-imágenes-distorsionadas"
921
922 \end_inset
923
924 Dos imágenes distorsionadas.
925 \end_layout
926
927 \end_inset
928
929
930 \end_layout
931
932 \end_inset
933
934
935 \end_layout
936
937 \begin_layout Section
938 Formatos de Imagen
939 \begin_inset LatexCommand label
940 name "sec:Formatos-de-imagen"
941
942 \end_inset
943
944
945 \begin_inset LatexCommand index
946 name "Formatos de Imagen"
947
948 \end_inset
949
950
951 \begin_inset LatexCommand index
952 name "Figuras ! Formatos de Imagen"
953
954 \end_inset
955
956
957 \end_layout
958
959 \begin_layout Standard
960 Puedes insertar imágenes en cualquier formato.
961  Pero como se explica en el apéndice\InsetSpace ~
962
963 \begin_inset LatexCommand ref
964 reference "cha:Formatos-de-Archivos-de-Salida"
965
966 \end_inset
967
968 , cada formato de archivo del documento de salida permite solo ciertos formatos
969  de archivo de imagen.
970  Por eso LyX usa el programa 
971 \family sans
972 Imagemagick
973 \family default
974  en segundo plano para convertir imágenes al formato adecuado.
975  Para aumentar el rendimiento evitando estas conversiones, puedes usar sólo
976  los formatos de imagen admitidos en el formato de archivo de salida.
977  Los formatos de salida se explican en el apéndice\InsetSpace ~
978
979 \begin_inset LatexCommand ref
980 reference "cha:Formatos-de-Archivos-de-Salida"
981
982 \end_inset
983
984 .
985 \end_layout
986
987 \begin_layout Standard
988 Como en el caso de las fuentes, hay dos tipos de formatos de imagen:
989 \end_layout
990
991 \begin_layout Description
992 Imágenes\InsetSpace ~
993 Mapa\InsetSpace ~
994 de\InsetSpace ~
995 bits\InsetSpace ~
996 (Bitmap) formadas por mapas de puntos (píxeles), generalmente
997  comprimidos.
998  Por tanto no son totalmente escalables y se ven pixeladas a valores altos
999  de zoom.
1000  Formatos de imágenes en bitmap bien conocidos son 
1001 \begin_inset Quotes eld
1002 \end_inset
1003
1004 Graphics Interchange Format
1005 \begin_inset Quotes erd
1006 \end_inset
1007
1008  (GIF, extensión 
1009 \begin_inset Quotes eld
1010 \end_inset
1011
1012 .gif
1013 \begin_inset Quotes erd
1014 \end_inset
1015
1016 )
1017 \begin_inset LatexCommand index
1018 name "GIF|see{Formatos de Imagen}"
1019
1020 \end_inset
1021
1022
1023 \begin_inset Quotes eld
1024 \end_inset
1025
1026 Portable Network Graphics
1027 \begin_inset Quotes erd
1028 \end_inset
1029
1030  (PNG, extensión 
1031 \begin_inset Quotes eld
1032 \end_inset
1033
1034 .png
1035 \begin_inset Quotes erd
1036 \end_inset
1037
1038 )
1039 \begin_inset LatexCommand index
1040 name "PNG|see{Formatos de Imagen}"
1041
1042 \end_inset
1043
1044 , y 
1045 \begin_inset Quotes eld
1046 \end_inset
1047
1048 Joint Photographic Experts Group
1049 \begin_inset Quotes erd
1050 \end_inset
1051
1052  (JPG, extensión 
1053 \begin_inset Quotes eld
1054 \end_inset
1055
1056 .jpg
1057 \begin_inset Quotes erd
1058 \end_inset
1059
1060  o 
1061 \begin_inset Quotes eld
1062 \end_inset
1063
1064 .jpeg
1065 \begin_inset Quotes erd
1066 \end_inset
1067
1068 )
1069 \begin_inset LatexCommand index
1070 name "JPG|see{Formatos de Imagen}"
1071
1072 \end_inset
1073
1074 .
1075 \end_layout
1076
1077 \begin_layout Description
1078 Imágenes\InsetSpace ~
1079 vectoriales se generan mediante una descripción de una serie de
1080  trazos (vectores) y por tanto pueden escalarse a cualquier tamaño sin pérdidas.
1081  La posibilidad de escalado hace falta para crear presentaciones, porque
1082  éstas siempre son escaladas por el proyector.
1083  El escalado también es útil en los documentoos en línea para permitir el
1084  zoom en diagramas.
1085 \newline
1086 Formatos de imagen escalables pueden ser 
1087 \begin_inset Quotes eld
1088 \end_inset
1089
1090 Scalable Vector Graphics
1091 \begin_inset Quotes erd
1092 \end_inset
1093
1094  (SVG, extensión 
1095 \begin_inset Quotes eld
1096 \end_inset
1097
1098 .svg
1099 \begin_inset Quotes erd
1100 \end_inset
1101
1102 )
1103 \begin_inset LatexCommand index
1104 name "SVG|see{Formatos de Imagen}"
1105
1106 \end_inset
1107
1108
1109 \begin_inset Quotes eld
1110 \end_inset
1111
1112 Encapsulated PostScript
1113 \begin_inset Quotes erd
1114 \end_inset
1115
1116  (EPS, extensión 
1117 \begin_inset Quotes eld
1118 \end_inset
1119
1120 .eps
1121 \begin_inset Quotes erd
1122 \end_inset
1123
1124 )
1125 \begin_inset LatexCommand index
1126 name "EPS|see{Formatos de Imagen}"
1127
1128 \end_inset
1129
1130
1131 \begin_inset Quotes eld
1132 \end_inset
1133
1134 Portable Document Format
1135 \begin_inset Quotes erd
1136 \end_inset
1137
1138  (PDF, extensión 
1139 \begin_inset Quotes eld
1140 \end_inset
1141
1142 .pdf
1143 \begin_inset Quotes erd
1144 \end_inset
1145
1146 )
1147 \begin_inset LatexCommand index
1148 name "PDF|see{Formatos de Imagen}"
1149
1150 \end_inset
1151
1152 , y 
1153 \begin_inset Quotes eld
1154 \end_inset
1155
1156 Windows Metafile
1157 \begin_inset Quotes erd
1158 \end_inset
1159
1160  (WMF, extensión 
1161 \begin_inset Quotes eld
1162 \end_inset
1163
1164 .wmf
1165 \begin_inset Quotes erd
1166 \end_inset
1167
1168 )
1169 \begin_inset LatexCommand index
1170 name "WMF|see{Formatos de Imagen}"
1171
1172 \end_inset
1173
1174 .
1175  Escribimos 
1176 \begin_inset Quotes eld
1177 \end_inset
1178
1179 pueden ser
1180 \begin_inset Quotes erd
1181 \end_inset
1182
1183 , porque se puede convertir cualquier imagen bitmap a PDF o EPS y el resultado
1184  será todavía una imagen bitmap.
1185  En estos casos sólo se añade una cabecera con las propiedades de la imagen
1186  a la imagen original
1187 \begin_inset Foot
1188 status collapsed
1189
1190 \begin_layout Standard
1191 En el caso de PDF, además se comprime la imagen original.
1192 \end_layout
1193
1194 \end_inset
1195
1196 .
1197  Por ejemplo, los archivos PDF generados por 
1198 \family sans
1199 Adobe Photoshop
1200 \family default
1201  son imágenes bitmap.
1202 \end_layout
1203
1204 \begin_layout Standard
1205 Normalmente no es posible convertir una imagen bitmap a escalable, solo
1206  viceversa.
1207  Solo los formatos de imagen PDF y EPS pueden empotrarse directamente en
1208  archivos de salida PDF y PostScript, respectivamente.
1209  Las imágenes SVG y WMF son recalculadas a bitmaps cuando se genera el archivo
1210  de salida porque actualmente no hay convertidores adecuados WMF/SVG 
1211 \begin_inset Formula $\to$
1212 \end_inset
1213
1214  PDF/EPS.
1215 \end_layout
1216
1217 \begin_layout Chapter
1218 Tablas
1219 \begin_inset LatexCommand label
1220 name "cha:Tablas"
1221
1222 \end_inset
1223
1224
1225 \begin_inset LatexCommand index
1226 name "Tablas"
1227
1228 \end_inset
1229
1230
1231 \end_layout
1232
1233 \begin_layout Section
1234 Introducción
1235 \begin_inset LatexCommand index
1236 name "Tablas ! Introducción"
1237
1238 \end_inset
1239
1240
1241 \end_layout
1242
1243 \begin_layout Standard
1244 Puede insertarse una tabla mediante el botón
1245 \begin_inset Graphics
1246         filename ../../images/tabular-insert.xpm
1247         scale 85
1248
1249 \end_inset
1250
1251  o el menú 
1252 \family sans
1253 Insertar\SpecialChar \menuseparator
1254 Tabla
1255 \family default
1256 .
1257  Aparece un diálogo en el que se pide el número de filas y columnas.
1258  Por defecto, la tabla tiene líneas que enmarcan cada celda y la primera
1259  fila aparece separada por una línea doble: la línea inferior de la primera
1260  fila y la línea superior de la segunda fila.
1261  Ejemplo de tabla:
1262 \end_layout
1263
1264 \begin_layout Standard
1265 \align center
1266 \begin_inset Tabular
1267 <lyxtabular version="3" rows="4" columns="4">
1268 <features>
1269 <column alignment="center" valignment="top" leftline="true" width="0">
1270 <column alignment="center" valignment="top" leftline="true" width="0pt">
1271 <column alignment="center" valignment="top" leftline="true" width="0in">
1272 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1273 <row topline="true" bottomline="true">
1274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1275 \begin_inset Text
1276
1277 \begin_layout Standard
1278
1279 \end_layout
1280
1281 \end_inset
1282 </cell>
1283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1284 \begin_inset Text
1285
1286 \begin_layout Standard
1287
1288 \family roman
1289 \series medium
1290 \shape up
1291 \size normal
1292 \emph off
1293 \bar no
1294 \noun off
1295 \color none
1296 1
1297 \end_layout
1298
1299 \end_inset
1300 </cell>
1301 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1302 \begin_inset Text
1303
1304 \begin_layout Standard
1305 2
1306 \end_layout
1307
1308 \end_inset
1309 </cell>
1310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1311 \begin_inset Text
1312
1313 \begin_layout Standard
1314 3
1315 \end_layout
1316
1317 \end_inset
1318 </cell>
1319 </row>
1320 <row topline="true">
1321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1322 \begin_inset Text
1323
1324 \begin_layout Standard
1325
1326 \family roman
1327 \series medium
1328 \shape up
1329 \size normal
1330 \emph off
1331 \bar no
1332 \noun off
1333 \color none
1334 A
1335 \end_layout
1336
1337 \end_inset
1338 </cell>
1339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1340 \begin_inset Text
1341
1342 \begin_layout Standard
1343
1344 \end_layout
1345
1346 \end_inset
1347 </cell>
1348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1349 \begin_inset Text
1350
1351 \begin_layout Standard
1352
1353 \end_layout
1354
1355 \end_inset
1356 </cell>
1357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1358 \begin_inset Text
1359
1360 \begin_layout Standard
1361
1362 \end_layout
1363
1364 \end_inset
1365 </cell>
1366 </row>
1367 <row topline="true">
1368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1369 \begin_inset Text
1370
1371 \begin_layout Standard
1372
1373 \family roman
1374 \series medium
1375 \shape up
1376 \size normal
1377 \emph off
1378 \bar no
1379 \noun off
1380 \color none
1381 B
1382 \end_layout
1383
1384 \end_inset
1385 </cell>
1386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1387 \begin_inset Text
1388
1389 \begin_layout Standard
1390
1391 \end_layout
1392
1393 \end_inset
1394 </cell>
1395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1396 \begin_inset Text
1397
1398 \begin_layout Standard
1399
1400 \size normal
1401 \noun off
1402 \color none
1403  
1404 \end_layout
1405
1406 \end_inset
1407 </cell>
1408 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1409 \begin_inset Text
1410
1411 \begin_layout Standard
1412
1413 \end_layout
1414
1415 \end_inset
1416 </cell>
1417 </row>
1418 <row topline="true" bottomline="true">
1419 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1420 \begin_inset Text
1421
1422 \begin_layout Standard
1423
1424 \family roman
1425 \series medium
1426 \shape up
1427 \size normal
1428 \emph off
1429 \bar no
1430 \noun off
1431 \color none
1432 C
1433 \end_layout
1434
1435 \end_inset
1436 </cell>
1437 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1438 \begin_inset Text
1439
1440 \begin_layout Standard
1441
1442 \end_layout
1443
1444 \end_inset
1445 </cell>
1446 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1447 \begin_inset Text
1448
1449 \begin_layout Standard
1450
1451 \end_layout
1452
1453 \end_inset
1454 </cell>
1455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1456 \begin_inset Text
1457
1458 \begin_layout Standard
1459
1460 \end_layout
1461
1462 \end_inset
1463 </cell>
1464 </row>
1465 </lyxtabular>
1466
1467 \end_inset
1468
1469
1470 \end_layout
1471
1472 \begin_layout Section
1473 Diálogo Tablas
1474 \begin_inset LatexCommand index
1475 name "Tablas ! Diálogo"
1476
1477 \end_inset
1478
1479
1480 \end_layout
1481
1482 \begin_layout Standard
1483 Una tabla se puede cambiar mediante el cuadro de diálogo que aparece al
1484  pinchar sobre ella con el botón derecho del ratón.
1485  Se pueden ajustar los parámetros de la celda y fila/columna en la que se
1486  encuentra el cursor.
1487  La mayoría de opciones también trabajan sobre una selección de celdas,
1488  de filas o de columnas.
1489  Observa que hay que diferenciar entre seleccionar una celda o seleccionar
1490  su 
1491 \emph on
1492 contenido
1493 \emph default
1494 .
1495  En el cuadro de diálogo aparecen las siguientes solapas:
1496 \end_layout
1497
1498 \begin_layout Description
1499
1500 \family sans
1501 Configuración\InsetSpace ~
1502 de\InsetSpace ~
1503 Tabla
1504 \family default
1505  Aquí puedes establecer la alineación horizontal y la anchura de la columna
1506  actual.
1507  Una vez puesta la anchura puedes ajustar también el alineamiento vertical.
1508  Una anchura determinada permite tener saltos de línea y distintos párrafos
1509  de texto, ver sección \InsetSpace ~
1510
1511 \begin_inset LatexCommand ref
1512 reference "sub:Líneas-Múltiples-en"
1513
1514 \end_inset
1515
1516 .
1517  Si no estableces anchura, la columna será tan ancha como el contenido de
1518  la celda más ancha.
1519 \newline
1520 Además, puedes marcar una o más celdas de una fila como
1521  una celda multicolumna, ver sección\InsetSpace ~
1522
1523 \begin_inset LatexCommand ref
1524 reference "sub:Multicolumnas"
1525
1526 \end_inset
1527
1528 .
1529 \newline
1530 Las casillas de giro rotan la celda actual, una selección o toda la tabla
1531  90º en el sentido de las agujas del reloj.
1532  La rotación no se ve en LyX, sí en la salida.
1533 \newline
1534
1535 \begin_inset Note Greyedout
1536 status open
1537
1538 \begin_layout Standard
1539
1540 \series bold
1541 Nota:
1542 \series default
1543  no todos los visores DVI pueden mostrar rotaciones.
1544 \end_layout
1545
1546 \end_inset
1547
1548
1549 \newline
1550 También es posible introducir argumentos LaTeX necesarios para formatos
1551  especiales, ver sección\InsetSpace ~
1552
1553 \begin_inset LatexCommand ref
1554 reference "sub:Cálculos-en-Multicolumnas"
1555
1556 \end_inset
1557
1558  y 
1559 \begin_inset LatexCommand ref
1560 reference "sec:Tablas-Coloreadas"
1561
1562 \end_inset
1563
1564 .
1565 \end_layout
1566
1567 \begin_layout Description
1568
1569 \family sans
1570 Bordes
1571 \family default
1572  En esta solapa puedes añadir y quitar bordes para la fila/columna actual.
1573 \end_layout
1574
1575 \begin_layout Description
1576
1577 \family sans
1578 Tabla\InsetSpace ~
1579 Larga
1580 \family default
1581  Para hacer 
1582 \emph on
1583 tablas largas
1584 \emph default
1585  que pueden extenderse por varias páginas.
1586  La sección\InsetSpace ~
1587
1588 \begin_inset LatexCommand ref
1589 reference "sec:Tablas-Largas"
1590
1591 \end_inset
1592
1593  describe su uso en detalle.
1594 \end_layout
1595
1596 \begin_layout Standard
1597 Si la barra de herramientas de tabla está abierta, puedes mover el cursor
1598  con las teclas de flecha de celda en celda y la propiedad de la celda actual
1599  aparecerá inmediatamente en el diálogo.
1600 \end_layout
1601
1602 \begin_layout Section
1603 Barra de Herramientas de Tablas
1604 \begin_inset LatexCommand index
1605 name "Tablas ! Barra de Herramientas"
1606
1607 \end_inset
1608
1609
1610 \end_layout
1611
1612 \begin_layout Standard
1613 La barra de herramientas de tabla es una alternativa al cuadro de diálogo
1614  para cambiar las tablas de manera más rápida.
1615  Normalmente debería aparecer en la parte inferior de la ventana principal
1616  de LyX cuando el cursor está dentro de una tabla.
1617  En cualquier momento se puede presentar esta barra pinchando con el botón
1618  derecho del ratón en cualquier punto de la barra principal de menú.
1619 \end_layout
1620
1621 \begin_layout Standard
1622 La barra de herramientas tiene los siguientes iconos:
1623 \end_layout
1624
1625 \begin_layout Labeling
1626 \labelwidthstring 00.00.0000
1627 \begin_inset Graphics
1628         filename ../../images/tabular-feature_append-row.xpm
1629
1630 \end_inset
1631
1632  añade una fila bajo la celda actual o selección
1633 \end_layout
1634
1635 \begin_layout Labeling
1636 \labelwidthstring 00.00.0000
1637 \begin_inset Graphics
1638         filename ../../images/tabular-feature_append-column.xpm
1639
1640 \end_inset
1641
1642  añade una columna a la derecha de la celda actual o selección
1643 \end_layout
1644
1645 \begin_layout Labeling
1646 \labelwidthstring 00.00.0000
1647 \begin_inset Graphics
1648         filename ../../images/tabular-feature_delete-row.xpm
1649
1650 \end_inset
1651
1652  borra la fila actual o selección
1653 \end_layout
1654
1655 \begin_layout Labeling
1656 \labelwidthstring 00.00.0000
1657 \begin_inset Graphics
1658         filename ../../images/tabular-feature_delete-column.xpm
1659
1660 \end_inset
1661
1662  borra la columna actual o selección
1663 \end_layout
1664
1665 \begin_layout Labeling
1666 \labelwidthstring 00.00.0000
1667 \begin_inset Graphics
1668         filename ../../images/tabular-feature_toggle-line-top.xpm
1669
1670 \end_inset
1671
1672  añade una línea sobre la celda/fila actual o la selección
1673 \end_layout
1674
1675 \begin_layout Labeling
1676 \labelwidthstring 00.00.0000
1677 \begin_inset Graphics
1678         filename ../../images/tabular-feature_toggle-line-bottom.xpm
1679
1680 \end_inset
1681
1682  añade una línea bajo la celda/fila actual o la selección
1683 \end_layout
1684
1685 \begin_layout Labeling
1686 \labelwidthstring 00.00.0000
1687 \begin_inset Graphics
1688         filename ../../images/tabular-feature_toggle-line-left.xpm
1689
1690 \end_inset
1691
1692  añade una línea a la izquierda de la celda/fila actual o la selección
1693 \end_layout
1694
1695 \begin_layout Labeling
1696 \labelwidthstring 00.00.0000
1697 \begin_inset Graphics
1698         filename ../../images/tabular-feature_toggle-line-right.xpm
1699
1700 \end_inset
1701
1702  añade una línea a la derecha de la celda/fila actual o la selección
1703 \end_layout
1704
1705 \begin_layout Labeling
1706 \labelwidthstring 00.00.0000
1707 \begin_inset Graphics
1708         filename ../../images/tabular-feature_set-all-lines.xpm
1709
1710 \end_inset
1711
1712  añade líneas alrededor de la celda actual o seleccionadas (si la celda
1713  actual no es multicolumna esto afecta también a la fila y a la columna)
1714 \end_layout
1715
1716 \begin_layout Labeling
1717 \labelwidthstring 00.00.0000
1718 \begin_inset Graphics
1719         filename ../../images/tabular-feature_unset-all-lines.xpm
1720
1721 \end_inset
1722
1723  borra todas las líneas de la celda o celdas seleccionadas (si la celda
1724  actual no es multicolumna esto afecta también a la fila y a la columna)
1725 \end_layout
1726
1727 \begin_layout Labeling
1728 \labelwidthstring 00.00.0000
1729 \begin_inset Graphics
1730         filename ../../images/tabular-feature_align-left.xpm
1731
1732 \end_inset
1733
1734  alinea a la izquierda el contenido de la celda/columna
1735 \end_layout
1736
1737 \begin_layout Labeling
1738 \labelwidthstring 00.00.0000
1739 \begin_inset Graphics
1740         filename ../../images/tabular-feature_align-center.xpm
1741
1742 \end_inset
1743
1744  centra el contenido de la celda/columna horizontalmente
1745 \end_layout
1746
1747 \begin_layout Labeling
1748 \labelwidthstring 00.00.0000
1749 \begin_inset Graphics
1750         filename ../../images/tabular-feature_align-right.xpm
1751
1752 \end_inset
1753
1754  alinea a la derecha el contenido de la celda/columna
1755 \end_layout
1756
1757 \begin_layout Labeling
1758 \labelwidthstring 00.00.0000
1759 \begin_inset Graphics
1760         filename ../../images/tabular-feature_valign-top.xpm
1761
1762 \end_inset
1763
1764  alinea arriba el contenido de la celda
1765 \end_layout
1766
1767 \begin_layout Labeling
1768 \labelwidthstring 00.00.0000
1769 \begin_inset Graphics
1770         filename ../../images/tabular-feature_valign-middle.xpm
1771
1772 \end_inset
1773
1774  centra verticalmente el contenido de la celda
1775 \end_layout
1776
1777 \begin_layout Labeling
1778 \labelwidthstring 00.00.0000
1779 \begin_inset Graphics
1780         filename ../../images/tabular-feature_valign-bottom.xpm
1781
1782 \end_inset
1783
1784  alinea abajo el contenido de la celda
1785 \end_layout
1786
1787 \begin_layout Labeling
1788 \labelwidthstring 00.00.0000
1789 \begin_inset Graphics
1790         filename ../../images/tabular-feature_set-rotate-cell.xpm
1791
1792 \end_inset
1793
1794  gira la celda o selección 90° como las agujas de reloj
1795 \end_layout
1796
1797 \begin_layout Labeling
1798 \labelwidthstring 00.00.0000
1799 \begin_inset Graphics
1800         filename ../../images/tabular-feature_set-rotate-tabular.xpm
1801
1802 \end_inset
1803
1804  gira toda la tabla 90° como agujas del reloj
1805 \end_layout
1806
1807 \begin_layout Labeling
1808 \labelwidthstring 00.00.0000
1809 \begin_inset Graphics
1810         filename ../../images/tabular-feature_multicolumn.xpm
1811
1812 \end_inset
1813
1814  establece la celda actual o selección como multicolumna
1815 \end_layout
1816
1817 \begin_layout Section
1818 Menú Editar Tabla
1819 \begin_inset LatexCommand index
1820 name "Tablas ! Menú Editar"
1821
1822 \end_inset
1823
1824
1825 \end_layout
1826
1827 \begin_layout Standard
1828 Además del diálogo y la barra de herramientas, el menú 
1829 \family sans
1830 Editar\SpecialChar \menuseparator
1831 Tabla
1832 \family default
1833  permite añadir y borrar bordes para la fila/columna actual y establecer
1834  la selección como multicolumna.
1835  El menú sólo está disponible si el cursor está en la tabla.
1836 \end_layout
1837
1838 \begin_layout Section
1839 Tablas Flotantes
1840 \begin_inset LatexCommand label
1841 name "sec:Tablas-Flotantes"
1842
1843 \end_inset
1844
1845
1846 \begin_inset LatexCommand index
1847 name "Flotantes ! Tablas"
1848
1849 \end_inset
1850
1851
1852 \begin_inset LatexCommand index
1853 name "Tablas ! Flotantes"
1854
1855 \end_inset
1856
1857
1858 \end_layout
1859
1860 \begin_layout Standard
1861 Para una explicación general sobre flotantes, echa un vistazo a la sección\InsetSpace ~
1862
1863 \begin_inset LatexCommand ref
1864 reference "sec:IntroducciónFlotantes"
1865
1866 \end_inset
1867
1868 .
1869 \end_layout
1870
1871 \begin_layout Standard
1872 \begin_inset Float table
1873 placement h
1874 wide false
1875 sideways false
1876 status open
1877
1878 \begin_layout Standard
1879 \begin_inset Caption
1880
1881 \begin_layout Standard
1882 \begin_inset LatexCommand label
1883 name "tab:una tabla flotante"
1884
1885 \end_inset
1886
1887 Una tabla flotante.
1888 \end_layout
1889
1890 \end_inset
1891
1892
1893 \end_layout
1894
1895 \begin_layout Standard
1896 \align center
1897 \begin_inset Tabular
1898 <lyxtabular version="3" rows="3" columns="3">
1899 <features>
1900 <column alignment="center" valignment="top" leftline="true" width="0pt">
1901 <column alignment="center" valignment="top" leftline="true" width="0pt">
1902 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1903 <row topline="true" bottomline="true">
1904 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1905 \begin_inset Text
1906
1907 \begin_layout Standard
1908
1909 \family roman
1910 \series medium
1911 \shape up
1912 \size normal
1913 \emph off
1914 \bar no
1915 \noun off
1916 \color none
1917 1
1918 \end_layout
1919
1920 \end_inset
1921 </cell>
1922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1923 \begin_inset Text
1924
1925 \begin_layout Standard
1926
1927 \family roman
1928 \series medium
1929 \shape up
1930 \size normal
1931 \emph off
1932 \bar no
1933 \noun off
1934 \color none
1935 2
1936 \end_layout
1937
1938 \end_inset
1939 </cell>
1940 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1941 \begin_inset Text
1942
1943 \begin_layout Standard
1944
1945 \family roman
1946 \series medium
1947 \shape up
1948 \size normal
1949 \emph off
1950 \bar no
1951 \noun off
1952 \color none
1953 3
1954 \end_layout
1955
1956 \end_inset
1957 </cell>
1958 </row>
1959 <row topline="true">
1960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1961 \begin_inset Text
1962
1963 \begin_layout Standard
1964
1965 \family roman
1966 \series medium
1967 \shape up
1968 \size normal
1969 \emph off
1970 \bar no
1971 \noun off
1972 \color none
1973 Pepe
1974 \end_layout
1975
1976 \end_inset
1977 </cell>
1978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1979 \begin_inset Text
1980
1981 \begin_layout Standard
1982
1983 \family roman
1984 \series medium
1985 \shape up
1986 \size normal
1987 \emph off
1988 \bar no
1989 \noun off
1990 \color none
1991 Mari
1992 \end_layout
1993
1994 \end_inset
1995 </cell>
1996 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1997 \begin_inset Text
1998
1999 \begin_layout Standard
2000
2001 \family roman
2002 \series medium
2003 \shape up
2004 \size normal
2005 \emph off
2006 \bar no
2007 \noun off
2008 \color none
2009 Teo
2010 \end_layout
2011
2012 \end_inset
2013 </cell>
2014 </row>
2015 <row topline="true" bottomline="true">
2016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2017 \begin_inset Text
2018
2019 \begin_layout Standard
2020
2021 \family roman
2022 \series medium
2023 \shape up
2024 \size normal
2025 \emph off
2026 \bar no
2027 \noun off
2028 \color none
2029 \begin_inset Formula $\int x^{2}dx$
2030 \end_inset
2031
2032
2033 \end_layout
2034
2035 \end_inset
2036 </cell>
2037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2038 \begin_inset Text
2039
2040 \begin_layout Standard
2041
2042 \family roman
2043 \series medium
2044 \shape up
2045 \size normal
2046 \emph off
2047 \bar no
2048 \noun off
2049 \color none
2050 \begin_inset Formula $\left[\begin{array}{cc}
2051 a & b\\
2052 c & d\end{array}\right]$
2053 \end_inset
2054
2055
2056 \end_layout
2057
2058 \end_inset
2059 </cell>
2060 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2061 \begin_inset Text
2062
2063 \begin_layout Standard
2064
2065 \family roman
2066 \series medium
2067 \shape up
2068 \size normal
2069 \emph off
2070 \bar no
2071 \noun off
2072 \color none
2073 \begin_inset Formula $1+1=2$
2074 \end_inset
2075
2076
2077 \end_layout
2078
2079 \end_inset
2080 </cell>
2081 </row>
2082 </lyxtabular>
2083
2084 \end_inset
2085
2086
2087 \end_layout
2088
2089 \end_inset
2090
2091
2092 \end_layout
2093
2094 \begin_layout Standard
2095 Las tablas flotantes pueden insertarse con el menú 
2096 \family sans
2097 Insertar\SpecialChar \menuseparator
2098 Flotante\SpecialChar \menuseparator
2099 Tabla
2100 \family default
2101  o con el botón 
2102 \begin_inset Graphics
2103         filename ../../images/float-insert_table.xpm
2104         scale 85
2105
2106 \end_inset
2107
2108 .
2109 \end_layout
2110
2111 \begin_layout Standard
2112 El flotante se muestra como un cuadro desplegable con la etiqueta 
2113 \begin_inset Quotes eld
2114 \end_inset
2115
2116 Tabla\InsetSpace ~
2117 #:
2118 \begin_inset Quotes erd
2119 \end_inset
2120
2121  (# es el número actual).
2122  El texto que sigue a dicha etiqueta es el encabezado de tabla.
2123  Para insertar una tabla en el flotante se sitúa el cursor al final del
2124  texto del encabezado y se pulsa Enter.
2125  El encabezado se imprime encima de la tabla.
2126 \end_layout
2127
2128 \begin_layout Standard
2129 La tabla\InsetSpace ~
2130
2131 \begin_inset LatexCommand ref
2132 reference "tab:una tabla flotante"
2133
2134 \end_inset
2135
2136  es un ejemplo de tabla flotante.
2137 \end_layout
2138
2139 \begin_layout Standard
2140 Lo habitual es poner el encabezado sobre la tabla, lo que desafortunadamente
2141  no es soportado en las clases estándar de LaTeX.
2142  Esto significa que si estás usando las clases de documento 
2143 \family sans
2144 article
2145 \family default
2146
2147 \family sans
2148 book
2149 \family default
2150
2151 \family sans
2152 letter
2153 \family default
2154 , o 
2155 \family sans
2156 report
2157 \family default
2158  no habrá espacio entre el encabezado y la tabla.
2159  Para añadir un espacio entre ellos hay que poner en el preámbulo LaTeX
2160  del documento la siguiente opción al comando del paquete de LaTeX 
2161 \series bold
2162 caption
2163 \series default
2164
2165 \begin_inset LatexCommand index
2166 name "LaTeX-paquetes ! caption"
2167
2168 \end_inset
2169
2170
2171 \begin_inset Foot
2172 status open
2173
2174 \begin_layout Standard
2175 Para más información ve a la sección\InsetSpace ~
2176
2177 \begin_inset LatexCommand ref
2178 reference "sec:Colocación-de-Encabezados"
2179
2180 \end_inset
2181
2182 .
2183 \end_layout
2184
2185 \end_inset
2186
2187 :
2188 \end_layout
2189
2190 \begin_layout Standard
2191
2192 \series bold
2193 tableposition=top
2194 \end_layout
2195
2196 \begin_layout Standard
2197 El formato del encabezado se puede controlar mediante el paquete de LaTeX
2198  
2199 \series bold
2200 caption
2201 \series default
2202  como se describe en la sección\InsetSpace ~
2203
2204 \begin_inset LatexCommand ref
2205 reference "sec:Formato-de-Encabezados"
2206
2207 \end_inset
2208
2209 .
2210  
2211 \end_layout
2212
2213 \begin_layout Standard
2214 \begin_inset LatexCommand index
2215 name "Referencias ! a Tablas"
2216
2217 \end_inset
2218
2219 Las tablas pueden tener referencias cruzadas en el texto referenciando su
2220  etiqueta.
2221  Para hacerlo inserta una etiqueta en el encabezado con el menú 
2222 \family sans
2223 Insertar\SpecialChar \menuseparator
2224 Etiqueta
2225 \family default
2226  o con el botón 
2227 \begin_inset Graphics
2228         filename ../../images/label-insert.xpm
2229         scale 85
2230
2231 \end_inset
2232
2233 .
2234  Ahora puedes referenciar la etiqueta con el menú 
2235 \family sans
2236 Insertar\SpecialChar \menuseparator
2237 Referencia\InsetSpace ~
2238 cruzada
2239 \family default
2240  o con el botón 
2241 \begin_inset Graphics
2242         filename ../../images/dialog-show-new-inset_ref.xpm
2243         scale 85
2244
2245 \end_inset
2246
2247 .
2248 \newline
2249 Las referencias se explican con detalle en la sección\InsetSpace ~
2250
2251 \begin_inset LatexCommand ref
2252 reference "sec:Referencias-a-Flotantes"
2253
2254 \end_inset
2255
2256 .
2257 \end_layout
2258
2259 \begin_layout Section
2260 Tablas Largas
2261 \begin_inset LatexCommand label
2262 name "sec:Tablas-Largas"
2263
2264 \end_inset
2265
2266
2267 \begin_inset LatexCommand index
2268 name "Tablas Largas"
2269
2270 \end_inset
2271
2272
2273 \begin_inset LatexCommand index
2274 name "Tablas ! Largas"
2275
2276 \end_inset
2277
2278
2279 \end_layout
2280
2281 \begin_layout Standard
2282 Si la tabla es demasiado larga para una página, puedes usar la opción 
2283 \family sans
2284 Usar\InsetSpace ~
2285 tabla\InsetSpace ~
2286 larga
2287 \family default
2288  en la solapa 
2289 \family sans
2290 Tabla\InsetSpace ~
2291 larga
2292 \family default
2293  del diálogo de tablas, para repartir automáticamente la tabla en varias
2294  páginas.
2295  Al hacerlo se habilitan diversos botones opcionales en los que puedes definir:
2296 \end_layout
2297
2298 \begin_layout Description
2299
2300 \family sans
2301 Encabezado:
2302 \family default
2303  La fila actual y todas las de arriba, que no tienen ninguna opción especial
2304  definida, se definen como filas de encabezado para todas las páginas de
2305  la tabla, excepto para la primera página si 
2306 \family sans
2307 Primer\InsetSpace ~
2308 encabezado
2309 \family default
2310  está definido.
2311  Este se denomina encabezado principal.
2312 \end_layout
2313
2314 \begin_layout Description
2315
2316 \family sans
2317 Primer\InsetSpace ~
2318 encabezado:
2319 \family default
2320  La fila actual y superiores, que no tienen ninguna opción especial definida,
2321  se definen como filas cabeceras de la primera página de la tabla.
2322 \end_layout
2323
2324 \begin_layout Description
2325
2326 \family sans
2327 Pie:
2328 \family default
2329  La fila actual y todas las siguientes, que no tienen ninguna opción especial
2330  definida, se definen como filas de pie de todas las páginas de la tabla,
2331  excepto para la última página si se define 
2332 \family sans
2333 Último\InsetSpace ~
2334 pie.
2335 \end_layout
2336
2337 \begin_layout Description
2338
2339 \family sans
2340 Último\InsetSpace ~
2341 pie: L
2342 \family default
2343 a fila actual y siguientes, que no tienen ninguna opción especial definida,
2344  se definen como filas de pie de la última página de la tabla.
2345 \end_layout
2346
2347 \begin_layout Standard
2348 También se puede especificar en qué fila se ha de cortar la tabla.
2349  Si se establece más de una opción en la misma fila, habría que tener en
2350  cuenta que solo la primera de ellas se usa en la fila dada.
2351  Las otras quedarán definidas como 
2352 \emph on
2353 vacías
2354 \emph default
2355 .
2356  En este contexto, primera significa primero en este orden: 
2357 \family sans
2358 Encabezado, Primer\InsetSpace ~
2359 encabezado
2360 \family default
2361
2362 \family sans
2363 Pie, Último\InsetSpace ~
2364 pie
2365 \family default
2366 .
2367  La siguiente tabla muestra cómo funciona:
2368 \end_layout
2369
2370 \begin_layout Standard
2371
2372 \end_layout
2373
2374 \begin_layout Standard
2375 \align center
2376 \begin_inset Tabular
2377 <lyxtabular version="3" rows="69" columns="3">
2378 <features islongtable="true">
2379 <column alignment="left" valignment="top" leftline="true" width="0cm">
2380 <column alignment="left" valignment="top" width="0pt">
2381 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2382 <row topline="true" bottomline="true" endfirsthead="true">
2383 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2384 \begin_inset Text
2385
2386 \begin_layout Standard
2387
2388 \series bold
2389 Ejemplo de lista telefónica (ignore los nombres)
2390 \end_layout
2391
2392 \end_inset
2393 </cell>
2394 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2395 \begin_inset Text
2396
2397 \begin_layout Standard
2398
2399 \end_layout
2400
2401 \end_inset
2402 </cell>
2403 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2404 \begin_inset Text
2405
2406 \begin_layout Standard
2407
2408 \end_layout
2409
2410 \end_inset
2411 </cell>
2412 </row>
2413 <row topline="true" bottomline="true" endfirsthead="true">
2414 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2415 \begin_inset Text
2416
2417 \begin_layout Standard
2418
2419 \series bold
2420 NOMBRE
2421 \end_layout
2422
2423 \end_inset
2424 </cell>
2425 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2426 \begin_inset Text
2427
2428 \begin_layout Standard
2429
2430 \end_layout
2431
2432 \end_inset
2433 </cell>
2434 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2435 \begin_inset Text
2436
2437 \begin_layout Standard
2438
2439 \series bold
2440 TEL.
2441 \end_layout
2442
2443 \end_inset
2444 </cell>
2445 </row>
2446 <row topline="true" bottomline="true" endhead="true">
2447 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2448 \begin_inset Text
2449
2450 \begin_layout Standard
2451
2452 \series bold
2453 Ejemplo de lista telefónica
2454 \end_layout
2455
2456 \end_inset
2457 </cell>
2458 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2459 \begin_inset Text
2460
2461 \begin_layout Standard
2462
2463 \end_layout
2464
2465 \end_inset
2466 </cell>
2467 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2468 \begin_inset Text
2469
2470 \begin_layout Standard
2471
2472 \end_layout
2473
2474 \end_inset
2475 </cell>
2476 </row>
2477 <row topline="true" bottomline="true" endhead="true">
2478 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2479 \begin_inset Text
2480
2481 \begin_layout Standard
2482
2483 \series bold
2484 NOMBRE
2485 \end_layout
2486
2487 \end_inset
2488 </cell>
2489 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2490 \begin_inset Text
2491
2492 \begin_layout Standard
2493
2494 \end_layout
2495
2496 \end_inset
2497 </cell>
2498 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2499 \begin_inset Text
2500
2501 \begin_layout Standard
2502
2503 \series bold
2504 TEL.
2505 \end_layout
2506
2507 \end_inset
2508 </cell>
2509 </row>
2510 <row topline="true" bottomline="true" endfoot="true">
2511 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2512 \begin_inset Text
2513
2514 \begin_layout Standard
2515  continúa en la página siguiente
2516 \end_layout
2517
2518 \end_inset
2519 </cell>
2520 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2521 \begin_inset Text
2522
2523 \begin_layout Standard
2524
2525 \end_layout
2526
2527 \end_inset
2528 </cell>
2529 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2530 \begin_inset Text
2531
2532 \begin_layout Standard
2533
2534 \end_layout
2535
2536 \end_inset
2537 </cell>
2538 </row>
2539 <row>
2540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2541 \begin_inset Text
2542
2543 \begin_layout Standard
2544
2545 \series bold
2546 Annovi
2547 \end_layout
2548
2549 \end_inset
2550 </cell>
2551 <cell alignment="center" valignment="top" topline="true" usebox="none">
2552 \begin_inset Text
2553
2554 \begin_layout Standard
2555 Silvia
2556 \end_layout
2557
2558 \end_inset
2559 </cell>
2560 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2561 \begin_inset Text
2562
2563 \begin_layout Standard
2564 111
2565 \end_layout
2566
2567 \end_inset
2568 </cell>
2569 </row>
2570 <row>
2571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2572 \begin_inset Text
2573
2574 \begin_layout Standard
2575
2576 \series bold
2577 Bertoli
2578 \end_layout
2579
2580 \end_inset
2581 </cell>
2582 <cell alignment="center" valignment="top" topline="true" usebox="none">
2583 \begin_inset Text
2584
2585 \begin_layout Standard
2586 Stefano
2587 \end_layout
2588
2589 \end_inset
2590 </cell>
2591 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2592 \begin_inset Text
2593
2594 \begin_layout Standard
2595 111
2596 \end_layout
2597
2598 \end_inset
2599 </cell>
2600 </row>
2601 <row>
2602 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2603 \begin_inset Text
2604
2605 \begin_layout Standard
2606
2607 \series bold
2608 Bozzi
2609 \end_layout
2610
2611 \end_inset
2612 </cell>
2613 <cell alignment="center" valignment="top" topline="true" usebox="none">
2614 \begin_inset Text
2615
2616 \begin_layout Standard
2617 Walter
2618 \end_layout
2619
2620 \end_inset
2621 </cell>
2622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2623 \begin_inset Text
2624
2625 \begin_layout Standard
2626 111
2627 \end_layout
2628
2629 \end_inset
2630 </cell>
2631 </row>
2632 <row>
2633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2634 \begin_inset Text
2635
2636 \begin_layout Standard
2637
2638 \series bold
2639 Cachia
2640 \end_layout
2641
2642 \end_inset
2643 </cell>
2644 <cell alignment="center" valignment="top" topline="true" usebox="none">
2645 \begin_inset Text
2646
2647 \begin_layout Standard
2648 Maria
2649 \end_layout
2650
2651 \end_inset
2652 </cell>
2653 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2654 \begin_inset Text
2655
2656 \begin_layout Standard
2657 111
2658 \end_layout
2659
2660 \end_inset
2661 </cell>
2662 </row>
2663 <row>
2664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2665 \begin_inset Text
2666
2667 \begin_layout Standard
2668
2669 \series bold
2670 Cachia
2671 \end_layout
2672
2673 \end_inset
2674 </cell>
2675 <cell alignment="center" valignment="top" topline="true" usebox="none">
2676 \begin_inset Text
2677
2678 \begin_layout Standard
2679 Maurizio
2680 \end_layout
2681
2682 \end_inset
2683 </cell>
2684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2685 \begin_inset Text
2686
2687 \begin_layout Standard
2688 111
2689 \end_layout
2690
2691 \end_inset
2692 </cell>
2693 </row>
2694 <row>
2695 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2696 \begin_inset Text
2697
2698 \begin_layout Standard
2699
2700 \series bold
2701 Cinquemani
2702 \end_layout
2703
2704 \end_inset
2705 </cell>
2706 <cell alignment="center" valignment="top" topline="true" usebox="none">
2707 \begin_inset Text
2708
2709 \begin_layout Standard
2710 Giusi
2711 \end_layout
2712
2713 \end_inset
2714 </cell>
2715 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2716 \begin_inset Text
2717
2718 \begin_layout Standard
2719 111
2720 \end_layout
2721
2722 \end_inset
2723 </cell>
2724 </row>
2725 <row>
2726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2727 \begin_inset Text
2728
2729 \begin_layout Standard
2730
2731 \series bold
2732 Colin
2733 \end_layout
2734
2735 \end_inset
2736 </cell>
2737 <cell alignment="center" valignment="top" topline="true" usebox="none">
2738 \begin_inset Text
2739
2740 \begin_layout Standard
2741 Bernard
2742 \end_layout
2743
2744 \end_inset
2745 </cell>
2746 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2747 \begin_inset Text
2748
2749 \begin_layout Standard
2750 111
2751 \end_layout
2752
2753 \end_inset
2754 </cell>
2755 </row>
2756 <row>
2757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2758 \begin_inset Text
2759
2760 \begin_layout Standard
2761
2762 \series bold
2763 Concli
2764 \end_layout
2765
2766 \end_inset
2767 </cell>
2768 <cell alignment="center" valignment="top" topline="true" usebox="none">
2769 \begin_inset Text
2770
2771 \begin_layout Standard
2772 Gianfranco
2773 \end_layout
2774
2775 \end_inset
2776 </cell>
2777 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2778 \begin_inset Text
2779
2780 \begin_layout Standard
2781 111
2782 \end_layout
2783
2784 \end_inset
2785 </cell>
2786 </row>
2787 <row>
2788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2789 \begin_inset Text
2790
2791 \begin_layout Standard
2792
2793 \series bold
2794 Dal Bosco
2795 \end_layout
2796
2797 \end_inset
2798 </cell>
2799 <cell alignment="center" valignment="top" topline="true" usebox="none">
2800 \begin_inset Text
2801
2802 \begin_layout Standard
2803 Carolina
2804 \end_layout
2805
2806 \end_inset
2807 </cell>
2808 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2809 \begin_inset Text
2810
2811 \begin_layout Standard
2812 111
2813 \end_layout
2814
2815 \end_inset
2816 </cell>
2817 </row>
2818 <row>
2819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2820 \begin_inset Text
2821
2822 \begin_layout Standard
2823
2824 \series bold
2825 Dalpiaz
2826 \end_layout
2827
2828 \end_inset
2829 </cell>
2830 <cell alignment="center" valignment="top" topline="true" usebox="none">
2831 \begin_inset Text
2832
2833 \begin_layout Standard
2834 Annamaria
2835 \end_layout
2836
2837 \end_inset
2838 </cell>
2839 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2840 \begin_inset Text
2841
2842 \begin_layout Standard
2843 111
2844 \end_layout
2845
2846 \end_inset
2847 </cell>
2848 </row>
2849 <row>
2850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2851 \begin_inset Text
2852
2853 \begin_layout Standard
2854
2855 \series bold
2856 Feliciello
2857 \end_layout
2858
2859 \end_inset
2860 </cell>
2861 <cell alignment="center" valignment="top" topline="true" usebox="none">
2862 \begin_inset Text
2863
2864 \begin_layout Standard
2865 Domenico
2866 \end_layout
2867
2868 \end_inset
2869 </cell>
2870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2871 \begin_inset Text
2872
2873 \begin_layout Standard
2874 111
2875 \end_layout
2876
2877 \end_inset
2878 </cell>
2879 </row>
2880 <row>
2881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2882 \begin_inset Text
2883
2884 \begin_layout Standard
2885
2886 \series bold
2887 Focarelli
2888 \end_layout
2889
2890 \end_inset
2891 </cell>
2892 <cell alignment="center" valignment="top" topline="true" usebox="none">
2893 \begin_inset Text
2894
2895 \begin_layout Standard
2896 Paola
2897 \end_layout
2898
2899 \end_inset
2900 </cell>
2901 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2902 \begin_inset Text
2903
2904 \begin_layout Standard
2905 111
2906 \end_layout
2907
2908 \end_inset
2909 </cell>
2910 </row>
2911 <row>
2912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2913 \begin_inset Text
2914
2915 \begin_layout Standard
2916
2917 \series bold
2918 Galletti
2919 \end_layout
2920
2921 \end_inset
2922 </cell>
2923 <cell alignment="center" valignment="top" topline="true" usebox="none">
2924 \begin_inset Text
2925
2926 \begin_layout Standard
2927 Oreste
2928 \end_layout
2929
2930 \end_inset
2931 </cell>
2932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2933 \begin_inset Text
2934
2935 \begin_layout Standard
2936 111
2937 \end_layout
2938
2939 \end_inset
2940 </cell>
2941 </row>
2942 <row>
2943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2944 \begin_inset Text
2945
2946 \begin_layout Standard
2947
2948 \series bold
2949 Gasparini
2950 \end_layout
2951
2952 \end_inset
2953 </cell>
2954 <cell alignment="center" valignment="top" topline="true" usebox="none">
2955 \begin_inset Text
2956
2957 \begin_layout Standard
2958 Franca
2959 \end_layout
2960
2961 \end_inset
2962 </cell>
2963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2964 \begin_inset Text
2965
2966 \begin_layout Standard
2967 111
2968 \end_layout
2969
2970 \end_inset
2971 </cell>
2972 </row>
2973 <row>
2974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2975 \begin_inset Text
2976
2977 \begin_layout Standard
2978
2979 \series bold
2980 Rizzardi
2981 \end_layout
2982
2983 \end_inset
2984 </cell>
2985 <cell alignment="center" valignment="top" topline="true" usebox="none">
2986 \begin_inset Text
2987
2988 \begin_layout Standard
2989 Paola
2990 \end_layout
2991
2992 \end_inset
2993 </cell>
2994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2995 \begin_inset Text
2996
2997 \begin_layout Standard
2998 111
2999 \end_layout
3000
3001 \end_inset
3002 </cell>
3003 </row>
3004 <row>
3005 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3006 \begin_inset Text
3007
3008 \begin_layout Standard
3009
3010 \series bold
3011 Lassini
3012 \end_layout
3013
3014 \end_inset
3015 </cell>
3016 <cell alignment="center" valignment="top" topline="true" usebox="none">
3017 \begin_inset Text
3018
3019 \begin_layout Standard
3020 Giancarlo
3021 \end_layout
3022
3023 \end_inset
3024 </cell>
3025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3026 \begin_inset Text
3027
3028 \begin_layout Standard
3029 111
3030 \end_layout
3031
3032 \end_inset
3033 </cell>
3034 </row>
3035 <row>
3036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3037 \begin_inset Text
3038
3039 \begin_layout Standard
3040
3041 \series bold
3042 Malfatti
3043 \end_layout
3044
3045 \end_inset
3046 </cell>
3047 <cell alignment="center" valignment="top" topline="true" usebox="none">
3048 \begin_inset Text
3049
3050 \begin_layout Standard
3051 Luciano
3052 \end_layout
3053
3054 \end_inset
3055 </cell>
3056 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3057 \begin_inset Text
3058
3059 \begin_layout Standard
3060 111
3061 \end_layout
3062
3063 \end_inset
3064 </cell>
3065 </row>
3066 <row>
3067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3068 \begin_inset Text
3069
3070 \begin_layout Standard
3071
3072 \series bold
3073 Malfatti
3074 \end_layout
3075
3076 \end_inset
3077 </cell>
3078 <cell alignment="center" valignment="top" topline="true" usebox="none">
3079 \begin_inset Text
3080
3081 \begin_layout Standard
3082 Valeriano
3083 \end_layout
3084
3085 \end_inset
3086 </cell>
3087 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3088 \begin_inset Text
3089
3090 \begin_layout Standard
3091 111
3092 \end_layout
3093
3094 \end_inset
3095 </cell>
3096 </row>
3097 <row>
3098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3099 \begin_inset Text
3100
3101 \begin_layout Standard
3102
3103 \series bold
3104 Meneguzzo
3105 \end_layout
3106
3107 \end_inset
3108 </cell>
3109 <cell alignment="center" valignment="top" topline="true" usebox="none">
3110 \begin_inset Text
3111
3112 \begin_layout Standard
3113 Roberto
3114 \end_layout
3115
3116 \end_inset
3117 </cell>
3118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3119 \begin_inset Text
3120
3121 \begin_layout Standard
3122 111
3123 \end_layout
3124
3125 \end_inset
3126 </cell>
3127 </row>
3128 <row>
3129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3130 \begin_inset Text
3131
3132 \begin_layout Standard
3133
3134 \series bold
3135 Mezzadra
3136 \end_layout
3137
3138 \end_inset
3139 </cell>
3140 <cell alignment="center" valignment="top" topline="true" usebox="none">
3141 \begin_inset Text
3142
3143 \begin_layout Standard
3144 Roberto
3145 \end_layout
3146
3147 \end_inset
3148 </cell>
3149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3150 \begin_inset Text
3151
3152 \begin_layout Standard
3153 111
3154 \end_layout
3155
3156 \end_inset
3157 </cell>
3158 </row>
3159 <row>
3160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3161 \begin_inset Text
3162
3163 \begin_layout Standard
3164
3165 \series bold
3166 Pirpamer
3167 \end_layout
3168
3169 \end_inset
3170 </cell>
3171 <cell alignment="center" valignment="top" topline="true" usebox="none">
3172 \begin_inset Text
3173
3174 \begin_layout Standard
3175 Erich
3176 \end_layout
3177
3178 \end_inset
3179 </cell>
3180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3181 \begin_inset Text
3182
3183 \begin_layout Standard
3184 111
3185 \end_layout
3186
3187 \end_inset
3188 </cell>
3189 </row>
3190 <row>
3191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3192 \begin_inset Text
3193
3194 \begin_layout Standard
3195
3196 \series bold
3197 Pochiesa
3198 \end_layout
3199
3200 \end_inset
3201 </cell>
3202 <cell alignment="center" valignment="top" topline="true" usebox="none">
3203 \begin_inset Text
3204
3205 \begin_layout Standard
3206 Paolo
3207 \end_layout
3208
3209 \end_inset
3210 </cell>
3211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3212 \begin_inset Text
3213
3214 \begin_layout Standard
3215 111, 222
3216 \end_layout
3217
3218 \end_inset
3219 </cell>
3220 </row>
3221 <row>
3222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3223 \begin_inset Text
3224
3225 \begin_layout Standard
3226
3227 \series bold
3228 Radina
3229 \end_layout
3230
3231 \end_inset
3232 </cell>
3233 <cell alignment="center" valignment="top" topline="true" usebox="none">
3234 \begin_inset Text
3235
3236 \begin_layout Standard
3237 Claudio
3238 \end_layout
3239
3240 \end_inset
3241 </cell>
3242 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3243 \begin_inset Text
3244
3245 \begin_layout Standard
3246 111
3247 \end_layout
3248
3249 \end_inset
3250 </cell>
3251 </row>
3252 <row>
3253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3254 \begin_inset Text
3255
3256 \begin_layout Standard
3257
3258 \series bold
3259 Stuffer
3260 \end_layout
3261
3262 \end_inset
3263 </cell>
3264 <cell alignment="center" valignment="top" topline="true" usebox="none">
3265 \begin_inset Text
3266
3267 \begin_layout Standard
3268 Oskar
3269 \end_layout
3270
3271 \end_inset
3272 </cell>
3273 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3274 \begin_inset Text
3275
3276 \begin_layout Standard
3277 111
3278 \end_layout
3279
3280 \end_inset
3281 </cell>
3282 </row>
3283 <row>
3284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3285 \begin_inset Text
3286
3287 \begin_layout Standard
3288
3289 \series bold
3290 Tacchelli
3291 \end_layout
3292
3293 \end_inset
3294 </cell>
3295 <cell alignment="center" valignment="top" topline="true" usebox="none">
3296 \begin_inset Text
3297
3298 \begin_layout Standard
3299 Ugo
3300 \end_layout
3301
3302 \end_inset
3303 </cell>
3304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3305 \begin_inset Text
3306
3307 \begin_layout Standard
3308 111
3309 \end_layout
3310
3311 \end_inset
3312 </cell>
3313 </row>
3314 <row>
3315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3316 \begin_inset Text
3317
3318 \begin_layout Standard
3319
3320 \series bold
3321 Tezzele
3322 \end_layout
3323
3324 \end_inset
3325 </cell>
3326 <cell alignment="center" valignment="top" topline="true" usebox="none">
3327 \begin_inset Text
3328
3329 \begin_layout Standard
3330 Margit
3331 \end_layout
3332
3333 \end_inset
3334 </cell>
3335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3336 \begin_inset Text
3337
3338 \begin_layout Standard
3339 111
3340 \end_layout
3341
3342 \end_inset
3343 </cell>
3344 </row>
3345 <row>
3346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3347 \begin_inset Text
3348
3349 \begin_layout Standard
3350
3351 \series bold
3352 Unterkalmsteiner
3353 \end_layout
3354
3355 \end_inset
3356 </cell>
3357 <cell alignment="center" valignment="top" topline="true" usebox="none">
3358 \begin_inset Text
3359
3360 \begin_layout Standard
3361 Frieda
3362 \end_layout
3363
3364 \end_inset
3365 </cell>
3366 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3367 \begin_inset Text
3368
3369 \begin_layout Standard
3370 111
3371 \end_layout
3372
3373 \end_inset
3374 </cell>
3375 </row>
3376 <row>
3377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3378 \begin_inset Text
3379
3380 \begin_layout Standard
3381
3382 \series bold
3383 Vieider
3384 \end_layout
3385
3386 \end_inset
3387 </cell>
3388 <cell alignment="center" valignment="top" topline="true" usebox="none">
3389 \begin_inset Text
3390
3391 \begin_layout Standard
3392 Hilde
3393 \end_layout
3394
3395 \end_inset
3396 </cell>
3397 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3398 \begin_inset Text
3399
3400 \begin_layout Standard
3401 111
3402 \end_layout
3403
3404 \end_inset
3405 </cell>
3406 </row>
3407 <row>
3408 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3409 \begin_inset Text
3410
3411 \begin_layout Standard
3412
3413 \series bold
3414 Vigna
3415 \end_layout
3416
3417 \end_inset
3418 </cell>
3419 <cell alignment="center" valignment="top" topline="true" usebox="none">
3420 \begin_inset Text
3421
3422 \begin_layout Standard
3423 Jürgen
3424 \end_layout
3425
3426 \end_inset
3427 </cell>
3428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3429 \begin_inset Text
3430
3431 \begin_layout Standard
3432 111
3433 \end_layout
3434
3435 \end_inset
3436 </cell>
3437 </row>
3438 <row>
3439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3440 \begin_inset Text
3441
3442 \begin_layout Standard
3443
3444 \series bold
3445 Weber
3446 \end_layout
3447
3448 \end_inset
3449 </cell>
3450 <cell alignment="center" valignment="top" topline="true" usebox="none">
3451 \begin_inset Text
3452
3453 \begin_layout Standard
3454 Maurizio
3455 \end_layout
3456
3457 \end_inset
3458 </cell>
3459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3460 \begin_inset Text
3461
3462 \begin_layout Standard
3463 111
3464 \end_layout
3465
3466 \end_inset
3467 </cell>
3468 </row>
3469 <row bottomline="true">
3470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3471 \begin_inset Text
3472
3473 \begin_layout Standard
3474
3475 \series bold
3476 Winkler
3477 \end_layout
3478
3479 \end_inset
3480 </cell>
3481 <cell alignment="center" valignment="top" topline="true" usebox="none">
3482 \begin_inset Text
3483
3484 \begin_layout Standard
3485 Franz
3486 \end_layout
3487
3488 \end_inset
3489 </cell>
3490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3491 \begin_inset Text
3492
3493 \begin_layout Standard
3494 111
3495 \end_layout
3496
3497 \end_inset
3498 </cell>
3499 </row>
3500 <row bottomline="true">
3501 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3502 \begin_inset Text
3503
3504 \begin_layout Standard
3505  
3506 \end_layout
3507
3508 \end_inset
3509 </cell>
3510 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3511 \begin_inset Text
3512
3513 \begin_layout Standard
3514
3515 \end_layout
3516
3517 \end_inset
3518 </cell>
3519 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3520 \begin_inset Text
3521
3522 \begin_layout Standard
3523
3524 \end_layout
3525
3526 \end_inset
3527 </cell>
3528 </row>
3529 <row>
3530 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3531 \begin_inset Text
3532
3533 \begin_layout Standard
3534
3535 \series bold
3536 Annovi
3537 \end_layout
3538
3539 \end_inset
3540 </cell>
3541 <cell alignment="center" valignment="top" topline="true" usebox="none">
3542 \begin_inset Text
3543
3544 \begin_layout Standard
3545 Silvia
3546 \end_layout
3547
3548 \end_inset
3549 </cell>
3550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3551 \begin_inset Text
3552
3553 \begin_layout Standard
3554 555
3555 \end_layout
3556
3557 \end_inset
3558 </cell>
3559 </row>
3560 <row>
3561 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3562 \begin_inset Text
3563
3564 \begin_layout Standard
3565
3566 \series bold
3567 Bertoli
3568 \end_layout
3569
3570 \end_inset
3571 </cell>
3572 <cell alignment="center" valignment="top" topline="true" usebox="none">
3573 \begin_inset Text
3574
3575 \begin_layout Standard
3576 Stefano
3577 \end_layout
3578
3579 \end_inset
3580 </cell>
3581 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3582 \begin_inset Text
3583
3584 \begin_layout Standard
3585 555
3586 \end_layout
3587
3588 \end_inset
3589 </cell>
3590 </row>
3591 <row>
3592 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3593 \begin_inset Text
3594
3595 \begin_layout Standard
3596
3597 \series bold
3598 Bozzi
3599 \end_layout
3600
3601 \end_inset
3602 </cell>
3603 <cell alignment="center" valignment="top" topline="true" usebox="none">
3604 \begin_inset Text
3605
3606 \begin_layout Standard
3607 Walter
3608 \end_layout
3609
3610 \end_inset
3611 </cell>
3612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3613 \begin_inset Text
3614
3615 \begin_layout Standard
3616 555
3617 \end_layout
3618
3619 \end_inset
3620 </cell>
3621 </row>
3622 <row>
3623 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3624 \begin_inset Text
3625
3626 \begin_layout Standard
3627
3628 \series bold
3629 Cachia
3630 \end_layout
3631
3632 \end_inset
3633 </cell>
3634 <cell alignment="center" valignment="top" topline="true" usebox="none">
3635 \begin_inset Text
3636
3637 \begin_layout Standard
3638 Maria
3639 \end_layout
3640
3641 \end_inset
3642 </cell>
3643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3644 \begin_inset Text
3645
3646 \begin_layout Standard
3647 555
3648 \end_layout
3649
3650 \end_inset
3651 </cell>
3652 </row>
3653 <row>
3654 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3655 \begin_inset Text
3656
3657 \begin_layout Standard
3658
3659 \series bold
3660 Cachia
3661 \end_layout
3662
3663 \end_inset
3664 </cell>
3665 <cell alignment="center" valignment="top" topline="true" usebox="none">
3666 \begin_inset Text
3667
3668 \begin_layout Standard
3669 Maurizio
3670 \end_layout
3671
3672 \end_inset
3673 </cell>
3674 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3675 \begin_inset Text
3676
3677 \begin_layout Standard
3678 555
3679 \end_layout
3680
3681 \end_inset
3682 </cell>
3683 </row>
3684 <row>
3685 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3686 \begin_inset Text
3687
3688 \begin_layout Standard
3689
3690 \series bold
3691 Cinquemani
3692 \end_layout
3693
3694 \end_inset
3695 </cell>
3696 <cell alignment="center" valignment="top" topline="true" usebox="none">
3697 \begin_inset Text
3698
3699 \begin_layout Standard
3700 Giusi
3701 \end_layout
3702
3703 \end_inset
3704 </cell>
3705 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3706 \begin_inset Text
3707
3708 \begin_layout Standard
3709 555
3710 \end_layout
3711
3712 \end_inset
3713 </cell>
3714 </row>
3715 <row>
3716 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3717 \begin_inset Text
3718
3719 \begin_layout Standard
3720
3721 \series bold
3722 Colin
3723 \end_layout
3724
3725 \end_inset
3726 </cell>
3727 <cell alignment="center" valignment="top" topline="true" usebox="none">
3728 \begin_inset Text
3729
3730 \begin_layout Standard
3731 Bernard
3732 \end_layout
3733
3734 \end_inset
3735 </cell>
3736 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3737 \begin_inset Text
3738
3739 \begin_layout Standard
3740 555
3741 \end_layout
3742
3743 \end_inset
3744 </cell>
3745 </row>
3746 <row>
3747 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3748 \begin_inset Text
3749
3750 \begin_layout Standard
3751
3752 \series bold
3753 Concli
3754 \end_layout
3755
3756 \end_inset
3757 </cell>
3758 <cell alignment="center" valignment="top" topline="true" usebox="none">
3759 \begin_inset Text
3760
3761 \begin_layout Standard
3762 Gianfranco
3763 \end_layout
3764
3765 \end_inset
3766 </cell>
3767 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3768 \begin_inset Text
3769
3770 \begin_layout Standard
3771 555
3772 \end_layout
3773
3774 \end_inset
3775 </cell>
3776 </row>
3777 <row>
3778 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3779 \begin_inset Text
3780
3781 \begin_layout Standard
3782
3783 \series bold
3784 Dal Bosco
3785 \end_layout
3786
3787 \end_inset
3788 </cell>
3789 <cell alignment="center" valignment="top" topline="true" usebox="none">
3790 \begin_inset Text
3791
3792 \begin_layout Standard
3793 Carolina
3794 \end_layout
3795
3796 \end_inset
3797 </cell>
3798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3799 \begin_inset Text
3800
3801 \begin_layout Standard
3802 555
3803 \end_layout
3804
3805 \end_inset
3806 </cell>
3807 </row>
3808 <row>
3809 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3810 \begin_inset Text
3811
3812 \begin_layout Standard
3813
3814 \series bold
3815 Dalpiaz
3816 \end_layout
3817
3818 \end_inset
3819 </cell>
3820 <cell alignment="center" valignment="top" topline="true" usebox="none">
3821 \begin_inset Text
3822
3823 \begin_layout Standard
3824 Annamaria
3825 \end_layout
3826
3827 \end_inset
3828 </cell>
3829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3830 \begin_inset Text
3831
3832 \begin_layout Standard
3833 555
3834 \end_layout
3835
3836 \end_inset
3837 </cell>
3838 </row>
3839 <row>
3840 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3841 \begin_inset Text
3842
3843 \begin_layout Standard
3844
3845 \series bold
3846 Feliciello
3847 \end_layout
3848
3849 \end_inset
3850 </cell>
3851 <cell alignment="center" valignment="top" topline="true" usebox="none">
3852 \begin_inset Text
3853
3854 \begin_layout Standard
3855 Domenico
3856 \end_layout
3857
3858 \end_inset
3859 </cell>
3860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3861 \begin_inset Text
3862
3863 \begin_layout Standard
3864 555
3865 \end_layout
3866
3867 \end_inset
3868 </cell>
3869 </row>
3870 <row>
3871 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3872 \begin_inset Text
3873
3874 \begin_layout Standard
3875
3876 \series bold
3877 Focarelli
3878 \end_layout
3879
3880 \end_inset
3881 </cell>
3882 <cell alignment="center" valignment="top" topline="true" usebox="none">
3883 \begin_inset Text
3884
3885 \begin_layout Standard
3886 Paola
3887 \end_layout
3888
3889 \end_inset
3890 </cell>
3891 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3892 \begin_inset Text
3893
3894 \begin_layout Standard
3895 555
3896 \end_layout
3897
3898 \end_inset
3899 </cell>
3900 </row>
3901 <row>
3902 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3903 \begin_inset Text
3904
3905 \begin_layout Standard
3906
3907 \series bold
3908 Galletti
3909 \end_layout
3910
3911 \end_inset
3912 </cell>
3913 <cell alignment="center" valignment="top" topline="true" usebox="none">
3914 \begin_inset Text
3915
3916 \begin_layout Standard
3917 Oreste
3918 \end_layout
3919
3920 \end_inset
3921 </cell>
3922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3923 \begin_inset Text
3924
3925 \begin_layout Standard
3926 555
3927 \end_layout
3928
3929 \end_inset
3930 </cell>
3931 </row>
3932 <row>
3933 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3934 \begin_inset Text
3935
3936 \begin_layout Standard
3937
3938 \series bold
3939 Gasparini
3940 \end_layout
3941
3942 \end_inset
3943 </cell>
3944 <cell alignment="center" valignment="top" topline="true" usebox="none">
3945 \begin_inset Text
3946
3947 \begin_layout Standard
3948 Franca
3949 \end_layout
3950
3951 \end_inset
3952 </cell>
3953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3954 \begin_inset Text
3955
3956 \begin_layout Standard
3957 555
3958 \end_layout
3959
3960 \end_inset
3961 </cell>
3962 </row>
3963 <row>
3964 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3965 \begin_inset Text
3966
3967 \begin_layout Standard
3968
3969 \series bold
3970 Rizzardi
3971 \end_layout
3972
3973 \end_inset
3974 </cell>
3975 <cell alignment="center" valignment="top" topline="true" usebox="none">
3976 \begin_inset Text
3977
3978 \begin_layout Standard
3979 Paola
3980 \end_layout
3981
3982 \end_inset
3983 </cell>
3984 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3985 \begin_inset Text
3986
3987 \begin_layout Standard
3988 555
3989 \end_layout
3990
3991 \end_inset
3992 </cell>
3993 </row>
3994 <row>
3995 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3996 \begin_inset Text
3997
3998 \begin_layout Standard
3999
4000 \series bold
4001 Lassini
4002 \end_layout
4003
4004 \end_inset
4005 </cell>
4006 <cell alignment="center" valignment="top" topline="true" usebox="none">
4007 \begin_inset Text
4008
4009 \begin_layout Standard
4010 Giancarlo
4011 \end_layout
4012
4013 \end_inset
4014 </cell>
4015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4016 \begin_inset Text
4017
4018 \begin_layout Standard
4019 555
4020 \end_layout
4021
4022 \end_inset
4023 </cell>
4024 </row>
4025 <row>
4026 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4027 \begin_inset Text
4028
4029 \begin_layout Standard
4030
4031 \series bold
4032 Malfatti
4033 \end_layout
4034
4035 \end_inset
4036 </cell>
4037 <cell alignment="center" valignment="top" topline="true" usebox="none">
4038 \begin_inset Text
4039
4040 \begin_layout Standard
4041 Luciano
4042 \end_layout
4043
4044 \end_inset
4045 </cell>
4046 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4047 \begin_inset Text
4048
4049 \begin_layout Standard
4050 555
4051 \end_layout
4052
4053 \end_inset
4054 </cell>
4055 </row>
4056 <row>
4057 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4058 \begin_inset Text
4059
4060 \begin_layout Standard
4061
4062 \series bold
4063 Malfatti
4064 \end_layout
4065
4066 \end_inset
4067 </cell>
4068 <cell alignment="center" valignment="top" topline="true" usebox="none">
4069 \begin_inset Text
4070
4071 \begin_layout Standard
4072 Valeriano
4073 \end_layout
4074
4075 \end_inset
4076 </cell>
4077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4078 \begin_inset Text
4079
4080 \begin_layout Standard
4081 555
4082 \end_layout
4083
4084 \end_inset
4085 </cell>
4086 </row>
4087 <row>
4088 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4089 \begin_inset Text
4090
4091 \begin_layout Standard
4092
4093 \series bold
4094 Meneguzzo
4095 \end_layout
4096
4097 \end_inset
4098 </cell>
4099 <cell alignment="center" valignment="top" topline="true" usebox="none">
4100 \begin_inset Text
4101
4102 \begin_layout Standard
4103 Roberto
4104 \end_layout
4105
4106 \end_inset
4107 </cell>
4108 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4109 \begin_inset Text
4110
4111 \begin_layout Standard
4112 555
4113 \end_layout
4114
4115 \end_inset
4116 </cell>
4117 </row>
4118 <row>
4119 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4120 \begin_inset Text
4121
4122 \begin_layout Standard
4123
4124 \series bold
4125 Mezzadra
4126 \end_layout
4127
4128 \end_inset
4129 </cell>
4130 <cell alignment="center" valignment="top" topline="true" usebox="none">
4131 \begin_inset Text
4132
4133 \begin_layout Standard
4134 Roberto
4135 \end_layout
4136
4137 \end_inset
4138 </cell>
4139 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4140 \begin_inset Text
4141
4142 \begin_layout Standard
4143 555
4144 \end_layout
4145
4146 \end_inset
4147 </cell>
4148 </row>
4149 <row>
4150 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4151 \begin_inset Text
4152
4153 \begin_layout Standard
4154
4155 \series bold
4156 Pirpamer
4157 \end_layout
4158
4159 \end_inset
4160 </cell>
4161 <cell alignment="center" valignment="top" topline="true" usebox="none">
4162 \begin_inset Text
4163
4164 \begin_layout Standard
4165 Erich
4166 \end_layout
4167
4168 \end_inset
4169 </cell>
4170 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4171 \begin_inset Text
4172
4173 \begin_layout Standard
4174 555
4175 \end_layout
4176
4177 \end_inset
4178 </cell>
4179 </row>
4180 <row>
4181 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4182 \begin_inset Text
4183
4184 \begin_layout Standard
4185
4186 \series bold
4187 Pochiesa
4188 \end_layout
4189
4190 \end_inset
4191 </cell>
4192 <cell alignment="center" valignment="top" topline="true" usebox="none">
4193 \begin_inset Text
4194
4195 \begin_layout Standard
4196 Paolo
4197 \end_layout
4198
4199 \end_inset
4200 </cell>
4201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4202 \begin_inset Text
4203
4204 \begin_layout Standard
4205 555, 222
4206 \end_layout
4207
4208 \end_inset
4209 </cell>
4210 </row>
4211 <row>
4212 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4213 \begin_inset Text
4214
4215 \begin_layout Standard
4216
4217 \series bold
4218 Radina
4219 \end_layout
4220
4221 \end_inset
4222 </cell>
4223 <cell alignment="center" valignment="top" topline="true" usebox="none">
4224 \begin_inset Text
4225
4226 \begin_layout Standard
4227 Claudio
4228 \end_layout
4229
4230 \end_inset
4231 </cell>
4232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4233 \begin_inset Text
4234
4235 \begin_layout Standard
4236 555
4237 \end_layout
4238
4239 \end_inset
4240 </cell>
4241 </row>
4242 <row>
4243 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4244 \begin_inset Text
4245
4246 \begin_layout Standard
4247
4248 \series bold
4249 Stuffer
4250 \end_layout
4251
4252 \end_inset
4253 </cell>
4254 <cell alignment="center" valignment="top" topline="true" usebox="none">
4255 \begin_inset Text
4256
4257 \begin_layout Standard
4258 Oskar
4259 \end_layout
4260
4261 \end_inset
4262 </cell>
4263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4264 \begin_inset Text
4265
4266 \begin_layout Standard
4267 555
4268 \end_layout
4269
4270 \end_inset
4271 </cell>
4272 </row>
4273 <row>
4274 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4275 \begin_inset Text
4276
4277 \begin_layout Standard
4278
4279 \series bold
4280 Tacchelli
4281 \end_layout
4282
4283 \end_inset
4284 </cell>
4285 <cell alignment="center" valignment="top" topline="true" usebox="none">
4286 \begin_inset Text
4287
4288 \begin_layout Standard
4289 Ugo
4290 \end_layout
4291
4292 \end_inset
4293 </cell>
4294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4295 \begin_inset Text
4296
4297 \begin_layout Standard
4298 555
4299 \end_layout
4300
4301 \end_inset
4302 </cell>
4303 </row>
4304 <row>
4305 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4306 \begin_inset Text
4307
4308 \begin_layout Standard
4309
4310 \series bold
4311 Tezzele
4312 \end_layout
4313
4314 \end_inset
4315 </cell>
4316 <cell alignment="center" valignment="top" topline="true" usebox="none">
4317 \begin_inset Text
4318
4319 \begin_layout Standard
4320 Margit
4321 \end_layout
4322
4323 \end_inset
4324 </cell>
4325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4326 \begin_inset Text
4327
4328 \begin_layout Standard
4329 555
4330 \end_layout
4331
4332 \end_inset
4333 </cell>
4334 </row>
4335 <row>
4336 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4337 \begin_inset Text
4338
4339 \begin_layout Standard
4340
4341 \series bold
4342 Unterkalmsteiner
4343 \end_layout
4344
4345 \end_inset
4346 </cell>
4347 <cell alignment="center" valignment="top" topline="true" usebox="none">
4348 \begin_inset Text
4349
4350 \begin_layout Standard
4351 Frieda
4352 \end_layout
4353
4354 \end_inset
4355 </cell>
4356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4357 \begin_inset Text
4358
4359 \begin_layout Standard
4360 555
4361 \end_layout
4362
4363 \end_inset
4364 </cell>
4365 </row>
4366 <row>
4367 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4368 \begin_inset Text
4369
4370 \begin_layout Standard
4371
4372 \series bold
4373 Vieider
4374 \end_layout
4375
4376 \end_inset
4377 </cell>
4378 <cell alignment="center" valignment="top" topline="true" usebox="none">
4379 \begin_inset Text
4380
4381 \begin_layout Standard
4382 Hilde
4383 \end_layout
4384
4385 \end_inset
4386 </cell>
4387 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4388 \begin_inset Text
4389
4390 \begin_layout Standard
4391 555
4392 \end_layout
4393
4394 \end_inset
4395 </cell>
4396 </row>
4397 <row>
4398 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4399 \begin_inset Text
4400
4401 \begin_layout Standard
4402
4403 \series bold
4404 Vigna
4405 \end_layout
4406
4407 \end_inset
4408 </cell>
4409 <cell alignment="center" valignment="top" topline="true" usebox="none">
4410 \begin_inset Text
4411
4412 \begin_layout Standard
4413 Jürgen
4414 \end_layout
4415
4416 \end_inset
4417 </cell>
4418 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4419 \begin_inset Text
4420
4421 \begin_layout Standard
4422 999
4423 \end_layout
4424
4425 \end_inset
4426 </cell>
4427 </row>
4428 <row>
4429 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4430 \begin_inset Text
4431
4432 \begin_layout Standard
4433
4434 \series bold
4435 Weber
4436 \end_layout
4437
4438 \end_inset
4439 </cell>
4440 <cell alignment="center" valignment="top" topline="true" usebox="none">
4441 \begin_inset Text
4442
4443 \begin_layout Standard
4444 Maurizio
4445 \end_layout
4446
4447 \end_inset
4448 </cell>
4449 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4450 \begin_inset Text
4451
4452 \begin_layout Standard
4453 555
4454 \end_layout
4455
4456 \end_inset
4457 </cell>
4458 </row>
4459 <row bottomline="true">
4460 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4461 \begin_inset Text
4462
4463 \begin_layout Standard
4464
4465 \series bold
4466 Winkler
4467 \end_layout
4468
4469 \end_inset
4470 </cell>
4471 <cell alignment="center" valignment="top" topline="true" usebox="none">
4472 \begin_inset Text
4473
4474 \begin_layout Standard
4475 Franz
4476 \end_layout
4477
4478 \end_inset
4479 </cell>
4480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4481 \begin_inset Text
4482
4483 \begin_layout Standard
4484 555
4485 \end_layout
4486
4487 \end_inset
4488 </cell>
4489 </row>
4490 <row bottomline="true" endlastfoot="true">
4491 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4492 \begin_inset Text
4493
4494 \begin_layout Standard
4495 fin
4496 \end_layout
4497
4498 \end_inset
4499 </cell>
4500 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4501 \begin_inset Text
4502
4503 \begin_layout Standard
4504
4505 \end_layout
4506
4507 \end_inset
4508 </cell>
4509 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4510 \begin_inset Text
4511
4512 \begin_layout Standard
4513
4514 \end_layout
4515
4516 \end_inset
4517 </cell>
4518 </row>
4519 </lyxtabular>
4520
4521 \end_inset
4522
4523
4524 \begin_inset ERT
4525 status collapsed
4526
4527 \begin_layout Standard
4528
4529
4530 \backslash
4531 addtocounter{table}{-1}
4532 \end_layout
4533
4534 \end_inset
4535
4536
4537 \begin_inset Note Note
4538 status open
4539
4540 \begin_layout Standard
4541 Para comprender el uso de este comando, lee al final de la sección\InsetSpace ~
4542 2.6.2 la
4543  primera nota resaltada en gris.
4544  
4545 \end_layout
4546
4547 \end_inset
4548
4549
4550 \end_layout
4551
4552 \begin_layout Subsection
4553 Notas al pie en Tablas Largas
4554 \begin_inset LatexCommand label
4555 name "sub:Notas-al-pie-en-Tablas-Largas"
4556
4557 \end_inset
4558
4559
4560 \begin_inset LatexCommand index
4561 name "Tablas Largas ! Notas al pie"
4562
4563 \end_inset
4564
4565
4566 \end_layout
4567
4568 \begin_layout Standard
4569 Se pueden insertar notas al pie en cada celda de una tabla larga.
4570  Aparecen abajo en la página donde esté la celda con la nota.
4571  La tabla\InsetSpace ~
4572
4573 \begin_inset LatexCommand ref
4574 reference "tab:DifEncabezados"
4575
4576 \end_inset
4577
4578  tiene un ejemplo de nota al pie.
4579 \end_layout
4580
4581 \begin_layout Subsection
4582 Encabezados en Tablas Largas
4583 \begin_inset LatexCommand index
4584 name "Tablas Largas ! Encabezados"
4585
4586 \end_inset
4587
4588
4589 \end_layout
4590
4591 \begin_layout Standard
4592 Una tabla larga no se puede poner flotante porque los flotantes solo pueden
4593  estar en una página, aunque el entorno 
4594 \family sans
4595 encabezado
4596 \family default
4597  de flotantes sí puede usarse para tablas largas.
4598 \end_layout
4599
4600 \begin_layout Standard
4601 LyX todavía no soporta totalmente encabezados en tablas largas, de modo
4602  que hay que crearlos de la sigiente forma:
4603 \end_layout
4604
4605 \begin_layout Enumerate
4606 Crea una tabla larga.
4607 \end_layout
4608
4609 \begin_layout Enumerate
4610 Marca la primera fila y deshabilita su línea superior.
4611 \end_layout
4612
4613 \begin_layout Enumerate
4614 Inserta un encabezado mediante el menú 
4615 \family sans
4616 Insertar\SpecialChar \menuseparator
4617 Encabezado
4618 \family default
4619  en la primera celda.
4620 \newline
4621 También puedes añadir un 
4622 \family sans
4623 título breve
4624 \family default
4625  para el encabezado.
4626 \end_layout
4627
4628 \begin_layout Enumerate
4629 Inserta un 
4630 \begin_inset Quotes eld
4631 \end_inset
4632
4633
4634 \series bold
4635
4636 \backslash
4637
4638 \backslash
4639 %
4640 \series default
4641
4642 \begin_inset Quotes erd
4643 \end_inset
4644
4645  como ERT detrás del encabezado.
4646 \end_layout
4647
4648 \begin_layout Standard
4649 En la Lista de Tablas aparecerá el título breve en vez del título completo.
4650  El 
4651 \series bold
4652
4653 \begin_inset Quotes eld
4654 \end_inset
4655
4656
4657 \backslash
4658
4659 \backslash
4660 %
4661 \series default
4662
4663 \begin_inset Quotes erd
4664 \end_inset
4665
4666  detrás del encabezado elimina las líneas verticales entre las siguientes
4667  celdas de la fila.
4668  Ahora, la primera fila de la tabla es solo una fila postiza para el encabezado,
4669  la tabla real comienza en la segunda fila.
4670 \end_layout
4671
4672 \begin_layout Standard
4673 He aquí una pequeña tabla larga para mostrar cómo funciona:
4674 \end_layout
4675
4676 \begin_layout Standard
4677 \begin_inset Tabular
4678 <lyxtabular version="3" rows="6" columns="5">
4679 <features islongtable="true">
4680 <column alignment="center" valignment="top" leftline="true" width="0">
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" rightline="true" width="0">
4685 <row>
4686 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4687 \begin_inset Text
4688
4689 \begin_layout Standard
4690 \begin_inset Caption
4691
4692 \begin_layout Standard
4693 Tabla larga con encabezado
4694 \begin_inset OptArg
4695 status collapsed
4696
4697 \begin_layout Standard
4698 Tabla larga con encabezado
4699 \end_layout
4700
4701 \end_inset
4702
4703
4704 \end_layout
4705
4706 \end_inset
4707
4708
4709 \begin_inset ERT
4710 status collapsed
4711
4712 \begin_layout Standard
4713
4714
4715 \backslash
4716
4717 \backslash
4718 %
4719 \end_layout
4720
4721 \end_inset
4722
4723
4724 \end_layout
4725
4726 \end_inset
4727 </cell>
4728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4729 \begin_inset Text
4730
4731 \begin_layout Standard
4732
4733 \end_layout
4734
4735 \end_inset
4736 </cell>
4737 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4738 \begin_inset Text
4739
4740 \begin_layout Standard
4741
4742 \end_layout
4743
4744 \end_inset
4745 </cell>
4746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4747 \begin_inset Text
4748
4749 \begin_layout Standard
4750
4751 \end_layout
4752
4753 \end_inset
4754 </cell>
4755 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4756 \begin_inset Text
4757
4758 \begin_layout Standard
4759
4760 \end_layout
4761
4762 \end_inset
4763 </cell>
4764 </row>
4765 <row topline="true">
4766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4767 \begin_inset Text
4768
4769 \begin_layout Standard
4770 1
4771 \end_layout
4772
4773 \end_inset
4774 </cell>
4775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4776 \begin_inset Text
4777
4778 \begin_layout Standard
4779 2
4780 \end_layout
4781
4782 \end_inset
4783 </cell>
4784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4785 \begin_inset Text
4786
4787 \begin_layout Standard
4788 3
4789 \end_layout
4790
4791 \end_inset
4792 </cell>
4793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4794 \begin_inset Text
4795
4796 \begin_layout Standard
4797 4
4798 \end_layout
4799
4800 \end_inset
4801 </cell>
4802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4803 \begin_inset Text
4804
4805 \begin_layout Standard
4806 5
4807 \end_layout
4808
4809 \end_inset
4810 </cell>
4811 </row>
4812 <row topline="true">
4813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4814 \begin_inset Text
4815
4816 \begin_layout Standard
4817 asd
4818 \end_layout
4819
4820 \end_inset
4821 </cell>
4822 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4823 \begin_inset Text
4824
4825 \begin_layout Standard
4826 s
4827 \end_layout
4828
4829 \end_inset
4830 </cell>
4831 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4832 \begin_inset Text
4833
4834 \begin_layout Standard
4835 s
4836 \end_layout
4837
4838 \end_inset
4839 </cell>
4840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4841 \begin_inset Text
4842
4843 \begin_layout Standard
4844 s
4845 \end_layout
4846
4847 \end_inset
4848 </cell>
4849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4850 \begin_inset Text
4851
4852 \begin_layout Standard
4853 asd
4854 \end_layout
4855
4856 \end_inset
4857 </cell>
4858 </row>
4859 <row topline="true">
4860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4861 \begin_inset Text
4862
4863 \begin_layout Standard
4864 asd
4865 \end_layout
4866
4867 \end_inset
4868 </cell>
4869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4870 \begin_inset Text
4871
4872 \begin_layout Standard
4873 s
4874 \end_layout
4875
4876 \end_inset
4877 </cell>
4878 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4879 \begin_inset Text
4880
4881 \begin_layout Standard
4882 s
4883 \end_layout
4884
4885 \end_inset
4886 </cell>
4887 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4888 \begin_inset Text
4889
4890 \begin_layout Standard
4891 s
4892 \end_layout
4893
4894 \end_inset
4895 </cell>
4896 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4897 \begin_inset Text
4898
4899 \begin_layout Standard
4900 asd
4901 \end_layout
4902
4903 \end_inset
4904 </cell>
4905 </row>
4906 <row topline="true">
4907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4908 \begin_inset Text
4909
4910 \begin_layout Standard
4911 asd
4912 \end_layout
4913
4914 \end_inset
4915 </cell>
4916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4917 \begin_inset Text
4918
4919 \begin_layout Standard
4920 s
4921 \end_layout
4922
4923 \end_inset
4924 </cell>
4925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4926 \begin_inset Text
4927
4928 \begin_layout Standard
4929 s
4930 \end_layout
4931
4932 \end_inset
4933 </cell>
4934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4935 \begin_inset Text
4936
4937 \begin_layout Standard
4938 s
4939 \end_layout
4940
4941 \end_inset
4942 </cell>
4943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4944 \begin_inset Text
4945
4946 \begin_layout Standard
4947 asd
4948 \end_layout
4949
4950 \end_inset
4951 </cell>
4952 </row>
4953 <row topline="true" bottomline="true">
4954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4955 \begin_inset Text
4956
4957 \begin_layout Standard
4958 asd
4959 \end_layout
4960
4961 \end_inset
4962 </cell>
4963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4964 \begin_inset Text
4965
4966 \begin_layout Standard
4967 asd
4968 \end_layout
4969
4970 \end_inset
4971 </cell>
4972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4973 \begin_inset Text
4974
4975 \begin_layout Standard
4976 asd
4977 \end_layout
4978
4979 \end_inset
4980 </cell>
4981 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4982 \begin_inset Text
4983
4984 \begin_layout Standard
4985 asd
4986 \end_layout
4987
4988 \end_inset
4989 </cell>
4990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4991 \begin_inset Text
4992
4993 \begin_layout Standard
4994 asd
4995 \end_layout
4996
4997 \end_inset
4998 </cell>
4999 </row>
5000 </lyxtabular>
5001
5002 \end_inset
5003
5004
5005 \end_layout
5006
5007 \begin_layout Standard
5008 \begin_inset VSpace medskip
5009 \end_inset
5010
5011
5012 \begin_inset Note Greyedout
5013 status open
5014
5015 \begin_layout Standard
5016
5017 \series bold
5018 Nota
5019 \series default
5020 : El número de la tabla es incrementado para cada tabla larga, aunque no
5021  pongas encabezado en alguna de ellas.
5022  Por esto podría suceder que, p.\InsetSpace \thinspace{}
5023 e., la tabla\InsetSpace ~
5024 2.4 siga a la tabla\InsetSpace ~
5025 2.1 en la lista
5026  de tablas debido a que hay dos tablas largas sin encabezado.
5027  Para evitarlo, puedes añadir el siguiente comando en ERT detrás de cada
5028  tabla larga sin encabezado:
5029 \end_layout
5030
5031 \begin_layout Standard
5032
5033 \series bold
5034
5035 \backslash
5036 addtocounter{table}{-1}
5037 \end_layout
5038
5039 \end_inset
5040
5041
5042 \end_layout
5043
5044 \begin_layout Standard
5045 \begin_inset Note Greyedout
5046 status open
5047
5048 \begin_layout Standard
5049
5050 \series bold
5051 Nota:
5052 \series default
5053  Si utilizas el paquete de LaTeX 
5054 \series bold
5055 hyperref
5056 \series default
5057
5058 \begin_inset LatexCommand index
5059 name "LaTeX-paquetes ! hyperref"
5060
5061 \end_inset
5062
5063  para enlazar referencias cruzadas en la salida, el enlace a una tabla larga
5064  te llevará siempre al principio del documento.
5065 \end_layout
5066
5067 \end_inset
5068
5069
5070 \end_layout
5071
5072 \begin_layout Subsubsection
5073 Referencias a Tablas Largas
5074 \begin_inset LatexCommand index
5075 name "Tablas Largas ! Referencias a"
5076
5077 \end_inset
5078
5079
5080 \end_layout
5081
5082 \begin_layout Standard
5083 \begin_inset Tabular
5084 <lyxtabular version="3" rows="6" columns="5">
5085 <features islongtable="true">
5086 <column alignment="center" valignment="top" leftline="true" width="0">
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" rightline="true" width="0">
5091 <row>
5092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5093 \begin_inset Text
5094
5095 \begin_layout Standard
5096 \begin_inset Caption
5097
5098 \begin_layout Standard
5099 Tabla larga referenciada
5100 \begin_inset LatexCommand label
5101 name "tab:RefEjemplo"
5102
5103 \end_inset
5104
5105
5106 \end_layout
5107
5108 \end_inset
5109
5110
5111 \begin_inset ERT
5112 status collapsed
5113
5114 \begin_layout Standard
5115
5116
5117 \backslash
5118
5119 \backslash
5120 %
5121 \end_layout
5122
5123 \end_inset
5124
5125
5126 \end_layout
5127
5128 \end_inset
5129 </cell>
5130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5131 \begin_inset Text
5132
5133 \begin_layout Standard
5134
5135 \end_layout
5136
5137 \end_inset
5138 </cell>
5139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5140 \begin_inset Text
5141
5142 \begin_layout Standard
5143
5144 \end_layout
5145
5146 \end_inset
5147 </cell>
5148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5149 \begin_inset Text
5150
5151 \begin_layout Standard
5152
5153 \end_layout
5154
5155 \end_inset
5156 </cell>
5157 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5158 \begin_inset Text
5159
5160 \begin_layout Standard
5161
5162 \end_layout
5163
5164 \end_inset
5165 </cell>
5166 </row>
5167 <row topline="true">
5168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5169 \begin_inset Text
5170
5171 \begin_layout Standard
5172 1
5173 \end_layout
5174
5175 \end_inset
5176 </cell>
5177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5178 \begin_inset Text
5179
5180 \begin_layout Standard
5181 2
5182 \end_layout
5183
5184 \end_inset
5185 </cell>
5186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5187 \begin_inset Text
5188
5189 \begin_layout Standard
5190 3
5191 \end_layout
5192
5193 \end_inset
5194 </cell>
5195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5196 \begin_inset Text
5197
5198 \begin_layout Standard
5199 4
5200 \end_layout
5201
5202 \end_inset
5203 </cell>
5204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5205 \begin_inset Text
5206
5207 \begin_layout Standard
5208 5
5209 \end_layout
5210
5211 \end_inset
5212 </cell>
5213 </row>
5214 <row topline="true">
5215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5216 \begin_inset Text
5217
5218 \begin_layout Standard
5219 asd
5220 \end_layout
5221
5222 \end_inset
5223 </cell>
5224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5225 \begin_inset Text
5226
5227 \begin_layout Standard
5228 s
5229 \end_layout
5230
5231 \end_inset
5232 </cell>
5233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5234 \begin_inset Text
5235
5236 \begin_layout Standard
5237 s
5238 \end_layout
5239
5240 \end_inset
5241 </cell>
5242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5243 \begin_inset Text
5244
5245 \begin_layout Standard
5246 s
5247 \end_layout
5248
5249 \end_inset
5250 </cell>
5251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5252 \begin_inset Text
5253
5254 \begin_layout Standard
5255 asd
5256 \end_layout
5257
5258 \end_inset
5259 </cell>
5260 </row>
5261 <row topline="true">
5262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5263 \begin_inset Text
5264
5265 \begin_layout Standard
5266 asd
5267 \end_layout
5268
5269 \end_inset
5270 </cell>
5271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5272 \begin_inset Text
5273
5274 \begin_layout Standard
5275 s
5276 \end_layout
5277
5278 \end_inset
5279 </cell>
5280 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5281 \begin_inset Text
5282
5283 \begin_layout Standard
5284 s
5285 \end_layout
5286
5287 \end_inset
5288 </cell>
5289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5290 \begin_inset Text
5291
5292 \begin_layout Standard
5293 s
5294 \end_layout
5295
5296 \end_inset
5297 </cell>
5298 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5299 \begin_inset Text
5300
5301 \begin_layout Standard
5302 asd
5303 \end_layout
5304
5305 \end_inset
5306 </cell>
5307 </row>
5308 <row topline="true">
5309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5310 \begin_inset Text
5311
5312 \begin_layout Standard
5313 asd
5314 \end_layout
5315
5316 \end_inset
5317 </cell>
5318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5319 \begin_inset Text
5320
5321 \begin_layout Standard
5322 s
5323 \end_layout
5324
5325 \end_inset
5326 </cell>
5327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5328 \begin_inset Text
5329
5330 \begin_layout Standard
5331 s
5332 \end_layout
5333
5334 \end_inset
5335 </cell>
5336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5337 \begin_inset Text
5338
5339 \begin_layout Standard
5340 s
5341 \end_layout
5342
5343 \end_inset
5344 </cell>
5345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5346 \begin_inset Text
5347
5348 \begin_layout Standard
5349 asd
5350 \end_layout
5351
5352 \end_inset
5353 </cell>
5354 </row>
5355 <row topline="true" bottomline="true">
5356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5357 \begin_inset Text
5358
5359 \begin_layout Standard
5360 asd
5361 \end_layout
5362
5363 \end_inset
5364 </cell>
5365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5366 \begin_inset Text
5367
5368 \begin_layout Standard
5369 sad
5370 \end_layout
5371
5372 \end_inset
5373 </cell>
5374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5375 \begin_inset Text
5376
5377 \begin_layout Standard
5378 asd
5379 \end_layout
5380
5381 \end_inset
5382 </cell>
5383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5384 \begin_inset Text
5385
5386 \begin_layout Standard
5387 asd
5388 \end_layout
5389
5390 \end_inset
5391 </cell>
5392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5393 \begin_inset Text
5394
5395 \begin_layout Standard
5396 asd
5397 \end_layout
5398
5399 \end_inset
5400 </cell>
5401 </row>
5402 </lyxtabular>
5403
5404 \end_inset
5405
5406
5407 \end_layout
5408
5409 \begin_layout Standard
5410 Para referenciar una tabla larga, inserta una etiqueta en el encabezado.Observa
5411  que tienes que añadir el prefijo 
5412 \begin_inset Quotes eld
5413 \end_inset
5414
5415
5416 \emph on
5417 tab
5418 \emph default
5419 :
5420 \begin_inset Quotes erd
5421 \end_inset
5422
5423  manualmente en el campo de etiqueta.
5424  
5425 \end_layout
5426
5427 \begin_layout Standard
5428 Esto es una referencia a la tabla\InsetSpace ~
5429
5430 \begin_inset LatexCommand ref
5431 reference "tab:RefEjemplo"
5432
5433 \end_inset
5434
5435 .
5436 \end_layout
5437
5438 \begin_layout Standard
5439 El formato del encabezado puede configurarse junto con todos los demás encabezad
5440 os del documento mediante el paquete LaTeX 
5441 \series bold
5442 caption
5443 \series default
5444
5445 \begin_inset LatexCommand index
5446 name "LaTeX-paquetes ! caption"
5447
5448 \end_inset
5449
5450 , ver sección\InsetSpace ~
5451  
5452 \begin_inset LatexCommand ref
5453 reference "sec:Formato-de-Encabezados"
5454
5455 \end_inset
5456
5457 .
5458 \end_layout
5459
5460 \begin_layout Subsubsection
5461 Anchura de Encabezado
5462 \begin_inset LatexCommand index
5463 name "Tablas Largas ! Anchura de Encabezados"
5464
5465 \end_inset
5466
5467
5468 \end_layout
5469
5470 \begin_layout Standard
5471 La anchura máxima se define por la longitud 
5472 \series bold
5473
5474 \backslash
5475 LTcapwidth
5476 \series default
5477 .
5478  Por defecto es 4\InsetSpace \thinspace{}
5479 in (4\InsetSpace ~
5480 pulgadas).
5481  Para cambiarla añade el siguiente comando al preámbulo o como ERT en el
5482  documento antes de la tabla larga a la que afecta
5483 \end_layout
5484
5485 \begin_layout Standard
5486
5487 \series bold
5488
5489 \backslash
5490 setlength{
5491 \backslash
5492 LTcapwidth}{ancho}
5493 \end_layout
5494
5495 \begin_layout Standard
5496 donde el ancho puede ser una de las unidades listadas en el apéndice\InsetSpace ~
5497
5498 \begin_inset LatexCommand ref
5499 reference "cha:Unidades-disponibles-en"
5500
5501 \end_inset
5502
5503 .
5504 \end_layout
5505
5506 \begin_layout Standard
5507 Las tablas siguientes muestran la diferencia:
5508 \end_layout
5509
5510 \begin_layout Standard
5511 \begin_inset Tabular
5512 <lyxtabular version="3" rows="6" columns="5">
5513 <features islongtable="true">
5514 <column alignment="center" valignment="top" leftline="true" width="0">
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" rightline="true" width="0">
5519 <row>
5520 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5521 \begin_inset Text
5522
5523 \begin_layout Standard
5524 \begin_inset Caption
5525
5526 \begin_layout Standard
5527 Encabezado completo con ancho predeterminado encabezado completo con ancho
5528  predeterminado encabezado completo con ancho predeterminado
5529 \begin_inset OptArg
5530 status collapsed
5531
5532 \begin_layout Standard
5533 Encabezado con ancho predeterminado
5534 \end_layout
5535
5536 \end_inset
5537
5538
5539 \end_layout
5540
5541 \end_inset
5542
5543
5544 \begin_inset ERT
5545 status collapsed
5546
5547 \begin_layout Standard
5548
5549
5550 \backslash
5551
5552 \backslash
5553 %
5554 \end_layout
5555
5556 \end_inset
5557
5558
5559 \end_layout
5560
5561 \end_inset
5562 </cell>
5563 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5564 \begin_inset Text
5565
5566 \begin_layout Standard
5567
5568 \end_layout
5569
5570 \end_inset
5571 </cell>
5572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5573 \begin_inset Text
5574
5575 \begin_layout Standard
5576
5577 \end_layout
5578
5579 \end_inset
5580 </cell>
5581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5582 \begin_inset Text
5583
5584 \begin_layout Standard
5585
5586 \end_layout
5587
5588 \end_inset
5589 </cell>
5590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5591 \begin_inset Text
5592
5593 \begin_layout Standard
5594
5595 \end_layout
5596
5597 \end_inset
5598 </cell>
5599 </row>
5600 <row topline="true">
5601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5602 \begin_inset Text
5603
5604 \begin_layout Standard
5605 1
5606 \end_layout
5607
5608 \end_inset
5609 </cell>
5610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5611 \begin_inset Text
5612
5613 \begin_layout Standard
5614 2
5615 \end_layout
5616
5617 \end_inset
5618 </cell>
5619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5620 \begin_inset Text
5621
5622 \begin_layout Standard
5623 3
5624 \end_layout
5625
5626 \end_inset
5627 </cell>
5628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5629 \begin_inset Text
5630
5631 \begin_layout Standard
5632 4
5633 \end_layout
5634
5635 \end_inset
5636 </cell>
5637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5638 \begin_inset Text
5639
5640 \begin_layout Standard
5641 5
5642 \end_layout
5643
5644 \end_inset
5645 </cell>
5646 </row>
5647 <row topline="true">
5648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5649 \begin_inset Text
5650
5651 \begin_layout Standard
5652 asd
5653 \end_layout
5654
5655 \end_inset
5656 </cell>
5657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5658 \begin_inset Text
5659
5660 \begin_layout Standard
5661 s
5662 \end_layout
5663
5664 \end_inset
5665 </cell>
5666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5667 \begin_inset Text
5668
5669 \begin_layout Standard
5670 s
5671 \end_layout
5672
5673 \end_inset
5674 </cell>
5675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5676 \begin_inset Text
5677
5678 \begin_layout Standard
5679 s
5680 \end_layout
5681
5682 \end_inset
5683 </cell>
5684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5685 \begin_inset Text
5686
5687 \begin_layout Standard
5688 asd
5689 \end_layout
5690
5691 \end_inset
5692 </cell>
5693 </row>
5694 <row topline="true">
5695 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5696 \begin_inset Text
5697
5698 \begin_layout Standard
5699 asd
5700 \end_layout
5701
5702 \end_inset
5703 </cell>
5704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5705 \begin_inset Text
5706
5707 \begin_layout Standard
5708 s
5709 \end_layout
5710
5711 \end_inset
5712 </cell>
5713 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5714 \begin_inset Text
5715
5716 \begin_layout Standard
5717 s
5718 \end_layout
5719
5720 \end_inset
5721 </cell>
5722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5723 \begin_inset Text
5724
5725 \begin_layout Standard
5726 s
5727 \end_layout
5728
5729 \end_inset
5730 </cell>
5731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5732 \begin_inset Text
5733
5734 \begin_layout Standard
5735 asd
5736 \end_layout
5737
5738 \end_inset
5739 </cell>
5740 </row>
5741 <row topline="true">
5742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5743 \begin_inset Text
5744
5745 \begin_layout Standard
5746 asd
5747 \end_layout
5748
5749 \end_inset
5750 </cell>
5751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5752 \begin_inset Text
5753
5754 \begin_layout Standard
5755 s
5756 \end_layout
5757
5758 \end_inset
5759 </cell>
5760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5761 \begin_inset Text
5762
5763 \begin_layout Standard
5764 s
5765 \end_layout
5766
5767 \end_inset
5768 </cell>
5769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5770 \begin_inset Text
5771
5772 \begin_layout Standard
5773 s
5774 \end_layout
5775
5776 \end_inset
5777 </cell>
5778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5779 \begin_inset Text
5780
5781 \begin_layout Standard
5782 asd
5783 \end_layout
5784
5785 \end_inset
5786 </cell>
5787 </row>
5788 <row topline="true" bottomline="true">
5789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5790 \begin_inset Text
5791
5792 \begin_layout Standard
5793 asd
5794 \end_layout
5795
5796 \end_inset
5797 </cell>
5798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5799 \begin_inset Text
5800
5801 \begin_layout Standard
5802 sad
5803 \end_layout
5804
5805 \end_inset
5806 </cell>
5807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5808 \begin_inset Text
5809
5810 \begin_layout Standard
5811 asd
5812 \end_layout
5813
5814 \end_inset
5815 </cell>
5816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5817 \begin_inset Text
5818
5819 \begin_layout Standard
5820 asd
5821 \end_layout
5822
5823 \end_inset
5824 </cell>
5825 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5826 \begin_inset Text
5827
5828 \begin_layout Standard
5829 asd
5830 \end_layout
5831
5832 \end_inset
5833 </cell>
5834 </row>
5835 </lyxtabular>
5836
5837 \end_inset
5838
5839
5840 \end_layout
5841
5842 \begin_layout Standard
5843 \begin_inset ERT
5844 status collapsed
5845
5846 \begin_layout Standard
5847
5848
5849 \backslash
5850 setlength{
5851 \backslash
5852 LTcapwidth}{5cm}
5853 \end_layout
5854
5855 \end_inset
5856
5857
5858 \begin_inset Tabular
5859 <lyxtabular version="3" rows="6" columns="5">
5860 <features islongtable="true">
5861 <column alignment="center" valignment="top" leftline="true" width="0">
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" rightline="true" width="0">
5866 <row>
5867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5868 \begin_inset Text
5869
5870 \begin_layout Standard
5871 \begin_inset Caption
5872
5873 \begin_layout Standard
5874 Encabezado completo con ancho de  5\InsetSpace \thinspace{}
5875 cm encabezado completo con ancho de 5\InsetSpace \thinspace{}
5876 cm
5877  encabezado completo con ancho de 5\InsetSpace \thinspace{}
5878 cm
5879 \begin_inset OptArg
5880 status collapsed
5881
5882 \begin_layout Standard
5883 Encabezado con anchura\InsetSpace \thinspace{}
5884 =\InsetSpace \thinspace{}
5885 5\InsetSpace \thinspace{}
5886 cm
5887 \end_layout
5888
5889 \end_inset
5890
5891
5892 \end_layout
5893
5894 \end_inset
5895
5896
5897 \begin_inset ERT
5898 status collapsed
5899
5900 \begin_layout Standard
5901
5902
5903 \backslash
5904
5905 \backslash
5906 %
5907 \end_layout
5908
5909 \end_inset
5910
5911
5912 \end_layout
5913
5914 \end_inset
5915 </cell>
5916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5917 \begin_inset Text
5918
5919 \begin_layout Standard
5920
5921 \end_layout
5922
5923 \end_inset
5924 </cell>
5925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5926 \begin_inset Text
5927
5928 \begin_layout Standard
5929
5930 \end_layout
5931
5932 \end_inset
5933 </cell>
5934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5935 \begin_inset Text
5936
5937 \begin_layout Standard
5938
5939 \end_layout
5940
5941 \end_inset
5942 </cell>
5943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5944 \begin_inset Text
5945
5946 \begin_layout Standard
5947
5948 \end_layout
5949
5950 \end_inset
5951 </cell>
5952 </row>
5953 <row topline="true">
5954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5955 \begin_inset Text
5956
5957 \begin_layout Standard
5958 1
5959 \end_layout
5960
5961 \end_inset
5962 </cell>
5963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5964 \begin_inset Text
5965
5966 \begin_layout Standard
5967 2
5968 \end_layout
5969
5970 \end_inset
5971 </cell>
5972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5973 \begin_inset Text
5974
5975 \begin_layout Standard
5976 3
5977 \end_layout
5978
5979 \end_inset
5980 </cell>
5981 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5982 \begin_inset Text
5983
5984 \begin_layout Standard
5985 4
5986 \end_layout
5987
5988 \end_inset
5989 </cell>
5990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5991 \begin_inset Text
5992
5993 \begin_layout Standard
5994 5
5995 \end_layout
5996
5997 \end_inset
5998 </cell>
5999 </row>
6000 <row topline="true">
6001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6002 \begin_inset Text
6003
6004 \begin_layout Standard
6005 asd
6006 \end_layout
6007
6008 \end_inset
6009 </cell>
6010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6011 \begin_inset Text
6012
6013 \begin_layout Standard
6014 s
6015 \end_layout
6016
6017 \end_inset
6018 </cell>
6019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6020 \begin_inset Text
6021
6022 \begin_layout Standard
6023 s
6024 \end_layout
6025
6026 \end_inset
6027 </cell>
6028 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6029 \begin_inset Text
6030
6031 \begin_layout Standard
6032 s
6033 \end_layout
6034
6035 \end_inset
6036 </cell>
6037 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6038 \begin_inset Text
6039
6040 \begin_layout Standard
6041 asd
6042 \end_layout
6043
6044 \end_inset
6045 </cell>
6046 </row>
6047 <row topline="true">
6048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6049 \begin_inset Text
6050
6051 \begin_layout Standard
6052 asd
6053 \end_layout
6054
6055 \end_inset
6056 </cell>
6057 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6058 \begin_inset Text
6059
6060 \begin_layout Standard
6061 s
6062 \end_layout
6063
6064 \end_inset
6065 </cell>
6066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6067 \begin_inset Text
6068
6069 \begin_layout Standard
6070 s
6071 \end_layout
6072
6073 \end_inset
6074 </cell>
6075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6076 \begin_inset Text
6077
6078 \begin_layout Standard
6079 s
6080 \end_layout
6081
6082 \end_inset
6083 </cell>
6084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6085 \begin_inset Text
6086
6087 \begin_layout Standard
6088 asd
6089 \end_layout
6090
6091 \end_inset
6092 </cell>
6093 </row>
6094 <row topline="true">
6095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6096 \begin_inset Text
6097
6098 \begin_layout Standard
6099 asd
6100 \end_layout
6101
6102 \end_inset
6103 </cell>
6104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6105 \begin_inset Text
6106
6107 \begin_layout Standard
6108 s
6109 \end_layout
6110
6111 \end_inset
6112 </cell>
6113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6114 \begin_inset Text
6115
6116 \begin_layout Standard
6117 s
6118 \end_layout
6119
6120 \end_inset
6121 </cell>
6122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6123 \begin_inset Text
6124
6125 \begin_layout Standard
6126 s
6127 \end_layout
6128
6129 \end_inset
6130 </cell>
6131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6132 \begin_inset Text
6133
6134 \begin_layout Standard
6135 asd
6136 \end_layout
6137
6138 \end_inset
6139 </cell>
6140 </row>
6141 <row topline="true" bottomline="true">
6142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6143 \begin_inset Text
6144
6145 \begin_layout Standard
6146 asd
6147 \end_layout
6148
6149 \end_inset
6150 </cell>
6151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6152 \begin_inset Text
6153
6154 \begin_layout Standard
6155 sad
6156 \end_layout
6157
6158 \end_inset
6159 </cell>
6160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6161 \begin_inset Text
6162
6163 \begin_layout Standard
6164 asd
6165 \end_layout
6166
6167 \end_inset
6168 </cell>
6169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6170 \begin_inset Text
6171
6172 \begin_layout Standard
6173 asd
6174 \end_layout
6175
6176 \end_inset
6177 </cell>
6178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6179 \begin_inset Text
6180
6181 \begin_layout Standard
6182 asd
6183 \end_layout
6184
6185 \end_inset
6186 </cell>
6187 </row>
6188 </lyxtabular>
6189
6190 \end_inset
6191
6192
6193 \begin_inset ERT
6194 status collapsed
6195
6196 \begin_layout Standard
6197
6198
6199 \backslash
6200 setlength{
6201 \backslash
6202 LTcapwidth}{4in}
6203 \end_layout
6204
6205 \end_inset
6206
6207
6208 \end_layout
6209
6210 \begin_layout Standard
6211 \begin_inset Note Greyedout
6212 status open
6213
6214 \begin_layout Standard
6215
6216 \series bold
6217 Nota:
6218 \lang english
6219  
6220 \series default
6221 When the LaTeX-package 
6222 \series bold
6223 \lang spanish
6224 caption
6225 \series default
6226
6227 \begin_inset LatexCommand index
6228 name "LaTeX-paquetes ! caption"
6229
6230 \end_inset
6231
6232
6233 \lang english
6234  is used, as in this document, the full page width is used for the caption
6235  when you use the default value of 4\InsetSpace \thinspace{}
6236 in for 
6237 \series bold
6238 \lang spanish
6239
6240 \backslash
6241 LTcapwidth
6242 \series default
6243 \lang english
6244 .
6245  To get in this case exactly a 4\InsetSpace \thinspace{}
6246 in wide caption, you can either use a value
6247  slightly different from 4.0\InsetSpace \thinspace{}
6248 in, e.g.
6249  3.99\InsetSpace \thinspace{}
6250 in, or the LaTeX-command 
6251 \series bold
6252 \lang spanish
6253
6254 \backslash
6255 captionsetup{width=value}
6256 \series default
6257 \lang english
6258  that is provided by the 
6259 \series bold
6260 \lang spanish
6261 caption
6262 \series default
6263 \lang english
6264 -package.
6265 \end_layout
6266
6267 \end_inset
6268
6269
6270 \end_layout
6271
6272 \begin_layout Subsubsection
6273 Encabezados Distintos para cada Página
6274 \begin_inset LatexCommand index
6275 name "Tablas Largas ! Encabezados Diferentes para cada Página"
6276
6277 \end_inset
6278
6279
6280 \end_layout
6281
6282 \begin_layout Standard
6283 Si los otros encabezados debieran ser diferentes del de la primera página,
6284  inserta un encabezado con un título breve no vacío en una fila postiza
6285  de encabezado marcado como primer encabezado.
6286  El encabezado para las restantes páginas se inserta como encabezado sin
6287  título breve en una fila postiza de encabezado marcado como primer encabezado.
6288  Si este encabezado no ha de incluir el número de tabla, usa el comando
6289 \end_layout
6290
6291 \begin_layout Standard
6292
6293 \series bold
6294
6295 \backslash
6296 caption*{texto del encabezado}
6297 \end_layout
6298
6299 \begin_layout Standard
6300 en vez del recuadro de encabezados de LyX.
6301  La etiqueta para referenciar la tabla se inserta en el primer encabezado.
6302  La tabla\InsetSpace ~
6303
6304 \begin_inset LatexCommand ref
6305 reference "tab:DifEncabezados"
6306
6307 \end_inset
6308
6309  es un ejemplo de tabla larga con encabezados distintos donde el segundo
6310  no incluye número de tabla.
6311 \end_layout
6312
6313 \begin_layout Standard
6314 \align center
6315 \begin_inset Tabular
6316 <lyxtabular version="3" rows="60" columns="3">
6317 <features islongtable="true">
6318 <column alignment="left" valignment="top" leftline="true" width="0cm">
6319 <column alignment="left" valignment="top" rightline="true" width="0pt">
6320 <column alignment="right" valignment="top" rightline="true" width="0pt">
6321 <row endfirsthead="true">
6322 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6323 \begin_inset Text
6324
6325 \begin_layout Standard
6326 \begin_inset Caption
6327
6328 \begin_layout Standard
6329 Ejemplo de lista telefónica
6330 \begin_inset LatexCommand label
6331 name "tab:DifEncabezados"
6332
6333 \end_inset
6334
6335
6336 \begin_inset OptArg
6337 status collapsed
6338
6339 \begin_layout Standard
6340 Ejemplo de lista telefónica
6341 \end_layout
6342
6343 \end_inset
6344
6345
6346 \end_layout
6347
6348 \end_inset
6349
6350
6351 \begin_inset ERT
6352 status collapsed
6353
6354 \begin_layout Standard
6355
6356
6357 \backslash
6358
6359 \backslash
6360 %
6361 \end_layout
6362
6363 \end_inset
6364
6365
6366 \end_layout
6367
6368 \end_inset
6369 </cell>
6370 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6371 \begin_inset Text
6372
6373 \begin_layout Standard
6374
6375 \end_layout
6376
6377 \end_inset
6378 </cell>
6379 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6380 \begin_inset Text
6381
6382 \begin_layout Standard
6383
6384 \end_layout
6385
6386 \end_inset
6387 </cell>
6388 </row>
6389 <row topline="true" bottomline="true" endfirsthead="true">
6390 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6391 \begin_inset Text
6392
6393 \begin_layout Standard
6394
6395 \series bold
6396 Ejemplo de lista telefónica (ignore los nombres)
6397 \end_layout
6398
6399 \end_inset
6400 </cell>
6401 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6402 \begin_inset Text
6403
6404 \begin_layout Standard
6405
6406 \end_layout
6407
6408 \end_inset
6409 </cell>
6410 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6411 \begin_inset Text
6412
6413 \begin_layout Standard
6414
6415 \end_layout
6416
6417 \end_inset
6418 </cell>
6419 </row>
6420 <row topline="true" bottomline="true" endfirsthead="true">
6421 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6422 \begin_inset Text
6423
6424 \begin_layout Standard
6425
6426 \series bold
6427 NOMBRE
6428 \end_layout
6429
6430 \end_inset
6431 </cell>
6432 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6433 \begin_inset Text
6434
6435 \begin_layout Standard
6436
6437 \end_layout
6438
6439 \end_inset
6440 </cell>
6441 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6442 \begin_inset Text
6443
6444 \begin_layout Standard
6445
6446 \series bold
6447 TEL.
6448 \end_layout
6449
6450 \end_inset
6451 </cell>
6452 </row>
6453 <row bottomline="true" endhead="true">
6454 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6455 \begin_inset Text
6456
6457 \begin_layout Standard
6458 \begin_inset ERT
6459 status collapsed
6460
6461 \begin_layout Standard
6462
6463
6464 \backslash
6465 caption*{Continúa Ejemplo de lista telefónica}
6466 \backslash
6467
6468 \backslash
6469 %
6470 \end_layout
6471
6472 \end_inset
6473
6474
6475 \end_layout
6476
6477 \end_inset
6478 </cell>
6479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6480 \begin_inset Text
6481
6482 \begin_layout Standard
6483
6484 \end_layout
6485
6486 \end_inset
6487 </cell>
6488 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6489 \begin_inset Text
6490
6491 \begin_layout Standard
6492
6493 \end_layout
6494
6495 \end_inset
6496 </cell>
6497 </row>
6498 <row topline="true" bottomline="true" endhead="true">
6499 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6500 \begin_inset Text
6501
6502 \begin_layout Standard
6503
6504 \series bold
6505 Ejemplo de lista telefónica
6506 \end_layout
6507
6508 \end_inset
6509 </cell>
6510 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6511 \begin_inset Text
6512
6513 \begin_layout Standard
6514
6515 \end_layout
6516
6517 \end_inset
6518 </cell>
6519 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6520 \begin_inset Text
6521
6522 \begin_layout Standard
6523
6524 \end_layout
6525
6526 \end_inset
6527 </cell>
6528 </row>
6529 <row topline="true" bottomline="true" endhead="true">
6530 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6531 \begin_inset Text
6532
6533 \begin_layout Standard
6534
6535 \series bold
6536 NOMBRE
6537 \end_layout
6538
6539 \end_inset
6540 </cell>
6541 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6542 \begin_inset Text
6543
6544 \begin_layout Standard
6545
6546 \end_layout
6547
6548 \end_inset
6549 </cell>
6550 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6551 \begin_inset Text
6552
6553 \begin_layout Standard
6554
6555 \series bold
6556 TEL.
6557 \end_layout
6558
6559 \end_inset
6560 </cell>
6561 </row>
6562 <row topline="true" bottomline="true" endfoot="true">
6563 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6564 \begin_inset Text
6565
6566 \begin_layout Standard
6567 continúa en página siguiente
6568 \end_layout
6569
6570 \end_inset
6571 </cell>
6572 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6573 \begin_inset Text
6574
6575 \begin_layout Standard
6576
6577 \end_layout
6578
6579 \end_inset
6580 </cell>
6581 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6582 \begin_inset Text
6583
6584 \begin_layout Standard
6585
6586 \end_layout
6587
6588 \end_inset
6589 </cell>
6590 </row>
6591 <row>
6592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6593 \begin_inset Text
6594
6595 \begin_layout Standard
6596
6597 \series bold
6598 Annovi
6599 \end_layout
6600
6601 \end_inset
6602 </cell>
6603 <cell alignment="center" valignment="top" topline="true" usebox="none">
6604 \begin_inset Text
6605
6606 \begin_layout Standard
6607 Silvia
6608 \end_layout
6609
6610 \end_inset
6611 </cell>
6612 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6613 \begin_inset Text
6614
6615 \begin_layout Standard
6616 111
6617 \end_layout
6618
6619 \end_inset
6620 </cell>
6621 </row>
6622 <row>
6623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6624 \begin_inset Text
6625
6626 \begin_layout Standard
6627
6628 \series bold
6629 Bertoli
6630 \end_layout
6631
6632 \end_inset
6633 </cell>
6634 <cell alignment="center" valignment="top" topline="true" usebox="none">
6635 \begin_inset Text
6636
6637 \begin_layout Standard
6638 Stefano
6639 \end_layout
6640
6641 \end_inset
6642 </cell>
6643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6644 \begin_inset Text
6645
6646 \begin_layout Standard
6647 111
6648 \end_layout
6649
6650 \end_inset
6651 </cell>
6652 </row>
6653 <row>
6654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6655 \begin_inset Text
6656
6657 \begin_layout Standard
6658
6659 \series bold
6660 Bozzi
6661 \end_layout
6662
6663 \end_inset
6664 </cell>
6665 <cell alignment="center" valignment="top" topline="true" usebox="none">
6666 \begin_inset Text
6667
6668 \begin_layout Standard
6669 Walter
6670 \end_layout
6671
6672 \end_inset
6673 </cell>
6674 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6675 \begin_inset Text
6676
6677 \begin_layout Standard
6678 111
6679 \end_layout
6680
6681 \end_inset
6682 </cell>
6683 </row>
6684 <row>
6685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6686 \begin_inset Text
6687
6688 \begin_layout Standard
6689
6690 \series bold
6691 Cachia
6692 \end_layout
6693
6694 \end_inset
6695 </cell>
6696 <cell alignment="center" valignment="top" topline="true" usebox="none">
6697 \begin_inset Text
6698
6699 \begin_layout Standard
6700 Maria
6701 \end_layout
6702
6703 \end_inset
6704 </cell>
6705 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6706 \begin_inset Text
6707
6708 \begin_layout Standard
6709 111
6710 \end_layout
6711
6712 \end_inset
6713 </cell>
6714 </row>
6715 <row>
6716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6717 \begin_inset Text
6718
6719 \begin_layout Standard
6720
6721 \series bold
6722 Cachia
6723 \end_layout
6724
6725 \end_inset
6726 </cell>
6727 <cell alignment="center" valignment="top" topline="true" usebox="none">
6728 \begin_inset Text
6729
6730 \begin_layout Standard
6731 Maurizio
6732 \end_layout
6733
6734 \end_inset
6735 </cell>
6736 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6737 \begin_inset Text
6738
6739 \begin_layout Standard
6740 111
6741 \end_layout
6742
6743 \end_inset
6744 </cell>
6745 </row>
6746 <row>
6747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6748 \begin_inset Text
6749
6750 \begin_layout Standard
6751
6752 \series bold
6753 Cinquemani
6754 \end_layout
6755
6756 \end_inset
6757 </cell>
6758 <cell alignment="center" valignment="top" topline="true" usebox="none">
6759 \begin_inset Text
6760
6761 \begin_layout Standard
6762 Giusi
6763 \end_layout
6764
6765 \end_inset
6766 </cell>
6767 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6768 \begin_inset Text
6769
6770 \begin_layout Standard
6771 111
6772 \end_layout
6773
6774 \end_inset
6775 </cell>
6776 </row>
6777 <row>
6778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6779 \begin_inset Text
6780
6781 \begin_layout Standard
6782
6783 \series bold
6784 Colin
6785 \end_layout
6786
6787 \end_inset
6788 </cell>
6789 <cell alignment="center" valignment="top" topline="true" usebox="none">
6790 \begin_inset Text
6791
6792 \begin_layout Standard
6793 Bernard
6794 \end_layout
6795
6796 \end_inset
6797 </cell>
6798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6799 \begin_inset Text
6800
6801 \begin_layout Standard
6802 111
6803 \end_layout
6804
6805 \end_inset
6806 </cell>
6807 </row>
6808 <row>
6809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6810 \begin_inset Text
6811
6812 \begin_layout Standard
6813
6814 \series bold
6815 Concli
6816 \end_layout
6817
6818 \end_inset
6819 </cell>
6820 <cell alignment="center" valignment="top" topline="true" usebox="none">
6821 \begin_inset Text
6822
6823 \begin_layout Standard
6824 Gianfranco
6825 \end_layout
6826
6827 \end_inset
6828 </cell>
6829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6830 \begin_inset Text
6831
6832 \begin_layout Standard
6833 111
6834 \end_layout
6835
6836 \end_inset
6837 </cell>
6838 </row>
6839 <row>
6840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6841 \begin_inset Text
6842
6843 \begin_layout Standard
6844
6845 \series bold
6846 Dal Bosco
6847 \end_layout
6848
6849 \end_inset
6850 </cell>
6851 <cell alignment="center" valignment="top" topline="true" usebox="none">
6852 \begin_inset Text
6853
6854 \begin_layout Standard
6855 Carolina
6856 \end_layout
6857
6858 \end_inset
6859 </cell>
6860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6861 \begin_inset Text
6862
6863 \begin_layout Standard
6864 111
6865 \end_layout
6866
6867 \end_inset
6868 </cell>
6869 </row>
6870 <row>
6871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6872 \begin_inset Text
6873
6874 \begin_layout Standard
6875
6876 \series bold
6877 Dalpiaz
6878 \end_layout
6879
6880 \end_inset
6881 </cell>
6882 <cell alignment="center" valignment="top" topline="true" usebox="none">
6883 \begin_inset Text
6884
6885 \begin_layout Standard
6886 Annamaria
6887 \end_layout
6888
6889 \end_inset
6890 </cell>
6891 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6892 \begin_inset Text
6893
6894 \begin_layout Standard
6895 111
6896 \end_layout
6897
6898 \end_inset
6899 </cell>
6900 </row>
6901 <row>
6902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6903 \begin_inset Text
6904
6905 \begin_layout Standard
6906
6907 \series bold
6908 Feliciello
6909 \end_layout
6910
6911 \end_inset
6912 </cell>
6913 <cell alignment="center" valignment="top" topline="true" usebox="none">
6914 \begin_inset Text
6915
6916 \begin_layout Standard
6917 Domenico
6918 \end_layout
6919
6920 \end_inset
6921 </cell>
6922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6923 \begin_inset Text
6924
6925 \begin_layout Standard
6926 111
6927 \end_layout
6928
6929 \end_inset
6930 </cell>
6931 </row>
6932 <row>
6933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6934 \begin_inset Text
6935
6936 \begin_layout Standard
6937
6938 \series bold
6939 Focarelli
6940 \end_layout
6941
6942 \end_inset
6943 </cell>
6944 <cell alignment="center" valignment="top" topline="true" usebox="none">
6945 \begin_inset Text
6946
6947 \begin_layout Standard
6948 Paola
6949 \end_layout
6950
6951 \end_inset
6952 </cell>
6953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6954 \begin_inset Text
6955
6956 \begin_layout Standard
6957 111
6958 \end_layout
6959
6960 \end_inset
6961 </cell>
6962 </row>
6963 <row>
6964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6965 \begin_inset Text
6966
6967 \begin_layout Standard
6968
6969 \series bold
6970 Galletti
6971 \end_layout
6972
6973 \end_inset
6974 </cell>
6975 <cell alignment="center" valignment="top" topline="true" usebox="none">
6976 \begin_inset Text
6977
6978 \begin_layout Standard
6979 Oreste
6980 \end_layout
6981
6982 \end_inset
6983 </cell>
6984 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6985 \begin_inset Text
6986
6987 \begin_layout Standard
6988 111
6989 \end_layout
6990
6991 \end_inset
6992 </cell>
6993 </row>
6994 <row>
6995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6996 \begin_inset Text
6997
6998 \begin_layout Standard
6999
7000 \series bold
7001 Gasparini
7002 \end_layout
7003
7004 \end_inset
7005 </cell>
7006 <cell alignment="center" valignment="top" topline="true" usebox="none">
7007 \begin_inset Text
7008
7009 \begin_layout Standard
7010 Franca
7011 \end_layout
7012
7013 \end_inset
7014 </cell>
7015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7016 \begin_inset Text
7017
7018 \begin_layout Standard
7019 111
7020 \end_layout
7021
7022 \end_inset
7023 </cell>
7024 </row>
7025 <row>
7026 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7027 \begin_inset Text
7028
7029 \begin_layout Standard
7030
7031 \series bold
7032 Rizzardi
7033 \series default
7034
7035 \begin_inset Foot
7036 status open
7037
7038 \begin_layout Standard
7039 Ejemplo de nota al pie
7040 \end_layout
7041
7042 \end_inset
7043
7044
7045 \end_layout
7046
7047 \end_inset
7048 </cell>
7049 <cell alignment="center" valignment="top" topline="true" usebox="none">
7050 \begin_inset Text
7051
7052 \begin_layout Standard
7053 Paola
7054 \end_layout
7055
7056 \end_inset
7057 </cell>
7058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7059 \begin_inset Text
7060
7061 \begin_layout Standard
7062 111
7063 \end_layout
7064
7065 \end_inset
7066 </cell>
7067 </row>
7068 <row>
7069 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7070 \begin_inset Text
7071
7072 \begin_layout Standard
7073
7074 \series bold
7075 Lassini
7076 \end_layout
7077
7078 \end_inset
7079 </cell>
7080 <cell alignment="center" valignment="top" topline="true" usebox="none">
7081 \begin_inset Text
7082
7083 \begin_layout Standard
7084 Giancarlo
7085 \end_layout
7086
7087 \end_inset
7088 </cell>
7089 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7090 \begin_inset Text
7091
7092 \begin_layout Standard
7093 111
7094 \end_layout
7095
7096 \end_inset
7097 </cell>
7098 </row>
7099 <row>
7100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7101 \begin_inset Text
7102
7103 \begin_layout Standard
7104
7105 \series bold
7106 Malfatti
7107 \end_layout
7108
7109 \end_inset
7110 </cell>
7111 <cell alignment="center" valignment="top" topline="true" usebox="none">
7112 \begin_inset Text
7113
7114 \begin_layout Standard
7115 Luciano
7116 \end_layout
7117
7118 \end_inset
7119 </cell>
7120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7121 \begin_inset Text
7122
7123 \begin_layout Standard
7124 111
7125 \end_layout
7126
7127 \end_inset
7128 </cell>
7129 </row>
7130 <row>
7131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7132 \begin_inset Text
7133
7134 \begin_layout Standard
7135
7136 \series bold
7137 Malfatti
7138 \end_layout
7139
7140 \end_inset
7141 </cell>
7142 <cell alignment="center" valignment="top" topline="true" usebox="none">
7143 \begin_inset Text
7144
7145 \begin_layout Standard
7146 Valeriano
7147 \end_layout
7148
7149 \end_inset
7150 </cell>
7151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7152 \begin_inset Text
7153
7154 \begin_layout Standard
7155 111
7156 \end_layout
7157
7158 \end_inset
7159 </cell>
7160 </row>
7161 <row>
7162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7163 \begin_inset Text
7164
7165 \begin_layout Standard
7166
7167 \series bold
7168 Meneguzzo
7169 \end_layout
7170
7171 \end_inset
7172 </cell>
7173 <cell alignment="center" valignment="top" topline="true" usebox="none">
7174 \begin_inset Text
7175
7176 \begin_layout Standard
7177 Roberto
7178 \end_layout
7179
7180 \end_inset
7181 </cell>
7182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7183 \begin_inset Text
7184
7185 \begin_layout Standard
7186 111
7187 \end_layout
7188
7189 \end_inset
7190 </cell>
7191 </row>
7192 <row>
7193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7194 \begin_inset Text
7195
7196 \begin_layout Standard
7197
7198 \series bold
7199 Mezzadra
7200 \end_layout
7201
7202 \end_inset
7203 </cell>
7204 <cell alignment="center" valignment="top" topline="true" usebox="none">
7205 \begin_inset Text
7206
7207 \begin_layout Standard
7208 Roberto
7209 \end_layout
7210
7211 \end_inset
7212 </cell>
7213 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7214 \begin_inset Text
7215
7216 \begin_layout Standard
7217 111
7218 \end_layout
7219
7220 \end_inset
7221 </cell>
7222 </row>
7223 <row>
7224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7225 \begin_inset Text
7226
7227 \begin_layout Standard
7228
7229 \series bold
7230 Pirpamer
7231 \end_layout
7232
7233 \end_inset
7234 </cell>
7235 <cell alignment="center" valignment="top" topline="true" usebox="none">
7236 \begin_inset Text
7237
7238 \begin_layout Standard
7239 Erich
7240 \end_layout
7241
7242 \end_inset
7243 </cell>
7244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7245 \begin_inset Text
7246
7247 \begin_layout Standard
7248 111
7249 \end_layout
7250
7251 \end_inset
7252 </cell>
7253 </row>
7254 <row>
7255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7256 \begin_inset Text
7257
7258 \begin_layout Standard
7259
7260 \series bold
7261 Pochiesa
7262 \end_layout
7263
7264 \end_inset
7265 </cell>
7266 <cell alignment="center" valignment="top" topline="true" usebox="none">
7267 \begin_inset Text
7268
7269 \begin_layout Standard
7270 Paolo
7271 \end_layout
7272
7273 \end_inset
7274 </cell>
7275 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7276 \begin_inset Text
7277
7278 \begin_layout Standard
7279 111, 222
7280 \end_layout
7281
7282 \end_inset
7283 </cell>
7284 </row>
7285 <row>
7286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7287 \begin_inset Text
7288
7289 \begin_layout Standard
7290
7291 \series bold
7292 Radina
7293 \end_layout
7294
7295 \end_inset
7296 </cell>
7297 <cell alignment="center" valignment="top" topline="true" usebox="none">
7298 \begin_inset Text
7299
7300 \begin_layout Standard
7301 Claudio
7302 \end_layout
7303
7304 \end_inset
7305 </cell>
7306 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7307 \begin_inset Text
7308
7309 \begin_layout Standard
7310 111
7311 \end_layout
7312
7313 \end_inset
7314 </cell>
7315 </row>
7316 <row>
7317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7318 \begin_inset Text
7319
7320 \begin_layout Standard
7321
7322 \series bold
7323 Stuffer
7324 \end_layout
7325
7326 \end_inset
7327 </cell>
7328 <cell alignment="center" valignment="top" topline="true" usebox="none">
7329 \begin_inset Text
7330
7331 \begin_layout Standard
7332 Oskar
7333 \end_layout
7334
7335 \end_inset
7336 </cell>
7337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7338 \begin_inset Text
7339
7340 \begin_layout Standard
7341 111
7342 \end_layout
7343
7344 \end_inset
7345 </cell>
7346 </row>
7347 <row>
7348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7349 \begin_inset Text
7350
7351 \begin_layout Standard
7352
7353 \series bold
7354 Tacchelli
7355 \end_layout
7356
7357 \end_inset
7358 </cell>
7359 <cell alignment="center" valignment="top" topline="true" usebox="none">
7360 \begin_inset Text
7361
7362 \begin_layout Standard
7363 Ugo
7364 \end_layout
7365
7366 \end_inset
7367 </cell>
7368 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7369 \begin_inset Text
7370
7371 \begin_layout Standard
7372 111
7373 \end_layout
7374
7375 \end_inset
7376 </cell>
7377 </row>
7378 <row>
7379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7380 \begin_inset Text
7381
7382 \begin_layout Standard
7383
7384 \series bold
7385 Tezzele
7386 \end_layout
7387
7388 \end_inset
7389 </cell>
7390 <cell alignment="center" valignment="top" topline="true" usebox="none">
7391 \begin_inset Text
7392
7393 \begin_layout Standard
7394 Margit
7395 \end_layout
7396
7397 \end_inset
7398 </cell>
7399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7400 \begin_inset Text
7401
7402 \begin_layout Standard
7403 111
7404 \end_layout
7405
7406 \end_inset
7407 </cell>
7408 </row>
7409 <row>
7410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7411 \begin_inset Text
7412
7413 \begin_layout Standard
7414
7415 \series bold
7416 Unterkalmsteiner
7417 \end_layout
7418
7419 \end_inset
7420 </cell>
7421 <cell alignment="center" valignment="top" topline="true" usebox="none">
7422 \begin_inset Text
7423
7424 \begin_layout Standard
7425 Frieda
7426 \end_layout
7427
7428 \end_inset
7429 </cell>
7430 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7431 \begin_inset Text
7432
7433 \begin_layout Standard
7434 111
7435 \end_layout
7436
7437 \end_inset
7438 </cell>
7439 </row>
7440 <row>
7441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7442 \begin_inset Text
7443
7444 \begin_layout Standard
7445
7446 \series bold
7447 Vieider
7448 \end_layout
7449
7450 \end_inset
7451 </cell>
7452 <cell alignment="center" valignment="top" topline="true" usebox="none">
7453 \begin_inset Text
7454
7455 \begin_layout Standard
7456 Hilde
7457 \end_layout
7458
7459 \end_inset
7460 </cell>
7461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7462 \begin_inset Text
7463
7464 \begin_layout Standard
7465 111
7466 \end_layout
7467
7468 \end_inset
7469 </cell>
7470 </row>
7471 <row>
7472 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7473 \begin_inset Text
7474
7475 \begin_layout Standard
7476
7477 \series bold
7478 Vigna
7479 \end_layout
7480
7481 \end_inset
7482 </cell>
7483 <cell alignment="center" valignment="top" topline="true" usebox="none">
7484 \begin_inset Text
7485
7486 \begin_layout Standard
7487 Jürgen
7488 \end_layout
7489
7490 \end_inset
7491 </cell>
7492 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7493 \begin_inset Text
7494
7495 \begin_layout Standard
7496 111
7497 \end_layout
7498
7499 \end_inset
7500 </cell>
7501 </row>
7502 <row>
7503 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7504 \begin_inset Text
7505
7506 \begin_layout Standard
7507
7508 \series bold
7509 Weber
7510 \end_layout
7511
7512 \end_inset
7513 </cell>
7514 <cell alignment="center" valignment="top" topline="true" usebox="none">
7515 \begin_inset Text
7516
7517 \begin_layout Standard
7518 Maurizio
7519 \end_layout
7520
7521 \end_inset
7522 </cell>
7523 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7524 \begin_inset Text
7525
7526 \begin_layout Standard
7527 111
7528 \end_layout
7529
7530 \end_inset
7531 </cell>
7532 </row>
7533 <row bottomline="true">
7534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7535 \begin_inset Text
7536
7537 \begin_layout Standard
7538
7539 \series bold
7540 Winkler
7541 \end_layout
7542
7543 \end_inset
7544 </cell>
7545 <cell alignment="center" valignment="top" topline="true" usebox="none">
7546 \begin_inset Text
7547
7548 \begin_layout Standard
7549 Franz
7550 \end_layout
7551
7552 \end_inset
7553 </cell>
7554 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7555 \begin_inset Text
7556
7557 \begin_layout Standard
7558 111
7559 \end_layout
7560
7561 \end_inset
7562 </cell>
7563 </row>
7564 <row bottomline="true">
7565 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="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" usebox="none">
7575 \begin_inset Text
7576
7577 \begin_layout Standard
7578
7579 \end_layout
7580
7581 \end_inset
7582 </cell>
7583 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7584 \begin_inset Text
7585
7586 \begin_layout Standard
7587
7588 \end_layout
7589
7590 \end_inset
7591 </cell>
7592 </row>
7593 <row>
7594 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7595 \begin_inset Text
7596
7597 \begin_layout Standard
7598
7599 \series bold
7600 Annovi
7601 \end_layout
7602
7603 \end_inset
7604 </cell>
7605 <cell alignment="center" valignment="top" topline="true" usebox="none">
7606 \begin_inset Text
7607
7608 \begin_layout Standard
7609 Silvia
7610 \end_layout
7611
7612 \end_inset
7613 </cell>
7614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7615 \begin_inset Text
7616
7617 \begin_layout Standard
7618 555
7619 \end_layout
7620
7621 \end_inset
7622 </cell>
7623 </row>
7624 <row>
7625 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7626 \begin_inset Text
7627
7628 \begin_layout Standard
7629
7630 \series bold
7631 Bertoli
7632 \end_layout
7633
7634 \end_inset
7635 </cell>
7636 <cell alignment="center" valignment="top" topline="true" usebox="none">
7637 \begin_inset Text
7638
7639 \begin_layout Standard
7640 Stefano
7641 \end_layout
7642
7643 \end_inset
7644 </cell>
7645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7646 \begin_inset Text
7647
7648 \begin_layout Standard
7649 555
7650 \end_layout
7651
7652 \end_inset
7653 </cell>
7654 </row>
7655 <row>
7656 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7657 \begin_inset Text
7658
7659 \begin_layout Standard
7660
7661 \series bold
7662 Bozzi
7663 \end_layout
7664
7665 \end_inset
7666 </cell>
7667 <cell alignment="center" valignment="top" topline="true" usebox="none">
7668 \begin_inset Text
7669
7670 \begin_layout Standard
7671 Walter
7672 \end_layout
7673
7674 \end_inset
7675 </cell>
7676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7677 \begin_inset Text
7678
7679 \begin_layout Standard
7680 555
7681 \end_layout
7682
7683 \end_inset
7684 </cell>
7685 </row>
7686 <row>
7687 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7688 \begin_inset Text
7689
7690 \begin_layout Standard
7691
7692 \series bold
7693 Cachia
7694 \end_layout
7695
7696 \end_inset
7697 </cell>
7698 <cell alignment="center" valignment="top" topline="true" usebox="none">
7699 \begin_inset Text
7700
7701 \begin_layout Standard
7702 Maria
7703 \end_layout
7704
7705 \end_inset
7706 </cell>
7707 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7708 \begin_inset Text
7709
7710 \begin_layout Standard
7711 555
7712 \end_layout
7713
7714 \end_inset
7715 </cell>
7716 </row>
7717 <row>
7718 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7719 \begin_inset Text
7720
7721 \begin_layout Standard
7722
7723 \series bold
7724 Cachia
7725 \end_layout
7726
7727 \end_inset
7728 </cell>
7729 <cell alignment="center" valignment="top" topline="true" usebox="none">
7730 \begin_inset Text
7731
7732 \begin_layout Standard
7733 Maurizio
7734 \end_layout
7735
7736 \end_inset
7737 </cell>
7738 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7739 \begin_inset Text
7740
7741 \begin_layout Standard
7742 555
7743 \end_layout
7744
7745 \end_inset
7746 </cell>
7747 </row>
7748 <row>
7749 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7750 \begin_inset Text
7751
7752 \begin_layout Standard
7753
7754 \series bold
7755 Cinquemani
7756 \end_layout
7757
7758 \end_inset
7759 </cell>
7760 <cell alignment="center" valignment="top" topline="true" usebox="none">
7761 \begin_inset Text
7762
7763 \begin_layout Standard
7764 Giusi
7765 \end_layout
7766
7767 \end_inset
7768 </cell>
7769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7770 \begin_inset Text
7771
7772 \begin_layout Standard
7773 555
7774 \end_layout
7775
7776 \end_inset
7777 </cell>
7778 </row>
7779 <row>
7780 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7781 \begin_inset Text
7782
7783 \begin_layout Standard
7784
7785 \series bold
7786 Colin
7787 \end_layout
7788
7789 \end_inset
7790 </cell>
7791 <cell alignment="center" valignment="top" topline="true" usebox="none">
7792 \begin_inset Text
7793
7794 \begin_layout Standard
7795 Bernard
7796 \end_layout
7797
7798 \end_inset
7799 </cell>
7800 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7801 \begin_inset Text
7802
7803 \begin_layout Standard
7804 555
7805 \end_layout
7806
7807 \end_inset
7808 </cell>
7809 </row>
7810 <row>
7811 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7812 \begin_inset Text
7813
7814 \begin_layout Standard
7815
7816 \series bold
7817 Concli
7818 \end_layout
7819
7820 \end_inset
7821 </cell>
7822 <cell alignment="center" valignment="top" topline="true" usebox="none">
7823 \begin_inset Text
7824
7825 \begin_layout Standard
7826 Gianfranco
7827 \end_layout
7828
7829 \end_inset
7830 </cell>
7831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7832 \begin_inset Text
7833
7834 \begin_layout Standard
7835 555
7836 \end_layout
7837
7838 \end_inset
7839 </cell>
7840 </row>
7841 <row>
7842 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7843 \begin_inset Text
7844
7845 \begin_layout Standard
7846
7847 \series bold
7848 Dal Bosco
7849 \end_layout
7850
7851 \end_inset
7852 </cell>
7853 <cell alignment="center" valignment="top" topline="true" usebox="none">
7854 \begin_inset Text
7855
7856 \begin_layout Standard
7857 Carolina
7858 \end_layout
7859
7860 \end_inset
7861 </cell>
7862 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7863 \begin_inset Text
7864
7865 \begin_layout Standard
7866 555
7867 \end_layout
7868
7869 \end_inset
7870 </cell>
7871 </row>
7872 <row>
7873 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7874 \begin_inset Text
7875
7876 \begin_layout Standard
7877
7878 \series bold
7879 Dalpiaz
7880 \end_layout
7881
7882 \end_inset
7883 </cell>
7884 <cell alignment="center" valignment="top" topline="true" usebox="none">
7885 \begin_inset Text
7886
7887 \begin_layout Standard
7888 Annamaria
7889 \end_layout
7890
7891 \end_inset
7892 </cell>
7893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7894 \begin_inset Text
7895
7896 \begin_layout Standard
7897 555
7898 \end_layout
7899
7900 \end_inset
7901 </cell>
7902 </row>
7903 <row>
7904 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7905 \begin_inset Text
7906
7907 \begin_layout Standard
7908
7909 \series bold
7910 Feliciello
7911 \end_layout
7912
7913 \end_inset
7914 </cell>
7915 <cell alignment="center" valignment="top" topline="true" usebox="none">
7916 \begin_inset Text
7917
7918 \begin_layout Standard
7919 Domenico
7920 \end_layout
7921
7922 \end_inset
7923 </cell>
7924 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7925 \begin_inset Text
7926
7927 \begin_layout Standard
7928 555
7929 \end_layout
7930
7931 \end_inset
7932 </cell>
7933 </row>
7934 <row>
7935 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7936 \begin_inset Text
7937
7938 \begin_layout Standard
7939
7940 \series bold
7941 Focarelli
7942 \end_layout
7943
7944 \end_inset
7945 </cell>
7946 <cell alignment="center" valignment="top" topline="true" usebox="none">
7947 \begin_inset Text
7948
7949 \begin_layout Standard
7950 Paola
7951 \end_layout
7952
7953 \end_inset
7954 </cell>
7955 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7956 \begin_inset Text
7957
7958 \begin_layout Standard
7959 555
7960 \end_layout
7961
7962 \end_inset
7963 </cell>
7964 </row>
7965 <row>
7966 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7967 \begin_inset Text
7968
7969 \begin_layout Standard
7970
7971 \series bold
7972 Galletti
7973 \end_layout
7974
7975 \end_inset
7976 </cell>
7977 <cell alignment="center" valignment="top" topline="true" usebox="none">
7978 \begin_inset Text
7979
7980 \begin_layout Standard
7981 Oreste
7982 \end_layout
7983
7984 \end_inset
7985 </cell>
7986 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7987 \begin_inset Text
7988
7989 \begin_layout Standard
7990 555
7991 \end_layout
7992
7993 \end_inset
7994 </cell>
7995 </row>
7996 <row>
7997 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7998 \begin_inset Text
7999
8000 \begin_layout Standard
8001
8002 \series bold
8003 Gasparini
8004 \end_layout
8005
8006 \end_inset
8007 </cell>
8008 <cell alignment="center" valignment="top" topline="true" usebox="none">
8009 \begin_inset Text
8010
8011 \begin_layout Standard
8012 Franca
8013 \end_layout
8014
8015 \end_inset
8016 </cell>
8017 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8018 \begin_inset Text
8019
8020 \begin_layout Standard
8021 555
8022 \end_layout
8023
8024 \end_inset
8025 </cell>
8026 </row>
8027 <row>
8028 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8029 \begin_inset Text
8030
8031 \begin_layout Standard
8032
8033 \series bold
8034 Rizzardi
8035 \end_layout
8036
8037 \end_inset
8038 </cell>
8039 <cell alignment="center" valignment="top" topline="true" usebox="none">
8040 \begin_inset Text
8041
8042 \begin_layout Standard
8043 Paola
8044 \end_layout
8045
8046 \end_inset
8047 </cell>
8048 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8049 \begin_inset Text
8050
8051 \begin_layout Standard
8052 555
8053 \end_layout
8054
8055 \end_inset
8056 </cell>
8057 </row>
8058 <row>
8059 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8060 \begin_inset Text
8061
8062 \begin_layout Standard
8063
8064 \series bold
8065 Lassini
8066 \end_layout
8067
8068 \end_inset
8069 </cell>
8070 <cell alignment="center" valignment="top" topline="true" usebox="none">
8071 \begin_inset Text
8072
8073 \begin_layout Standard
8074 Giancarlo
8075 \end_layout
8076
8077 \end_inset
8078 </cell>
8079 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8080 \begin_inset Text
8081
8082 \begin_layout Standard
8083 555
8084 \end_layout
8085
8086 \end_inset
8087 </cell>
8088 </row>
8089 <row>
8090 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8091 \begin_inset Text
8092
8093 \begin_layout Standard
8094
8095 \series bold
8096 Malfatti
8097 \end_layout
8098
8099 \end_inset
8100 </cell>
8101 <cell alignment="center" valignment="top" topline="true" usebox="none">
8102 \begin_inset Text
8103
8104 \begin_layout Standard
8105 Luciano
8106 \end_layout
8107
8108 \end_inset
8109 </cell>
8110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8111 \begin_inset Text
8112
8113 \begin_layout Standard
8114 555
8115 \end_layout
8116
8117 \end_inset
8118 </cell>
8119 </row>
8120 <row>
8121 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8122 \begin_inset Text
8123
8124 \begin_layout Standard
8125
8126 \series bold
8127 Malfatti
8128 \end_layout
8129
8130 \end_inset
8131 </cell>
8132 <cell alignment="center" valignment="top" topline="true" usebox="none">
8133 \begin_inset Text
8134
8135 \begin_layout Standard
8136 Valeriano
8137 \end_layout
8138
8139 \end_inset
8140 </cell>
8141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8142 \begin_inset Text
8143
8144 \begin_layout Standard
8145 555
8146 \end_layout
8147
8148 \end_inset
8149 </cell>
8150 </row>
8151 <row>
8152 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8153 \begin_inset Text
8154
8155 \begin_layout Standard
8156
8157 \series bold
8158 Meneguzzo
8159 \end_layout
8160
8161 \end_inset
8162 </cell>
8163 <cell alignment="center" valignment="top" topline="true" usebox="none">
8164 \begin_inset Text
8165
8166 \begin_layout Standard
8167 Roberto
8168 \end_layout
8169
8170 \end_inset
8171 </cell>
8172 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8173 \begin_inset Text
8174
8175 \begin_layout Standard
8176 555
8177 \end_layout
8178
8179 \end_inset
8180 </cell>
8181 </row>
8182 <row bottomline="true">
8183 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8184 \begin_inset Text
8185
8186 \begin_layout Standard
8187
8188 \series bold
8189 Mezzadra
8190 \end_layout
8191
8192 \end_inset
8193 </cell>
8194 <cell alignment="center" valignment="top" topline="true" usebox="none">
8195 \begin_inset Text
8196
8197 \begin_layout Standard
8198 Roberto
8199 \end_layout
8200
8201 \end_inset
8202 </cell>
8203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8204 \begin_inset Text
8205
8206 \begin_layout Standard
8207 555
8208 \end_layout
8209
8210 \end_inset
8211 </cell>
8212 </row>
8213 <row bottomline="true" endlastfoot="true">
8214 <cell multicolumn="1" alignment="left" valignment="top" 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" usebox="none">
8224 \begin_inset Text
8225
8226 \begin_layout Standard
8227
8228 \end_layout
8229
8230 \end_inset
8231 </cell>
8232 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8233 \begin_inset Text
8234
8235 \begin_layout Standard
8236
8237 \end_layout
8238
8239 \end_inset
8240 </cell>
8241 </row>
8242 </lyxtabular>
8243
8244 \end_inset
8245
8246
8247 \end_layout
8248
8249 \begin_layout Section
8250 Particularidades de las Tablas Largas
8251 \end_layout
8252
8253 \begin_layout Subsection
8254 Cálculos
8255 \begin_inset LatexCommand index
8256 name "Tablas Largas ! Cálculos"
8257
8258 \end_inset
8259
8260
8261 \end_layout
8262
8263 \begin_layout Standard
8264 LaTeX calcula la altura de las páginas con tabla y sus saltos de página
8265  utilizando los denominados 
8266 \begin_inset Quotes eld
8267 \end_inset
8268
8269 trozos
8270 \begin_inset Quotes erd
8271 \end_inset
8272
8273 , que son partes de la tabla presentes en la memoria de LaTeX.
8274  El valor predeterminado está establecido a solo 20 filas.
8275  Si estás usando tablas largas con muchas páginas, la generación del documento
8276  puede hacerse muy lenta.
8277  No hay problema en aumentar el tamaño de los trozos hasta 100-1000 añadiendo
8278  el siguiente comando en el preámbulo del documento:
8279 \end_layout
8280
8281 \begin_layout Standard
8282
8283 \series bold
8284
8285 \backslash
8286 setcounter{LTchunksize}{100}
8287 \end_layout
8288
8289 \begin_layout Subsection
8290 Flotantes y Tablas Largas
8291 \begin_inset LatexCommand index
8292 name "Tablas Largas ! Flotantes"
8293
8294 \end_inset
8295
8296
8297 \end_layout
8298
8299 \begin_layout Standard
8300 Podría haber problemas si un flotante aparece en la misma página donde comienza
8301  una tabla larga.
8302  Para evitarlo, añade el comando 
8303 \series bold
8304
8305 \backslash
8306 clearpage
8307 \series default
8308  como ERT antes de la tabla.
8309 \end_layout
8310
8311 \begin_layout Subsection
8312 Saltos de Página Forzados
8313 \begin_inset LatexCommand index
8314 name "Tablas Largas ! Saltos de Página Forzados"
8315
8316 \end_inset
8317
8318
8319 \end_layout
8320
8321 \begin_layout Standard
8322 Por defecto, las tablas solo se cortan entre filas.
8323  Si tienes una celda con líneas múltiples y necesitas un salto de página
8324  dentro de la celda, inserta el comando de nueva línea 
8325 \begin_inset Quotes eld
8326 \end_inset
8327
8328
8329 \series bold
8330
8331 \backslash
8332
8333 \backslash
8334
8335 \series default
8336
8337 \begin_inset Quotes erd
8338 \end_inset
8339
8340  como ERT en el punto en que quieras cortar.
8341  Antes del comando 
8342 \begin_inset Quotes eld
8343 \end_inset
8344
8345
8346 \series bold
8347
8348 \backslash
8349
8350 \backslash
8351
8352 \series default
8353
8354 \begin_inset Quotes erd
8355 \end_inset
8356
8357  debes insertar en ERT tantos caracteres 
8358 \begin_inset Quotes eld
8359 \end_inset
8360
8361
8362 \series bold
8363 &
8364 \series default
8365
8366 \begin_inset Quotes erd
8367 \end_inset
8368
8369  como columnas siguientes de la tabla.
8370  
8371 \series bold
8372 &
8373 \series default
8374  es el caracter para separar celdas.
8375  Escribe en ERT después de cada 
8376 \series bold
8377 &
8378 \series default
8379  el contenido de la celda siguiente correspondiente y borra el contenido
8380  de esas celdas.
8381 \newline
8382 Detrás del comando 
8383 \series bold
8384
8385 \backslash
8386
8387 \backslash
8388
8389 \series default
8390 , inserta tantos 
8391 \series bold
8392 &
8393 \series default
8394  como columnas haya delante de la actual.
8395  En la tabla\InsetSpace ~
8396
8397 \begin_inset LatexCommand ref
8398 reference "tab:Saltos de Página Forzados"
8399
8400 \end_inset
8401
8402  la celda que debería cortarse está en la segunda columna seguida de otra
8403  columna.
8404  Por eso el siguiente comando se inserta en la celda como ERT detrás de
8405  
8406 \begin_inset Quotes eld
8407 \end_inset
8408
8409
8410 \emph on
8411 Castelchiodato,
8412 \emph default
8413
8414 \begin_inset Quotes erd
8415 \end_inset
8416
8417 :
8418 \end_layout
8419
8420 \begin_layout Standard
8421
8422 \series bold
8423 & 111
8424 \backslash
8425
8426 \backslash
8427
8428 \newline
8429 &
8430 \end_layout
8431
8432 \begin_layout Standard
8433 El 
8434 \begin_inset Quotes eld
8435 \end_inset
8436
8437 111
8438 \begin_inset Quotes erd
8439 \end_inset
8440
8441  en la tercera columna de la fila se ha borrado.
8442  Si la fila más baja de la tabla larga no tiene, por alguna razón, línea
8443  superior pero quisieras una línea horizontal donde se corta la celda, usa
8444  este comando alternativo:
8445 \end_layout
8446
8447 \begin_layout Standard
8448
8449 \series bold
8450 & 111
8451 \backslash
8452
8453 \backslash
8454
8455 \newline
8456
8457 \backslash
8458 hline &
8459 \end_layout
8460
8461 \begin_layout Standard
8462 Cuando la celda a cortar está en la última columna, el comando
8463 \end_layout
8464
8465 \begin_layout Standard
8466
8467 \series bold
8468
8469 \backslash
8470 setlength{
8471 \backslash
8472 parf\SpecialChar \textcompwordmark{}
8473 illskip}{0pt}
8474 \end_layout
8475
8476 \begin_layout Standard
8477 debe insertarse como ERT al principio de la celda.
8478  Esto garantiza que la parte de la celda que será mostrada en la nueva página
8479  aparecerá con toda su anchura.
8480 \end_layout
8481
8482 \begin_layout Standard
8483 \align center
8484 \begin_inset Tabular
8485 <lyxtabular version="3" rows="39" columns="3">
8486 <features islongtable="true">
8487 <column alignment="left" valignment="top" leftline="true" width="0cm">
8488 <column alignment="left" valignment="top" rightline="true" width="3cm">
8489 <column alignment="right" valignment="top" rightline="true" width="0pt">
8490 <row endfirsthead="true">
8491 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8492 \begin_inset Text
8493
8494 \begin_layout Standard
8495 \begin_inset Caption
8496
8497 \begin_layout Standard
8498 Tabla con salto de página forzado en celda
8499 \begin_inset LatexCommand label
8500 name "tab:Saltos de Página Forzados"
8501
8502 \end_inset
8503
8504
8505 \begin_inset OptArg
8506 status collapsed
8507
8508 \begin_layout Standard
8509 Tabla con salto de página forzado en celda
8510 \end_layout
8511
8512 \end_inset
8513
8514
8515 \end_layout
8516
8517 \end_inset
8518
8519
8520 \begin_inset ERT
8521 status collapsed
8522
8523 \begin_layout Standard
8524
8525
8526 \backslash
8527
8528 \backslash
8529 %
8530 \end_layout
8531
8532 \end_inset
8533
8534
8535 \end_layout
8536
8537 \end_inset
8538 </cell>
8539 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8540 \begin_inset Text
8541
8542 \begin_layout Standard
8543
8544 \end_layout
8545
8546 \end_inset
8547 </cell>
8548 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8549 \begin_inset Text
8550
8551 \begin_layout Standard
8552
8553 \end_layout
8554
8555 \end_inset
8556 </cell>
8557 </row>
8558 <row topline="true" bottomline="true" endfirsthead="true">
8559 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8560 \begin_inset Text
8561
8562 \begin_layout Standard
8563
8564 \series bold
8565 Ejemplo de lista telefónica (ignore los nombres)
8566 \end_layout
8567
8568 \end_inset
8569 </cell>
8570 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8571 \begin_inset Text
8572
8573 \begin_layout Standard
8574
8575 \end_layout
8576
8577 \end_inset
8578 </cell>
8579 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8580 \begin_inset Text
8581
8582 \begin_layout Standard
8583
8584 \end_layout
8585
8586 \end_inset
8587 </cell>
8588 </row>
8589 <row topline="true" bottomline="true" endfirsthead="true">
8590 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8591 \begin_inset Text
8592
8593 \begin_layout Standard
8594
8595 \series bold
8596 NOMBRE
8597 \end_layout
8598
8599 \end_inset
8600 </cell>
8601 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8602 \begin_inset Text
8603
8604 \begin_layout Standard
8605
8606 \end_layout
8607
8608 \end_inset
8609 </cell>
8610 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8611 \begin_inset Text
8612
8613 \begin_layout Standard
8614
8615 \series bold
8616 TEL.
8617 \end_layout
8618
8619 \end_inset
8620 </cell>
8621 </row>
8622 <row bottomline="true" endhead="true">
8623 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8624 \begin_inset Text
8625
8626 \begin_layout Standard
8627 \begin_inset ERT
8628 status collapsed
8629
8630 \begin_layout Standard
8631
8632
8633 \backslash
8634 caption*{Continúa tabla con salto de página forzado en celda}
8635 \backslash
8636
8637 \backslash
8638 %
8639 \end_layout
8640
8641 \end_inset
8642
8643
8644 \end_layout
8645
8646 \end_inset
8647 </cell>
8648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8649 \begin_inset Text
8650
8651 \begin_layout Standard
8652
8653 \end_layout
8654
8655 \end_inset
8656 </cell>
8657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8658 \begin_inset Text
8659
8660 \begin_layout Standard
8661
8662 \end_layout
8663
8664 \end_inset
8665 </cell>
8666 </row>
8667 <row topline="true" bottomline="true" endhead="true">
8668 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8669 \begin_inset Text
8670
8671 \begin_layout Standard
8672  
8673 \series bold
8674 Ejemplo de lista telefónica
8675 \end_layout
8676
8677 \end_inset
8678 </cell>
8679 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8680 \begin_inset Text
8681
8682 \begin_layout Standard
8683
8684 \end_layout
8685
8686 \end_inset
8687 </cell>
8688 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8689 \begin_inset Text
8690
8691 \begin_layout Standard
8692
8693 \end_layout
8694
8695 \end_inset
8696 </cell>
8697 </row>
8698 <row topline="true" bottomline="true" endhead="true">
8699 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8700 \begin_inset Text
8701
8702 \begin_layout Standard
8703
8704 \series bold
8705 NOMBRE
8706 \end_layout
8707
8708 \end_inset
8709 </cell>
8710 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8711 \begin_inset Text
8712
8713 \begin_layout Standard
8714
8715 \end_layout
8716
8717 \end_inset
8718 </cell>
8719 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8720 \begin_inset Text
8721
8722 \begin_layout Standard
8723
8724 \series bold
8725 TEL.
8726 \end_layout
8727
8728 \end_inset
8729 </cell>
8730 </row>
8731 <row topline="true" bottomline="true" endfoot="true">
8732 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8733 \begin_inset Text
8734
8735 \begin_layout Standard
8736 continúa en página siguiente
8737 \end_layout
8738
8739 \end_inset
8740 </cell>
8741 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8742 \begin_inset Text
8743
8744 \begin_layout Standard
8745
8746 \end_layout
8747
8748 \end_inset
8749 </cell>
8750 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8751 \begin_inset Text
8752
8753 \begin_layout Standard
8754
8755 \end_layout
8756
8757 \end_inset
8758 </cell>
8759 </row>
8760 <row>
8761 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8762 \begin_inset Text
8763
8764 \begin_layout Standard
8765
8766 \series bold
8767 Annovi
8768 \end_layout
8769
8770 \end_inset
8771 </cell>
8772 <cell alignment="center" valignment="top" topline="true" usebox="none">
8773 \begin_inset Text
8774
8775 \begin_layout Standard
8776 Silvia
8777 \end_layout
8778
8779 \end_inset
8780 </cell>
8781 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8782 \begin_inset Text
8783
8784 \begin_layout Standard
8785 111
8786 \end_layout
8787
8788 \end_inset
8789 </cell>
8790 </row>
8791 <row>
8792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8793 \begin_inset Text
8794
8795 \begin_layout Standard
8796
8797 \series bold
8798 Bertoli
8799 \end_layout
8800
8801 \end_inset
8802 </cell>
8803 <cell alignment="center" valignment="top" topline="true" usebox="none">
8804 \begin_inset Text
8805
8806 \begin_layout Standard
8807 Stefano
8808 \end_layout
8809
8810 \end_inset
8811 </cell>
8812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8813 \begin_inset Text
8814
8815 \begin_layout Standard
8816 111
8817 \end_layout
8818
8819 \end_inset
8820 </cell>
8821 </row>
8822 <row>
8823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8824 \begin_inset Text
8825
8826 \begin_layout Standard
8827
8828 \series bold
8829 Bozzi
8830 \end_layout
8831
8832 \end_inset
8833 </cell>
8834 <cell alignment="center" valignment="top" topline="true" usebox="none">
8835 \begin_inset Text
8836
8837 \begin_layout Standard
8838 Walter
8839 \end_layout
8840
8841 \end_inset
8842 </cell>
8843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8844 \begin_inset Text
8845
8846 \begin_layout Standard
8847 111
8848 \end_layout
8849
8850 \end_inset
8851 </cell>
8852 </row>
8853 <row>
8854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8855 \begin_inset Text
8856
8857 \begin_layout Standard
8858
8859 \series bold
8860 Cachia
8861 \end_layout
8862
8863 \end_inset
8864 </cell>
8865 <cell alignment="center" valignment="top" topline="true" usebox="none">
8866 \begin_inset Text
8867
8868 \begin_layout Standard
8869 Maria
8870 \end_layout
8871
8872 \end_inset
8873 </cell>
8874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8875 \begin_inset Text
8876
8877 \begin_layout Standard
8878 111
8879 \end_layout
8880
8881 \end_inset
8882 </cell>
8883 </row>
8884 <row>
8885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8886 \begin_inset Text
8887
8888 \begin_layout Standard
8889
8890 \series bold
8891 Cachia
8892 \end_layout
8893
8894 \end_inset
8895 </cell>
8896 <cell alignment="center" valignment="top" topline="true" usebox="none">
8897 \begin_inset Text
8898
8899 \begin_layout Standard
8900 Maurizio
8901 \end_layout
8902
8903 \end_inset
8904 </cell>
8905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8906 \begin_inset Text
8907
8908 \begin_layout Standard
8909 111
8910 \end_layout
8911
8912 \end_inset
8913 </cell>
8914 </row>
8915 <row>
8916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8917 \begin_inset Text
8918
8919 \begin_layout Standard
8920
8921 \series bold
8922 Cinquemani
8923 \end_layout
8924
8925 \end_inset
8926 </cell>
8927 <cell alignment="center" valignment="top" topline="true" usebox="none">
8928 \begin_inset Text
8929
8930 \begin_layout Standard
8931 Giusi
8932 \end_layout
8933
8934 \end_inset
8935 </cell>
8936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8937 \begin_inset Text
8938
8939 \begin_layout Standard
8940 111
8941 \end_layout
8942
8943 \end_inset
8944 </cell>
8945 </row>
8946 <row>
8947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8948 \begin_inset Text
8949
8950 \begin_layout Standard
8951
8952 \series bold
8953 Colin
8954 \end_layout
8955
8956 \end_inset
8957 </cell>
8958 <cell alignment="center" valignment="top" topline="true" usebox="none">
8959 \begin_inset Text
8960
8961 \begin_layout Standard
8962 Bernard
8963 \end_layout
8964
8965 \end_inset
8966 </cell>
8967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8968 \begin_inset Text
8969
8970 \begin_layout Standard
8971 111
8972 \end_layout
8973
8974 \end_inset
8975 </cell>
8976 </row>
8977 <row>
8978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8979 \begin_inset Text
8980
8981 \begin_layout Standard
8982
8983 \series bold
8984 Concli
8985 \end_layout
8986
8987 \end_inset
8988 </cell>
8989 <cell alignment="center" valignment="top" topline="true" usebox="none">
8990 \begin_inset Text
8991
8992 \begin_layout Standard
8993 Gianfranco
8994 \end_layout
8995
8996 \end_inset
8997 </cell>
8998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8999 \begin_inset Text
9000
9001 \begin_layout Standard
9002 111
9003 \end_layout
9004
9005 \end_inset
9006 </cell>
9007 </row>
9008 <row>
9009 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9010 \begin_inset Text
9011
9012 \begin_layout Standard
9013
9014 \series bold
9015 Dal Bosco
9016 \end_layout
9017
9018 \end_inset
9019 </cell>
9020 <cell alignment="center" valignment="top" topline="true" usebox="none">
9021 \begin_inset Text
9022
9023 \begin_layout Standard
9024 Carolina
9025 \end_layout
9026
9027 \end_inset
9028 </cell>
9029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9030 \begin_inset Text
9031
9032 \begin_layout Standard
9033 111
9034 \end_layout
9035
9036 \end_inset
9037 </cell>
9038 </row>
9039 <row>
9040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9041 \begin_inset Text
9042
9043 \begin_layout Standard
9044
9045 \series bold
9046 Dalpiaz
9047 \end_layout
9048
9049 \end_inset
9050 </cell>
9051 <cell alignment="center" valignment="top" topline="true" usebox="none">
9052 \begin_inset Text
9053
9054 \begin_layout Standard
9055 Annamaria
9056 \end_layout
9057
9058 \end_inset
9059 </cell>
9060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9061 \begin_inset Text
9062
9063 \begin_layout Standard
9064 111
9065 \end_layout
9066
9067 \end_inset
9068 </cell>
9069 </row>
9070 <row>
9071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9072 \begin_inset Text
9073
9074 \begin_layout Standard
9075
9076 \series bold
9077 Feliciello
9078 \end_layout
9079
9080 \end_inset
9081 </cell>
9082 <cell alignment="center" valignment="top" topline="true" usebox="none">
9083 \begin_inset Text
9084
9085 \begin_layout Standard
9086 Domenico
9087 \end_layout
9088
9089 \end_inset
9090 </cell>
9091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9092 \begin_inset Text
9093
9094 \begin_layout Standard
9095 111
9096 \end_layout
9097
9098 \end_inset
9099 </cell>
9100 </row>
9101 <row>
9102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9103 \begin_inset Text
9104
9105 \begin_layout Standard
9106
9107 \series bold
9108 Focarelli
9109 \end_layout
9110
9111 \end_inset
9112 </cell>
9113 <cell alignment="center" valignment="top" topline="true" usebox="none">
9114 \begin_inset Text
9115
9116 \begin_layout Standard
9117 Paola
9118 \end_layout
9119
9120 \end_inset
9121 </cell>
9122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9123 \begin_inset Text
9124
9125 \begin_layout Standard
9126 111
9127 \end_layout
9128
9129 \end_inset
9130 </cell>
9131 </row>
9132 <row>
9133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9134 \begin_inset Text
9135
9136 \begin_layout Standard
9137
9138 \series bold
9139 Galletti
9140 \end_layout
9141
9142 \end_inset
9143 </cell>
9144 <cell alignment="center" valignment="top" topline="true" usebox="none">
9145 \begin_inset Text
9146
9147 \begin_layout Standard
9148 Oreste
9149 \end_layout
9150
9151 \end_inset
9152 </cell>
9153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9154 \begin_inset Text
9155
9156 \begin_layout Standard
9157 111
9158 \end_layout
9159
9160 \end_inset
9161 </cell>
9162 </row>
9163 <row>
9164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9165 \begin_inset Text
9166
9167 \begin_layout Standard
9168
9169 \series bold
9170 Gasparini
9171 \end_layout
9172
9173 \end_inset
9174 </cell>
9175 <cell alignment="center" valignment="top" topline="true" usebox="none">
9176 \begin_inset Text
9177
9178 \begin_layout Standard
9179 Franca
9180 \end_layout
9181
9182 \end_inset
9183 </cell>
9184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9185 \begin_inset Text
9186
9187 \begin_layout Standard
9188 111
9189 \end_layout
9190
9191 \end_inset
9192 </cell>
9193 </row>
9194 <row>
9195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9196 \begin_inset Text
9197
9198 \begin_layout Standard
9199
9200 \series bold
9201 Lassini
9202 \end_layout
9203
9204 \end_inset
9205 </cell>
9206 <cell alignment="center" valignment="top" topline="true" usebox="none">
9207 \begin_inset Text
9208
9209 \begin_layout Standard
9210 Giancarlo
9211 \end_layout
9212
9213 \end_inset
9214 </cell>
9215 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9216 \begin_inset Text
9217
9218 \begin_layout Standard
9219 111
9220 \end_layout
9221
9222 \end_inset
9223 </cell>
9224 </row>
9225 <row>
9226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9227 \begin_inset Text
9228
9229 \begin_layout Standard
9230
9231 \series bold
9232 Malfatti
9233 \end_layout
9234
9235 \end_inset
9236 </cell>
9237 <cell alignment="center" valignment="top" topline="true" usebox="none">
9238 \begin_inset Text
9239
9240 \begin_layout Standard
9241 Luciano
9242 \end_layout
9243
9244 \end_inset
9245 </cell>
9246 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9247 \begin_inset Text
9248
9249 \begin_layout Standard
9250 111
9251 \end_layout
9252
9253 \end_inset
9254 </cell>
9255 </row>
9256 <row>
9257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9258 \begin_inset Text
9259
9260 \begin_layout Standard
9261
9262 \series bold
9263 Malfatti
9264 \end_layout
9265
9266 \end_inset
9267 </cell>
9268 <cell alignment="center" valignment="top" topline="true" usebox="none">
9269 \begin_inset Text
9270
9271 \begin_layout Standard
9272 Valeriano
9273 \end_layout
9274
9275 \end_inset
9276 </cell>
9277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9278 \begin_inset Text
9279
9280 \begin_layout Standard
9281 111
9282 \end_layout
9283
9284 \end_inset
9285 </cell>
9286 </row>
9287 <row>
9288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9289 \begin_inset Text
9290
9291 \begin_layout Standard
9292
9293 \series bold
9294 Meneguzzo
9295 \end_layout
9296
9297 \end_inset
9298 </cell>
9299 <cell alignment="center" valignment="top" topline="true" usebox="none">
9300 \begin_inset Text
9301
9302 \begin_layout Standard
9303 Roberto
9304 \end_layout
9305
9306 \end_inset
9307 </cell>
9308 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9309 \begin_inset Text
9310
9311 \begin_layout Standard
9312 111
9313 \end_layout
9314
9315 \end_inset
9316 </cell>
9317 </row>
9318 <row>
9319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9320 \begin_inset Text
9321
9322 \begin_layout Standard
9323
9324 \series bold
9325 Mezzadra
9326 \end_layout
9327
9328 \end_inset
9329 </cell>
9330 <cell alignment="center" valignment="top" topline="true" usebox="none">
9331 \begin_inset Text
9332
9333 \begin_layout Standard
9334 Roberto
9335 \end_layout
9336
9337 \end_inset
9338 </cell>
9339 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9340 \begin_inset Text
9341
9342 \begin_layout Standard
9343 111
9344 \end_layout
9345
9346 \end_inset
9347 </cell>
9348 </row>
9349 <row>
9350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9351 \begin_inset Text
9352
9353 \begin_layout Standard
9354
9355 \series bold
9356 Pirpamer
9357 \end_layout
9358
9359 \end_inset
9360 </cell>
9361 <cell alignment="center" valignment="top" topline="true" usebox="none">
9362 \begin_inset Text
9363
9364 \begin_layout Standard
9365 Erich
9366 \end_layout
9367
9368 \end_inset
9369 </cell>
9370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9371 \begin_inset Text
9372
9373 \begin_layout Standard
9374 111
9375 \end_layout
9376
9377 \end_inset
9378 </cell>
9379 </row>
9380 <row>
9381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9382 \begin_inset Text
9383
9384 \begin_layout Standard
9385
9386 \series bold
9387 Pochiesa
9388 \end_layout
9389
9390 \end_inset
9391 </cell>
9392 <cell alignment="center" valignment="top" topline="true" usebox="none">
9393 \begin_inset Text
9394
9395 \begin_layout Standard
9396 Paolo
9397 \end_layout
9398
9399 \end_inset
9400 </cell>
9401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9402 \begin_inset Text
9403
9404 \begin_layout Standard
9405 111, 222
9406 \end_layout
9407
9408 \end_inset
9409 </cell>
9410 </row>
9411 <row>
9412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9413 \begin_inset Text
9414
9415 \begin_layout Standard
9416
9417 \series bold
9418 Radina
9419 \end_layout
9420
9421 \end_inset
9422 </cell>
9423 <cell alignment="center" valignment="top" topline="true" usebox="none">
9424 \begin_inset Text
9425
9426 \begin_layout Standard
9427 Claudio
9428 \end_layout
9429
9430 \end_inset
9431 </cell>
9432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9433 \begin_inset Text
9434
9435 \begin_layout Standard
9436 111
9437 \end_layout
9438
9439 \end_inset
9440 </cell>
9441 </row>
9442 <row>
9443 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9444 \begin_inset Text
9445
9446 \begin_layout Standard
9447
9448 \series bold
9449 Rizzardi
9450 \end_layout
9451
9452 \end_inset
9453 </cell>
9454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9455 \begin_inset Text
9456
9457 \begin_layout Standard
9458 Paolo, 11.
9459  Fürst von Montecompatri, 11.
9460  Fürst von Sulmona und Vivaro, 10.
9461  Fürst von Rossano, 5.
9462  Herzog von Canemorte, 11.
9463  Herzog von Palombara, 5.
9464  Herzog von Castelchiodato,
9465 \begin_inset ERT
9466 status collapsed
9467
9468 \begin_layout Standard
9469
9470 & 111
9471 \backslash
9472
9473 \backslash
9474
9475 \end_layout
9476
9477 \begin_layout Standard
9478
9479 &
9480 \end_layout
9481
9482 \end_inset
9483
9484  11.
9485  Herzog von Poggionativo, 11.
9486  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9487  Graf von Valinfreda, 11.
9488  Baron von Cropalati, 11.
9489  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9490 \end_layout
9491
9492 \end_inset
9493 </cell>
9494 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9495 \begin_inset Text
9496
9497 \begin_layout Standard
9498
9499 \end_layout
9500
9501 \end_inset
9502 </cell>
9503 </row>
9504 <row>
9505 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9506 \begin_inset Text
9507
9508 \begin_layout Standard
9509
9510 \series bold
9511 Stuffer
9512 \end_layout
9513
9514 \end_inset
9515 </cell>
9516 <cell alignment="center" valignment="top" topline="true" usebox="none">
9517 \begin_inset Text
9518
9519 \begin_layout Standard
9520 Oskar
9521 \end_layout
9522
9523 \end_inset
9524 </cell>
9525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9526 \begin_inset Text
9527
9528 \begin_layout Standard
9529 111
9530 \end_layout
9531
9532 \end_inset
9533 </cell>
9534 </row>
9535 <row>
9536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9537 \begin_inset Text
9538
9539 \begin_layout Standard
9540
9541 \series bold
9542 Tacchelli
9543 \end_layout
9544
9545 \end_inset
9546 </cell>
9547 <cell alignment="center" valignment="top" topline="true" usebox="none">
9548 \begin_inset Text
9549
9550 \begin_layout Standard
9551 Ugo
9552 \end_layout
9553
9554 \end_inset
9555 </cell>
9556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9557 \begin_inset Text
9558
9559 \begin_layout Standard
9560 111
9561 \end_layout
9562
9563 \end_inset
9564 </cell>
9565 </row>
9566 <row>
9567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9568 \begin_inset Text
9569
9570 \begin_layout Standard
9571
9572 \series bold
9573 Tezzele
9574 \end_layout
9575
9576 \end_inset
9577 </cell>
9578 <cell alignment="center" valignment="top" topline="true" usebox="none">
9579 \begin_inset Text
9580
9581 \begin_layout Standard
9582 Margit
9583 \end_layout
9584
9585 \end_inset
9586 </cell>
9587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9588 \begin_inset Text
9589
9590 \begin_layout Standard
9591 111
9592 \end_layout
9593
9594 \end_inset
9595 </cell>
9596 </row>
9597 <row>
9598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9599 \begin_inset Text
9600
9601 \begin_layout Standard
9602
9603 \series bold
9604 Unterkalmsteiner
9605 \end_layout
9606
9607 \end_inset
9608 </cell>
9609 <cell alignment="center" valignment="top" topline="true" usebox="none">
9610 \begin_inset Text
9611
9612 \begin_layout Standard
9613 Frieda
9614 \end_layout
9615
9616 \end_inset
9617 </cell>
9618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9619 \begin_inset Text
9620
9621 \begin_layout Standard
9622 111
9623 \end_layout
9624
9625 \end_inset
9626 </cell>
9627 </row>
9628 <row>
9629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9630 \begin_inset Text
9631
9632 \begin_layout Standard
9633
9634 \series bold
9635 Vieider
9636 \end_layout
9637
9638 \end_inset
9639 </cell>
9640 <cell alignment="center" valignment="top" topline="true" usebox="none">
9641 \begin_inset Text
9642
9643 \begin_layout Standard
9644 Hilde
9645 \end_layout
9646
9647 \end_inset
9648 </cell>
9649 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9650 \begin_inset Text
9651
9652 \begin_layout Standard
9653 111
9654 \end_layout
9655
9656 \end_inset
9657 </cell>
9658 </row>
9659 <row>
9660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9661 \begin_inset Text
9662
9663 \begin_layout Standard
9664
9665 \series bold
9666 Vigna
9667 \end_layout
9668
9669 \end_inset
9670 </cell>
9671 <cell alignment="center" valignment="top" topline="true" usebox="none">
9672 \begin_inset Text
9673
9674 \begin_layout Standard
9675 Jürgen
9676 \end_layout
9677
9678 \end_inset
9679 </cell>
9680 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9681 \begin_inset Text
9682
9683 \begin_layout Standard
9684 111
9685 \end_layout
9686
9687 \end_inset
9688 </cell>
9689 </row>
9690 <row>
9691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9692 \begin_inset Text
9693
9694 \begin_layout Standard
9695
9696 \series bold
9697 Weber
9698 \end_layout
9699
9700 \end_inset
9701 </cell>
9702 <cell alignment="center" valignment="top" topline="true" usebox="none">
9703 \begin_inset Text
9704
9705 \begin_layout Standard
9706 Maurizio
9707 \end_layout
9708
9709 \end_inset
9710 </cell>
9711 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9712 \begin_inset Text
9713
9714 \begin_layout Standard
9715 111
9716 \end_layout
9717
9718 \end_inset
9719 </cell>
9720 </row>
9721 <row bottomline="true">
9722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9723 \begin_inset Text
9724
9725 \begin_layout Standard
9726
9727 \series bold
9728 Winkler
9729 \end_layout
9730
9731 \end_inset
9732 </cell>
9733 <cell alignment="center" valignment="top" topline="true" usebox="none">
9734 \begin_inset Text
9735
9736 \begin_layout Standard
9737 Franz
9738 \end_layout
9739
9740 \end_inset
9741 </cell>
9742 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9743 \begin_inset Text
9744
9745 \begin_layout Standard
9746 111
9747 \end_layout
9748
9749 \end_inset
9750 </cell>
9751 </row>
9752 <row endlastfoot="true">
9753 <cell multicolumn="1" alignment="left" valignment="top" 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" usebox="none">
9763 \begin_inset Text
9764
9765 \begin_layout Standard
9766
9767 \end_layout
9768
9769 \end_inset
9770 </cell>
9771 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9772 \begin_inset Text
9773
9774 \begin_layout Standard
9775
9776 \end_layout
9777
9778 \end_inset
9779 </cell>
9780 </row>
9781 </lyxtabular>
9782
9783 \end_inset
9784
9785
9786 \end_layout
9787
9788 \begin_layout Section
9789 Líneas Múltiples en Columnas y Filas
9790 \end_layout
9791
9792 \begin_layout Subsection
9793 Líneas Múltiples en Celdas
9794 \begin_inset LatexCommand label
9795 name "sub:Líneas-Múltiples-en"
9796
9797 \end_inset
9798
9799
9800 \begin_inset LatexCommand index
9801 name "Líneas Múltiples en Celdas"
9802
9803 \end_inset
9804
9805
9806 \begin_inset LatexCommand index
9807 name "Tablas ! Saltos de Línea"
9808
9809 \end_inset
9810
9811
9812 \end_layout
9813
9814 \begin_layout Standard
9815 \align center
9816 \begin_inset Float table
9817 placement H
9818 wide false
9819 sideways false
9820 status open
9821
9822 \begin_layout Standard
9823 \begin_inset Caption
9824
9825 \begin_layout Standard
9826 \begin_inset LatexCommand label
9827 name "tab:Tabla-con-múltiples"
9828
9829 \end_inset
9830
9831 Tabla con líneas múltiples en celda
9832 \end_layout
9833
9834 \end_inset
9835
9836
9837 \end_layout
9838
9839 \begin_layout Standard
9840 \align center
9841 \begin_inset Tabular
9842 <lyxtabular version="3" rows="3" columns="3">
9843 <features>
9844 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9845 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9846 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9847 <row topline="true">
9848 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9849 \begin_inset Text
9850
9851 \begin_layout Standard
9852 líneas
9853 \begin_inset ERT
9854 status collapsed
9855
9856 \begin_layout Standard
9857
9858
9859 \backslash
9860 linebreak 
9861 \end_layout
9862
9863 \end_inset
9864
9865 múltiples
9866 \end_layout
9867
9868 \end_inset
9869 </cell>
9870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9871 \begin_inset Text
9872
9873 \begin_layout Standard
9874 b
9875 \end_layout
9876
9877 \end_inset
9878 </cell>
9879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9880 \begin_inset Text
9881
9882 \begin_layout Standard
9883 c
9884 \end_layout
9885
9886 \end_inset
9887 </cell>
9888 </row>
9889 <row topline="true">
9890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9891 \begin_inset Text
9892
9893 \begin_layout Standard
9894 d
9895 \end_layout
9896
9897 \end_inset
9898 </cell>
9899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9900 \begin_inset Text
9901
9902 \begin_layout Standard
9903 e
9904 \end_layout
9905
9906 \end_inset
9907 </cell>
9908 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9909 \begin_inset Text
9910
9911 \begin_layout Standard
9912 f
9913 \end_layout
9914
9915 \end_inset
9916 </cell>
9917 </row>
9918 <row topline="true" bottomline="true">
9919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9920 \begin_inset Text
9921
9922 \begin_layout Standard
9923 g
9924 \end_layout
9925
9926 \end_inset
9927 </cell>
9928 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9929 \begin_inset Text
9930
9931 \begin_layout Standard
9932 h
9933 \end_layout
9934
9935 \end_inset
9936 </cell>
9937 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9938 \begin_inset Text
9939
9940 \begin_layout Standard
9941 i
9942 \end_layout
9943
9944 \end_inset
9945 </cell>
9946 </row>
9947 </lyxtabular>
9948
9949 \end_inset
9950
9951
9952 \end_layout
9953
9954 \end_inset
9955
9956
9957 \end_layout
9958
9959 \begin_layout Standard
9960 Al ajustar anchura fija en una columna se habilita la entrada de texto como
9961  párrafos con varias líneas y guionado.
9962 \end_layout
9963
9964 \begin_layout Standard
9965 Para generar la tabla\InsetSpace ~
9966
9967 \begin_inset LatexCommand ref
9968 reference "tab:Tabla-con-múltiples"
9969
9970 \end_inset
9971
9972 , crea una tabla 3×3, marca la primera celda y clic-derecha sobre ella.
9973  En el diálogo que surge establece una anchura de 2.5\InsetSpace \thinspace{}
9974 cm y escoge centro en
9975  alineación vertical y horizontal.
9976  Como nuestro texto es menor de 2.5\InsetSpace \thinspace{}
9977 cm, sólo aparece una línea.
9978  Para poner dos añadimos un salto de línea con el comando en ERT
9979 \end_layout
9980
9981 \begin_layout Standard
9982
9983 \series bold
9984
9985 \backslash
9986 linebreak
9987 \end_layout
9988
9989 \begin_layout Standard
9990 Si el texto es más ancho que la celda será automáticamente dividido en líneas.
9991 \end_layout
9992
9993 \begin_layout Standard
9994 Para centrar verticalmente el texto en las otras dos celdas de la primera
9995  fila, haz clic-derecha en la segunda celda, ajusta una anchura de 0.5\InsetSpace \thinspace{}
9996 cm
9997  y marca alineaciones centrales.
9998  Haz lo mismo con la tercera celda de la fila.
9999 \end_layout
10000
10001 \begin_layout Standard
10002 Si hay una palabra larga en una celda con anchura fija, LaTeX no puede cortarla
10003  con guión si es la primera entrada.
10004  Por eso hay que insertar algo para que dicha palabra no sea la primera
10005  entrada: añade el comando
10006 \end_layout
10007
10008 \begin_layout Standard
10009
10010 \series bold
10011
10012 \backslash
10013 hspace{0pt}
10014 \end_layout
10015
10016 \begin_layout Standard
10017 en ERT antes de la palabra.
10018  Como el espacio es 0 la salida no cambia.
10019  La tabla\InsetSpace ~
10020
10021 \begin_inset LatexCommand ref
10022 reference "tab:Tabla-con-y"
10023
10024 \end_inset
10025
10026  muestra el efecto.
10027 \end_layout
10028
10029 \begin_layout Standard
10030 \begin_inset Float table
10031 placement b
10032 wide false
10033 sideways false
10034 status open
10035
10036 \begin_layout Standard
10037 \begin_inset Caption
10038
10039 \begin_layout Standard
10040 \begin_inset LatexCommand label
10041 name "tab:Tabla-con-y"
10042
10043 \end_inset
10044
10045 Tablas con y sin guión
10046 \end_layout
10047
10048 \end_inset
10049
10050
10051 \end_layout
10052
10053 \begin_layout Standard
10054
10055 \hfill
10056
10057 \begin_inset Tabular
10058 <lyxtabular version="3" rows="3" columns="3">
10059 <features>
10060 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10061 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10062 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10063 <row topline="true">
10064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10065 \begin_inset Text
10066
10067 \begin_layout Standard
10068 celdaconpalabramuylarga
10069 \end_layout
10070
10071 \end_inset
10072 </cell>
10073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10074 \begin_inset Text
10075
10076 \begin_layout Standard
10077 b
10078 \end_layout
10079
10080 \end_inset
10081 </cell>
10082 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10083 \begin_inset Text
10084
10085 \begin_layout Standard
10086 c
10087 \end_layout
10088
10089 \end_inset
10090 </cell>
10091 </row>
10092 <row topline="true">
10093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10094 \begin_inset Text
10095
10096 \begin_layout Standard
10097 d
10098 \end_layout
10099
10100 \end_inset
10101 </cell>
10102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10103 \begin_inset Text
10104
10105 \begin_layout Standard
10106 e
10107 \end_layout
10108
10109 \end_inset
10110 </cell>
10111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10112 \begin_inset Text
10113
10114 \begin_layout Standard
10115 f
10116 \end_layout
10117
10118 \end_inset
10119 </cell>
10120 </row>
10121 <row topline="true" bottomline="true">
10122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10123 \begin_inset Text
10124
10125 \begin_layout Standard
10126 g
10127 \end_layout
10128
10129 \end_inset
10130 </cell>
10131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10132 \begin_inset Text
10133
10134 \begin_layout Standard
10135 h
10136 \end_layout
10137
10138 \end_inset
10139 </cell>
10140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10141 \begin_inset Text
10142
10143 \begin_layout Standard
10144 i
10145 \end_layout
10146
10147 \end_inset
10148 </cell>
10149 </row>
10150 </lyxtabular>
10151
10152 \end_inset
10153
10154
10155 \hfill
10156
10157 \begin_inset Tabular
10158 <lyxtabular version="3" rows="3" columns="3">
10159 <features>
10160 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10161 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10162 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10163 <row topline="true">
10164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10165 \begin_inset Text
10166
10167 \begin_layout Standard
10168 \begin_inset ERT
10169 status collapsed
10170
10171 \begin_layout Standard
10172
10173
10174 \backslash
10175 hspace{0pt}
10176 \end_layout
10177
10178 \end_inset
10179
10180 celdaconpalabramuylarga
10181 \end_layout
10182
10183 \end_inset
10184 </cell>
10185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10186 \begin_inset Text
10187
10188 \begin_layout Standard
10189 b
10190 \end_layout
10191
10192 \end_inset
10193 </cell>
10194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10195 \begin_inset Text
10196
10197 \begin_layout Standard
10198 c
10199 \end_layout
10200
10201 \end_inset
10202 </cell>
10203 </row>
10204 <row topline="true">
10205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10206 \begin_inset Text
10207
10208 \begin_layout Standard
10209 d
10210 \end_layout
10211
10212 \end_inset
10213 </cell>
10214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10215 \begin_inset Text
10216
10217 \begin_layout Standard
10218 e
10219 \end_layout
10220
10221 \end_inset
10222 </cell>
10223 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10224 \begin_inset Text
10225
10226 \begin_layout Standard
10227 f
10228 \end_layout
10229
10230 \end_inset
10231 </cell>
10232 </row>
10233 <row topline="true" bottomline="true">
10234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10235 \begin_inset Text
10236
10237 \begin_layout Standard
10238 g
10239 \end_layout
10240
10241 \end_inset
10242 </cell>
10243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10244 \begin_inset Text
10245
10246 \begin_layout Standard
10247 h
10248 \end_layout
10249
10250 \end_inset
10251 </cell>
10252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10253 \begin_inset Text
10254
10255 \begin_layout Standard
10256 i
10257 \end_layout
10258
10259 \end_inset
10260 </cell>
10261 </row>
10262 </lyxtabular>
10263
10264 \end_inset
10265
10266
10267 \hfill
10268
10269 \end_layout
10270
10271 \end_inset
10272
10273
10274 \end_layout
10275
10276 \begin_layout Standard
10277
10278 \end_layout
10279
10280 \begin_layout Subsection
10281 Multicolumnas
10282 \begin_inset LatexCommand label
10283 name "sub:Multicolumnas"
10284
10285 \end_inset
10286
10287
10288 \begin_inset LatexCommand index
10289 name "Multicolumnas"
10290
10291 \end_inset
10292
10293
10294 \begin_inset LatexCommand index
10295 name "Tablas ! Multicolumnas"
10296
10297 \end_inset
10298
10299
10300 \end_layout
10301
10302 \begin_layout Subsubsection
10303 Fundamentos de Multicolumna
10304 \end_layout
10305
10306 \begin_layout Standard
10307 Para extender una celda sobre varias columnas, se marcan las celdas que
10308  se desee combinar y se usa el botón 
10309 \begin_inset Graphics
10310         filename ../../images/tabular-feature_multicolumn.xpm
10311         scale 85
10312
10313 \end_inset
10314
10315 , el menú 
10316 \family sans
10317 Editar\SpecialChar \menuseparator
10318 Tabla\SpecialChar \menuseparator
10319 Multicolumna
10320 \family default
10321 , o clic-derecha sobre las celdas marcadas y se selecciona en el diálogo,
10322  bajo la solapa 
10323 \family sans
10324 Configuración
10325 \family default
10326 , la casilla Multicolumna.
10327 \end_layout
10328
10329 \begin_layout Standard
10330 Las multicolumnas tienen su propia configuración de celdas.
10331  Esto es, los cambios de bordes, alineación y anchura sólo afectan a la
10332  multicolumna.
10333  Aquí hay un ejemplo de tabla con una multicolumna en la primera fila y
10334  otra en la última fila sin borde superior:
10335 \end_layout
10336
10337 \begin_layout Standard
10338 \align center
10339 \begin_inset Tabular
10340 <lyxtabular version="3" rows="3" columns="4">
10341 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10342 <column alignment="center" valignment="top" leftline="true" width="0pt">
10343 <column alignment="center" valignment="middle" leftline="true" width="0">
10344 <column alignment="center" valignment="top" leftline="true" width="0in">
10345 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10346 <row topline="true" bottomline="true">
10347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10348 \begin_inset Text
10349
10350 \begin_layout Standard
10351 abc
10352 \end_layout
10353
10354 \end_inset
10355 </cell>
10356 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10357 \begin_inset Text
10358
10359 \begin_layout Standard
10360 def ghi
10361 \end_layout
10362
10363 \end_inset
10364 </cell>
10365 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10366 \begin_inset Text
10367
10368 \begin_layout Standard
10369
10370 \end_layout
10371
10372 \end_inset
10373 </cell>
10374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10375 \begin_inset Text
10376
10377 \begin_layout Standard
10378 jkl
10379 \end_layout
10380
10381 \end_inset
10382 </cell>
10383 </row>
10384 <row topline="true">
10385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10386 \begin_inset Text
10387
10388 \begin_layout Standard
10389
10390 \family roman
10391 \series medium
10392 \shape up
10393 \size normal
10394 \emph off
10395 \bar no
10396 \noun off
10397 \color none
10398 A
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 B
10408 \end_layout
10409
10410 \end_inset
10411 </cell>
10412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10413 \begin_inset Text
10414
10415 \begin_layout Standard
10416 C
10417 \end_layout
10418
10419 \end_inset
10420 </cell>
10421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10422 \begin_inset Text
10423
10424 \begin_layout Standard
10425 D
10426 \end_layout
10427
10428 \end_inset
10429 </cell>
10430 </row>
10431 <row topline="true" bottomline="true">
10432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10433 \begin_inset Text
10434
10435 \begin_layout Standard
10436 1
10437 \end_layout
10438
10439 \end_inset
10440 </cell>
10441 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10442 \begin_inset Text
10443
10444 \begin_layout Standard
10445 2
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 3
10455 \end_layout
10456
10457 \end_inset
10458 </cell>
10459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10460 \begin_inset Text
10461
10462 \begin_layout Standard
10463 4
10464 \end_layout
10465
10466 \end_inset
10467 </cell>
10468 </row>
10469 </lyxtabular>
10470
10471 \end_inset
10472
10473
10474 \end_layout
10475
10476 \begin_layout Subsubsection
10477 Cálculos en Multicolumnas
10478 \begin_inset LatexCommand label
10479 name "sub:Cálculos-en-Multicolumnas"
10480
10481 \end_inset
10482
10483
10484 \begin_inset LatexCommand index
10485 name "Multicolumnas ! Cálculos"
10486
10487 \end_inset
10488
10489
10490 \end_layout
10491
10492 \begin_layout Standard
10493 LyX soporta multicolumnas directamente, pero hay que prestar atención a
10494  la anchura de celda de las columnas combinadas en la celda multicolumna.
10495 \end_layout
10496
10497 \begin_layout Standard
10498 \begin_inset Float table
10499 wide false
10500 sideways false
10501 status open
10502
10503 \begin_layout Standard
10504 \begin_inset Caption
10505
10506 \begin_layout Standard
10507 \begin_inset LatexCommand label
10508 name "tab:Tabla-con-centrado"
10509
10510 \end_inset
10511
10512 Tabla con texto centrado en multicolumna sobre dos columnas que tienen exactamen
10513 te la mitad de anchura que la celda multicolumna
10514 \begin_inset OptArg
10515 status collapsed
10516
10517 \begin_layout Standard
10518 Tabla multicolumna perfecta
10519 \end_layout
10520
10521 \end_inset
10522
10523
10524 \end_layout
10525
10526 \end_inset
10527
10528
10529 \end_layout
10530
10531 \begin_layout Standard
10532 \align center
10533 \begin_inset Tabular
10534 <lyxtabular version="3" rows="3" columns="3">
10535 <features>
10536 <column alignment="center" valignment="middle" leftline="true" width="0" special=">{\centering}m{1.25cm-6.2pt}">
10537 <column alignment="center" valignment="middle" leftline="true" width="0">
10538 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10539 <row topline="true">
10540 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special=">{\centering}m{2.5cm}">
10541 \begin_inset Text
10542
10543 \begin_layout Standard
10544 multicolumna línea múltiple
10545 \end_layout
10546
10547 \end_inset
10548 </cell>
10549 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10550 \begin_inset Text
10551
10552 \begin_layout Standard
10553
10554 \end_layout
10555
10556 \end_inset
10557 </cell>
10558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10559 \begin_inset Text
10560
10561 \begin_layout Standard
10562 c
10563 \end_layout
10564
10565 \end_inset
10566 </cell>
10567 </row>
10568 <row topline="true">
10569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10570 \begin_inset Text
10571
10572 \begin_layout Standard
10573 d
10574 \end_layout
10575
10576 \end_inset
10577 </cell>
10578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10579 \begin_inset Text
10580
10581 \begin_layout Standard
10582 e
10583 \end_layout
10584
10585 \end_inset
10586 </cell>
10587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10588 \begin_inset Text
10589
10590 \begin_layout Standard
10591 f
10592 \end_layout
10593
10594 \end_inset
10595 </cell>
10596 </row>
10597 <row topline="true" bottomline="true">
10598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10599 \begin_inset Text
10600
10601 \begin_layout Standard
10602 g
10603 \end_layout
10604
10605 \end_inset
10606 </cell>
10607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10608 \begin_inset Text
10609
10610 \begin_layout Standard
10611 h
10612 \end_layout
10613
10614 \end_inset
10615 </cell>
10616 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10617 \begin_inset Text
10618
10619 \begin_layout Standard
10620 i
10621 \end_layout
10622
10623 \end_inset
10624 </cell>
10625 </row>
10626 </lyxtabular>
10627
10628 \end_inset
10629
10630
10631 \end_layout
10632
10633 \end_inset
10634
10635
10636 \end_layout
10637
10638 \begin_layout Standard
10639 Por ejemplo, para crear la tabla\InsetSpace ~
10640
10641 \begin_inset LatexCommand ref
10642 reference "tab:Tabla-con-centrado"
10643
10644 \end_inset
10645
10646 , marca las dos primeras celdas en la primera fila de una tabla 3×3 y haz
10647  clic-derecha.
10648  En el diálogo marca 
10649 \emph on
10650 multicolumna
10651 \emph default
10652
10653 \emph on
10654 alineación centro
10655 \emph default
10656  y una anchura de 2.5\InsetSpace \thinspace{}
10657 cm.
10658  Las columnas combinadas deberían tener exactamente la mitad de la anchura
10659  de la celda multicolumna, así que deberías ajustar 1.25\InsetSpace \thinspace{}
10660 cm para la primera
10661  columna.
10662  La segunda columna tendrá entonces automáticamente 1.25\InsetSpace \thinspace{}
10663 cm de anchura.
10664  Para la tabla\InsetSpace ~
10665
10666 \begin_inset LatexCommand ref
10667 reference "tab:Tabla-sin-mitad"
10668
10669 \end_inset
10670
10671  se ha procedido de la siguiente manera:
10672 \end_layout
10673
10674 \begin_layout Standard
10675 \begin_inset Float table
10676 wide false
10677 sideways false
10678 status open
10679
10680 \begin_layout Standard
10681 \begin_inset Caption
10682
10683 \begin_layout Standard
10684 \begin_inset LatexCommand label
10685 name "tab:Tabla-sin-mitad"
10686
10687 \end_inset
10688
10689 Tabla en la que las columnas combinadas no tienen exactamente la mitad de
10690  anchura que la celda multicolumna
10691 \begin_inset OptArg
10692 status open
10693
10694 \begin_layout Standard
10695 Tabla multicolumna imperfecta
10696 \end_layout
10697
10698 \end_inset
10699
10700
10701 \end_layout
10702
10703 \end_inset
10704
10705
10706 \end_layout
10707
10708 \begin_layout Standard
10709 \align center
10710 \begin_inset Tabular
10711 <lyxtabular version="3" rows="3" columns="3">
10712 <features>
10713 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10714 <column alignment="center" valignment="top" leftline="true" width="0">
10715 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10716 <row topline="true" bottomline="true">
10717 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10718 \begin_inset Text
10719
10720 \begin_layout Standard
10721 multicolumna línea múltiple
10722 \end_layout
10723
10724 \end_inset
10725 </cell>
10726 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10727 \begin_inset Text
10728
10729 \begin_layout Standard
10730
10731 \end_layout
10732
10733 \end_inset
10734 </cell>
10735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10736 \begin_inset Text
10737
10738 \begin_layout Standard
10739 c
10740 \end_layout
10741
10742 \end_inset
10743 </cell>
10744 </row>
10745 <row topline="true">
10746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10747 \begin_inset Text
10748
10749 \begin_layout Standard
10750 d
10751 \end_layout
10752
10753 \end_inset
10754 </cell>
10755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10756 \begin_inset Text
10757
10758 \begin_layout Standard
10759 e
10760 \end_layout
10761
10762 \end_inset
10763 </cell>
10764 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10765 \begin_inset Text
10766
10767 \begin_layout Standard
10768 f
10769 \end_layout
10770
10771 \end_inset
10772 </cell>
10773 </row>
10774 <row topline="true" bottomline="true">
10775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10776 \begin_inset Text
10777
10778 \begin_layout Standard
10779 g
10780 \end_layout
10781
10782 \end_inset
10783 </cell>
10784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10785 \begin_inset Text
10786
10787 \begin_layout Standard
10788 h
10789 \end_layout
10790
10791 \end_inset
10792 </cell>
10793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10794 \begin_inset Text
10795
10796 \begin_layout Standard
10797 i
10798 \end_layout
10799
10800 \end_inset
10801 </cell>
10802 </row>
10803 </lyxtabular>
10804
10805 \end_inset
10806
10807
10808 \end_layout
10809
10810 \end_inset
10811
10812
10813 \end_layout
10814
10815 \begin_layout Standard
10816 Se ve que la primera columna no tiene la mitad de ancho que la celda multicolumn
10817 a, es un poco mayor.
10818  La razón es que la anchura dada para una celda 
10819 \begin_inset Formula $W_{g}$
10820 \end_inset
10821
10822  no es su anchura total 
10823 \begin_inset Formula $W_{\mathrm{tot}}$
10824 \end_inset
10825
10826  porque una celda es siempre algo mayor que la anchura dada.
10827  El Apéndice\InsetSpace ~
10828
10829 \begin_inset LatexCommand eqref
10830 reference "cha:Explicación-de-la-Ecuación"
10831
10832 \end_inset
10833
10834  lo explica con detalle.
10835 \end_layout
10836
10837 \begin_layout Standard
10838 La anchura dada necesaria, 
10839 \begin_inset Formula $W_{g\, n}$
10840 \end_inset
10841
10842  para combinar 
10843 \emph on
10844 n
10845 \emph default
10846  columnas puede calcularse de manera que cada columna tenga una anchura
10847  total de 
10848 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10849 \end_inset
10850
10851 :
10852 \begin_inset Formula \begin{equation}
10853 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10854
10855 \end_inset
10856
10857
10858 \end_layout
10859
10860 \begin_layout Standard
10861 En nuestro caso tenemos 
10862 \begin_inset Formula $n=2$
10863 \end_inset
10864
10865
10866 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10867 \end_inset
10868
10869 \InsetSpace \thinspace{}
10870 cm y los valores predeterminados para longitudes, así la ecuación\InsetSpace ~
10871
10872 \begin_inset LatexCommand ref
10873 reference "eq:Wgn"
10874
10875 \end_inset
10876
10877  queda
10878 \begin_inset Formula \begin{equation}
10879 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10880
10881 \end_inset
10882
10883
10884 \end_layout
10885
10886 \begin_layout Standard
10887 Para habilitar cálculos en LaTeX, debe cargarse en el preámbulo el paquete
10888  
10889 \series bold
10890 calc
10891 \series default
10892  con la línea
10893 \begin_inset LatexCommand index
10894 name "LaTeX-paquetes ! calc"
10895
10896 \end_inset
10897
10898
10899 \end_layout
10900
10901 \begin_layout Standard
10902
10903 \series bold
10904
10905 \backslash
10906 usepackage{calc}
10907 \end_layout
10908
10909 \begin_layout Standard
10910 LyX no permite calcular longitudes en el campo Ancho del cuadro de diálogo.
10911  Por tanto hay que insertar un argumento LaTeX en el diálogo.
10912  He aquí un repaso de los argumentos:
10913 \end_layout
10914
10915 \begin_layout Itemize
10916
10917 \series bold
10918 p{ancho}
10919 \series default
10920  crea celdas con anchura fija, el texto alineado arriba
10921 \end_layout
10922
10923 \begin_layout Itemize
10924
10925 \series bold
10926 m{ancho}
10927 \series default
10928  crea celdas con anchura fija, el texto con alineación vertical centrada
10929  
10930 \end_layout
10931
10932 \begin_layout Itemize
10933
10934 \series bold
10935 b{ancho}
10936 \series default
10937  crea celdas con anchura fija, el texto alineado abajo
10938 \end_layout
10939
10940 \begin_layout Standard
10941 Al introducir un argumento LaTeX, todas las propiedades de celda puestas
10942  en el diálogo se ignoran.
10943  
10944 \begin_inset Note Greyedout
10945 status collapsed
10946
10947 \begin_layout Standard
10948
10949 \series bold
10950 Nota:
10951 \series default
10952  Debido a un error, LyX muestra de todas formas estas propiedades.
10953 \end_layout
10954
10955 \end_inset
10956
10957  El comando 
10958 \series bold
10959
10960 \backslash
10961 centering
10962 \series default
10963  centra horizontalmente el texto.
10964  Puedes entonces introducir el siguiente argumento de LaTeX para la primera
10965  columna extendida:
10966 \end_layout
10967
10968 \begin_layout Standard
10969
10970 \series bold
10971 >{
10972 \backslash
10973 centering}m{1.25cm-6.2pt}
10974 \end_layout
10975
10976 \begin_layout Standard
10977 El comando 
10978 \series bold
10979 >{ }
10980 \series default
10981  significa que los comandos entre llaves se aplican antes de crear la celda.
10982 \end_layout
10983
10984 \begin_layout Standard
10985 Aunque hemos escogido alineación centrada para el texto de la celda multicolumna
10986 , aún está alineado a la izquierda.
10987  Esto se debe a que LyX solo aplica alineado a columnas simples.
10988  Así que para multicolumnas hemos de usar el argumento de LaTeX
10989 \end_layout
10990
10991 \begin_layout Standard
10992
10993 \series bold
10994 >{
10995 \backslash
10996 centering}m{2.5cm}
10997 \end_layout
10998
10999 \begin_layout Subsection
11000 Multifilas
11001 \begin_inset LatexCommand index
11002 name "Multifilas"
11003
11004 \end_inset
11005
11006
11007 \begin_inset LatexCommand index
11008 name "Tablas ! Multifilas"
11009
11010 \end_inset
11011
11012
11013 \begin_inset LatexCommand index
11014 name "LaTeX-paquetes ! multirow"
11015
11016 \end_inset
11017
11018
11019 \end_layout
11020
11021 \begin_layout Standard
11022 A diferencia de multicolumnas, LyX aún no soporta multifilas por lo que
11023  hace falta un poco de ERT.
11024  Hay que cargar el paquete de LaTeX 
11025 \series bold
11026 multirow
11027 \series default
11028  en el preámbulo del documento con el comando
11029 \end_layout
11030
11031 \begin_layout Standard
11032
11033 \series bold
11034
11035 \backslash
11036 usepackage{multirow}
11037 \end_layout
11038
11039 \begin_layout Standard
11040 Las multifilas se crean con el comando
11041 \end_layout
11042
11043 \begin_layout Standard
11044
11045 \series bold
11046
11047 \backslash
11048 multirow{número de filas}{ancho de celda}{entrada de celda}
11049 \end_layout
11050
11051 \begin_layout Standard
11052 Para crear la siguiente tabla:
11053 \end_layout
11054
11055 \begin_layout Standard
11056 \align center
11057 \begin_inset ERT
11058 status collapsed
11059
11060 \begin_layout Standard
11061
11062
11063 \backslash
11064 renewcommand{
11065 \backslash
11066 multirowsetup}{
11067 \backslash
11068 centering}
11069 \end_layout
11070
11071 \end_inset
11072
11073
11074 \begin_inset Tabular
11075 <lyxtabular version="3" rows="3" columns="3">
11076 <features>
11077 <column alignment="center" valignment="top" leftline="true" width="0">
11078 <column alignment="center" valignment="top" leftline="true" width="0">
11079 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11080 <row topline="true">
11081 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11082 \begin_inset Text
11083
11084 \begin_layout Standard
11085 a
11086 \end_layout
11087
11088 \end_inset
11089 </cell>
11090 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11091 \begin_inset Text
11092
11093 \begin_layout Standard
11094 b
11095 \end_layout
11096
11097 \end_inset
11098 </cell>
11099 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11100 \begin_inset Text
11101
11102 \begin_layout Standard
11103 c
11104 \end_layout
11105
11106 \end_inset
11107 </cell>
11108 </row>
11109 <row topline="true">
11110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11111 \begin_inset Text
11112
11113 \begin_layout Standard
11114 \begin_inset ERT
11115 status collapsed
11116
11117 \begin_layout Standard
11118
11119
11120 \backslash
11121 multirow{2}{2.5cm}{
11122 \end_layout
11123
11124 \end_inset
11125
11126 entrada multifila
11127 \begin_inset ERT
11128 status collapsed
11129
11130 \begin_layout Standard
11131
11132 }
11133 \end_layout
11134
11135 \end_inset
11136
11137
11138 \end_layout
11139
11140 \end_inset
11141 </cell>
11142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11143 \begin_inset Text
11144
11145 \begin_layout Standard
11146 e
11147 \end_layout
11148
11149 \end_inset
11150 </cell>
11151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11152 \begin_inset Text
11153
11154 \begin_layout Standard
11155 f
11156 \end_layout
11157
11158 \end_inset
11159 </cell>
11160 </row>
11161 <row topline="true" bottomline="true">
11162 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11163 \begin_inset Text
11164
11165 \begin_layout Standard
11166
11167 \end_layout
11168
11169 \end_inset
11170 </cell>
11171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11172 \begin_inset Text
11173
11174 \begin_layout Standard
11175 h
11176 \end_layout
11177
11178 \end_inset
11179 </cell>
11180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11181 \begin_inset Text
11182
11183 \begin_layout Standard
11184 i
11185 \end_layout
11186
11187 \end_inset
11188 </cell>
11189 </row>
11190 </lyxtabular>
11191
11192 \end_inset
11193
11194
11195 \begin_inset ERT
11196 status collapsed
11197
11198 \begin_layout Standard
11199
11200
11201 \backslash
11202 renewcommand{
11203 \backslash
11204 multirowsetup}{
11205 \backslash
11206 raggedright}
11207 \end_layout
11208
11209 \end_inset
11210
11211
11212 \end_layout
11213
11214 \begin_layout Standard
11215 crea una tabla 3×3.
11216  Para quitar la línea sobre la última celda en la primera columna, se marca
11217  la celda como multicolumna y se quita el borde superior.
11218  Ahora se crea la multifila en la segunda fila de la primera columna insertando
11219  ahí el comando
11220 \end_layout
11221
11222 \begin_layout Standard
11223
11224 \series bold
11225
11226 \backslash
11227 multirow{2}{2.5cm}{
11228 \end_layout
11229
11230 \begin_layout Standard
11231 como ERT.
11232  Según los parámetros del comando la multifila se expande a dos filas y
11233  tiene de ancho 2.5\InsetSpace \thinspace{}
11234 cm.
11235  El contenido de la celda multifila sigue fuera del cuadro ERT y el comando
11236  finaliza con llave derecha 
11237 \series bold
11238 }
11239 \series default
11240  en otro cuadro ERT tras el texto.
11241 \end_layout
11242
11243 \begin_layout Standard
11244
11245 \series bold
11246
11247 \backslash
11248 multirow
11249 \series default
11250  alinea su contenido a la izquierda por defecto.
11251  Para cambiarlo renombra el comando 
11252 \series bold
11253
11254 \backslash
11255 multirowsetup
11256 \series default
11257  con el comando
11258 \end_layout
11259
11260 \begin_layout Standard
11261
11262 \series bold
11263
11264 \backslash
11265 renewcommand{
11266 \backslash
11267 multirowsetup}{
11268 \backslash
11269 centering}
11270 \end_layout
11271
11272 \begin_layout Standard
11273 en ERT en el preámbulo del documento.
11274  Entonces se centran todas las entradas de celdas multifila en el documento.
11275  Si solo queremos centrar en algunas tablas, se puede renombrar el comando
11276  en ERT justo antes de la tabla en lugar de en el preámbulo.
11277  Si el texto debe estar alineado a la derecha, reemplaza 
11278 \series bold
11279
11280 \backslash
11281 centering
11282 \series default
11283  por 
11284 \series bold
11285
11286 \backslash
11287 raggedleft
11288 \series default
11289 .
11290  Para volver a alineado a la izquierda usa 
11291 \series bold
11292
11293 \backslash
11294 raggedright
11295 \series default
11296 .
11297 \end_layout
11298
11299 \begin_layout Section
11300 Tablas Formales
11301 \begin_inset LatexCommand label
11302 name "sec:Tablas-Formales"
11303
11304 \end_inset
11305
11306
11307 \begin_inset LatexCommand index
11308 name "Tablas Formales"
11309
11310 \end_inset
11311
11312
11313 \begin_inset LatexCommand index
11314 name "Tablas ! Estilo Formal"
11315
11316 \end_inset
11317
11318  
11319 \end_layout
11320
11321 \begin_layout Standard
11322 En los libros, las tablas se suelen presentar en un formato como el de la
11323  tabla \InsetSpace ~
11324
11325 \begin_inset LatexCommand ref
11326 reference "tab:Ejemplo-tabla-formal"
11327
11328 \end_inset
11329
11330 .
11331  Se denominan tablas 
11332 \emph on
11333 formales
11334 \emph default
11335 .
11336  Para hacer tablas con este diseño, elige 
11337 \family sans
11338 Estilo
11339 \family default
11340 \InsetSpace ~
11341
11342 \family sans
11343 Formal
11344 \family default
11345  en la solapa 
11346 \family sans
11347 Bordes
11348 \family default
11349  del cuadro de diálogo de tablas.
11350 \end_layout
11351
11352 \begin_layout Standard
11353 \begin_inset Float table
11354 placement h
11355 wide false
11356 sideways false
11357 status open
11358
11359 \begin_layout Standard
11360 \begin_inset Caption
11361
11362 \begin_layout Standard
11363 \begin_inset LatexCommand label
11364 name "tab:Ejemplo-tabla-formal"
11365
11366 \end_inset
11367
11368 Ejemplo de tabla formal
11369 \end_layout
11370
11371 \end_inset
11372
11373
11374 \end_layout
11375
11376 \begin_layout Standard
11377 \align center
11378 \begin_inset Tabular
11379 <lyxtabular version="3" rows="8" columns="4">
11380 <features booktabs="true">
11381 <column alignment="center" valignment="top" rightline="true" width="0">
11382 <column alignment="center" valignment="top" width="0">
11383 <column alignment="center" valignment="top" width="0">
11384 <column alignment="center" valignment="top" width="0">
11385 <row topline="true">
11386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11387 \begin_inset Text
11388
11389 \begin_layout Standard
11390 System
11391 \end_layout
11392
11393 \end_inset
11394 </cell>
11395 <cell alignment="center" valignment="top" topline="true" usebox="none">
11396 \begin_inset Text
11397
11398 \begin_layout Standard
11399 Medipix
11400 \begin_inset Formula $\,$
11401 \end_inset
11402
11403 1
11404 \end_layout
11405
11406 \end_inset
11407 </cell>
11408 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11409 \begin_inset Text
11410
11411 \begin_layout Standard
11412 Medipix
11413 \begin_inset Formula $\,$
11414 \end_inset
11415
11416 2
11417 \end_layout
11418
11419 \end_inset
11420 </cell>
11421 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11422 \begin_inset Text
11423
11424 \begin_layout Standard
11425
11426 \end_layout
11427
11428 \end_inset
11429 </cell>
11430 </row>
11431 <row>
11432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11433 \begin_inset Text
11434
11435 \begin_layout Standard
11436 \begin_inset ERT
11437 status collapsed
11438
11439 \begin_layout Standard
11440
11441
11442 \backslash
11443 cmidrule(r){2-2}
11444 \end_layout
11445
11446 \end_inset
11447
11448
11449 \begin_inset ERT
11450 status collapsed
11451
11452 \begin_layout Standard
11453
11454
11455 \backslash
11456 cmidrule(l){3-4}
11457 \end_layout
11458
11459 \end_inset
11460
11461 Detector thickness [µm]
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" usebox="none">
11476 \begin_inset Text
11477
11478 \begin_layout Standard
11479 300
11480 \end_layout
11481
11482 \end_inset
11483 </cell>
11484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11485 \begin_inset Text
11486
11487 \begin_layout Standard
11488 700
11489 \end_layout
11490
11491 \end_inset
11492 </cell>
11493 </row>
11494 <row topline="true">
11495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11496 \begin_inset Text
11497
11498 \begin_layout Standard
11499 Edge angle [°]
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 3.55
11509 \end_layout
11510
11511 \end_inset
11512 </cell>
11513 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11514 \begin_inset Text
11515
11516 \begin_layout Standard
11517 2.71
11518 \end_layout
11519
11520 \end_inset
11521 </cell>
11522 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11523 \begin_inset Text
11524
11525 \begin_layout Standard
11526 7.99
11527 \end_layout
11528
11529 \end_inset
11530 </cell>
11531 </row>
11532 <row topspace="default">
11533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11534 \begin_inset Text
11535
11536 \begin_layout Standard
11537 Spatial resolution [µm]
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 4.26
11547 \end_layout
11548
11549 \end_inset
11550 </cell>
11551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11552 \begin_inset Text
11553
11554 \begin_layout Standard
11555 10.17
11556 \end_layout
11557
11558 \end_inset
11559 </cell>
11560 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11561 \begin_inset Text
11562
11563 \begin_layout Standard
11564 10.56
11565 \end_layout
11566
11567 \end_inset
11568 </cell>
11569 </row>
11570 <row topspace="default">
11571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11572 \begin_inset Text
11573
11574 \begin_layout Standard
11575 MTF at 
11576 \begin_inset Formula $f_{\mathrm{max}}$
11577 \end_inset
11578
11579
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.53
11589 \end_layout
11590
11591 \end_inset
11592 </cell>
11593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11594 \begin_inset Text
11595
11596 \begin_layout Standard
11597 0.37
11598 \end_layout
11599
11600 \end_inset
11601 </cell>
11602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11603 \begin_inset Text
11604
11605 \begin_layout Standard
11606 0.39
11607 \end_layout
11608
11609 \end_inset
11610 </cell>
11611 </row>
11612 <row topspace="default">
11613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11614 \begin_inset Text
11615
11616 \begin_layout Standard
11617 \begin_inset ERT
11618 status collapsed
11619
11620 \begin_layout Standard
11621
11622
11623 \backslash
11624 cmidrule(l{10pt}){1-1}
11625 \end_layout
11626
11627 \end_inset
11628
11629 LSF-spatial resolution
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" usebox="none">
11644 \begin_inset Text
11645
11646 \begin_layout Standard
11647
11648 \end_layout
11649
11650 \end_inset
11651 </cell>
11652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11653 \begin_inset Text
11654
11655 \begin_layout Standard
11656
11657 \end_layout
11658
11659 \end_inset
11660 </cell>
11661 </row>
11662 <row>
11663 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11664 \begin_inset Text
11665
11666 \begin_layout Standard
11667 in µm
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 129.7
11677 \end_layout
11678
11679 \end_inset
11680 </cell>
11681 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11682 \begin_inset Text
11683
11684 \begin_layout Standard
11685 52.75
11686 \end_layout
11687
11688 \end_inset
11689 </cell>
11690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11691 \begin_inset Text
11692
11693 \begin_layout Standard
11694 50.78
11695 \end_layout
11696
11697 \end_inset
11698 </cell>
11699 </row>
11700 <row bottomline="true">
11701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11702 \begin_inset Text
11703
11704 \begin_layout Standard
11705 in % of pixel size
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 76.3
11715 \end_layout
11716
11717 \end_inset
11718 </cell>
11719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11720 \begin_inset Text
11721
11722 \begin_layout Standard
11723 95.9
11724 \end_layout
11725
11726 \end_inset
11727 </cell>
11728 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11729 \begin_inset Text
11730
11731 \begin_layout Standard
11732 92.3
11733 \end_layout
11734
11735 \end_inset
11736 </cell>
11737 </row>
11738 </lyxtabular>
11739
11740 \end_inset
11741
11742
11743 \end_layout
11744
11745 \end_inset
11746
11747
11748 \end_layout
11749
11750 \begin_layout Standard
11751 Se puede añadir espacio adicional a las filas de la tabla mediante los botones
11752  correspondientes que se encuentran en la solapa 
11753 \family sans
11754 Bordes 
11755 \family default
11756 del diálogo
11757 \family sans
11758  Configuración\InsetSpace ~
11759 de\InsetSpace ~
11760 la\InsetSpace ~
11761 tabla
11762 \family default
11763 , como se explica en la sección\InsetSpace ~
11764
11765 \begin_inset LatexCommand ref
11766 reference "sub:Espacio-adicional"
11767
11768 \end_inset
11769
11770
11771 \end_layout
11772
11773 \begin_layout Standard
11774 A diferencia de las tablas normales, las tablas formales no tienen líneas
11775  verticales.
11776  Las líneas horizontales se pueden poner o no como en las tablas normales,
11777  pero en la salida se mostrarán con distinto grosor:
11778 \newline
11779 Las líneas primera y
11780  última tienen un grosor predeterminado de 0.08\InsetSpace \thinspace{}
11781 em, las demás tienen un grosor
11782  predeterminado de 0.05\InsetSpace \thinspace{}
11783 em.
11784 \end_layout
11785
11786 \begin_layout Standard
11787 Estos valores predeterminados se pueden cambiar
11788 \series bold
11789  
11790 \series default
11791 con las líneas de preámbulo:
11792 \end_layout
11793
11794 \begin_layout Standard
11795
11796 \series bold
11797
11798 \backslash
11799 let
11800 \backslash
11801 mytoprule
11802 \backslash
11803 toprule
11804 \newline
11805
11806 \backslash
11807 renewcommand{
11808 \backslash
11809 toprule}{
11810 \backslash
11811 mytoprule[grosor]}
11812 \end_layout
11813
11814 \begin_layout Standard
11815 Este ejemplo es para la primera línea, la denominada 
11816 \emph on
11817 toprule
11818 \emph default
11819 .
11820  Si quieres cambiar el grosor de la última línea, reemplaza 
11821 \series bold
11822 toprule
11823 \series default
11824  por 
11825 \series bold
11826 bottomrule
11827 \series default
11828 .
11829  Y para cambiar el grosor de las demás líneas cambia 
11830 \series bold
11831 toprule
11832 \series default
11833  por 
11834 \series bold
11835 midrule
11836 \series default
11837 .
11838  Puedes usar cualquiera de las unidades listadas en el apéndice\InsetSpace ~
11839
11840 \begin_inset LatexCommand ref
11841 reference "cha:Unidades-disponibles-en"
11842
11843 \end_inset
11844
11845 para establecer el grosor.
11846 \end_layout
11847
11848 \begin_layout Standard
11849 Para dibujar líneas que no se extiendan a todas las columnas de la tabla,
11850  puedes marcarlas como celdas multicolumna y entonces ponerles borde.
11851  LyX empleará internamente el comando 
11852 \series bold
11853
11854 \backslash
11855 cmidrule
11856 \series default
11857  para dibujar la línea.
11858  El esquema completo es
11859 \end_layout
11860
11861 \begin_layout Standard
11862
11863 \series bold
11864
11865 \backslash
11866 cmidrule[grosor](recorte){inicol-fincol}
11867 \end_layout
11868
11869 \begin_layout Standard
11870 Por el momento, LyX no soporta las opciones de 
11871 \series bold
11872
11873 \backslash
11874 cmidrule
11875 \series default
11876 , así que para usarlas hay que emplear ERT.
11877  Las líneas 
11878 \series bold
11879
11880 \backslash
11881 cmidrule
11882 \series default
11883  se pueden insertar manualmente con el comando en ERT como primera entrada
11884  de la primera celda de una fila.
11885  En la salida se dibujará la línea sobre dicha fila.
11886 \end_layout
11887
11888 \begin_layout Standard
11889 El grosor predeterminado es 0.03\InsetSpace \thinspace{}
11890 em.
11891  
11892 \series bold
11893 inicol
11894 \series default
11895  es el número de la columna en la que comienza la línea y 
11896 \series bold
11897 fincol
11898 \series default
11899  es el número de la columna en la que acaba la línea.
11900  El valor 
11901 \series bold
11902 fincol
11903 \series default
11904  debe especificarse siempre, aunque la línea se extienda sobre una sola
11905  columna.
11906  El parámetro opcional 
11907 \series bold
11908 recorte
11909 \series default
11910  debe ser 
11911 \emph on
11912 l{recorte}
11913 \emph default
11914  o 
11915 \emph on
11916 r{recorte}
11917 \emph default
11918 , donde 
11919 \emph on
11920 recorte
11921 \emph default
11922  también es opcional.
11923  Por ejemplo, el parámetro 
11924 \emph on
11925 l{2pt}
11926 \emph default
11927  significa que la línea se recorta 2\InsetSpace \thinspace{}
11928 pt por su izquierda.
11929  Si no se especifica el tamaño  las líneas se recortan por defecto en 0.5\InsetSpace \thinspace{}
11930 em.
11931
11932 \series bold
11933  
11934 \end_layout
11935
11936 \begin_layout Standard
11937
11938 \end_layout
11939
11940 \begin_layout Standard
11941 \begin_inset VSpace bigskip
11942 \end_inset
11943
11944
11945 \end_layout
11946
11947 \begin_layout Standard
11948 La tabla\InsetSpace ~
11949
11950 \begin_inset LatexCommand ref
11951 reference "tab:Ejemplo-tabla-formal"
11952
11953 \end_inset
11954
11955  se ha creado con los comandos
11956 \end_layout
11957
11958 \begin_layout Standard
11959
11960 \series bold
11961
11962 \backslash
11963 cmidrule(r){2-2}
11964 \backslash
11965 cmidrule(l){3-4}
11966 \end_layout
11967
11968 \begin_layout Standard
11969 en la segunda fila, 
11970 \series bold
11971
11972 \backslash
11973 midrule
11974 \series default
11975  en la tercera, y
11976 \end_layout
11977
11978 \begin_layout Standard
11979
11980 \series bold
11981
11982 \backslash
11983 cmidrule(l{10pt}){1-1}
11984 \end_layout
11985
11986 \begin_layout Standard
11987 en la sexta fila.
11988 \end_layout
11989
11990 \begin_layout Standard
11991 \begin_inset VSpace bigskip
11992 \end_inset
11993
11994
11995 \end_layout
11996
11997 \begin_layout Standard
11998 Quizá quieras superponer líneas 
11999 \series bold
12000
12001 \backslash
12002 cmidrules
12003 \series default
12004  como en la tabla\InsetSpace ~
12005
12006 \begin_inset LatexCommand ref
12007 reference "tab:Tabla-formal-especial"
12008
12009 \end_inset
12010
12011 .
12012  Esto se consigue con el comando ERT
12013 \end_layout
12014
12015 \begin_layout Standard
12016
12017 \series bold
12018
12019 \backslash
12020 morecmidrules
12021 \end_layout
12022
12023 \begin_layout Standard
12024 El comando que se ha utilizado para la segunda fila de la tabla\InsetSpace ~
12025
12026 \begin_inset LatexCommand ref
12027 reference "tab:Tabla-formal-especial"
12028
12029 \end_inset
12030
12031  es
12032 \end_layout
12033
12034 \begin_layout Standard
12035
12036 \series bold
12037
12038 \backslash
12039 cmidrule(r){2-2}
12040 \backslash
12041 cmidrule(l){3-4}
12042 \backslash
12043 morecmidrules
12044 \backslash
12045 cmidrule{2-4}
12046 \end_layout
12047
12048 \begin_layout Standard
12049 El comando para la sexta fila es
12050 \end_layout
12051
12052 \begin_layout Standard
12053
12054 \series bold
12055
12056 \backslash
12057 midrule
12058 \backslash
12059 morecmidrules
12060 \backslash
12061 cmidrule{3-4}
12062 \series default
12063
12064 \begin_inset VSpace bigskip
12065 \end_inset
12066
12067
12068 \end_layout
12069
12070 \begin_layout Standard
12071 Si de todas formas no te satisface el espaciado de los bordes, puedes usar
12072  el siguiente comando para dibujar líneas que se extienden sobre todas las
12073  columnas
12074 \end_layout
12075
12076 \begin_layout Standard
12077
12078 \series bold
12079
12080 \backslash
12081 specialrule{anchura}{espacio superior}{espacio inferior}
12082 \end_layout
12083
12084 \begin_layout Standard
12085 Para más información sobre estas características especiales, acude al manual
12086  del paquete LaTeX 
12087 \series bold
12088 booktabs
12089 \series default
12090
12091 \begin_inset LatexCommand cite
12092 key "booktabs"
12093
12094 \end_inset
12095
12096 .
12097 \begin_inset LatexCommand index
12098 name "LaTeX-paquetes ! booktabs"
12099
12100 \end_inset
12101
12102  
12103 \begin_inset VSpace bigskip
12104 \end_inset
12105
12106
12107 \end_layout
12108
12109 \begin_layout Standard
12110 \begin_inset Float table
12111 placement h
12112 wide false
12113 sideways false
12114 status open
12115
12116 \begin_layout Standard
12117 \begin_inset Caption
12118
12119 \begin_layout Standard
12120 \begin_inset LatexCommand label
12121 name "tab:Tabla-formal-especial"
12122
12123 \end_inset
12124
12125 Tabla formal especial
12126 \end_layout
12127
12128 \end_inset
12129
12130
12131 \end_layout
12132
12133 \begin_layout Standard
12134 \align center
12135 \begin_inset Tabular
12136 <lyxtabular version="3" rows="8" columns="4">
12137 <features booktabs="true">
12138 <column alignment="center" valignment="top" width="0">
12139 <column alignment="center" valignment="top" width="0">
12140 <column alignment="center" valignment="top" width="0">
12141 <column alignment="center" valignment="top" width="0">
12142 <row topline="true">
12143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12144 \begin_inset Text
12145
12146 \begin_layout Standard
12147 System
12148 \end_layout
12149
12150 \end_inset
12151 </cell>
12152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12153 \begin_inset Text
12154
12155 \begin_layout Standard
12156 Medipix\InsetSpace \thinspace{}
12157 1
12158 \end_layout
12159
12160 \end_inset
12161 </cell>
12162 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12163 \begin_inset Text
12164
12165 \begin_layout Standard
12166 Medipix\InsetSpace \thinspace{}
12167 2
12168 \end_layout
12169
12170 \end_inset
12171 </cell>
12172 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12173 \begin_inset Text
12174
12175 \begin_layout Standard
12176
12177 \end_layout
12178
12179 \end_inset
12180 </cell>
12181 </row>
12182 <row>
12183 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12184 \begin_inset Text
12185
12186 \begin_layout Standard
12187 \begin_inset ERT
12188 status collapsed
12189
12190 \begin_layout Standard
12191
12192
12193 \backslash
12194 cmidrule(r){2-2}
12195 \end_layout
12196
12197 \end_inset
12198
12199
12200 \begin_inset ERT
12201 status collapsed
12202
12203 \begin_layout Standard
12204
12205
12206 \backslash
12207 cmidrule(l){3-4}
12208 \end_layout
12209
12210 \end_inset
12211
12212
12213 \begin_inset ERT
12214 status collapsed
12215
12216 \begin_layout Standard
12217
12218
12219 \backslash
12220 morecmidrules 
12221 \end_layout
12222
12223 \end_inset
12224
12225
12226 \begin_inset ERT
12227 status collapsed
12228
12229 \begin_layout Standard
12230
12231
12232 \backslash
12233 cmidrule{2-4}
12234 \end_layout
12235
12236 \end_inset
12237
12238 Detector thickness [µm]
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" usebox="none">
12253 \begin_inset Text
12254
12255 \begin_layout Standard
12256 300
12257 \end_layout
12258
12259 \end_inset
12260 </cell>
12261 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12262 \begin_inset Text
12263
12264 \begin_layout Standard
12265 700
12266 \end_layout
12267
12268 \end_inset
12269 </cell>
12270 </row>
12271 <row topline="true">
12272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12273 \begin_inset Text
12274
12275 \begin_layout Standard
12276 Edge angle [°]
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 3.55
12286 \end_layout
12287
12288 \end_inset
12289 </cell>
12290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12291 \begin_inset Text
12292
12293 \begin_layout Standard
12294 2.71
12295 \end_layout
12296
12297 \end_inset
12298 </cell>
12299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12300 \begin_inset Text
12301
12302 \begin_layout Standard
12303 7.99
12304 \end_layout
12305
12306 \end_inset
12307 </cell>
12308 </row>
12309 <row topspace="default">
12310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12311 \begin_inset Text
12312
12313 \begin_layout Standard
12314 Spatial resolution [µm]
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 4.26
12324 \end_layout
12325
12326 \end_inset
12327 </cell>
12328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12329 \begin_inset Text
12330
12331 \begin_layout Standard
12332 10.17
12333 \end_layout
12334
12335 \end_inset
12336 </cell>
12337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12338 \begin_inset Text
12339
12340 \begin_layout Standard
12341 10.56
12342 \end_layout
12343
12344 \end_inset
12345 </cell>
12346 </row>
12347 <row topspace="default">
12348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12349 \begin_inset Text
12350
12351 \begin_layout Standard
12352 MTF at 
12353 \begin_inset Formula $f_{\mathrm{max}}$
12354 \end_inset
12355
12356
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.53
12366 \end_layout
12367
12368 \end_inset
12369 </cell>
12370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12371 \begin_inset Text
12372
12373 \begin_layout Standard
12374 0.37
12375 \end_layout
12376
12377 \end_inset
12378 </cell>
12379 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12380 \begin_inset Text
12381
12382 \begin_layout Standard
12383 0.39
12384 \end_layout
12385
12386 \end_inset
12387 </cell>
12388 </row>
12389 <row topline="true">
12390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12391 \begin_inset Text
12392
12393 \begin_layout Standard
12394 \begin_inset ERT
12395 status collapsed
12396
12397 \begin_layout Standard
12398
12399
12400 \backslash
12401 morecmidrules 
12402 \end_layout
12403
12404 \end_inset
12405
12406
12407 \begin_inset ERT
12408 status collapsed
12409
12410 \begin_layout Standard
12411
12412
12413 \backslash
12414 cmidrule{3-4}
12415 \end_layout
12416
12417 \end_inset
12418
12419 LSF-spatial resolution
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" usebox="none">
12434 \begin_inset Text
12435
12436 \begin_layout Standard
12437
12438 \end_layout
12439
12440 \end_inset
12441 </cell>
12442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12443 \begin_inset Text
12444
12445 \begin_layout Standard
12446
12447 \end_layout
12448
12449 \end_inset
12450 </cell>
12451 </row>
12452 <row>
12453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12454 \begin_inset Text
12455
12456 \begin_layout Standard
12457 in µm
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 129.7
12467 \end_layout
12468
12469 \end_inset
12470 </cell>
12471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12472 \begin_inset Text
12473
12474 \begin_layout Standard
12475 52.75
12476 \end_layout
12477
12478 \end_inset
12479 </cell>
12480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12481 \begin_inset Text
12482
12483 \begin_layout Standard
12484 50.78
12485 \end_layout
12486
12487 \end_inset
12488 </cell>
12489 </row>
12490 <row bottomline="true">
12491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12492 \begin_inset Text
12493
12494 \begin_layout Standard
12495 in % of pixel size
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 76.3
12505 \end_layout
12506
12507 \end_inset
12508 </cell>
12509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12510 \begin_inset Text
12511
12512 \begin_layout Standard
12513 95.9
12514 \end_layout
12515
12516 \end_inset
12517 </cell>
12518 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12519 \begin_inset Text
12520
12521 \begin_layout Standard
12522 92.3
12523 \end_layout
12524
12525 \end_inset
12526 </cell>
12527 </row>
12528 </lyxtabular>
12529
12530 \end_inset
12531
12532
12533 \end_layout
12534
12535 \end_inset
12536
12537
12538 \end_layout
12539
12540 \begin_layout Section
12541 Alineación Vertical en Tablas
12542 \begin_inset LatexCommand index
12543 name "Tablas ! Alineación Vertical"
12544
12545 \end_inset
12546
12547
12548 \end_layout
12549
12550 \begin_layout Standard
12551 Para alinear tablas verticalmente en una línea de texto la tabla debe estar
12552  en un cuadro.
12553  Entonces el cuadro se puede alinear verticalmente como se describe en la
12554  sección\InsetSpace ~
12555
12556 \begin_inset LatexCommand ref
12557 reference "sec:Diálogo-Cuadros"
12558
12559 \end_inset
12560
12561 .
12562  
12563 \end_layout
12564
12565 \begin_layout Standard
12566 En el ejemplo siguiente las tablas están en un cuadro de minipágina
12567 \begin_inset Foot
12568 status collapsed
12569
12570 \begin_layout Standard
12571 Las minipáginas se describen en la sección\InsetSpace ~
12572
12573 \begin_inset LatexCommand ref
12574 reference "sec:Minipáginas"
12575
12576 \end_inset
12577
12578 .
12579 \end_layout
12580
12581 \end_inset
12582
12583  que tiene una anchura de 15\InsetSpace \thinspace{}
12584 col%:
12585 \end_layout
12586
12587 \begin_layout Itemize
12588 test 
12589 \begin_inset Box Frameless
12590 position "t"
12591 hor_pos "c"
12592 has_inner_box 1
12593 inner_pos "c"
12594 use_parbox 0
12595 width "15col%"
12596 special "none"
12597 height "1in"
12598 height_special "totalheight"
12599 status collapsed
12600
12601 \begin_layout Standard
12602 \begin_inset Tabular
12603 <lyxtabular version="3" rows="3" columns="3">
12604 <features>
12605 <column alignment="center" valignment="top" leftline="true" width="0">
12606 <column alignment="center" valignment="top" leftline="true" width="0">
12607 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12608 <row topline="true">
12609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12610 \begin_inset Text
12611
12612 \begin_layout Standard
12613 a
12614 \end_layout
12615
12616 \end_inset
12617 </cell>
12618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12619 \begin_inset Text
12620
12621 \begin_layout Standard
12622 d
12623 \end_layout
12624
12625 \end_inset
12626 </cell>
12627 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12628 \begin_inset Text
12629
12630 \begin_layout Standard
12631 g
12632 \end_layout
12633
12634 \end_inset
12635 </cell>
12636 </row>
12637 <row topline="true">
12638 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12639 \begin_inset Text
12640
12641 \begin_layout Standard
12642 b
12643 \end_layout
12644
12645 \end_inset
12646 </cell>
12647 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12648 \begin_inset Text
12649
12650 \begin_layout Standard
12651 e
12652 \end_layout
12653
12654 \end_inset
12655 </cell>
12656 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12657 \begin_inset Text
12658
12659 \begin_layout Standard
12660 h
12661 \end_layout
12662
12663 \end_inset
12664 </cell>
12665 </row>
12666 <row topline="true" bottomline="true">
12667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12668 \begin_inset Text
12669
12670 \begin_layout Standard
12671 c
12672 \end_layout
12673
12674 \end_inset
12675 </cell>
12676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12677 \begin_inset Text
12678
12679 \begin_layout Standard
12680 f
12681 \end_layout
12682
12683 \end_inset
12684 </cell>
12685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12686 \begin_inset Text
12687
12688 \begin_layout Standard
12689 i
12690 \end_layout
12691
12692 \end_inset
12693 </cell>
12694 </row>
12695 </lyxtabular>
12696
12697 \end_inset
12698
12699
12700 \end_layout
12701
12702 \end_inset
12703
12704  test 
12705 \begin_inset ERT
12706 status collapsed
12707
12708 \begin_layout Standard
12709
12710
12711 \backslash
12712 raisebox{0.85
12713 \backslash
12714 baselineskip}{
12715 \end_layout
12716
12717 \end_inset
12718
12719
12720 \begin_inset Box Frameless
12721 position "t"
12722 hor_pos "c"
12723 has_inner_box 1
12724 inner_pos "c"
12725 use_parbox 0
12726 width "15col%"
12727 special "none"
12728 height "1in"
12729 height_special "totalheight"
12730 status collapsed
12731
12732 \begin_layout Standard
12733 \begin_inset Tabular
12734 <lyxtabular version="3" rows="3" columns="3">
12735 <features>
12736 <column alignment="center" valignment="top" leftline="true" width="0">
12737 <column alignment="center" valignment="top" leftline="true" width="0">
12738 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12739 <row topline="true">
12740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12741 \begin_inset Text
12742
12743 \begin_layout Standard
12744 a
12745 \end_layout
12746
12747 \end_inset
12748 </cell>
12749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12750 \begin_inset Text
12751
12752 \begin_layout Standard
12753 d
12754 \end_layout
12755
12756 \end_inset
12757 </cell>
12758 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12759 \begin_inset Text
12760
12761 \begin_layout Standard
12762 g
12763 \end_layout
12764
12765 \end_inset
12766 </cell>
12767 </row>
12768 <row topline="true">
12769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12770 \begin_inset Text
12771
12772 \begin_layout Standard
12773 b
12774 \end_layout
12775
12776 \end_inset
12777 </cell>
12778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12779 \begin_inset Text
12780
12781 \begin_layout Standard
12782 e
12783 \end_layout
12784
12785 \end_inset
12786 </cell>
12787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12788 \begin_inset Text
12789
12790 \begin_layout Standard
12791 h
12792 \end_layout
12793
12794 \end_inset
12795 </cell>
12796 </row>
12797 <row topline="true" bottomline="true">
12798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12799 \begin_inset Text
12800
12801 \begin_layout Standard
12802 c
12803 \end_layout
12804
12805 \end_inset
12806 </cell>
12807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12808 \begin_inset Text
12809
12810 \begin_layout Standard
12811 f
12812 \end_layout
12813
12814 \end_inset
12815 </cell>
12816 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12817 \begin_inset Text
12818
12819 \begin_layout Standard
12820 i
12821 \end_layout
12822
12823 \end_inset
12824 </cell>
12825 </row>
12826 </lyxtabular>
12827
12828 \end_inset
12829
12830
12831 \end_layout
12832
12833 \end_inset
12834
12835
12836 \begin_inset ERT
12837 status collapsed
12838
12839 \begin_layout Standard
12840
12841 }
12842 \end_layout
12843
12844 \end_inset
12845
12846
12847 \end_layout
12848
12849 \begin_layout Itemize
12850 test 
12851 \begin_inset Box Frameless
12852 position "c"
12853 hor_pos "c"
12854 has_inner_box 1
12855 inner_pos "c"
12856 use_parbox 0
12857 width "15col%"
12858 special "none"
12859 height "1in"
12860 height_special "totalheight"
12861 status collapsed
12862
12863 \begin_layout Standard
12864 \begin_inset Tabular
12865 <lyxtabular version="3" rows="3" columns="3">
12866 <features>
12867 <column alignment="center" valignment="top" leftline="true" width="0">
12868 <column alignment="center" valignment="top" leftline="true" width="0">
12869 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12870 <row topline="true">
12871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12872 \begin_inset Text
12873
12874 \begin_layout Standard
12875 a
12876 \end_layout
12877
12878 \end_inset
12879 </cell>
12880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12881 \begin_inset Text
12882
12883 \begin_layout Standard
12884 d
12885 \end_layout
12886
12887 \end_inset
12888 </cell>
12889 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12890 \begin_inset Text
12891
12892 \begin_layout Standard
12893 g
12894 \end_layout
12895
12896 \end_inset
12897 </cell>
12898 </row>
12899 <row topline="true">
12900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12901 \begin_inset Text
12902
12903 \begin_layout Standard
12904 b
12905 \end_layout
12906
12907 \end_inset
12908 </cell>
12909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12910 \begin_inset Text
12911
12912 \begin_layout Standard
12913 e
12914 \end_layout
12915
12916 \end_inset
12917 </cell>
12918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12919 \begin_inset Text
12920
12921 \begin_layout Standard
12922 h
12923 \end_layout
12924
12925 \end_inset
12926 </cell>
12927 </row>
12928 <row topline="true" bottomline="true">
12929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12930 \begin_inset Text
12931
12932 \begin_layout Standard
12933 c
12934 \end_layout
12935
12936 \end_inset
12937 </cell>
12938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12939 \begin_inset Text
12940
12941 \begin_layout Standard
12942 f
12943 \end_layout
12944
12945 \end_inset
12946 </cell>
12947 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12948 \begin_inset Text
12949
12950 \begin_layout Standard
12951 i
12952 \end_layout
12953
12954 \end_inset
12955 </cell>
12956 </row>
12957 </lyxtabular>
12958
12959 \end_inset
12960
12961
12962 \end_layout
12963
12964 \end_inset
12965
12966
12967 \end_layout
12968
12969 \begin_layout Itemize
12970 test 
12971 \begin_inset Box Frameless
12972 position "b"
12973 hor_pos "c"
12974 has_inner_box 1
12975 inner_pos "c"
12976 use_parbox 0
12977 width "15col%"
12978 special "none"
12979 height "1in"
12980 height_special "totalheight"
12981 status collapsed
12982
12983 \begin_layout Standard
12984 \begin_inset Tabular
12985 <lyxtabular version="3" rows="3" columns="3">
12986 <features>
12987 <column alignment="center" valignment="top" leftline="true" width="0">
12988 <column alignment="center" valignment="top" leftline="true" width="0">
12989 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12990 <row topline="true">
12991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12992 \begin_inset Text
12993
12994 \begin_layout Standard
12995 a
12996 \end_layout
12997
12998 \end_inset
12999 </cell>
13000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13001 \begin_inset Text
13002
13003 \begin_layout Standard
13004 d
13005 \end_layout
13006
13007 \end_inset
13008 </cell>
13009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13010 \begin_inset Text
13011
13012 \begin_layout Standard
13013 g
13014 \end_layout
13015
13016 \end_inset
13017 </cell>
13018 </row>
13019 <row topline="true">
13020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13021 \begin_inset Text
13022
13023 \begin_layout Standard
13024 b
13025 \end_layout
13026
13027 \end_inset
13028 </cell>
13029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13030 \begin_inset Text
13031
13032 \begin_layout Standard
13033 e
13034 \end_layout
13035
13036 \end_inset
13037 </cell>
13038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13039 \begin_inset Text
13040
13041 \begin_layout Standard
13042 h
13043 \end_layout
13044
13045 \end_inset
13046 </cell>
13047 </row>
13048 <row topline="true" bottomline="true">
13049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13050 \begin_inset Text
13051
13052 \begin_layout Standard
13053 c
13054 \end_layout
13055
13056 \end_inset
13057 </cell>
13058 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13059 \begin_inset Text
13060
13061 \begin_layout Standard
13062 f
13063 \end_layout
13064
13065 \end_inset
13066 </cell>
13067 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13068 \begin_inset Text
13069
13070 \begin_layout Standard
13071 i
13072 \end_layout
13073
13074 \end_inset
13075 </cell>
13076 </row>
13077 </lyxtabular>
13078
13079 \end_inset
13080
13081
13082 \end_layout
13083
13084 \end_inset
13085
13086  test 
13087 \begin_inset ERT
13088 status collapsed
13089
13090 \begin_layout Standard
13091
13092
13093 \backslash
13094 raisebox{-0.32
13095 \backslash
13096 baselineskip}{
13097 \end_layout
13098
13099 \end_inset
13100
13101
13102 \begin_inset Box Frameless
13103 position "b"
13104 hor_pos "c"
13105 has_inner_box 1
13106 inner_pos "c"
13107 use_parbox 0
13108 width "15col%"
13109 special "none"
13110 height "1in"
13111 height_special "totalheight"
13112 status collapsed
13113
13114 \begin_layout Standard
13115 \begin_inset Tabular
13116 <lyxtabular version="3" rows="3" columns="3">
13117 <features>
13118 <column alignment="center" valignment="top" leftline="true" width="0">
13119 <column alignment="center" valignment="top" leftline="true" width="0">
13120 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13121 <row topline="true">
13122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13123 \begin_inset Text
13124
13125 \begin_layout Standard
13126 a
13127 \end_layout
13128
13129 \end_inset
13130 </cell>
13131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13132 \begin_inset Text
13133
13134 \begin_layout Standard
13135 d
13136 \end_layout
13137
13138 \end_inset
13139 </cell>
13140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13141 \begin_inset Text
13142
13143 \begin_layout Standard
13144 g
13145 \end_layout
13146
13147 \end_inset
13148 </cell>
13149 </row>
13150 <row topline="true">
13151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13152 \begin_inset Text
13153
13154 \begin_layout Standard
13155 b
13156 \end_layout
13157
13158 \end_inset
13159 </cell>
13160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13161 \begin_inset Text
13162
13163 \begin_layout Standard
13164 e
13165 \end_layout
13166
13167 \end_inset
13168 </cell>
13169 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13170 \begin_inset Text
13171
13172 \begin_layout Standard
13173 h
13174 \end_layout
13175
13176 \end_inset
13177 </cell>
13178 </row>
13179 <row topline="true" bottomline="true">
13180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13181 \begin_inset Text
13182
13183 \begin_layout Standard
13184 c
13185 \end_layout
13186
13187 \end_inset
13188 </cell>
13189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13190 \begin_inset Text
13191
13192 \begin_layout Standard
13193 f
13194 \end_layout
13195
13196 \end_inset
13197 </cell>
13198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13199 \begin_inset Text
13200
13201 \begin_layout Standard
13202 i
13203 \end_layout
13204
13205 \end_inset
13206 </cell>
13207 </row>
13208 </lyxtabular>
13209
13210 \end_inset
13211
13212
13213 \end_layout
13214
13215 \end_inset
13216
13217
13218 \begin_inset ERT
13219 status collapsed
13220
13221 \begin_layout Standard
13222
13223 }
13224 \end_layout
13225
13226 \end_inset
13227
13228
13229 \end_layout
13230
13231 \begin_layout Standard
13232 Como ves, los contenidos de la primera y última filas no se alinean correctament
13233 e con la línea de texto donde está la tabla.
13234  Para conseguir esta alineación, el cuadro (minipágina) debe ponerse en
13235  un cuadro elevado (
13236 \begin_inset Quotes eld
13237 \end_inset
13238
13239 raisebox
13240 \begin_inset Quotes erd
13241 \end_inset
13242
13243 )
13244 \begin_inset Foot
13245 status collapsed
13246
13247 \begin_layout Standard
13248 El uso del comando 
13249 \series bold
13250
13251 \backslash
13252 raisebox
13253 \series default
13254  se explica en la sección\InsetSpace ~
13255
13256 \begin_inset LatexCommand ref
13257 reference "sub:Alineación-Vertical"
13258
13259 \end_inset
13260
13261 .
13262 \end_layout
13263
13264 \end_inset
13265
13266 .
13267  En el ejemplo anterior, la segunda tabla del primer ítem está alineada
13268  usando el comando en ERT
13269 \end_layout
13270
13271 \begin_layout Standard
13272
13273 \series bold
13274
13275 \backslash
13276 raisebox{0.85
13277 \backslash
13278 baselineskip}{
13279 \end_layout
13280
13281 \begin_layout Standard
13282 antes del cuadro.
13283  Tras él, se pone la llave de cierre 
13284 \series bold
13285 }
13286 \series default
13287  también como ERT.
13288  Para la segunda tabla en el tercer ítem se usa el comando 
13289 \end_layout
13290
13291 \begin_layout Standard
13292
13293 \series bold
13294
13295 \backslash
13296 raisebox{-0.32
13297 \backslash
13298 baselineskip}{
13299 \end_layout
13300
13301 \begin_layout Standard
13302 \begin_inset Note Greyedout
13303 status open
13304
13305 \begin_layout Standard
13306
13307 \series bold
13308 Not
13309 \series default
13310 a: La alineación del contenido de la fila con la línea del texto adyacente
13311  no es exacta.
13312  El factor necesario del comando 
13313 \series bold
13314
13315 \backslash
13316 raisebox
13317 \series default
13318  para este alineamiento depende de la fuente del documento, del tamaño de
13319  la fuente y del grosor de línea de la tabla.
13320 \end_layout
13321
13322 \end_inset
13323
13324
13325 \end_layout
13326
13327 \begin_layout Section
13328 Tablas Coloreadas
13329 \begin_inset LatexCommand label
13330 name "sec:Tablas-Coloreadas"
13331
13332 \end_inset
13333
13334
13335 \begin_inset LatexCommand index
13336 name "Tablas ! Coloreadas"
13337
13338 \end_inset
13339
13340
13341 \end_layout
13342
13343 \begin_layout Subsection
13344 Celdas Coloreadas
13345 \begin_inset LatexCommand index
13346 name "Tablas Coloreadas ! Celdas"
13347
13348 \end_inset
13349
13350
13351 \begin_inset LatexCommand index
13352 name "Color ! en Celdas de Tablas"
13353
13354 \end_inset
13355
13356
13357 \end_layout
13358
13359 \begin_layout Standard
13360 \begin_inset Float table
13361 placement h
13362 wide false
13363 sideways false
13364 status open
13365
13366 \begin_layout Standard
13367 \begin_inset Caption
13368
13369 \begin_layout Standard
13370 \begin_inset LatexCommand label
13371 name "tab:Tabla-coloreada-sin"
13372
13373 \end_inset
13374
13375 Tabla coloreada sin usar el paquete 
13376 \series bold
13377 colortbl
13378 \series default
13379
13380 \begin_inset OptArg
13381 status collapsed
13382
13383 \begin_layout Standard
13384 Tabla sin colortbl
13385 \end_layout
13386
13387 \end_inset
13388
13389
13390 \end_layout
13391
13392 \end_inset
13393
13394
13395 \end_layout
13396
13397 \begin_layout Standard
13398 \align center
13399 \begin_inset Tabular
13400 <lyxtabular version="3" rows="3" columns="3">
13401 <features>
13402 <column alignment="center" valignment="top" leftline="true" width="0">
13403 <column alignment="center" valignment="top" leftline="true" width="0">
13404 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13405 <row topline="true">
13406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13407 \begin_inset Text
13408
13409 \begin_layout Standard
13410
13411 \color green
13412 a
13413 \end_layout
13414
13415 \end_inset
13416 </cell>
13417 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13418 \begin_inset Text
13419
13420 \begin_layout Standard
13421
13422 \color red
13423 b
13424 \end_layout
13425
13426 \end_inset
13427 </cell>
13428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13429 \begin_inset Text
13430
13431 \begin_layout Standard
13432
13433 \color red
13434 c
13435 \end_layout
13436
13437 \end_inset
13438 </cell>
13439 </row>
13440 <row topline="true">
13441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13442 \begin_inset Text
13443
13444 \begin_layout Standard
13445
13446 \color green
13447 d
13448 \end_layout
13449
13450 \end_inset
13451 </cell>
13452 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13453 \begin_inset Text
13454
13455 \begin_layout Standard
13456
13457 \color blue
13458 e
13459 \end_layout
13460
13461 \end_inset
13462 </cell>
13463 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13464 \begin_inset Text
13465
13466 \begin_layout Standard
13467
13468 \color blue
13469 f
13470 \end_layout
13471
13472 \end_inset
13473 </cell>
13474 </row>
13475 <row topline="true" bottomline="true">
13476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13477 \begin_inset Text
13478
13479 \begin_layout Standard
13480
13481 \color green
13482 g
13483 \end_layout
13484
13485 \end_inset
13486 </cell>
13487 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13488 \begin_inset Text
13489
13490 \begin_layout Standard
13491
13492 \color blue
13493 h
13494 \end_layout
13495
13496 \end_inset
13497 </cell>
13498 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13499 \begin_inset Text
13500
13501 \begin_layout Standard
13502
13503 \color blue
13504 i
13505 \end_layout
13506
13507 \end_inset
13508 </cell>
13509 </row>
13510 </lyxtabular>
13511
13512 \end_inset
13513
13514
13515 \end_layout
13516
13517 \end_inset
13518
13519
13520 \end_layout
13521
13522 \begin_layout Standard
13523 Si solo necesitas color en el texto, marca las celdas y elige un color en
13524  el menú 
13525 \family sans
13526 Editar\SpecialChar \menuseparator
13527 Estilo\InsetSpace ~
13528 del\InsetSpace ~
13529 Texto
13530 \family default
13531 .
13532  Esto se ha hecho en la tabla\InsetSpace ~
13533
13534 \begin_inset LatexCommand ref
13535 reference "tab:Tabla-coloreada-sin"
13536
13537 \end_inset
13538
13539 .
13540  En cualquier otro caso hay que usar el paquete LaTeX 
13541 \series bold
13542 colortbl
13543 \series default
13544 .
13545 \begin_inset LatexCommand index
13546 name "LaTeX-paquetes ! colortbl"
13547
13548 \end_inset
13549
13550
13551 \end_layout
13552
13553 \begin_layout Standard
13554 Para crear tablas coloreadas, 
13555 \series bold
13556 colortbl
13557 \series default
13558  debe cargarse en el preámbulo con la línea
13559 \end_layout
13560
13561 \begin_layout Standard
13562
13563 \series bold
13564
13565 \backslash
13566 usepackage{colortbl}
13567 \end_layout
13568
13569 \begin_layout Standard
13570 El color de una columna se define con el comando
13571 \end_layout
13572
13573 \begin_layout Standard
13574
13575 \series bold
13576
13577 \backslash
13578 columncolor{nombre del color}
13579 \end_layout
13580
13581 \begin_layout Standard
13582 dentro del comando 
13583 \series bold
13584 >{ }
13585 \series default
13586 .
13587  Más sobre el comando 
13588 \series bold
13589 >{}
13590 \series default
13591  se explica en la sección\InsetSpace ~
13592
13593 \begin_inset LatexCommand ref
13594 reference "sub:Cálculos-en-Multicolumnas"
13595
13596 \end_inset
13597
13598 .
13599 \end_layout
13600
13601 \begin_layout Standard
13602 Los siguientes nombres de color están predefinidos:
13603 \end_layout
13604
13605 \begin_layout Standard
13606
13607 \family sans
13608 red
13609 \family default
13610
13611 \family sans
13612 green
13613 \family default
13614
13615 \family sans
13616 yellow, blue
13617 \family default
13618
13619 \family sans
13620 cyan
13621 \family default
13622 \series bold
13623 ,
13624 \series default
13625  
13626 \family sans
13627 magenta, black
13628 \family default
13629
13630 \family sans
13631 white
13632 \end_layout
13633
13634 \begin_layout Standard
13635 \begin_inset VSpace medskip
13636 \end_inset
13637
13638
13639 \end_layout
13640
13641 \begin_layout Standard
13642 Puedes definir tus propios colores con el comando
13643 \end_layout
13644
13645 \begin_layout Standard
13646
13647 \series bold
13648
13649 \backslash
13650 def\SpecialChar \textcompwordmark{}
13651 inecolor{nombre del color}{modelo de color}{valores de color}
13652 \end_layout
13653
13654 \begin_layout Standard
13655 El modelo de color puede ser
13656 \end_layout
13657
13658 \begin_layout Labeling
13659 \labelwidthstring 00.00.0000
13660 cmyk: cyan, magenta, yellow, black
13661 \end_layout
13662
13663 \begin_layout Labeling
13664 \labelwidthstring 00.00.0000
13665 rgb: red, green, blue
13666 \end_layout
13667
13668 \begin_layout Labeling
13669 \labelwidthstring 00.00.0000
13670 gray: gray
13671 \end_layout
13672
13673 \begin_layout Standard
13674 y los valores de color son números separados por comas entre 0 y 1 que describen
13675  el factor para el color correspondiente del modelo de color.
13676 \end_layout
13677
13678 \begin_layout Standard
13679 Por ejemplo, puedes definir el color
13680 \series bold
13681  
13682 \series default
13683
13684 \begin_inset Quotes eld
13685 \end_inset
13686
13687
13688 \emph on
13689 verde oscuro
13690 \emph default
13691
13692 \begin_inset Quotes erd
13693 \end_inset
13694
13695  en el preámbulo con
13696 \end_layout
13697
13698 \begin_layout Standard
13699
13700 \series bold
13701
13702 \backslash
13703 def\SpecialChar \textcompwordmark{}
13704 inecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
13705 \end_layout
13706
13707 \begin_layout Standard
13708 y el color 
13709 \begin_inset Quotes eld
13710 \end_inset
13711
13712
13713 \emph on
13714 gris claro
13715 \emph default
13716
13717 \begin_inset Quotes erd
13718 \end_inset
13719
13720  con
13721 \end_layout
13722
13723 \begin_layout Standard
13724
13725 \series bold
13726
13727 \backslash
13728 def\SpecialChar \textcompwordmark{}
13729 inecolor{grisclaro}{gray}{0.8}
13730 \end_layout
13731
13732 \begin_layout Standard
13733 \begin_inset VSpace medskip
13734 \end_inset
13735
13736
13737 \end_layout
13738
13739 \begin_layout Standard
13740 Las líneas se colorean con el comando
13741 \end_layout
13742
13743 \begin_layout Standard
13744
13745 \series bold
13746
13747 \backslash
13748 rowcolor{nombre del color}
13749 \end_layout
13750
13751 \begin_layout Standard
13752 y las celdas se colorean con el comando
13753 \end_layout
13754
13755 \begin_layout Standard
13756
13757 \series bold
13758
13759 \backslash
13760 cellcolor{nombre del color}
13761 \end_layout
13762
13763 \begin_layout Standard
13764 Ambos comandos se insertan al principio de una celda como ERT.
13765 \end_layout
13766
13767 \begin_layout Standard
13768 Para colorear caracteres en la tabla marca las celdas y usa el menú 
13769 \family sans
13770 Editar\SpecialChar \menuseparator
13771 Estilo\InsetSpace ~
13772 del\InsetSpace ~
13773 Texto
13774 \family default
13775 .
13776  Si una celda contiene ERT marca solo los caracteres, si no el ERT con color
13777  puede ocasionar errores de LaTeX.
13778 \end_layout
13779
13780 \begin_layout Standard
13781 \begin_inset VSpace bigskip
13782 \end_inset
13783
13784
13785 \end_layout
13786
13787 \begin_layout Standard
13788 Para crear la tabla\InsetSpace ~
13789
13790 \begin_inset LatexCommand ref
13791 reference "tab:Tabla-coloreada-con"
13792
13793 \end_inset
13794
13795  haz lo siguiente: el color de la primera columna debe ser 
13796 \emph on
13797 verde oscuro
13798 \emph default
13799 , entonces inserta
13800 \end_layout
13801
13802 \begin_layout Standard
13803
13804 \series bold
13805 >{
13806 \backslash
13807 columncolor{verdeoscuro}
13808 \backslash
13809 centering}c
13810 \end_layout
13811
13812 \begin_layout Standard
13813 como argumento LaTeX para esta columna.
13814  La primera fila debe ser azul, por tanto inserta el comando ERT
13815 \end_layout
13816
13817 \begin_layout Standard
13818
13819 \series bold
13820
13821 \backslash
13822 rowcolow{cyan}
13823 \end_layout
13824
13825 \begin_layout Standard
13826 en la primera celda de esta fila.
13827  Observa que esto sobreescribe el color de la columna para la primera celda.
13828  La última celda de la última fila se colorea magenta insertando el comando
13829  ERT
13830 \end_layout
13831
13832 \begin_layout Standard
13833
13834 \series bold
13835
13836 \backslash
13837 cellcolor{magenta}
13838 \end_layout
13839
13840 \begin_layout Standard
13841 Ahora podrían colorearse los caracteres usando el menú 
13842 \family sans
13843 Editar\SpecialChar \menuseparator
13844 Estilo\InsetSpace ~
13845 del\InsetSpace ~
13846 Texto
13847 \family default
13848 .
13849 \end_layout
13850
13851 \begin_layout Standard
13852 \begin_inset Float table
13853 placement h
13854 wide false
13855 sideways false
13856 status open
13857
13858 \begin_layout Standard
13859 \begin_inset Caption
13860
13861 \begin_layout Standard
13862 \begin_inset LatexCommand label
13863 name "tab:Tabla-coloreada-con"
13864
13865 \end_inset
13866
13867 Tabla coloreada usando el paquete 
13868 \series bold
13869 colortbl
13870 \series default
13871
13872 \begin_inset OptArg
13873 status collapsed
13874
13875 \begin_layout Standard
13876 Tabla con colortbl
13877 \end_layout
13878
13879 \end_inset
13880
13881
13882 \end_layout
13883
13884 \end_inset
13885
13886
13887 \end_layout
13888
13889 \begin_layout Standard
13890 \align center
13891 \begin_inset Tabular
13892 <lyxtabular version="3" rows="3" columns="3">
13893 <features>
13894 <column alignment="center" valignment="top" width="0" special=">{\columncolor{verdeoscuro}\centering}c">
13895 <column alignment="center" valignment="top" width="0">
13896 <column alignment="center" valignment="top" width="0">
13897 <row>
13898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13899 \begin_inset Text
13900
13901 \begin_layout Standard
13902 \begin_inset ERT
13903 status collapsed
13904
13905 \begin_layout Standard
13906
13907
13908 \backslash
13909 rowcolor{cyan}
13910 \end_layout
13911
13912 \end_inset
13913
13914
13915 \color magenta
13916 a
13917 \end_layout
13918
13919 \end_inset
13920 </cell>
13921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13922 \begin_inset Text
13923
13924 \begin_layout Standard
13925
13926 \color red
13927 b
13928 \end_layout
13929
13930 \end_inset
13931 </cell>
13932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13933 \begin_inset Text
13934
13935 \begin_layout Standard
13936
13937 \color red
13938 c
13939 \end_layout
13940
13941 \end_inset
13942 </cell>
13943 </row>
13944 <row>
13945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13946 \begin_inset Text
13947
13948 \begin_layout Standard
13949
13950 \color yellow
13951 d
13952 \end_layout
13953
13954 \end_inset
13955 </cell>
13956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13957 \begin_inset Text
13958
13959 \begin_layout Standard
13960
13961 \color blue
13962 e
13963 \end_layout
13964
13965 \end_inset
13966 </cell>
13967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13968 \begin_inset Text
13969
13970 \begin_layout Standard
13971
13972 \color blue
13973 f
13974 \end_layout
13975
13976 \end_inset
13977 </cell>
13978 </row>
13979 <row>
13980 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13981 \begin_inset Text
13982
13983 \begin_layout Standard
13984
13985 \color yellow
13986 g
13987 \end_layout
13988
13989 \end_inset
13990 </cell>
13991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13992 \begin_inset Text
13993
13994 \begin_layout Standard
13995
13996 \color blue
13997 h
13998 \end_layout
13999
14000 \end_inset
14001 </cell>
14002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14003 \begin_inset Text
14004
14005 \begin_layout Standard
14006 \begin_inset ERT
14007 status collapsed
14008
14009 \begin_layout Standard
14010
14011
14012 \backslash
14013 cellcolor{magenta}
14014 \end_layout
14015
14016 \end_inset
14017
14018
14019 \color green
14020 i
14021 \end_layout
14022
14023 \end_inset
14024 </cell>
14025 </row>
14026 </lyxtabular>
14027
14028 \end_inset
14029
14030
14031 \end_layout
14032
14033 \end_inset
14034
14035
14036 \end_layout
14037
14038 \begin_layout Subsection
14039 Líneas coloreadas
14040 \begin_inset LatexCommand index
14041 name "Tablas Coloreadas ! Líneas"
14042
14043 \end_inset
14044
14045
14046 \begin_inset LatexCommand index
14047 name "Color ! en Líneas de Tabla"
14048
14049 \end_inset
14050
14051
14052 \end_layout
14053
14054 \begin_layout Standard
14055 Como se describe en la sección\InsetSpace ~
14056
14057 \begin_inset LatexCommand ref
14058 reference "sub:Grosor-de-Líneas"
14059
14060 \end_inset
14061
14062 , el grosor para todas las líneas en una tabla puede ajustarse con el comando
14063  
14064 \series bold
14065
14066 \backslash
14067 arrayrulewidth
14068 \series default
14069 .
14070  Se ha puesto 1.5\InsetSpace \thinspace{}
14071 pt para todas las tablas de esta sección.
14072 \begin_inset ERT
14073 status collapsed
14074
14075 \begin_layout Standard
14076
14077
14078 \backslash
14079 setlength{
14080 \backslash
14081 arrayrulewidth}{1.5pt}
14082 \end_layout
14083
14084 \end_inset
14085
14086
14087 \end_layout
14088
14089 \begin_layout Standard
14090 Por ejemplo, para colorear todas las líneas verticales en verde, crea en
14091  el preámbulo del documento el siguiente formato de columna, de acuerdo
14092  a lo descrito en la sección\InsetSpace ~
14093
14094 \begin_inset LatexCommand ref
14095 reference "sub:Formato-Personalizado"
14096
14097 \end_inset
14098
14099 :
14100 \end_layout
14101
14102 \begin_layout Standard
14103
14104 \series bold
14105
14106 \backslash
14107 newcolumntype{W}{!{
14108 \backslash
14109 color{green}
14110 \backslash
14111 vline}}
14112 \end_layout
14113
14114 \begin_layout Standard
14115 Para la tabla\InsetSpace ~
14116
14117 \begin_inset LatexCommand ref
14118 reference "tab:Tabla-con-verticales-coloreadas"
14119
14120 \end_inset
14121
14122  se usó el argumento LaTeX
14123 \end_layout
14124
14125 \begin_layout Standard
14126
14127 \series bold
14128 WcW
14129 \end_layout
14130
14131 \begin_layout Standard
14132 para la última columna y
14133 \end_layout
14134
14135 \begin_layout Standard
14136
14137 \series bold
14138 Wc
14139 \end_layout
14140
14141 \begin_layout Standard
14142 para las demás.
14143 \end_layout
14144
14145 \begin_layout Standard
14146 Si quieres tener varios colores, define más formatos de columna.
14147 \end_layout
14148
14149 \begin_layout Standard
14150 \begin_inset Float table
14151 wide false
14152 sideways false
14153 status open
14154
14155 \begin_layout Standard
14156 \begin_inset Caption
14157
14158 \begin_layout Standard
14159 \begin_inset LatexCommand label
14160 name "tab:Tabla-con-verticales-coloreadas"
14161
14162 \end_inset
14163
14164 Tabla con líneas verticales coloreadas
14165 \end_layout
14166
14167 \end_inset
14168
14169
14170 \end_layout
14171
14172 \begin_layout Standard
14173 \align center
14174 \begin_inset Tabular
14175 <lyxtabular version="3" rows="3" columns="3">
14176 <features>
14177 <column alignment="center" valignment="top" width="0" special="Wc">
14178 <column alignment="center" valignment="top" width="0" special="Wc">
14179 <column alignment="center" valignment="top" width="0" special="WcW">
14180 <row topline="true">
14181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14182 \begin_inset Text
14183
14184 \begin_layout Standard
14185 sd
14186 \end_layout
14187
14188 \end_inset
14189 </cell>
14190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14191 \begin_inset Text
14192
14193 \begin_layout Standard
14194
14195 \end_layout
14196
14197 \end_inset
14198 </cell>
14199 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14200 \begin_inset Text
14201
14202 \begin_layout Standard
14203
14204 \end_layout
14205
14206 \end_inset
14207 </cell>
14208 </row>
14209 <row topline="true">
14210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14211 \begin_inset Text
14212
14213 \begin_layout Standard
14214
14215 \end_layout
14216
14217 \end_inset
14218 </cell>
14219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14220 \begin_inset Text
14221
14222 \begin_layout Standard
14223 sd
14224 \end_layout
14225
14226 \end_inset
14227 </cell>
14228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14229 \begin_inset Text
14230
14231 \begin_layout Standard
14232
14233 \end_layout
14234
14235 \end_inset
14236 </cell>
14237 </row>
14238 <row topline="true" bottomline="true">
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" usebox="none">
14249 \begin_inset Text
14250
14251 \begin_layout Standard
14252
14253 \end_layout
14254
14255 \end_inset
14256 </cell>
14257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14258 \begin_inset Text
14259
14260 \begin_layout Standard
14261 sd
14262 \end_layout
14263
14264 \end_inset
14265 </cell>
14266 </row>
14267 </lyxtabular>
14268
14269 \end_inset
14270
14271
14272 \end_layout
14273
14274 \end_inset
14275
14276
14277 \end_layout
14278
14279 \begin_layout Standard
14280 \begin_inset VSpace bigskip
14281 \end_inset
14282
14283 Para colorear líneas horizontales, por ejemplo en rojo, como en la tabla\InsetSpace ~
14284
14285 \begin_inset LatexCommand ref
14286 reference "tab:Tabla-con-horizontales-coloreadas"
14287
14288 \end_inset
14289
14290 , inserta estos comandos en ERT antes de la tabla o del flotante:
14291 \end_layout
14292
14293 \begin_layout Standard
14294
14295 \series bold
14296
14297 \backslash
14298 let
14299 \backslash
14300 myHlineC
14301 \backslash
14302 hline
14303 \newline
14304
14305 \backslash
14306 renewcommand{
14307 \backslash
14308 hline}{
14309 \backslash
14310 arrayrulecolor{red}
14311 \backslash
14312 myHlineC
14313 \backslash
14314 arrayrulecolor{black}}
14315 \end_layout
14316
14317 \begin_layout Standard
14318 \begin_inset ERT
14319 status collapsed
14320
14321 \begin_layout Standard
14322
14323
14324 \backslash
14325 let
14326 \backslash
14327 myHlineC
14328 \backslash
14329 hline
14330 \end_layout
14331
14332 \begin_layout Standard
14333
14334
14335 \backslash
14336 renewcommand{
14337 \backslash
14338 hline}{
14339 \backslash
14340 arrayrulecolor{red}
14341 \backslash
14342 myHlineC
14343 \backslash
14344 arrayrulecolor{black}}
14345 \end_layout
14346
14347 \end_inset
14348
14349
14350 \begin_inset Float table
14351 wide false
14352 sideways false
14353 status open
14354
14355 \begin_layout Standard
14356 \begin_inset Caption
14357
14358 \begin_layout Standard
14359 \begin_inset LatexCommand label
14360 name "tab:Tabla-con-horizontales-coloreadas"
14361
14362 \end_inset
14363
14364 Tabla con líneas horizontales coloreadas
14365 \end_layout
14366
14367 \end_inset
14368
14369
14370 \end_layout
14371
14372 \begin_layout Standard
14373 \align center
14374 \begin_inset Tabular
14375 <lyxtabular version="3" rows="3" columns="3">
14376 <features>
14377 <column alignment="center" valignment="top" leftline="true" width="0">
14378 <column alignment="center" valignment="top" leftline="true" width="0">
14379 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14380 <row topline="true">
14381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14382 \begin_inset Text
14383
14384 \begin_layout Standard
14385 sd
14386 \end_layout
14387
14388 \end_inset
14389 </cell>
14390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14391 \begin_inset Text
14392
14393 \begin_layout Standard
14394
14395 \end_layout
14396
14397 \end_inset
14398 </cell>
14399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14400 \begin_inset Text
14401
14402 \begin_layout Standard
14403
14404 \end_layout
14405
14406 \end_inset
14407 </cell>
14408 </row>
14409 <row topline="true">
14410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14411 \begin_inset Text
14412
14413 \begin_layout Standard
14414
14415 \end_layout
14416
14417 \end_inset
14418 </cell>
14419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14420 \begin_inset Text
14421
14422 \begin_layout Standard
14423 sd
14424 \end_layout
14425
14426 \end_inset
14427 </cell>
14428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14429 \begin_inset Text
14430
14431 \begin_layout Standard
14432
14433 \end_layout
14434
14435 \end_inset
14436 </cell>
14437 </row>
14438 <row topline="true" bottomline="true">
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" usebox="none">
14449 \begin_inset Text
14450
14451 \begin_layout Standard
14452
14453 \end_layout
14454
14455 \end_inset
14456 </cell>
14457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14458 \begin_inset Text
14459
14460 \begin_layout Standard
14461 sd
14462 \end_layout
14463
14464 \end_inset
14465 </cell>
14466 </row>
14467 </lyxtabular>
14468
14469 \end_inset
14470
14471
14472 \end_layout
14473
14474 \end_inset
14475
14476
14477 \end_layout
14478
14479 \begin_layout Standard
14480 \begin_inset ERT
14481 status collapsed
14482
14483 \begin_layout Standard
14484
14485
14486 \backslash
14487 pagebreak 
14488 \end_layout
14489
14490 \end_inset
14491
14492
14493 \end_layout
14494
14495 \begin_layout Standard
14496 Para volver al color de línea negro predeterminado inserta este comando
14497  en ERT detrás de la tabla o el flotante:
14498 \end_layout
14499
14500 \begin_layout Standard
14501
14502 \series bold
14503
14504 \backslash
14505 renewcommand{
14506 \backslash
14507 hline}{
14508 \backslash
14509 myHlineC}
14510 \end_layout
14511
14512 \begin_layout Standard
14513 La tabla\InsetSpace ~
14514
14515 \begin_inset LatexCommand ref
14516 reference "tab:Tabla-con-líneas-coloreadas"
14517
14518 \end_inset
14519
14520  es un ejemplo con líneas verticales y horizontales coloreadas.
14521 \end_layout
14522
14523 \begin_layout Standard
14524 \begin_inset Float table
14525 wide false
14526 sideways false
14527 status open
14528
14529 \begin_layout Standard
14530 \begin_inset Caption
14531
14532 \begin_layout Standard
14533 \begin_inset LatexCommand label
14534 name "tab:Tabla-con-líneas-coloreadas"
14535
14536 \end_inset
14537
14538 Tabla con líneas coloreadas
14539 \end_layout
14540
14541 \end_inset
14542
14543
14544 \end_layout
14545
14546 \begin_layout Standard
14547 \align center
14548 \begin_inset Tabular
14549 <lyxtabular version="3" rows="3" columns="3">
14550 <features>
14551 <column alignment="center" valignment="top" width="0" special="Wc">
14552 <column alignment="center" valignment="top" width="0" special="Wc">
14553 <column alignment="center" valignment="top" width="0" special="WcW">
14554 <row topline="true">
14555 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14556 \begin_inset Text
14557
14558 \begin_layout Standard
14559 sd
14560 \end_layout
14561
14562 \end_inset
14563 </cell>
14564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14565 \begin_inset Text
14566
14567 \begin_layout Standard
14568
14569 \end_layout
14570
14571 \end_inset
14572 </cell>
14573 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14574 \begin_inset Text
14575
14576 \begin_layout Standard
14577
14578 \end_layout
14579
14580 \end_inset
14581 </cell>
14582 </row>
14583 <row topline="true">
14584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14585 \begin_inset Text
14586
14587 \begin_layout Standard
14588
14589 \end_layout
14590
14591 \end_inset
14592 </cell>
14593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14594 \begin_inset Text
14595
14596 \begin_layout Standard
14597 sd
14598 \end_layout
14599
14600 \end_inset
14601 </cell>
14602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14603 \begin_inset Text
14604
14605 \begin_layout Standard
14606
14607 \end_layout
14608
14609 \end_inset
14610 </cell>
14611 </row>
14612 <row topline="true" bottomline="true">
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" usebox="none">
14623 \begin_inset Text
14624
14625 \begin_layout Standard
14626
14627 \end_layout
14628
14629 \end_inset
14630 </cell>
14631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14632 \begin_inset Text
14633
14634 \begin_layout Standard
14635 sd
14636 \end_layout
14637
14638 \end_inset
14639 </cell>
14640 </row>
14641 </lyxtabular>
14642
14643 \end_inset
14644
14645
14646 \end_layout
14647
14648 \end_inset
14649
14650
14651 \end_layout
14652
14653 \begin_layout Standard
14654 \begin_inset ERT
14655 status collapsed
14656
14657 \begin_layout Standard
14658
14659
14660 \backslash
14661 renewcommand{
14662 \backslash
14663 hline}{
14664 \backslash
14665 myHlineC}
14666 \end_layout
14667
14668 \end_inset
14669
14670
14671 \end_layout
14672
14673 \begin_layout Standard
14674 \begin_inset ERT
14675 status collapsed
14676
14677 \begin_layout Standard
14678
14679
14680 \backslash
14681 setlength{
14682 \backslash
14683 arrayrulewidth}{0.4pt}
14684 \end_layout
14685
14686 \end_inset
14687
14688
14689 \end_layout
14690
14691 \begin_layout Section
14692 Personalización de Tablas
14693 \begin_inset LatexCommand index
14694 name "Personalización de Tablas"
14695
14696 \end_inset
14697
14698
14699 \begin_inset LatexCommand index
14700 name "Tablas ! Personalización"
14701
14702 \end_inset
14703
14704
14705 \end_layout
14706
14707 \begin_layout Subsection
14708 Espacio Adicional en Filas
14709 \begin_inset LatexCommand label
14710 name "sub:Espacio-adicional"
14711
14712 \end_inset
14713
14714
14715 \begin_inset LatexCommand index
14716 name "Personalización de Tablas ! Espacio Adicional en Filas"
14717
14718 \end_inset
14719
14720
14721 \end_layout
14722
14723 \begin_layout Standard
14724 Es posible añadir espacio vertical a las filas de una tabla en la solapa
14725  
14726 \family sans
14727 Bordes,
14728 \family default
14729  del diálogo de configuración de tablas.
14730  En el marco 
14731 \family sans
14732 Espacio\InsetSpace ~
14733 adicional
14734 \family default
14735  dispones de tres posibilidades:
14736 \end_layout
14737
14738 \begin_layout Description
14739 Superior\InsetSpace ~
14740 de\InsetSpace ~
14741 la\InsetSpace ~
14742 fila añade espacio sobre los caracteres de la fila.
14743  Si la tabla es de estilo formal
14744 \begin_inset Foot
14745 status collapsed
14746
14747 \begin_layout Standard
14748 Las tablas formales se explican en la sección\InsetSpace ~
14749
14750 \begin_inset LatexCommand ref
14751 reference "sec:Tablas-Formales"
14752
14753 \end_inset
14754
14755
14756 \end_layout
14757
14758 \end_inset
14759
14760  LyX insertará 0.5\InsetSpace \thinspace{}
14761 em por defecto.
14762  Si la tabla es de estilo normal el espacio adicional destruirá las líneas
14763  verticales, como se ve en la tabla siguiente:
14764 \begin_inset VSpace defskip
14765 \end_inset
14766
14767
14768 \newline
14769
14770 \begin_inset ERT
14771 status collapsed
14772
14773 \begin_layout Standard
14774
14775
14776 \backslash
14777 hspace*{0pt}
14778 \end_layout
14779
14780 \end_inset
14781
14782
14783 \hfill
14784
14785 \begin_inset Tabular
14786 <lyxtabular version="3" rows="3" columns="1">
14787 <features>
14788 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14789 <row topline="true">
14790 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14791 \begin_inset Text
14792
14793 \begin_layout Standard
14794 A
14795 \end_layout
14796
14797 \end_inset
14798 </cell>
14799 </row>
14800 <row topline="true" topspace="3mm">
14801 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14802 \begin_inset Text
14803
14804 \begin_layout Standard
14805 3\InsetSpace \thinspace{}
14806 mm sobre la fila
14807 \end_layout
14808
14809 \end_inset
14810 </cell>
14811 </row>
14812 <row topline="true" bottomline="true">
14813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14814 \begin_inset Text
14815
14816 \begin_layout Standard
14817 C
14818 \end_layout
14819
14820 \end_inset
14821 </cell>
14822 </row>
14823 </lyxtabular>
14824
14825 \end_inset
14826
14827
14828 \hfill
14829
14830 \begin_inset ERT
14831 status collapsed
14832
14833 \begin_layout Standard
14834
14835
14836 \backslash
14837 hspace*{0pt}
14838 \end_layout
14839
14840 \end_inset
14841
14842
14843 \begin_inset VSpace defskip
14844 \end_inset
14845
14846
14847 \newline
14848 Así pues, insertar espacio superior en tablas normales solo es útil en tablas
14849  sin líneas verticales.
14850 \end_layout
14851
14852 \begin_layout Description
14853 Inferior\InsetSpace ~
14854 de\InsetSpace ~
14855 la\InsetSpace ~
14856 fila añade espacio bajo los caracteres de la fila.
14857  Si la tabla es formal LyX inserta por defecto 0.5\InsetSpace \thinspace{}
14858 em; si la tabla es normal
14859  inserta 2\InsetSpace \thinspace{}
14860 pt.
14861  
14862 \end_layout
14863
14864 \begin_layout Description
14865 Entre\InsetSpace ~
14866 las\InsetSpace ~
14867 filas añade espacio entre la fila actual y la siguiente.
14868  Si la tabla es formal LyX inserta 0.5\InsetSpace \thinspace{}
14869 em por defecto.
14870  En tablas normales, el espacio adicional destruirá las líneas verticales
14871  de la tabla, como se ve en la siguiente:
14872 \begin_inset VSpace defskip
14873 \end_inset
14874
14875
14876 \newline
14877
14878 \begin_inset ERT
14879 status collapsed
14880
14881 \begin_layout Standard
14882
14883
14884 \backslash
14885 hspace*{0pt}
14886 \end_layout
14887
14888 \end_inset
14889
14890
14891 \hfill
14892
14893 \begin_inset Tabular
14894 <lyxtabular version="3" rows="3" columns="1">
14895 <features>
14896 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14897 <row topline="true">
14898 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14899 \begin_inset Text
14900
14901 \begin_layout Standard
14902 A
14903 \end_layout
14904
14905 \end_inset
14906 </cell>
14907 </row>
14908 <row topline="true" interlinespace="3mm">
14909 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14910 \begin_inset Text
14911
14912 \begin_layout Standard
14913 \begin_inset Formula $\downarrow$
14914 \end_inset
14915
14916  3\InsetSpace \thinspace{}
14917 mm entre las filas
14918 \end_layout
14919
14920 \end_inset
14921 </cell>
14922 </row>
14923 <row topline="true" bottomline="true">
14924 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14925 \begin_inset Text
14926
14927 \begin_layout Standard
14928 \begin_inset Formula $\uparrow$
14929 \end_inset
14930
14931  3\InsetSpace \thinspace{}
14932 mm entre las filas 
14933 \begin_inset Formula $\uparrow$
14934 \end_inset
14935
14936
14937 \end_layout
14938
14939 \end_inset
14940 </cell>
14941 </row>
14942 </lyxtabular>
14943
14944 \end_inset
14945
14946
14947 \hfill
14948
14949 \begin_inset ERT
14950 status collapsed
14951
14952 \begin_layout Standard
14953
14954
14955 \backslash
14956 hspace*{0pt}
14957 \end_layout
14958
14959 \end_inset
14960
14961
14962 \begin_inset VSpace defskip
14963 \end_inset
14964
14965
14966 \newline
14967 Así pues, los espacios adicionales entre filas de tablas normales sólo sirven
14968  para tablas sin líneas verticales.
14969 \end_layout
14970
14971 \begin_layout Standard
14972 Para añadir altura vertical extra a todas las celdas de todas las tablas,
14973  utiliza el siguiente comando en el preámbulo:
14974 \end_layout
14975
14976 \begin_layout Standard
14977
14978 \series bold
14979
14980 \backslash
14981 setlength{
14982 \backslash
14983 extrarowheight}{altura}
14984 \end_layout
14985
14986 \begin_layout Standard
14987 Esto tiene el inconveniente de que el texto de las celdas no estará exactamente
14988  centrado en vertical.
14989 \end_layout
14990
14991 \begin_layout Standard
14992
14993 \end_layout
14994
14995 \begin_layout Subsection
14996 Alineación Especial de Celdas
14997 \begin_inset LatexCommand index
14998 name "Personalización de Tablas ! Alineación Especial de Celdas"
14999
15000 \end_inset
15001
15002
15003 \end_layout
15004
15005 \begin_layout Standard
15006 A veces mejora la presentación si las entradas en las celdas de una columna
15007  se alinean con un carácter determinado, p.\InsetSpace \thinspace{}
15008 e.\InsetSpace ~
15009 el separador decimal, como en
15010  la tabla\InsetSpace ~
15011
15012 \begin_inset LatexCommand ref
15013 reference "tab:Tabla-con-celdas-de"
15014
15015 \end_inset
15016
15017 .
15018 \end_layout
15019
15020 \begin_layout Standard
15021 \begin_inset Float table
15022 wide false
15023 sideways false
15024 status open
15025
15026 \begin_layout Standard
15027 \begin_inset Caption
15028
15029 \begin_layout Standard
15030 \begin_inset LatexCommand label
15031 name "tab:Tabla-con-celdas-de"
15032
15033 \end_inset
15034
15035 Tabla con celdas alineadas con el separador decimal.
15036 \end_layout
15037
15038 \end_inset
15039
15040
15041 \end_layout
15042
15043 \begin_layout Standard
15044 \align center
15045 \begin_inset Tabular
15046 <lyxtabular version="3" rows="4" columns="2">
15047 <features>
15048 <column alignment="right" valignment="top" width="0">
15049 <column alignment="left" valignment="top" width="0" special="@{}l">
15050 <row bottomline="true">
15051 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15052 \begin_inset Text
15053
15054 \begin_layout Standard
15055 encabezado
15056 \end_layout
15057
15058 \end_inset
15059 </cell>
15060 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15061 \begin_inset Text
15062
15063 \begin_layout Standard
15064
15065 \end_layout
15066
15067 \end_inset
15068 </cell>
15069 </row>
15070 <row>
15071 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15072 \begin_inset Text
15073
15074 \begin_layout Standard
15075 12.
15076 \end_layout
15077
15078 \end_inset
15079 </cell>
15080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15081 \begin_inset Text
15082
15083 \begin_layout Standard
15084 6
15085 \end_layout
15086
15087 \end_inset
15088 </cell>
15089 </row>
15090 <row>
15091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15092 \begin_inset Text
15093
15094 \begin_layout Standard
15095 0.
15096 \end_layout
15097
15098 \end_inset
15099 </cell>
15100 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15101 \begin_inset Text
15102
15103 \begin_layout Standard
15104 68
15105 \end_layout
15106
15107 \end_inset
15108 </cell>
15109 </row>
15110 <row>
15111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15112 \begin_inset Text
15113
15114 \begin_layout Standard
15115 -123.
15116 \end_layout
15117
15118 \end_inset
15119 </cell>
15120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15121 \begin_inset Text
15122
15123 \begin_layout Standard
15124 0
15125 \end_layout
15126
15127 \end_inset
15128 </cell>
15129 </row>
15130 </lyxtabular>
15131
15132 \end_inset
15133
15134
15135 \end_layout
15136
15137 \end_inset
15138
15139
15140 \end_layout
15141
15142 \begin_layout Standard
15143 Esta es una tabla 4×2.
15144  El encabezado es una multicolumna centrada.
15145  La primera columna está alineada a la derecha y contiene el punto decimal
15146  y los dígitos anteriores.
15147  La segunda columna está alineada a la izquierda y contiene los dígitos
15148  posteriores al punto decimal.
15149  Para omitir el espacio que hay normalmente entre dos columnas usa el siguiente
15150  argumento LaTeX para la segunda columna:
15151 \end_layout
15152
15153 \begin_layout Standard
15154
15155 \series bold
15156 @{}l
15157 \end_layout
15158
15159 \begin_layout Standard
15160 La tabla\InsetSpace ~
15161
15162 \begin_inset LatexCommand ref
15163 reference "tab:Varias-alineaciones"
15164
15165 \end_inset
15166
15167  muestra varios ejemplos de alineación.
15168  Para alinear con el signo de relación debes añadir el segundo espacio matemátic
15169 o más pequeño al comienzo de la última columna para conseguir el espacio
15170  adecuado alrededor del signo.
15171 \end_layout
15172
15173 \begin_layout Standard
15174 \begin_inset Float table
15175 wide false
15176 sideways false
15177 status open
15178
15179 \begin_layout Standard
15180 \begin_inset Caption
15181
15182 \begin_layout Standard
15183 \begin_inset LatexCommand label
15184 name "tab:Varias-alineaciones"
15185
15186 \end_inset
15187
15188 Tabla con varias alineaciones.
15189 \end_layout
15190
15191 \end_inset
15192
15193
15194 \end_layout
15195
15196 \begin_layout Standard
15197 \align center
15198 \begin_inset Tabular
15199 <lyxtabular version="3" rows="4" columns="6">
15200 <features>
15201 <column alignment="right" valignment="top" width="0">
15202 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15203 <column alignment="right" valignment="top" width="0">
15204 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15205 <column alignment="right" valignment="top" width="0">
15206 <column alignment="left" valignment="top" width="0" special="@{}l">
15207 <row bottomline="true">
15208 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15209 \begin_inset Text
15210
15211 \begin_layout Standard
15212 unidades
15213 \end_layout
15214
15215 \end_inset
15216 </cell>
15217 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15218 \begin_inset Text
15219
15220 \begin_layout Standard
15221
15222 \end_layout
15223
15224 \end_inset
15225 </cell>
15226 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15227 \begin_inset Text
15228
15229 \begin_layout Standard
15230 exponentes
15231 \end_layout
15232
15233 \end_inset
15234 </cell>
15235 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15236 \begin_inset Text
15237
15238 \begin_layout Standard
15239
15240 \end_layout
15241
15242 \end_inset
15243 </cell>
15244 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15245 \begin_inset Text
15246
15247 \begin_layout Standard
15248 relaciones
15249 \end_layout
15250
15251 \end_inset
15252 </cell>
15253 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15254 \begin_inset Text
15255
15256 \begin_layout Standard
15257
15258 \end_layout
15259
15260 \end_inset
15261 </cell>
15262 </row>
15263 <row>
15264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15265 \begin_inset Text
15266
15267 \begin_layout Standard
15268 12×
15269 \end_layout
15270
15271 \end_inset
15272 </cell>
15273 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15274 \begin_inset Text
15275
15276 \begin_layout Standard
15277 24\InsetSpace \thinspace{}
15278 bottles
15279 \end_layout
15280
15281 \end_inset
15282 </cell>
15283 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15284 \begin_inset Text
15285
15286 \begin_layout Standard
15287 \begin_inset Formula $10\cdot$
15288 \end_inset
15289
15290
15291 \end_layout
15292
15293 \end_inset
15294 </cell>
15295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15296 \begin_inset Text
15297
15298 \begin_layout Standard
15299 \begin_inset Formula $10^{\mbox{-}17}$
15300 \end_inset
15301
15302
15303 \end_layout
15304
15305 \end_inset
15306 </cell>
15307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15308 \begin_inset Text
15309
15310 \begin_layout Standard
15311 \begin_inset Formula $\Gamma(t)\propto$
15312 \end_inset
15313
15314
15315 \end_layout
15316
15317 \end_inset
15318 </cell>
15319 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15320 \begin_inset Text
15321
15322 \begin_layout Standard
15323 \begin_inset Formula $\:\Upsilon(t)$
15324 \end_inset
15325
15326
15327 \end_layout
15328
15329 \end_inset
15330 </cell>
15331 </row>
15332 <row>
15333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15334 \begin_inset Text
15335
15336 \begin_layout Standard
15337 1024×
15338 \end_layout
15339
15340 \end_inset
15341 </cell>
15342 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15343 \begin_inset Text
15344
15345 \begin_layout Standard
15346 768\InsetSpace \thinspace{}
15347 Pixels
15348 \end_layout
15349
15350 \end_inset
15351 </cell>
15352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15353 \begin_inset Text
15354
15355 \begin_layout Standard
15356 \begin_inset Formula $5.78\cdot$
15357 \end_inset
15358
15359
15360 \end_layout
15361
15362 \end_inset
15363 </cell>
15364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15365 \begin_inset Text
15366
15367 \begin_layout Standard
15368 \begin_inset Formula $10^{7}$
15369 \end_inset
15370
15371
15372 \end_layout
15373
15374 \end_inset
15375 </cell>
15376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15377 \begin_inset Text
15378
15379 \begin_layout Standard
15380 \begin_inset Formula $A\ne$
15381 \end_inset
15382
15383
15384 \end_layout
15385
15386 \end_inset
15387 </cell>
15388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15389 \begin_inset Text
15390
15391 \begin_layout Standard
15392 \begin_inset Formula $\: B_{\mathrm{red}}$
15393 \end_inset
15394
15395
15396 \end_layout
15397
15398 \end_inset
15399 </cell>
15400 </row>
15401 <row>
15402 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15403 \begin_inset Text
15404
15405 \begin_layout Standard
15406 32×
15407 \end_layout
15408
15409 \end_inset
15410 </cell>
15411 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15412 \begin_inset Text
15413
15414 \begin_layout Standard
15415 6\InsetSpace \thinspace{}
15416 cm
15417 \end_layout
15418
15419 \end_inset
15420 </cell>
15421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15422 \begin_inset Text
15423
15424 \begin_layout Standard
15425 -
15426 \begin_inset Formula $33.5\cdot$
15427 \end_inset
15428
15429
15430 \end_layout
15431
15432 \end_inset
15433 </cell>
15434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15435 \begin_inset Text
15436
15437 \begin_layout Standard
15438 \begin_inset Formula $10^{4}$
15439 \end_inset
15440
15441
15442 \end_layout
15443
15444 \end_inset
15445 </cell>
15446 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15447 \begin_inset Text
15448
15449 \begin_layout Standard
15450 \begin_inset Formula $\sin(\alpha)\ge$
15451 \end_inset
15452
15453
15454 \end_layout
15455
15456 \end_inset
15457 </cell>
15458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15459 \begin_inset Text
15460
15461 \begin_layout Standard
15462 \begin_inset Formula $\:\sin(\beta)$
15463 \end_inset
15464
15465
15466 \end_layout
15467
15468 \end_inset
15469 </cell>
15470 </row>
15471 </lyxtabular>
15472
15473 \end_inset
15474
15475
15476 \end_layout
15477
15478 \end_inset
15479
15480
15481 \end_layout
15482
15483 \begin_layout Standard
15484 \begin_inset VSpace bigskip
15485 \end_inset
15486
15487 También hay un paquete LaTeX, 
15488 \series bold
15489 dcolumn
15490 \series default
15491
15492 \begin_inset LatexCommand index
15493 name "LaTeX-paquetes ! dcolumn"
15494
15495 \end_inset
15496
15497 , que permite alinear el contenido de las celdas.
15498  Pero desgraciadamente trata las entradas de celda en modo matemático y
15499  no permite fórmulas en celdas: la primera columna de la tabla\InsetSpace ~
15500
15501 \begin_inset LatexCommand ref
15502 reference "tab:Varias-alineaciones"
15503
15504 \end_inset
15505
15506  se verá con 
15507 \series bold
15508 dcolumn
15509 \series default
15510  como la primera columna en la tabla\InsetSpace ~
15511
15512 \begin_inset LatexCommand ref
15513 reference "tab:Alineaciones-con-el"
15514
15515 \end_inset
15516
15517  y solo con algunos trucos se consigue lo que se espera.
15518  La alineación de la segunda y tercera columnas de la tabla\InsetSpace ~
15519
15520 \begin_inset LatexCommand ref
15521 reference "tab:Varias-alineaciones"
15522
15523 \end_inset
15524
15525  no es posible con 
15526 \series bold
15527 dcolumn
15528 \series default
15529 .
15530 \end_layout
15531
15532 \begin_layout Standard
15533 \begin_inset Float table
15534 placement h
15535 wide false
15536 sideways false
15537 status open
15538
15539 \begin_layout Standard
15540 \begin_inset Caption
15541
15542 \begin_layout Standard
15543 \begin_inset LatexCommand label
15544 name "tab:Alineaciones-con-el"
15545
15546 \end_inset
15547
15548
15549 \begin_inset OptArg
15550 status open
15551
15552 \begin_layout Standard
15553 Tabla alineada con 
15554 \series bold
15555 dcolumn
15556 \end_layout
15557
15558 \end_inset
15559
15560 Alineaciones con el paquete LaTeX 
15561 \series bold
15562 dcolumn
15563 \series default
15564 .
15565  Se han tenido que usar unos trucos para la alineación de las columnas en
15566  la salida.
15567 \end_layout
15568
15569 \end_inset
15570
15571
15572 \end_layout
15573
15574 \begin_layout Standard
15575 \align center
15576 \begin_inset Tabular
15577 <lyxtabular version="3" rows="4" columns="3">
15578 <features>
15579 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{4.9}">
15580 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{4.9}">
15581 <column alignment="center" valignment="top" width="0" special="D{~}{\,}{9.7}">
15582 <row bottomline="true">
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" rightline="true" usebox="none">
15593 \begin_inset Text
15594
15595 \begin_layout Standard
15596 unidades
15597 \end_layout
15598
15599 \end_inset
15600 </cell>
15601 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15602 \begin_inset Text
15603
15604 \begin_layout Standard
15605 unidades
15606 \end_layout
15607
15608 \end_inset
15609 </cell>
15610 </row>
15611 <row>
15612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15613 \begin_inset Text
15614
15615 \begin_layout Standard
15616 12x24\InsetSpace \thinspace{}
15617 bottles
15618 \end_layout
15619
15620 \end_inset
15621 </cell>
15622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15623 \begin_inset Text
15624
15625 \begin_layout Standard
15626 12x24\InsetSpace \thinspace{}
15627
15628 \begin_inset Formula $\mbox{bottles}$
15629 \end_inset
15630
15631
15632 \end_layout
15633
15634 \end_inset
15635 </cell>
15636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15637 \begin_inset Text
15638
15639 \begin_layout Standard
15640 12
15641 \begin_inset ERT
15642 status collapsed
15643
15644 \begin_layout Standard
15645
15646
15647 \backslash
15648 times
15649 \end_layout
15650
15651 \end_inset
15652
15653 24~
15654 \begin_inset Formula $\mbox{bottles}$
15655 \end_inset
15656
15657
15658 \end_layout
15659
15660 \end_inset
15661 </cell>
15662 </row>
15663 <row>
15664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15665 \begin_inset Text
15666
15667 \begin_layout Standard
15668 1024x768\InsetSpace \thinspace{}
15669 Pixels
15670 \end_layout
15671
15672 \end_inset
15673 </cell>
15674 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15675 \begin_inset Text
15676
15677 \begin_layout Standard
15678 1024x768\InsetSpace \thinspace{}
15679
15680 \begin_inset Formula $\mbox{Pixels}$
15681 \end_inset
15682
15683
15684 \end_layout
15685
15686 \end_inset
15687 </cell>
15688 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15689 \begin_inset Text
15690
15691 \begin_layout Standard
15692 1024
15693 \begin_inset ERT
15694 status collapsed
15695
15696 \begin_layout Standard
15697
15698
15699 \backslash
15700 times
15701 \end_layout
15702
15703 \end_inset
15704
15705 768~
15706 \begin_inset Formula $\mbox{Pixels}$
15707 \end_inset
15708
15709  
15710 \end_layout
15711
15712 \end_inset
15713 </cell>
15714 </row>
15715 <row>
15716 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15717 \begin_inset Text
15718
15719 \begin_layout Standard
15720 32x6\InsetSpace \thinspace{}
15721 cm
15722 \end_layout
15723
15724 \end_inset
15725 </cell>
15726 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15727 \begin_inset Text
15728
15729 \begin_layout Standard
15730 32x6\InsetSpace \thinspace{}
15731
15732 \begin_inset Formula $\mbox{cm}$
15733 \end_inset
15734
15735
15736 \end_layout
15737
15738 \end_inset
15739 </cell>
15740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15741 \begin_inset Text
15742
15743 \begin_layout Standard
15744 32
15745 \begin_inset ERT
15746 status collapsed
15747
15748 \begin_layout Standard
15749
15750
15751 \backslash
15752 times
15753 \end_layout
15754
15755 \end_inset
15756
15757 6~
15758 \begin_inset Formula $\mbox{cm}$
15759 \end_inset
15760
15761
15762 \end_layout
15763
15764 \end_inset
15765 </cell>
15766 </row>
15767 </lyxtabular>
15768
15769 \end_inset
15770
15771
15772 \end_layout
15773
15774 \end_inset
15775
15776
15777 \end_layout
15778
15779 \begin_layout Subsection
15780 Formato Personalizado de Celda/Columna
15781 \begin_inset LatexCommand label
15782 name "sub:Formato-Personalizado"
15783
15784 \end_inset
15785
15786
15787 \begin_inset LatexCommand index
15788 name "Personalización de Tablas ! Formato de Celda/Columna"
15789
15790 \end_inset
15791
15792
15793 \end_layout
15794
15795 \begin_layout Standard
15796 El cálculo de la anchura necesaria para columnas extendidas descrito en
15797  la sección\InsetSpace ~
15798
15799 \begin_inset LatexCommand ref
15800 reference "sub:Cálculos-en-Multicolumnas"
15801
15802 \end_inset
15803
15804  es muy pesado si tienes varias tablas con multicolumnas.
15805  Para hacerlo más fácil, puedes definir en el preámbulo un formato de celda/colu
15806 mna aplicable a todas las tablas del documento.
15807  El formato se define con el comando
15808 \end_layout
15809
15810 \begin_layout Standard
15811
15812 \series bold
15813
15814 \backslash
15815 newcolumntype{nombre del formato}[número de argumentos]{comandos}
15816 \end_layout
15817
15818 \begin_layout Standard
15819 El nombre de formato puede ser una sola letra.
15820  Las letras 
15821 \emph on
15822 b, c, l, m, p
15823 \emph default
15824  y 
15825 \emph on
15826 r
15827 \emph default
15828  están predefinidas y no pueden usarse.
15829  Pero se permiten todas las mayúsculas.
15830 \end_layout
15831
15832 \begin_layout Standard
15833 \begin_inset VSpace medskip
15834 \end_inset
15835
15836
15837 \end_layout
15838
15839 \begin_layout Standard
15840 Para celdas multicolumna vertical y horizontalmente centradas con una anchura
15841  fija puedes definir el formato de celda
15842 \end_layout
15843
15844 \begin_layout Standard
15845
15846 \series bold
15847
15848 \backslash
15849 newcolumntype{M}[1]{>{
15850 \backslash
15851 centering
15852 \backslash
15853 hspace{0pt}}m{#1}}
15854 \end_layout
15855
15856 \begin_layout Standard
15857 donde 
15858 \series bold
15859
15860 \backslash
15861 hspace{0pt}
15862 \series default
15863  evita el problema de partir con guión la primera palabra, como se describe
15864  en la sección\InsetSpace ~
15865
15866 \begin_inset LatexCommand ref
15867 reference "sub:Líneas-Múltiples-en"
15868
15869 \end_inset
15870
15871 .
15872  Ahora puedes introducir simplemente
15873 \end_layout
15874
15875 \begin_layout Standard
15876
15877 \series bold
15878 M{ancho}
15879 \end_layout
15880
15881 \begin_layout Standard
15882 como argumento LaTeX en el diálogo de tabla para crear una multicolumna.
15883 \end_layout
15884
15885 \begin_layout Standard
15886 \begin_inset VSpace bigskip
15887 \end_inset
15888
15889
15890 \end_layout
15891
15892 \begin_layout Standard
15893 Para celdas extendidas en una celda multicolumna, puedes definir el formato
15894 \end_layout
15895
15896 \begin_layout Standard
15897
15898 \series bold
15899
15900 \backslash
15901 newcolumntype{S}[2]{>{
15902 \backslash
15903 centering
15904 \backslash
15905 hspace{0pt}}
15906 \newline
15907
15908 \begin_inset ERT
15909 status collapsed
15910
15911 \begin_layout Standard
15912
15913
15914 \backslash
15915 phantom{
15916 \end_layout
15917
15918 \end_inset
15919
15920
15921 \backslash
15922 newcolumntype{S}[2]
15923 \begin_inset ERT
15924 status collapsed
15925
15926 \begin_layout Standard
15927
15928 }
15929 \end_layout
15930
15931 \end_inset
15932
15933 m{(#1+(2
15934 \backslash
15935 tabcolsep+
15936 \backslash
15937 arrayrulewidth)*(1-#2))/#2}}
15938 \end_layout
15939
15940 \begin_layout Standard
15941 Este formato usa la ecuación 
15942 \begin_inset LatexCommand eqref
15943 reference "eq:Wgn"
15944
15945 \end_inset
15946
15947  para calcular la anchura necesaria para que cada celda extendida tenga
15948  la misma anchura.
15949 \end_layout
15950
15951 \begin_layout Standard
15952 Ahora puedes introducir
15953 \end_layout
15954
15955 \begin_layout Standard
15956
15957 \series bold
15958 S{ancho de la celda multicolumna}{número de columnas extendidas}
15959 \end_layout
15960
15961 \begin_layout Standard
15962 como argumento LaTeX de la columna.
15963 \end_layout
15964
15965 \begin_layout Standard
15966 \begin_inset VSpace bigskip
15967 \end_inset
15968
15969
15970 \end_layout
15971
15972 \begin_layout Standard
15973 Para columnas coloreadas puedes definir
15974 \end_layout
15975
15976 \begin_layout Standard
15977
15978 \series bold
15979
15980 \backslash
15981 newcolumntype{K}[1]{>{
15982 \backslash
15983 columncolor{#1}
15984 \backslash
15985 hspace{0pt}}c}
15986 \end_layout
15987
15988 \begin_layout Standard
15989 La 
15990 \begin_inset Quotes eld
15991 \end_inset
15992
15993 c
15994 \begin_inset Quotes erd
15995 \end_inset
15996
15997  al final crea una columna con anchura flexible cuyo texto está centrado
15998  horizontalmente.
15999  Ahora puedes introducir
16000 \end_layout
16001
16002 \begin_layout Standard
16003
16004 \series bold
16005 K{nombre del color}
16006 \end_layout
16007
16008 \begin_layout Standard
16009 como argumento LaTeX.
16010 \end_layout
16011
16012 \begin_layout Standard
16013 \begin_inset VSpace bigskip
16014 \end_inset
16015
16016
16017 \end_layout
16018
16019 \begin_layout Standard
16020 Para crear la tabla\InsetSpace ~
16021
16022 \begin_inset LatexCommand ref
16023 reference "tab:Tabla-con-formatos-definidos-por"
16024
16025 \end_inset
16026
16027  usa los argumentos LaTeX
16028 \end_layout
16029
16030 \begin_layout Standard
16031
16032 \series bold
16033 M{2.5cm}
16034 \end_layout
16035
16036 \begin_layout Standard
16037 para la primera columna y la multicolumna,
16038 \end_layout
16039
16040 \begin_layout Standard
16041
16042 \series bold
16043 K{red}
16044 \end_layout
16045
16046 \begin_layout Standard
16047 para la última columna y
16048 \end_layout
16049
16050 \begin_layout Standard
16051
16052 \series bold
16053 S{2.5cm}{2}
16054 \end_layout
16055
16056 \begin_layout Standard
16057 para las celdas en la segunda columna.
16058 \end_layout
16059
16060 \begin_layout Standard
16061 \begin_inset Float table
16062 placement h
16063 wide false
16064 sideways false
16065 status open
16066
16067 \begin_layout Standard
16068 \begin_inset Caption
16069
16070 \begin_layout Standard
16071 \begin_inset LatexCommand label
16072 name "tab:Tabla-con-formatos-definidos-por"
16073
16074 \end_inset
16075
16076 Tabla con formatos definidos por el usuario
16077 \end_layout
16078
16079 \end_inset
16080
16081
16082 \end_layout
16083
16084 \begin_layout Standard
16085 \align center
16086 \begin_inset Tabular
16087 <lyxtabular version="3" rows="3" columns="4">
16088 <features>
16089 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="M{2.5cm}">
16090 <column alignment="center" valignment="middle" leftline="true" width="0" special="S{2.5cm}{2}">
16091 <column alignment="center" valignment="middle" leftline="true" width="0">
16092 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="K{red}">
16093 <row topline="true">
16094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16095 \begin_inset Text
16096
16097 \begin_layout Standard
16098 palabramuylargaenceldadetabla
16099 \end_layout
16100
16101 \end_inset
16102 </cell>
16103 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}">
16104 \begin_inset Text
16105
16106 \begin_layout Standard
16107 multicolumna línea múltiple
16108 \end_layout
16109
16110 \end_inset
16111 </cell>
16112 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16113 \begin_inset Text
16114
16115 \begin_layout Standard
16116
16117 \end_layout
16118
16119 \end_inset
16120 </cell>
16121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16122 \begin_inset Text
16123
16124 \begin_layout Standard
16125 c
16126 \end_layout
16127
16128 \end_inset
16129 </cell>
16130 </row>
16131 <row topline="true">
16132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16133 \begin_inset Text
16134
16135 \begin_layout Standard
16136 d
16137 \end_layout
16138
16139 \end_inset
16140 </cell>
16141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16142 \begin_inset Text
16143
16144 \begin_layout Standard
16145 e
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 f
16155 \end_layout
16156
16157 \end_inset
16158 </cell>
16159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16160 \begin_inset Text
16161
16162 \begin_layout Standard
16163 g
16164 \end_layout
16165
16166 \end_inset
16167 </cell>
16168 </row>
16169 <row topline="true" bottomline="true">
16170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16171 \begin_inset Text
16172
16173 \begin_layout Standard
16174 h
16175 \end_layout
16176
16177 \end_inset
16178 </cell>
16179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16180 \begin_inset Text
16181
16182 \begin_layout Standard
16183 i
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 j
16193 \end_layout
16194
16195 \end_inset
16196 </cell>
16197 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16198 \begin_inset Text
16199
16200 \begin_layout Standard
16201 k
16202 \end_layout
16203
16204 \end_inset
16205 </cell>
16206 </row>
16207 </lyxtabular>
16208
16209 \end_inset
16210
16211
16212 \end_layout
16213
16214 \end_inset
16215
16216
16217 \end_layout
16218
16219 \begin_layout Subsection
16220 Grosor de Líneas
16221 \begin_inset LatexCommand label
16222 name "sub:Grosor-de-Líneas"
16223
16224 \end_inset
16225
16226
16227 \begin_inset LatexCommand index
16228 name "Personalización de Tablas ! Grosor de Línea"
16229
16230 \end_inset
16231
16232
16233 \end_layout
16234
16235 \begin_layout Standard
16236 El grosor para todas las líneas de una tabla puede ajustarse con la longitud
16237  
16238 \series bold
16239
16240 \backslash
16241 arrayrulewidth
16242 \series default
16243 .
16244  Por ejemplo, para poner un grosor de línea de 1.5\InsetSpace \thinspace{}
16245 pt, como en la tabla\InsetSpace ~
16246
16247 \begin_inset LatexCommand ref
16248 reference "tab:Tabla-con-líneas"
16249
16250 \end_inset
16251
16252 , inserta el comando
16253 \end_layout
16254
16255 \begin_layout Standard
16256
16257 \series bold
16258
16259 \backslash
16260 setlength{
16261 \backslash
16262 arrayrulewidth}{1.5pt}
16263 \end_layout
16264
16265 \begin_layout Standard
16266 en ERT antes de la tabla o flotante.
16267  Este cambio es válido para todas las siguientes tablas.
16268  Para volver al valor predeterminado, define 
16269 \series bold
16270
16271 \backslash
16272 arrayrulewidth
16273 \series default
16274  a 0.4\InsetSpace \thinspace{}
16275 pt en ERT detrás de la tabla o flotante.
16276 \end_layout
16277
16278 \begin_layout Standard
16279 \begin_inset ERT
16280 status collapsed
16281
16282 \begin_layout Standard
16283
16284
16285 \backslash
16286 setlength{
16287 \backslash
16288 arrayrulewidth}{1.5pt}
16289 \end_layout
16290
16291 \end_inset
16292
16293
16294 \begin_inset Float table
16295 wide false
16296 sideways false
16297 status open
16298
16299 \begin_layout Standard
16300 \begin_inset Caption
16301
16302 \begin_layout Standard
16303 \begin_inset LatexCommand label
16304 name "tab:Tabla-con-líneas"
16305
16306 \end_inset
16307
16308 Tabla con líneas de grosor 1.5\InsetSpace \thinspace{}
16309 pt
16310 \end_layout
16311
16312 \end_inset
16313
16314
16315 \end_layout
16316
16317 \begin_layout Standard
16318 \align center
16319 \begin_inset Tabular
16320 <lyxtabular version="3" rows="3" columns="3">
16321 <features>
16322 <column alignment="center" valignment="top" leftline="true" width="0">
16323 <column alignment="center" valignment="top" leftline="true" width="0">
16324 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16325 <row topline="true">
16326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16327 \begin_inset Text
16328
16329 \begin_layout Standard
16330 sd
16331 \end_layout
16332
16333 \end_inset
16334 </cell>
16335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16336 \begin_inset Text
16337
16338 \begin_layout Standard
16339
16340 \end_layout
16341
16342 \end_inset
16343 </cell>
16344 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16345 \begin_inset Text
16346
16347 \begin_layout Standard
16348
16349 \end_layout
16350
16351 \end_inset
16352 </cell>
16353 </row>
16354 <row topline="true">
16355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16356 \begin_inset Text
16357
16358 \begin_layout Standard
16359
16360 \end_layout
16361
16362 \end_inset
16363 </cell>
16364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16365 \begin_inset Text
16366
16367 \begin_layout Standard
16368 sd
16369 \end_layout
16370
16371 \end_inset
16372 </cell>
16373 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16374 \begin_inset Text
16375
16376 \begin_layout Standard
16377
16378 \end_layout
16379
16380 \end_inset
16381 </cell>
16382 </row>
16383 <row topline="true" bottomline="true">
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" usebox="none">
16394 \begin_inset Text
16395
16396 \begin_layout Standard
16397
16398 \end_layout
16399
16400 \end_inset
16401 </cell>
16402 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16403 \begin_inset Text
16404
16405 \begin_layout Standard
16406 sd
16407 \end_layout
16408
16409 \end_inset
16410 </cell>
16411 </row>
16412 </lyxtabular>
16413
16414 \end_inset
16415
16416
16417 \end_layout
16418
16419 \end_inset
16420
16421
16422 \begin_inset ERT
16423 status collapsed
16424
16425 \begin_layout Standard
16426
16427
16428 \backslash
16429 setlength{
16430 \backslash
16431 arrayrulewidth}{0.4pt}
16432 \end_layout
16433
16434 \end_inset
16435
16436
16437 \end_layout
16438
16439 \begin_layout Standard
16440 \begin_inset VSpace bigskip
16441 \end_inset
16442
16443 Para definir un grosor de 1.5\InsetSpace \thinspace{}
16444 pt sólo para líneas horizontales, como en la
16445  tabla\InsetSpace ~
16446
16447 \begin_inset LatexCommand ref
16448 reference "tab:Tabla-con-horizontales"
16449
16450 \end_inset
16451
16452 , inserta estos comandos en ERT antes de la tabla o flotante:
16453 \end_layout
16454
16455 \begin_layout Standard
16456
16457 \series bold
16458
16459 \backslash
16460 let
16461 \backslash
16462 myHline
16463 \backslash
16464 hline
16465 \newline
16466
16467 \backslash
16468 renewcommand{
16469 \backslash
16470 hline}
16471 \newline
16472  {
16473 \backslash
16474 noalign{
16475 \backslash
16476 global
16477 \backslash
16478 arrayrulewidth 1.5pt}
16479 \newline
16480   
16481 \backslash
16482 myHline
16483 \backslash
16484 noalign{
16485 \backslash
16486 global
16487 \backslash
16488 arrayrulewidth 0.4pt}}
16489 \end_layout
16490
16491 \begin_layout Standard
16492 Para volver al grosor predeterminado, inserta este comando en ERT detrás
16493  de la tabla o flotante:
16494 \end_layout
16495
16496 \begin_layout Standard
16497
16498 \series bold
16499
16500 \backslash
16501 renewcommand{
16502 \backslash
16503 hline}{
16504 \backslash
16505 myHline}
16506 \end_layout
16507
16508 \begin_layout Standard
16509 \begin_inset ERT
16510 status collapsed
16511
16512 \begin_layout Standard
16513
16514
16515 \backslash
16516 let
16517 \backslash
16518 myHline
16519 \backslash
16520 hline
16521 \end_layout
16522
16523 \begin_layout Standard
16524
16525
16526 \backslash
16527 renewcommand{
16528 \backslash
16529 hline}
16530 \end_layout
16531
16532 \begin_layout Standard
16533
16534  {
16535 \backslash
16536 noalign{
16537 \backslash
16538 global
16539 \backslash
16540 arrayrulewidth 1.5pt}
16541 \end_layout
16542
16543 \begin_layout Standard
16544
16545   
16546 \backslash
16547 myHline
16548 \backslash
16549 noalign{
16550 \backslash
16551 global
16552 \backslash
16553 arrayrulewidth 0.4pt}}
16554 \end_layout
16555
16556 \end_inset
16557
16558
16559 \begin_inset Float table
16560 wide false
16561 sideways false
16562 status open
16563
16564 \begin_layout Standard
16565 \begin_inset Caption
16566
16567 \begin_layout Standard
16568 \begin_inset LatexCommand label
16569 name "tab:Tabla-con-horizontales"
16570
16571 \end_inset
16572
16573 Tabla con líneas horizontales de 1.5\InsetSpace \thinspace{}
16574 pt
16575 \end_layout
16576
16577 \end_inset
16578
16579
16580 \end_layout
16581
16582 \begin_layout Standard
16583 \align center
16584 \begin_inset Tabular
16585 <lyxtabular version="3" rows="3" columns="3">
16586 <features>
16587 <column alignment="center" valignment="top" leftline="true" width="0">
16588 <column alignment="center" valignment="top" leftline="true" width="0">
16589 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16590 <row topline="true">
16591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16592 \begin_inset Text
16593
16594 \begin_layout Standard
16595 sd
16596 \end_layout
16597
16598 \end_inset
16599 </cell>
16600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16601 \begin_inset Text
16602
16603 \begin_layout Standard
16604
16605 \end_layout
16606
16607 \end_inset
16608 </cell>
16609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16610 \begin_inset Text
16611
16612 \begin_layout Standard
16613
16614 \end_layout
16615
16616 \end_inset
16617 </cell>
16618 </row>
16619 <row topline="true">
16620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16621 \begin_inset Text
16622
16623 \begin_layout Standard
16624
16625 \end_layout
16626
16627 \end_inset
16628 </cell>
16629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16630 \begin_inset Text
16631
16632 \begin_layout Standard
16633 sd
16634 \end_layout
16635
16636 \end_inset
16637 </cell>
16638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16639 \begin_inset Text
16640
16641 \begin_layout Standard
16642
16643 \end_layout
16644
16645 \end_inset
16646 </cell>
16647 </row>
16648 <row topline="true" bottomline="true">
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" usebox="none">
16659 \begin_inset Text
16660
16661 \begin_layout Standard
16662
16663 \end_layout
16664
16665 \end_inset
16666 </cell>
16667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16668 \begin_inset Text
16669
16670 \begin_layout Standard
16671 sd
16672 \end_layout
16673
16674 \end_inset
16675 </cell>
16676 </row>
16677 </lyxtabular>
16678
16679 \end_inset
16680
16681
16682 \end_layout
16683
16684 \end_inset
16685
16686
16687 \begin_inset ERT
16688 status collapsed
16689
16690 \begin_layout Standard
16691
16692
16693 \backslash
16694 renewcommand{
16695 \backslash
16696 hline}{
16697 \backslash
16698 myHline}
16699 \end_layout
16700
16701 \end_inset
16702
16703
16704 \end_layout
16705
16706 \begin_layout Standard
16707 \begin_inset VSpace bigskip
16708 \end_inset
16709
16710 Para establecer un grosor de 1.5 pt sólo para líneas verticales, crea el
16711  siguiente formato de columna en el preámbulo del documento, de acuerdo
16712  con lo descrito en la sección\InsetSpace ~
16713
16714 \begin_inset LatexCommand ref
16715 reference "sub:Formato-Personalizado"
16716
16717 \end_inset
16718
16719 :
16720 \end_layout
16721
16722 \begin_layout Standard
16723
16724 \series bold
16725
16726 \backslash
16727 newcolumntype{V}{!{
16728 \backslash
16729 vrule width 1.5pt}}
16730 \end_layout
16731
16732 \begin_layout Standard
16733 Para la tabla\InsetSpace ~
16734
16735 \begin_inset LatexCommand ref
16736 reference "tab:Tabla-con-verticales"
16737
16738 \end_inset
16739
16740  se usó el argumento LaTeX
16741 \end_layout
16742
16743 \begin_layout Standard
16744
16745 \series bold
16746 VcV
16747 \end_layout
16748
16749 \begin_layout Standard
16750 para la última columna y
16751 \end_layout
16752
16753 \begin_layout Standard
16754
16755 \series bold
16756 Vc
16757 \end_layout
16758
16759 \begin_layout Standard
16760 para las otras.
16761 \end_layout
16762
16763 \begin_layout Standard
16764 \begin_inset Float table
16765 wide false
16766 sideways false
16767 status open
16768
16769 \begin_layout Standard
16770 \begin_inset Caption
16771
16772 \begin_layout Standard
16773 \begin_inset LatexCommand label
16774 name "tab:Tabla-con-verticales"
16775
16776 \end_inset
16777
16778 Tabla con líneas verticales de 1.5\InsetSpace \thinspace{}
16779 pt de grosor
16780 \end_layout
16781
16782 \end_inset
16783
16784
16785 \end_layout
16786
16787 \begin_layout Standard
16788 \align center
16789 \begin_inset Tabular
16790 <lyxtabular version="3" rows="3" columns="3">
16791 <features>
16792 <column alignment="center" valignment="top" width="0" special="Vc">
16793 <column alignment="center" valignment="top" width="0" special="Vc">
16794 <column alignment="center" valignment="top" width="0" special="VcV">
16795 <row topline="true">
16796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16797 \begin_inset Text
16798
16799 \begin_layout Standard
16800 sd
16801 \end_layout
16802
16803 \end_inset
16804 </cell>
16805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16806 \begin_inset Text
16807
16808 \begin_layout Standard
16809
16810 \end_layout
16811
16812 \end_inset
16813 </cell>
16814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16815 \begin_inset Text
16816
16817 \begin_layout Standard
16818
16819 \end_layout
16820
16821 \end_inset
16822 </cell>
16823 </row>
16824 <row topline="true">
16825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16826 \begin_inset Text
16827
16828 \begin_layout Standard
16829
16830 \end_layout
16831
16832 \end_inset
16833 </cell>
16834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16835 \begin_inset Text
16836
16837 \begin_layout Standard
16838 sd
16839 \end_layout
16840
16841 \end_inset
16842 </cell>
16843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16844 \begin_inset Text
16845
16846 \begin_layout Standard
16847
16848 \end_layout
16849
16850 \end_inset
16851 </cell>
16852 </row>
16853 <row topline="true" bottomline="true">
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" usebox="none">
16864 \begin_inset Text
16865
16866 \begin_layout Standard
16867
16868 \end_layout
16869
16870 \end_inset
16871 </cell>
16872 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16873 \begin_inset Text
16874
16875 \begin_layout Standard
16876 sd
16877 \end_layout
16878
16879 \end_inset
16880 </cell>
16881 </row>
16882 </lyxtabular>
16883
16884 \end_inset
16885
16886
16887 \end_layout
16888
16889 \end_inset
16890
16891
16892 \end_layout
16893
16894 \begin_layout Subsection
16895 Líneas de Trazos
16896 \begin_inset LatexCommand index
16897 name "Personalización de Tablas ! Líneas de Trazos"
16898
16899 \end_inset
16900
16901
16902 \end_layout
16903
16904 \begin_layout Standard
16905 \begin_inset ERT
16906 status collapsed
16907
16908 \begin_layout Standard
16909
16910
16911 \backslash
16912 ifarydshln
16913 \end_layout
16914
16915 \end_inset
16916
16917
16918 \begin_inset Note Note
16919 status open
16920
16921 \begin_layout Standard
16922 La siguiente sección sólo se mostrará en pantalla si está instalado el paquete
16923  LaTeX 
16924 \series bold
16925 arydshln
16926 \series default
16927 .
16928 \end_layout
16929
16930 \end_inset
16931
16932
16933 \end_layout
16934
16935 \begin_layout Standard
16936 \begin_inset Float table
16937 placement H
16938 wide false
16939 sideways false
16940 status open
16941
16942 \begin_layout Standard
16943 \begin_inset Caption
16944
16945 \begin_layout Standard
16946 \begin_inset LatexCommand label
16947 name "tab:Tabla-con-trazos"
16948
16949 \end_inset
16950
16951 Tabla con líneas de trazos
16952 \end_layout
16953
16954 \end_inset
16955
16956
16957 \end_layout
16958
16959 \begin_layout Standard
16960 \align center
16961 \begin_inset Tabular
16962 <lyxtabular version="3" rows="5" columns="5">
16963 <features>
16964 <column alignment="center" valignment="top" leftline="true" width="0">
16965 <column alignment="center" valignment="top" leftline="true" width="0">
16966 <column alignment="center" valignment="top" width="0" special=":c">
16967 <column alignment="center" valignment="top" leftline="true" width="0">
16968 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16969 <row topline="true" bottomline="true">
16970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16971 \begin_inset Text
16972
16973 \begin_layout Standard
16974 a
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 b
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 c
16993 \end_layout
16994
16995 \end_inset
16996 </cell>
16997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16998 \begin_inset Text
16999
17000 \begin_layout Standard
17001 d
17002 \end_layout
17003
17004 \end_inset
17005 </cell>
17006 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17007 \begin_inset Text
17008
17009 \begin_layout Standard
17010 e
17011 \end_layout
17012
17013 \end_inset
17014 </cell>
17015 </row>
17016 <row topline="true">
17017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17018 \begin_inset Text
17019
17020 \begin_layout Standard
17021 f
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 g
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 h
17040 \end_layout
17041
17042 \end_inset
17043 </cell>
17044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17045 \begin_inset Text
17046
17047 \begin_layout Standard
17048 i
17049 \end_layout
17050
17051 \end_inset
17052 </cell>
17053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17054 \begin_inset Text
17055
17056 \begin_layout Standard
17057 j
17058 \end_layout
17059
17060 \end_inset
17061 </cell>
17062 </row>
17063 <row>
17064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17065 \begin_inset Text
17066
17067 \begin_layout Standard
17068 \begin_inset ERT
17069 status collapsed
17070
17071 \begin_layout Standard
17072
17073
17074 \backslash
17075 hdashline 
17076 \end_layout
17077
17078 \end_inset
17079
17080 k
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 l
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 m
17099 \end_layout
17100
17101 \end_inset
17102 </cell>
17103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17104 \begin_inset Text
17105
17106 \begin_layout Standard
17107 n
17108 \end_layout
17109
17110 \end_inset
17111 </cell>
17112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17113 \begin_inset Text
17114
17115 \begin_layout Standard
17116 o
17117 \end_layout
17118
17119 \end_inset
17120 </cell>
17121 </row>
17122 <row topline="true">
17123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17124 \begin_inset Text
17125
17126 \begin_layout Standard
17127 \begin_inset ERT
17128 status collapsed
17129
17130 \begin_layout Standard
17131
17132
17133 \backslash
17134 cdashline{4-5}
17135 \end_layout
17136
17137 \end_inset
17138
17139 p
17140 \end_layout
17141
17142 \end_inset
17143 </cell>
17144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17145 \begin_inset Text
17146
17147 \begin_layout Standard
17148 q
17149 \end_layout
17150
17151 \end_inset
17152 </cell>
17153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
17154 \begin_inset Text
17155
17156 \begin_layout Standard
17157 r
17158 \end_layout
17159
17160 \end_inset
17161 </cell>
17162 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
17163 \begin_inset Text
17164
17165 \begin_layout Standard
17166 s
17167 \end_layout
17168
17169 \end_inset
17170 </cell>
17171 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17172 \begin_inset Text
17173
17174 \begin_layout Standard
17175
17176 \end_layout
17177
17178 \end_inset
17179 </cell>
17180 </row>
17181 <row topline="true" bottomline="true">
17182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17183 \begin_inset Text
17184
17185 \begin_layout Standard
17186 t
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 u
17196 \end_layout
17197
17198 \end_inset
17199 </cell>
17200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17201 \begin_inset Text
17202
17203 \begin_layout Standard
17204 v
17205 \end_layout
17206
17207 \end_inset
17208 </cell>
17209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17210 \begin_inset Text
17211
17212 \begin_layout Standard
17213 w
17214 \end_layout
17215
17216 \end_inset
17217 </cell>
17218 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17219 \begin_inset Text
17220
17221 \begin_layout Standard
17222 x
17223 \end_layout
17224
17225 \end_inset
17226 </cell>
17227 </row>
17228 </lyxtabular>
17229
17230 \end_inset
17231
17232
17233 \end_layout
17234
17235 \end_inset
17236
17237
17238 \end_layout
17239
17240 \begin_layout Standard
17241 En principio LyX no soporta líneas de trazos, hay que usar ERT.
17242  Hay que cargar antes en el preámbulo del documento el paquete LaTeX 
17243 \series bold
17244 arydshln
17245 \series default
17246
17247 \begin_inset LatexCommand index
17248 name "LaTeX-paquetes ! arydshln"
17249
17250 \end_inset
17251
17252  
17253 \end_layout
17254
17255 \begin_layout Standard
17256
17257 \series bold
17258
17259 \backslash
17260 usepackage{arydshln}
17261 \end_layout
17262
17263 \begin_layout Standard
17264 Para hacer una línea vertical a trazos, introduce dos puntos 
17265 \begin_inset Quotes eld
17266 \end_inset
17267
17268 :
17269 \begin_inset Quotes erd
17270 \end_inset
17271
17272  junto con el carácter para alineación horizontal como argumento LaTeX en
17273  el diálogo de celda de tabla.
17274 \end_layout
17275
17276 \begin_layout Standard
17277 Para una línea de trazos horizontal añade el comando
17278 \end_layout
17279
17280 \begin_layout Standard
17281
17282 \series bold
17283
17284 \backslash
17285 hdashline
17286 \end_layout
17287
17288 \begin_layout Standard
17289 en ERT como primer elemento de la primera celda en la fila.
17290 \end_layout
17291
17292 \begin_layout Standard
17293 Para líneas de trazos en multicolumna usa el comando
17294 \end_layout
17295
17296 \begin_layout Standard
17297
17298 \series bold
17299
17300 \backslash
17301 cdashline{line number
17302 \series default
17303 }
17304 \end_layout
17305
17306 \begin_layout Standard
17307 en ERT como primer elemento de la primera celda en la fila.
17308  Si por ejemplo tienes una multicolumna extendida sobre las columnas 2 a
17309  4 y quieres una línea de trazos por encima, añade el comando
17310 \end_layout
17311
17312 \begin_layout Standard
17313
17314 \series bold
17315
17316 \backslash
17317 cdashline{2-4}
17318 \end_layout
17319
17320 \begin_layout Standard
17321 como primer elemento de la primera celda en la fila de la multicolumna.
17322 \end_layout
17323
17324 \begin_layout Standard
17325 \begin_inset VSpace bigskip
17326 \end_inset
17327
17328
17329 \end_layout
17330
17331 \begin_layout Standard
17332 La tabla\InsetSpace ~
17333
17334 \begin_inset LatexCommand ref
17335 reference "tab:Tabla-con-trazos"
17336
17337 \end_inset
17338
17339  se ha hecho usando 
17340 \begin_inset Quotes eld
17341 \end_inset
17342
17343
17344 \series bold
17345 :c
17346 \series default
17347
17348 \begin_inset Quotes erd
17349 \end_inset
17350
17351  como argumento LaTeX de la tercera columna.
17352  El comando ERT 
17353 \series bold
17354
17355 \backslash
17356 hdashline
17357 \series default
17358  se ha insertado en la primera celda de la tercera fila y el comando ERT
17359 \newline
17360
17361 \series bold
17362
17363 \backslash
17364 cdashline{4-5}
17365 \series default
17366  en la primera celda de la cuarta fila.
17367 \end_layout
17368
17369 \begin_layout Standard
17370 \begin_inset Note Greyedout
17371 status open
17372
17373 \begin_layout Standard
17374
17375 \series bold
17376 Nota:
17377 \series default
17378  Aparentemente el paquete LaTeX 
17379 \series bold
17380 arydshln
17381 \series default
17382  no es compatible con el paquete LaTeX 
17383 \series bold
17384 colortbl
17385 \series default
17386
17387 \begin_inset LatexCommand index
17388 name "LaTeX-paquetes ! colortbl"
17389
17390 \end_inset
17391
17392  que se usa para tablas coloreadas en la sección\InsetSpace ~
17393
17394 \begin_inset LatexCommand ref
17395 reference "sec:Tablas-Coloreadas"
17396
17397 \end_inset
17398
17399 .
17400  Esto implica que las tablas coloreadas no pueden tener líneas de trazos.
17401 \end_layout
17402
17403 \end_inset
17404
17405
17406 \end_layout
17407
17408 \begin_layout Standard
17409 \begin_inset ERT
17410 status collapsed
17411
17412 \begin_layout Standard
17413
17414
17415 \backslash
17416 else
17417 \end_layout
17418
17419 \end_inset
17420
17421
17422 \begin_inset Note Note
17423 status open
17424
17425 \begin_layout Standard
17426 Lo siguiente se mostrará en pantalla si no está instalado el paquete LaTeX
17427  
17428 \series bold
17429 arydshln
17430 \series default
17431 .
17432 \end_layout
17433
17434 \end_inset
17435
17436
17437 \end_layout
17438
17439 \begin_layout Standard
17440 Debes instalar el paquete LaTeX 
17441 \series bold
17442 arydshln
17443 \series default
17444  para ver la parte siguiente en la salida.
17445 \end_layout
17446
17447 \begin_layout Standard
17448 \begin_inset ERT
17449 status collapsed
17450
17451 \begin_layout Standard
17452
17453
17454 \backslash
17455 fi
17456 \end_layout
17457
17458 \end_inset
17459
17460
17461 \end_layout
17462
17463 \begin_layout Chapter
17464 Flotantes
17465 \begin_inset LatexCommand label
17466 name "cha:Flotantes"
17467
17468 \end_inset
17469
17470
17471 \begin_inset LatexCommand index
17472 name "Flotantes"
17473
17474 \end_inset
17475
17476
17477 \end_layout
17478
17479 \begin_layout Section
17480 Introducción
17481 \begin_inset LatexCommand label
17482 name "sec:IntroducciónFlotantes"
17483
17484 \end_inset
17485
17486
17487 \begin_inset LatexCommand index
17488 name "Flotantes ! Introducción"
17489
17490 \end_inset
17491
17492
17493 \end_layout
17494
17495 \begin_layout Standard
17496 Un flotante es un bloque de texto asociado con alguna especie de etiqueta
17497  que no tiene posición fija.
17498  Puede 
17499 \begin_inset Quotes eld
17500 \end_inset
17501
17502 flotar
17503 \begin_inset Quotes erd
17504 \end_inset
17505
17506  adelante o atrás una o dos páginas, donde encaje mejor.
17507  Las 
17508 \family sans
17509 Notas\InsetSpace ~
17510 al\InsetSpace ~
17511 pie
17512 \family default
17513  y 
17514 \family sans
17515 Notas\InsetSpace ~
17516 al\InsetSpace ~
17517 margen
17518 \family default
17519  también son flotantes, porque pueden flotar a la página siguiente cuando
17520  hay demasiadas notas en la página.
17521 \end_layout
17522
17523 \begin_layout Standard
17524 Los flotantes hacen posible composiciones de alta calidad.
17525  Imágenes y tablas se pueden distribuir equitativamente en las páginas para
17526  impedir espacios en blanco y páginas sin texto.
17527  Como el flotante destruye a menudo el contexto entre texto e imagen/tabla,
17528  cada flotante puede estar referido en el texto.
17529  Por lo tanto los flotantes están numerados.
17530  Las referencias se describen en la sección\InsetSpace ~
17531
17532 \begin_inset LatexCommand ref
17533 reference "sec:Referencias-a-Flotantes"
17534
17535 \end_inset
17536
17537  .
17538 \end_layout
17539
17540 \begin_layout Standard
17541 Para insertar un flotante, usa el menú 
17542 \family sans
17543 Insertar\SpecialChar \menuseparator
17544 Flotante
17545 \family default
17546 .
17547  En el documento se inserta un cuadro con etiqueta en el entorno 
17548 \family sans
17549 Encabezado
17550 \begin_inset Foot
17551 status collapsed
17552
17553 \begin_layout Standard
17554 El entorno 
17555 \family sans
17556 Encabezado
17557 \family default
17558  se describe en 
17559 \emph on
17560 Guía\InsetSpace ~
17561 del\InsetSpace ~
17562 Usuario
17563 \emph default
17564  de LyX.
17565 \end_layout
17566
17567 \end_inset
17568
17569 .
17570
17571 \family default
17572  Cada etiqueta acaba con el carácter 
17573 \begin_inset Quotes eld
17574 \end_inset
17575
17576 #
17577 \begin_inset Quotes erd
17578 \end_inset
17579
17580  como receptáculo para el número de flotante en la salida.
17581  La etiqueta será traducida automáticamente al lenguaje del documento.
17582  Tras la etiqueta se puede insertar el texto de encabezado.
17583  La imagen o tabla se inserta encima o debajo del encabezado en un párrafo
17584  separado dentro del flotante.
17585  Más sobre colocación de encabezados se describe en la sección\InsetSpace ~
17586
17587 \begin_inset LatexCommand ref
17588 reference "sec:Colocación-de-Encabezados"
17589
17590 \end_inset
17591
17592 .
17593  Para mantener legible el documento LyX, puedes abrir y cerrar el cuadro
17594  del flotante haciendo cilc-izquierda sobre él.
17595  Un cuadro cerrado se muestra así: 
17596 \begin_inset Graphics
17597         filename clipart/flotanteQt4.png
17598         scale 70
17599
17600 \end_inset
17601
17602  -- un cuadro gris con etiqueta en rojo.
17603 \end_layout
17604
17605 \begin_layout Standard
17606 Se recomienda insertar flotantes como párrafos separados para evitar posibles
17607  errores de LaTeX si el texto circundante se formatea de modo especial.
17608 \end_layout
17609
17610 \begin_layout Standard
17611 Figuras o tablas ya existentes pueden ponerse en un flotante marcándolas
17612  y pinchando el botón correspondiente de la barra de herramientas para un
17613  flotante nuevo.
17614 \end_layout
17615
17616 \begin_layout Section
17617 Tipos de Flotantes
17618 \end_layout
17619
17620 \begin_layout Standard
17621 Además de los flotantes de imagen y de tabla que se describen en la sección\InsetSpace ~
17622
17623 \begin_inset LatexCommand ref
17624 reference "sec:Figuras-Flotantes"
17625
17626 \end_inset
17627
17628  y 
17629 \begin_inset LatexCommand ref
17630 reference "sec:Tablas-Flotantes"
17631
17632 \end_inset
17633
17634 , respectivamente, LyX ofrece los tipos 
17635 \series bold
17636 Algoritmo
17637 \series default
17638  y 
17639 \series bold
17640 Ajustado\InsetSpace ~
17641 al\InsetSpace ~
17642 Texto
17643 \series default
17644 .
17645 \end_layout
17646
17647 \begin_layout Subsection
17648 Algoritmos Flotantes
17649 \begin_inset LatexCommand index
17650 name "Flotantes ! Algoritmos Flotantes"
17651
17652 \end_inset
17653
17654
17655 \end_layout
17656
17657 \begin_layout Standard
17658 \begin_inset Float algorithm
17659 placement h
17660 wide false
17661 sideways false
17662 status open
17663
17664 \begin_layout Standard
17665 \begin_inset Caption
17666
17667 \begin_layout Standard
17668 \begin_inset LatexCommand label
17669 name "alg:Ejemplo-de-Algoritmo-flotante"
17670
17671 \end_inset
17672
17673 Ejemplo de Algoritmo flotante
17674 \end_layout
17675
17676 \end_inset
17677
17678
17679 \end_layout
17680
17681 \begin_layout LyX-Code
17682 for I in 1..N loop
17683 \newline
17684  Sum:= Sum + A(I); /*senseless comment*/
17685 \newline
17686 end loop
17687 \begin_inset VSpace -4mm
17688 \end_inset
17689
17690
17691 \end_layout
17692
17693 \end_inset
17694
17695
17696 \end_layout
17697
17698 \begin_layout Standard
17699 Este tipo de flotante se inserta con el menú 
17700 \family sans
17701 Insertar\SpecialChar \menuseparator
17702 Flotante\SpecialChar \menuseparator
17703 Algoritmo
17704 \family default
17705 .
17706  Se usa para códigos y descripciones de algoritmos.
17707  Un posible entorno para algoritmos es 
17708 \family sans
17709 Código-LyX
17710 \family default
17711 , descrito en 
17712 \emph on
17713 Guía del Usuario
17714 \emph default
17715  de LyX.
17716  El algoritmo\InsetSpace ~
17717
17718 \begin_inset LatexCommand ref
17719 reference "alg:Ejemplo-de-Algoritmo-flotante"
17720
17721 \end_inset
17722
17723  es un ejemplo de algoritmo flotante en el que se ha añadido un espacio
17724  vertical de -4\InsetSpace \thinspace{}
17725 mm al final para tener la línea inferior exactamente bajo
17726  la última línea de texto.
17727 \end_layout
17728
17729 \begin_layout Standard
17730 La etiqueta de flotante no se traduce automáticamente al lenguaje del documento.
17731  Si tu documento no es en Inglés, tienes que hacerlo manualmente añadiendo
17732  la siguiente línea al preámbulo del documento
17733 \series bold
17734 :
17735 \end_layout
17736
17737 \begin_layout Standard
17738
17739 \series bold
17740
17741 \backslash
17742 floatname{algorithm}{nombre}
17743 \end_layout
17744
17745 \begin_layout Standard
17746
17747 \family sans
17748 nombre
17749 \family default
17750  es la palabra 
17751 \begin_inset Quotes eld
17752 \end_inset
17753
17754
17755 \emph on
17756 algorithm
17757 \emph default
17758
17759 \begin_inset Quotes erd
17760 \end_inset
17761
17762  en el lenguaje deseado.
17763 \end_layout
17764
17765 \begin_layout Description
17766
17767 \series bold
17768 Nota:
17769 \series default
17770  Si se emplea el paquete LaTeX 
17771 \series bold
17772 hyperref
17773 \series default
17774
17775 \begin_inset LatexCommand index
17776 name "LaTeX-paquetes ! hyperref"
17777
17778 \end_inset
17779
17780  para enlazar referencias cruzadas a flotantes en la salida PDF, debe cargarse
17781  en el preámbulo LaTeX antes de la definición de flotantes para poder referirse
17782  a ellos.
17783  LyX establece la definición de algoritmos flotantes automáticamente antes
17784  de la parte del preámbulo editable por el usuario, así que hay que insertar
17785  las siguientes líneas 
17786 \emph on
17787 después
17788 \emph default
17789  de cargar el comando 
17790 \series bold
17791 hyperref:
17792 \begin_inset VSpace defskip
17793 \end_inset
17794
17795
17796 \newline
17797
17798 \backslash
17799 newfloat{Xalgorithm}{tbp}{loa}
17800 \newline
17801
17802 \backslash
17803 floatname{Xalgorithm}{nombre}
17804 \newline
17805
17806 \backslash
17807 newcommand{
17808 \backslash
17809 theHalgorithm}{
17810 \backslash
17811 theHXalgorithm}
17812 \newline
17813
17814 \backslash
17815 renewenvironment{algorithm}[1][tbp]
17816 \newline
17817
17818 \begin_inset ERT
17819 status collapsed
17820
17821 \begin_layout Standard
17822
17823
17824 \backslash
17825 hphantom{ }
17826 \end_layout
17827
17828 \end_inset
17829
17830 {
17831 \backslash
17832 begin{Xalgorithm}[#1]}{
17833 \backslash
17834 end{Xalgorithm}}
17835 \begin_inset VSpace defskip
17836 \end_inset
17837
17838
17839 \series default
17840
17841 \newline
17842 Donde 
17843 \family sans
17844 nombre
17845 \family default
17846  es la palabra 
17847 \begin_inset Quotes eld
17848 \end_inset
17849
17850
17851 \emph on
17852 algorithm
17853 \emph default
17854
17855 \begin_inset Quotes erd
17856 \end_inset
17857
17858  en el lenguaje deseado.
17859 \end_layout
17860
17861 \begin_layout Standard
17862 Los algoritmos flotantes no se numeran por defecto según el esquema 
17863 \begin_inset Quotes eld
17864 \end_inset
17865
17866 capítulo.algoritmo
17867 \begin_inset Quotes erd
17868 \end_inset
17869
17870  como es el caso para tablas e imágenes flotantes en muchas clases de documento.
17871  Para numerar algoritmos flotantes según ese mismo esquema, añade este comando
17872  en el preámbulo del documento:
17873 \end_layout
17874
17875 \begin_layout Standard
17876
17877 \series bold
17878
17879 \backslash
17880 numberwithin{algorithm}{chapter}
17881 \end_layout
17882
17883 \begin_layout Standard
17884 Si usas el paquete LaTeX 
17885 \series bold
17886 hyperref
17887 \series default
17888 , añade en su lugar esta línea 
17889 \emph on
17890 después
17891 \emph default
17892  de la definición de 
17893 \family sans
17894 Xalgorithm
17895 \family default
17896  (los comandos anteriores) en el preámbulo:
17897 \end_layout
17898
17899 \begin_layout Standard
17900
17901 \series bold
17902
17903 \backslash
17904 numberwithin{Xalgorithm}{chapter}
17905 \end_layout
17906
17907 \begin_layout Standard
17908 Para poder usar el comando 
17909 \series bold
17910
17911 \backslash
17912 numberwithin
17913 \series default
17914 , marca la opción 
17915 \family sans
17916 Usar\InsetSpace ~
17917 el\InsetSpace ~
17918 paquete\InsetSpace ~
17919 AMS
17920 \family default
17921  en el menú 
17922 \family sans
17923 Documento\SpecialChar \menuseparator
17924 Configuración\SpecialChar \menuseparator
17925 Ecuaciones
17926 \family default
17927 .
17928 \end_layout
17929
17930 \begin_layout Subsection
17931 Flotantes Ajustados a Texto
17932 \begin_inset LatexCommand index
17933 name "Flotantes ! Ajustados a Texto"
17934
17935 \end_inset
17936
17937
17938 \begin_inset LatexCommand label
17939 name "sub:floatflt-flotante-ajustado"
17940
17941 \end_inset
17942
17943
17944 \end_layout
17945
17946 \begin_layout Standard
17947 Este tipo de flotante se usa cuando quieres adosar una figura al texto,
17948  de manera que ocupe solo una parte del ancho de columna.
17949  Puede insertarse usando el menú 
17950 \begin_inset Wrap figure
17951 placement l
17952 width "40col%"
17953 status open
17954
17955 \begin_layout Standard
17956 \begin_inset Graphics
17957         filename ../clipart/mobius.eps
17958         display color
17959         width 40col%
17960         rotateOrigin center
17961
17962 \end_inset
17963
17964
17965 \end_layout
17966
17967 \begin_layout Standard
17968 \begin_inset Caption
17969
17970 \begin_layout Standard
17971 \begin_inset LatexCommand label
17972 name "fig:Esto-es-una"
17973
17974 \end_inset
17975
17976 Esto es una figura adosada, y esto la genial cabecera que la describe.
17977 \begin_inset VSpace medskip
17978 \end_inset
17979
17980
17981 \end_layout
17982
17983 \end_inset
17984
17985
17986 \end_layout
17987
17988 \end_inset
17989
17990  
17991 \family sans
17992 Insertar\SpecialChar \menuseparator
17993 Flotante\SpecialChar \menuseparator
17994 Flotante\InsetSpace ~
17995 de\InsetSpace ~
17996 ajuste\InsetSpace ~
17997 de\InsetSpace ~
17998 texto
17999 \family default
18000  si está instalado el paquete LaTeX 
18001 \series bold
18002 floatflt
18003 \series default
18004
18005 \begin_inset LatexCommand index
18006 name "LaTeX-paquetes ! floatflt"
18007
18008 \end_inset
18009
18010 .
18011 \begin_inset Foot
18012 status collapsed
18013
18014 \begin_layout Standard
18015 La instalación de paquetes LaTeX se explica en el manual 
18016 \emph on
18017 Configuración de LaTeX
18018 \emph default
18019 .
18020 \end_layout
18021
18022 \end_inset
18023
18024  La anchura y posición del flotante se ajusta con cilc-derecha sobre el
18025  cuadro del flotante.
18026  La figura\InsetSpace ~
18027
18028 \begin_inset LatexCommand ref
18029 reference "fig:Esto-es-una"
18030
18031 \end_inset
18032
18033  es un ejemplo de flotante ajustado al texto con una anchura del 40\InsetSpace \thinspace{}
18034 col%.
18035 \begin_inset Foot
18036 status collapsed
18037
18038 \begin_layout Standard
18039 Ver unidades disponibles en\InsetSpace ~
18040
18041 \begin_inset LatexCommand ref
18042 reference "cha:Unidades-disponibles-en"
18043
18044 \end_inset
18045
18046 .
18047 \end_layout
18048
18049 \end_inset
18050
18051  Se ha añadido un espacio vertical bajo el encabezado para separarlo mejor
18052  del texto envolvente.
18053 \end_layout
18054
18055 \begin_layout Standard
18056 El paquete LaTeX 
18057 \series bold
18058 floatflt
18059 \series default
18060  también soporta tablas adosadas a texto pero aún no es soportado por LyX.
18061  Si lo necesitas, consulta la documentación de 
18062 \series bold
18063 floatflt
18064 \series default
18065  
18066 \begin_inset LatexCommand cite
18067 key "floatflt"
18068
18069 \end_inset
18070
18071 .
18072 \end_layout
18073
18074 \begin_layout Standard
18075 \begin_inset Note Greyedout
18076 status open
18077
18078 \begin_layout Standard
18079
18080 \series bold
18081 Nota:
18082 \series default
18083  ¡Los flotantes adosados a texto son frágiles! P.\InsetSpace \thinspace{}
18084 e.\InsetSpace ~
18085 si una figura está demasiado
18086  cerca de la parte inferior de la página se pueden perder cosas en el proceso
18087  de salida, el flotante puede no aparecer o situarse junto a otro texto.
18088 \begin_inset Foot
18089 status open
18090
18091 \begin_layout Standard
18092 La mejor solución es usar el paquete LaTeX 
18093 \series bold
18094 wrapf\SpecialChar \textcompwordmark{}
18095 ig
18096 \series default
18097
18098 \begin_inset LatexCommand index
18099 name "LaTeX-paquetes ! wrapfig\\vspace{4mm}"
18100
18101 \end_inset
18102
18103  en vez de 
18104 \series bold
18105 floatf\SpecialChar \textcompwordmark{}
18106 lt
18107 \series default
18108  pero actualmente no es soportado por LyX.
18109 \end_layout
18110
18111 \end_inset
18112
18113
18114 \end_layout
18115
18116 \end_inset
18117
18118
18119 \end_layout
18120
18121 \begin_layout Standard
18122 En general:
18123 \end_layout
18124
18125 \begin_layout Itemize
18126 Los flotantes adosados no deberían situarse en párrafos que van sobre un
18127  salto de página.
18128  Esto implica que lo mejor es insertarlos en el sitio exacto cuando el documento
18129  esté casi listo y puedas prever los saltos de página.
18130 \end_layout
18131
18132 \begin_layout Itemize
18133 Los flotantes adosados deberían situarse, bien en un párrafo propio antes
18134  del párrafo al que deben ajustarse, o bien dentro de un párrafo.
18135 \end_layout
18136
18137 \begin_layout Itemize
18138 Los flotantes adosados a párrafos consecutivos pueden dar problemas, así
18139  que asegura que hay un párrafo de texto entre ellos.
18140 \end_layout
18141
18142 \begin_layout Itemize
18143 Los flotantes adosados no están permitidos en cabeceras de sección o tablas.
18144 \end_layout
18145
18146 \begin_layout Section
18147
18148 \lang english
18149 Float Numbering
18150 \begin_inset LatexCommand label
18151 name "sec:Float-Numbering"
18152
18153 \end_inset
18154
18155
18156 \begin_inset LatexCommand index
18157 name "Flotantes ! Numeración"
18158
18159 \end_inset
18160
18161
18162 \end_layout
18163
18164 \begin_layout Standard
18165
18166 \lang english
18167 Floats are usually numbered either independent from the sections the floats
18168  are in, or in the scheme 
18169 \begin_inset Quotes eld
18170 \end_inset
18171
18172 chapter.number
18173 \begin_inset Quotes erd
18174 \end_inset
18175
18176  or 
18177 \begin_inset Quotes eld
18178 \end_inset
18179
18180 section.number
18181 \begin_inset Quotes erd
18182 \end_inset
18183
18184 .
18185  This depends on the used document class.
18186 \end_layout
18187
18188 \begin_layout Standard
18189
18190 \lang english
18191 To change the section independent numbering, you can use this command in
18192  the document preamble:
18193 \end_layout
18194
18195 \begin_layout Standard
18196
18197 \series bold
18198 \lang english
18199
18200 \backslash
18201 renewcommand{
18202 \backslash
18203 thetable}{
18204 \backslash
18205 roman{table}}
18206 \end_layout
18207
18208 \begin_layout Standard
18209
18210 \series bold
18211 \lang english
18212
18213 \backslash
18214 thetable
18215 \series default
18216  is the command that prints the table number, for figure floats, the command
18217  would be 
18218 \series bold
18219
18220 \backslash
18221 thefigure
18222 \series default
18223 .
18224  The command 
18225 \series bold
18226
18227 \backslash
18228 roman
18229 \series default
18230  prints in the command above the table number as small roman number.
18231 \end_layout
18232
18233 \begin_layout Standard
18234
18235 \lang english
18236 To change the numbering scheme for example to 
18237 \begin_inset Quotes eld
18238 \end_inset
18239
18240 subsection.number
18241 \begin_inset Quotes erd
18242 \end_inset
18243
18244 , use this command in the preamble:
18245 \end_layout
18246
18247 \begin_layout Standard
18248
18249 \series bold
18250 \lang english
18251
18252 \backslash
18253 numberwithin{table}{subsection}
18254 \end_layout
18255
18256 \begin_layout Standard
18257
18258 \lang english
18259 To be able to use the command 
18260 \series bold
18261
18262 \backslash
18263 numberwithin
18264 \series default
18265 , set in the tab 
18266 \family sans
18267 Math\InsetSpace ~
18268 Options
18269 \family default
18270  in the document settings the option 
18271 \family sans
18272 Use\InsetSpace ~
18273 AMS\InsetSpace ~
18274 math\InsetSpace ~
18275 package
18276 \family default
18277 .
18278 \end_layout
18279
18280 \begin_layout Standard
18281
18282 \lang english
18283 Please also have a look at section\InsetSpace ~
18284
18285 \lang spanish
18286
18287 \begin_inset LatexCommand ref
18288 reference "sub:Numeración-de-Notas-al-Pie"
18289
18290 \end_inset
18291
18292
18293 \lang english
18294  for the details and important notes about the numbering commands.
18295 \end_layout
18296
18297 \begin_layout Section
18298 Referencias a Flotantes
18299 \begin_inset LatexCommand label
18300 name "sec:Referencias-a-Flotantes"
18301
18302 \end_inset
18303
18304
18305 \begin_inset LatexCommand index
18306 name "Flotantes ! Referencias"
18307
18308 \end_inset
18309
18310
18311 \begin_inset LatexCommand index
18312 name "Referencias"
18313
18314 \end_inset
18315
18316
18317 \end_layout
18318
18319 \begin_layout Standard
18320 Para referirse a un flotante, inserta una etiqueta en su encabezado con
18321  el menú 
18322 \family sans
18323 Insertar\SpecialChar \menuseparator
18324 Etiqueta
18325 \family default
18326  o el botón 
18327 \begin_inset Graphics
18328         filename ../../images/label-insert.xpm
18329         scale 85
18330
18331 \end_inset
18332
18333 .
18334  Aparece una ventana esperando la introducción del texto de la etiqueta
18335  y se inserta un cuadro gris como este: 
18336 \begin_inset Graphics
18337         filename clipart/etiquetaQt4.png
18338         scale 85
18339
18340 \end_inset
18341
18342 .
18343  LyX ofrece como texto las primeras palabras del encabezado con un prefijo.
18344  El prefijo depende del tipo de flotante, p.\InsetSpace \thinspace{}
18345 e.\InsetSpace ~
18346 para figuras el prefijo será
18347  
18348 \begin_inset Quotes eld
18349 \end_inset
18350
18351
18352 \family sans
18353 fig:
18354 \family default
18355
18356 \begin_inset Quotes erd
18357 \end_inset
18358
18359 .
18360 \end_layout
18361
18362 \begin_layout Standard
18363 La etiqueta se usa como ancla y el nombre para la referencia.
18364  Puedes referenciar la etiqueta usando el menú 
18365 \family sans
18366 Insertar\SpecialChar \menuseparator
18367 Referencia
18368 \family default
18369 \InsetSpace ~
18370
18371 \family sans
18372 cruzada
18373 \family default
18374  o el botón 
18375 \begin_inset Graphics
18376         filename ../../images/dialog-show-new-inset_ref.xpm
18377         scale 85
18378
18379 \end_inset
18380
18381 .
18382  Aparece una ventana de referencia cruzada con todas las etiquetas del documento.
18383  Si tienes abiertos varios documentos LyX, escoge aquel con el  que estás
18384  trabajando de la lista desplegable de la parte superior del diálogo.
18385  Puedes ordenar las etiquetas alfabéticamente y elegir una.
18386  Se inserta un cuadro gris como este: 
18387 \begin_inset Graphics
18388         filename clipart/referenciaQt4.png
18389         scale 85
18390
18391 \end_inset
18392
18393 .
18394  En la salida, en lugar de este cuadro aparecerá el número de la referencia.
18395 \end_layout
18396
18397 \begin_layout Standard
18398 Se recomienda poner un espacio protegido entre el nombre de la referencia
18399  cruzada y su número para evitar saltos de línea entre ellos.
18400  Si una referencia cruzada corresponde a una etiqueta inexistente verás
18401  dos interrogaciones en la salida.
18402 \end_layout
18403
18404 \begin_layout Standard
18405 En cualquier momento puedes cambiar etiquetas haciendo cilc sobre el cuadro.
18406  Las referencias a las etiquetas cambiadas cambian automáticamente su enlace
18407  al texto de la etiqueta nueva, no te ocupes por eso.
18408 \end_layout
18409
18410 \begin_layout Standard
18411 El botón 
18412 \family sans
18413 Ir\InsetSpace ~
18414 a\InsetSpace ~
18415 la\InsetSpace ~
18416 etiqueta
18417 \family default
18418  en la ventana de referencia cruzada lleva el cursor hasta dicha etiqueta,
18419  y el texto del botón cambia a 
18420 \family sans
18421 Volver
18422 \family default
18423 , con el que se puede retornar a la referencia.
18424  cilc-derecha sobre el cuadro de la referencia también lleva el cursor hasta
18425  la etiqueta pero sin opción de volver.
18426 \end_layout
18427
18428 \begin_layout Subsection
18429 Formatos de Referencia Cruzada
18430 \begin_inset LatexCommand label
18431 name "sub:Formatos-referencia-cruzada"
18432
18433 \end_inset
18434
18435
18436 \begin_inset LatexCommand index
18437 name "Referencias ! Formatos"
18438
18439 \end_inset
18440
18441
18442 \end_layout
18443
18444 \begin_layout Standard
18445 Hay seis variedades de referencias cruzadas:
18446 \end_layout
18447
18448 \begin_layout Description
18449 <referencia>: imprime el número flotante, esta es la opción predeterminada:
18450  
18451 \begin_inset LatexCommand ref
18452 reference "fig:Dos-imágenes-distorsionadas"
18453
18454 \end_inset
18455
18456
18457 \end_layout
18458
18459 \begin_layout Description
18460 (<referencia>): imprime el número flotante entre paréntesis, es el estilo
18461  habitual para referirse a fórmulas, especialmente si se omite el nombre
18462  
18463 \begin_inset Quotes eld
18464 \end_inset
18465
18466 Ecuación
18467 \begin_inset Quotes erd
18468 \end_inset
18469
18470
18471 \begin_inset LatexCommand eqref
18472 reference "eq:Wgn"
18473
18474 \end_inset
18475
18476
18477 \end_layout
18478
18479 \begin_layout Description
18480 <página>: imprime el número de página: Página\InsetSpace ~
18481
18482 \begin_inset LatexCommand pageref
18483 reference "fig:Dos-imágenes-distorsionadas"
18484
18485 \end_inset
18486
18487
18488 \end_layout
18489
18490 \begin_layout Description
18491 en\InsetSpace ~
18492 página\InsetSpace ~
18493 <página>: imprime el texto 
18494 \begin_inset Quotes eld
18495 \end_inset
18496
18497 en la página
18498 \begin_inset Quotes erd
18499 \end_inset
18500
18501  y el número de página: 
18502 \begin_inset LatexCommand vpageref
18503 reference "fig:Dos-imágenes-distorsionadas"
18504
18505 \end_inset
18506
18507
18508 \end_layout
18509
18510 \begin_layout Description
18511 <referencia>\InsetSpace ~
18512 en\InsetSpace ~
18513 página\InsetSpace ~
18514 <página>: imprime el número flotante, el texto 
18515 \begin_inset Quotes eld
18516 \end_inset
18517
18518 en la página
18519 \begin_inset Quotes erd
18520 \end_inset
18521
18522  y el número de página: 
18523 \begin_inset LatexCommand vref
18524 reference "fig:Dos-imágenes-distorsionadas"
18525
18526 \end_inset
18527
18528
18529 \end_layout
18530
18531 \begin_layout Description
18532 Referencia\InsetSpace ~
18533 con\InsetSpace ~
18534 formato: imprime un formato personalizado.
18535  
18536 \begin_inset Note Greyedout
18537 status open
18538
18539 \begin_layout Standard
18540
18541 \series bold
18542 Nota:
18543 \series default
18544  Esta característica sólo está disponible si está instalado el paquete LaTeX
18545  
18546 \series bold
18547 prettyref
18548 \series default
18549 .
18550 \end_layout
18551
18552 \end_inset
18553
18554
18555 \end_layout
18556
18557 \begin_layout Standard
18558 Ten en cuenta que el estilo <página> no imprime el número si la etiqueta
18559  está en la misma página, en la anterior o en la siguiente.
18560  En su lugar verás p.\InsetSpace \thinspace{}
18561 e.\InsetSpace ~
18562 el texto 
18563 \begin_inset Quotes eld
18564 \end_inset
18565
18566
18567 \family sans
18568 en esta página
18569 \family default
18570
18571 \begin_inset Quotes erd
18572 \end_inset
18573
18574 .
18575 \end_layout
18576
18577 \begin_layout Standard
18578 El número y página actual de la parte del documento referida es automáticamente
18579  calculado por LaTeX en la salida.
18580  Las variedades se ajustan en el campo 
18581 \family sans
18582 Formato
18583 \family default
18584  de la ventana de referencia cruzada, que aparece al pinchar sobre el cuadro.
18585 \end_layout
18586
18587 \begin_layout Subsection
18588 Referencias a Subfiguras 
18589 \begin_inset LatexCommand label
18590 name "sub:Referencias-a-Subfiguras"
18591
18592 \end_inset
18593
18594
18595 \begin_inset LatexCommand index
18596 name "Referencias ! a Subfiguras"
18597
18598 \end_inset
18599
18600
18601 \end_layout
18602
18603 \begin_layout Standard
18604 Por el momento LyX no soporta las referencias a subfiguras, de modo que
18605  hay que emplear comandos LaTeX.
18606  La etiqueta se crea con el comando
18607 \end_layout
18608
18609 \begin_layout Standard
18610
18611 \series bold
18612
18613 \backslash
18614 label{fig:NombreEtiqueta}
18615 \end_layout
18616
18617 \begin_layout Standard
18618 que se inserta directamente en el campo de encabezado de la subfigura.
18619  Para referenciar la etiqueta añade el siguiente comando en ERT
18620 \end_layout
18621
18622 \begin_layout Standard
18623
18624 \series bold
18625
18626 \backslash
18627 ref{fig:NombreEtiqueta}
18628 \end_layout
18629
18630 \begin_layout Standard
18631 en la posición del documento en la que quieras que aparezca la referencia.
18632  Aquí hay una referencia a una subfigura: Subfigura\InsetSpace ~
18633
18634 \begin_inset ERT
18635 status collapsed
18636
18637 \begin_layout Standard
18638
18639
18640 \backslash
18641 ref{fig:Platypus}
18642 \end_layout
18643
18644 \end_inset
18645
18646
18647 \end_layout
18648
18649 \begin_layout Standard
18650
18651 \end_layout
18652
18653 \begin_layout Subsection
18654 Designación Automática de Referencias
18655 \begin_inset LatexCommand index
18656 name "Referencias ! Designación Automática"
18657
18658 \end_inset
18659
18660
18661 \end_layout
18662
18663 \begin_layout Standard
18664 El paquete LaTeX 
18665 \series bold
18666 hyperref
18667 \series default
18668  dispone de una característica muy útil que permite incluir automáticamente
18669  en las referencias cruzadas el nombre de los flotantes referidos (o partes
18670  de texto como secciones).
18671  Quieres p.\InsetSpace \thinspace{}
18672 e.\InsetSpace ~
18673 escribir la palabra 
18674 \begin_inset Quotes eld
18675 \end_inset
18676
18677 Figura
18678 \begin_inset Quotes erd
18679 \end_inset
18680
18681  antes de cada cuadro de referencia.
18682  Para conseguirlo debes cargar el paquete LaTeX 
18683 \series bold
18684 hyperref
18685 \series default
18686
18687 \begin_inset LatexCommand index
18688 name "LaTeX-paquetes ! hyperref"
18689
18690 \end_inset
18691
18692  en el preámbulo del documento con
18693 \end_layout
18694
18695 \begin_layout Standard
18696
18697 \series bold
18698
18699 \backslash
18700 usepackage[pdfborder={0 0 0}]{hyperref}
18701 \newline
18702
18703 \backslash
18704 AtBeginDocument{
18705 \backslash
18706 renewcommand{
18707 \backslash
18708 ref}[1]{
18709 \backslash
18710 mbox{
18711 \backslash
18712 autoref{#1}}}}
18713 \end_layout
18714
18715 \begin_layout Standard
18716
18717 \series bold
18718 hyperref
18719 \series default
18720  se utiliza para enlazar referencias cruzadas en las salidas DVI y PDF,
18721  esto significa que el lector del documento podrá pinchar sobre una entrada
18722  de Índice o una referencia y será inmediatamente dirigido a esa parte del
18723  documento.
18724  
18725 \series bold
18726 hyperref
18727 \series default
18728  también crea marcadores PDF para cada sección para facilitar al lector
18729  la navegación por el documento.
18730  Esto también se ha usado en este documento pero si echas una ojeada al
18731  preámbulo encontrarás varias opciones en la carga de 
18732 \series bold
18733 hyperref
18734 \series default
18735 .
18736  Para aprender más sobre ello acude a la documentación del paquete 
18737 \begin_inset LatexCommand cite
18738 key "hyperref"
18739
18740 \end_inset
18741
18742 .
18743 \end_layout
18744
18745 \begin_layout Standard
18746 \begin_inset Note Greyedout
18747 status open
18748
18749 \begin_layout Standard
18750
18751 \series bold
18752 Nota:
18753 \series default
18754  La designación automática de referencias no puede usarse en el estilo 
18755 \family sans
18756 Referencia\InsetSpace ~
18757 con\InsetSpace ~
18758 formato
18759 \family default
18760 , descrita en la sección\InsetSpace ~
18761
18762 \begin_inset LatexCommand ref
18763 reference "sub:Formatos-referencia-cruzada"
18764
18765 \end_inset
18766
18767 .
18768 \end_layout
18769
18770 \end_inset
18771
18772
18773 \end_layout
18774
18775 \begin_layout Subsection
18776 Colocación de Referencias
18777 \begin_inset LatexCommand label
18778 name "sub:Colocación-de-Referencias"
18779
18780 \end_inset
18781
18782
18783 \begin_inset LatexCommand index
18784 name "Referencias ! Colocación"
18785
18786 \end_inset
18787
18788
18789 \end_layout
18790
18791 \begin_layout Standard
18792 Si usas 
18793 \series bold
18794 hyperref
18795 \series default
18796
18797 \begin_inset LatexCommand index
18798 name "LaTeX-paquetes ! hyperref"
18799
18800 \end_inset
18801
18802  para enlazar referencias cruzadas en la salida, verás que al pinchar sobre
18803  la referencia de una imagen flotante te lleva hasta la etiqueta de la imagen.
18804  El encabezado será la primera parte de texto en pantalla, de forma que
18805  para ver la imagen debes deslizar.
18806  Se debe a que el ancla de enlace de la referencia se sitúa en la etiqueta.
18807  Usando el paquete 
18808 \series bold
18809 hypcap
18810 \series default
18811
18812 \begin_inset LatexCommand index
18813 name "LaTeX-paquetes ! hypcap"
18814
18815 \end_inset
18816
18817 , que forma parte del paquete LaTeX 
18818 \series bold
18819 oberdiek
18820 \series default
18821
18822 \begin_inset LatexCommand index
18823 name "LaTeX-paquetes ! oberdiek"
18824
18825 \end_inset
18826
18827 , el ancla de enlace se sitúa al comienzo de un flotante.
18828  Para usar esta característica para figuras flotantes carga 
18829 \series bold
18830 hypcap
18831 \series default
18832  en el preámbulo con
18833 \end_layout
18834
18835 \begin_layout Standard
18836
18837 \series bold
18838
18839 \backslash
18840 usepackage[f\SpecialChar \textcompwordmark{}
18841 igure]{hypcap}
18842 \end_layout
18843
18844 \begin_layout Standard
18845 Puedes usar 
18846 \series bold
18847 hypcap
18848 \series default
18849  para todos los flotantes aunque no se recomienda por razones de estabilidad.
18850  Más información en el manual de 
18851 \series bold
18852 hypcap
18853 \series default
18854  
18855 \begin_inset LatexCommand cite
18856 key "hypcap"
18857
18858 \end_inset
18859
18860 .
18861 \end_layout
18862
18863 \begin_layout Standard
18864 \begin_inset Note Greyedout
18865 status open
18866
18867 \begin_layout Standard
18868
18869 \series bold
18870 Nota: hypcap
18871 \series default
18872  debe cargarse después de 
18873 \series bold
18874 hyperref
18875 \series default
18876  en el preámbulo
18877 \series bold
18878 .
18879 \end_layout
18880
18881 \end_inset
18882
18883
18884 \end_layout
18885
18886 \begin_layout Standard
18887 \begin_inset Note Greyedout
18888 status open
18889
18890 \begin_layout Standard
18891
18892 \series bold
18893 Nota:
18894 \series default
18895  La colocación de referencias no afecta a las referencias a subfiguras.
18896 \end_layout
18897
18898 \end_inset
18899
18900
18901 \end_layout
18902
18903 \begin_layout Section
18904 Colocación de Flotantes
18905 \begin_inset LatexCommand label
18906 name "sec:Colocación-de-Flotantes"
18907
18908 \end_inset
18909
18910
18911 \begin_inset LatexCommand index
18912 name "Flotantes ! Colocación"
18913
18914 \end_inset
18915
18916
18917 \end_layout
18918
18919 \begin_layout Standard
18920 cilc-derecha sobre un cuadro de flotante abre un diálogo en el que pueden
18921  cambiarse las opciones de LaTeX para situar los flotantes.
18922 \newline
18923 La opción 
18924 \family sans
18925 Extender\InsetSpace ~
18926 columnas
18927 \family default
18928  solo es aplicable a documentos de dos columnas: Si lo seleccionas, el flotante
18929  abarcará ambas columnas en lugar de una sola.
18930 \newline
18931 La opción 
18932 \family sans
18933 Girar\InsetSpace ~
18934 a\InsetSpace ~
18935 un\InsetSpace ~
18936 lado
18937 \family default
18938  sirve para girar flotantes, ver sección\InsetSpace ~
18939
18940 \begin_inset LatexCommand ref
18941 reference "sec:Rotación-de-Flotantes"
18942
18943 \end_inset
18944
18945 .
18946  
18947 \end_layout
18948
18949 \begin_layout Standard
18950 Puedes usar una o más de las siguientes opciones en el diálogo para establecer
18951  la posición de un flotante si desmarcas la opción 
18952 \family sans
18953 Usar\InsetSpace ~
18954 ubicación\InsetSpace ~
18955 predeterminada
18956 \family default
18957 :
18958 \end_layout
18959
18960 \begin_layout Description
18961
18962 \family sans
18963 \series bold
18964 Aquí\InsetSpace ~
18965 si\InsetSpace ~
18966 es\InsetSpace ~
18967 posible:
18968 \family default
18969 \series default
18970  intenta situar el flotante en la posición en la que se inserta
18971 \end_layout
18972
18973 \begin_layout Description
18974
18975 \family sans
18976 \series bold
18977 Principio\InsetSpace ~
18978 de\InsetSpace ~
18979 página:
18980 \family default
18981 \series default
18982  intenta situar el flotante al principio de la página actual
18983 \end_layout
18984
18985 \begin_layout Description
18986
18987 \family sans
18988 \series bold
18989 Fin\InsetSpace ~
18990 de\InsetSpace ~
18991 página:
18992 \family default
18993 \series default
18994  intenta situar el flotante al final de la página actual
18995 \end_layout
18996
18997 \begin_layout Description
18998
18999 \family sans
19000 \series bold
19001 Página\InsetSpace ~
19002 de\InsetSpace ~
19003 flotantes:
19004 \family default
19005 \series default
19006  intenta situar el flotante en una página propia 
19007 \end_layout
19008
19009 \begin_layout Standard
19010 LaTeX usa 
19011 \emph on
19012 siempre
19013 \emph default
19014  ese orden de opciones.
19015  Significa que si usas la colocación predeterminada, LaTeX probará en primer
19016  lugar 
19017 \family sans
19018 Aquí\InsetSpace ~
19019 si\InsetSpace ~
19020 es\InsetSpace ~
19021 posible
19022 \family default
19023 , luego 
19024 \family sans
19025 Principio\InsetSpace ~
19026 de\InsetSpace ~
19027 página
19028 \family default
19029 , y después las otras.
19030  Si no usas la predeterminada, LaTeX solo probará las opciones marcadas
19031  pero en dicho orden.
19032  Si no es posible ninguna de las 4 ubicaciones el proceso se repite internamente
19033  pero intenta poner el flotante en la página siguiente.
19034 \end_layout
19035
19036 \begin_layout Standard
19037 De forma predeterminada cada una de las opciones tiene sus propias reglas:
19038 \end_layout
19039
19040 \begin_layout Labeling
19041 \labelwidthstring 00.00.0000
19042
19043 \family sans
19044 Principio\InsetSpace ~
19045 de\InsetSpace ~
19046 página:
19047 \family default
19048  solo si el flotante ocupa menos del 70\InsetSpace \thinspace{}
19049 % de la página puede ubicarse al
19050  principio de página (
19051 \series bold
19052
19053 \backslash
19054 topfraction
19055 \series default
19056 )
19057 \end_layout
19058
19059 \begin_layout Labeling
19060 \labelwidthstring 00.00.0000
19061
19062 \family sans
19063 Fin\InsetSpace ~
19064 de\InsetSpace ~
19065 página:
19066 \family default
19067  solo si el flotante ocupa menos del 30\InsetSpace \thinspace{}
19068 % de la página puede ubicarse al
19069  fin de página.
19070  (
19071 \series bold
19072
19073 \backslash
19074 bottomfraction
19075 \series default
19076 )
19077 \end_layout
19078
19079 \begin_layout Labeling
19080 \labelwidthstring 00.00.0000
19081
19082 \family sans
19083 Página\InsetSpace ~
19084 de\InsetSpace ~
19085 flotantes:
19086 \family default
19087  solo si más del 50\InsetSpace \thinspace{}
19088 % de la página se ocupa por flotantes puede haber varios
19089  juntos en la misma página.
19090  (
19091 \series bold
19092
19093 \backslash
19094 floatpagefraction
19095 \series default
19096 )
19097 \end_layout
19098
19099 \begin_layout Standard
19100 Si no te agradan estas reglas puedes ignorarlas marcando la opción adicional
19101  
19102 \family sans
19103 Ignorar\InsetSpace ~
19104 reglas\InsetSpace ~
19105 de\InsetSpace ~
19106 LaTeX
19107 \family default
19108 .
19109 \newline
19110 También puedes redefinir las reglas con los comandos LaTeX que van entre
19111  paréntesis tras la descripción de las reglas anteriores.
19112  Por ejemplo, para aumentar el valor predeterminado, quizás pequeño, de
19113  la regla 
19114 \family sans
19115 Fin
19116 \family default
19117 \InsetSpace ~
19118
19119 \family sans
19120 de
19121 \family default
19122 \InsetSpace ~
19123
19124 \family sans
19125 página
19126 \family default
19127  al 50\InsetSpace \thinspace{}
19128 %, añade esta línea en el preámbulo:
19129 \end_layout
19130
19131 \begin_layout Standard
19132
19133 \series bold
19134
19135 \backslash
19136 renewcommand{
19137 \backslash
19138 bottomfraction}{0.5}
19139 \end_layout
19140
19141 \begin_layout Standard
19142 En determinados casos podrías necesitar ubicar un flotante exactamente en
19143  la posición en la que se inserta.
19144  Para esto puedes usar la opción 
19145 \family sans
19146 Aquí\InsetSpace ~
19147 definitivamente
19148 \family default
19149 .
19150  Usa esta opción esporádicamente y solo cuando el documento esté casi listo,
19151  porque el flotante ya no podrá 
19152 \begin_inset Quotes eld
19153 \end_inset
19154
19155 flotar
19156 \begin_inset Quotes erd
19157 \end_inset
19158
19159  y si haces cambios al documento se podría estropear el diseño de la página.
19160 \end_layout
19161
19162 \begin_layout Standard
19163 No hay opciones de ubicación para flotantes ajustados a texto porque siempre
19164  están rodeados por texto de un párrafo determinado.
19165 \begin_inset VSpace bigskip
19166 \end_inset
19167
19168
19169 \end_layout
19170
19171 \begin_layout Standard
19172 A veces surge el problema de que un flotante se sitúa al principio de la
19173  página mientras que su sección correspondiente empieza en mitad de la página,
19174  así que el lector podría creer que el flotante forma parte de la sección
19175  anterior.
19176  Para evitarlo puede emplearse el comando LaTeX 
19177 \series bold
19178
19179 \backslash
19180 suppressf\SpecialChar \textcompwordmark{}
19181 loats
19182 \series default
19183 , que suprime la ubicación de un flotante dado en la página donde se inserta
19184  y además puede servir para evitar que el flotante se coloque antes del
19185  inicio de sección.
19186  Para ello, añade estos comandos al preámbulo:
19187 \end_layout
19188
19189 \begin_layout Standard
19190
19191 \series bold
19192
19193 \backslash
19194 let
19195 \backslash
19196 mySection
19197 \backslash
19198 section
19199 \newline
19200
19201 \backslash
19202 renewcommand{
19203 \backslash
19204 section}{
19205 \backslash
19206 suppressf\SpecialChar \textcompwordmark{}
19207 loats[t]
19208 \backslash
19209 mySection}
19210 \end_layout
19211
19212 \begin_layout Standard
19213 Se puede hacer lo mismo para todas las cabeceras de sección, capítulos y
19214  subsecciones.
19215  No es recomendable para partes pequeñas de texto como subsubsecciones porque
19216  LaTeX podría tener problemas para encontrar una ubicación adecuada.
19217 \end_layout
19218
19219 \begin_layout Standard
19220 \begin_inset VSpace bigskip
19221 \end_inset
19222
19223 En ciertos casos se quieren tener todas las figuras/tablas al final del
19224  documento.
19225  Para estos casos está el paquete LaTeX 
19226 \series bold
19227 endf\SpecialChar \textcompwordmark{}
19228 loat
19229 \series default
19230
19231 \begin_inset LatexCommand index
19232 name "LaTeX-paquetes ! endfloat"
19233
19234 \end_inset
19235
19236 .
19237  Pone todas las figuras y tablas flotantes al final del documento en secciones
19238  propias.
19239  En la posición original del flotante se inserta una indicación como 
19240 \begin_inset Quotes eld
19241 \end_inset
19242
19243
19244 \family sans
19245 [Figure\InsetSpace ~
19246 3.2 about here.]
19247 \family default
19248
19249 \begin_inset Quotes erd
19250 \end_inset
19251
19252 .
19253  El paquete 
19254 \series bold
19255 endf\SpecialChar \textcompwordmark{}
19256 loat
19257 \series default
19258  se carga en el preámbulo con la línea
19259 \end_layout
19260
19261 \begin_layout Standard
19262
19263 \series bold
19264
19265 \backslash
19266 usepackage[options]{endf\SpecialChar \textcompwordmark{}
19267 loat}
19268 \end_layout
19269
19270 \begin_layout Standard
19271 Hay varias opciones para diseñar las secciones figura/tabla creadas.
19272  Para más información ver la documentación de 
19273 \begin_inset LatexCommand cite
19274 key "endfloat"
19275
19276 \end_inset
19277
19278 .
19279 \newline
19280
19281 \begin_inset Note Greyedout
19282 status open
19283
19284 \begin_layout Standard
19285
19286 \series bold
19287 Nota: endf\SpecialChar \textcompwordmark{}
19288 loat
19289 \series default
19290  no traduce automáticamente la indicación, hay que hacerlo manualmente,
19291  ver sección\InsetSpace ~
19292 4 en 
19293 \begin_inset LatexCommand cite
19294 key "endfloat"
19295
19296 \end_inset
19297
19298 .
19299 \end_layout
19300
19301 \end_inset
19302
19303
19304 \newline
19305
19306 \begin_inset Note Greyedout
19307 status open
19308
19309 \begin_layout Standard
19310
19311 \series bold
19312 Nota:
19313 \series default
19314  Actualmente hay un error en 
19315 \series bold
19316 endf\SpecialChar \textcompwordmark{}
19317 loat
19318 \series default
19319  cuando el encabezado contiene el carácter alemán 
19320 \begin_inset Quotes eld
19321 \end_inset
19322
19323 ß
19324 \begin_inset Quotes erd
19325 \end_inset
19326
19327 .
19328  Usa en ese caso el comando 
19329 \begin_inset Quotes eld
19330 \end_inset
19331
19332
19333 \series bold
19334
19335 \backslash
19336 ss
19337 \series default
19338
19339 \begin_inset Quotes erd
19340 \end_inset
19341
19342  en ERT en vez de 
19343 \begin_inset Quotes eld
19344 \end_inset
19345
19346 ß
19347 \begin_inset Quotes erd
19348 \end_inset
19349
19350 .
19351 \end_layout
19352
19353 \end_inset
19354
19355
19356 \end_layout
19357
19358 \begin_layout Standard
19359 \begin_inset VSpace bigskip
19360 \end_inset
19361
19362 Más detalles sobre ubicación de flotantes en libros sobre LaTeX como 
19363 \begin_inset LatexCommand cite
19364 key "latexcompanion,latexguide,latexbook"
19365
19366 \end_inset
19367
19368 .
19369 \end_layout
19370
19371 \begin_layout Section
19372 Rotación de Flotantes
19373 \begin_inset LatexCommand label
19374 name "sec:Rotación-de-Flotantes"
19375
19376 \end_inset
19377
19378
19379 \begin_inset LatexCommand index
19380 name "Flotantes ! Rotación"
19381
19382 \end_inset
19383
19384
19385 \end_layout
19386
19387 \begin_layout Standard
19388 Podrías necesitar girar flotantes, especialmente con tablas grandes.
19389  Para girar todo el flotante y su encabezado, pincha sobre su cuadro y marca
19390  la opción 
19391 \family sans
19392 Girar\InsetSpace ~
19393 a\InsetSpace ~
19394 un\InsetSpace ~
19395 lado
19396 \family default
19397 .
19398 \end_layout
19399
19400 \begin_layout Standard
19401 Los flotantes girados son puestos siempre en su propia página (o columna
19402  si el documento es de dos columnas).
19403  Normalmente se rotan de forma que puedes leerlos desde el margen externo
19404  ---a la izquierda en páginas impares, a la derecha en pares---.
19405 \end_layout
19406
19407 \begin_layout Standard
19408 Los flotantes girados se refieren igual que los normales, y el formato de
19409  encabezado también es el mismo: un ejemplo es la tabla\InsetSpace ~
19410
19411 \begin_inset LatexCommand ref
19412 reference "tab:Tabla-girada"
19413
19414 \end_inset
19415
19416 .
19417 \end_layout
19418
19419 \begin_layout Standard
19420 \begin_inset Note Greyedout
19421 status open
19422
19423 \begin_layout Standard
19424
19425 \series bold
19426 Nota:
19427 \series default
19428  No todos los visores DVI pueden mostrar tablas giradas.
19429 \end_layout
19430
19431 \end_inset
19432
19433
19434 \end_layout
19435
19436 \begin_layout Standard
19437 \begin_inset Float table
19438 wide false
19439 sideways true
19440 status open
19441
19442 \begin_layout Standard
19443 \begin_inset Caption
19444
19445 \begin_layout Standard
19446 \begin_inset LatexCommand label
19447 name "tab:Tabla-girada"
19448
19449 \end_inset
19450
19451 Tabla girada
19452 \end_layout
19453
19454 \end_inset
19455
19456
19457 \end_layout
19458
19459 \begin_layout Standard
19460 \align center
19461 \begin_inset Tabular
19462 <lyxtabular version="3" rows="1" columns="5">
19463 <features>
19464 <column alignment="center" valignment="top" leftline="true" width="0">
19465 <column alignment="center" valignment="top" leftline="true" width="0">
19466 <column alignment="center" valignment="top" leftline="true" width="0">
19467 <column alignment="center" valignment="top" leftline="true" width="0">
19468 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19469 <row topline="true" bottomline="true">
19470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19471 \begin_inset Text
19472
19473 \begin_layout Standard
19474 test
19475 \end_layout
19476
19477 \end_inset
19478 </cell>
19479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19480 \begin_inset Text
19481
19482 \begin_layout Standard
19483 b
19484 \end_layout
19485
19486 \end_inset
19487 </cell>
19488 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19489 \begin_inset Text
19490
19491 \begin_layout Standard
19492 c
19493 \end_layout
19494
19495 \end_inset
19496 </cell>
19497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19498 \begin_inset Text
19499
19500 \begin_layout Standard
19501 d
19502 \end_layout
19503
19504 \end_inset
19505 </cell>
19506 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19507 \begin_inset Text
19508
19509 \begin_layout Standard
19510 e
19511 \end_layout
19512
19513 \end_inset
19514 </cell>
19515 </row>
19516 </lyxtabular>
19517
19518 \end_inset
19519
19520
19521 \end_layout
19522
19523 \end_inset
19524
19525
19526 \end_layout
19527
19528 \begin_layout Section
19529 Formato de Encabezados
19530 \begin_inset LatexCommand index
19531 name "Encabezados ! Formato"
19532
19533 \end_inset
19534
19535
19536 \begin_inset LatexCommand index
19537 name "Flotantes ! Formato de Encabezados"
19538
19539 \end_inset
19540
19541
19542 \begin_inset LatexCommand index
19543 name "LaTeX-paquetes ! caption"
19544
19545 \end_inset
19546
19547
19548 \begin_inset LatexCommand label
19549 name "sec:Formato-de-Encabezados"
19550
19551 \end_inset
19552
19553
19554 \end_layout
19555
19556 \begin_layout Standard
19557 El entorno 
19558 \family sans
19559 Encabezado
19560 \family default
19561  es el predeterminado para los 
19562 \family sans
19563 Flotantes
19564 \family default
19565 .
19566  En LyX los encabezados se muestran como etiqueta, p.\InsetSpace \thinspace{}
19567 e.\InsetSpace ~
19568
19569 \begin_inset Quotes eld
19570 \end_inset
19571
19572
19573 \family sans
19574 Figura #
19575 \family default
19576 :
19577 \begin_inset Quotes erd
19578 \end_inset
19579
19580  seguida por el texto.
19581  El símbolo de número 
19582 \begin_inset Quotes eld
19583 \end_inset
19584
19585 #
19586 \begin_inset Quotes erd
19587 \end_inset
19588
19589  es sustituido en la salida impresa por el número de referencia real.
19590  Por defecto la etiqueta y el número usan la misma fuente que el texto del
19591  encabezado y el signo dos puntos sigue al número para separar la etiqueta
19592  del texto.
19593  El formato de encabezado no es apropiado para todos los formatos de documento.
19594  
19595 \end_layout
19596
19597 \begin_layout Standard
19598 Para cambiar el formato predeterminado carga el paquete LaTeX 
19599 \series bold
19600 caption
19601 \series default
19602
19603 \begin_inset LatexCommand index
19604 name "LaTeX-paquetes ! caption"
19605
19606 \end_inset
19607
19608  en el preámbulo del documento con la línea:
19609 \end_layout
19610
19611 \begin_layout Standard
19612
19613 \series bold
19614
19615 \backslash
19616 usepackage[definición de formato]{caption}
19617 \end_layout
19618
19619 \begin_layout Standard
19620 Para poner, por ejemplo, la etiqueta y el número en sans-serif negrita y
19621  los encabezados de tabla siempre sobre ella como en este documento, usa
19622  el comando:
19623 \end_layout
19624
19625 \begin_layout Standard
19626
19627 \series bold
19628
19629 \backslash
19630 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19631 \end_layout
19632
19633 \begin_layout Standard
19634 También puedes definir distintos formatos de encabezado para los distintos
19635  tipos de flotantes.
19636  En ese caso carga el paquete 
19637 \series bold
19638 caption
19639 \series default
19640  sin opciones específicas y define los distintos formatos con ayuda del
19641  comando
19642 \end_layout
19643
19644 \begin_layout Standard
19645
19646 \series bold
19647
19648 \backslash
19649 captionsetup[tipo de flotante]{definición de formato}
19650 \end_layout
19651
19652 \begin_layout Standard
19653 en el preámbulo del documento.
19654  Por ejemplo los encabezados de la Figura\InsetSpace ~
19655
19656 \begin_inset LatexCommand ref
19657 reference "fig:Esto-es-una-fig"
19658
19659 \end_inset
19660
19661  y la tabla\InsetSpace ~
19662
19663 \begin_inset LatexCommand ref
19664 reference "tab:Esto-es-una-tab"
19665
19666 \end_inset
19667
19668  pueden crearse usando los siguientes comandos en el preámbulo:
19669 \end_layout
19670
19671 \begin_layout Standard
19672
19673 \series bold
19674
19675 \backslash
19676 usepackage[tableposition=top]{caption}
19677 \series default
19678
19679 \newline
19680
19681 \series bold
19682
19683 \backslash
19684 captionsetup[f\SpecialChar \textcompwordmark{}
19685 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19686 \newline
19687
19688 \begin_inset ERT
19689 status collapsed
19690
19691 \begin_layout Standard
19692
19693
19694 \backslash
19695 hphantom{
19696 \backslash
19697
19698 \backslash
19699 captionsetup[figure]
19700 \backslash
19701 {}
19702 \end_layout
19703
19704 \end_inset
19705
19706  labelsep=period}
19707 \newline
19708
19709 \backslash
19710 captionsetup[table]{labelfont={bf,sf}}
19711 \end_layout
19712
19713 \begin_layout Standard
19714 \begin_inset Note Greyedout
19715 status open
19716
19717 \begin_layout Standard
19718
19719 \series bold
19720 Nota: 
19721 \series default
19722 La opción 
19723 \series bold
19724 tableposition=top
19725 \series default
19726  no tiene efecto si se usa una clase de documento 
19727 \series bold
19728 koma-script
19729 \series default
19730 .
19731  En este caso debe utilizarse la opción de clase de documento 
19732 \series bold
19733 tablecaptionabove
19734 \series default
19735 .
19736  
19737 \end_layout
19738
19739 \end_inset
19740
19741
19742 \end_layout
19743
19744 \begin_layout Standard
19745 Para más información sobre el paquete 
19746 \series bold
19747 caption
19748 \series default
19749  acude a su documentación 
19750 \begin_inset LatexCommand cite
19751 key "caption,caption-de"
19752
19753 \end_inset
19754
19755 .
19756 \end_layout
19757
19758 \begin_layout Standard
19759 Para cambiar el nombre de la etiqueta de 
19760 \begin_inset Quotes eld
19761 \end_inset
19762
19763 Figura
19764 \begin_inset Quotes erd
19765 \end_inset
19766
19767  a 
19768 \begin_inset Quotes eld
19769 \end_inset
19770
19771 Imagen
19772 \begin_inset Quotes erd
19773 \end_inset
19774
19775 , p.\InsetSpace \thinspace{}
19776 e., usa el siguiente comando de preámbulo:
19777 \end_layout
19778
19779 \begin_layout Standard
19780
19781 \series bold
19782
19783 \backslash
19784 renewcommand{
19785 \backslash
19786 fnum@figure}{Imagen~
19787 \backslash
19788 thefigure}
19789 \end_layout
19790
19791 \begin_layout Standard
19792 donde 
19793 \series bold
19794
19795 \backslash
19796 thefigure
19797 \series default
19798  inserta el número de figura y 
19799 \series bold
19800
19801 \begin_inset Quotes eld
19802 \end_inset
19803
19804
19805 \series default
19806 ~
19807 \series bold
19808
19809 \begin_inset Quotes erd
19810 \end_inset
19811
19812
19813 \series default
19814  genera un espacio protegido.
19815
19816 \series bold
19817  
19818 \end_layout
19819
19820 \begin_layout Standard
19821 \begin_inset VSpace bigskip
19822 \end_inset
19823
19824 Si estás usando la clase de documento 
19825 \series bold
19826 koma-script
19827 \series default
19828
19829 \begin_inset LatexCommand index
19830 name "LaTeX-paquetes ! koma-script"
19831
19832 \end_inset
19833
19834  (
19835 \family sans
19836 article (koma-script)
19837 \family default
19838
19839 \family sans
19840 book (koma-script)
19841 \family default
19842
19843 \family sans
19844 letter (koma-script)
19845 \family default
19846 , o 
19847 \family sans
19848 report (koma-script)
19849 \family default
19850 \InsetSpace \thinspace{}
19851 ), puedes emplear en vez del paquete 
19852 \series bold
19853 caption
19854 \series default
19855  el comando 
19856 \series bold
19857
19858 \backslash
19859 setkomafont
19860 \series default
19861  incluido en 
19862 \series bold
19863 koma-script
19864 \series default
19865 .
19866  Por ejemplo, para poner en negrita la etiqueta del encabezado añade este
19867  comando en el preámbulo del documento:
19868 \end_layout
19869
19870 \begin_layout Standard
19871
19872 \series bold
19873
19874 \backslash
19875 setkomafont{captionlabel}{
19876 \backslash
19877 bfseries}
19878 \end_layout
19879
19880 \begin_layout Standard
19881 Más información sobre 
19882 \series bold
19883
19884 \backslash
19885 setkomafont
19886 \series default
19887  en la documentación de 
19888 \series bold
19889 koma-script
19890 \series default
19891  
19892 \begin_inset LatexCommand cite
19893 key "koma-script,koma-script-de"
19894
19895 \end_inset
19896
19897 .
19898 \end_layout
19899
19900 \begin_layout Standard
19901 \begin_inset ERT
19902 status collapsed
19903
19904 \begin_layout Standard
19905
19906
19907 \backslash
19908 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19909 }
19910 \end_layout
19911
19912 \end_inset
19913
19914
19915 \begin_inset Note Note
19916 status open
19917
19918 \begin_layout Standard
19919 El formato del encabezado se ha cambiado solo para este ejemplo.
19920 \end_layout
19921
19922 \end_inset
19923
19924
19925 \end_layout
19926
19927 \begin_layout Standard
19928 \begin_inset Float figure
19929 placement !p
19930 wide false
19931 sideways false
19932 status open
19933
19934 \begin_layout Standard
19935 \align center
19936 \begin_inset Graphics
19937         filename ../clipart/mobius.eps
19938         lyxscale 50
19939         scale 50
19940
19941 \end_inset
19942
19943
19944 \end_layout
19945
19946 \begin_layout Standard
19947 \begin_inset Caption
19948
19949 \begin_layout Standard
19950 \begin_inset LatexCommand label
19951 name "fig:Esto-es-una-fig"
19952
19953 \end_inset
19954
19955
19956 \begin_inset OptArg
19957 status open
19958
19959 \begin_layout Standard
19960 Figura con título muy largo
19961 \end_layout
19962
19963 \end_inset
19964
19965 Este es un ejemplo de figura con un título que es mayor de una línea para
19966  mostrar el formato diferente.
19967  Aquí se usa un título personalizado.
19968 \end_layout
19969
19970 \end_inset
19971
19972
19973 \end_layout
19974
19975 \end_inset
19976
19977
19978 \end_layout
19979
19980 \begin_layout Standard
19981 \begin_inset ERT
19982 status collapsed
19983
19984 \begin_layout Standard
19985
19986
19987 \backslash
19988 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19989 on}
19990 \end_layout
19991
19992 \end_inset
19993
19994
19995 \end_layout
19996
19997 \begin_layout Standard
19998 \begin_inset Float table
19999 placement !p
20000 wide false
20001 sideways false
20002 status open
20003
20004 \begin_layout Standard
20005 \begin_inset Caption
20006
20007 \begin_layout Standard
20008 \begin_inset LatexCommand label
20009 name "tab:Esto-es-una-tab"
20010
20011 \end_inset
20012
20013
20014 \begin_inset OptArg
20015 status collapsed
20016
20017 \begin_layout Standard
20018 Tabla con encabezado muy largo
20019 \end_layout
20020
20021 \end_inset
20022
20023 Este es un ejemplo de encabezado de tabla mayor que una línea para mostrar
20024  el formato diferente.
20025  Aquí se usa el formato de encabezado estándar para las tablas.
20026 \end_layout
20027
20028 \end_inset
20029
20030
20031 \end_layout
20032
20033 \begin_layout Standard
20034 \align center
20035 \begin_inset Tabular
20036 <lyxtabular version="3" rows="1" columns="5">
20037 <features>
20038 <column alignment="center" valignment="top" leftline="true" width="0">
20039 <column alignment="center" valignment="top" leftline="true" width="0">
20040 <column alignment="center" valignment="top" leftline="true" width="0">
20041 <column alignment="center" valignment="top" leftline="true" width="0">
20042 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20043 <row topline="true" bottomline="true">
20044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20045 \begin_inset Text
20046
20047 \begin_layout Standard
20048 a
20049 \end_layout
20050
20051 \end_inset
20052 </cell>
20053 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20054 \begin_inset Text
20055
20056 \begin_layout Standard
20057 b
20058 \end_layout
20059
20060 \end_inset
20061 </cell>
20062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20063 \begin_inset Text
20064
20065 \begin_layout Standard
20066 c
20067 \end_layout
20068
20069 \end_inset
20070 </cell>
20071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20072 \begin_inset Text
20073
20074 \begin_layout Standard
20075 d
20076 \end_layout
20077
20078 \end_inset
20079 </cell>
20080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20081 \begin_inset Text
20082
20083 \begin_layout Standard
20084 e
20085 \end_layout
20086
20087 \end_inset
20088 </cell>
20089 </row>
20090 </lyxtabular>
20091
20092 \end_inset
20093
20094
20095 \end_layout
20096
20097 \end_inset
20098
20099
20100 \end_layout
20101
20102 \begin_layout Section
20103 Colocación de Encabezados
20104 \begin_inset LatexCommand index
20105 name "Encabezados ! Colocación"
20106
20107 \end_inset
20108
20109
20110 \begin_inset LatexCommand index
20111 name "Flotantes ! Colocación de Encabezados"
20112
20113 \end_inset
20114
20115
20116 \begin_inset LatexCommand label
20117 name "sec:Colocación-de-Encabezados"
20118
20119 \end_inset
20120
20121
20122 \end_layout
20123
20124 \begin_layout Standard
20125 La norma habitual para colocar títulos o encabezados es:
20126 \end_layout
20127
20128 \begin_layout Description
20129 Figura: El título bajo la figura
20130 \end_layout
20131
20132 \begin_layout Description
20133 Tabla: El encabezado sobre la tabla
20134 \end_layout
20135
20136 \begin_layout Standard
20137 Desafortunadamente, las clases estándar de LaTeX no soportan encabezados
20138  sobre la tabla.
20139  Esto implica que si usas las clases de documento 
20140 \family sans
20141 article
20142 \family default
20143
20144 \family sans
20145 book
20146 \family default
20147
20148 \family sans
20149 letter
20150 \family default
20151 , o 
20152 \family sans
20153 report
20154 \family default
20155  no habrá espacio entre el encabezado y la tabla.
20156  Para insertar el espacio adecuado añade la siguiente opción al comando
20157  del paquete LaTeX 
20158 \series bold
20159 caption
20160 \series default
20161  en el preámbulo del documento
20162 \begin_inset Foot
20163 status collapsed
20164
20165 \begin_layout Standard
20166 Ver la sección\InsetSpace ~
20167
20168 \begin_inset LatexCommand ref
20169 reference "sec:Formato-de-Encabezados"
20170
20171 \end_inset
20172
20173  para más información sobre el paquete 
20174 \series bold
20175 caption
20176 \series default
20177 .
20178 \end_layout
20179
20180 \end_inset
20181
20182 :
20183 \end_layout
20184
20185 \begin_layout Standard
20186
20187 \series bold
20188 tableposition=top
20189 \end_layout
20190
20191 \begin_layout Standard
20192 Si estás usando la clase 
20193 \series bold
20194 koma-script
20195 \series default
20196
20197 \begin_inset LatexCommand index
20198 name "LaTeX-paquetes ! koma-script"
20199
20200 \end_inset
20201
20202  (
20203 \family sans
20204 article (koma-script)
20205 \family default
20206
20207 \family sans
20208 book (koma-script)
20209 \family default
20210
20211 \family sans
20212 letter (koma-script)
20213 \family default
20214 , o 
20215 \family sans
20216 report (koma-script)
20217 \family default
20218 \InsetSpace \thinspace{}
20219 ), en vez de 
20220 \series bold
20221 caption
20222 \series default
20223  puedes poner la opción 
20224 \series bold
20225 tablecaptionabove
20226 \series default
20227  de la clase de documento, o usar el entorno 
20228 \family sans
20229 Encabezado
20230 \family default
20231 \InsetSpace ~
20232
20233 \family sans
20234 Arriba
20235 \family default
20236  en vez del entorno 
20237 \family sans
20238 Encabezado
20239 \family default
20240 .
20241 \end_layout
20242
20243 \begin_layout Standard
20244 \begin_inset VSpace bigskip
20245 \end_inset
20246
20247 También es posible poner el encabezado junto a una figura o tabla.
20248  Para conseguirlo hay que cargar el paquete LaTeX 
20249 \series bold
20250 sidecap
20251 \series default
20252
20253 \begin_inset LatexCommand index
20254 name "LaTeX-paquetes ! sidecap"
20255
20256 \end_inset
20257
20258  añadiendo en el preámbulo del documento la línea
20259 \end_layout
20260
20261 \begin_layout Standard
20262
20263 \series bold
20264
20265 \backslash
20266 usepackage[option]{sidecap}
20267 \end_layout
20268
20269 \begin_layout Standard
20270 Si no se especifica opción, el encabezado se ubica del lado del margen externo
20271  de la página -- a la derecha en páginas impares, a la izquierda en las
20272  pares.
20273  Puedes cambiar la colocación al margen interno con la opción 
20274 \series bold
20275 innercaption
20276 \series default
20277 .
20278  Para forzar la ubicación siempre a la derecha o a la izquierda, usa las
20279  opciones 
20280 \series bold
20281 rightcaption
20282 \series default
20283  o 
20284 \series bold
20285 leftcaption
20286 \series default
20287 , respectivamente.
20288 \end_layout
20289
20290 \begin_layout Standard
20291 Para situar en LyX el encabezado de un flotante al lado, es necesario añadir
20292  estos comandos al preámbulo del documento:
20293 \end_layout
20294
20295 \begin_layout Standard
20296
20297 \lyxline
20298
20299 \end_layout
20300
20301 \begin_layout Standard
20302
20303 \series bold
20304
20305 \backslash
20306 newcommand{
20307 \backslash
20308 TabBesBeg}{%
20309 \newline
20310
20311 \begin_inset ERT
20312 status collapsed
20313
20314 \begin_layout Standard
20315
20316
20317 \backslash
20318 hphantom{ }
20319 \end_layout
20320
20321 \end_inset
20322
20323
20324 \backslash
20325 let
20326 \backslash
20327 MyTable
20328 \backslash
20329 table
20330 \newline
20331
20332 \begin_inset ERT
20333 status collapsed
20334
20335 \begin_layout Standard
20336
20337
20338 \backslash
20339 hphantom{ }
20340 \end_layout
20341
20342 \end_inset
20343
20344
20345 \backslash
20346 let
20347 \backslash
20348 MyEndtable
20349 \backslash
20350 endtable
20351 \newline
20352
20353 \begin_inset ERT
20354 status collapsed
20355
20356 \begin_layout Standard
20357
20358
20359 \backslash
20360 hphantom{ }
20361 \end_layout
20362
20363 \end_inset
20364
20365
20366 \backslash
20367 renewenvironment{table}{
20368 \backslash
20369 begin{SCtable}}{
20370 \backslash
20371 end{SCtable}}}
20372 \end_layout
20373
20374 \begin_layout Standard
20375
20376 \series bold
20377
20378 \backslash
20379 newcommand{
20380 \backslash
20381 TabBesEnd}{%
20382 \newline
20383
20384 \begin_inset ERT
20385 status collapsed
20386
20387 \begin_layout Standard
20388
20389
20390 \backslash
20391 hphantom{ }
20392 \end_layout
20393
20394 \end_inset
20395
20396
20397 \backslash
20398 let
20399 \backslash
20400 table
20401 \backslash
20402 MyTable
20403 \newline
20404
20405 \begin_inset ERT
20406 status collapsed
20407
20408 \begin_layout Standard
20409
20410
20411 \backslash
20412 hphantom{ }
20413 \end_layout
20414
20415 \end_inset
20416
20417
20418 \backslash
20419 let
20420 \backslash
20421 endtable
20422 \backslash
20423 MyEndtable
20424 \end_layout
20425
20426 \begin_layout Standard
20427
20428 \series bold
20429
20430 \backslash
20431 newcommand{
20432 \backslash
20433 FigBesBeg}{%
20434 \newline
20435
20436 \begin_inset ERT
20437 status collapsed
20438
20439 \begin_layout Standard
20440
20441
20442 \backslash
20443 hphantom{ }
20444 \end_layout
20445
20446 \end_inset
20447
20448
20449 \backslash
20450 let
20451 \backslash
20452 MyFigure
20453 \backslash
20454 f\SpecialChar \textcompwordmark{}
20455 igure
20456 \newline
20457
20458 \begin_inset ERT
20459 status collapsed
20460
20461 \begin_layout Standard
20462
20463
20464 \backslash
20465 hphantom{ }
20466 \end_layout
20467
20468 \end_inset
20469
20470
20471 \backslash
20472 let
20473 \backslash
20474 MyEndf\SpecialChar \textcompwordmark{}
20475 igure
20476 \backslash
20477 endf\SpecialChar \textcompwordmark{}
20478 igure
20479 \newline
20480
20481 \begin_inset ERT
20482 status collapsed
20483
20484 \begin_layout Standard
20485
20486
20487 \backslash
20488 hphantom{ }
20489 \end_layout
20490
20491 \end_inset
20492
20493
20494 \backslash
20495 renewenvironment{f\SpecialChar \textcompwordmark{}
20496 igure}{
20497 \backslash
20498 begin{SCf\SpecialChar \textcompwordmark{}
20499 igure}}{
20500 \backslash
20501 end{SCf\SpecialChar \textcompwordmark{}
20502 igure}}}
20503 \end_layout
20504
20505 \begin_layout Standard
20506
20507 \series bold
20508
20509 \backslash
20510 newcommand{
20511 \backslash
20512 FigBesEnd}{%
20513 \newline
20514
20515 \begin_inset ERT
20516 status collapsed
20517
20518 \begin_layout Standard
20519
20520
20521 \backslash
20522 hphantom{ }
20523 \end_layout
20524
20525 \end_inset
20526
20527
20528 \backslash
20529 let
20530 \backslash
20531 f\SpecialChar \textcompwordmark{}
20532 igure
20533 \backslash
20534 MyFigure
20535 \newline
20536
20537 \begin_inset ERT
20538 status collapsed
20539
20540 \begin_layout Standard
20541
20542
20543 \backslash
20544 hphantom{ }
20545 \end_layout
20546
20547 \end_inset
20548
20549
20550 \backslash
20551 let
20552 \backslash
20553 endf\SpecialChar \textcompwordmark{}
20554 igure
20555 \backslash
20556 MyEndf\SpecialChar \textcompwordmark{}
20557 igure}
20558 \end_layout
20559
20560 \begin_layout Standard
20561
20562 \lyxline
20563
20564 \end_layout
20565
20566 \begin_layout Standard
20567 Estos comandos permiten redefinir los flotantes de modo que el encabezado
20568  aparezca en un lado.
20569  Para figuras flotantes usa el comando
20570 \end_layout
20571
20572 \begin_layout Standard
20573
20574 \series bold
20575
20576 \backslash
20577 FigBesBeg
20578 \end_layout
20579
20580 \begin_layout Standard
20581 en ERT antes del flotante.
20582  Detrás del flotante inserta
20583 \end_layout
20584
20585 \begin_layout Standard
20586
20587 \series bold
20588
20589 \backslash
20590 FigBesEnd
20591 \end_layout
20592
20593 \begin_layout Standard
20594 en ERT para volver a la definición original de flotantes.
20595 \end_layout
20596
20597 \begin_layout Standard
20598 Para tablas flotantes usa los comandos correspondientes
20599 \end_layout
20600
20601 \begin_layout Standard
20602
20603 \series bold
20604
20605 \backslash
20606 TabBesBeg
20607 \series default
20608  y 
20609 \series bold
20610
20611 \backslash
20612 TabBesEnd
20613 \end_layout
20614
20615 \begin_layout Standard
20616 La figura\InsetSpace ~
20617
20618 \begin_inset LatexCommand ref
20619 reference "fig:encab-al-lado"
20620
20621 \end_inset
20622
20623  y la tabla\InsetSpace ~
20624
20625 \begin_inset LatexCommand ref
20626 reference "tab:encab-al-lado"
20627
20628 \end_inset
20629
20630  son ejemplos en los que el título se sitúa al lado.
20631 \end_layout
20632
20633 \begin_layout Standard
20634 En los ejemplos puedes ver que el texto del título aparece encima del flotante
20635  en tablas flotantes y debajo en las figuras flotantes.
20636  Para cambiarlo, puedes usar el comando
20637 \end_layout
20638
20639 \begin_layout Standard
20640
20641 \series bold
20642
20643 \backslash
20644 sidecaptionvpos{tipo de flotante}{colocación}
20645 \end_layout
20646
20647 \begin_layout Standard
20648 en el preámbulo o en ERT antes del flotante.
20649  El tipo de flotante es 
20650 \family sans
20651 figure
20652 \family default
20653  o 
20654 \family sans
20655 table
20656 \family default
20657 , la colocación puede ser 
20658 \begin_inset Quotes eld
20659 \end_inset
20660
20661
20662 \family sans
20663 t
20664 \family default
20665
20666 \begin_inset Quotes erd
20667 \end_inset
20668
20669  por 
20670 \begin_inset Quotes eld
20671 \end_inset
20672
20673 top
20674 \begin_inset Quotes erd
20675 \end_inset
20676
20677  (arriba), 
20678 \begin_inset Quotes eld
20679 \end_inset
20680
20681
20682 \family sans
20683 c
20684 \family default
20685
20686 \begin_inset Quotes erd
20687 \end_inset
20688
20689  por 
20690 \begin_inset Quotes eld
20691 \end_inset
20692
20693 center
20694 \begin_inset Quotes erd
20695 \end_inset
20696
20697  (centro), o 
20698 \begin_inset Quotes eld
20699 \end_inset
20700
20701
20702 \family sans
20703 b
20704 \family default
20705
20706 \begin_inset Quotes erd
20707 \end_inset
20708
20709  por 
20710 \begin_inset Quotes eld
20711 \end_inset
20712
20713 bottom
20714 \begin_inset Quotes erd
20715 \end_inset
20716
20717  (abajo).
20718  Para tener, por ejemplo, el título de figuras flotantes verticalmente centrado,
20719  usa el comando
20720 \end_layout
20721
20722 \begin_layout Standard
20723
20724 \series bold
20725
20726 \backslash
20727 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20728 igure}{c}
20729 \end_layout
20730
20731 \begin_layout Standard
20732 Esto se ha hecho en la figura\InsetSpace ~
20733
20734 \begin_inset LatexCommand ref
20735 reference "fig:encab-al-lado-de-fig"
20736
20737 \end_inset
20738
20739 .
20740 \end_layout
20741
20742 \begin_layout Standard
20743 \begin_inset VSpace defskip
20744 \end_inset
20745
20746 Más información sobre el paquete 
20747 \series bold
20748 sidecap
20749 \series default
20750  en su documentación 
20751 \begin_inset LatexCommand cite
20752 key "sidecap"
20753
20754 \end_inset
20755
20756 .
20757 \end_layout
20758
20759 \begin_layout Standard
20760 \begin_inset Note Greyedout
20761 status open
20762
20763 \begin_layout Standard
20764
20765 \series bold
20766 Nota:
20767 \series default
20768  El paquete LaTeX 
20769 \series bold
20770 hypcap
20771 \series default
20772
20773 \begin_inset LatexCommand index
20774 name "LaTeX-paquetes ! hypcap"
20775
20776 \end_inset
20777
20778 , descrito en la sección\InsetSpace ~
20779
20780 \begin_inset LatexCommand ref
20781 reference "sub:Colocación-de-Referencias"
20782
20783 \end_inset
20784
20785 , no afecta a flotantes con el encabezado al lado.
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 FigBesBeg 
20802 \end_layout
20803
20804 \end_inset
20805
20806
20807 \end_layout
20808
20809 \begin_layout Standard
20810 \begin_inset Float figure
20811 wide false
20812 sideways false
20813 status open
20814
20815 \begin_layout Standard
20816 \begin_inset Graphics
20817         filename ../clipart/escher-lsd.eps
20818         scale 75
20819
20820 \end_inset
20821
20822
20823 \end_layout
20824
20825 \begin_layout Standard
20826 \begin_inset Caption
20827
20828 \begin_layout Standard
20829 \begin_inset LatexCommand label
20830 name "fig:encab-al-lado"
20831
20832 \end_inset
20833
20834 Título al lado de una figura.
20835 \end_layout
20836
20837 \end_inset
20838
20839
20840 \end_layout
20841
20842 \end_inset
20843
20844
20845 \end_layout
20846
20847 \begin_layout Standard
20848 \begin_inset ERT
20849 status collapsed
20850
20851 \begin_layout Standard
20852
20853
20854 \backslash
20855 TabBesBeg 
20856 \end_layout
20857
20858 \end_inset
20859
20860
20861 \end_layout
20862
20863 \begin_layout Standard
20864 \begin_inset Float table
20865 wide false
20866 sideways false
20867 status open
20868
20869 \begin_layout Standard
20870 \begin_inset Caption
20871
20872 \begin_layout Standard
20873 \begin_inset LatexCommand label
20874 name "tab:encab-al-lado"
20875
20876 \end_inset
20877
20878 Título al lado de una tabla.
20879 \end_layout
20880
20881 \end_inset
20882
20883
20884 \end_layout
20885
20886 \begin_layout Standard
20887 \begin_inset Tabular
20888 <lyxtabular version="3" rows="4" columns="5">
20889 <features>
20890 <column alignment="center" valignment="top" leftline="true" width="0">
20891 <column alignment="center" valignment="top" leftline="true" width="0">
20892 <column alignment="center" valignment="top" leftline="true" width="0">
20893 <column alignment="center" valignment="top" leftline="true" width="0">
20894 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20895 <row topline="true">
20896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20897 \begin_inset Text
20898
20899 \begin_layout Standard
20900 a
20901 \end_layout
20902
20903 \end_inset
20904 </cell>
20905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20906 \begin_inset Text
20907
20908 \begin_layout Standard
20909
20910 \end_layout
20911
20912 \end_inset
20913 </cell>
20914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20915 \begin_inset Text
20916
20917 \begin_layout Standard
20918 b
20919 \end_layout
20920
20921 \end_inset
20922 </cell>
20923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20924 \begin_inset Text
20925
20926 \begin_layout Standard
20927
20928 \end_layout
20929
20930 \end_inset
20931 </cell>
20932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20933 \begin_inset Text
20934
20935 \begin_layout Standard
20936 c
20937 \end_layout
20938
20939 \end_inset
20940 </cell>
20941 </row>
20942 <row topline="true">
20943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20944 \begin_inset Text
20945
20946 \begin_layout Standard
20947
20948 \end_layout
20949
20950 \end_inset
20951 </cell>
20952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20953 \begin_inset Text
20954
20955 \begin_layout Standard
20956 d
20957 \end_layout
20958
20959 \end_inset
20960 </cell>
20961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20962 \begin_inset Text
20963
20964 \begin_layout Standard
20965
20966 \end_layout
20967
20968 \end_inset
20969 </cell>
20970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20971 \begin_inset Text
20972
20973 \begin_layout Standard
20974 e
20975 \end_layout
20976
20977 \end_inset
20978 </cell>
20979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20980 \begin_inset Text
20981
20982 \begin_layout Standard
20983
20984 \end_layout
20985
20986 \end_inset
20987 </cell>
20988 </row>
20989 <row topline="true">
20990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20991 \begin_inset Text
20992
20993 \begin_layout Standard
20994 f
20995 \end_layout
20996
20997 \end_inset
20998 </cell>
20999 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21000 \begin_inset Text
21001
21002 \begin_layout Standard
21003
21004 \end_layout
21005
21006 \end_inset
21007 </cell>
21008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21009 \begin_inset Text
21010
21011 \begin_layout Standard
21012 g
21013 \end_layout
21014
21015 \end_inset
21016 </cell>
21017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21018 \begin_inset Text
21019
21020 \begin_layout Standard
21021
21022 \end_layout
21023
21024 \end_inset
21025 </cell>
21026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21027 \begin_inset Text
21028
21029 \begin_layout Standard
21030 h
21031 \end_layout
21032
21033 \end_inset
21034 </cell>
21035 </row>
21036 <row topline="true" bottomline="true">
21037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21038 \begin_inset Text
21039
21040 \begin_layout Standard
21041
21042 \end_layout
21043
21044 \end_inset
21045 </cell>
21046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21047 \begin_inset Text
21048
21049 \begin_layout Standard
21050 i
21051 \end_layout
21052
21053 \end_inset
21054 </cell>
21055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21056 \begin_inset Text
21057
21058 \begin_layout Standard
21059
21060 \end_layout
21061
21062 \end_inset
21063 </cell>
21064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21065 \begin_inset Text
21066
21067 \begin_layout Standard
21068 j
21069 \end_layout
21070
21071 \end_inset
21072 </cell>
21073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21074 \begin_inset Text
21075
21076 \begin_layout Standard
21077
21078 \end_layout
21079
21080 \end_inset
21081 </cell>
21082 </row>
21083 </lyxtabular>
21084
21085 \end_inset
21086
21087
21088 \end_layout
21089
21090 \end_inset
21091
21092
21093 \end_layout
21094
21095 \begin_layout Standard
21096 \begin_inset ERT
21097 status collapsed
21098
21099 \begin_layout Standard
21100
21101
21102 \backslash
21103 TabBesEnd
21104 \end_layout
21105
21106 \end_inset
21107
21108
21109 \end_layout
21110
21111 \begin_layout Standard
21112 \begin_inset ERT
21113 status collapsed
21114
21115 \begin_layout Standard
21116
21117
21118 \backslash
21119 sidecaptionvpos{figure}{c}
21120 \end_layout
21121
21122 \end_inset
21123
21124
21125 \begin_inset Float figure
21126 wide false
21127 sideways false
21128 status open
21129
21130 \begin_layout Standard
21131 \begin_inset Graphics
21132         filename ../clipart/escher-lsd.eps
21133         scale 75
21134
21135 \end_inset
21136
21137
21138 \end_layout
21139
21140 \begin_layout Standard
21141 \begin_inset Caption
21142
21143 \begin_layout Standard
21144 \begin_inset LatexCommand label
21145 name "fig:encab-al-lado-de-fig"
21146
21147 \end_inset
21148
21149 Título junto a una figura centrado verticalmente.
21150 \end_layout
21151
21152 \end_inset
21153
21154
21155 \end_layout
21156
21157 \end_inset
21158
21159
21160 \end_layout
21161
21162 \begin_layout Standard
21163 \begin_inset ERT
21164 status collapsed
21165
21166 \begin_layout Standard
21167
21168
21169 \backslash
21170 FigBesEnd
21171 \end_layout
21172
21173 \end_inset
21174
21175
21176 \end_layout
21177
21178 \begin_layout Section
21179 Lista de Flotantes
21180 \begin_inset LatexCommand label
21181 name "sec:Lista-de-Flotantes"
21182
21183 \end_inset
21184
21185
21186 \begin_inset LatexCommand index
21187 name "Flotantes ! Lista"
21188
21189 \end_inset
21190
21191
21192 \end_layout
21193
21194 \begin_layout Standard
21195 Igual que en el índice general se listan las secciones del documento, hay
21196  listas para todos los tipos de flotantes, como las figuras.
21197  Se pueden insertar mediante los submenús 
21198 \family sans
21199 Insertar\SpecialChar \menuseparator
21200 Lista / IG
21201 \family default
21202 .
21203 \end_layout
21204
21205 \begin_layout Standard
21206 Las entradas de la lista son los títulos del flotante o su título corto,
21207  el número de flotante, y el número de la página del documento en la que
21208  aparecen.
21209 \end_layout
21210
21211 \begin_layout Standard
21212 Puedes encontrar las listas de figuras y tablas al final de este documento.
21213 \end_layout
21214
21215 \begin_layout Chapter
21216 Notas
21217 \end_layout
21218
21219 \begin_layout Section
21220 Notas en 
21221 \begin_inset ERT
21222 status collapsed
21223
21224 \begin_layout Standard
21225
21226
21227 \backslash
21228 texorpdfstring{
21229 \end_layout
21230
21231 \end_inset
21232
21233 LyX
21234 \begin_inset ERT
21235 status collapsed
21236
21237 \begin_layout Standard
21238
21239 }{LyX}
21240 \end_layout
21241
21242 \end_inset
21243
21244  
21245 \begin_inset LatexCommand label
21246 name "sec:Notas-en-LyX"
21247
21248 \end_inset
21249
21250
21251 \begin_inset LatexCommand index
21252 name "Notas ! Notas en LyX"
21253
21254 \end_inset
21255
21256
21257 \begin_inset Note Note
21258 status collapsed
21259
21260 \begin_layout Standard
21261 El comando 
21262 \backslash
21263 texorpdfstring es suministrado por el paquete LaTeX hyperref para evitar
21264  que los enlaces se muestren erróneamente en los marcadores PDF.
21265  Para más información sobre esto mira en 
21266 \begin_inset LatexCommand cite
21267 key "hyperref"
21268
21269 \end_inset
21270
21271 .
21272 \end_layout
21273
21274 \end_inset
21275
21276
21277 \end_layout
21278
21279 \begin_layout Standard
21280 Las notas se insertan con el botón 
21281 \begin_inset Graphics
21282         filename ../../images/note-insert.xpm
21283         scale 85
21284
21285 \end_inset
21286
21287  o con el menú 
21288 \family sans
21289 Insertar\SpecialChar \menuseparator
21290 Nota
21291 \family default
21292 .
21293  Hay tres tipos de notas:
21294 \end_layout
21295
21296 \begin_layout Description
21297 Nota\InsetSpace ~
21298 LyX Este tipo es para notas internas que no han de aparecer en la salida.
21299  Su cuadro se muestra como este:
21300 \newline
21301
21302 \newline
21303
21304 \begin_inset Graphics
21305         filename clipart/NotaLyXImagenQt4.png
21306         display none
21307         scale 85
21308
21309 \end_inset
21310
21311  
21312 \begin_inset Note Note
21313 status collapsed
21314
21315 \begin_layout Standard
21316 Este es un texto en un recuadro que no se muestra en la salida.
21317 \end_layout
21318
21319 \end_inset
21320
21321
21322 \end_layout
21323
21324 \begin_layout Description
21325 Comentario Esta nota tampoco se muestra en la salida pero aparece como un
21326  comentario de LaTeX, cuando exportas el documento a LaTeX vía menú 
21327 \family sans
21328 Archivo\SpecialChar \menuseparator
21329 Exportar\SpecialChar \menuseparator
21330 LaTeX (pdflatex) / LaTeX (plain)
21331 \family default
21332 .
21333  Su recuadro se ve así:
21334 \newline
21335
21336 \newline
21337
21338 \begin_inset Graphics
21339         filename clipart/ComentNotaImagenQt4.png
21340         display none
21341         scale 85
21342
21343 \end_inset
21344
21345  
21346 \begin_inset Note Comment
21347 status collapsed
21348
21349 \begin_layout Standard
21350 Una nota comentario que solo aparece como comentario en archivos LaTeX.
21351 \end_layout
21352
21353 \end_inset
21354
21355
21356 \end_layout
21357
21358 \begin_layout Description
21359 Resaltado\InsetSpace ~
21360 en\InsetSpace ~
21361 gris Esta nota aparece en la salida como texto resaltado en gris.
21362  Su recuadro se parece a este:
21363 \newline
21364
21365 \newline
21366
21367 \begin_inset Graphics
21368         filename clipart/GrisNotaImagenQt4.png
21369         display none
21370         scale 85
21371
21372 \end_inset
21373
21374
21375 \newline
21376
21377 \begin_inset ERT
21378 status collapsed
21379
21380 \begin_layout Standard
21381
21382
21383 \backslash
21384 renewenvironment{lyxgreyedout}
21385 \end_layout
21386
21387 \begin_layout Standard
21388
21389 {
21390 \backslash
21391 textcolor[gray]{0.8}
21392 \backslash
21393 bgroup}{
21394 \backslash
21395 egroup}
21396 \end_layout
21397
21398 \end_inset
21399
21400
21401 \begin_inset Note Greyedout
21402 status open
21403
21404 \begin_layout Standard
21405 Este es el texto
21406 \begin_inset Foot
21407 status open
21408
21409 \begin_layout Standard
21410 Esto es un ejemplo de nota al pie en una nota resaltada en gris.
21411 \end_layout
21412
21413 \end_inset
21414
21415  de un comentario que se muestra resaltado en gris.
21416 \end_layout
21417
21418 \end_inset
21419
21420
21421 \begin_inset ERT
21422 status collapsed
21423
21424 \begin_layout Standard
21425
21426
21427 \backslash
21428 renewenvironment{lyxgreyedout}
21429 \end_layout
21430
21431 \begin_layout Standard
21432
21433 {
21434 \backslash
21435 textcolor{blue}
21436 \backslash
21437 bgroup}{
21438 \backslash
21439 egroup}
21440 \end_layout
21441
21442 \end_inset
21443
21444
21445 \begin_inset Note Note
21446 status collapsed
21447
21448 \begin_layout Standard
21449 La nota resaltada en gris se ha redefinido aquí para mostrarla con la definición
21450  original de LyX, ya que en el preámbulo de este documento se han redefinido
21451  estas notas para que salgan en azul, como se indica más adelante.
21452 \end_layout
21453
21454 \end_inset
21455
21456
21457 \newline
21458
21459 \newline
21460 Como se ve en el ejemplo, la primera línea de las notas resaltadas en gris
21461  está un poco sangrada, y por otra parte pueden tener notas al pie.
21462 \end_layout
21463
21464 \begin_layout Description
21465 Enmarcado Este tipo de notas aparecerá en la salida como un texto enmarcado.
21466  Su recuadro se verá como este:
21467 \newline
21468
21469 \newline
21470
21471 \family roman
21472 \series medium
21473
21474 \begin_inset Graphics
21475         filename clipart/NotaEnmarcadaImg.png
21476         display none
21477
21478 \end_inset
21479
21480
21481 \family default
21482 \series default
21483  
21484 \family roman
21485 \series medium
21486
21487 \begin_inset Note Framed
21488 status open
21489
21490 \begin_layout Standard
21491
21492 \family roman
21493 Este texto en un cuadro de nota se verá enmarcado en la salida.
21494 \end_layout
21495
21496 \end_inset
21497
21498
21499 \family default
21500 \series default
21501  
21502 \family roman
21503 \series medium
21504
21505 \family default
21506 \series default
21507 diferencia de los cuadros enmarcados
21508 \begin_inset Foot
21509 status collapsed
21510
21511 \begin_layout Standard
21512 Los cuadros enmarcados se describen en la sección\InsetSpace ~
21513
21514 \begin_inset LatexCommand ref
21515 reference "sec:Cuadros-Enmarcados"
21516
21517 \end_inset
21518
21519
21520 \end_layout
21521
21522 \end_inset
21523
21524 , este marco emplea siempre la anchura total de página y la nota va en su
21525  propio párrafo.
21526 \end_layout
21527
21528 \begin_layout Description
21529 Sombreado Este tipo de nota se verá en la salida con un fondo de color rojo.
21530  Su recuadro se verá como este:
21531 \newline
21532
21533 \newline
21534
21535 \family roman
21536 \series medium
21537
21538 \begin_inset Graphics
21539         filename clipart/NotaSombreadaImg.png
21540         display none
21541
21542 \end_inset
21543
21544  
21545 \begin_inset Note Shaded
21546 status open
21547
21548 \begin_layout Standard
21549
21550 \family roman
21551 Este texto en un cuadro de nota se verá en la salida sobre fondo en rojo.
21552 \end_layout
21553
21554 \end_inset
21555
21556  A diferencia de los cuadros coloreados
21557 \family default
21558 \series default
21559
21560 \begin_inset Foot
21561 status collapsed
21562
21563 \begin_layout Standard
21564 Los cuadros coloreados se describen en la sección\InsetSpace ~
21565
21566 \begin_inset LatexCommand ref
21567 reference "sec:Cuadros-Coloreados"
21568
21569 \end_inset
21570
21571 .
21572 \end_layout
21573
21574 \end_inset
21575
21576 , este cuadro de nota siempre usa toda la anchura de página y va en su propio
21577  párrafo.
21578 \end_layout
21579
21580 \begin_layout Standard
21581 \begin_inset VSpace bigskip
21582 \end_inset
21583
21584 Si usas el botón de la barra de herramientas para insertar notas, se inserta
21585  una 
21586 \family sans
21587 Nota\InsetSpace ~
21588 LyX
21589 \family default
21590 .
21591  Puedes cambiar entre los tres tipos de nota con cilc-derecha sobre el recuadro.
21592  
21593 \family roman
21594 \series medium
21595 \bar no
21596 Si quieres convertir un texto presente a nota, márcalo y pincha sobre el
21597  botón de herramienta 
21598 \family sans
21599 \series default
21600 \bar default
21601 nota
21602 \family default
21603 .
21604 \end_layout
21605
21606 \begin_layout Standard
21607 \begin_inset VSpace bigskip
21608 \end_inset
21609
21610 Se puede cambiar el color del 
21611 \family sans
21612 Resaltado en gris
21613 \family default
21614  poniendo en el preámbulo el comando:
21615 \end_layout
21616
21617 \begin_layout Standard
21618
21619 \series bold
21620
21621 \backslash
21622 renewenvironment{lyxgreyedout}
21623 \newline
21624
21625 \begin_inset ERT
21626 status collapsed
21627
21628 \begin_layout Standard
21629
21630
21631 \backslash
21632 hphantom{ }
21633 \end_layout
21634
21635 \end_inset
21636
21637 {
21638 \backslash
21639 textcolor{color}
21640 \backslash
21641 bgroup}{
21642 \backslash
21643 egroup}
21644 \end_layout
21645
21646 \begin_layout Standard
21647 Los colores disponibles y el método para definir nuestros propios colores
21648  se explica en la sección\InsetSpace ~
21649
21650 \begin_inset LatexCommand ref
21651 reference "sec:Tablas-Coloreadas"
21652
21653 \end_inset
21654
21655 .
21656 \end_layout
21657
21658 \begin_layout Standard
21659 Las notas en azul en este documento se han hecho con notas del tipo 
21660 \family sans
21661 Resaltado en gris
21662 \family default
21663  pero definiendo el color del texto en azul.
21664 \end_layout
21665
21666 \begin_layout Standard
21667 \begin_inset VSpace bigskip
21668 \end_inset
21669
21670
21671 \end_layout
21672
21673 \begin_layout Standard
21674 El estilo de texto en las notas de tipo 
21675 \family sans
21676 Enmarcado
21677 \family default
21678  y 
21679 \family sans
21680 Sombreado
21681 \family default
21682  se puede establecer en el diálogo 
21683 \family sans
21684 Estilo del texto.
21685 \end_layout
21686
21687 \begin_layout Standard
21688 El grosor predeterminado del marco en las notas 
21689 \family sans
21690 Enmarcadas
21691 \family default
21692  es 0.4\InsetSpace \thinspace{}
21693 pt; se puede cambiar con el comando 
21694 \backslash
21695
21696 \series bold
21697 FrameRule
21698 \series default
21699 .
21700  El espacio entre el contenido y el marco es 9
21701 \series bold
21702 \InsetSpace \thinspace{}
21703
21704 \series default
21705 pt por defecto; se puede cambiar con 
21706 \series bold
21707
21708 \backslash
21709 FrameSep
21710 \series default
21711 .
21712  Por ejemplo, el marco de la siguiente nota 
21713 \family sans
21714 Enmarcada
21715 \family default
21716  está hecho con los comandos ERT
21717 \series bold
21718  
21719 \end_layout
21720
21721 \begin_layout Standard
21722
21723 \series bold
21724
21725 \backslash
21726 FrameRule 5pt 
21727 \backslash
21728 FrameSep 0.5cm
21729 \end_layout
21730
21731 \begin_layout Standard
21732 \begin_inset ERT
21733 status collapsed
21734
21735 \begin_layout Standard
21736
21737
21738 \backslash
21739 FrameRule 5pt 
21740 \backslash
21741 FrameSep 0.5cm
21742 \end_layout
21743
21744 \end_inset
21745
21746
21747 \begin_inset Note Framed
21748 status open
21749
21750 \begin_layout Standard
21751 Texto en una nota 
21752 \family sans
21753 Enmarcada
21754 \family default
21755 .
21756 \end_layout
21757
21758 \end_inset
21759
21760
21761 \begin_inset ERT
21762 status collapsed
21763
21764 \begin_layout Standard
21765
21766
21767 \backslash
21768 FrameRule 0.4pt 
21769 \backslash
21770 FrameSep 9pt
21771 \end_layout
21772
21773 \end_inset
21774
21775
21776 \end_layout
21777
21778 \begin_layout Standard
21779 \begin_inset VSpace bigskip
21780 \end_inset
21781
21782
21783 \end_layout
21784
21785 \begin_layout Standard
21786 Para las notas 
21787 \family sans
21788 Sombreadas
21789 \family default
21790  el espacio entre el contenido y el borde es 3\InsetSpace \thinspace{}
21791 pt por defecto; se puede cambiar
21792  con 
21793 \series bold
21794
21795 \backslash
21796 fboxsep
21797 \series default
21798 .
21799 \newline
21800 El color rojo predeterminado se puede cambiar con el comando 
21801 \series bold
21802
21803 \backslash
21804 def\SpecialChar \textcompwordmark{}
21805 inecolor{shadebox}
21806 \series default
21807 .
21808  El esquema del comando 
21809 \series bold
21810
21811 \backslash
21812 def\SpecialChar \textcompwordmark{}
21813 inecolor
21814 \series default
21815  se explica en la sección\InsetSpace ~
21816
21817 \begin_inset LatexCommand ref
21818 reference "sec:Tablas-Coloreadas"
21819
21820 \end_inset
21821
21822
21823 \begin_inset Foot
21824 status collapsed
21825
21826 \begin_layout Standard
21827 Observa que 
21828 \series bold
21829
21830 \backslash
21831 def\SpecialChar \textcompwordmark{}
21832 inecolor 
21833 \series default
21834 requiere el paquete LaTeX 
21835 \series bold
21836 color
21837 \series default
21838  en el preámbulo,  véase la sección
21839 \series bold
21840 \InsetSpace ~
21841
21842 \begin_inset LatexCommand ref
21843 reference "sec:Cuadros-Coloreados"
21844
21845 \end_inset
21846
21847
21848 \series default
21849 .
21850
21851 \series bold
21852  
21853 \end_layout
21854
21855 \end_inset
21856
21857 .
21858 \end_layout
21859
21860 \begin_layout Standard
21861 Por ejemplo, la siguiente nota 
21862 \family sans
21863 Sombreada
21864 \family default
21865  se ha hecho con los comandos ERT
21866 \end_layout
21867
21868 \begin_layout Standard
21869
21870 \series bold
21871
21872 \backslash
21873 fboxsep 0.5cm
21874 \newline
21875
21876 \backslash
21877 def\SpecialChar \textcompwordmark{}
21878 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21879 \end_layout
21880
21881 \begin_layout Standard
21882 \begin_inset ERT
21883 status open
21884
21885 \begin_layout Standard
21886
21887
21888 \backslash
21889 fboxsep 0.5cm
21890 \end_layout
21891
21892 \end_inset
21893
21894
21895 \begin_inset ERT
21896 status open
21897
21898 \begin_layout Standard
21899
21900
21901 \backslash
21902 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21903 \end_layout
21904
21905 \end_inset
21906
21907
21908 \begin_inset Note Shaded
21909 status open
21910
21911 \begin_layout Standard
21912
21913 \color yellow
21914 Texto amarillo en una nota 
21915 \family sans
21916 Sombreada
21917 \family default
21918  \InsetSpace ~
21919 con fondo verde oscuro.
21920 \end_layout
21921
21922 \end_inset
21923
21924
21925 \begin_inset ERT
21926 status collapsed
21927
21928 \begin_layout Standard
21929
21930
21931 \backslash
21932 fboxsep 3pt
21933 \end_layout
21934
21935 \end_inset
21936
21937
21938 \begin_inset ERT
21939 status collapsed
21940
21941 \begin_layout Standard
21942
21943
21944 \backslash
21945 definecolor{shadecolor}{rgb}{1,0,0}
21946 \end_layout
21947
21948 \end_inset
21949
21950
21951 \end_layout
21952
21953 \begin_layout Section
21954 Notas al pie
21955 \begin_inset LatexCommand label
21956 name "sec:Notas-al-pie"
21957
21958 \end_inset
21959
21960
21961 \begin_inset LatexCommand index
21962 name "Notas ! al Pie"
21963
21964 \end_inset
21965
21966
21967 \begin_inset LatexCommand index
21968 name "Notas al Pie"
21969
21970 \end_inset
21971
21972
21973 \end_layout
21974
21975 \begin_layout Standard
21976 Las notas al pie se insertan con el botón 
21977 \begin_inset Graphics
21978         filename ../../images/footnote-insert.xpm
21979         scale 85
21980
21981 \end_inset
21982
21983  o el menú 
21984 \family sans
21985 Insertar\SpecialChar \menuseparator
21986 Nota\InsetSpace ~
21987 al\InsetSpace ~
21988 pie
21989 \family default
21990 .
21991  
21992 \family roman
21993 \series medium
21994 \bar no
21995 Aparece un recuadro como este:
21996 \family default
21997 \series default
21998 \bar default
21999  
22000 \begin_inset Graphics
22001         filename clipart/notapieQt4.png
22002         scale 80
22003
22004 \end_inset
22005
22006  
22007 \family roman
22008 \series medium
22009 \bar no
22010 donde puedes introducir el texto.
22011  Si quieres convertir un texto existente en nota al pie, márcalo y pincha
22012  sobre el
22013 \family default
22014 \series default
22015 \bar default
22016  
22017 \family roman
22018 \series medium
22019 \bar no
22020 botón
22021 \family default
22022 \series default
22023 \bar default
22024 .
22025 \end_layout
22026
22027 \begin_layout Standard
22028 Aquí hay un ejemplo de nota al pie:
22029 \family roman
22030 \series medium
22031 \bar no
22032
22033 \begin_inset Foot
22034 status open
22035
22036 \begin_layout Standard
22037 \begin_inset LatexCommand label
22038 name "pie:Esto-es-una"
22039
22040 \end_inset
22041
22042 Ejemplo de nota al pie.
22043 \end_layout
22044
22045 \end_inset
22046
22047
22048 \family default
22049 \series default
22050 \bar default
22051
22052 \begin_inset ERT
22053 status collapsed
22054
22055 \begin_layout Standard
22056
22057
22058 \backslash
22059 newcounter{MyRepeatFoot}
22060 \end_layout
22061
22062 \begin_layout Standard
22063
22064
22065 \backslash
22066 setcounter{MyRepeatFoot}{
22067 \backslash
22068 thefootnote}
22069 \end_layout
22070
22071 \end_inset
22072
22073
22074 \end_layout
22075
22076 \begin_layout Standard
22077 En la salida, el pie se muestra como número exponente en el lugar del texto
22078  donde se coloca el recuadro.
22079  El texto se coloca al final de la página actual.
22080  Los números de las notas son calculados por LaTeX, y son consecutivos.
22081  Si comienza o no el recuento en cada capítulo depende de la clase de documento.
22082 \end_layout
22083
22084 \begin_layout Standard
22085 Las notas al pie pueden referenciarse como flotantes: inserta una etiqueta
22086  en la nota y pon una referencia cruzada a esta etiqueta en el texto como
22087  se describe en la sección\InsetSpace ~
22088
22089 \begin_inset LatexCommand ref
22090 reference "sec:Referencias-a-Flotantes"
22091
22092 \end_inset
22093
22094 .
22095 \newline
22096 Esto es una referencia cruzada a la Nota al pie\InsetSpace ~
22097
22098 \begin_inset LatexCommand ref
22099 reference "pie:Esto-es-una"
22100
22101 \end_inset
22102
22103 .
22104 \newline
22105
22106 \begin_inset Note Greyedout
22107 status collapsed
22108
22109 \begin_layout Standard
22110
22111 \series bold
22112 Nota:
22113 \series default
22114  LyX no suministra prefijos para etiquetas en notas al pie, así que has
22115  de insertar un prefijo, p.\InsetSpace \thinspace{}
22116 e.\InsetSpace ~
22117
22118 \family sans
22119
22120 \begin_inset Quotes eld
22121 \end_inset
22122
22123 pie:
22124 \family default
22125
22126 \begin_inset Quotes erd
22127 \end_inset
22128
22129  manualmente cuando quieras usar el estilo 
22130 \family sans
22131 Referencia\InsetSpace ~
22132 con\InsetSpace ~
22133 formato
22134 \family default
22135 .
22136 \end_layout
22137
22138 \end_inset
22139
22140
22141 \end_layout
22142
22143 \begin_layout Standard
22144 \begin_inset VSpace defskip
22145 \end_inset
22146
22147 Para poner notas al pie en tablas, tienes que usar minipáginas, ver sección\InsetSpace ~
22148
22149 \begin_inset LatexCommand ref
22150 reference "sec:Minipáginas"
22151
22152 \end_inset
22153
22154 .
22155  Los pies en tablas largas en la sección\InsetSpace ~
22156
22157 \begin_inset LatexCommand ref
22158 reference "sub:Notas-al-pie-en-Tablas-Largas"
22159
22160 \end_inset
22161
22162 .
22163 \end_layout
22164
22165 \begin_layout Standard
22166 \begin_inset VSpace defskip
22167 \end_inset
22168
22169 Para crear solo una marca para una nota al pie, puedes usar el comando 
22170 \series bold
22171
22172 \backslash
22173 footnotemark[número]
22174 \series default
22175  en ERT.
22176  Esto se emplea si tienes la misma anotación varias veces en el texto pero
22177  no quieres imprimir el pie cada vez.
22178 \newline
22179 Como no sabes el número del pie que
22180  se repite mientras escribes el texto, tienes que guardarlo.
22181  Para el siguiente ejemplo de marca de pie, se han insertado estos comandos
22182  en ERT detrás de Nota\InsetSpace ~
22183 al\InsetSpace ~
22184 pie\InsetSpace ~
22185
22186 \begin_inset LatexCommand ref
22187 reference "pie:Esto-es-una"
22188
22189 \end_inset
22190
22191  para guardar el número de pie:
22192 \end_layout
22193
22194 \begin_layout Standard
22195
22196 \series bold
22197
22198 \backslash
22199 newcounter{MyRepeatFoot}
22200 \newline
22201
22202 \backslash
22203 setcounter{MyRepeatFoot}{
22204 \backslash
22205 thefootnote}
22206 \end_layout
22207
22208 \begin_layout Standard
22209 La marca de pie se crea entonces con el comando:
22210 \end_layout
22211
22212 \begin_layout Standard
22213
22214 \series bold
22215
22216 \backslash
22217 footnotemark[
22218 \backslash
22219 theMyRepeatFoot]
22220 \end_layout
22221
22222 \begin_layout Standard
22223 Aquí hay un ejemplo de marca de pie:
22224 \family roman
22225 \series medium
22226 \bar no
22227
22228 \begin_inset ERT
22229 status collapsed
22230
22231 \begin_layout Standard
22232
22233
22234 \backslash
22235 footnotemark[
22236 \backslash
22237 theMyRepeatFoot]
22238 \end_layout
22239
22240 \end_inset
22241
22242
22243 \end_layout
22244
22245 \begin_layout Subsection
22246 Numeración de Notas al Pie
22247 \begin_inset LatexCommand label
22248 name "sub:Numeración-de-Notas-al-Pie"
22249
22250 \end_inset
22251
22252
22253 \begin_inset LatexCommand index
22254 name "Notas al Pie ! Numeración"
22255
22256 \end_inset
22257
22258
22259 \end_layout
22260
22261 \begin_layout Standard
22262 Para reiniciar el número de pie a 1 en cada sección añade este 
22263 \family roman
22264 comando en el preámbulo:
22265 \end_layout
22266
22267 \begin_layout Standard
22268
22269 \series bold
22270
22271 \backslash
22272 @addtoreset{footnote}{section}
22273 \end_layout
22274
22275 \begin_layout Standard
22276 \begin_inset VSpace bigskip
22277 \end_inset
22278
22279 El siguiente comando en el preámbulo cambia el estilo de numeración del
22280  pie a números romanos en minúsculas:
22281 \end_layout
22282
22283 \begin_layout Standard
22284
22285 \series bold
22286
22287 \backslash
22288 renewcommand{
22289 \backslash
22290 thefootnote}{
22291 \backslash
22292 roman{footnote}}
22293 \end_layout
22294
22295 \begin_layout Standard
22296 \begin_inset ERT
22297 status collapsed
22298
22299 \begin_layout Standard
22300
22301
22302 \backslash
22303 renewcommand{
22304 \backslash
22305 thefootnote}{
22306 \backslash
22307 roman{footnote}}
22308 \end_layout
22309
22310 \end_inset
22311
22312  Nota al pie en números romanos:
22313 \begin_inset Foot
22314 status open
22315
22316 \begin_layout Standard
22317 Ejemplo de nota al pie en números romanos.
22318 \end_layout
22319
22320 \end_inset
22321
22322
22323 \begin_inset ERT
22324 status collapsed
22325
22326 \begin_layout Standard
22327
22328
22329 \backslash
22330 renewcommand{
22331 \backslash
22332 thefootnote}{
22333 \backslash
22334 arabic{footnote}}
22335 \end_layout
22336
22337 \end_inset
22338
22339
22340 \end_layout
22341
22342 \begin_layout Standard
22343 Para cambiar el estilo de número a romanos en mayúscula cambia el comando
22344  
22345 \series bold
22346
22347 \backslash
22348 roman
22349 \series default
22350  por 
22351 \series bold
22352
22353 \backslash
22354 Roman
22355 \series default
22356 .
22357  Para ordenar las notas al pie con letras mayúsculas o minúsculas usa 
22358 \series bold
22359
22360 \backslash
22361 Alph
22362 \series default
22363  o 
22364 \series bold
22365
22366 \backslash
22367 alph
22368 \series default
22369 , respectivamente.
22370  Para ordenar las notas al pie con símbolos usa 
22371 \series bold
22372
22373 \backslash
22374 fnsymbol
22375 \series default
22376 .
22377 \end_layout
22378
22379 \begin_layout Standard
22380 \begin_inset Note Greyedout
22381 status open
22382
22383 \begin_layout Standard
22384
22385 \series bold
22386 Nota:
22387 \series default
22388  Solo puedes ordenar hasta 26 pies con letras, porque está limitado a letras
22389  simples.
22390 \end_layout
22391
22392 \end_inset
22393
22394
22395 \newline
22396
22397 \begin_inset Note Greyedout
22398 status open
22399
22400 \begin_layout Standard
22401
22402 \series bold
22403 Nota:
22404 \series default
22405  Solo puedes ordenar hasta 9 pies con símbolos.
22406 \end_layout
22407
22408 \end_inset
22409
22410
22411 \end_layout
22412
22413 \begin_layout Standard
22414 Para volver al estilo de numeración predeterminado cuando has cambiado a
22415  otro estilo, usa 
22416 \series bold
22417
22418 \backslash
22419 arabic
22420 \series default
22421  en vez de 
22422 \series bold
22423
22424 \backslash
22425 roman
22426 \series default
22427  en el comando anterior.
22428 \end_layout
22429
22430 \begin_layout Standard
22431 \begin_inset VSpace bigskip
22432 \end_inset
22433
22434
22435 \end_layout
22436
22437 \begin_layout Standard
22438 Si quieres numerar notas al pie en el esquema 
22439 \begin_inset Quotes eld
22440 \end_inset
22441
22442 capítulo.nota
22443 \begin_inset Quotes erd
22444 \end_inset
22445
22446 , añade el siguiente comando al preámbulo del documento:
22447 \end_layout
22448
22449 \begin_layout Standard
22450
22451 \series bold
22452
22453 \backslash
22454 numberwithin{footnote}{chapter}
22455 \end_layout
22456
22457 \begin_layout Standard
22458 Para poder usar el comando 
22459 \series bold
22460
22461 \backslash
22462 numberwithin
22463 \series default
22464 , marca la opción 
22465 \family sans
22466 Usar
22467 \family default
22468 \InsetSpace ~
22469
22470 \family sans
22471 el
22472 \family default
22473 \InsetSpace ~
22474
22475 \family sans
22476 paquete
22477 \family default
22478 \InsetSpace ~
22479
22480 \family sans
22481 AMS
22482 \family default
22483  en la solapa 
22484 \family sans
22485 Ecuaciones
22486 \family default
22487  de la configuración del documento.
22488 \end_layout
22489
22490 \begin_layout Standard
22491 \begin_inset ERT
22492 status collapsed
22493
22494 \begin_layout Standard
22495
22496
22497 \backslash
22498 numberwithin{footnote}{chapter}
22499 \end_layout
22500
22501 \end_inset
22502
22503 Esto es otro ejemplo de nota al pie:
22504 \series bold
22505
22506 \begin_inset Foot
22507 status open
22508
22509 \begin_layout Standard
22510 Nota al pie numerada en el esquema 
22511 \begin_inset Quotes eld
22512 \end_inset
22513
22514 capítulo.nota
22515 \begin_inset Quotes erd
22516 \end_inset
22517
22518 .
22519 \end_layout
22520
22521 \end_inset
22522
22523
22524 \series default
22525
22526 \begin_inset ERT
22527 status collapsed
22528
22529 \begin_layout Standard
22530
22531
22532 \backslash
22533 numberwithin{footnote}{part}
22534 \end_layout
22535
22536 \end_inset
22537
22538
22539 \end_layout
22540
22541 \begin_layout Standard
22542 \begin_inset Note Greyedout
22543 status open
22544
22545 \begin_layout Standard
22546
22547 \series bold
22548 \lang english
22549 Note:
22550 \series default
22551  
22552 \series bold
22553
22554 \backslash
22555 numberwithin
22556 \series default
22557  always prints out the footnote number as arabic number; previous redefinitions
22558  to get non-arabic numbers are overwritten.
22559 \end_layout
22560
22561 \end_inset
22562
22563
22564 \end_layout
22565
22566 \begin_layout Standard
22567
22568 \lang english
22569 So to get for example the scheme 
22570 \begin_inset Quotes eld
22571 \end_inset
22572
22573 chapter.
22574 \backslash
22575 Roman{footnote}
22576 \begin_inset Quotes erd
22577 \end_inset
22578
22579 , use this command instead of 
22580 \series bold
22581
22582 \backslash
22583 numberwithin
22584 \series default
22585 :
22586 \end_layout
22587
22588 \begin_layout Standard
22589
22590 \series bold
22591 \lang english
22592
22593 \backslash
22594 renewcommand{
22595 \backslash
22596 thefootnote}{
22597 \backslash
22598 thechapter.
22599 \backslash
22600 Roman{footnote}}
22601 \end_layout
22602
22603 \begin_layout Subsection
22604 Colocación de Notas al Pie
22605 \begin_inset LatexCommand index
22606 name "Notas al Pie ! Colocación"
22607
22608 \end_inset
22609
22610
22611 \end_layout
22612
22613 \begin_layout Standard
22614 Si tienes varias notas al pie de una página, se muestran sin espacio vertical
22615  entre ellas al final de la página.
22616  Para hacerlas más legibles puedes añadir p.\InsetSpace \thinspace{}
22617 e.\InsetSpace ~
22618 1.5\InsetSpace \thinspace{}
22619 mm con el comando siguiente
22620  en el preámbulo:
22621 \end_layout
22622
22623 \begin_layout Standard
22624
22625 \series bold
22626
22627 \backslash
22628 let
22629 \backslash
22630 myFoot
22631 \backslash
22632 footnote
22633 \newline
22634
22635 \backslash
22636 renewcommand{
22637 \backslash
22638 footnote}[1]{
22639 \backslash
22640 myFoot{#1
22641 \backslash
22642 vspace{1.5mm}}}
22643 \end_layout
22644
22645 \begin_layout Standard
22646 \begin_inset VSpace bigskip
22647 \end_inset
22648
22649 En documentos a dos columnas la nota al pie aparece al final de cada columna,
22650  ver la figura\InsetSpace ~
22651
22652 \begin_inset LatexCommand ref
22653 reference "fig:Colocación-standard-del-pie"
22654
22655 \end_inset
22656
22657 .
22658  Si las notas debieran mostrarse sólo al final de la columna derecha, como
22659  en la figura\InsetSpace ~
22660
22661 \begin_inset LatexCommand ref
22662 reference "fig:Colocación-del-pie-en"
22663
22664 \end_inset
22665
22666 , usa el paquete LaTeX 
22667 \series bold
22668 ftnright
22669 \series default
22670
22671 \begin_inset LatexCommand index
22672 name "LaTeX-paquetes ! ftnright"
22673
22674 \end_inset
22675
22676  con este comando en el preámbulo:
22677 \end_layout
22678
22679 \begin_layout Standard
22680
22681 \series bold
22682
22683 \backslash
22684 usepackage{ftnright}
22685 \end_layout
22686
22687 \begin_layout Standard
22688 \begin_inset Float figure
22689 placement !h
22690 wide false
22691 sideways false
22692 status open
22693
22694 \begin_layout Standard
22695 \begin_inset ERT
22696 status collapsed
22697
22698 \begin_layout Standard
22699
22700
22701 \backslash
22702 framebox{
22703 \end_layout
22704
22705 \end_inset
22706
22707
22708 \begin_inset Graphics
22709         filename ../clipart/without_fntright.pdf
22710         width 100col%
22711
22712 \end_inset
22713
22714
22715 \begin_inset ERT
22716 status collapsed
22717
22718 \begin_layout Standard
22719
22720 }
22721 \end_layout
22722
22723 \end_inset
22724
22725
22726 \end_layout
22727
22728 \begin_layout Standard
22729 \begin_inset Caption
22730
22731 \begin_layout Standard
22732 \begin_inset LatexCommand label
22733 name "fig:Colocación-standard-del-pie"
22734
22735 \end_inset
22736
22737 Colocación estándar de notas al pie en documentos a dos columnas.
22738 \end_layout
22739
22740 \end_inset
22741
22742
22743 \end_layout
22744
22745 \end_inset
22746
22747
22748 \end_layout
22749
22750 \begin_layout Standard
22751 \begin_inset Float figure
22752 placement !h
22753 wide false
22754 sideways false
22755 status open
22756
22757 \begin_layout Standard
22758 \begin_inset ERT
22759 status collapsed
22760
22761 \begin_layout Standard
22762
22763
22764 \backslash
22765 framebox{
22766 \end_layout
22767
22768 \end_inset
22769
22770
22771 \begin_inset Graphics
22772         filename ../clipart/with_fntright.pdf
22773         width 100col%
22774
22775 \end_inset
22776
22777
22778 \begin_inset ERT
22779 status collapsed
22780
22781 \begin_layout Standard
22782
22783 }
22784 \end_layout
22785
22786 \end_inset
22787
22788
22789 \end_layout
22790
22791 \begin_layout Standard
22792 \begin_inset Caption
22793
22794 \begin_layout Standard
22795 \begin_inset LatexCommand label
22796 name "fig:Colocación-del-pie-en"
22797
22798 \end_inset
22799
22800 Colocación del pie en documentos a dos columnas cuando se usa el paquete
22801  LaTeX 
22802 \series bold
22803 ftnright
22804 \series default
22805 .
22806 \end_layout
22807
22808 \end_inset
22809
22810
22811 \end_layout
22812
22813 \end_inset
22814
22815
22816 \end_layout
22817
22818 \begin_layout Standard
22819 \begin_inset VSpace bigskip
22820 \end_inset
22821
22822 En alguna literatura científica es habitual reunir las notas para imprimirlas
22823  en un párrafo separado al final de la sección, como en la figura\InsetSpace ~
22824
22825 \begin_inset LatexCommand ref
22826 reference "fig:Notas-al-final----notas-al-pie"
22827
22828 \end_inset
22829
22830 .
22831  Para usar notas finales en vez de notas al pie , carga el paquete LaTeX
22832  
22833 \series bold
22834 endnotes
22835 \series default
22836
22837 \begin_inset LatexCommand index
22838 name "LaTeX-paquetes ! endnotes"
22839
22840 \end_inset
22841
22842  con las siguientes líneas en el preámbulo de tu documento:
22843 \end_layout
22844
22845 \begin_layout Standard
22846
22847 \series bold
22848
22849 \backslash
22850 usepackage{endnotes}
22851 \newline
22852
22853 \backslash
22854 let
22855 \backslash
22856 footnote
22857 \backslash
22858 endnote
22859 \end_layout
22860
22861 \begin_layout Standard
22862 Para insertar la colección de notas, escribe el comando
22863 \end_layout
22864
22865 \begin_layout Standard
22866
22867 \series bold
22868
22869 \backslash
22870 theendnotes
22871 \end_layout
22872
22873 \begin_layout Standard
22874 en ERT al final de una sección o capítulo.
22875 \end_layout
22876
22877 \begin_layout Standard
22878 \begin_inset Float figure
22879 wide false
22880 sideways false
22881 status open
22882
22883 \begin_layout Standard
22884 \align center
22885 \begin_inset ERT
22886 status collapsed
22887
22888 \begin_layout Standard
22889
22890
22891 \backslash
22892 framebox{
22893 \end_layout
22894
22895 \end_inset
22896
22897
22898 \begin_inset Graphics
22899         filename ../clipart/endnotes.pdf
22900
22901 \end_inset
22902
22903
22904 \begin_inset ERT
22905 status collapsed
22906
22907 \begin_layout Standard
22908
22909 }
22910 \end_layout
22911
22912 \end_inset
22913
22914
22915 \end_layout
22916
22917 \begin_layout Standard
22918 \begin_inset Caption
22919
22920 \begin_layout Standard
22921 \begin_inset LatexCommand label
22922 name "fig:Notas-al-final----notas-al-pie"
22923
22924 \end_inset
22925
22926 Notas al final: notas impresas en párrafo separado al final de la sección
22927  o del capítulo.
22928 \end_layout
22929
22930 \end_inset
22931
22932
22933 \end_layout
22934
22935 \end_inset
22936
22937
22938 \end_layout
22939
22940 \begin_layout Standard
22941 \begin_inset VSpace defskip
22942 \end_inset
22943
22944 La cabecera de párrafo para las notas finales no se traduce automáticamente
22945  al lenguaje del documento, hay que hacerlo manualmente.
22946   El siguiente comando de preámbulo traduce el nombre en inglés 
22947 \begin_inset Quotes eld
22948 \end_inset
22949
22950 Notes
22951 \begin_inset Quotes erd
22952 \end_inset
22953
22954  al español 
22955 \begin_inset Quotes eld
22956 \end_inset
22957
22958 Notas
22959 \begin_inset Quotes erd
22960 \end_inset
22961
22962 :
22963 \end_layout
22964
22965 \begin_layout Standard
22966
22967 \series bold
22968
22969 \backslash
22970 renewcommand{
22971 \backslash
22972 notesname}{Notas}
22973 \end_layout
22974
22975 \begin_layout Standard
22976 \begin_inset VSpace defskip
22977 \end_inset
22978
22979 La numeración de notas finales puede cambiarse como la de las notas al pie,
22980  como se describe en la sección\InsetSpace ~
22981
22982 \begin_inset LatexCommand ref
22983 reference "sub:Numeración-de-Notas-al-Pie"
22984
22985 \end_inset
22986
22987 ; sólo hay que reemplazar el comando 
22988 \series bold
22989
22990 \backslash
22991 thefootnote
22992 \series default
22993  por 
22994 \series bold
22995
22996 \backslash
22997 theendnote
22998 \series default
22999 .
23000  Para restablecer la numeración usa el comando 
23001 \series bold
23002
23003 \backslash
23004 @addtoreset
23005 \series default
23006  como se describe en la sección\InsetSpace ~
23007
23008 \begin_inset LatexCommand ref
23009 reference "sub:Numeración-de-Notas-al-Pie"
23010
23011 \end_inset
23012
23013  y sustituye el parámetro de comando 
23014 \series bold
23015 footnote
23016 \series default
23017  por 
23018 \series bold
23019 endnote
23020 \series default
23021 .
23022 \end_layout
23023
23024 \begin_layout Standard
23025 Para crear solo una marca para una nota final, usa el comando 
23026 \series bold
23027
23028 \backslash
23029 endnotemark[número]
23030 \series default
23031  similar al comando 
23032 \series bold
23033
23034 \backslash
23035 footnotemark
23036 \series default
23037 , descrito en la sección\InsetSpace ~
23038
23039 \begin_inset LatexCommand ref
23040 reference "sec:Notas-al-pie"
23041
23042 \end_inset
23043
23044 .
23045 \end_layout
23046
23047 \begin_layout Standard
23048 \begin_inset VSpace bigskip
23049 \end_inset
23050
23051 Las notas al pie también pueden colocarse al margen de la página y la alineación
23052  del texto del pie también puede cambiarse, ver el paquete LaTeX 
23053 \series bold
23054 footmisc
23055 \series default
23056
23057 \begin_inset LatexCommand index
23058 name "LaTeX-paquetes ! footmisc"
23059
23060 \end_inset
23061
23062
23063 \begin_inset LatexCommand cite
23064 key "footmisc"
23065
23066 \end_inset
23067
23068  para más información.
23069 \end_layout
23070
23071 \begin_layout Standard
23072 Para otras posibilidades de diseño de notas al pie mira en libros de LaTeX,
23073  
23074 \begin_inset LatexCommand cite
23075 key "latexcompanion,latexguide,latexbook"
23076
23077 \end_inset
23078
23079 .
23080 \end_layout
23081
23082 \begin_layout Section
23083 Notas al Margen
23084 \begin_inset LatexCommand index
23085 name "Notas ! al Margen"
23086
23087 \end_inset
23088
23089
23090 \end_layout
23091
23092 \begin_layout Standard
23093 Las notas al margen se ven y se comportan en LyX como notas al pie.
23094  Se insertan con el menú 
23095 \family sans
23096 Insertar\SpecialChar \menuseparator
23097 Nota\InsetSpace ~
23098 al\InsetSpace ~
23099 margen
23100 \family default
23101  o el botón 
23102 \begin_inset Graphics
23103         filename ../../images/marginalnote-insert.xpm
23104         scale 85
23105
23106 \end_inset
23107
23108 .
23109  Aparece un cuadro gris con la etiqueta en rojo 
23110 \family roman
23111 \series medium
23112
23113 \begin_inset Quotes eld
23114 \end_inset
23115
23116 margen
23117 \begin_inset Quotes erd
23118 \end_inset
23119
23120  en el que puedes escribir el texto de la nota.
23121 \end_layout
23122
23123 \begin_layout Standard
23124 Al lado hay un ejemplo de nota al margen.
23125 \family roman
23126 \series medium
23127
23128 \begin_inset Marginal
23129 status open
23130
23131 \begin_layout Standard
23132 Esto es una nota al margen.
23133 \end_layout
23134
23135 \end_inset
23136
23137
23138 \end_layout
23139
23140 \begin_layout Standard
23141 Estas notas salen en el margen derecho en documentos a una cara.
23142  En documentos a doble cara se muestran en el margen externo ---izquierdo
23143  en páginas pares, derecho en páginas impares---.
23144  El texto de las notas se ajusta a la parte opuesta al margen ---se ajusta
23145  a la derecha si la nota aparece en el margen izquierdo---.
23146  La primera línea de la nota se sitúa en la posición de la línea del texto
23147  en la que se inserta en el documento.
23148 \end_layout
23149
23150 \begin_layout Standard
23151 \begin_inset VSpace bigskip
23152 \end_inset
23153
23154 Para colocar la nota en el margen interno añade el comando
23155 \end_layout
23156
23157 \begin_layout Standard
23158
23159 \series bold
23160
23161 \backslash
23162 reversemarginpar
23163 \end_layout
23164
23165 \begin_layout Standard
23166 en ERT antes de la nota.
23167  La nueva colocación es válida para todas las siguientes notas al margen.
23168 \begin_inset ERT
23169 status collapsed
23170
23171 \begin_layout Standard
23172
23173
23174 \backslash
23175 reversemarginpar 
23176 \end_layout
23177
23178 \end_inset
23179
23180
23181 \begin_inset Marginal
23182 status open
23183
23184 \begin_layout Standard
23185 Esto es una nota en el margen interno.
23186 \end_layout
23187
23188 \end_inset
23189
23190
23191 \series bold
23192
23193 \newline
23194
23195 \series default
23196
23197 \begin_inset Note Greyedout
23198 status open
23199
23200 \begin_layout Standard
23201
23202 \series bold
23203 Nota:
23204 \series default
23205  A veces no hay espacio suficiente en el margen interno, por lo que la nota
23206  no se mostrará correctamente en la salida.
23207 \end_layout
23208
23209 \end_inset
23210
23211
23212 \end_layout
23213
23214 \begin_layout Standard
23215 \begin_inset ERT
23216 status collapsed
23217
23218 \begin_layout Standard
23219
23220
23221 \backslash
23222 normalmarginpar 
23223 \end_layout
23224
23225 \end_inset
23226
23227 Para volver a la ubicación predeterminada inserta el comando
23228 \end_layout
23229
23230 \begin_layout Standard
23231
23232 \series bold
23233
23234 \backslash
23235 normalmarginpar
23236 \end_layout
23237
23238 \begin_layout Standard
23239 en ERT.
23240 \newline
23241  
23242 \begin_inset Note Greyedout
23243 status open
23244
23245 \begin_layout Standard
23246
23247 \series bold
23248 Nota:
23249 \series default
23250  El comando se ignora si en el mismo párrafo está también presente el comando
23251  
23252 \series bold
23253
23254 \backslash
23255 reversemarginpar
23256 \series default
23257 .
23258 \end_layout
23259
23260 \end_inset
23261
23262
23263 \end_layout
23264
23265 \begin_layout Standard
23266 \begin_inset VSpace bigskip
23267 \end_inset
23268
23269
23270 \family roman
23271 \series medium
23272
23273 \begin_inset Marginal
23274 status open
23275
23276 \begin_layout Standard
23277 PalabraMuyLargaAlMargen no partida con guión.
23278 \end_layout
23279
23280 \end_inset
23281
23282
23283 \family default
23284 \series default
23285 Como en el caso descrito en la sección\InsetSpace ~
23286
23287 \begin_inset LatexCommand ref
23288 reference "sub:Líneas-Múltiples-en"
23289
23290 \end_inset
23291
23292 , una palabra larga no puede partirse con guión cuando es la primera en
23293  la nota al margen.
23294  Para evitar esto, inserta el comando
23295 \end_layout
23296
23297 \begin_layout Standard
23298
23299 \series bold
23300
23301 \backslash
23302 hspace{0pt}
23303 \end_layout
23304
23305 \begin_layout Standard
23306 en ERT antes de la palabra
23307 \family roman
23308 \series medium
23309 .
23310 \begin_inset Marginal
23311 status open
23312
23313 \begin_layout Standard
23314 \begin_inset ERT
23315 status collapsed
23316
23317 \begin_layout Standard
23318
23319
23320 \backslash
23321 hspace{0pt}
23322 \end_layout
23323
23324 \end_inset
23325
23326 PalabraMuyLargaAlMargen partida con guión.
23327 \end_layout
23328
23329 \end_inset
23330
23331
23332 \end_layout
23333
23334 \begin_layout Standard
23335 \begin_inset VSpace bigskip
23336 \end_inset
23337
23338
23339 \end_layout
23340
23341 \begin_layout Standard
23342 \begin_inset Note Greyedout
23343 status open
23344
23345 \begin_layout Standard
23346
23347 \series bold
23348 Nota:
23349 \series default
23350  Normalmente no pueden utilizarse notas al margen en tablas, flotantes,
23351  y notas al pie.
23352 \end_layout
23353
23354 \end_inset
23355
23356
23357 \end_layout
23358
23359 \begin_layout Standard
23360 \begin_inset VSpace bigskip
23361 \end_inset
23362
23363
23364 \end_layout
23365
23366 \begin_layout Standard
23367 \begin_inset ERT
23368 status collapsed
23369
23370 \begin_layout Standard
23371
23372
23373 \backslash
23374 ifmarginnote
23375 \end_layout
23376
23377 \end_inset
23378
23379
23380 \begin_inset Note Note
23381 status open
23382
23383 \begin_layout Standard
23384 La siguiente sección sólo se mostrará en pantalla si está instalado el paquete
23385  LaTeX 
23386 \series bold
23387 marginnote
23388 \series default
23389 .
23390 \end_layout
23391
23392 \end_inset
23393
23394
23395 \end_layout
23396
23397 \begin_layout Standard
23398 Esta restricción se puede salvar con el paquete LaTeX 
23399 \series bold
23400 marginnote
23401 \series default
23402
23403 \begin_inset LatexCommand index
23404 name "LaTeX-paquetes ! marginnote"
23405
23406 \end_inset
23407
23408 .
23409  Poniendo estas dos líneas en el preámbulo, el comando usado por LyX para
23410  notas al margen es redefinido para usar el comando provisto por el paquete
23411  
23412 \series bold
23413 marginnote
23414 \series default
23415 :
23416 \end_layout
23417
23418 \begin_layout Standard
23419
23420 \series bold
23421
23422 \backslash
23423 usepackage{marginnote}
23424 \newline
23425
23426 \backslash
23427 let
23428 \backslash
23429 marginpar
23430 \backslash
23431 marginnote
23432 \end_layout
23433
23434 \begin_layout Standard
23435 Esto se ha utilizado en el presente documento porque 
23436 \series bold
23437 marginnote
23438 \series default
23439  tiene una característica adicional útil: Puedes imponer un offset vertical
23440  a la nota.
23441  A veces esto hace falta si hay demasiadas notas juntas o para mejorar el
23442  diseño de la página.
23443  El offset se determina en LyX como ERT directamente tras la nota al margen
23444  en el esquema
23445 \end_layout
23446
23447 \begin_layout Standard
23448
23449 \series bold
23450 [offset]
23451 \end_layout
23452
23453 \begin_layout Standard
23454 donde offset es una longitud en una de las unidades listadas en la tabla\InsetSpace ~
23455
23456 \begin_inset LatexCommand ref
23457 reference "tab:Unidades"
23458
23459 \end_inset
23460
23461 .
23462  Un valor negativo desplaza la nota hacia arriba, un valor positivo hacia
23463  abajo.
23464  
23465 \family roman
23466 \series medium
23467 Por ejemplo la nota adjunta a esta línea de texto está desplazada 1.5\InsetSpace \thinspace{}
23468 cm arriba
23469  con el comando ERT 
23470 \begin_inset Quotes eld
23471 \end_inset
23472
23473
23474 \family default
23475 \series bold
23476 [-1.5cm]
23477 \family roman
23478 \series medium
23479
23480 \begin_inset Quotes erd
23481 \end_inset
23482
23483
23484 \begin_inset Marginal
23485 status open
23486
23487 \begin_layout Standard
23488 Esta nota está 1.5\InsetSpace \thinspace{}
23489 cm por encima de su posición original.
23490 \end_layout
23491
23492 \end_inset
23493
23494
23495 \family default
23496 \series default
23497
23498 \begin_inset ERT
23499 status collapsed
23500
23501 \begin_layout Standard
23502
23503 [-1.5cm]
23504 \end_layout
23505
23506 \end_inset
23507
23508
23509 \end_layout
23510
23511 \begin_layout Standard
23512 \begin_inset VSpace defskip
23513 \end_inset
23514
23515 Con 
23516 \series bold
23517 marginnote
23518 \series default
23519  también puedes cambiar la alineación del texto en el margen.
23520  Por ejemplo los comandos
23521 \end_layout
23522
23523 \begin_layout Standard
23524
23525 \series bold
23526
23527 \backslash
23528 renewcommand*{
23529 \backslash
23530 raggedleftmarginnote}{
23531 \backslash
23532 centering}
23533 \newline
23534
23535 \backslash
23536 renewcommand*{
23537 \backslash
23538 raggedrightmarginnote}{
23539 \backslash
23540 centering}
23541 \end_layout
23542
23543 \begin_layout Standard
23544 producen alineación centrada.
23545  
23546 \series bold
23547
23548 \backslash
23549 raggedleftmarginnote
23550 \series default
23551  identifica las notas que aparecen al lado izquierdo.
23552 \family roman
23553 \series medium
23554
23555 \begin_inset ERT
23556 status collapsed
23557
23558 \begin_layout Standard
23559
23560
23561 \backslash
23562 renewcommand*{
23563 \backslash
23564 raggedleftmarginnote}{
23565 \backslash
23566 centering}
23567 \end_layout
23568
23569 \begin_layout Standard
23570
23571
23572 \backslash
23573 renewcommand*{
23574 \backslash
23575 raggedrightmarginnote}{
23576 \backslash
23577 centering}
23578 \end_layout
23579
23580 \end_inset
23581
23582
23583 \begin_inset Marginal
23584 status open
23585
23586 \begin_layout Standard
23587 El texto de esta nota está centrado.
23588 \end_layout
23589
23590 \end_inset
23591
23592
23593 \family default
23594 \series default
23595  El valor predeterminado es 
23596 \end_layout
23597
23598 \begin_layout Standard
23599
23600 \series bold
23601
23602 \backslash
23603 renewcommand*{
23604 \backslash
23605 raggedleftmarginnote}{
23606 \backslash
23607 raggedleft}
23608 \newline
23609
23610 \backslash
23611 renewcommand*{
23612 \backslash
23613 raggedrightmarginnote}{
23614 \backslash
23615 raggedright}
23616 \family roman
23617 \series medium
23618
23619 \begin_inset ERT
23620 status collapsed
23621
23622 \begin_layout Standard
23623
23624
23625 \backslash
23626 renewcommand*{
23627 \backslash
23628 raggedleftmarginnote}{
23629 \backslash
23630 raggedleft}
23631 \end_layout
23632
23633 \begin_layout Standard
23634
23635
23636 \backslash
23637 renewcommand*{
23638 \backslash
23639 raggedrightmarginnote}{
23640 \backslash
23641 raggedright}
23642 \end_layout
23643
23644 \end_inset
23645
23646
23647 \end_layout
23648
23649 \begin_layout Standard
23650 \begin_inset VSpace defskip
23651 \end_inset
23652
23653 Para otras características de 
23654 \series bold
23655 marginnote
23656 \series default
23657  mira en su documentación 
23658 \begin_inset LatexCommand cite
23659 key "marginnote"
23660
23661 \end_inset
23662
23663 .
23664 \end_layout
23665
23666 \begin_layout Standard
23667 \begin_inset VSpace bigskip
23668 \end_inset
23669
23670 El diseño de las notas al margen puede ser redefinido.
23671  Por ejemplo, para crear una cabecera para todas las notas con el texto
23672  
23673 \begin_inset Quotes eld
23674 \end_inset
23675
23676
23677 \series bold
23678 \bar under
23679 ¡
23680 \family sans
23681 Atención
23682 \family default
23683 !
23684 \series default
23685 \bar default
23686
23687 \begin_inset Quotes erd
23688 \end_inset
23689
23690 , subrayado, sans-serif en negrita, añade lo siguiente en el preámbulo:
23691 \end_layout
23692
23693 \begin_layout Standard
23694
23695 \series bold
23696
23697 \backslash
23698 let
23699 \backslash
23700 myMarginpar
23701 \backslash
23702 marginpar
23703 \newline
23704
23705 \backslash
23706 renewcommand{
23707 \backslash
23708 marginpar}[1]{
23709 \backslash
23710 myMarginpar{%
23711 \newline
23712
23713 \begin_inset ERT
23714 status collapsed
23715
23716 \begin_layout Standard
23717
23718
23719 \backslash
23720 hphantom{ }
23721 \end_layout
23722
23723 \end_inset
23724
23725
23726 \backslash
23727 hspace{0pt}
23728 \backslash
23729 textsf{
23730 \backslash
23731 textbf{
23732 \backslash
23733 underbar{¡Atención!}}}%
23734 \newline
23735
23736 \begin_inset ERT
23737 status collapsed
23738
23739 \begin_layout Standard
23740
23741
23742 \backslash
23743 hphantom{ }
23744 \end_layout
23745
23746 \end_inset
23747
23748
23749 \backslash
23750 vspace{1.5mm}
23751 \backslash
23752
23753 \backslash
23754 #1}}
23755 \end_layout
23756
23757 \begin_layout Standard
23758
23759 \family roman
23760 \series medium
23761 \begin_inset ERT
23762 status collapsed
23763
23764 \begin_layout Standard
23765
23766
23767 \backslash
23768 let
23769 \backslash
23770 myMarginpar
23771 \backslash
23772 marginpar
23773 \end_layout
23774
23775 \begin_layout Standard
23776
23777
23778 \backslash
23779 renewcommand{
23780 \backslash
23781 marginpar}[1]{
23782 \backslash
23783 myMarginpar{%
23784 \end_layout
23785
23786 \begin_layout Standard
23787
23788    
23789 \backslash
23790 textsf{
23791 \backslash
23792 textbf{
23793 \backslash
23794 underbar{¡Atención!}}}%
23795 \end_layout
23796
23797 \begin_layout Standard
23798
23799    
23800 \backslash
23801 vspace{1.5mm}
23802 \backslash
23803
23804 \backslash
23805 #1}}
23806 \end_layout
23807
23808 \end_inset
23809
23810
23811 \begin_inset Marginal
23812 status open
23813
23814 \begin_layout Standard
23815 Esta es una nota con una cabecera definida.
23816 \end_layout
23817
23818 \end_inset
23819
23820
23821 \family default
23822 \series default
23823
23824 \begin_inset ERT
23825 status collapsed
23826
23827 \begin_layout Standard
23828
23829 [-1.5cm]
23830 \end_layout
23831
23832 \end_inset
23833
23834
23835 \family roman
23836 \series medium
23837
23838 \begin_inset ERT
23839 status collapsed
23840
23841 \begin_layout Standard
23842
23843
23844 \backslash
23845 renewcommand{
23846 \backslash
23847 marginpar}[1]{
23848 \backslash
23849 myMarginpar{#1}}
23850 \end_layout
23851
23852 \end_inset
23853
23854
23855 \family default
23856 \series default
23857
23858 \begin_inset Note Note
23859 status collapsed
23860
23861 \begin_layout Standard
23862 El formato de la nota al margen se ha cambiado solo para este ejemplo.
23863 \end_layout
23864
23865 \end_inset
23866
23867
23868 \end_layout
23869
23870 \begin_layout Standard
23871 \begin_inset ERT
23872 status collapsed
23873
23874 \begin_layout Standard
23875
23876
23877 \backslash
23878 else
23879 \end_layout
23880
23881 \end_inset
23882
23883
23884 \begin_inset Note Note
23885 status open
23886
23887 \begin_layout Standard
23888 Lo siguiente se mostrará en pantalla si no está instalado el paquete LaTeX
23889  
23890 \series bold
23891 marginnote
23892 \series default
23893 .
23894 \end_layout
23895
23896 \end_inset
23897
23898
23899 \end_layout
23900
23901 \begin_layout Standard
23902 Debes instalar el paquete LaTeX 
23903 \series bold
23904 marginnote
23905 \series default
23906  para ver la parte siguiente en la salida.
23907 \end_layout
23908
23909 \begin_layout Standard
23910 \begin_inset ERT
23911 status collapsed
23912
23913 \begin_layout Standard
23914
23915
23916 \backslash
23917 fi
23918 \end_layout
23919
23920 \end_inset
23921
23922
23923 \end_layout
23924
23925 \begin_layout Chapter
23926 Cuadros
23927 \end_layout
23928
23929 \begin_layout Section
23930 Introducción
23931 \begin_inset LatexCommand index
23932 name "Cuadros ! Introducción"
23933
23934 \end_inset
23935
23936
23937 \end_layout
23938
23939 \begin_layout Standard
23940 Los cuadros se emplean para dar formato a bloques de texto.
23941  Se pueden usar para escribir documentos con varios lenguajes, ver sección\InsetSpace ~
23942
23943 \begin_inset LatexCommand ref
23944 reference "sec:Minipáginas"
23945
23946 \end_inset
23947
23948 , enmarcar textos, ver sección\InsetSpace ~
23949
23950 \begin_inset LatexCommand ref
23951 reference "sec:Cuadros-Enmarcados"
23952
23953 \end_inset
23954
23955 , evitar la división de palabras, ver sección\InsetSpace ~
23956
23957 \begin_inset LatexCommand ref
23958 reference "sec:Evitar-la-Partición-con-Guiones"
23959
23960 \end_inset
23961
23962 , alinear texto, ver sección\InsetSpace ~
23963
23964 \begin_inset LatexCommand ref
23965 reference "sub:Alineación-Vertical"
23966
23967 \end_inset
23968
23969 , o para poner color de fondo a un texto, ver sección\InsetSpace ~
23970
23971 \begin_inset LatexCommand ref
23972 reference "sec:Cuadros-Coloreados"
23973
23974 \end_inset
23975
23976 .
23977 \end_layout
23978
23979 \begin_layout Standard
23980 Se insertan con el menú 
23981 \family sans
23982 Insertar\SpecialChar \menuseparator
23983 Cuadro
23984 \family default
23985 .
23986  Surge un recuadro gris con la etiqueta 
23987 \family sans
23988 Cuadro (Minipágina)
23989 \family default
23990
23991 \begin_inset Graphics
23992         filename clipart/CuadroMinipagQt4.png
23993         scale 75
23994         keepAspectRatio
23995
23996 \end_inset
23997
23998 .
23999  El tipo de cuadro se puede elegir al hacer clic-derecho sobre él.
24000  Sale un diálogo en el que 
24001 \family sans
24002 Cuadro
24003 \family default
24004 \InsetSpace ~
24005
24006 \family sans
24007 interior
24008 \family default
24009  permite escoger los tipos 
24010 \family sans
24011 Parbox (
24012 \family default
24013
24014 \begin_inset Quotes eld
24015 \end_inset
24016
24017
24018 \family sans
24019 Párrafo
24020 \family default
24021
24022 \begin_inset Quotes erd
24023 \end_inset
24024
24025
24026 \family sans
24027 )
24028 \family default
24029  y 
24030 \family sans
24031 Minipágina
24032 \family default
24033 .
24034  
24035 \family sans
24036 Minipágina
24037 \family default
24038  es el predeterminado para nuevos cuadros y se explica en la sección\InsetSpace ~
24039
24040 \begin_inset LatexCommand ref
24041 reference "sec:Minipáginas"
24042
24043 \end_inset
24044
24045 ; el tipo 
24046 \family sans
24047 Parbox
24048 \family default
24049  se describe en la sección\InsetSpace ~
24050
24051 \begin_inset LatexCommand ref
24052 reference "sec:Cuadros-de-Párrafo"
24053
24054 \end_inset
24055
24056 .
24057 \end_layout
24058
24059 \begin_layout Standard
24060 Los cuadros no se numeran y por tanto no se pueden referenciar como los
24061  flotantes o las notas al pie.
24062 \end_layout
24063
24064 \begin_layout Standard
24065 \begin_inset Note Greyedout
24066 status open
24067
24068 \begin_layout Standard
24069
24070 \series bold
24071 Nota:
24072 \series default
24073  Debido a un error en LyX hay que insertar un espacio protegido detrás de
24074  un cuadro si se desea separar con un espacio el cuadro y el texto siguiente.
24075 \end_layout
24076
24077 \end_inset
24078
24079
24080 \end_layout
24081
24082 \begin_layout Standard
24083 \begin_inset Note Greyedout
24084 status open
24085
24086 \begin_layout Standard
24087
24088 \series bold
24089 Nota:
24090 \series default
24091  Los cuadros no deben ser el ítem en un entorno 
24092 \family sans
24093 Enumeración
24094 \family default
24095  o 
24096 \family sans
24097 Descripción
24098 \family default
24099 .
24100 \end_layout
24101
24102 \end_inset
24103
24104
24105 \end_layout
24106
24107 \begin_layout Standard
24108 \begin_inset Note Greyedout
24109 status open
24110
24111 \begin_layout Standard
24112
24113 \series bold
24114 Nota:
24115 \series default
24116  Por razones desconocidas sólo se puede poner el tipo 
24117 \family sans
24118 Cuadro\InsetSpace ~
24119 interior
24120 \family default
24121  en 
24122 \family sans
24123 Ninguno
24124 \family default
24125  cuando se emplea un cuadro enmarcado.
24126  Los cuadros sin ningún tipo de 
24127 \family sans
24128 Cuadro\InsetSpace ~
24129 interior
24130 \family default
24131  y sin marcos se explican en la sección\InsetSpace ~
24132
24133 \begin_inset LatexCommand ref
24134 reference "sec:Evitar-la-Partición-con-Guiones"
24135
24136 \end_inset
24137
24138 .
24139 \end_layout
24140
24141 \end_inset
24142
24143
24144 \end_layout
24145
24146 \begin_layout Section
24147 Diálogo Cuadros
24148 \begin_inset LatexCommand label
24149 name "sec:Diálogo-Cuadros"
24150
24151 \end_inset
24152
24153
24154 \begin_inset LatexCommand index
24155 name "Cuadros ! Diálogo"
24156
24157 \end_inset
24158
24159
24160 \begin_inset LatexCommand index
24161 name "Cuadros ! Alineación"
24162
24163 \end_inset
24164
24165
24166 \end_layout
24167
24168 \begin_layout Standard
24169 En el diálogo puedes ajustar la geometría del cuadro en los campos 
24170 \family sans
24171 Ancho
24172 \family default
24173  y 
24174 \family sans
24175 Alto
24176 \family default
24177 .
24178  Las unidades disponibles para la geometría se explican en la tabla\InsetSpace ~
24179
24180 \begin_inset LatexCommand ref
24181 reference "tab:Unidades"
24182
24183 \end_inset
24184
24185 .
24186  El campo 
24187 \family sans
24188 Alto
24189 \family default
24190  ofrece los siguientes tamaños adicionales:
24191 \end_layout
24192
24193 \begin_layout Description
24194 Profundidad Este es el texto plano 
24195 \begin_inset Quotes eld
24196 \end_inset
24197
24198 alto
24199 \begin_inset Quotes erd
24200 \end_inset
24201
24202 .
24203  Ignora la profundidad total cuando hay múltiples líneas de texto en el
24204  cuadro:
24205 \newline
24206
24207 \newline
24208
24209 \newline
24210
24211 \begin_inset Box Boxed
24212 position "c"
24213 hor_pos "c"
24214 has_inner_box 1
24215 inner_pos "c"
24216 use_parbox 0
24217 width "12col%"
24218 special "none"
24219 height "1in"
24220 height_special "depth"
24221 status open
24222
24223 \begin_layout Standard
24224 \align center
24225 Cuadro con altura establecida en 1\InsetSpace \thinspace{}
24226 Profundidad
24227 \end_layout
24228
24229 \end_inset
24230
24231
24232 \newline
24233
24234 \newline
24235
24236 \end_layout
24237
24238 \begin_layout Description
24239 Alto Es la altura del texto que está dentro del cuadro.
24240  Un valor de, p.\InsetSpace \thinspace{}
24241 e.\InsetSpace ~
24242 2 para este tamaño fijará la altura del cuadro a 2 veces
24243  la altura del texto: 
24244 \begin_inset Box Boxed
24245 position "c"
24246 hor_pos "c"
24247 has_inner_box 1
24248 inner_pos "c"
24249 use_parbox 0
24250 width "20col%"
24251 special "none"
24252 height "2in"
24253 height_special "height"
24254 status open
24255
24256 \begin_layout Standard
24257 \align center
24258 Cuadro con altura puesta en 2\InsetSpace \thinspace{}
24259 Alto
24260 \end_layout
24261
24262 \end_inset
24263
24264
24265 \end_layout
24266
24267 \begin_layout Description
24268 Alto\InsetSpace ~
24269 Total Esto es el Alto\InsetSpace \thinspace{}
24270 +\InsetSpace \thinspace{}
24271 Profundidad: 
24272 \begin_inset Box Boxed
24273 position "c"
24274 hor_pos "c"
24275 has_inner_box 1
24276 inner_pos "c"
24277 use_parbox 0
24278 width "20col%"
24279 special "none"
24280 height "1in"
24281 height_special "totalheight"
24282 status open
24283
24284 \begin_layout Standard
24285 \align center
24286 Cuadro con altura puesta a 1\InsetSpace \thinspace{}
24287 Alto\InsetSpace ~
24288 total
24289 \end_layout
24290
24291 \end_inset
24292
24293
24294 \end_layout
24295
24296 \begin_layout Description
24297 Ancho Esto determina al ancho del cuadro como altura: 
24298 \begin_inset Box Boxed
24299 position "c"
24300 hor_pos "c"
24301 has_inner_box 1
24302 inner_pos "c"
24303 use_parbox 0
24304 width "12col%"
24305 special "none"
24306 height "1in"
24307 height_special "width"
24308 status open
24309
24310 \begin_layout Standard
24311 \align center
24312 Cuadro con altura puesta en 1\InsetSpace \thinspace{}
24313 Ancho
24314 \end_layout
24315
24316 \end_inset
24317
24318
24319 \end_layout
24320
24321 \begin_layout Standard
24322 \begin_inset VSpace bigskip
24323 \end_inset
24324
24325 Si has elegido un 
24326 \family sans
24327 Cuadro\InsetSpace ~
24328 interior
24329 \family default
24330 , la alineación vertical del cuadro puede ser:
24331 \end_layout
24332
24333 \begin_layout Description
24334 Superior Ejemplo de línea de texto.
24335  
24336 \begin_inset Box Boxed
24337 position "t"
24338 hor_pos "c"
24339 has_inner_box 1
24340 inner_pos "c"
24341 use_parbox 0
24342 width "12col%"
24343 special "none"
24344 height "1in"
24345 height_special "totalheight"
24346 status open
24347
24348 \begin_layout Standard
24349 \align center
24350 Cuadro alineado arriba.
24351 \end_layout
24352
24353 \end_inset
24354
24355 \InsetSpace ~
24356 Ejemplo de línea de texto.
24357 \end_layout
24358
24359 \begin_layout Description
24360 Medio Ejemplo de línea de texto.
24361  
24362 \begin_inset Box Boxed
24363 position "c"
24364 hor_pos "c"
24365 has_inner_box 1
24366 inner_pos "c"
24367 use_parbox 0
24368 width "12col%"
24369 special "none"
24370 height "1in"
24371 height_special "totalheight"
24372 status open
24373
24374 \begin_layout Standard
24375 \align center
24376 Cuadro alineado en medio.
24377 \end_layout
24378
24379 \end_inset
24380
24381 \InsetSpace ~
24382 Ejemplo de línea de texto.
24383 \end_layout
24384
24385 \begin_layout Description
24386 Inferior Ejemplo de línea de texto.
24387  
24388 \begin_inset Box Boxed
24389 position "b"
24390 hor_pos "c"
24391 has_inner_box 1
24392 inner_pos "c"
24393 use_parbox 0
24394 width "12col%"
24395 special "none"
24396 height "1in"
24397 height_special "totalheight"
24398 status open
24399
24400 \begin_layout Standard
24401 \align center
24402 Cuadro alineado abajo.
24403 \end_layout
24404
24405 \end_inset
24406
24407 \InsetSpace ~
24408 Ejemplo de línea de texto.
24409 \end_layout
24410
24411 \begin_layout Standard
24412 La alineación horizontal del cuadro puede establecerse en el diálogo de
24413  configuración de párrafo de LyX si colocas el cuadro en su propio párrafo.
24414 \end_layout
24415
24416 \begin_layout Standard
24417 \begin_inset VSpace bigskip
24418 \end_inset
24419
24420 Si has escogido un 
24421 \family sans
24422 Cuadro\InsetSpace ~
24423 interior
24424 \family default
24425 , el contenido puede alinearse verticalmente a:
24426 \end_layout
24427
24428 \begin_layout Description
24429 Superior Ejemplo de línea de texto.
24430  
24431 \begin_inset Box Boxed
24432 position "c"
24433 hor_pos "c"
24434 has_inner_box 1
24435 inner_pos "t"
24436 use_parbox 0
24437 width "12col%"
24438 special "none"
24439 height "1.5in"
24440 height_special "totalheight"
24441 status open
24442
24443 \begin_layout Standard
24444 \align center
24445 Cuadro con texto alineado arriba.
24446 \end_layout
24447
24448 \end_inset
24449
24450 \InsetSpace ~
24451 Ejemplo de línea de texto.
24452 \end_layout
24453
24454 \begin_layout Description
24455 Medio Ejemplo de línea de texto.
24456  
24457 \begin_inset Box Boxed
24458 position "c"
24459 hor_pos "c"
24460 has_inner_box 1
24461 inner_pos "c"
24462 use_parbox 0
24463 width "12col%"
24464 special "none"
24465 height "1.5in"
24466 height_special "totalheight"
24467 status open
24468
24469 \begin_layout Standard
24470 \align center
24471 Cuadro con texto alineado en medio.
24472 \end_layout
24473
24474 \end_inset
24475
24476 \InsetSpace ~
24477 Ejemplo de línea de texto.
24478 \end_layout
24479
24480 \begin_layout Description
24481 Inferior Ejemplo de línea de texto.
24482  
24483 \begin_inset Box Boxed
24484 position "c"
24485 hor_pos "c"
24486 has_inner_box 1
24487 inner_pos "b"
24488 use_parbox 0
24489 width "12col%"
24490 special "none"
24491 height "1.5in"
24492 height_special "totalheight"
24493 status open
24494
24495 \begin_layout Standard
24496 \align center
24497 Cuadro con texto alineado abajo.
24498 \end_layout
24499
24500 \end_inset
24501
24502 \InsetSpace ~
24503 Ejemplo de línea de texto.
24504 \end_layout
24505
24506 \begin_layout Description
24507 Estirado Ejemplo de línea de texto.
24508  
24509 \begin_inset Box Boxed
24510 position "c"
24511 hor_pos "c"
24512 has_inner_box 1
24513 inner_pos "s"
24514 use_parbox 0
24515 width "12col%"
24516 special "none"
24517 height "1.5in"
24518 height_special "totalheight"
24519 status open
24520
24521 \begin_layout Standard
24522 \align center
24523 Este texto
24524 \end_layout
24525
24526 \begin_layout Standard
24527 \align center
24528 está
24529 \end_layout
24530
24531 \begin_layout Standard
24532 \align center
24533 estirado.
24534 \end_layout
24535
24536 \end_inset
24537
24538 \InsetSpace ~
24539 Ejemplo de línea de texto.
24540 \end_layout
24541
24542 \begin_layout Standard
24543 Para estirar el contenido debe tener más de un párrafo.
24544  En el ejemplo anterior cada línea de texto está en un párrafo propio.
24545 \end_layout
24546
24547 \begin_layout Standard
24548 \begin_inset VSpace bigskip
24549 \end_inset
24550
24551 Para estirar horizontalmente el contenido usa el diálogo de párrafos de
24552  LyX cuando hayas escogido un 
24553 \family sans
24554 Cuadro\InsetSpace ~
24555 interior
24556 \family default
24557 .
24558 \end_layout
24559
24560 \begin_layout Standard
24561 \align center
24562 \begin_inset Box Boxed
24563 position "c"
24564 hor_pos "c"
24565 has_inner_box 1
24566 inner_pos "s"
24567 use_parbox 0
24568 width "15col%"
24569 special "none"
24570 height "1.25in"
24571 height_special "totalheight"
24572 status open
24573
24574 \begin_layout Standard
24575 \align left
24576 Cuadro
24577 \end_layout
24578
24579 \begin_layout Standard
24580 \align center
24581 con texto
24582 \end_layout
24583
24584 \begin_layout Standard
24585 \align right
24586 estirado
24587 \end_layout
24588
24589 \end_inset
24590
24591
24592 \end_layout
24593
24594 \begin_layout Standard
24595 Si no has establecido un 
24596 \family sans
24597 Cuadro\InsetSpace ~
24598 interior
24599 \family default
24600 , puedes alinear horizontalmente el contenido del cuadro en el diálogo de
24601  cuadro.
24602 \end_layout
24603
24604 \begin_layout Standard
24605 \align center
24606 \begin_inset Box Boxed
24607 position "c"
24608 hor_pos "s"
24609 has_inner_box 0
24610 inner_pos "s"
24611 use_parbox 0
24612 width "90col%"
24613 special "none"
24614 height "1.25in"
24615 height_special "totalheight"
24616 status open
24617
24618 \begin_layout Standard
24619 \align left
24620 Texto estirado horizontalmente.
24621 \end_layout
24622
24623 \end_inset
24624
24625
24626 \end_layout
24627
24628 \begin_layout Section
24629 Cuadros Enmarcados
24630 \begin_inset LatexCommand label
24631 name "sec:Cuadros-Enmarcados"
24632
24633 \end_inset
24634
24635
24636 \begin_inset LatexCommand index
24637 name "Cuadros ! Marcos"
24638
24639 \end_inset
24640
24641
24642 \end_layout
24643
24644 \begin_layout Standard
24645 El estilo de marco del cuadro se puede determinar en la lista desplegable
24646  
24647 \family sans
24648 Tipo
24649 \family default
24650  del diálogo de cuadros.
24651  Son posibles los siguientes marcos:
24652 \end_layout
24653
24654 \begin_layout Description
24655 Marco\InsetSpace ~
24656 rectangular Dibuja un marco rectangular alrededor del cuadro.
24657  El grosor del marco depende de 
24658 \series bold
24659
24660 \backslash
24661 fboxrule
24662 \series default
24663 .
24664  
24665 \begin_inset Box Boxed
24666 position "c"
24667 hor_pos "c"
24668 has_inner_box 1
24669 inner_pos "c"
24670 use_parbox 0
24671 width "25col%"
24672 special "none"
24673 height "1in"
24674 height_special "totalheight"
24675 status open
24676
24677 \begin_layout Standard
24678 \align center
24679 Cuadro rectangular
24680 \end_layout
24681
24682 \end_inset
24683
24684
24685 \end_layout
24686
24687 \begin_layout Description
24688 Marco\InsetSpace ~
24689 ovalado,\InsetSpace ~
24690 fino Dibuja un marco ovalado cuya línea tiene un grosor de
24691  0.4\InsetSpace \thinspace{}
24692 pt.
24693  
24694 \begin_inset Box ovalbox
24695 position "c"
24696 hor_pos "c"
24697 has_inner_box 1
24698 inner_pos "c"
24699 use_parbox 0
24700 width "25col%"
24701 special "none"
24702 height "1in"
24703 height_special "totalheight"
24704 status open
24705
24706 \begin_layout Standard
24707 \align center
24708 Marco ovalado, fino
24709 \end_layout
24710
24711 \end_inset
24712
24713
24714 \end_layout
24715
24716 \begin_layout Description
24717 Marco\InsetSpace ~
24718 ovalado,\InsetSpace ~
24719 grueso Dibuja un marco ovalado cuya línea tiene un grosor de
24720  0.8\InsetSpace \thinspace{}
24721 pt.
24722  
24723 \begin_inset Box Ovalbox
24724 position "c"
24725 hor_pos "c"
24726 has_inner_box 1
24727 inner_pos "c"
24728 use_parbox 0
24729 width "30col%"
24730 special "none"
24731 height "1in"
24732 height_special "totalheight"
24733 status open
24734
24735 \begin_layout Standard
24736 \align center
24737 Cuadro ovalado, grueso
24738 \end_layout
24739
24740 \end_inset
24741
24742
24743 \end_layout
24744
24745 \begin_layout Description
24746 Marco\InsetSpace ~
24747 con\InsetSpace ~
24748 sombra Dibuja un cuadro rectangular con sombra alrededor del cuadro.
24749  El grosor de la línea tiene el tamaño dado por 
24750 \series bold
24751
24752 \backslash
24753 fboxrule
24754 \series default
24755 , la sombra tiene una anchura de 4\InsetSpace \thinspace{}
24756 pt.
24757  
24758 \begin_inset Box Shadowbox
24759 position "c"
24760 hor_pos "c"
24761 has_inner_box 1
24762 inner_pos "c"
24763 use_parbox 0
24764 width "20col%"
24765 special "none"
24766 height "1in"
24767 height_special "totalheight"
24768 status open
24769
24770 \begin_layout Standard
24771 \align center
24772 Marco sombrado
24773 \end_layout
24774
24775 \end_inset
24776
24777
24778 \end_layout
24779
24780 \begin_layout Description
24781 Marco\InsetSpace ~
24782 doble Dibuja un rectángulo de línea doble alrededor del cuadro.
24783  El grosor de la línea interior es 0.75\InsetSpace \thinspace{}
24784
24785 \series bold
24786
24787 \backslash
24788 fboxrule
24789 \series default
24790 , el de la línea exterior es 1.5\InsetSpace \thinspace{}
24791
24792 \series bold
24793
24794 \backslash
24795 fboxrule
24796 \series default
24797 .
24798  La distancia entre líneas es 1.5\InsetSpace \thinspace{}
24799
24800 \series bold
24801
24802 \backslash
24803 fboxrule
24804 \series default
24805 \InsetSpace \thinspace{}
24806 +\InsetSpace \thinspace{}
24807 0.5\InsetSpace \thinspace{}
24808 pt.
24809  
24810 \begin_inset Box Doublebox
24811 position "c"
24812 hor_pos "c"
24813 has_inner_box 1
24814 inner_pos "c"
24815 use_parbox 0
24816 width "20col%"
24817 special "none"
24818 height "1in"
24819 height_special "totalheight"
24820 status open
24821
24822 \begin_layout Standard
24823 \align center
24824 Marco doble
24825 \end_layout
24826
24827 \end_inset
24828
24829
24830 \end_layout
24831
24832 \begin_layout Standard
24833 \begin_inset VSpace bigskip
24834 \end_inset
24835
24836 La etiqueta del recuadro en LyX cambiará según el estilo de marco elegido.
24837  Para poder utilizar los distintos marcos, debe estar instalado el paquete
24838  LaTeX 
24839 \series bold
24840 fancybox
24841 \series default
24842
24843 \begin_inset LatexCommand index
24844 name "LaTeX-paquetes ! fancybox"
24845
24846 \end_inset
24847
24848 .
24849 \end_layout
24850
24851 \begin_layout Standard
24852 \begin_inset VSpace bigskip
24853 \end_inset
24854
24855 El valor predeterminado por 
24856 \series bold
24857
24858 \backslash
24859 fboxrule
24860 \series default
24861  es 0.4\InsetSpace \thinspace{}
24862 pt.
24863  Puede cambiarse con el siguiente comando en ERT, p.\InsetSpace \thinspace{}
24864 e.\InsetSpace ~
24865 a\InsetSpace ~
24866 2\InsetSpace \thinspace{}
24867 pt:
24868 \end_layout
24869
24870 \begin_layout Standard
24871
24872 \series bold
24873
24874 \backslash
24875 setlength{
24876 \backslash
24877 fboxrule}{2pt}
24878 \end_layout
24879
24880 \begin_layout Standard
24881 \begin_inset ERT
24882 status collapsed
24883
24884 \begin_layout Standard
24885
24886
24887 \backslash
24888 setlength{
24889 \backslash
24890 fboxrule}{2pt}
24891 \end_layout
24892
24893 \end_inset
24894
24895
24896 \begin_inset Box Boxed
24897 position "c"
24898 hor_pos "c"
24899 has_inner_box 1
24900 inner_pos "c"
24901 use_parbox 0
24902 width "25col%"
24903 special "none"
24904 height "1in"
24905 height_special "totalheight"
24906 status open
24907
24908 \begin_layout Standard
24909 \align center
24910 Cuadro rectangular con 
24911 \series bold
24912
24913 \backslash
24914 fboxrule
24915 \series default
24916 \InsetSpace \thinspace{}
24917 =\InsetSpace \thinspace{}
24918 2\InsetSpace \thinspace{}
24919 pt
24920 \end_layout
24921
24922 \end_inset
24923
24924
24925 \begin_inset ERT
24926 status collapsed
24927
24928 \begin_layout Standard
24929
24930
24931 \backslash
24932 setlength{
24933 \backslash
24934 fboxrule}{0.4pt}
24935 \end_layout
24936
24937 \end_inset
24938
24939
24940 \end_layout
24941
24942 \begin_layout Standard
24943 \begin_inset VSpace bigskip
24944 \end_inset
24945
24946 El espacio entre el marco y el contenido del cuadro es 3\InsetSpace \thinspace{}
24947 pt por defecto para
24948  todos los estilos.
24949  Se puede cambiar mediante la longitud 
24950 \series bold
24951
24952 \backslash
24953 fboxsep
24954 \series default
24955 .
24956  Por ejemplo el comando
24957 \end_layout
24958
24959 \begin_layout Standard
24960
24961 \series bold
24962
24963 \backslash
24964 setlength{
24965 \backslash
24966 fboxsep}{10pt}
24967 \end_layout
24968
24969 \begin_layout Standard
24970 determina un valor de 10\InsetSpace \thinspace{}
24971 pt, como en el siguiente cuadro:
24972 \end_layout
24973
24974 \begin_layout Standard
24975 \begin_inset ERT
24976 status collapsed
24977
24978 \begin_layout Standard
24979
24980
24981 \backslash
24982 setlength{
24983 \backslash
24984 fboxsep}{10pt}
24985 \end_layout
24986
24987 \end_inset
24988
24989
24990 \begin_inset Box Boxed
24991 position "c"
24992 hor_pos "c"
24993 has_inner_box 1
24994 inner_pos "c"
24995 use_parbox 0
24996 width "25col%"
24997 special "none"
24998 height "1in"
24999 height_special "totalheight"
25000 status open
25001
25002 \begin_layout Standard
25003 \align center
25004 Cuadro rectangular con 
25005 \series bold
25006
25007 \backslash
25008 fboxsep
25009 \series default
25010 \InsetSpace \thinspace{}
25011 =\InsetSpace \thinspace{}
25012 10\InsetSpace \thinspace{}
25013 pt
25014 \end_layout
25015
25016 \end_inset
25017
25018
25019 \begin_inset ERT
25020 status collapsed
25021
25022 \begin_layout Standard
25023
25024
25025 \backslash
25026 setlength{
25027 \backslash
25028 fboxsep}{3pt}
25029 \end_layout
25030
25031 \end_inset
25032
25033
25034 \end_layout
25035
25036 \begin_layout Standard
25037 \begin_inset VSpace bigskip
25038 \end_inset
25039
25040 El diámetro de las esquinas de los cuadros ovalados se puede modificar con
25041  el comando 
25042 \series bold
25043
25044 \backslash
25045 cornersize
25046 \series default
25047 .
25048  El comando
25049 \end_layout
25050
25051 \begin_layout Standard
25052
25053 \series bold
25054
25055 \backslash
25056 cornersize*{1cm}
25057 \end_layout
25058
25059 \begin_layout Standard
25060 establece un diámetro de 1\InsetSpace \thinspace{}
25061 cm.
25062  El comando
25063 \end_layout
25064
25065 \begin_layout Standard
25066
25067 \series bold
25068
25069 \backslash
25070 cornersize{num}
25071 \end_layout
25072
25073 \begin_layout Standard
25074 fija el diámetro en 
25075 \family sans
25076 num\InsetSpace \thinspace{}
25077 ×\InsetSpace \thinspace{}
25078 mínimo
25079 \family default
25080  
25081 \family sans
25082 (ancho y alto del cuadro)
25083 \family default
25084 .
25085  Por defecto es 
25086 \series bold
25087
25088 \backslash
25089 cornersize{0.5}
25090 \series default
25091 .
25092 \end_layout
25093
25094 \begin_layout Standard
25095 \begin_inset ERT
25096 status collapsed
25097
25098 \begin_layout Standard
25099
25100
25101 \backslash
25102 cornersize*{1.5cm}
25103 \end_layout
25104
25105 \end_inset
25106
25107
25108 \begin_inset Box Ovalbox
25109 position "c"
25110 hor_pos "c"
25111 has_inner_box 1
25112 inner_pos "c"
25113 use_parbox 0
25114 width "28col%"
25115 special "none"
25116 height "1in"
25117 height_special "totalheight"
25118 status open
25119
25120 \begin_layout Standard
25121 \align center
25122 Cuadro ovalado con 
25123 \series bold
25124
25125 \backslash
25126 cornersize
25127 \series default
25128 \InsetSpace \thinspace{}
25129 =\InsetSpace \thinspace{}
25130 1.5\InsetSpace \thinspace{}
25131 cm
25132 \end_layout
25133
25134 \end_inset
25135
25136
25137 \begin_inset ERT
25138 status collapsed
25139
25140 \begin_layout Standard
25141
25142
25143 \backslash
25144 cornersize{0.5}
25145 \end_layout
25146
25147 \end_inset
25148
25149
25150 \end_layout
25151
25152 \begin_layout Standard
25153 \begin_inset VSpace bigskip
25154 \end_inset
25155
25156 El tamaño de la sombra se puede ajustar cambiando la longitud 
25157 \series bold
25158
25159 \backslash
25160 shadowsize
25161 \series default
25162 .
25163  Este comando la ajusta a 2\InsetSpace \thinspace{}
25164 pt en el cuadro siguiente:
25165 \end_layout
25166
25167 \begin_layout Standard
25168
25169 \series bold
25170
25171 \backslash
25172 setlength{
25173 \backslash
25174 shadowsize}{2pt}
25175 \end_layout
25176
25177 \begin_layout Standard
25178 \begin_inset ERT
25179 status collapsed
25180
25181 \begin_layout Standard
25182
25183
25184 \backslash
25185 setlength{
25186 \backslash
25187 shadowsize}{2pt}
25188 \end_layout
25189
25190 \end_inset
25191
25192
25193 \begin_inset Box Shadowbox
25194 position "c"
25195 hor_pos "c"
25196 has_inner_box 1
25197 inner_pos "c"
25198 use_parbox 0
25199 width "28col%"
25200 special "none"
25201 height "1in"
25202 height_special "totalheight"
25203 status open
25204
25205 \begin_layout Standard
25206 \align center
25207 Cuadro sombreado con 
25208 \series bold
25209
25210 \backslash
25211 shadowsize
25212 \series default
25213 \InsetSpace \thinspace{}
25214 =\InsetSpace \thinspace{}
25215 2\InsetSpace \thinspace{}
25216 pt
25217 \end_layout
25218
25219 \end_inset
25220
25221
25222 \begin_inset ERT
25223 status collapsed
25224
25225 \begin_layout Standard
25226
25227
25228 \backslash
25229 setlength{
25230 \backslash
25231 shadowsize}{4pt}
25232 \end_layout
25233
25234 \end_inset
25235
25236
25237 \end_layout
25238
25239 \begin_layout Standard
25240 \begin_inset VSpace bigskip
25241 \end_inset
25242
25243 Los cambios en las dimensiones son válidos para todos los cuadros que siguen
25244  a los comandos.
25245 \end_layout
25246
25247 \begin_layout Section
25248 Minipáginas
25249 \begin_inset LatexCommand label
25250 name "sec:Minipáginas"
25251
25252 \end_inset
25253
25254
25255 \begin_inset LatexCommand index
25256 name "Cuadros ! Minipáginas"
25257
25258 \end_inset
25259
25260
25261 \end_layout
25262
25263 \begin_layout Standard
25264 Las minipáginas son tratadas por LaTeX como páginas dentro de páginas y
25265  por tanto pueden tener, por ejemplo, sus propias notas al pie.
25266 \end_layout
25267
25268 \begin_layout Standard
25269 Las minipáginas son útiles para escribir documentos con distintos lenguajes.
25270 \end_layout
25271
25272 \begin_layout Standard
25273 A continuación hay dos ejemplos de minipáginas adosadas.
25274  Su anchura está puesta en 45\InsetSpace \thinspace{}
25275 col% y separadas por un relleno horizontal,
25276  insertado vía el menú 
25277 \family sans
25278 Insertar\SpecialChar \menuseparator
25279 Formato\InsetSpace ~
25280
25281 \family default
25282 es
25283 \family sans
25284 pecial\InsetSpace ~
25285 \SpecialChar \menuseparator
25286 Relleno\InsetSpace ~
25287 horizontal
25288 \family default
25289 .
25290 \end_layout
25291
25292 \begin_layout Standard
25293 \begin_inset Box Frameless
25294 position "t"
25295 hor_pos "c"
25296 has_inner_box 1
25297 inner_pos "c"
25298 use_parbox 0
25299 width "45col%"
25300 special "none"
25301 height "1in"
25302 height_special "totalheight"
25303 status open
25304
25305 \begin_layout Standard
25306
25307 \lang german
25308 Dies ist ein deutscher Text.
25309  Dies ist ein deutscher Text.
25310  Dies ist ein deutscher Text.
25311  Dies ist ein deutscher Text.
25312  Dies ist ein deutscher Text.
25313  Dies ist ein deutscher Text.
25314  Dies ist ein deutscher Text.
25315  Dies ist ein deutscher Text.
25316  Dies ist ein deutscher Text.
25317  Dies ist ein deutscher Text.
25318  Dies ist ein deutscher Text.
25319  Dies ist ein deutscher Text.
25320  Dies ist ein deutscher Text
25321 \begin_inset Foot
25322 status collapsed
25323
25324 \begin_layout Standard
25325
25326 \lang german
25327 Dies ist eine deutsche Fußnote.
25328 \end_layout
25329
25330 \end_inset
25331
25332 .
25333  Dies ist ein deutscher Text.
25334  Dies ist ein deutscher Text.
25335 \end_layout
25336
25337 \end_inset
25338
25339
25340 \hfill
25341
25342 \begin_inset Box Frameless
25343 position "t"
25344 hor_pos "c"
25345 has_inner_box 1
25346 inner_pos "c"
25347 use_parbox 0
25348 width "45col%"
25349 special "none"
25350 height "1in"
25351 height_special "totalheight"
25352 status open
25353
25354 \begin_layout Standard
25355 This is an English Text.
25356  This is an English Text.
25357  This is an English Text.
25358  This is an English Text.
25359  This is an English Text.
25360  This is an English Text.
25361  This is an English Text.
25362  This is an English Text.
25363  This is an English Text.
25364  This is an English Text.
25365  This is an English Text.
25366  This is an English Text.
25367  This is an English Text.
25368  This is an English Text.
25369  This is an English Text.
25370  This is an English Text.
25371 \begin_inset Foot
25372 status collapsed
25373
25374 \begin_layout Standard
25375 This is an English footnote.
25376 \end_layout
25377
25378 \end_inset
25379
25380  This is an English Text.
25381  
25382 \end_layout
25383
25384 \end_inset
25385
25386
25387 \end_layout
25388
25389 \begin_layout Standard
25390 \begin_inset VSpace bigskip
25391 \end_inset
25392
25393 Otra aplicación de los cuadros son las notas a pie en tablas.
25394  Debido a una restricción de LaTeX las notas a pie en tablas no aparecen
25395  al final de la página actual.
25396  Pero si pones la tabla con notas al pie en una minipágina, las notas aparecen
25397  en la parte inferior, ordenadas con letras.
25398  La ordenación de las notas al pie se restablece en cada minipágina pero
25399  no fuera de las minipáginas.
25400 \end_layout
25401
25402 \begin_layout Standard
25403 La nota al pie en esta tabla no aparece: 
25404 \begin_inset Tabular
25405 <lyxtabular version="3" rows="3" columns="4">
25406 <features>
25407 <column alignment="center" valignment="top" leftline="true" width="0pt">
25408 <column alignment="center" valignment="top" leftline="true" width="0pt">
25409 <column alignment="center" valignment="top" leftline="true" width="0pt">
25410 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25411 <row topline="true">
25412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25413 \begin_inset Text
25414
25415 \begin_layout Standard
25416 1
25417 \end_layout
25418
25419 \end_inset
25420 </cell>
25421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25422 \begin_inset Text
25423
25424 \begin_layout Standard
25425 2
25426 \end_layout
25427
25428 \end_inset
25429 </cell>
25430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25431 \begin_inset Text
25432
25433 \begin_layout Standard
25434 3
25435 \begin_inset Foot
25436 status open
25437
25438 \begin_layout Standard
25439 Nota al pie en una tabla.
25440 \end_layout
25441
25442 \end_inset
25443
25444
25445 \end_layout
25446
25447 \end_inset
25448 </cell>
25449 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25450 \begin_inset Text
25451
25452 \begin_layout Standard
25453 4
25454 \end_layout
25455
25456 \end_inset
25457 </cell>
25458 </row>
25459 <row topline="true">
25460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25461 \begin_inset Text
25462
25463 \begin_layout Standard
25464 a
25465 \end_layout
25466
25467 \end_inset
25468 </cell>
25469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25470 \begin_inset Text
25471
25472 \begin_layout Standard
25473 b
25474 \end_layout
25475
25476 \end_inset
25477 </cell>
25478 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25479 \begin_inset Text
25480
25481 \begin_layout Standard
25482 c
25483 \end_layout
25484
25485 \end_inset
25486 </cell>
25487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25488 \begin_inset Text
25489
25490 \begin_layout Standard
25491 d
25492 \end_layout
25493
25494 \end_inset
25495 </cell>
25496 </row>
25497 <row topline="true" bottomline="true">
25498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25499 \begin_inset Text
25500
25501 \begin_layout Standard
25502 e
25503 \end_layout
25504
25505 \end_inset
25506 </cell>
25507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25508 \begin_inset Text
25509
25510 \begin_layout Standard
25511 f
25512 \end_layout
25513
25514 \end_inset
25515 </cell>
25516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25517 \begin_inset Text
25518
25519 \begin_layout Standard
25520 g
25521 \end_layout
25522
25523 \end_inset
25524 </cell>
25525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25526 \begin_inset Text
25527
25528 \begin_layout Standard
25529 h
25530 \end_layout
25531
25532 \end_inset
25533 </cell>
25534 </row>
25535 </lyxtabular>
25536
25537 \end_inset
25538
25539
25540 \end_layout
25541
25542 \begin_layout Standard
25543 \align center
25544 \begin_inset Box Frameless
25545 position "t"
25546 hor_pos "c"
25547 has_inner_box 1
25548 inner_pos "c"
25549 use_parbox 0
25550 width "30col%"
25551 special "none"
25552 height "1in"
25553 height_special "totalheight"
25554 status open
25555
25556 \begin_layout Standard
25557 \align center
25558 \begin_inset Tabular
25559 <lyxtabular version="3" rows="3" columns="4">
25560 <features>
25561 <column alignment="center" valignment="top" leftline="true" width="0pt">
25562 <column alignment="center" valignment="top" leftline="true" width="0pt">
25563 <column alignment="center" valignment="top" leftline="true" width="0pt">
25564 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25565 <row topline="true">
25566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25567 \begin_inset Text
25568
25569 \begin_layout Standard
25570 1
25571 \end_layout
25572
25573 \end_inset
25574 </cell>
25575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25576 \begin_inset Text
25577
25578 \begin_layout Standard
25579 2
25580 \end_layout
25581
25582 \end_inset
25583 </cell>
25584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25585 \begin_inset Text
25586
25587 \begin_layout Standard
25588 3
25589 \begin_inset Foot
25590 status open
25591
25592 \begin_layout Standard
25593 Nota al pie en una tabla..
25594 \end_layout
25595
25596 \end_inset
25597
25598
25599 \end_layout
25600
25601 \end_inset
25602 </cell>
25603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25604 \begin_inset Text
25605
25606 \begin_layout Standard
25607 4
25608 \end_layout
25609
25610 \end_inset
25611 </cell>
25612 </row>
25613 <row topline="true">
25614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25615 \begin_inset Text
25616
25617 \begin_layout Standard
25618 a
25619 \end_layout
25620
25621 \end_inset
25622 </cell>
25623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25624 \begin_inset Text
25625
25626 \begin_layout Standard
25627 b
25628 \end_layout
25629
25630 \end_inset
25631 </cell>
25632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25633 \begin_inset Text
25634
25635 \begin_layout Standard
25636 c
25637 \end_layout
25638
25639 \end_inset
25640 </cell>
25641 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25642 \begin_inset Text
25643
25644 \begin_layout Standard
25645 d
25646 \end_layout
25647
25648 \end_inset
25649 </cell>
25650 </row>
25651 <row topline="true" bottomline="true">
25652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25653 \begin_inset Text
25654
25655 \begin_layout Standard
25656 e
25657 \end_layout
25658
25659 \end_inset
25660 </cell>
25661 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25662 \begin_inset Text
25663
25664 \begin_layout Standard
25665 f
25666 \end_layout
25667
25668 \end_inset
25669 </cell>
25670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25671 \begin_inset Text
25672
25673 \begin_layout Standard
25674 g
25675 \end_layout
25676
25677 \end_inset
25678 </cell>
25679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25680 \begin_inset Text
25681
25682 \begin_layout Standard
25683 h
25684 \end_layout
25685
25686 \end_inset
25687 </cell>
25688 </row>
25689 </lyxtabular>
25690
25691 \end_inset
25692
25693
25694 \end_layout
25695
25696 \end_inset
25697
25698
25699 \end_layout
25700
25701 \begin_layout Standard
25702 \begin_inset VSpace bigskip
25703 \end_inset
25704
25705 La configuración global de párrafos se ignora en las minipáginas.
25706  Esto significa que en las mismas no habrá espacio entre párrafos aunque
25707  pongas p.\InsetSpace \thinspace{}
25708 e.\InsetSpace ~
25709
25710 \family sans
25711 Salto\InsetSpace ~
25712 medio
25713 \family default
25714  en la configuración del documento.
25715 \end_layout
25716
25717 \begin_layout Standard
25718 Las minipáginas también sirven para poner un color de fondo para partes
25719  de texto, ver sección\InsetSpace ~
25720
25721 \begin_inset LatexCommand ref
25722 reference "sub:Color-en-Párrafos"
25723
25724 \end_inset
25725
25726 .
25727 \end_layout
25728
25729 \begin_layout Standard
25730 \begin_inset Note Greyedout
25731 status open
25732
25733 \begin_layout Standard
25734
25735 \series bold
25736 Nota:
25737 \series default
25738  No puedes tener flotantes o notas al margen en minipáginas pero sí puedes
25739  tener minipáginas en tablas, flotantes, y otros cuadros.
25740 \end_layout
25741
25742 \end_inset
25743
25744
25745 \end_layout
25746
25747 \begin_layout Section
25748 Cuadros de Párrafo
25749 \begin_inset LatexCommand label
25750 name "sec:Cuadros-de-Párrafo"
25751
25752 \end_inset
25753
25754
25755 \begin_inset LatexCommand index
25756 name "Cuadros ! de Párrafo"
25757
25758 \end_inset
25759
25760
25761 \end_layout
25762
25763 \begin_layout Standard
25764 Los cuadros de párrafo son similares a las minipáginas con la diferencia
25765  de que no pueden contener notas al pie.
25766   La diferencia principal es que las minipáginas no son verdaderos cuadros
25767  sino entornos de LaTeX.
25768 \end_layout
25769
25770 \begin_layout Standard
25771 \align center
25772 \begin_inset Box Frameless
25773 position "t"
25774 hor_pos "c"
25775 has_inner_box 1
25776 inner_pos "t"
25777 use_parbox 1
25778 width "33col%"
25779 special "none"
25780 height "1in"
25781 height_special "totalheight"
25782 status collapsed
25783
25784 \begin_layout Standard
25785 Texto en un cuadro de párrafo.
25786  Texto en un cuadro de párrafo.
25787  Esta nota no aparece:
25788 \begin_inset Foot
25789 status open
25790
25791 \begin_layout Standard
25792 Esta es una nota en cuadro de párrafo y por eso no aparecerá.
25793 \end_layout
25794
25795 \end_inset
25796
25797
25798 \end_layout
25799
25800 \end_inset
25801
25802
25803 \end_layout
25804
25805 \begin_layout Section
25806 Cuadros para Palabras y Caracteres
25807 \begin_inset LatexCommand index
25808 name "Cuadros ! para Palabras y Caracteres"
25809
25810 \end_inset
25811
25812
25813 \end_layout
25814
25815 \begin_layout Subsection
25816 Evitar la Partición con Guiones
25817 \begin_inset LatexCommand label
25818 name "sec:Evitar-la-Partición-con-Guiones"
25819
25820 \end_inset
25821
25822
25823 \begin_inset LatexCommand index
25824 name "Cuadros ! Prevenir Partición con Guiones"
25825
25826 \end_inset
25827
25828
25829 \end_layout
25830
25831 \begin_layout Standard
25832 Hay un tipo especial de cuadro para impedir que una palabra sea partida
25833  con guión.
25834 \newline
25835 He aquí un ejemplo:
25836 \end_layout
25837
25838 \begin_layout Standard
25839 Esta línea es un ejemplo para mostrar cómo evitar la división de p.\InsetSpace \thinspace{}
25840 e.\InsetSpace ~
25841 estalarguísim
25842 apalabra.
25843 \end_layout
25844
25845 \begin_layout Standard
25846 Para evitar su división usa el comando
25847 \end_layout
25848
25849 \begin_layout Standard
25850
25851 \series bold
25852
25853 \backslash
25854 mbox{
25855 \end_layout
25856
25857 \begin_layout Standard
25858 en ERT antes de la palabra.
25859  Tras ella inserta una llave de cierre 
25860 \begin_inset Quotes eld
25861 \end_inset
25862
25863
25864 \series bold
25865 }
25866 \series default
25867
25868 \begin_inset Quotes erd
25869 \end_inset
25870
25871  en ERT.
25872 \begin_inset ERT
25873 status collapsed
25874
25875 \begin_layout Standard
25876
25877
25878 \backslash
25879 pagebreak 
25880 \end_layout
25881
25882 \end_inset
25883
25884
25885 \end_layout
25886
25887 \begin_layout Standard
25888 Este es el resultado:
25889 \end_layout
25890
25891 \begin_layout Standard
25892 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
25893 e.\InsetSpace ~
25894
25895 \begin_inset ERT
25896 status collapsed
25897
25898 \begin_layout Standard
25899
25900
25901 \backslash
25902 mbox{
25903 \end_layout
25904
25905 \end_inset
25906
25907 estalarguísimapalabra.
25908 \begin_inset ERT
25909 status collapsed
25910
25911 \begin_layout Standard
25912
25913 }
25914 \end_layout
25915
25916 \end_inset
25917
25918
25919 \end_layout
25920
25921 \begin_layout Standard
25922 Por supuesto, la palabra sobresale del margen.
25923  Para evitarlo añade, con el menú 
25924 \family sans
25925 Insertar\SpecialChar \menuseparator
25926 Formato\InsetSpace ~
25927 especial\InsetSpace ~
25928 \SpecialChar \menuseparator
25929 Salto\InsetSpace ~
25930 de\InsetSpace ~
25931
25932 \family default
25933 línea (atajo 
25934 \series bold
25935 Ctrl-Return
25936 \series default
25937 ), un salto de línea antes de la palabra:
25938 \end_layout
25939
25940 \begin_layout Standard
25941 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
25942 e.\InsetSpace ~
25943
25944 \newline
25945
25946 \begin_inset ERT
25947 status collapsed
25948
25949 \begin_layout Standard
25950
25951
25952 \backslash
25953 mbox{
25954 \end_layout
25955
25956 \end_inset
25957
25958 estalarguísimapalabra.
25959 \begin_inset ERT
25960 status collapsed
25961
25962 \begin_layout Standard
25963
25964 }
25965 \end_layout
25966
25967 \end_inset
25968
25969
25970 \end_layout
25971
25972 \begin_layout Subsection
25973 Alineación Vertical
25974 \begin_inset LatexCommand label
25975 name "sub:Alineación-Vertical"
25976
25977 \end_inset
25978
25979
25980 \begin_inset LatexCommand index
25981 name "Cuadros ! para Alineación Vertical"
25982
25983 \end_inset
25984
25985
25986 \end_layout
25987
25988 \begin_layout Standard
25989 Con ayuda del comando 
25990 \series bold
25991
25992 \backslash
25993 raisebox
25994 \series default
25995  puedes alinear verticalmente con el texto circundante palabras o caracteres.
25996  
25997 \series bold
25998
25999 \backslash
26000 raisebox
26001 \series default
26002  se utiliza según el esquema:
26003 \end_layout
26004
26005 \begin_layout Standard
26006
26007 \series bold
26008
26009 \backslash
26010 raisebox{elevación}[altura][profundidad]{contenido del cuadro}
26011 \end_layout
26012
26013 \begin_layout Standard
26014 La elevación puede ser un valor positivo para subir el cuadro o negativo
26015  para bajarlo.
26016 \end_layout
26017
26018 \begin_layout Standard
26019 Para alinear una palabra, p.\InsetSpace \thinspace{}
26020 e\InsetSpace ~
26021
26022 \begin_inset Quotes eld
26023 \end_inset
26024
26025 prevención
26026 \begin_inset Quotes erd
26027 \end_inset
26028
26029  para que la parte inferior de la letra más 
26030 \begin_inset Quotes eld
26031 \end_inset
26032
26033 profunda
26034 \begin_inset Quotes erd
26035 \end_inset
26036
26037  
26038 \begin_inset Quotes eld
26039 \end_inset
26040
26041 p
26042 \begin_inset Quotes erd
26043 \end_inset
26044
26045  esté en la línea de base, inserta el comando
26046 \end_layout
26047
26048 \begin_layout Standard
26049
26050 \series bold
26051
26052 \backslash
26053 raisebox{
26054 \backslash
26055 depth}{
26056 \end_layout
26057
26058 \begin_layout Standard
26059 en ERT antes de la palabra.
26060  Detrás de la palabra inserta una llave de cierre 
26061 \begin_inset Quotes eld
26062 \end_inset
26063
26064
26065 \series bold
26066 }
26067 \series default
26068
26069 \begin_inset Quotes erd
26070 \end_inset
26071
26072  en ERT.
26073 \newline
26074 Este es el resultado:
26075 \end_layout
26076
26077 \begin_layout Standard
26078 Esto es una línea de texto con la palabra 
26079 \begin_inset ERT
26080 status open
26081
26082 \begin_layout Standard
26083
26084
26085 \backslash
26086 raisebox{
26087 \backslash
26088 depth}{
26089 \end_layout
26090
26091 \end_inset
26092
26093
26094 \begin_inset Quotes eld
26095 \end_inset
26096
26097 prevención
26098 \begin_inset Quotes erd
26099 \end_inset
26100
26101
26102 \begin_inset ERT
26103 status collapsed
26104
26105 \begin_layout Standard
26106
26107 }
26108 \end_layout
26109
26110 \end_inset
26111
26112  elevada.
26113 \end_layout
26114
26115 \begin_layout Standard
26116 \begin_inset VSpace bigskip
26117 \end_inset
26118
26119 Al subir o bajar caracteres en una línea, se modifica el espacio entre líneas:
26120 \end_layout
26121
26122 \begin_layout Standard
26123 Esto es una línea de texto con la palabra 
26124 \begin_inset ERT
26125 status open
26126
26127 \begin_layout Standard
26128
26129
26130 \backslash
26131 raisebox{-
26132 \backslash
26133 depth}{
26134 \end_layout
26135
26136 \end_inset
26137
26138
26139 \begin_inset Quotes eld
26140 \end_inset
26141
26142 prevención
26143 \begin_inset Quotes erd
26144 \end_inset
26145
26146
26147 \begin_inset ERT
26148 status collapsed
26149
26150 \begin_layout Standard
26151
26152 }
26153 \end_layout
26154
26155 \end_inset
26156
26157  como palabra más baja.
26158 \newline
26159 Esto es una línea de texto con la palabra 
26160 \begin_inset ERT
26161 status collapsed
26162
26163 \begin_layout Standard
26164
26165
26166 \backslash
26167 raisebox{0.5cm}{
26168 \end_layout
26169
26170 \end_inset
26171
26172
26173 \begin_inset Quotes eld
26174 \end_inset
26175
26176 testigo
26177 \begin_inset Quotes erd
26178 \end_inset
26179
26180
26181 \begin_inset ERT
26182 status collapsed
26183
26184 \begin_layout Standard
26185
26186 }
26187 \end_layout
26188
26189 \end_inset
26190
26191  como palabra más alta.
26192 \end_layout
26193
26194 \begin_layout Standard
26195 Si por alguna razón quieres impedir esto, pon la altura de cuadro a cero.
26196  Por ejemplo
26197 \end_layout
26198
26199 \begin_layout Standard
26200
26201 \series bold
26202
26203 \backslash
26204 raisebox{-
26205 \backslash
26206 depth}[0pt]{
26207 \end_layout
26208
26209 \begin_layout Standard
26210 Esto es una línea de texto con la palabra 
26211 \begin_inset ERT
26212 status collapsed
26213
26214 \begin_layout Standard
26215
26216
26217 \backslash
26218 raisebox{-
26219 \backslash
26220 depth}[0pt]{
26221 \end_layout
26222
26223 \end_inset
26224
26225
26226 \begin_inset Quotes eld
26227 \end_inset
26228
26229 prevención
26230 \begin_inset Quotes erd
26231 \end_inset
26232
26233
26234 \begin_inset ERT
26235 status collapsed
26236
26237 \begin_layout Standard
26238
26239 }
26240 \end_layout
26241
26242 \end_inset
26243
26244  como palabra más baja.
26245 \newline
26246 Esto es una línea de texto con la palabra 
26247 \begin_inset ERT
26248 status collapsed
26249
26250 \begin_layout Standard
26251
26252
26253 \backslash
26254 raisebox{0.5cm}[0pt]{
26255 \end_layout
26256
26257 \end_inset
26258
26259
26260 \begin_inset Quotes eld
26261 \end_inset
26262
26263 testigo
26264 \begin_inset Quotes erd
26265 \end_inset
26266
26267
26268 \begin_inset ERT
26269 status collapsed
26270
26271 \begin_layout Standard
26272
26273 }
26274 \end_layout
26275
26276 \end_inset
26277
26278  como palabra más alta.
26279 \end_layout
26280
26281 \begin_layout Section
26282 Cuadros Coloreados
26283 \begin_inset LatexCommand label
26284 name "sec:Cuadros-Coloreados"
26285
26286 \end_inset
26287
26288
26289 \begin_inset LatexCommand index
26290 name "Cuadros ! Color"
26291
26292 \end_inset
26293
26294
26295 \end_layout
26296
26297 \begin_layout Subsection
26298 Color en Texto
26299 \begin_inset LatexCommand index
26300 name "Color ! en Texto"
26301
26302 \end_inset
26303
26304
26305 \end_layout
26306
26307 \begin_layout Standard
26308 Para colorear el fondo de un texto, éste debe ponerse en un cuadro coloreado.
26309  Esto requiere cargar el paquete LaTeX 
26310 \series bold
26311 color
26312 \series default
26313
26314 \begin_inset LatexCommand index
26315 name "LaTeX-paquetes ! color"
26316
26317 \end_inset
26318
26319  en el preámbulo del documento con
26320 \end_layout
26321
26322 \begin_layout Standard
26323
26324 \series bold
26325
26326 \backslash
26327 @ifundef\SpecialChar \textcompwordmark{}
26328 ined{textcolor}
26329 \newline
26330
26331 \begin_inset ERT
26332 status collapsed
26333
26334 \begin_layout Standard
26335
26336
26337 \backslash
26338 hphantom{ }
26339 \end_layout
26340
26341 \end_inset
26342
26343 {
26344 \backslash
26345 usepackage{color}}{}
26346 \end_layout
26347
26348 \begin_layout Standard
26349 LyX cargará automáticamente el paquete 
26350 \series bold
26351 color
26352 \series default
26353  cuando colorees texto
26354 \begin_inset Foot
26355 status collapsed
26356
26357 \begin_layout Standard
26358 Para evitar cargarlo dos veces se usa el comando 
26359 \series bold
26360
26361 \backslash
26362 @ifundef\SpecialChar \textcompwordmark{}
26363 ined
26364 \series default
26365 .
26366 \end_layout
26367
26368 \end_inset
26369
26370 .
26371 \end_layout
26372
26373 \begin_layout Standard
26374 \begin_inset VSpace medskip
26375 \end_inset
26376
26377 Los cuadros coloreados se crean con el comando 
26378 \series bold
26379
26380 \backslash
26381 colorbox
26382 \series default
26383 , de acuerdo con el siguiente esquema:
26384 \end_layout
26385
26386 \begin_layout Standard
26387
26388 \series bold
26389
26390 \backslash
26391 colorbox{color}{contenido del cuadro}
26392 \end_layout
26393
26394 \begin_layout Standard
26395 El contenido también puede ser un cuadro y los cuadros coloreados también
26396  pueden estar en otros cuadros.
26397 \end_layout
26398
26399 \begin_layout Standard
26400 Los siguientes colores están predefinidos:
26401 \newline
26402
26403 \family sans
26404 negro
26405 \family default
26406
26407 \family sans
26408 azul
26409 \family default
26410
26411 \family sans
26412 cyan
26413 \family default
26414 \series bold
26415 ,
26416 \series default
26417  
26418 \family sans
26419 verde
26420 \family default
26421
26422 \family sans
26423 magenta
26424 \family default
26425
26426 \family sans
26427 rojo
26428 \family default
26429
26430 \family sans
26431 blanco
26432 \family default
26433
26434 \family sans
26435 amarillo
26436 \family default
26437 .
26438 \newline
26439 También puedes definir tus propios colores según se explica en la sección\InsetSpace ~
26440
26441 \begin_inset LatexCommand ref
26442 reference "sec:Tablas-Coloreadas"
26443
26444 \end_inset
26445
26446 .
26447 \end_layout
26448
26449 \begin_layout Standard
26450 Por ejemplo, para poner fondo rojo a una palabra, inserta el comando
26451 \end_layout
26452
26453 \begin_layout Standard
26454
26455 \series bold
26456
26457 \backslash
26458 colorbox{red}{
26459 \end_layout
26460
26461 \begin_layout Standard
26462 en ERT antes de la palabra.
26463  Tras la palabra inserta una llave de cierre 
26464 \begin_inset Quotes eld
26465 \end_inset
26466
26467
26468 \series bold
26469 }
26470 \series default
26471
26472 \begin_inset Quotes erd
26473 \end_inset
26474
26475  en ERT.
26476 \newline
26477 Este es el resultado:
26478 \end_layout
26479
26480 \begin_layout Standard
26481 Línea en la que la palabra 
26482 \begin_inset ERT
26483 status collapsed
26484
26485 \begin_layout Standard
26486
26487
26488 \backslash
26489 colorbox{red}{
26490 \end_layout
26491
26492 \end_inset
26493
26494
26495 \begin_inset Quotes eld
26496 \end_inset
26497
26498 ¡Atención!
26499 \begin_inset Quotes erd
26500 \end_inset
26501
26502
26503 \begin_inset ERT
26504 status collapsed
26505
26506 \begin_layout Standard
26507
26508 }
26509 \end_layout
26510
26511 \end_inset
26512
26513  tiene fondo rojo.
26514 \end_layout
26515
26516 \begin_layout Standard
26517 \begin_inset VSpace bigskip
26518 \end_inset
26519
26520 Si quieres un marco de distinto color, puedes emplear el comando 
26521 \series bold
26522
26523 \backslash
26524 fcolorbox
26525 \series default
26526  con el esquema siguiente:
26527 \end_layout
26528
26529 \begin_layout Standard
26530
26531 \series bold
26532
26533 \backslash
26534 fcolorbox{color del marco}{color del cuadro}{contenido del cuadro}
26535 \end_layout
26536
26537 \begin_layout Standard
26538
26539 \series bold
26540
26541 \backslash
26542 fcolorbox
26543 \series default
26544  es una extensión de 
26545 \series bold
26546
26547 \backslash
26548 colorbox
26549 \series default
26550 .
26551  El grosor del marco y el espacio entre él y el contenido se puede ajustar
26552  con las longitudes 
26553 \series bold
26554
26555 \backslash
26556 fboxrule
26557 \series default
26558  y 
26559 \series bold
26560
26561 \backslash
26562 fboxsep
26563 \series default
26564 , respectivamente, como se describe en la sección\InsetSpace ~
26565
26566 \begin_inset LatexCommand ref
26567 reference "sec:Cuadros-Enmarcados"
26568
26569 \end_inset
26570
26571 .
26572 \end_layout
26573
26574 \begin_layout Standard
26575 Para el ejemplo siguiente se ha utilizado el comando
26576 \end_layout
26577
26578 \begin_layout Standard
26579
26580 \series bold
26581
26582 \backslash
26583 fcolorbox{cyan}{magenta}{
26584 \end_layout
26585
26586 \begin_layout Standard
26587 Este es un ejemplo en el que se ha puesto un grosor de 1\InsetSpace \thinspace{}
26588 mm para la línea
26589  del marco:
26590 \newline
26591
26592 \begin_inset ERT
26593 status collapsed
26594
26595 \begin_layout Standard
26596
26597
26598 \backslash
26599 fboxrule 1mm 
26600 \backslash
26601 fboxsep 1mm
26602 \end_layout
26603
26604 \end_inset
26605
26606
26607 \begin_inset ERT
26608 status collapsed
26609
26610 \begin_layout Standard
26611
26612
26613 \backslash
26614 fcolorbox{cyan}{magenta}{
26615 \end_layout
26616
26617 \end_inset
26618
26619 Texto en un marco coloreado y enmarcado.
26620 \begin_inset ERT
26621 status collapsed
26622
26623 \begin_layout Standard
26624
26625 }
26626 \end_layout
26627
26628 \end_inset
26629
26630
26631 \end_layout
26632
26633 \begin_layout Standard
26634 \begin_inset VSpace bigskip
26635 \end_inset
26636
26637 Por supuesto también puedes colorear el texto en un marco coloreado:
26638 \newline
26639
26640 \begin_inset ERT
26641 status collapsed
26642
26643 \begin_layout Standard
26644
26645
26646 \backslash
26647 fcolorbox{cyan}{magenta}{
26648 \end_layout
26649
26650 \end_inset
26651
26652
26653 \color yellow
26654 Texto coloreado en un marco sombreado y coloreado.
26655 \color none
26656
26657 \begin_inset ERT
26658 status collapsed
26659
26660 \begin_layout Standard
26661
26662 }
26663 \end_layout
26664
26665 \end_inset
26666
26667
26668 \begin_inset ERT
26669 status collapsed
26670
26671 \begin_layout Standard
26672
26673
26674 \backslash
26675 fboxrule 0.4pt 
26676 \backslash
26677 fboxsep 3pt
26678 \end_layout
26679
26680 \end_inset
26681
26682
26683 \end_layout
26684
26685 \begin_layout Standard
26686
26687 \series bold
26688 \begin_inset VSpace medskip
26689 \end_inset
26690
26691
26692 \end_layout
26693
26694 \begin_layout Standard
26695 \begin_inset Note Greyedout
26696 status open
26697
26698 \begin_layout Standard
26699
26700 \series bold
26701 Nota:
26702 \series default
26703  El texto en cuadros coloreados no puede tener saltos de línea.
26704  Para colorear líneas o párrafos múltiples, usa un cuadro dentro de un cuadro
26705  coloreado como se describe a continuación.
26706 \end_layout
26707
26708 \end_inset
26709
26710
26711 \end_layout
26712
26713 \begin_layout Subsection
26714 Color en Párrafos
26715 \begin_inset LatexCommand label
26716 name "sub:Color-en-Párrafos"
26717
26718 \end_inset
26719
26720
26721 \begin_inset LatexCommand index
26722 name "Color ! en Párrafos"
26723
26724 \end_inset
26725
26726
26727 \end_layout
26728
26729 \begin_layout Standard
26730 Para poner color de fondo en más de una línea, pon el texto en una minipágina.
26731  Antes de la minipágina inserta el comando 
26732 \series bold
26733
26734 \backslash
26735 colorbox
26736 \end_layout
26737
26738 \begin_layout Standard
26739
26740 \series bold
26741
26742 \backslash
26743 colorbox{color}{
26744 \end_layout
26745
26746 \begin_layout Standard
26747 en ERT.
26748  Detrás de la minipágina inserta una llave de cierre 
26749 \begin_inset Quotes eld
26750 \end_inset
26751
26752
26753 \series bold
26754 }
26755 \series default
26756
26757 \begin_inset Quotes erd
26758 \end_inset
26759
26760  en ERT.
26761 \end_layout
26762
26763 \begin_layout Standard
26764 \begin_inset ERT
26765 status collapsed
26766
26767 \begin_layout Standard
26768
26769
26770 \backslash
26771 colorbox{grisclaro}{
26772 \end_layout
26773
26774 \end_inset
26775
26776
26777 \begin_inset Box Frameless
26778 position "t"
26779 hor_pos "c"
26780 has_inner_box 1
26781 inner_pos "t"
26782 use_parbox 0
26783 width "100col%"
26784 special "none"
26785 height "1in"
26786 height_special "totalheight"
26787 status open
26788
26789 \begin_layout Standard
26790 Texto con color de fondo.
26791  Texto con color de fondo.
26792 \end_layout
26793
26794 \begin_layout Standard
26795 \begin_inset VSpace defskip
26796 \end_inset
26797
26798 El texto puede tener notas al pie
26799 \begin_inset Foot
26800 status open
26801
26802 \begin_layout Standard
26803 Otro ejemplo de nota
26804 \end_layout
26805
26806 \end_inset
26807
26808  y puede incluir tablas y figuras.
26809 \end_layout
26810
26811 \begin_layout Standard
26812 \align center
26813 \begin_inset Tabular
26814 <lyxtabular version="3" rows="3" columns="3">
26815 <features>
26816 <column alignment="center" valignment="top" leftline="true" width="0">
26817 <column alignment="center" valignment="top" leftline="true" width="0">
26818 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26819 <row topline="true">
26820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26821 \begin_inset Text
26822
26823 \begin_layout Standard
26824 a
26825 \end_layout
26826
26827 \end_inset
26828 </cell>
26829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26830 \begin_inset Text
26831
26832 \begin_layout Standard
26833 !
26834 \end_layout
26835
26836 \end_inset
26837 </cell>
26838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26839 \begin_inset Text
26840
26841 \begin_layout Standard
26842 3
26843 \end_layout
26844
26845 \end_inset
26846 </cell>
26847 </row>
26848 <row topline="true">
26849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26850 \begin_inset Text
26851
26852 \begin_layout Standard
26853 <
26854 \end_layout
26855
26856 \end_inset
26857 </cell>
26858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26859 \begin_inset Text
26860
26861 \begin_layout Standard
26862 b2
26863 \begin_inset Quotes erd
26864 \end_inset
26865
26866 |
26867 \end_layout
26868
26869 \end_inset
26870 </cell>
26871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26872 \begin_inset Text
26873
26874 \begin_layout Standard
26875 >
26876 \end_layout
26877
26878 \end_inset
26879 </cell>
26880 </row>
26881 <row topline="true" bottomline="true">
26882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26883 \begin_inset Text
26884
26885 \begin_layout Standard
26886 1
26887 \end_layout
26888
26889 \end_inset
26890 </cell>
26891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26892 \begin_inset Text
26893
26894 \begin_layout Standard
26895 §
26896 \end_layout
26897
26898 \end_inset
26899 </cell>
26900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26901 \begin_inset Text
26902
26903 \begin_layout Standard
26904 c
26905 \end_layout
26906
26907 \end_inset
26908 </cell>
26909 </row>
26910 </lyxtabular>
26911
26912 \end_inset
26913
26914
26915 \end_layout
26916
26917 \end_inset
26918
26919
26920 \begin_inset ERT
26921 status collapsed
26922
26923 \begin_layout Standard
26924
26925 }
26926 \end_layout
26927
26928 \end_inset
26929
26930
26931 \end_layout
26932
26933 \begin_layout Section
26934 URLs (Localizador Uniforme de Recursos)
26935 \begin_inset LatexCommand index
26936 name "URLs"
26937
26938 \end_inset
26939
26940
26941 \end_layout
26942
26943 \begin_layout Standard
26944 Los enlaces a páginas web o direcciones de correo se insertan con el menú
26945  
26946 \family sans
26947 Insertar\SpecialChar \menuseparator
26948 URL
26949 \family default
26950 .
26951  Surge un diálogo con dos campos; el campo 
26952 \family sans
26953 URL
26954 \family default
26955  y el campo 
26956 \family sans
26957 Nombre
26958 \family default
26959  para la descripción del URL, que saldrá impreso como texto normal inmediatament
26960 e antes del URL.
26961 \end_layout
26962
26963 \begin_layout Standard
26964 He aquí un ejemplo de URL: 
26965 \begin_inset LatexCommand url
26966 name "Página de LyX"
26967 target "http://www.lyx.org"
26968
26969 \end_inset
26970
26971
26972 \end_layout
26973
26974 \begin_layout Standard
26975 La opción 
26976 \family sans
26977 Generar\InsetSpace ~
26978 hiperenlace
26979 \family default
26980  en el diálogo URL sólo tiene efecto al exportar el documento al formato
26981  
26982 \begin_inset Quotes eld
26983 \end_inset
26984
26985
26986 \family sans
26987 LinuxDoc
26988 \family default
26989
26990 \begin_inset Quotes erd
26991 \end_inset
26992
26993 .
26994 \end_layout
26995
26996 \begin_layout Standard
26997 No se puede cambiar el estilo del texto del enlace.
26998  El texto del campo 
26999 \family sans
27000 Nombre
27001 \family default
27002  tendrá el estilo de texto predeterminado para el documento mientras que
27003  el texto del campo 
27004 \family sans
27005 URL
27006 \family default
27007  tendrá el estilo 
27008 \begin_inset Quotes eld
27009 \end_inset
27010
27011
27012 \family sans
27013 Typewriter
27014 \family default
27015
27016 \begin_inset Quotes erd
27017 \end_inset
27018
27019 .
27020 \end_layout
27021
27022 \begin_layout Standard
27023 Cuando usas el paquete LaTeX 
27024 \series bold
27025 hyperref
27026 \series default
27027
27028 \begin_inset LatexCommand index
27029 name "LaTeX-paquetes ! hyperref"
27030
27031 \end_inset
27032
27033  para enlazar referencias cruzadas, en las salidas DVI y PDF los URLs se
27034  convierten automáticamente en hiperenlaces disponibles.
27035 \end_layout
27036
27037 \begin_layout Standard
27038 \begin_inset Note Greyedout
27039 status open
27040
27041 \begin_layout Standard
27042
27043 \series bold
27044 Nota:
27045 \series default
27046  Cuando utilices los caracteres: "%", "#", "^", debes escribirlos precedidos
27047  por una barra invertida, p.\InsetSpace \thinspace{}
27048 e.\InsetSpace ~
27049
27050 \begin_inset Quotes eld
27051 \end_inset
27052
27053
27054 \backslash
27055 #
27056 \begin_inset Quotes erd
27057 \end_inset
27058
27059 .
27060  Los URLs no deben finalizar con una barra invertida.
27061 \end_layout
27062
27063 \end_inset
27064
27065
27066 \end_layout
27067
27068 \begin_layout Standard
27069 \begin_inset VSpace bigskip
27070 \end_inset
27071
27072 Para crear hiperenlaces reales sin tener que escribir la dirección del enlace
27073  en el texto, puedes usar el comando
27074 \end_layout
27075
27076 \begin_layout Standard
27077
27078 \series bold
27079
27080 \backslash
27081 href{dirección del enlace}{texto del enlace}
27082 \end_layout
27083
27084 \begin_layout Standard
27085 en ERT.
27086  Por ejemplo, para conseguir un enlace a la página web de LyX, escribe el
27087  comando
27088 \end_layout
27089
27090 \begin_layout Standard
27091
27092 \series bold
27093
27094 \backslash
27095 href{http://www.lyx.org}{
27096 \end_layout
27097
27098 \begin_layout Standard
27099 en ERT.
27100  Inserta después del comando el texto del enlace 
27101 \begin_inset Quotes eld
27102 \end_inset
27103
27104 Página de LyX
27105 \begin_inset Quotes erd
27106 \end_inset
27107
27108  seguido por una llave en ERT.
27109  Este es el resultado: 
27110 \begin_inset ERT
27111 status collapsed
27112
27113 \begin_layout Standard
27114
27115
27116 \backslash
27117 href{http://www.lyx.org}{
27118 \end_layout
27119
27120 \end_inset
27121
27122 Página de LyX
27123 \begin_inset ERT
27124 status collapsed
27125
27126 \begin_layout Standard
27127
27128 }
27129 \end_layout
27130
27131 \end_inset
27132
27133
27134 \end_layout
27135
27136 \begin_layout Standard
27137 Para enlazar a direcciones de correo, añade el prefijo 
27138 \begin_inset Quotes eld
27139 \end_inset
27140
27141
27142 \family sans
27143 mailto:
27144 \family default
27145
27146 \begin_inset Quotes erd
27147 \end_inset
27148
27149  a la dirección del enlace:
27150 \newline
27151 Correo para 
27152 \begin_inset ERT
27153 status collapsed
27154
27155 \begin_layout Standard
27156
27157
27158 \backslash
27159 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
27160 \end_layout
27161
27162 \end_inset
27163
27164 la lista de correo de documentación de LyX (lyx-docs)
27165 \begin_inset ERT
27166 status collapsed
27167
27168 \begin_layout Standard
27169
27170 }
27171 \end_layout
27172
27173 \end_inset
27174
27175 .
27176 \end_layout
27177
27178 \begin_layout Standard
27179 Emplear 
27180 \series bold
27181
27182 \backslash
27183 href
27184 \series default
27185  en vez del cuadro URL de LyX tiene la ventaja de que puedes especificar
27186  el estilo de texto del enlace como en las demás partes del texto.
27187  Puedes poner guiones y saltos de línea forzados para dividir textos extensos
27188  de enlaces en el margen de página.
27189  También puedes cambiar el estilo de texto para todos los URLs en el documento
27190  con una opción en el comando de carga de 
27191 \series bold
27192 hyperref
27193 \series default
27194 .
27195  Además las restricciones mencionadas antes no se aplican a 
27196 \series bold
27197
27198 \backslash
27199 href
27200 \series default
27201 .
27202 \end_layout
27203
27204 \begin_layout Chapter
27205 Archivos
27206 \begin_inset LatexCommand index
27207 name "Archivos, insertar"
27208
27209 \end_inset
27210
27211
27212 \end_layout
27213
27214 \begin_layout Standard
27215 Con el menú 
27216 \family sans
27217 Insertar\SpecialChar \menuseparator
27218 Archivo 
27219 \family default
27220 se pueden insertar archivos externos en un documento.
27221  Estos pueden ser:
27222 \end_layout
27223
27224 \begin_layout Description
27225 Documento\InsetSpace ~
27226 LyX Otro documento LyX; su contenido se inserta directamente en
27227  tu documento.
27228 \end_layout
27229
27230 \begin_layout Description
27231 Texto\InsetSpace ~
27232 simple\InsetSpace ~
27233 como\InsetSpace ~
27234 líneas Un documento de texto; cada línea del mismo se inserta
27235  en tu documento como un nuevo párrafo.
27236 \end_layout
27237
27238 \begin_layout Description
27239 Texto\InsetSpace ~
27240 simple\InsetSpace ~
27241 como\InsetSpace ~
27242 párrafos Un documento de texto; cada línea del texto se inserta
27243  tal como está, formando un solo párrafo.
27244  Las líneas vacías generan un nuevo párrafo en tu documento.
27245 \end_layout
27246
27247 \begin_layout Description
27248 Material\InsetSpace ~
27249 externo Archivos en diversos formatos.
27250 \end_layout
27251
27252 \begin_layout Description
27253 Documento\InsetSpace ~
27254 hijo Documentos LyX, LaTeX o texto simple.
27255 \end_layout
27256
27257 \begin_layout Section
27258 Material Externo
27259 \begin_inset LatexCommand index
27260 name "Material Externo"
27261
27262 \end_inset
27263
27264
27265 \end_layout
27266
27267 \begin_layout Standard
27268 Esta característica te permite insertar archivos en tu documento sin convertirlo
27269 s previamente a un formato legible en la salida, ya que LyX se ocupa de
27270  las necesarias conversiones.
27271  Esto es parecido a la inserción de imágenes en diversos formatos en los
27272  documentos LyX.
27273 \end_layout
27274
27275 \begin_layout Standard
27276 El material externo se puede insertar mediante el diálogo que surge a partir
27277  del menú 
27278 \family sans
27279 Insertar\SpecialChar \menuseparator
27280 Archivo\SpecialChar \menuseparator
27281 Material\InsetSpace ~
27282 externo
27283 \family default
27284 .
27285  Actualmente se permiten los siguientes tipos de archivo (
27286 \family sans
27287 Plantillas
27288 \family default
27289 ):
27290 \end_layout
27291
27292 \begin_layout Description
27293 Diagrama\InsetSpace ~
27294 de\InsetSpace ~
27295 ajedrez Esta plantilla soporta diagramas posicionales de ajedrez
27296  hechos con el programa 
27297 \begin_inset ERT
27298 status collapsed
27299
27300 \begin_layout Standard
27301
27302
27303 \backslash
27304 href{http://en.wikipedia.org/wiki/XBoard}{
27305 \end_layout
27306
27307 \end_inset
27308
27309
27310 \series bold
27311 XBoard
27312 \series default
27313
27314 \begin_inset ERT
27315 status collapsed
27316
27317 \begin_layout Standard
27318
27319 }
27320 \end_layout
27321
27322 \end_inset
27323
27324 .
27325 \end_layout
27326
27327 \begin_layout Description
27328 Fecha Esta inserta la fecha en el formato 
27329 \emph on
27330 Día-Mes-Año.
27331
27332 \emph default
27333  A continuación hay una fecha insertada como material externo: 
27334 \begin_inset External
27335         template Date
27336         filename .
27337
27338 \end_inset
27339
27340
27341 \newline
27342 La fecha no se muestra en LyX, solo en la salida.
27343  Hay otros dos métodos de insertar una fecha, con el menú 
27344 \family sans
27345 Insertar\SpecialChar \menuseparator
27346 Fecha
27347 \family default
27348  y con el comando LaTeX 
27349 \series bold
27350
27351 \backslash
27352 today
27353 \series default
27354  en ERT.
27355  Los distintos métodos se comparan en la tabla\InsetSpace ~
27356
27357 \begin_inset LatexCommand ref
27358 reference "tab:Comparación-de"
27359
27360 \end_inset
27361
27362 .
27363 \end_layout
27364
27365 \begin_layout Description
27366 LilyPond Esta plantilla sirve para tipografiar notación musical con el programa
27367 \begin_inset ERT
27368 status collapsed
27369
27370 \begin_layout Standard
27371
27372
27373 \backslash
27374 linebreak 
27375 \end_layout
27376
27377 \end_inset
27378
27379
27380 \begin_inset ERT
27381 status collapsed
27382
27383 \begin_layout Standard
27384
27385
27386 \backslash
27387 href{http://en.wikipedia.org/wiki/LilyPond}{
27388 \end_layout
27389
27390 \end_inset
27391
27392
27393 \series bold
27394 LilyPond
27395 \series default
27396
27397 \begin_inset ERT
27398 status collapsed
27399
27400 \begin_layout Standard
27401
27402 }
27403 \end_layout
27404
27405 \end_inset
27406
27407 .
27408 \begin_inset Note Note
27409 status collapsed
27410
27411 \begin_layout Standard
27412 El comando 
27413 \series bold
27414
27415 \backslash
27416 linebreak
27417 \series default
27418  quiebra la línea de forma que el texto precedente se extiende hasta ajustarse
27419  al margen de página.
27420 \end_layout
27421
27422 \end_inset
27423
27424
27425 \end_layout
27426
27427 \begin_layout Description
27428 RasterImage Sirve para insertar imágenes bitmap.
27429  Casi todos los formatos populares de imágenes están soportados.
27430  Las imágenes se pueden tratar en el diálogo 
27431 \family sans
27432 Material Externo
27433 \family default
27434  como las que habitualmente se incluyen mediante el diálogo 
27435 \family sans
27436 Gráficos
27437 \family default
27438 , tal como se explica en la sección\InsetSpace ~
27439
27440 \begin_inset LatexCommand ref
27441 reference "sec:Diálogo-Gráficos"
27442
27443 \end_inset
27444
27445 .
27446  La diferencia es que solo se permiten imágenes bitmap, por tanto las imágenes
27447  PDF y EPS no están soportadas.
27448 \end_layout
27449
27450 \begin_layout Description
27451 XFig Esta plantilla soporta imágenes creadas con el programa 
27452 \begin_inset ERT
27453 status collapsed
27454
27455 \begin_layout Standard
27456
27457
27458 \backslash
27459 href{http://en.wikipedia.org/wiki/Xfig}{
27460 \end_layout
27461
27462 \end_inset
27463
27464
27465 \series bold
27466 Xfig
27467 \series default
27468
27469 \begin_inset ERT
27470 status collapsed
27471
27472 \begin_layout Standard
27473
27474 }
27475 \end_layout
27476
27477 \end_inset
27478
27479 .
27480 \end_layout
27481
27482 \begin_layout Standard
27483 \begin_inset Float table
27484 placement h
27485 wide false
27486 sideways false
27487 status open
27488
27489 \begin_layout Standard
27490 \begin_inset Caption
27491
27492 \begin_layout Standard
27493 \begin_inset LatexCommand label
27494 name "tab:Comparación-de"
27495
27496 \end_inset
27497
27498 Comparación de los métodos de inserción de fecha.
27499 \end_layout
27500
27501 \end_inset
27502
27503
27504 \end_layout
27505
27506 \begin_layout Standard
27507 \align center
27508 \begin_inset Tabular
27509 <lyxtabular version="3" rows="4" columns="4">
27510 <features>
27511 <column alignment="center" valignment="top" leftline="true" width="0">
27512 <column alignment="center" valignment="top" leftline="true" width="0">
27513 <column alignment="center" valignment="top" leftline="true" width="0">
27514 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27515 <row topline="true">
27516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27517 \begin_inset Text
27518
27519 \begin_layout Standard
27520 Tipo del Documento
27521 \end_layout
27522
27523 \end_inset
27524 </cell>
27525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27526 \begin_inset Text
27527
27528 \begin_layout Standard
27529
27530 \family sans
27531 Material Externo\SpecialChar \menuseparator
27532 Fecha
27533 \end_layout
27534
27535 \end_inset
27536 </cell>
27537 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27538 \begin_inset Text
27539
27540 \begin_layout Standard
27541
27542 \family sans
27543 Insertar\SpecialChar \menuseparator
27544 Fecha
27545 \end_layout
27546
27547 \end_inset
27548 </cell>
27549 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27550 \begin_inset Text
27551
27552 \begin_layout Standard
27553 comando 
27554 \series bold
27555
27556 \backslash
27557 today
27558 \end_layout
27559
27560 \end_inset
27561 </cell>
27562 </row>
27563 <row topline="true">
27564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27565 \begin_inset Text
27566
27567 \begin_layout Standard
27568 LyX
27569 \end_layout
27570
27571 \end_inset
27572 </cell>
27573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27574 \begin_inset Text
27575
27576 \begin_layout Standard
27577 como cuadro
27578 \end_layout
27579
27580 \end_inset
27581 </cell>
27582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27583 \begin_inset Text
27584
27585 \begin_layout Standard
27586 como fecha
27587 \end_layout
27588
27589 \end_inset
27590 </cell>
27591 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27592 \begin_inset Text
27593
27594 \begin_layout Standard
27595 como cuadro ERT
27596 \end_layout
27597
27598 \end_inset
27599 </cell>
27600 </row>
27601 <row topline="true">
27602 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27603 \begin_inset Text
27604
27605 \begin_layout Standard
27606 LaTeX
27607 \end_layout
27608
27609 \end_inset
27610 </cell>
27611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27612 \begin_inset Text
27613
27614 \begin_layout Standard
27615 como fecha
27616 \end_layout
27617
27618 \end_inset
27619 </cell>
27620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27621 \begin_inset Text
27622
27623 \begin_layout Standard
27624 como fecha
27625 \end_layout
27626
27627 \end_inset
27628 </cell>
27629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27630 \begin_inset Text
27631
27632 \begin_layout Standard
27633 como comando
27634 \end_layout
27635
27636 \end_inset
27637 </cell>
27638 </row>
27639 <row topline="true" bottomline="true">
27640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27641 \begin_inset Text
27642
27643 \begin_layout Standard
27644 DVI, PDF, PS
27645 \end_layout
27646
27647 \end_inset
27648 </cell>
27649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27650 \begin_inset Text
27651
27652 \begin_layout Standard
27653 como fecha
27654 \end_layout
27655
27656 \end_inset
27657 </cell>
27658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27659 \begin_inset Text
27660
27661 \begin_layout Standard
27662 como fecha
27663 \end_layout
27664
27665 \end_inset
27666 </cell>
27667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27668 \begin_inset Text
27669
27670 \begin_layout Standard
27671 como fecha
27672 \end_layout
27673
27674 \end_inset
27675 </cell>
27676 </row>
27677 </lyxtabular>
27678
27679 \end_inset
27680
27681
27682 \end_layout
27683
27684 \end_inset
27685
27686
27687 \end_layout
27688
27689 \begin_layout Standard
27690 Si utilizas la opción 
27691 \family sans
27692 Borrador
27693 \family default
27694  en la solapa 
27695 \family sans
27696 Archivo
27697 \family default
27698  del diálogo 
27699 \family sans
27700 Material Externo
27701 \family default
27702 , en el documento de salida solo se muestra la ruta al archivo insertado.
27703 \family sans
27704
27705 \newline
27706
27707 \family default
27708 El material externo se muestra en LyX como un cuadro del tipo:
27709 \family sans
27710  
27711 \family default
27712
27713 \begin_inset Graphics
27714         filename clipart/MaterialExternoQt4.png
27715         scale 80
27716
27717 \end_inset
27718
27719  o como imagen, según la configuración elegida en la solapa 
27720 \family sans
27721 Vista\InsetSpace ~
27722 LyX 
27723 \family default
27724 del diálogo 
27725 \family sans
27726 Material Externo.
27727 \end_layout
27728
27729 \begin_layout Standard
27730 En el manual 
27731 \emph on
27732 Personalización
27733 \emph default
27734  se explica cómo definir tus propias plantillas.
27735 \end_layout
27736
27737 \begin_layout Section
27738 Documento Hijo
27739 \begin_inset LatexCommand index
27740 name "Documento Hijo"
27741
27742 \end_inset
27743
27744
27745 \end_layout
27746
27747 \begin_layout Standard
27748 Los documentos hijos se emplean en el caso de tener un documento extenso
27749  compuesto por varias partes o secciones más grandes.
27750  Para trabajar en este tipo de documentos es útil, y a veces obligado, dividirlo
27751  en varios archivos que pueden ser revisados por separado.
27752  Estos archivos se conocen como documentos hijos, y el llamado documento
27753  maestro los conecta con el fin de imprimirlos como un todo o por partes.
27754  
27755 \end_layout
27756
27757 \begin_layout Standard
27758 Los documentos incluidos como hijos se muestran en la pantalla de LyX como
27759  cuadros del tipo: 
27760 \begin_inset Graphics
27761         filename clipart/DocumentoHijoQt4.png
27762         scale 80
27763
27764 \end_inset
27765
27766 .
27767  Para incluir documentos hijos en un documento maestro utiliza el menú 
27768 \family sans
27769 Insertar
27770 \family default
27771 \SpecialChar \menuseparator
27772
27773 \family sans
27774 Archivo
27775 \family default
27776 \SpecialChar \menuseparator
27777
27778 \family sans
27779 Documento\InsetSpace ~
27780 hijo
27781 \family default
27782 .
27783  Surge un diálogo en el que puedes elegir entre tres métodos de inclusión:
27784 \end_layout
27785
27786 \begin_layout Description
27787 Incluir Puedes incluir documentos LyX y documentos LaTeX.
27788  Al pulsar el botón 
27789 \family sans
27790 Cargar
27791 \family default
27792  en el diálogo 
27793 \family sans
27794 Documento hijo
27795 \family default
27796 , los documentos incluidos se abrirán en una nueva solapa de archivo en
27797  la ventana de LyX y así puedes modificarlos si quieres.
27798 \end_layout
27799
27800 \begin_layout Standard
27801 Aquí hay un archivo insertado con el método 
27802 \family sans
27803 Incluir
27804 \family default
27805 :
27806 \begin_inset Include \include{DocumentoPostizo1.lyx}
27807 preview false
27808
27809 \end_inset
27810
27811
27812 \end_layout
27813
27814 \begin_layout Standard
27815 La numeración de secciones tiene en cuenta las secciones de los archivos
27816  incluidos en el orden en que están insertados en el documento maestro.
27817  El documento incluido de ejemplo tiene una subsección que se numera como
27818  subsección de la presente sección.
27819  Las etiquetas de los documentos incluidos se pueden referenciar: Subsección\InsetSpace ~
27820
27821 \begin_inset LatexCommand ref
27822 reference "sub:Subsección-Externa-1"
27823
27824 \end_inset
27825
27826 .
27827 \end_layout
27828
27829 \begin_layout Standard
27830 El preámbulo del documento hijo se ignora, solo se utiliza el preámbulo
27831  del documento maestro.
27832  Los documentos incluidos se insertan comenzando una página nueva y acabando
27833  con un salto de página.
27834 \end_layout
27835
27836 \begin_layout Standard
27837 Con el comando LaTeX 
27838 \series bold
27839
27840 \backslash
27841 includeonly
27842 \series default
27843  puedes determinar qué documentos hijos serán procesados al generar la salida.
27844  Esto es útil si, por ejemplo, estás trabajando solo cierto capítulo de
27845  un extenso documento y quieres ahorrar tiempo de compilación.
27846  
27847 \series bold
27848
27849 \backslash
27850 includeonly 
27851 \series default
27852 se inserta en el preámbulo del documento maestro, poniendo como argumento
27853  una lista de los nombres de archivo separados con comas, p.\InsetSpace \thinspace{}
27854 e.
27855  la orden:
27856 \end_layout
27857
27858 \begin_layout Standard
27859
27860 \series bold
27861
27862 \backslash
27863 includeonly{capítulo1,capítulo5}
27864 \end_layout
27865
27866 \begin_layout Standard
27867 hará que solo se procesen los archivos incluidos cuyos nombres son 
27868 \begin_inset Quotes eld
27869 \end_inset
27870
27871 capítulo1.lyx
27872 \begin_inset Quotes erd
27873 \end_inset
27874
27875  (o 
27876 \begin_inset Quotes eld
27877 \end_inset
27878
27879 capítulo1.tex
27880 \begin_inset Quotes erd
27881 \end_inset
27882
27883 ) y 
27884 \begin_inset Quotes eld
27885 \end_inset
27886
27887 capítulo5.lyx
27888 \begin_inset Quotes erd
27889 \end_inset
27890
27891 .
27892 \end_layout
27893
27894 \begin_layout Standard
27895 \begin_inset Note Greyedout
27896 status collapsed
27897
27898 \begin_layout Standard
27899
27900 \series bold
27901 Nota:
27902 \series default
27903  Si has incluido un archivo LyX o LaTeX cuya clase de documento es distinta
27904  a la del documento maestro, recibirás una advertencia al exportar/ver el
27905  documento, ya que esto podría dar resultados inesperados.
27906 \end_layout
27907
27908 \end_inset
27909
27910
27911 \end_layout
27912
27913 \begin_layout Description
27914 Entrada Este método es muy parecido al método 
27915 \family sans
27916 Incluir
27917 \family default
27918 .
27919  Las diferencias son:
27920 \end_layout
27921
27922 \begin_deeper
27923 \begin_layout Itemize
27924 Los archivos del tipo Entrada no comienzan en página nueva ni acaban con
27925  un salto de página.
27926 \end_layout
27927
27928 \begin_layout Itemize
27929 Los archivos del tipo Entrada se pueden visualizar en LyX si la 
27930 \family sans
27931 Vista\InsetSpace ~
27932 preliminar\InsetSpace ~
27933 inmediata 
27934 \family default
27935 está activada en el diálogo 
27936 \family sans
27937 Herramientas\SpecialChar \menuseparator
27938 Preferencias
27939 \family default
27940 , apartado 
27941 \family sans
27942 Apariencia\SpecialChar \menuseparator
27943 Gráficos
27944 \family default
27945 .
27946 \end_layout
27947
27948 \begin_layout Itemize
27949 No se puede utilizar el comando LaTeX 
27950 \series bold
27951
27952 \backslash
27953 includeonly
27954 \series default
27955 .
27956 \end_layout
27957
27958 \end_deeper
27959 \begin_layout Standard
27960 Aquí hay un documento hijo insertado con el método 
27961 \family sans
27962 Entrada
27963 \family default
27964 :
27965 \end_layout
27966
27967 \begin_layout Standard
27968 \begin_inset Include \input{DocumentoPostizo2.lyx}
27969 preview true
27970
27971 \end_inset
27972
27973
27974 \end_layout
27975
27976 \begin_layout Description
27977 Literal Con este método se puede incluir todo archivo de texto.
27978  El archivo aparece en la salida con su código fuente, y si contiene comandos
27979  no se ejecutan.
27980  Con la opción 
27981 \family sans
27982 Marcar espacios en la salida
27983 \family default
27984  cada espacio en el código fuente se muestra en la salida con el carácter
27985  
27986 \begin_inset Quotes eld
27987 \end_inset
27988
27989
27990 \begin_inset ERT
27991 status open
27992
27993 \begin_layout Standard
27994
27995
27996 \backslash
27997 textvisiblespace
27998 \end_layout
27999
28000 \end_inset
28001
28002
28003 \begin_inset Quotes erd
28004 \end_inset
28005
28006 .
28007  La diferencia con el método de inserción mediante el menú 
28008 \family sans
28009 Insertar
28010 \family default
28011 \SpecialChar \menuseparator
28012
28013 \family sans
28014 Archivo
28015 \family default
28016 \SpecialChar \menuseparator
28017
28018 \family sans
28019 Texto\InsetSpace ~
28020 simple
28021 \family default
28022  es que en este caso el contenido del archivo se ve en LyX, mientras que
28023  en modo 
28024 \family sans
28025 Literal 
28026 \family default
28027 no se muestra el contenido, sino un recuadro con el nombre.
28028
28029 \family sans
28030  
28031 \end_layout
28032
28033 \begin_layout Standard
28034 Aquí se inserta un documento hijo en modo Literal:
28035 \begin_inset Include \verbatiminput{DocumentoTextoPostizo.txt}
28036 preview false
28037
28038 \end_inset
28039
28040
28041 \begin_inset VSpace bigskip
28042 \end_inset
28043
28044
28045 \end_layout
28046
28047 \begin_layout Standard
28048 Aquí se inserta un documento hijo en modo Literal con la opción 
28049 \family sans
28050 Marcar espacios en la salida
28051 \family default
28052 :
28053 \begin_inset Include \verbatiminput*{DocumentoTextoPostizo.txt}
28054 preview false
28055
28056 \end_inset
28057
28058
28059 \begin_inset VSpace bigskip
28060 \end_inset
28061
28062
28063 \end_layout
28064
28065 \begin_layout Standard
28066 \begin_inset Note Greyedout
28067 status open
28068
28069 \begin_layout Standard
28070
28071 \series bold
28072 Nota:
28073 \series default
28074  Como puedes ver en los ejemplos anteriores, el texto de los documentos
28075  incluidos en modo literal no contiene saltos de línea, a no ser que se
28076  incluyan expresamente en el archivo de texto.
28077 \end_layout
28078
28079 \end_inset
28080
28081
28082 \end_layout
28083
28084 \begin_layout Standard
28085 \begin_inset Note Greyedout
28086 status collapsed
28087
28088 \begin_layout Standard
28089
28090 \series bold
28091 Nota:
28092 \series default
28093  Incluir el mismo documento dos veces  con métodos diferentes podría causar
28094  problemas en LaTeX.
28095 \end_layout
28096
28097 \end_inset
28098
28099
28100 \end_layout
28101
28102 \begin_layout Standard
28103
28104 \newpage
28105
28106 \end_layout
28107
28108 \begin_layout Chapter
28109 \start_of_appendix
28110 Unidades disponibles en 
28111 \begin_inset ERT
28112 status collapsed
28113
28114 \begin_layout Standard
28115
28116
28117 \backslash
28118 texorpdfstring{
28119 \end_layout
28120
28121 \end_inset
28122
28123 LyX
28124 \begin_inset ERT
28125 status collapsed
28126
28127 \begin_layout Standard
28128
28129 }{LyX}
28130 \end_layout
28131
28132 \end_inset
28133
28134
28135 \begin_inset LatexCommand index
28136 name "Unidades"
28137
28138 \end_inset
28139
28140
28141 \begin_inset LatexCommand label
28142 name "cha:Unidades-disponibles-en"
28143
28144 \end_inset
28145
28146
28147 \begin_inset Note Note
28148 status collapsed
28149
28150 \begin_layout Standard
28151 El comando 
28152 \backslash
28153 texorpdfstring suministrado por el paquete LaTeX hyperref impide que los
28154  enlaces se muestren erróneamente en los marcadores PDF.
28155  Más información en 
28156 \begin_inset LatexCommand cite
28157 key "hyperref"
28158
28159 \end_inset
28160
28161 .
28162 \end_layout
28163
28164 \end_inset
28165
28166
28167 \end_layout
28168
28169 \begin_layout Standard
28170 Para comprender las unidades utilizadas en este manual, el cuadro\InsetSpace ~
28171
28172 \begin_inset LatexCommand ref
28173 reference "tab:Unidades"
28174
28175 \end_inset
28176
28177  describe todas las unidades disponibles en LyX.
28178 \end_layout
28179
28180 \begin_layout Standard
28181 \begin_inset Float table
28182 placement h
28183 wide false
28184 sideways false
28185 status open
28186
28187 \begin_layout Standard
28188 \begin_inset Caption
28189
28190 \begin_layout Standard
28191 \begin_inset LatexCommand label
28192 name "tab:Unidades"
28193
28194 \end_inset
28195
28196 Unidades
28197 \end_layout
28198
28199 \end_inset
28200
28201
28202 \end_layout
28203
28204 \begin_layout Standard
28205 \begin_inset VSpace medskip
28206 \end_inset
28207
28208
28209 \end_layout
28210
28211 \begin_layout Standard
28212 \align center
28213 \begin_inset Tabular
28214 <lyxtabular version="3" rows="20" columns="2">
28215 <features>
28216 <column alignment="center" valignment="top" leftline="true" width="0">
28217 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
28218 <row topline="true" bottomline="true">
28219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28220 \begin_inset Text
28221
28222 \begin_layout Standard
28223 unidad
28224 \end_layout
28225
28226 \end_inset
28227 </cell>
28228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28229 \begin_inset Text
28230
28231 \begin_layout Standard
28232 nombre/descripción
28233 \end_layout
28234
28235 \end_inset
28236 </cell>
28237 </row>
28238 <row topline="true">
28239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28240 \begin_inset Text
28241
28242 \begin_layout Standard
28243 mm
28244 \end_layout
28245
28246 \end_inset
28247 </cell>
28248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28249 \begin_inset Text
28250
28251 \begin_layout Standard
28252 milímetro
28253 \end_layout
28254
28255 \end_inset
28256 </cell>
28257 </row>
28258 <row topline="true">
28259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28260 \begin_inset Text
28261
28262 \begin_layout Standard
28263 cm
28264 \end_layout
28265
28266 \end_inset
28267 </cell>
28268 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28269 \begin_inset Text
28270
28271 \begin_layout Standard
28272 centímetro
28273 \end_layout
28274
28275 \end_inset
28276 </cell>
28277 </row>
28278 <row topline="true">
28279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28280 \begin_inset Text
28281
28282 \begin_layout Standard
28283 in
28284 \end_layout
28285
28286 \end_inset
28287 </cell>
28288 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28289 \begin_inset Text
28290
28291 \begin_layout Standard
28292 pulgada
28293 \end_layout
28294
28295 \end_inset
28296 </cell>
28297 </row>
28298 <row topline="true">
28299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28300 \begin_inset Text
28301
28302 \begin_layout Standard
28303 pt
28304 \end_layout
28305
28306 \end_inset
28307 </cell>
28308 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28309 \begin_inset Text
28310
28311 \begin_layout Standard
28312 punto (72.27\InsetSpace \thinspace{}
28313 pt = 1\InsetSpace \thinspace{}
28314 in)
28315 \end_layout
28316
28317 \end_inset
28318 </cell>
28319 </row>
28320 <row topline="true">
28321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28322 \begin_inset Text
28323
28324 \begin_layout Standard
28325 pc
28326 \end_layout
28327
28328 \end_inset
28329 </cell>
28330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28331 \begin_inset Text
28332
28333 \begin_layout Standard
28334 pica (1\InsetSpace \thinspace{}
28335 pc = 12\InsetSpace \thinspace{}
28336 pt)
28337 \end_layout
28338
28339 \end_inset
28340 </cell>
28341 </row>
28342 <row topline="true">
28343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28344 \begin_inset Text
28345
28346 \begin_layout Standard
28347 sp
28348 \end_layout
28349
28350 \end_inset
28351 </cell>
28352 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28353 \begin_inset Text
28354
28355 \begin_layout Standard
28356 punto escalado (65536\InsetSpace \thinspace{}
28357 sp = 1\InsetSpace \thinspace{}
28358 pt)
28359 \end_layout
28360
28361 \end_inset
28362 </cell>
28363 </row>
28364 <row topline="true">
28365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28366 \begin_inset Text
28367
28368 \begin_layout Standard
28369 bp
28370 \end_layout
28371
28372 \end_inset
28373 </cell>
28374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28375 \begin_inset Text
28376
28377 \begin_layout Standard
28378 punto grande (72\InsetSpace \thinspace{}
28379 bp = 1\InsetSpace \thinspace{}
28380 in)
28381 \end_layout
28382
28383 \end_inset
28384 </cell>
28385 </row>
28386 <row topline="true">
28387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28388 \begin_inset Text
28389
28390 \begin_layout Standard
28391 dd
28392 \end_layout
28393
28394 \end_inset
28395 </cell>
28396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28397 \begin_inset Text
28398
28399 \begin_layout Standard
28400 didot (72\InsetSpace \thinspace{}
28401 dd 
28402 \begin_inset Formula $\approx$
28403 \end_inset
28404
28405  37.6\InsetSpace \thinspace{}
28406 mm)
28407 \end_layout
28408
28409 \end_inset
28410 </cell>
28411 </row>
28412 <row topline="true">
28413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28414 \begin_inset Text
28415
28416 \begin_layout Standard
28417 cc
28418 \end_layout
28419
28420 \end_inset
28421 </cell>
28422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28423 \begin_inset Text
28424
28425 \begin_layout Standard
28426 cicero (1\InsetSpace \thinspace{}
28427 cc = 12\InsetSpace \thinspace{}
28428 dd)
28429 \end_layout
28430
28431 \end_inset
28432 </cell>
28433 </row>
28434 <row topline="true">
28435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28436 \begin_inset Text
28437
28438 \begin_layout Standard
28439 Scale%
28440 \end_layout
28441
28442 \end_inset
28443 </cell>
28444 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28445 \begin_inset Text
28446
28447 \begin_layout Standard
28448 % de anchura original de la imagen
28449 \end_layout
28450
28451 \end_inset
28452 </cell>
28453 </row>
28454 <row topline="true">
28455 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28456 \begin_inset Text
28457
28458 \begin_layout Standard
28459 text%
28460 \end_layout
28461
28462 \end_inset
28463 </cell>
28464 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28465 \begin_inset Text
28466
28467 \begin_layout Standard
28468 % de anchura de texto
28469 \end_layout
28470
28471 \end_inset
28472 </cell>
28473 </row>
28474 <row topline="true">
28475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28476 \begin_inset Text
28477
28478 \begin_layout Standard
28479 col%
28480 \end_layout
28481
28482 \end_inset
28483 </cell>
28484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28485 \begin_inset Text
28486
28487 \begin_layout Standard
28488 % de anchura de columna
28489 \end_layout
28490
28491 \end_inset
28492 </cell>
28493 </row>
28494 <row topline="true">
28495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28496 \begin_inset Text
28497
28498 \begin_layout Standard
28499 page%
28500 \end_layout
28501
28502 \end_inset
28503 </cell>
28504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28505 \begin_inset Text
28506
28507 \begin_layout Standard
28508 % de anchura de página
28509 \end_layout
28510
28511 \end_inset
28512 </cell>
28513 </row>
28514 <row topline="true">
28515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28516 \begin_inset Text
28517
28518 \begin_layout Standard
28519 line%
28520 \end_layout
28521
28522 \end_inset
28523 </cell>
28524 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28525 \begin_inset Text
28526
28527 \begin_layout Standard
28528 % de anchura de línea
28529 \end_layout
28530
28531 \end_inset
28532 </cell>
28533 </row>
28534 <row topline="true">
28535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28536 \begin_inset Text
28537
28538 \begin_layout Standard
28539 theight%
28540 \end_layout
28541
28542 \end_inset
28543 </cell>
28544 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28545 \begin_inset Text
28546
28547 \begin_layout Standard
28548 % de altura de texto
28549 \end_layout
28550
28551 \end_inset
28552 </cell>
28553 </row>
28554 <row topline="true">
28555 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28556 \begin_inset Text
28557
28558 \begin_layout Standard
28559 pheight%
28560 \end_layout
28561
28562 \end_inset
28563 </cell>
28564 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28565 \begin_inset Text
28566
28567 \begin_layout Standard
28568 % de altura de página
28569 \end_layout
28570
28571 \end_inset
28572 </cell>
28573 </row>
28574 <row topline="true">
28575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28576 \begin_inset Text
28577
28578 \begin_layout Standard
28579 ex
28580 \end_layout
28581
28582 \end_inset
28583 </cell>
28584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28585 \begin_inset Text
28586
28587 \begin_layout Standard
28588 altura de la letra 
28589 \emph on
28590 x
28591 \emph default
28592  en la fuente actual
28593 \end_layout
28594
28595 \end_inset
28596 </cell>
28597 </row>
28598 <row topline="true">
28599 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28600 \begin_inset Text
28601
28602 \begin_layout Standard
28603 em
28604 \end_layout
28605
28606 \end_inset
28607 </cell>
28608 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28609 \begin_inset Text
28610
28611 \begin_layout Standard
28612 anchura de la letra 
28613 \emph on
28614 M
28615 \emph default
28616  en la fuente actual
28617 \end_layout
28618
28619 \end_inset
28620 </cell>
28621 </row>
28622 <row topline="true" bottomline="true">
28623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28624 \begin_inset Text
28625
28626 \begin_layout Standard
28627 mu
28628 \end_layout
28629
28630 \end_inset
28631 </cell>
28632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28633 \begin_inset Text
28634
28635 \begin_layout Standard
28636 unidad matemática (1\InsetSpace \thinspace{}
28637 mu = 1/18\InsetSpace \thinspace{}
28638 em)
28639 \end_layout
28640
28641 \end_inset
28642 </cell>
28643 </row>
28644 </lyxtabular>
28645
28646 \end_inset
28647
28648
28649 \end_layout
28650
28651 \end_inset
28652
28653
28654 \end_layout
28655
28656 \begin_layout Chapter
28657 Formatos de Archivos de Salida con Gráficos
28658 \begin_inset LatexCommand label
28659 name "cha:Formatos-de-Archivos-de-Salida"
28660
28661 \end_inset
28662
28663
28664 \end_layout
28665
28666 \begin_layout Section
28667 DVI
28668 \begin_inset LatexCommand index
28669 name "Formatos de Archivo ! DVI"
28670
28671 \end_inset
28672
28673
28674 \begin_inset LatexCommand index
28675 name "DVI|see{Formatos de Archivo}"
28676
28677 \end_inset
28678
28679
28680 \end_layout
28681
28682 \begin_layout Standard
28683 Este tipo de archivo tiene la extensión 
28684 \begin_inset Quotes eld
28685 \end_inset
28686
28687
28688 \family typewriter
28689 .dvi
28690 \family default
28691
28692 \begin_inset Quotes erd
28693 \end_inset
28694
28695 .
28696  Se denomina 
28697 \begin_inset Quotes eld
28698 \end_inset
28699
28700 device-independent
28701 \begin_inset Quotes erd
28702 \end_inset
28703
28704  (DVI), porque es completamente portable; se pueden mover de una máquina
28705  a otra sin necesidad de conversión alguna.
28706  En la época en que se desarrolló este formato, esto no era un asunto baladí.
28707  Los DVIs se usan para previsualizaciones rápidas y como preparación para
28708  otros formatos de salida como PostScript.
28709 \end_layout
28710
28711 \begin_layout Standard
28712 \begin_inset Note Greyedout
28713 status open
28714
28715 \begin_layout Standard
28716
28717 \series bold
28718 Nota:
28719 \series default
28720  Los archivos DVI no contienen imágenes, sino enlaces a ellas.
28721 \end_layout
28722
28723 \end_inset
28724
28725  Por tanto no debes olvidar esto si mueves archivos 
28726 \family typewriter
28727 .dvi
28728 \family default
28729  a otro ordenador.
28730  Esta característica también puede retardar la visualización del archivo,
28731  porque el visor DVI tiene que convertir la imagen en segundo plano para
28732  hacerla visible al deslizar el visor.
28733  Así pues recomendamos usar PDF para archivos con muchas imágenes.
28734 \end_layout
28735
28736 \begin_layout Standard
28737 Un documento se exporta a DVI con el menú 
28738 \family sans
28739 Archivo\SpecialChar \menuseparator
28740 Exportar\SpecialChar \menuseparator
28741 DVI
28742 \family default
28743 .
28744  Puedes ver la salida del documento en DVI con el menú 
28745 \family sans
28746 Ver\SpecialChar \menuseparator
28747 DVI 
28748 \family default
28749 o con el botón\InsetSpace ~
28750
28751 \begin_inset Graphics
28752         filename ../../images/buffer-view_dvi.xpm
28753         scale 85
28754
28755 \end_inset
28756
28757 .
28758 \end_layout
28759
28760 \begin_layout Section
28761 PostScript
28762 \begin_inset LatexCommand label
28763 name "sec:PostScript"
28764
28765 \end_inset
28766
28767
28768 \begin_inset LatexCommand index
28769 name "Formatos de Archivo ! PostScript"
28770
28771 \end_inset
28772
28773
28774 \begin_inset LatexCommand index
28775 name "PostScript|see{Formatos de Archivo}"
28776
28777 \end_inset
28778
28779
28780 \end_layout
28781
28782 \begin_layout Standard
28783 Este tipo de archivo tiene la extensión 
28784 \begin_inset Quotes eld
28785 \end_inset
28786
28787
28788 \family typewriter
28789 .ps
28790 \family default
28791
28792 \begin_inset Quotes erd
28793 \end_inset
28794
28795 .
28796  PostScript fue desarrollado por la compañía 
28797 \family typewriter
28798 Adobe
28799 \family default
28800  como lenguaje para impresoras.
28801  Por eso estos archivos contienen comandos que usa la impresora para imprimirlos.
28802  PostScript puede considerarse como un 
28803 \begin_inset Quotes eld
28804 \end_inset
28805
28806 lenguaje de programación
28807 \begin_inset Quotes erd
28808 \end_inset
28809
28810 ; con él puedes calcular y dibujar imágenes y diagramas
28811 \begin_inset Foot
28812 status collapsed
28813
28814 \begin_layout Standard
28815 Si estás interesado en este tema acude al paquete LaTeX 
28816 \series bold
28817 PSTricks
28818 \series default
28819  
28820 \begin_inset LatexCommand cite
28821 key "pstricks"
28822
28823 \end_inset
28824
28825 .
28826 \end_layout
28827
28828 \end_inset
28829
28830 .
28831  Por esto los archivos suelen ser más grandes que los PDFs.
28832 \end_layout
28833
28834 \begin_layout Standard
28835 Los archivos PostScript solo pueden contener imágenes en el formato 
28836 \begin_inset Quotes eld
28837 \end_inset
28838
28839 Encapsulated PostScript
28840 \begin_inset Quotes erd
28841 \end_inset
28842
28843  (EPS, extensión 
28844 \begin_inset Quotes eld
28845 \end_inset
28846
28847
28848 \family typewriter
28849 .eps
28850 \family default
28851
28852 \begin_inset Quotes erd
28853 \end_inset
28854
28855 ).
28856  Como LyX permite usar cualquier formato de imagen conocido, tiene que trabajar
28857  en segundo plano para convertir las imágenes a EPS.
28858  Si por ejemplo, el documento tiene 50 imágenes, LyX ha de hacer 50 conversiones
28859  cada vez que veas o exportes el documento.
28860  Esto ralentizará mucho el trabajo, así que si piensas usar PostScript,
28861  puedes evitar el problema insertando las imágenes directamente en EPS.
28862 \end_layout
28863
28864 \begin_layout Standard
28865 El documento se puede exportar a PostScript con el menú 
28866 \family sans
28867 Archivo\SpecialChar \menuseparator
28868 Exportar\SpecialChar \menuseparator
28869 Postscript
28870 \family default
28871 .
28872  Se puede ver la salida en PostScript con el menú 
28873 \family sans
28874 Ver\SpecialChar \menuseparator
28875 Postscript 
28876 \family default
28877 o con el botón\InsetSpace ~
28878
28879 \begin_inset Graphics
28880         filename ../../images/buffer-view_ps.xpm
28881
28882 \end_inset
28883
28884 .
28885 \end_layout
28886
28887 \begin_layout Section
28888 PDF
28889 \begin_inset LatexCommand label
28890 name "sec:PDF"
28891
28892 \end_inset
28893
28894
28895 \begin_inset LatexCommand index
28896 name "Formatos de Archivo ! PDF"
28897
28898 \end_inset
28899
28900
28901 \begin_inset LatexCommand index
28902 name "PDF"
28903
28904 \end_inset
28905
28906
28907 \end_layout
28908
28909 \begin_layout Standard
28910 Este tipo de archivo tiene la extensión 
28911 \begin_inset Quotes eld
28912 \end_inset
28913
28914
28915 \family typewriter
28916 .pdf
28917 \family default
28918
28919 \begin_inset Quotes erd
28920 \end_inset
28921
28922 .
28923  El formato 
28924 \begin_inset Quotes eld
28925 \end_inset
28926
28927 Portable Document Format
28928 \begin_inset Quotes erd
28929 \end_inset
28930
28931  (PDF) fue desarrollado por 
28932 \family typewriter
28933 Adobe
28934 \family default
28935  como derivado de PostScript.
28936  Es más comprimido y utiliza muchos menos comandos que PostScript.
28937  Como su nombre 
28938 \begin_inset Quotes eld
28939 \end_inset
28940
28941 portable
28942 \begin_inset Quotes erd
28943 \end_inset
28944
28945  indica, puede ser procesado por cualquier sistema operativo y la salida
28946  impresa se muestra exactamente igual.
28947 \end_layout
28948
28949 \begin_layout Standard
28950 PDF puede contener imágenes en su propio formato PDF, en el formato 
28951 \begin_inset Quotes eld
28952 \end_inset
28953
28954 Joint Photographic Experts Group
28955 \begin_inset Quotes erd
28956 \end_inset
28957
28958  (JPG, extensión 
28959 \begin_inset Quotes eld
28960 \end_inset
28961
28962
28963 \family typewriter
28964 .jpg
28965 \family default
28966
28967 \begin_inset Quotes erd
28968 \end_inset
28969
28970  o 
28971 \begin_inset Quotes eld
28972 \end_inset
28973
28974
28975 \family typewriter
28976 .jpeg
28977 \family default
28978
28979 \begin_inset Quotes erd
28980 \end_inset
28981
28982 ), y en el formato 
28983 \begin_inset Quotes eld
28984 \end_inset
28985
28986 Portable Network Graphics
28987 \begin_inset Quotes erd
28988 \end_inset
28989
28990  (PNG, extensión 
28991 \begin_inset Quotes eld
28992 \end_inset
28993
28994
28995 \family typewriter
28996 .png
28997 \family default
28998
28999 \begin_inset Quotes erd
29000 \end_inset
29001
29002 ).
29003  Aunque puedes poner cualquier otro formato de imagen, porque LyX los convierte
29004  en segundo plano a alguno de los anteriores.
29005  Pero como se ha comentado en la sección sobre PostScript, la conversión
29006  de gráficos ralentiza el trabajo.
29007  Por tanto se recomienda utilizar alguno de los tres formatos de imagen
29008  mencionados.
29009 \end_layout
29010
29011 \begin_layout Standard
29012 Un documento se puede exportar a PDF con el menú 
29013 \family sans
29014 Archivo\SpecialChar \menuseparator
29015 Exportar
29016 \family default
29017  en tres modos diferentes:
29018 \end_layout
29019
29020 \begin_layout Description
29021 PDF Este utiliza el programa 
29022 \family typewriter
29023 ps2pdf
29024 \family default
29025  que crea un PDF a partir de una versión PostScript del archivo.
29026  La versión PostScript es producida por el programa 
29027 \family typewriter
29028 dvips
29029 \family default
29030  que usa una versión DVI como paso intermedio.
29031  Así que este modo de exportación consta de tres conversiones.
29032 \end_layout
29033
29034 \begin_layout Description
29035 PDF\InsetSpace ~
29036 (dvipdfm) Este utiliza el programa 
29037 \family typewriter
29038 dvipdfm
29039 \family default
29040  que convierte el archivo a DVI en segundo plano y en un segundo paso a
29041  PDF.
29042 \end_layout
29043
29044 \begin_layout Description
29045 PDF\InsetSpace ~
29046 (pdflatex) Este utiliza el programa 
29047 \family typewriter
29048 pdftex
29049 \family default
29050  que convierte directamente el archivo a PDF.
29051 \end_layout
29052
29053 \begin_layout Standard
29054 Se recomienda usar 
29055 \family sans
29056 PDF\InsetSpace ~
29057 (pdflatex)
29058 \family default
29059  porque 
29060 \family typewriter
29061 pdftex
29062 \family default
29063  soporta todas las características de las versiones actuales de PDF, es
29064  rápido y estable.
29065  El programa 
29066 \family typewriter
29067 dvipdfm
29068 \family default
29069  ya no se desarrolla y está un poco obsoleto.
29070 \end_layout
29071
29072 \begin_layout Standard
29073 La salida en formato PDF se puede ver con el menú 
29074 \family sans
29075 Ver 
29076 \family default
29077 o con el botón\InsetSpace ~
29078
29079 \begin_inset Graphics
29080         filename ../../images/buffer-view_pdf2.xpm
29081         scale 85
29082
29083 \end_inset
29084
29085  (que usa 
29086 \family sans
29087 PDF\InsetSpace ~
29088 (pdflatex)
29089 \family default
29090 ).
29091 \end_layout
29092
29093 \begin_layout Chapter
29094 Explicación de la Ecuación\InsetSpace ~
29095
29096 \begin_inset LatexCommand eqref
29097 reference "eq:Wgn"
29098
29099 \end_inset
29100
29101
29102 \begin_inset LatexCommand label
29103 name "cha:Explicación-de-la-Ecuación"
29104
29105 \end_inset
29106
29107
29108 \end_layout
29109
29110 \begin_layout Standard
29111 La anchura total de 
29112 \emph on
29113 n
29114 \emph default
29115  celdas de una tabla 
29116 \begin_inset Formula $W_{\mathrm{tot\, n}}$
29117 \end_inset
29118
29119  puede calcularse con
29120 \end_layout
29121
29122 \begin_layout Standard
29123 \begin_inset Formula \begin{equation}
29124 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
29125
29126 \end_inset
29127
29128
29129 \end_layout
29130
29131 \begin_layout Standard
29132 donde 
29133 \begin_inset Formula $W_{g\, n}$
29134 \end_inset
29135
29136  es el ancho dado de todas las celdas.
29137  
29138 \series bold
29139
29140 \backslash
29141 tabcolsep
29142 \series default
29143  es la longitud LaTeX entre el texto y el borde de la celda, 6\InsetSpace \thinspace{}
29144 pt por defecto.
29145  
29146 \series bold
29147
29148 \backslash
29149 arrayrulewidth
29150 \series default
29151  es el grosor de línea del borde, 0.4\InsetSpace \thinspace{}
29152 pt por defecto.
29153 \end_layout
29154
29155 \begin_layout Standard
29156 Procediendo como en la ecuación\InsetSpace ~
29157
29158 \begin_inset LatexCommand eqref
29159 reference "eq:Wtot_n"
29160
29161 \end_inset
29162
29163 , el ancho total de una multicolumna, 
29164 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
29165 \end_inset
29166
29167  es
29168 \end_layout
29169
29170 \begin_layout Standard
29171 \begin_inset Formula \begin{equation}
29172 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
29173
29174 \end_inset
29175
29176
29177 \end_layout
29178
29179 \begin_layout Standard
29180 Igualando las ecuaciones\InsetSpace ~
29181
29182 \begin_inset LatexCommand eqref
29183 reference "eq:Wtot_n"
29184
29185 \end_inset
29186
29187  y 
29188 \begin_inset LatexCommand eqref
29189 reference "eq:Wtot_mult"
29190
29191 \end_inset
29192
29193  podemos calcular el ancho dado necesario 
29194 \begin_inset Formula $W_{g\, n}$
29195 \end_inset
29196
29197  cuando se expanden 
29198 \emph on
29199 n
29200 \emph default
29201  columnas, de forma que cada una de ellas tiene una anchura total  
29202 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
29203 \end_inset
29204
29205 :
29206 \end_layout
29207
29208 \begin_layout Standard
29209 \begin_inset Formula \begin{equation}
29210 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
29211
29212 \end_inset
29213
29214
29215 \end_layout
29216
29217 \begin_layout Bibliography
29218 \begin_inset LatexCommand bibitem
29219 key "latexcompanion"
29220
29221 \end_inset
29222
29223 Frank Mittelbach and Michel Goossens: 
29224 \emph on
29225 The LaTeX Companion Second Edition.
29226
29227 \emph default
29228  Addison-Wesley, 2004
29229 \end_layout
29230
29231 \begin_layout Bibliography
29232 \begin_inset LatexCommand bibitem
29233 key "latexguide"
29234
29235 \end_inset
29236
29237 Helmut Kopka and Patrick W.
29238  Daly: 
29239 \emph on
29240 A Guide to LaTeX Fourth Edition.
29241
29242 \emph default
29243  Addison-Wesley, 2003
29244 \end_layout
29245
29246 \begin_layout Bibliography
29247 \begin_inset LatexCommand bibitem
29248 key "latexbook"
29249
29250 \end_inset
29251
29252 Leslie Lamport: 
29253 \emph on
29254 LaTeX: A Document Preparation System.
29255
29256 \emph default
29257  Addison-Wesley, second edition, 1994
29258 \end_layout
29259
29260 \begin_layout Bibliography
29261 \begin_inset LatexCommand bibitem
29262 key "booktabs"
29263
29264 \end_inset
29265
29266
29267 \begin_inset ERT
29268 status collapsed
29269
29270 \begin_layout Standard
29271
29272
29273 \backslash
29274 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
29275 {
29276 \end_layout
29277
29278 \end_inset
29279
29280 Documentación
29281 \begin_inset ERT
29282 status collapsed
29283
29284 \begin_layout Standard
29285
29286 }
29287 \end_layout
29288
29289 \end_inset
29290
29291  del paquete LaTeX 
29292 \series bold
29293 booktabs
29294 \series default
29295
29296 \begin_inset LatexCommand index
29297 name "LaTeX-paquetes ! booktabs"
29298
29299 \end_inset
29300
29301
29302 \end_layout
29303
29304 \begin_layout Bibliography
29305 \begin_inset LatexCommand bibitem
29306 key "caption"
29307
29308 \end_inset
29309
29310
29311 \begin_inset ERT
29312 status collapsed
29313
29314 \begin_layout Standard
29315
29316
29317 \backslash
29318 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
29319 \end_layout
29320
29321 \end_inset
29322
29323 Documentación
29324 \begin_inset ERT
29325 status collapsed
29326
29327 \begin_layout Standard
29328
29329 }
29330 \end_layout
29331
29332 \end_inset
29333
29334  del paquete LaTeX 
29335 \series bold
29336 caption
29337 \series default
29338
29339 \begin_inset LatexCommand index
29340 name "LaTeX-paquetes ! caption"
29341
29342 \end_inset
29343
29344
29345 \end_layout
29346
29347 \begin_layout Bibliography
29348 \begin_inset LatexCommand bibitem
29349 key "caption-de"
29350
29351 \end_inset
29352
29353
29354 \begin_inset ERT
29355 status collapsed
29356
29357 \begin_layout Standard
29358
29359
29360 \backslash
29361 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
29362 {
29363 \end_layout
29364
29365 \end_inset
29366
29367 Documentación
29368 \begin_inset ERT
29369 status collapsed
29370
29371 \begin_layout Standard
29372
29373 }
29374 \end_layout
29375
29376 \end_inset
29377
29378  en alemán del paquete LaTeX 
29379 \series bold
29380 caption
29381 \end_layout
29382
29383 \begin_layout Bibliography
29384 \begin_inset LatexCommand bibitem
29385 key "endfloat"
29386
29387 \end_inset
29388
29389
29390 \begin_inset ERT
29391 status collapsed
29392
29393 \begin_layout Standard
29394
29395
29396 \backslash
29397 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
29398 {
29399 \end_layout
29400
29401 \end_inset
29402
29403 Documentación
29404 \begin_inset ERT
29405 status collapsed
29406
29407 \begin_layout Standard
29408
29409 }
29410 \end_layout
29411
29412 \end_inset
29413
29414  del paquete LaTeX 
29415 \series bold
29416 endf\SpecialChar \textcompwordmark{}
29417 loat
29418 \series default
29419
29420 \begin_inset LatexCommand index
29421 name "LaTeX-paquetes ! endfloat"
29422
29423 \end_inset
29424
29425
29426 \end_layout
29427
29428 \begin_layout Bibliography
29429 \begin_inset LatexCommand bibitem
29430 key "floatflt"
29431
29432 \end_inset
29433
29434
29435 \begin_inset ERT
29436 status collapsed
29437
29438 \begin_layout Standard
29439
29440
29441 \backslash
29442 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
29443 {
29444 \end_layout
29445
29446 \end_inset
29447
29448 Documentación
29449 \begin_inset ERT
29450 status collapsed
29451
29452 \begin_layout Standard
29453
29454 }
29455 \end_layout
29456
29457 \end_inset
29458
29459  del paquete LaTeX 
29460 \series bold
29461 floatf\SpecialChar \textcompwordmark{}
29462 lt
29463 \series default
29464
29465 \begin_inset LatexCommand index
29466 name "LaTeX-paquetes ! floatflt"
29467
29468 \end_inset
29469
29470
29471 \end_layout
29472
29473 \begin_layout Bibliography
29474 \begin_inset LatexCommand bibitem
29475 key "footmisc"
29476
29477 \end_inset
29478
29479
29480 \begin_inset ERT
29481 status collapsed
29482
29483 \begin_layout Standard
29484
29485
29486 \backslash
29487 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
29488 {
29489 \end_layout
29490
29491 \end_inset
29492
29493 Documentación
29494 \begin_inset ERT
29495 status collapsed
29496
29497 \begin_layout Standard
29498
29499 }
29500 \end_layout
29501
29502 \end_inset
29503
29504  del paquete LaTeX 
29505 \series bold
29506 footmisc
29507 \series default
29508
29509 \begin_inset LatexCommand index
29510 name "LaTeX-paquetes ! footmisc"
29511
29512 \end_inset
29513
29514
29515 \end_layout
29516
29517 \begin_layout Bibliography
29518 \begin_inset LatexCommand bibitem
29519 key "hypcap"
29520
29521 \end_inset
29522
29523
29524 \begin_inset ERT
29525 status collapsed
29526
29527 \begin_layout Standard
29528
29529
29530 \backslash
29531 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
29532 \end_layout
29533
29534 \end_inset
29535
29536 Documentación
29537 \begin_inset ERT
29538 status collapsed
29539
29540 \begin_layout Standard
29541
29542 }
29543 \end_layout
29544
29545 \end_inset
29546
29547  del paquete LaTeX 
29548 \series bold
29549 hypcap
29550 \series default
29551
29552 \begin_inset LatexCommand index
29553 name "LaTeX-paquetes ! hyperref"
29554
29555 \end_inset
29556
29557
29558 \end_layout
29559
29560 \begin_layout Bibliography
29561 \begin_inset LatexCommand bibitem
29562 key "hyperref"
29563
29564 \end_inset
29565
29566
29567 \begin_inset ERT
29568 status collapsed
29569
29570 \begin_layout Standard
29571
29572
29573 \backslash
29574 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
29575 {
29576 \end_layout
29577
29578 \end_inset
29579
29580 Documentación
29581 \begin_inset ERT
29582 status collapsed
29583
29584 \begin_layout Standard
29585
29586 }
29587 \end_layout
29588
29589 \end_inset
29590
29591  del paquete LaTeX 
29592 \series bold
29593 hyperref
29594 \series default
29595
29596 \begin_inset LatexCommand index
29597 name "LaTeX-paquetes ! hyperref"
29598
29599 \end_inset
29600
29601
29602 \end_layout
29603
29604 \begin_layout Bibliography
29605 \begin_inset LatexCommand bibitem
29606 key "koma-script"
29607
29608 \end_inset
29609
29610
29611 \begin_inset ERT
29612 status collapsed
29613
29614 \begin_layout Standard
29615
29616
29617 \backslash
29618 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
29619 df}{
29620 \end_layout
29621
29622 \end_inset
29623
29624 Documentación
29625 \begin_inset ERT
29626 status collapsed
29627
29628 \begin_layout Standard
29629
29630 }
29631 \end_layout
29632
29633 \end_inset
29634
29635  del paquete LaTeX 
29636 \series bold
29637 koma-script
29638 \series default
29639
29640 \begin_inset LatexCommand index
29641 name "LaTeX-paquetes ! koma-script"
29642
29643 \end_inset
29644
29645
29646 \end_layout
29647
29648 \begin_layout Bibliography
29649 \begin_inset LatexCommand bibitem
29650 key "koma-script-de"
29651
29652 \end_inset
29653
29654
29655 \begin_inset ERT
29656 status collapsed
29657
29658 \begin_layout Standard
29659
29660
29661 \backslash
29662 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
29663 df}{
29664 \end_layout
29665
29666 \end_inset
29667
29668 Documentación
29669 \begin_inset ERT
29670 status collapsed
29671
29672 \begin_layout Standard
29673
29674 }
29675 \end_layout
29676
29677 \end_inset
29678
29679  en alemán del paquete LaTeX 
29680 \series bold
29681 koma-script
29682 \series default
29683
29684 \begin_inset LatexCommand index
29685 name "LaTeX-paquetes ! koma-script"
29686
29687 \end_inset
29688
29689
29690 \end_layout
29691
29692 \begin_layout Bibliography
29693 \begin_inset LatexCommand bibitem
29694 key "marginnote"
29695
29696 \end_inset
29697
29698
29699 \begin_inset ERT
29700 status collapsed
29701
29702 \begin_layout Standard
29703
29704
29705 \backslash
29706 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
29707 pdf}{
29708 \end_layout
29709
29710 \end_inset
29711
29712 Documentación
29713 \begin_inset ERT
29714 status collapsed
29715
29716 \begin_layout Standard
29717
29718 }
29719 \end_layout
29720
29721 \end_inset
29722
29723  del paquete LaTeX 
29724 \series bold
29725 marginnote
29726 \series default
29727
29728 \begin_inset LatexCommand index
29729 name "LaTeX-paquetes ! marginnote"
29730
29731 \end_inset
29732
29733
29734 \end_layout
29735
29736 \begin_layout Bibliography
29737 \begin_inset LatexCommand bibitem
29738 key "pstricks"
29739
29740 \end_inset
29741
29742
29743 \begin_inset ERT
29744 status collapsed
29745
29746 \begin_layout Standard
29747
29748
29749 \backslash
29750 href{http://tug.org/PSTricks/main.cgi/}{
29751 \end_layout
29752
29753 \end_inset
29754
29755 Página Web
29756 \begin_inset ERT
29757 status collapsed
29758
29759 \begin_layout Standard
29760
29761 }
29762 \end_layout
29763
29764 \end_inset
29765
29766  del paquete LaTeX 
29767 \series bold
29768 PSTricks
29769 \series default
29770
29771 \begin_inset LatexCommand index
29772 name "LaTeX-paquetes ! PSTricks"
29773
29774 \end_inset
29775
29776
29777 \end_layout
29778
29779 \begin_layout Bibliography
29780 \begin_inset LatexCommand bibitem
29781 key "sidecap"
29782
29783 \end_inset
29784
29785
29786 \begin_inset ERT
29787 status collapsed
29788
29789 \begin_layout Standard
29790
29791
29792 \backslash
29793 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
29794 \end_layout
29795
29796 \end_inset
29797
29798 Documentación
29799 \begin_inset ERT
29800 status collapsed
29801
29802 \begin_layout Standard
29803
29804 }
29805 \end_layout
29806
29807 \end_inset
29808
29809  del paquete LaTeX 
29810 \series bold
29811 sidecap
29812 \series default
29813
29814 \begin_inset LatexCommand index
29815 name "LaTeX-paquetes ! sidecap"
29816
29817 \end_inset
29818
29819
29820 \end_layout
29821
29822 \begin_layout Bibliography
29823 \begin_inset LatexCommand bibitem
29824 key "NewInLyX15"
29825
29826 \end_inset
29827
29828
29829 \begin_inset ERT
29830 status collapsed
29831
29832 \begin_layout Standard
29833
29834
29835 \backslash
29836 href{http://wiki.lyx.org/LyX/NewInLyX15}{
29837 \end_layout
29838
29839 \end_inset
29840
29841 Página Wiki
29842 \begin_inset ERT
29843 status collapsed
29844
29845 \begin_layout Standard
29846
29847 }
29848 \end_layout
29849
29850 \end_inset
29851
29852  sobre características nuevas previstas para la versión 
29853 \family sans
29854 LyX\InsetSpace ~
29855 1.5
29856 \family default
29857 .
29858 \end_layout
29859
29860 \begin_layout Standard
29861 \begin_inset LatexCommand printindex
29862
29863 \end_inset
29864
29865
29866 \end_layout
29867
29868 \begin_layout Standard
29869 \begin_inset FloatList figure
29870
29871 \end_inset
29872
29873
29874 \end_layout
29875
29876 \begin_layout Standard
29877 \begin_inset FloatList table
29878
29879 \end_inset
29880
29881
29882 \end_layout
29883
29884 \end_body
29885 \end_document