]> git.lyx.org Git - lyx.git/blob - lib/doc/es_Extended-Insets.lyx
- new documentation
[lyx.git] / lib / doc / es_Extended-Insets.lyx
1 #LyX 1.5.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 256
3 \begin_document
4 \begin_header
5 \textclass scrbook
6 \begin_preamble
7 % provides missing characters,
8 \usepackage{textcomp}
9
10 % provides caption formatting
11 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}
12
13 % provides commands to set caption
14 % beside tables/images
15 \usepackage{sidecap}
16
17 \newcommand{\TabBesBeg}{%
18  \let\MyTable\table
19  \let\MyEndtable\endtable
20  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
21
22 \newcommand{\TabBesEnd}{%
23  \let\table\MyTable
24  \let\endtable\MyEndtable}
25
26 \newcommand{\FigBesBeg}{%
27  \let\MyFigure\figure
28  \let\MyEndfigure\endfigure
29  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
30
31 \newcommand{\FigBesEnd}{%
32  \let\figure\MyFigure
33  \let\endfigure\MyEndfigure}
34
35 % use the marginnote package for margin notes
36 \usepackage{marginnote}
37 \let\marginpar\marginnote
38
39 % enables calculation of values,
40 \usepackage{calc}
41
42 % provides special table cell alignments
43 \usepackage{dcolumn}
44
45 % increase the bottom float placement fraction
46 \renewcommand{\bottomfraction}{0.5}
47
48 % avoids that floats are placed before their
49 % corresponding section starts
50 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
51
52 % speed up the longtable calculation
53 \setcounter{LTchunksize}{100}
54
55 % define a new reference format
56 \newrefformat{fig}
57  % {Figure~float~\ref{#1} printed on page~\pageref{#1}}
58  % en español:
59  {Figura~flotante~\ref{#1} impresa en página~\pageref{#1}}
60
61 % if pdflatex is used
62 \usepackage{ifpdf}
63 \ifpdf
64
65 % set fonts for nicer pdf view
66 \IfFileExists{lmodern.sty}
67  {\usepackage{lmodern}} % if it exists
68  {% if it exists not
69   \usepackage[scaled=0.92]{helvet}
70   \usepackage{mathptmx}
71   \usepackage{courier}
72  } % end if it exists not
73
74 % link all cross references and URLs
75 % in pdf output
76  \usepackage[colorlinks=true, bookmarks, bookmarksnumbered, bookmarksopen, bookmarksopenlevel=2,
77   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,
78   pdfpagelayout=OneColumn, pdfnewwindow=true,
79   pdfstartview=XYZ, plainpages=false, pdfpagelabels,
80   pdfauthor={LyX Team}, pdftex,
81   pdftitle={LyX's Table Manual},
82   pdfsubject={LyX-documentation about tables},
83   pdfkeywords={LyX}]{hyperref}
84  
85 \else % if dvi or ps is produced
86
87  % link all cross references and URLs in DVI output
88  \usepackage[ps2pdf, colorlinks=true,
89   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue]{hyperref}
90
91 \fi % end if pdflatex is used
92
93 % that links to image floats jumps
94 % to the beginning of the float and 
95 % not to its caption
96 \usepackage[figure]{hypcap}
97
98 % used for colored tables
99 \@ifundefined{textcolor}
100  {\usepackage{color}}{}
101 \usepackage{colortbl}
102 %\definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
103 %\definecolor{lightgrey}{gray}{0.8}
104 \definecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5} %español
105 \definecolor{grisclaro}{gray}{0.8}              %español
106
107 % used for tables with dashed lines
108 \usepackage{arydshln}
109
110 % used for multirows
111 \usepackage{multirow}
112 %\renewcommand{\multirowsetup}{\centering}
113
114 % used for book-style tables
115 \usepackage{booktabs}
116
117 % used to have extra space in table cells,
118 \setlength{\extrarowheight}{2pt}
119
120 % used for customized tables
121 % ---
122 \newcolumntype{M}[1]
123  {>{\centering\hspace{0pt}}m{#1}}
124
125 \newcolumntype{S}[2]
126  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
127
128 \newcolumntype{K}[1]
129  {>{\columncolor{#1}\hspace{0pt}}c}
130
131 \newcolumntype{V}{!{\vrule width 1.5pt}}
132
133 \newcolumntype{W}{!{\color{green}\vline}}
134 % ---
135
136 % To be able to enter the characters ° , · and × directly in LyX
137 \DeclareInputText{177}{\ifmmode\pm\else\textpm\fi}
138 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
139 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
140 \DeclareInputText{215}{\ifmmode\times\else\texttimes\fi}
141
142 % the pages of the TOC are numbered roman
143 % and a PDF-bookmark for the TOC is added
144 \pagenumbering{roman}
145 \let\myTOC\tableofcontents
146 \renewcommand{\tableofcontents}{%
147 % \pdfbookmark[1]{Contents}{}
148  \pdfbookmark[1]{Contenidos}{}  %en español
149  \myTOC}
150  \clearpage
151  \pagenumbering{arabic}
152
153 % increase link area for cross-references
154 % and autoname them
155 %\AtBeginDocument{\renewcommand{\ref}[1]
156 % {\mbox{\autoref{#1}}}}
157 %\newlength{\abc}
158 %\settowidth{\abc}{\space}
159 %\renewcommand{\equationautorefname}
160 % {\hspace{-\abc}}
161
162 % insert additional vertical space of
163 % 1.5 mm between footnotes
164 \let\myFoot\footnote
165 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
166
167 % enable algorithm floats to be referenced
168 \newfloat{Xalgorithm}{tbp}{loa}
169 %\floatname{Xalgorithm}{Algorithm}
170 \floatname{Xalgorithm}{Algoritmo}       %en español
171 \newcommand{\theHalgorithm}{\theHXalgorithm}
172 \renewenvironment{algorithm}[1][tbp]
173  {\begin{Xalgorithm}[#1]}{\end{Xalgorithm}}
174
175 % number algorithm floats within chapters
176 \numberwithin{Xalgorithm}{chapter}
177
178 % redefine the greyed out note
179 \renewenvironment{lyxgreyedout}
180  {\textcolor{blue}\bgroup}{\egroup}
181 \end_preamble
182 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage
183 \language spanish
184 \inputencoding auto
185 \font_roman default
186 \font_sans default
187 \font_typewriter default
188 \font_default_family default
189 \font_sc false
190 \font_osf false
191 \font_sf_scale 100
192 \font_tt_scale 100
193 \graphics default
194 \paperfontsize 12
195 \spacing single
196 \papersize default
197 \use_geometry false
198 \use_amsmath 2
199 \use_esint 0
200 \cite_engine basic
201 \use_bibtopic false
202 \paperorientation portrait
203 \secnumdepth 3
204 \tocdepth 3
205 \paragraph_separation skip
206 \defskip medskip
207 \quotes_language english
208 \papercolumns 1
209 \papersides 2
210 \paperpagestyle default
211 \bullet 1 1 34 -1
212 \bullet 2 2 35 -1
213 \bullet 3 2 7 -1
214 \tracking_changes false
215 \output_changes true
216 \author "usti" 
217 \end_header
218
219 \begin_body
220
221 \begin_layout Title
222 Manual de Cuadros, Figuras, Flotantes, Notas y Tablas en LyX
223 \end_layout
224
225 \begin_layout Author
226 por el Equipo LyX
227 \begin_inset Foot
228 status collapsed
229
230 \begin_layout Standard
231 \noindent
232 Si tienes comentarios o correcciones, por favor, envíalo a la lista de correo
233  de Documentación de LyX: 
234 \family typewriter
235
236 \begin_inset ERT
237 status collapsed
238
239 \begin_layout Standard
240
241
242 \backslash
243 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's es-Extended-Insets manual}{
244 \end_layout
245
246 \end_inset
247
248 lyx-docs@lists.lyx.org
249 \begin_inset ERT
250 status collapsed
251
252 \begin_layout Standard
253
254 }
255 \end_layout
256
257 \end_inset
258
259
260 \end_layout
261
262 \end_inset
263
264
265 \begin_inset Note Note
266 status collapsed
267
268 \begin_layout Standard
269 autor original: Uwe Stöhr <uwestoehr@web.de>
270 \end_layout
271
272 \end_inset
273
274
275 \begin_inset Note Note
276 status collapsed
277
278 \begin_layout Standard
279 Traducción de: Ignacio García <ignacio.garcia@tele2.es> 
280 \end_layout
281
282 \end_inset
283
284
285 \newline
286
287 \newline
288
289 \family sans
290 Versión 1.4.3-5
291 \end_layout
292
293 \begin_layout Standard
294 \begin_inset LatexCommand tableofcontents
295
296 \end_inset
297
298
299 \end_layout
300
301 \begin_layout Chapter
302 Figuras
303 \begin_inset LatexCommand label
304 name "cha:Figuras"
305
306 \end_inset
307
308
309 \begin_inset LatexCommand index
310 name "Figuras"
311
312 \end_inset
313
314
315 \end_layout
316
317 \begin_layout Section
318 Diálogo Gráficos
319 \begin_inset LatexCommand index
320 name "Figuras ! Diálogo Gráficos"
321
322 \end_inset
323
324
325 \end_layout
326
327 \begin_layout Standard
328 Para insertar una imagen en un documento, sitúa el cursor en el lugar del
329  texto que desees y haz click en el icono 
330 \begin_inset Graphics
331         filename ../images/dialog-show-new-inset_graphics.xpm
332         scale 85
333
334 \end_inset
335
336  o en el menú 
337 \family sans
338 Insertar\SpecialChar \menuseparator
339 Imagen\SpecialChar \ldots{}
340
341 \family default
342  Aparecerá un diálogo para escoger el archivo a cargar.
343  La imagen aparecerá en el archivo de salida exactamente en la misma posición
344  en la que la has colocado.
345 \end_layout
346
347 \begin_layout Standard
348 El diálogo Gráficos puede lanzarse en cualquier momento haciendo click-derecha
349  sobre una imagen.
350  Este diálogo tiene tres pestañas:
351 \end_layout
352
353 \begin_layout Description
354 Gráficos Aquí puedes elegir tu archivo gráfico y ajustar separadamente su
355  presentación en LyX y en la salida.
356  En el apéndice\InsetSpace ~
357
358 \begin_inset LatexCommand ref
359 reference "cha:Unidades-disponibles-en"
360
361 \end_inset
362
363  se detallan las unidades disponibles para el tamaño del gráfico.
364 \newline
365 Puedes girar
366  los gráficos en el sentido de las agujas de reloj estableciendo un ángulo
367  y un origen de rotación.
368  La imagen también gira en LyX.
369 \end_layout
370
371 \begin_layout Description
372 Recorte Alternativamente al escalado, es posible establacer las coordenadas
373  de la imagen para ajustar su altura y anchura en la salida.
374  Además, las coordenadas se pueden calcular automáticamente pinchando el
375  botón 
376 \family sans
377 Obtener\InsetSpace ~
378 de\InsetSpace ~
379 archivo
380 \family default
381 .
382  El botón 
383 \family sans
384 Recortar\InsetSpace ~
385 al\InsetSpace ~
386 cuadro\InsetSpace ~
387 delimitador
388 \family default
389  imprimirá sólo la región de la imagen comprendida en las coordenadas introducid
390 as.
391  Normalmente no necesitarás preocuparte por esto y puedes ignorar esta pestaña.
392 \end_layout
393
394 \begin_layout Description
395 Opciones\InsetSpace ~
396 extra Aquí puedes poner una imagen como subfigura de una figura
397  flotante que tiene su propio título.
398  Las subfiguras se explican en la sección\InsetSpace ~
399
400 \begin_inset LatexCommand ref
401 reference "sec:Figuras-Flotantes"
402
403 \end_inset
404
405 .
406 \newline
407 Los expertos en LaTeX pueden especificar aquí opciones LaTeX adicionales.
408 \newline
409 La
410  opción 
411 \family sans
412 Modo\InsetSpace ~
413 borrador
414 \family default
415  hace que en la salida se muestre sólo un marco con el tamaño de la imagen.
416 \newline
417 La
418  opción 
419 \family sans
420 No\InsetSpace ~
421 descomprimir\InsetSpace ~
422 al\InsetSpace ~
423 exportar
424 \family default
425  sólo afecta a los gráficos EPS comprimidos, p.\InsetSpace \thinspace{}
426 e.\InsetSpace ~
427
428 \emph on
429 x.eps.gz
430 \emph default
431 .
432  Si se usa esta opción, las imágenes no serán descomprimidas al exportar,
433  puesto que LaTeX puede manejarlas como están.
434 \newline
435 Los gráficos EPS comprimidos
436  sirven para ahorrar espacio de disco si se utiliza PostScript como formato
437  de salida, ver apéndice\InsetSpace ~
438
439 \begin_inset LatexCommand ref
440 reference "sec:PostScript"
441
442 \end_inset
443
444 .
445  Para comprimir gráficos EPS, use los siguientes comandos en un UNIX-shell
446  o en consola de Windows:
447 \newline
448
449 \series bold
450 gzip x.eps
451 \series default
452
453 \newline
454
455 \series bold
456 zgrep %%Bounding x.eps.gz > x.eps.bb
457 \series default
458
459 \newline
460 El segundo comando crea un archivo de cuadro delimitador 
461 \begin_inset Quotes eld
462 \end_inset
463
464 x.eps.bb
465 \begin_inset Quotes erd
466 \end_inset
467
468  que necesita LaTeX para gráficos comprimidos.
469 \end_layout
470
471 \begin_layout Standard
472
473 \newpage
474
475 \end_layout
476
477 \begin_layout Standard
478 Esto es un ejemplo de imagen en formato PDF
479 \begin_inset Foot
480 status open
481
482 \begin_layout Standard
483 El formato PDF se explica en el apéndice\InsetSpace ~
484
485 \begin_inset LatexCommand ref
486 reference "sec:PDF"
487
488 \end_inset
489
490 .
491 \end_layout
492
493 \end_inset
494
495  en un párrafo separado centrado horizontalmente:
496 \end_layout
497
498 \begin_layout Standard
499 \align center
500 \begin_inset Graphics
501         filename ../clipart/mobius.pdf
502         display color
503         scale 70
504         rotateOrigin center
505
506 \end_inset
507
508
509 \end_layout
510
511 \begin_layout Standard
512 Esta es la misma imagen pero en modo borrador:
513 \end_layout
514
515 \begin_layout Standard
516 \align center
517 \begin_inset Graphics
518         filename ../clipart/mobius.pdf
519         display color
520         scale 70
521         draft
522         rotateOrigin center
523
524 \end_inset
525
526
527 \end_layout
528
529 \begin_layout Section
530 Figuras Flotantes
531 \begin_inset LatexCommand label
532 name "sec:Figuras-Flotantes"
533
534 \end_inset
535
536
537 \begin_inset LatexCommand index
538 name "Flotantes ! Figuras Flotantes"
539
540 \end_inset
541
542
543 \begin_inset LatexCommand index
544 name "Figuras ! Flotantes"
545
546 \end_inset
547
548
549 \end_layout
550
551 \begin_layout Standard
552 Para información general sobre flotantes, echa una ojeada a la sección\InsetSpace ~
553
554 \begin_inset LatexCommand ref
555 reference "sec:IntroducciónFlotantes"
556
557 \end_inset
558
559 .
560 \end_layout
561
562 \begin_layout Standard
563 El botón 
564 \begin_inset Graphics
565         filename ../images/float-insert_figure.xpm
566         scale 85
567
568 \end_inset
569
570  y el menú 
571 \family sans
572 Insertar\SpecialChar \menuseparator
573 Flotante\SpecialChar \menuseparator
574 Figura
575 \family default
576  insertan un flotante con la etiqueta "
577 \series bold
578 Figura #:
579 \series default
580 ".
581  Tras ella escribe el título que quieras para la figura.
582  Para insertar una imagen sobre su título sitúa el cursor delante de dicho
583  título, presiona Enter e inserta la imagen como se describe arriba.
584  Esto se hace para la Figura\InsetSpace ~
585
586 \begin_inset LatexCommand ref
587 reference "fig:kill-plat"
588
589 \end_inset
590
591 .
592  Si quieres que la imagen esté bajo su título, sitúa el cursor detrás del
593  mismo, presiona Enter e inserta la imagen.
594  Esto se hace para la Figura\InsetSpace ~
595
596 \begin_inset LatexCommand ref
597 reference "fig:escher"
598
599 \end_inset
600
601 .
602  Más sobre ubicación de títulos se describe en la sección\InsetSpace ~
603
604 \begin_inset LatexCommand ref
605 reference "sec:Colocación-de-Encabezados"
606
607 \end_inset
608
609 .
610 \end_layout
611
612 \begin_layout Standard
613 \begin_inset Float figure
614 wide false
615 sideways false
616 status open
617
618 \begin_layout Standard
619 \align center
620 \begin_inset Graphics
621         filename ../clipart/platypus.pdf
622         display color
623         width 50col%
624         rotateOrigin center
625
626 \end_inset
627
628
629 \end_layout
630
631 \begin_layout Caption
632 \begin_inset LatexCommand label
633 name "fig:kill-plat"
634
635 \end_inset
636
637 Un platypus muy distorsionado en un flotante.
638 \end_layout
639
640 \end_inset
641
642
643 \end_layout
644
645 \begin_layout Standard
646 \begin_inset Float figure
647 wide false
648 sideways false
649 status open
650
651 \begin_layout Caption
652 \begin_inset LatexCommand label
653 name "fig:escher"
654
655 \end_inset
656
657 M.C.
658  Escher en ácido.
659 \end_layout
660
661 \begin_layout Standard
662 \align center
663 \begin_inset Graphics
664         filename ../clipart/escher-lsd.pdf
665         display color
666         scale 80
667         rotateOrigin center
668
669 \end_inset
670
671
672 \end_layout
673
674 \end_inset
675
676
677 \end_layout
678
679 \begin_layout Standard
680 \begin_inset LatexCommand index
681 name "Referencias ! a Figuras"
682
683 \end_inset
684
685 Las figuras\InsetSpace ~
686
687 \begin_inset LatexCommand ref
688 reference "fig:kill-plat"
689
690 \end_inset
691
692  y 
693 \begin_inset LatexCommand ref
694 reference "fig:escher"
695
696 \end_inset
697
698  son un ejemplo de figuras con referencias cruzadas.
699  Las figuras pueden tener referencias cruzadas en el texto mediante referencia
700  a su etiqueta.
701  Para hacerlo inserta una etiqueta en el título usando el menú 
702 \family sans
703 Insertar\SpecialChar \menuseparator
704 Etiqueta
705 \family default
706  o el botón 
707 \begin_inset Graphics
708         filename ../images/label-insert.xpm
709         scale 85
710
711 \end_inset
712
713 .
714  Ahora puedes referirte a la etiqueta usando el menú 
715 \family sans
716 Insertar\SpecialChar \menuseparator
717 Referencia\InsetSpace ~
718 cruzada
719 \family default
720  o el botón 
721 \begin_inset Graphics
722         filename ../images/dialog-show-new-inset_ref.xpm
723         scale 85
724
725 \end_inset
726
727 .
728  Es importante emplear referencias a flotantes, mejor que alusiones vagas
729  como "la figura de arriba", porque como LaTeX recolocará los flotantes
730  en el documento final, podría no quedar "arriba" precisamente.
731 \end_layout
732
733 \begin_layout Standard
734 Normalmente sólo se inserta una imagen en un flotante, pero a veces podríamos
735  querer poner dos imágenes con subtítulos separados.
736  Esto es posible mediante la pestaña 
737 \family sans
738 Opciones\InsetSpace ~
739 extra
740 \family default
741  del diálogo gráficos.
742  Elije la opción 
743 \family sans
744 Subfigura
745 \family default
746  e introduce el subtítulo en la casilla 
747 \family sans
748 Descripción
749 \family default
750 .
751  Observa que sólo el título principal del flotante se añade a la Lista de
752  Figuras.
753 \end_layout
754
755 \begin_layout Standard
756 La figura\InsetSpace ~
757
758 \begin_inset LatexCommand ref
759 reference "fig:Dos-imágenes-distorsionadas"
760
761 \end_inset
762
763  es un ejemplo de figura flotante con dos imágenes una junto a otra.
764  también se pueden poner una sobre otra.
765 \end_layout
766
767 \begin_layout Standard
768 \begin_inset Float figure
769 wide false
770 sideways false
771 status open
772
773 \begin_layout Standard
774
775 \hfill
776
777 \begin_inset Graphics
778         filename ../clipart/escher-lsd.pdf
779         width 45col%
780         subcaption
781         subcaptionText "Estructura indefinible"
782
783 \end_inset
784
785
786 \hfill
787
788 \begin_inset Graphics
789         filename ../clipart/platypus.pdf
790         lyxscale 60
791         width 45col%
792         subcaption
793         subcaptionText "Platypus"
794
795 \end_inset
796
797
798 \hfill
799
800 \end_layout
801
802 \begin_layout Caption
803 \begin_inset LatexCommand label
804 name "fig:Dos-imágenes-distorsionadas"
805
806 \end_inset
807
808 Dos imágenes distorsionadas.
809 \end_layout
810
811 \end_inset
812
813
814 \end_layout
815
816 \begin_layout Section
817 Formatos de Imagen
818 \begin_inset LatexCommand label
819 name "sec:Formatos-de-imagen"
820
821 \end_inset
822
823
824 \begin_inset LatexCommand index
825 name "Formatos de Imagen"
826
827 \end_inset
828
829
830 \begin_inset LatexCommand index
831 name "Figuras ! Formatos de Imagen"
832
833 \end_inset
834
835
836 \end_layout
837
838 \begin_layout Standard
839 Puedes insertar imágenes en cualquier formato.
840  Pero como se explica en el apéndice \InsetSpace ~
841
842 \begin_inset LatexCommand ref
843 reference "cha:Formatos-de-Archivos-de-Salida"
844
845 \end_inset
846
847 , cada formato de archivo del documento de salida permite solo ciertos formatos
848  de archivo de imagen.
849  Por eso LyX usa el programa 
850 \family sans
851 Imagemagick
852 \family default
853  en segundo plano para convertir imágenes al formato adecuado.
854  Para aumentar el rendimiento evitando estas conversiones, puedes usar sólo
855  los formatos de imagen admitidos en el formato de archivo de salida.
856  Los formatos de salida se explican en el apéndice \InsetSpace ~
857
858 \begin_inset LatexCommand ref
859 reference "cha:Formatos-de-Archivos-de-Salida"
860
861 \end_inset
862
863 .
864 \end_layout
865
866 \begin_layout Standard
867 Igual que para las fuentes, hay dos tipos de archivos de imagen:
868 \end_layout
869
870 \begin_layout Description
871 Imágenes\InsetSpace ~
872 Mapa\InsetSpace ~
873 de\InsetSpace ~
874 bits (Bitmap) consiste en valores de píxel, generalmente comprimid
875 os.
876  Por tanto no son totalmente escalables y se ven pixeladas a valores altos
877  de zoom.
878  Formatos de imágenes en bitmap bien conocidos son "Graphics Interchange
879  Format" (GIF, extensión ".gif")
880 \begin_inset LatexCommand index
881 name "GIF|see{Formatos de Imagen}"
882
883 \end_inset
884
885 , "Portable Network Graphics" (PNG, extensión ".png")
886 \begin_inset LatexCommand index
887 name "PNG|see{Formatos de Imagen}"
888
889 \end_inset
890
891 , y "Joint Photographic Experts Group" (JPG, extensión ".jpg" o ".jpeg")
892 \begin_inset LatexCommand index
893 name "JPG|see{Formatos de Imagen}"
894
895 \end_inset
896
897 .
898 \end_layout
899
900 \begin_layout Description
901 Imágenes\InsetSpace ~
902 vectoriales consisten en vectores y por tanto pueden escalarse a
903  cualquier tamaño sin pérdidas.
904  La posibilidad de escalado hace falta para crear presentaciones, porque
905  éstas siempre son escaladas por el proyector.
906  El escalado también es útil en los documentoos en línea para permitir el
907  zoom en diagramas.
908 \newline
909 Formatos de imagen escalables pueden ser "Scalable Vector
910  Graphics" (SVG, extensión ".svg")
911 \begin_inset LatexCommand index
912 name "SVG|see{Formatos de Imagen}"
913
914 \end_inset
915
916 , "Encapsulated PostScript" (EPS, extensión ".eps")
917 \begin_inset LatexCommand index
918 name "EPS|see{Formatos de Imagen}"
919
920 \end_inset
921
922 , "Portabla Document Format" (PDF, extensión ".pdf")
923 \begin_inset LatexCommand index
924 name "PDF|see{Formatos de Imagen}"
925
926 \end_inset
927
928 , y "Windows Metafile" (WMF, extensión ".wmf")
929 \begin_inset LatexCommand index
930 name "WMF|see{Formatos de Imagen}"
931
932 \end_inset
933
934 .
935  Escribimos "pueden ser", porque se puede convertir cualquier imagen bitmap
936  a PDF o EPS y el resultado será todavía una imagen bitmap.
937  En estos casos sólo se añade una cabecera con las propiedades de la imagen
938  a la imagen original
939 \begin_inset Foot
940 status open
941
942 \begin_layout Standard
943 En el caso de PDF, además se comprime la imagen original.
944 \end_layout
945
946 \end_inset
947
948 .
949  Por ejemplo, los archivos PDF generados por 
950 \family sans
951 Adobe Photoshop
952 \family default
953  son imágenes bitmap.
954 \end_layout
955
956 \begin_layout Standard
957 Normalmente no es posible convertir una imagen bitmap a escalable, sólo
958  viceversa.
959  Sólo los formatos de imagen PDF y EPS pueden empotrarse directamente en
960  archivos de salida PDF y PostScript, respectivamente.
961  Las imágenes SVG y WMF son recalculadas a bitmaps cuando se genera el archivo
962  de salida porque actualmente no hay convertidores adecuados WMF/SVG 
963 \begin_inset Formula $\to$
964 \end_inset
965
966  PDF/EPS.
967 \end_layout
968
969 \begin_layout Chapter
970 Tablas
971 \begin_inset LatexCommand label
972 name "cha:Tablas"
973
974 \end_inset
975
976
977 \begin_inset LatexCommand index
978 name "Tablas"
979
980 \end_inset
981
982
983 \end_layout
984
985 \begin_layout Section
986 Introducción
987 \begin_inset LatexCommand index
988 name "Tablas ! Introducción"
989
990 \end_inset
991
992
993 \end_layout
994
995 \begin_layout Standard
996 Puede insertarse una tabla mediante el botón
997 \begin_inset Graphics
998         filename ../images/tabular-insert.xpm
999         scale 85
1000
1001 \end_inset
1002
1003  o el menú 
1004 \family sans
1005 Insertar\SpecialChar \menuseparator
1006 Tabla
1007 \family default
1008 .
1009  Aparece un diálogo en el que se pide el número de filas y columnas.
1010  Por defecto, la tabla tiene líneas que enmarcan cada celda y la primera
1011  fila aparece separada por una línea doble: la línea inferior de la primera
1012  fila y la línea superior de la segunda fila.
1013  Ejemplo de tabla:
1014 \end_layout
1015
1016 \begin_layout Standard
1017 \align center
1018 \begin_inset Tabular
1019 <lyxtabular version="3" rows="4" columns="4">
1020 <features>
1021 <column alignment="center" valignment="top" leftline="true" width="0">
1022 <column alignment="center" valignment="top" leftline="true" width="0pt">
1023 <column alignment="center" valignment="top" leftline="true" width="0in">
1024 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1025 <row topline="true" bottomline="true">
1026 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1027 \begin_inset Text
1028
1029 \begin_layout Standard
1030
1031 \end_layout
1032
1033 \end_inset
1034 </cell>
1035 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1036 \begin_inset Text
1037
1038 \begin_layout Standard
1039
1040 \family roman
1041 \series medium
1042 \shape up
1043 \size normal
1044 \emph off
1045 \bar no
1046 \noun off
1047 \color none
1048 1
1049 \end_layout
1050
1051 \end_inset
1052 </cell>
1053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1054 \begin_inset Text
1055
1056 \begin_layout Standard
1057 2
1058 \end_layout
1059
1060 \end_inset
1061 </cell>
1062 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1063 \begin_inset Text
1064
1065 \begin_layout Standard
1066 3
1067 \end_layout
1068
1069 \end_inset
1070 </cell>
1071 </row>
1072 <row topline="true">
1073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1074 \begin_inset Text
1075
1076 \begin_layout Standard
1077
1078 \family roman
1079 \series medium
1080 \shape up
1081 \size normal
1082 \emph off
1083 \bar no
1084 \noun off
1085 \color none
1086 A
1087 \end_layout
1088
1089 \end_inset
1090 </cell>
1091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1092 \begin_inset Text
1093
1094 \begin_layout Standard
1095
1096 \end_layout
1097
1098 \end_inset
1099 </cell>
1100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1101 \begin_inset Text
1102
1103 \begin_layout Standard
1104
1105 \end_layout
1106
1107 \end_inset
1108 </cell>
1109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1110 \begin_inset Text
1111
1112 \begin_layout Standard
1113
1114 \end_layout
1115
1116 \end_inset
1117 </cell>
1118 </row>
1119 <row topline="true">
1120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1121 \begin_inset Text
1122
1123 \begin_layout Standard
1124
1125 \family roman
1126 \series medium
1127 \shape up
1128 \size normal
1129 \emph off
1130 \bar no
1131 \noun off
1132 \color none
1133 B
1134 \end_layout
1135
1136 \end_inset
1137 </cell>
1138 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1139 \begin_inset Text
1140
1141 \begin_layout Standard
1142
1143 \end_layout
1144
1145 \end_inset
1146 </cell>
1147 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1148 \begin_inset Text
1149
1150 \begin_layout Standard
1151
1152 \family roman
1153 \series medium
1154 \shape up
1155 \size normal
1156 \emph off
1157 \bar no
1158 \noun off
1159 \color none
1160  
1161 \end_layout
1162
1163 \end_inset
1164 </cell>
1165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1166 \begin_inset Text
1167
1168 \begin_layout Standard
1169
1170 \end_layout
1171
1172 \end_inset
1173 </cell>
1174 </row>
1175 <row topline="true" bottomline="true">
1176 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1177 \begin_inset Text
1178
1179 \begin_layout Standard
1180
1181 \family roman
1182 \series medium
1183 \shape up
1184 \size normal
1185 \emph off
1186 \bar no
1187 \noun off
1188 \color none
1189 C
1190 \end_layout
1191
1192 \end_inset
1193 </cell>
1194 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1195 \begin_inset Text
1196
1197 \begin_layout Standard
1198
1199 \end_layout
1200
1201 \end_inset
1202 </cell>
1203 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1204 \begin_inset Text
1205
1206 \begin_layout Standard
1207
1208 \end_layout
1209
1210 \end_inset
1211 </cell>
1212 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1213 \begin_inset Text
1214
1215 \begin_layout Standard
1216
1217 \end_layout
1218
1219 \end_inset
1220 </cell>
1221 </row>
1222 </lyxtabular>
1223
1224 \end_inset
1225
1226
1227 \end_layout
1228
1229 \begin_layout Section
1230 Diálogo Tablas
1231 \begin_inset LatexCommand index
1232 name "Tablas ! Diálogo"
1233
1234 \end_inset
1235
1236
1237 \end_layout
1238
1239 \begin_layout Standard
1240 Una tabla se puede cambiar mediante el cuadro de diálogo que aparece al
1241  pinchar sobre ella con el botón derecho del ratón.
1242  Se pueden ajustar los parámetros de la celda y fila/columna en la que se
1243  encuentra el cursor.
1244  La mayoría de opciones también trabajan sobre una selección de celdas,
1245  de filas o de columnas.
1246  Observa que hay que diferenciar entre seleccionar una celda o seleccionar
1247  su 
1248 \emph on
1249 contenido
1250 \emph default
1251 .
1252  En el cuadro de diálogo aparecen las siguientes pestañas:
1253 \end_layout
1254
1255 \begin_layout Description
1256
1257 \family sans
1258 Configuración\InsetSpace ~
1259 de\InsetSpace ~
1260 Tabla
1261 \family default
1262  Aquí puedes establacer la alineación horizontal para la fila actual y la
1263  anchura de la columna actual.
1264  Una vez puesta la anchura puedes ajustar también el alineamiento vertical.
1265  Una anchura determinada permite tener saltos de línea y distintos párrafos
1266  de texto, ver sección \InsetSpace ~
1267
1268 \begin_inset LatexCommand ref
1269 reference "sub:Líneas-Múltiples-en"
1270
1271 \end_inset
1272
1273 .
1274  Si no establaces anchura, la columna será tan ancha como el contenido de
1275  la celda más ancha.
1276 \newline
1277 Además, puedes marcar una o más celdas de una fila como
1278  una celda multicolumna, ver sección\InsetSpace ~
1279
1280 \begin_inset LatexCommand ref
1281 reference "sub:Multicolumnas"
1282
1283 \end_inset
1284
1285 .
1286 \newline
1287 Las casillas de giro rotan la celda actual, una selección o toda la tabla
1288  90º en el sentido de las agujas del reloj.
1289  La rotación no se muestra en LyX, sólo en la salida.
1290 \newline
1291
1292 \begin_inset Note Greyedout
1293 status collapsed
1294
1295 \begin_layout Standard
1296
1297 \series bold
1298 Nota: 
1299 \series default
1300 No todos los visores DVI pueden mostrar rotaciones.
1301 \end_layout
1302
1303 \end_inset
1304
1305
1306 \newline
1307 Tambien es posible introducir argumentos LaTeX necesarios para formatos
1308  especiales, ver sección\InsetSpace ~
1309
1310 \begin_inset LatexCommand ref
1311 reference "sub:Cálculos-en-Multicolumnas"
1312
1313 \end_inset
1314
1315  y 
1316 \begin_inset LatexCommand ref
1317 reference "sec:Tablas-Coloreadas"
1318
1319 \end_inset
1320
1321 .
1322 \end_layout
1323
1324 \begin_layout Description
1325
1326 \family sans
1327 Bordes
1328 \family default
1329  En esta pestaña puedes añadir y quitar bordes para la fila/columna actual.
1330 \end_layout
1331
1332 \begin_layout Description
1333
1334 \family sans
1335 Tabla\InsetSpace ~
1336 Larga
1337 \family default
1338  Para hacer "
1339 \emph on
1340 tablas largas
1341 \emph default
1342 " que pueden extenderse por varias páginas.
1343  La sección\InsetSpace ~
1344
1345 \begin_inset LatexCommand ref
1346 reference "sec:Tablas-Largas"
1347
1348 \end_inset
1349
1350  describe su uso en detalle.
1351 \end_layout
1352
1353 \begin_layout Standard
1354 Si la barra de herramientas de tabla está abierta, puedes mover el cursor
1355  con las teclas de flecha de celda en celda y la propiedad de la celda actual
1356  aparecerá inmediatamente en el diálogo.
1357 \end_layout
1358
1359 \begin_layout Section
1360 Barra de Herramientas de Tablas
1361 \begin_inset LatexCommand index
1362 name "Tablas ! Barra de Herramientas"
1363
1364 \end_inset
1365
1366
1367 \end_layout
1368
1369 \begin_layout Standard
1370 La barra de herramientas de tabla es una alternativa al cuadro de diálogo
1371  para cambiar las tablas de manera más rápida.
1372  Normalmente debería aparecer en la parte inferior de la ventana principal
1373  de LyX cuando el cursor está dentro de una tabla.
1374  En cualquier momento se puede presentar esta barra pinchando con el botón
1375  derecho del ratón en cualquier punto de la barra principal de menú.
1376 \end_layout
1377
1378 \begin_layout Standard
1379 La barra de herramientas tiene los siguientes iconos:
1380 \end_layout
1381
1382 \begin_layout Labeling
1383 \labelwidthstring 00.00.0000
1384 \begin_inset Graphics
1385         filename ../images/tabular-feature_append-row.xpm
1386
1387 \end_inset
1388
1389  añade una fila bajo la celda actual o selección
1390 \end_layout
1391
1392 \begin_layout Labeling
1393 \labelwidthstring 00.00.0000
1394 \begin_inset Graphics
1395         filename ../images/tabular-feature_append-column.xpm
1396
1397 \end_inset
1398
1399  añade una columna a la derecha de la celda actual o selección
1400 \end_layout
1401
1402 \begin_layout Labeling
1403 \labelwidthstring 00.00.0000
1404 \begin_inset Graphics
1405         filename ../images/tabular-feature_delete-row.xpm
1406
1407 \end_inset
1408
1409  borra la fila actual o selección
1410 \end_layout
1411
1412 \begin_layout Labeling
1413 \labelwidthstring 00.00.0000
1414 \begin_inset Graphics
1415         filename ../images/tabular-feature_delete-column.xpm
1416
1417 \end_inset
1418
1419  borra la columna actual o selección
1420 \end_layout
1421
1422 \begin_layout Labeling
1423 \labelwidthstring 00.00.0000
1424 \begin_inset Graphics
1425         filename ../images/tabular-feature_toggle-line-top.xpm
1426
1427 \end_inset
1428
1429  añade una línea sobre la celda/fila actual o la selección
1430 \end_layout
1431
1432 \begin_layout Labeling
1433 \labelwidthstring 00.00.0000
1434 \begin_inset Graphics
1435         filename ../images/tabular-feature_toggle-line-bottom.xpm
1436
1437 \end_inset
1438
1439  añade una línea bajo la celda/fila actual o la selección
1440 \end_layout
1441
1442 \begin_layout Labeling
1443 \labelwidthstring 00.00.0000
1444 \begin_inset Graphics
1445         filename ../images/tabular-feature_toggle-line-left.xpm
1446
1447 \end_inset
1448
1449  añade una línea a la izquierda de la celda/fila actual o la selección
1450 \end_layout
1451
1452 \begin_layout Labeling
1453 \labelwidthstring 00.00.0000
1454 \begin_inset Graphics
1455         filename ../images/tabular-feature_toggle-line-right.xpm
1456
1457 \end_inset
1458
1459  añade una línea a la derecha de la celda/fila actual o la selección
1460 \end_layout
1461
1462 \begin_layout Labeling
1463 \labelwidthstring 00.00.0000
1464 \begin_inset Graphics
1465         filename ../images/tabular-feature_set-all-lines.xpm
1466
1467 \end_inset
1468
1469  añade líneas alrededor de la celda actual o seleccionadas - si la celda
1470  actual no es multicolumna esto afecta también a la fila y columna actuales
1471 \end_layout
1472
1473 \begin_layout Labeling
1474 \labelwidthstring 00.00.0000
1475 \begin_inset Graphics
1476         filename ../images/tabular-feature_unset-all-lines.xpm
1477
1478 \end_inset
1479
1480  borra todas las líneas de la celda o celdas seleccionadas - si la celda
1481  actual no es multicolumna esto afecta también a la fila y columna actuales
1482 \end_layout
1483
1484 \begin_layout Labeling
1485 \labelwidthstring 00.00.0000
1486 \begin_inset Graphics
1487         filename ../images/tabular-feature_align-left.xpm
1488
1489 \end_inset
1490
1491  alinea a la izquierda el contenido de la celda / columna
1492 \end_layout
1493
1494 \begin_layout Labeling
1495 \labelwidthstring 00.00.0000
1496 \begin_inset Graphics
1497         filename ../images/tabular-feature_align-center.xpm
1498
1499 \end_inset
1500
1501  centra el contenido de la celda / columna horizontalmente
1502 \end_layout
1503
1504 \begin_layout Labeling
1505 \labelwidthstring 00.00.0000
1506 \begin_inset Graphics
1507         filename ../images/tabular-feature_align-right.xpm
1508
1509 \end_inset
1510
1511  alinea a la derecha el contenido de la celda / columna
1512 \end_layout
1513
1514 \begin_layout Labeling
1515 \labelwidthstring 00.00.0000
1516 \begin_inset Graphics
1517         filename ../images/tabular-feature_valign-top.xpm
1518
1519 \end_inset
1520
1521  alinea arriba el contenido de la celda
1522 \end_layout
1523
1524 \begin_layout Labeling
1525 \labelwidthstring 00.00.0000
1526 \begin_inset Graphics
1527         filename ../images/tabular-feature_valign-middle.xpm
1528
1529 \end_inset
1530
1531  centra verticalmente el contenido de la celda
1532 \end_layout
1533
1534 \begin_layout Labeling
1535 \labelwidthstring 00.00.0000
1536 \begin_inset Graphics
1537         filename ../images/tabular-feature_valign-bottom.xpm
1538
1539 \end_inset
1540
1541  alinea abajo el contenido de la celda
1542 \end_layout
1543
1544 \begin_layout Labeling
1545 \labelwidthstring 00.00.0000
1546 \begin_inset Graphics
1547         filename ../images/tabular-feature_set-rotate-cell.xpm
1548
1549 \end_inset
1550
1551  gira la celda o selección 90° como las agujas de reloj
1552 \end_layout
1553
1554 \begin_layout Labeling
1555 \labelwidthstring 00.00.0000
1556 \begin_inset Graphics
1557         filename ../images/tabular-feature_set-rotate-tabular.xpm
1558
1559 \end_inset
1560
1561  gira toda la tabla 90° como agujas del reloj
1562 \end_layout
1563
1564 \begin_layout Labeling
1565 \labelwidthstring 00.00.0000
1566 \begin_inset Graphics
1567         filename ../images/tabular-feature_multicolumn.xpm
1568
1569 \end_inset
1570
1571  establace la celda actual o selección como multicolumna
1572 \end_layout
1573
1574 \begin_layout Section
1575 Menú Editar Tabla
1576 \begin_inset LatexCommand index
1577 name "Tablas ! Menú Editar"
1578
1579 \end_inset
1580
1581
1582 \end_layout
1583
1584 \begin_layout Standard
1585 Además del diálogo y la barra de herramientas, el menú 
1586 \family sans
1587 Editar \SpecialChar \menuseparator
1588 Tabla
1589 \family default
1590  permite añadir y borrar bordes para la fila/columna actual y establacer
1591  la selección como multicolumna.
1592  El menú sólo está disponibla si el cursor está en la tabla.
1593 \end_layout
1594
1595 \begin_layout Section
1596 Tablas Flotantes
1597 \begin_inset LatexCommand label
1598 name "sec:Tablas-Flotantes"
1599
1600 \end_inset
1601
1602
1603 \begin_inset LatexCommand index
1604 name "Flotantes ! Tablas"
1605
1606 \end_inset
1607
1608
1609 \begin_inset LatexCommand index
1610 name "Tablas ! Flotantes"
1611
1612 \end_inset
1613
1614
1615 \end_layout
1616
1617 \begin_layout Standard
1618 Para una explicación general sobre flotantes, echa un vistazo a la sección\InsetSpace ~
1619
1620 \begin_inset LatexCommand ref
1621 reference "sec:IntroducciónFlotantes"
1622
1623 \end_inset
1624
1625 .
1626 \end_layout
1627
1628 \begin_layout Standard
1629 \begin_inset Float table
1630 placement h
1631 wide false
1632 sideways false
1633 status open
1634
1635 \begin_layout Caption
1636 \begin_inset LatexCommand label
1637 name "tab:una tabla flotante"
1638
1639 \end_inset
1640
1641 Una tabla flotante.
1642 \end_layout
1643
1644 \begin_layout Standard
1645 \align center
1646 \begin_inset Tabular
1647 <lyxtabular version="3" rows="3" columns="3">
1648 <features>
1649 <column alignment="center" valignment="top" leftline="true" width="0pt">
1650 <column alignment="center" valignment="top" leftline="true" width="0pt">
1651 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1652 <row topline="true" bottomline="true">
1653 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1654 \begin_inset Text
1655
1656 \begin_layout Standard
1657
1658 \family roman
1659 \series medium
1660 \shape up
1661 \size normal
1662 \emph off
1663 \bar no
1664 \noun off
1665 \color none
1666 1
1667 \end_layout
1668
1669 \end_inset
1670 </cell>
1671 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1672 \begin_inset Text
1673
1674 \begin_layout Standard
1675
1676 \family roman
1677 \series medium
1678 \shape up
1679 \size normal
1680 \emph off
1681 \bar no
1682 \noun off
1683 \color none
1684 2
1685 \end_layout
1686
1687 \end_inset
1688 </cell>
1689 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1690 \begin_inset Text
1691
1692 \begin_layout Standard
1693
1694 \family roman
1695 \series medium
1696 \shape up
1697 \size normal
1698 \emph off
1699 \bar no
1700 \noun off
1701 \color none
1702 3
1703 \end_layout
1704
1705 \end_inset
1706 </cell>
1707 </row>
1708 <row topline="true">
1709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1710 \begin_inset Text
1711
1712 \begin_layout Standard
1713
1714 \family roman
1715 \series medium
1716 \shape up
1717 \size normal
1718 \emph off
1719 \bar no
1720 \noun off
1721 \color none
1722 Pepe
1723 \end_layout
1724
1725 \end_inset
1726 </cell>
1727 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1728 \begin_inset Text
1729
1730 \begin_layout Standard
1731
1732 \family roman
1733 \series medium
1734 \shape up
1735 \size normal
1736 \emph off
1737 \bar no
1738 \noun off
1739 \color none
1740 Mari
1741 \end_layout
1742
1743 \end_inset
1744 </cell>
1745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1746 \begin_inset Text
1747
1748 \begin_layout Standard
1749
1750 \family roman
1751 \series medium
1752 \shape up
1753 \size normal
1754 \emph off
1755 \bar no
1756 \noun off
1757 \color none
1758 Teo
1759 \end_layout
1760
1761 \end_inset
1762 </cell>
1763 </row>
1764 <row topline="true" bottomline="true">
1765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1766 \begin_inset Text
1767
1768 \begin_layout Standard
1769
1770 \family roman
1771 \series medium
1772 \shape up
1773 \size normal
1774 \emph off
1775 \bar no
1776 \noun off
1777 \color none
1778 \begin_inset Formula $\int x^{2}dx$
1779 \end_inset
1780
1781
1782 \end_layout
1783
1784 \end_inset
1785 </cell>
1786 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1787 \begin_inset Text
1788
1789 \begin_layout Standard
1790
1791 \family roman
1792 \series medium
1793 \shape up
1794 \size normal
1795 \emph off
1796 \bar no
1797 \noun off
1798 \color none
1799 \begin_inset Formula $\left[\begin{array}{cc}
1800 a & b\\
1801 c & d\end{array}\right]$
1802 \end_inset
1803
1804
1805 \end_layout
1806
1807 \end_inset
1808 </cell>
1809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1810 \begin_inset Text
1811
1812 \begin_layout Standard
1813
1814 \family roman
1815 \series medium
1816 \shape up
1817 \size normal
1818 \emph off
1819 \bar no
1820 \noun off
1821 \color none
1822 \begin_inset Formula $1+1=2$
1823 \end_inset
1824
1825
1826 \end_layout
1827
1828 \end_inset
1829 </cell>
1830 </row>
1831 </lyxtabular>
1832
1833 \end_inset
1834
1835
1836 \end_layout
1837
1838 \end_inset
1839
1840
1841 \end_layout
1842
1843 \begin_layout Standard
1844 Las tablas flotantes pueden insertarse con el menú 
1845 \family sans
1846 Insertar\SpecialChar \menuseparator
1847 Flotante\SpecialChar \menuseparator
1848 Tabla
1849 \family default
1850  o el botón 
1851 \begin_inset Graphics
1852         filename ../images/float-insert_table.xpm
1853         scale 85
1854
1855 \end_inset
1856
1857 .
1858 \end_layout
1859
1860 \begin_layout Standard
1861 El flotante se muestra como un cuadro expandible con la etiqueta "
1862 \series bold
1863 Tabla\InsetSpace ~
1864 #:
1865 \series default
1866 " en su interior.
1867  El texto que sigue a dicha etiqueta es el encabezado de tabla.
1868  Para insertar una tabla en el flotante se sitúa el cursor al final del
1869  texto de encabezado y se pulsa Enter.
1870  El encabezado se imprime sobre la tabla.
1871 \end_layout
1872
1873 \begin_layout Standard
1874 La tabla\InsetSpace ~
1875
1876 \begin_inset LatexCommand ref
1877 reference "tab:una tabla flotante"
1878
1879 \end_inset
1880
1881  es un ejemplo de tabla flotante.
1882 \end_layout
1883
1884 \begin_layout Standard
1885 Lo habitual es poner el encabezado de tabla sobre ella, lo que desafortunadament
1886 e no es soportado en las clases estándar de LaTeX.
1887  Esto significa que si está usando las clases de documento 
1888 \family sans
1889 article
1890 \family default
1891
1892 \family sans
1893 book
1894 \family default
1895
1896 \family sans
1897 letter
1898 \family default
1899 , o 
1900 \family sans
1901 report
1902 \family default
1903  no habrá espacio entre el encabezado y la tabla.
1904  Para añadir el espacio faltante hay que poner en el preámbulo LaTeX del
1905  documento la siguiente opción al comando del paquete de LaTeX 
1906 \series bold
1907 caption
1908 \series default
1909
1910 \begin_inset LatexCommand index
1911 name "LaTeX-paquetes ! caption"
1912
1913 \end_inset
1914
1915
1916 \begin_inset Foot
1917 status open
1918
1919 \begin_layout Standard
1920 Para más información ve a la sección\InsetSpace ~
1921
1922 \begin_inset LatexCommand ref
1923 reference "sec:Colocación-de-Encabezados"
1924
1925 \end_inset
1926
1927 .
1928 \end_layout
1929
1930 \end_inset
1931
1932 :
1933 \end_layout
1934
1935 \begin_layout Standard
1936
1937 \series bold
1938 tableposition=top
1939 \end_layout
1940
1941 \begin_layout Standard
1942 El encabezado puede formatearse mediante el paquete de LaTeX 
1943 \series bold
1944 caption
1945 \series default
1946  como se describe en la sección\InsetSpace ~
1947
1948 \begin_inset LatexCommand ref
1949 reference "sec:Formato-de-Encabezados"
1950
1951 \end_inset
1952
1953 .
1954  
1955 \end_layout
1956
1957 \begin_layout Standard
1958 \begin_inset LatexCommand index
1959 name "Referencias ! a Tablas"
1960
1961 \end_inset
1962
1963 Las tablas pueden tener referencias cruzadas en el texto referenciando su
1964  etiqueta.
1965  Para hacerlo inserta una etiqueta en el encabezado con el menú 
1966 \family sans
1967 Insertar\SpecialChar \menuseparator
1968 Etiqueta
1969 \family default
1970  o el botón 
1971 \begin_inset Graphics
1972         filename ../images/label-insert.xpm
1973         scale 85
1974
1975 \end_inset
1976
1977 .
1978  Ahora puedes referirte a la etiqueta con el menú 
1979 \family sans
1980 Insertar\SpecialChar \menuseparator
1981 Referencia\InsetSpace ~
1982 cruzada
1983 \family default
1984  o el botón 
1985 \begin_inset Graphics
1986         filename ../images/dialog-show-new-inset_ref.xpm
1987         scale 85
1988
1989 \end_inset
1990
1991 .
1992 \end_layout
1993
1994 \begin_layout Section
1995 Tablas Largas
1996 \begin_inset LatexCommand label
1997 name "sec:Tablas-Largas"
1998
1999 \end_inset
2000
2001
2002 \begin_inset LatexCommand index
2003 name "Tablas Largas"
2004
2005 \end_inset
2006
2007
2008 \begin_inset LatexCommand index
2009 name "Tablas ! Largas"
2010
2011 \end_inset
2012
2013
2014 \end_layout
2015
2016 \begin_layout Standard
2017 Si la tabla es demasiado larga para una página, puedes usar la opción 
2018 \family sans
2019 Usar\InsetSpace ~
2020 tabla\InsetSpace ~
2021 larga
2022 \family default
2023  en la pestaña 
2024 \family sans
2025 Tabla\InsetSpace ~
2026 larga
2027 \family default
2028  del diálogo para repartir automáticamente la tabla entre varias páginas.
2029  Al hacer esto se habilitan diversos botones opcionales en los que puede
2030  definirse:
2031 \end_layout
2032
2033 \begin_layout Description
2034
2035 \family sans
2036 Encabezado: 
2037 \family default
2038 La fila actual y todas las de arriba, que no tienen ninguna opción especial
2039  definida, se definen como filas de encabezado para todas las páginas de
2040  la tabla, excepto para la primera página
2041 \family sans
2042  
2043 \family default
2044 si
2045 \family sans
2046  Primer\InsetSpace ~
2047 encabezado 
2048 \family default
2049 está definido.
2050  Este se denomina encabezado principal.
2051 \end_layout
2052
2053 \begin_layout Description
2054
2055 \family sans
2056 Primer\InsetSpace ~
2057 encabezado: 
2058 \family default
2059 La fila actual y superiores, que no tienen ninguna opción especial definida,
2060  se definen como filas cabeceras de la primera página de la tabla.
2061 \end_layout
2062
2063 \begin_layout Description
2064
2065 \family sans
2066 Pie: 
2067 \family default
2068 La fila actual y todas las siguientes, que no tienen ninguna opción especial
2069  definida, se definen como filas de pie de todas las páginas de la tabla,
2070  excepto para la última página si se define
2071 \family sans
2072  Último\InsetSpace ~
2073 pie.
2074 \end_layout
2075
2076 \begin_layout Description
2077
2078 \family sans
2079 Último\InsetSpace ~
2080 pie: L
2081 \family default
2082 a fila actual y siguientes, que no tienen ninguna opción especial definida,
2083  se definen como filas de pie de la última página de la tabla.
2084 \end_layout
2085
2086 \begin_layout Standard
2087 también se puede especificar una fila en la que se dividirá la tabla.
2088  Si se establace más de una opción en la misma fila, habría que tener en
2089  cuenta que sólo la primera de ellas se usa en la fila dada.
2090  Las otras quedarán definidas como 
2091 \emph on
2092 vacías
2093 \emph default
2094 .
2095  En este contexto, primera significa primero en este orden: 
2096 \family sans
2097 Pie, Último\InsetSpace ~
2098 pie, Encabezado, Primer\InsetSpace ~
2099 encabezado
2100 \family default
2101 .
2102  La siguiente tabla muestra cómo funciona:
2103 \end_layout
2104
2105 \begin_layout Standard
2106
2107 \end_layout
2108
2109 \begin_layout Standard
2110 \align center
2111 \begin_inset Tabular
2112 <lyxtabular version="3" rows="69" columns="3">
2113 <features islongtable="true">
2114 <column alignment="left" valignment="top" leftline="true" width="0cm">
2115 <column alignment="left" valignment="top" width="0pt">
2116 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2117 <row topline="true" bottomline="true" endfirsthead="true">
2118 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2119 \begin_inset Text
2120
2121 \begin_layout Standard
2122
2123 \series bold
2124 Ejemplo de lista telefónica (ignore los nombres)
2125 \end_layout
2126
2127 \end_inset
2128 </cell>
2129 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2130 \begin_inset Text
2131
2132 \begin_layout Standard
2133
2134 \end_layout
2135
2136 \end_inset
2137 </cell>
2138 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2139 \begin_inset Text
2140
2141 \begin_layout Standard
2142
2143 \end_layout
2144
2145 \end_inset
2146 </cell>
2147 </row>
2148 <row topline="true" bottomline="true" endfirsthead="true">
2149 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2150 \begin_inset Text
2151
2152 \begin_layout Standard
2153
2154 \series bold
2155 NOMBRE
2156 \end_layout
2157
2158 \end_inset
2159 </cell>
2160 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2161 \begin_inset Text
2162
2163 \begin_layout Standard
2164
2165 \end_layout
2166
2167 \end_inset
2168 </cell>
2169 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2170 \begin_inset Text
2171
2172 \begin_layout Standard
2173
2174 \series bold
2175 TEL.
2176 \end_layout
2177
2178 \end_inset
2179 </cell>
2180 </row>
2181 <row topline="true" bottomline="true" endhead="true">
2182 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2183 \begin_inset Text
2184
2185 \begin_layout Standard
2186
2187 \series bold
2188 Ejemplo de lista telefónica
2189 \end_layout
2190
2191 \end_inset
2192 </cell>
2193 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2194 \begin_inset Text
2195
2196 \begin_layout Standard
2197
2198 \end_layout
2199
2200 \end_inset
2201 </cell>
2202 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2203 \begin_inset Text
2204
2205 \begin_layout Standard
2206
2207 \end_layout
2208
2209 \end_inset
2210 </cell>
2211 </row>
2212 <row topline="true" bottomline="true" endhead="true">
2213 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2214 \begin_inset Text
2215
2216 \begin_layout Standard
2217
2218 \series bold
2219 NOMBRE
2220 \end_layout
2221
2222 \end_inset
2223 </cell>
2224 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2225 \begin_inset Text
2226
2227 \begin_layout Standard
2228
2229 \end_layout
2230
2231 \end_inset
2232 </cell>
2233 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2234 \begin_inset Text
2235
2236 \begin_layout Standard
2237
2238 \series bold
2239 TEL.
2240 \end_layout
2241
2242 \end_inset
2243 </cell>
2244 </row>
2245 <row topline="true" bottomline="true" endfoot="true">
2246 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2247 \begin_inset Text
2248
2249 \begin_layout Standard
2250  continúa en la página siguiente
2251 \end_layout
2252
2253 \end_inset
2254 </cell>
2255 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2256 \begin_inset Text
2257
2258 \begin_layout Standard
2259
2260 \end_layout
2261
2262 \end_inset
2263 </cell>
2264 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2265 \begin_inset Text
2266
2267 \begin_layout Standard
2268
2269 \end_layout
2270
2271 \end_inset
2272 </cell>
2273 </row>
2274 <row>
2275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2276 \begin_inset Text
2277
2278 \begin_layout Standard
2279
2280 \series bold
2281 Annovi
2282 \end_layout
2283
2284 \end_inset
2285 </cell>
2286 <cell alignment="center" valignment="top" topline="true" usebox="none">
2287 \begin_inset Text
2288
2289 \begin_layout Standard
2290 Silvia
2291 \end_layout
2292
2293 \end_inset
2294 </cell>
2295 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2296 \begin_inset Text
2297
2298 \begin_layout Standard
2299 111
2300 \end_layout
2301
2302 \end_inset
2303 </cell>
2304 </row>
2305 <row>
2306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2307 \begin_inset Text
2308
2309 \begin_layout Standard
2310
2311 \series bold
2312 Bertoli
2313 \end_layout
2314
2315 \end_inset
2316 </cell>
2317 <cell alignment="center" valignment="top" topline="true" usebox="none">
2318 \begin_inset Text
2319
2320 \begin_layout Standard
2321 Stefano
2322 \end_layout
2323
2324 \end_inset
2325 </cell>
2326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2327 \begin_inset Text
2328
2329 \begin_layout Standard
2330 111
2331 \end_layout
2332
2333 \end_inset
2334 </cell>
2335 </row>
2336 <row>
2337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2338 \begin_inset Text
2339
2340 \begin_layout Standard
2341
2342 \series bold
2343 Bozzi
2344 \end_layout
2345
2346 \end_inset
2347 </cell>
2348 <cell alignment="center" valignment="top" topline="true" usebox="none">
2349 \begin_inset Text
2350
2351 \begin_layout Standard
2352 Walter
2353 \end_layout
2354
2355 \end_inset
2356 </cell>
2357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2358 \begin_inset Text
2359
2360 \begin_layout Standard
2361 111
2362 \end_layout
2363
2364 \end_inset
2365 </cell>
2366 </row>
2367 <row>
2368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2369 \begin_inset Text
2370
2371 \begin_layout Standard
2372
2373 \series bold
2374 Cachia
2375 \end_layout
2376
2377 \end_inset
2378 </cell>
2379 <cell alignment="center" valignment="top" topline="true" usebox="none">
2380 \begin_inset Text
2381
2382 \begin_layout Standard
2383 Maria
2384 \end_layout
2385
2386 \end_inset
2387 </cell>
2388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2389 \begin_inset Text
2390
2391 \begin_layout Standard
2392 111
2393 \end_layout
2394
2395 \end_inset
2396 </cell>
2397 </row>
2398 <row>
2399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2400 \begin_inset Text
2401
2402 \begin_layout Standard
2403
2404 \series bold
2405 Cachia
2406 \end_layout
2407
2408 \end_inset
2409 </cell>
2410 <cell alignment="center" valignment="top" topline="true" usebox="none">
2411 \begin_inset Text
2412
2413 \begin_layout Standard
2414 Maurizio
2415 \end_layout
2416
2417 \end_inset
2418 </cell>
2419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2420 \begin_inset Text
2421
2422 \begin_layout Standard
2423 111
2424 \end_layout
2425
2426 \end_inset
2427 </cell>
2428 </row>
2429 <row>
2430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2431 \begin_inset Text
2432
2433 \begin_layout Standard
2434
2435 \series bold
2436 Cinquemani
2437 \end_layout
2438
2439 \end_inset
2440 </cell>
2441 <cell alignment="center" valignment="top" topline="true" usebox="none">
2442 \begin_inset Text
2443
2444 \begin_layout Standard
2445 Giusi
2446 \end_layout
2447
2448 \end_inset
2449 </cell>
2450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2451 \begin_inset Text
2452
2453 \begin_layout Standard
2454 111
2455 \end_layout
2456
2457 \end_inset
2458 </cell>
2459 </row>
2460 <row>
2461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2462 \begin_inset Text
2463
2464 \begin_layout Standard
2465
2466 \series bold
2467 Colin
2468 \end_layout
2469
2470 \end_inset
2471 </cell>
2472 <cell alignment="center" valignment="top" topline="true" usebox="none">
2473 \begin_inset Text
2474
2475 \begin_layout Standard
2476 Bernard
2477 \end_layout
2478
2479 \end_inset
2480 </cell>
2481 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2482 \begin_inset Text
2483
2484 \begin_layout Standard
2485 111
2486 \end_layout
2487
2488 \end_inset
2489 </cell>
2490 </row>
2491 <row>
2492 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2493 \begin_inset Text
2494
2495 \begin_layout Standard
2496
2497 \series bold
2498 Concli
2499 \end_layout
2500
2501 \end_inset
2502 </cell>
2503 <cell alignment="center" valignment="top" topline="true" usebox="none">
2504 \begin_inset Text
2505
2506 \begin_layout Standard
2507 Gianfranco
2508 \end_layout
2509
2510 \end_inset
2511 </cell>
2512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2513 \begin_inset Text
2514
2515 \begin_layout Standard
2516 111
2517 \end_layout
2518
2519 \end_inset
2520 </cell>
2521 </row>
2522 <row>
2523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2524 \begin_inset Text
2525
2526 \begin_layout Standard
2527
2528 \series bold
2529 Dal Bosco
2530 \end_layout
2531
2532 \end_inset
2533 </cell>
2534 <cell alignment="center" valignment="top" topline="true" usebox="none">
2535 \begin_inset Text
2536
2537 \begin_layout Standard
2538 Carolina
2539 \end_layout
2540
2541 \end_inset
2542 </cell>
2543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2544 \begin_inset Text
2545
2546 \begin_layout Standard
2547 111
2548 \end_layout
2549
2550 \end_inset
2551 </cell>
2552 </row>
2553 <row>
2554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2555 \begin_inset Text
2556
2557 \begin_layout Standard
2558
2559 \series bold
2560 Dalpiaz
2561 \end_layout
2562
2563 \end_inset
2564 </cell>
2565 <cell alignment="center" valignment="top" topline="true" usebox="none">
2566 \begin_inset Text
2567
2568 \begin_layout Standard
2569 Annamaria
2570 \end_layout
2571
2572 \end_inset
2573 </cell>
2574 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2575 \begin_inset Text
2576
2577 \begin_layout Standard
2578 111
2579 \end_layout
2580
2581 \end_inset
2582 </cell>
2583 </row>
2584 <row>
2585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2586 \begin_inset Text
2587
2588 \begin_layout Standard
2589
2590 \series bold
2591 Feliciello
2592 \end_layout
2593
2594 \end_inset
2595 </cell>
2596 <cell alignment="center" valignment="top" topline="true" usebox="none">
2597 \begin_inset Text
2598
2599 \begin_layout Standard
2600 Domenico
2601 \end_layout
2602
2603 \end_inset
2604 </cell>
2605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2606 \begin_inset Text
2607
2608 \begin_layout Standard
2609 111
2610 \end_layout
2611
2612 \end_inset
2613 </cell>
2614 </row>
2615 <row>
2616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2617 \begin_inset Text
2618
2619 \begin_layout Standard
2620
2621 \series bold
2622 Focarelli
2623 \end_layout
2624
2625 \end_inset
2626 </cell>
2627 <cell alignment="center" valignment="top" topline="true" usebox="none">
2628 \begin_inset Text
2629
2630 \begin_layout Standard
2631 Paola
2632 \end_layout
2633
2634 \end_inset
2635 </cell>
2636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2637 \begin_inset Text
2638
2639 \begin_layout Standard
2640 111
2641 \end_layout
2642
2643 \end_inset
2644 </cell>
2645 </row>
2646 <row>
2647 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2648 \begin_inset Text
2649
2650 \begin_layout Standard
2651
2652 \series bold
2653 Galletti
2654 \end_layout
2655
2656 \end_inset
2657 </cell>
2658 <cell alignment="center" valignment="top" topline="true" usebox="none">
2659 \begin_inset Text
2660
2661 \begin_layout Standard
2662 Oreste
2663 \end_layout
2664
2665 \end_inset
2666 </cell>
2667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2668 \begin_inset Text
2669
2670 \begin_layout Standard
2671 111
2672 \end_layout
2673
2674 \end_inset
2675 </cell>
2676 </row>
2677 <row>
2678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2679 \begin_inset Text
2680
2681 \begin_layout Standard
2682
2683 \series bold
2684 Gasparini
2685 \end_layout
2686
2687 \end_inset
2688 </cell>
2689 <cell alignment="center" valignment="top" topline="true" usebox="none">
2690 \begin_inset Text
2691
2692 \begin_layout Standard
2693 Franca
2694 \end_layout
2695
2696 \end_inset
2697 </cell>
2698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2699 \begin_inset Text
2700
2701 \begin_layout Standard
2702 111
2703 \end_layout
2704
2705 \end_inset
2706 </cell>
2707 </row>
2708 <row>
2709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2710 \begin_inset Text
2711
2712 \begin_layout Standard
2713
2714 \series bold
2715 Rizzardi
2716 \end_layout
2717
2718 \end_inset
2719 </cell>
2720 <cell alignment="center" valignment="top" topline="true" usebox="none">
2721 \begin_inset Text
2722
2723 \begin_layout Standard
2724 Paola
2725 \end_layout
2726
2727 \end_inset
2728 </cell>
2729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2730 \begin_inset Text
2731
2732 \begin_layout Standard
2733 111
2734 \end_layout
2735
2736 \end_inset
2737 </cell>
2738 </row>
2739 <row>
2740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2741 \begin_inset Text
2742
2743 \begin_layout Standard
2744
2745 \series bold
2746 Lassini
2747 \end_layout
2748
2749 \end_inset
2750 </cell>
2751 <cell alignment="center" valignment="top" topline="true" usebox="none">
2752 \begin_inset Text
2753
2754 \begin_layout Standard
2755 Giancarlo
2756 \end_layout
2757
2758 \end_inset
2759 </cell>
2760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2761 \begin_inset Text
2762
2763 \begin_layout Standard
2764 111
2765 \end_layout
2766
2767 \end_inset
2768 </cell>
2769 </row>
2770 <row>
2771 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2772 \begin_inset Text
2773
2774 \begin_layout Standard
2775
2776 \series bold
2777 Malfatti
2778 \end_layout
2779
2780 \end_inset
2781 </cell>
2782 <cell alignment="center" valignment="top" topline="true" usebox="none">
2783 \begin_inset Text
2784
2785 \begin_layout Standard
2786 Luciano
2787 \end_layout
2788
2789 \end_inset
2790 </cell>
2791 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2792 \begin_inset Text
2793
2794 \begin_layout Standard
2795 111
2796 \end_layout
2797
2798 \end_inset
2799 </cell>
2800 </row>
2801 <row>
2802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2803 \begin_inset Text
2804
2805 \begin_layout Standard
2806
2807 \series bold
2808 Malfatti
2809 \end_layout
2810
2811 \end_inset
2812 </cell>
2813 <cell alignment="center" valignment="top" topline="true" usebox="none">
2814 \begin_inset Text
2815
2816 \begin_layout Standard
2817 Valeriano
2818 \end_layout
2819
2820 \end_inset
2821 </cell>
2822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2823 \begin_inset Text
2824
2825 \begin_layout Standard
2826 111
2827 \end_layout
2828
2829 \end_inset
2830 </cell>
2831 </row>
2832 <row>
2833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2834 \begin_inset Text
2835
2836 \begin_layout Standard
2837
2838 \series bold
2839 Meneguzzo
2840 \end_layout
2841
2842 \end_inset
2843 </cell>
2844 <cell alignment="center" valignment="top" topline="true" usebox="none">
2845 \begin_inset Text
2846
2847 \begin_layout Standard
2848 Roberto
2849 \end_layout
2850
2851 \end_inset
2852 </cell>
2853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2854 \begin_inset Text
2855
2856 \begin_layout Standard
2857 111
2858 \end_layout
2859
2860 \end_inset
2861 </cell>
2862 </row>
2863 <row>
2864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2865 \begin_inset Text
2866
2867 \begin_layout Standard
2868
2869 \series bold
2870 Mezzadra
2871 \end_layout
2872
2873 \end_inset
2874 </cell>
2875 <cell alignment="center" valignment="top" topline="true" usebox="none">
2876 \begin_inset Text
2877
2878 \begin_layout Standard
2879 Roberto
2880 \end_layout
2881
2882 \end_inset
2883 </cell>
2884 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2885 \begin_inset Text
2886
2887 \begin_layout Standard
2888 111
2889 \end_layout
2890
2891 \end_inset
2892 </cell>
2893 </row>
2894 <row>
2895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2896 \begin_inset Text
2897
2898 \begin_layout Standard
2899
2900 \series bold
2901 Pirpamer
2902 \end_layout
2903
2904 \end_inset
2905 </cell>
2906 <cell alignment="center" valignment="top" topline="true" usebox="none">
2907 \begin_inset Text
2908
2909 \begin_layout Standard
2910 Erich
2911 \end_layout
2912
2913 \end_inset
2914 </cell>
2915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2916 \begin_inset Text
2917
2918 \begin_layout Standard
2919 111
2920 \end_layout
2921
2922 \end_inset
2923 </cell>
2924 </row>
2925 <row>
2926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2927 \begin_inset Text
2928
2929 \begin_layout Standard
2930
2931 \series bold
2932 Pochiesa
2933 \end_layout
2934
2935 \end_inset
2936 </cell>
2937 <cell alignment="center" valignment="top" topline="true" usebox="none">
2938 \begin_inset Text
2939
2940 \begin_layout Standard
2941 Paolo
2942 \end_layout
2943
2944 \end_inset
2945 </cell>
2946 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2947 \begin_inset Text
2948
2949 \begin_layout Standard
2950 111, 222
2951 \end_layout
2952
2953 \end_inset
2954 </cell>
2955 </row>
2956 <row>
2957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2958 \begin_inset Text
2959
2960 \begin_layout Standard
2961
2962 \series bold
2963 Radina
2964 \end_layout
2965
2966 \end_inset
2967 </cell>
2968 <cell alignment="center" valignment="top" topline="true" usebox="none">
2969 \begin_inset Text
2970
2971 \begin_layout Standard
2972 Claudio
2973 \end_layout
2974
2975 \end_inset
2976 </cell>
2977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2978 \begin_inset Text
2979
2980 \begin_layout Standard
2981 111
2982 \end_layout
2983
2984 \end_inset
2985 </cell>
2986 </row>
2987 <row>
2988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2989 \begin_inset Text
2990
2991 \begin_layout Standard
2992
2993 \series bold
2994 Stuffer
2995 \end_layout
2996
2997 \end_inset
2998 </cell>
2999 <cell alignment="center" valignment="top" topline="true" usebox="none">
3000 \begin_inset Text
3001
3002 \begin_layout Standard
3003 Oskar
3004 \end_layout
3005
3006 \end_inset
3007 </cell>
3008 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3009 \begin_inset Text
3010
3011 \begin_layout Standard
3012 111
3013 \end_layout
3014
3015 \end_inset
3016 </cell>
3017 </row>
3018 <row>
3019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3020 \begin_inset Text
3021
3022 \begin_layout Standard
3023
3024 \series bold
3025 Tacchelli
3026 \end_layout
3027
3028 \end_inset
3029 </cell>
3030 <cell alignment="center" valignment="top" topline="true" usebox="none">
3031 \begin_inset Text
3032
3033 \begin_layout Standard
3034 Ugo
3035 \end_layout
3036
3037 \end_inset
3038 </cell>
3039 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3040 \begin_inset Text
3041
3042 \begin_layout Standard
3043 111
3044 \end_layout
3045
3046 \end_inset
3047 </cell>
3048 </row>
3049 <row>
3050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3051 \begin_inset Text
3052
3053 \begin_layout Standard
3054
3055 \series bold
3056 Tezzele
3057 \end_layout
3058
3059 \end_inset
3060 </cell>
3061 <cell alignment="center" valignment="top" topline="true" usebox="none">
3062 \begin_inset Text
3063
3064 \begin_layout Standard
3065 Margit
3066 \end_layout
3067
3068 \end_inset
3069 </cell>
3070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3071 \begin_inset Text
3072
3073 \begin_layout Standard
3074 111
3075 \end_layout
3076
3077 \end_inset
3078 </cell>
3079 </row>
3080 <row>
3081 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3082 \begin_inset Text
3083
3084 \begin_layout Standard
3085
3086 \series bold
3087 Unterkalmsteiner
3088 \end_layout
3089
3090 \end_inset
3091 </cell>
3092 <cell alignment="center" valignment="top" topline="true" usebox="none">
3093 \begin_inset Text
3094
3095 \begin_layout Standard
3096 Frieda
3097 \end_layout
3098
3099 \end_inset
3100 </cell>
3101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3102 \begin_inset Text
3103
3104 \begin_layout Standard
3105 111
3106 \end_layout
3107
3108 \end_inset
3109 </cell>
3110 </row>
3111 <row>
3112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3113 \begin_inset Text
3114
3115 \begin_layout Standard
3116
3117 \series bold
3118 Vieider
3119 \end_layout
3120
3121 \end_inset
3122 </cell>
3123 <cell alignment="center" valignment="top" topline="true" usebox="none">
3124 \begin_inset Text
3125
3126 \begin_layout Standard
3127 Hilde
3128 \end_layout
3129
3130 \end_inset
3131 </cell>
3132 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3133 \begin_inset Text
3134
3135 \begin_layout Standard
3136 111
3137 \end_layout
3138
3139 \end_inset
3140 </cell>
3141 </row>
3142 <row>
3143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3144 \begin_inset Text
3145
3146 \begin_layout Standard
3147
3148 \series bold
3149 Vigna
3150 \end_layout
3151
3152 \end_inset
3153 </cell>
3154 <cell alignment="center" valignment="top" topline="true" usebox="none">
3155 \begin_inset Text
3156
3157 \begin_layout Standard
3158 Jürgen
3159 \end_layout
3160
3161 \end_inset
3162 </cell>
3163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3164 \begin_inset Text
3165
3166 \begin_layout Standard
3167 111
3168 \end_layout
3169
3170 \end_inset
3171 </cell>
3172 </row>
3173 <row>
3174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3175 \begin_inset Text
3176
3177 \begin_layout Standard
3178
3179 \series bold
3180 Weber
3181 \end_layout
3182
3183 \end_inset
3184 </cell>
3185 <cell alignment="center" valignment="top" topline="true" usebox="none">
3186 \begin_inset Text
3187
3188 \begin_layout Standard
3189 Maurizio
3190 \end_layout
3191
3192 \end_inset
3193 </cell>
3194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3195 \begin_inset Text
3196
3197 \begin_layout Standard
3198 111
3199 \end_layout
3200
3201 \end_inset
3202 </cell>
3203 </row>
3204 <row bottomline="true">
3205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3206 \begin_inset Text
3207
3208 \begin_layout Standard
3209
3210 \series bold
3211 Winkler
3212 \end_layout
3213
3214 \end_inset
3215 </cell>
3216 <cell alignment="center" valignment="top" topline="true" usebox="none">
3217 \begin_inset Text
3218
3219 \begin_layout Standard
3220 Franz
3221 \end_layout
3222
3223 \end_inset
3224 </cell>
3225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3226 \begin_inset Text
3227
3228 \begin_layout Standard
3229 111
3230 \end_layout
3231
3232 \end_inset
3233 </cell>
3234 </row>
3235 <row bottomline="true">
3236 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3237 \begin_inset Text
3238
3239 \begin_layout Standard
3240  
3241 \end_layout
3242
3243 \end_inset
3244 </cell>
3245 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3246 \begin_inset Text
3247
3248 \begin_layout Standard
3249
3250 \end_layout
3251
3252 \end_inset
3253 </cell>
3254 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3255 \begin_inset Text
3256
3257 \begin_layout Standard
3258
3259 \end_layout
3260
3261 \end_inset
3262 </cell>
3263 </row>
3264 <row>
3265 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3266 \begin_inset Text
3267
3268 \begin_layout Standard
3269
3270 \series bold
3271 Annovi
3272 \end_layout
3273
3274 \end_inset
3275 </cell>
3276 <cell alignment="center" valignment="top" topline="true" usebox="none">
3277 \begin_inset Text
3278
3279 \begin_layout Standard
3280 Silvia
3281 \end_layout
3282
3283 \end_inset
3284 </cell>
3285 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3286 \begin_inset Text
3287
3288 \begin_layout Standard
3289 555
3290 \end_layout
3291
3292 \end_inset
3293 </cell>
3294 </row>
3295 <row>
3296 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3297 \begin_inset Text
3298
3299 \begin_layout Standard
3300
3301 \series bold
3302 Bertoli
3303 \end_layout
3304
3305 \end_inset
3306 </cell>
3307 <cell alignment="center" valignment="top" topline="true" usebox="none">
3308 \begin_inset Text
3309
3310 \begin_layout Standard
3311 Stefano
3312 \end_layout
3313
3314 \end_inset
3315 </cell>
3316 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3317 \begin_inset Text
3318
3319 \begin_layout Standard
3320 555
3321 \end_layout
3322
3323 \end_inset
3324 </cell>
3325 </row>
3326 <row>
3327 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3328 \begin_inset Text
3329
3330 \begin_layout Standard
3331
3332 \series bold
3333 Bozzi
3334 \end_layout
3335
3336 \end_inset
3337 </cell>
3338 <cell alignment="center" valignment="top" topline="true" usebox="none">
3339 \begin_inset Text
3340
3341 \begin_layout Standard
3342 Walter
3343 \end_layout
3344
3345 \end_inset
3346 </cell>
3347 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3348 \begin_inset Text
3349
3350 \begin_layout Standard
3351 555
3352 \end_layout
3353
3354 \end_inset
3355 </cell>
3356 </row>
3357 <row>
3358 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3359 \begin_inset Text
3360
3361 \begin_layout Standard
3362
3363 \series bold
3364 Cachia
3365 \end_layout
3366
3367 \end_inset
3368 </cell>
3369 <cell alignment="center" valignment="top" topline="true" usebox="none">
3370 \begin_inset Text
3371
3372 \begin_layout Standard
3373 Maria
3374 \end_layout
3375
3376 \end_inset
3377 </cell>
3378 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3379 \begin_inset Text
3380
3381 \begin_layout Standard
3382 555
3383 \end_layout
3384
3385 \end_inset
3386 </cell>
3387 </row>
3388 <row>
3389 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3390 \begin_inset Text
3391
3392 \begin_layout Standard
3393
3394 \series bold
3395 Cachia
3396 \end_layout
3397
3398 \end_inset
3399 </cell>
3400 <cell alignment="center" valignment="top" topline="true" usebox="none">
3401 \begin_inset Text
3402
3403 \begin_layout Standard
3404 Maurizio
3405 \end_layout
3406
3407 \end_inset
3408 </cell>
3409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3410 \begin_inset Text
3411
3412 \begin_layout Standard
3413 555
3414 \end_layout
3415
3416 \end_inset
3417 </cell>
3418 </row>
3419 <row>
3420 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3421 \begin_inset Text
3422
3423 \begin_layout Standard
3424
3425 \series bold
3426 Cinquemani
3427 \end_layout
3428
3429 \end_inset
3430 </cell>
3431 <cell alignment="center" valignment="top" topline="true" usebox="none">
3432 \begin_inset Text
3433
3434 \begin_layout Standard
3435 Giusi
3436 \end_layout
3437
3438 \end_inset
3439 </cell>
3440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3441 \begin_inset Text
3442
3443 \begin_layout Standard
3444 555
3445 \end_layout
3446
3447 \end_inset
3448 </cell>
3449 </row>
3450 <row>
3451 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3452 \begin_inset Text
3453
3454 \begin_layout Standard
3455
3456 \series bold
3457 Colin
3458 \end_layout
3459
3460 \end_inset
3461 </cell>
3462 <cell alignment="center" valignment="top" topline="true" usebox="none">
3463 \begin_inset Text
3464
3465 \begin_layout Standard
3466 Bernard
3467 \end_layout
3468
3469 \end_inset
3470 </cell>
3471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3472 \begin_inset Text
3473
3474 \begin_layout Standard
3475 555
3476 \end_layout
3477
3478 \end_inset
3479 </cell>
3480 </row>
3481 <row>
3482 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3483 \begin_inset Text
3484
3485 \begin_layout Standard
3486
3487 \series bold
3488 Concli
3489 \end_layout
3490
3491 \end_inset
3492 </cell>
3493 <cell alignment="center" valignment="top" topline="true" usebox="none">
3494 \begin_inset Text
3495
3496 \begin_layout Standard
3497 Gianfranco
3498 \end_layout
3499
3500 \end_inset
3501 </cell>
3502 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3503 \begin_inset Text
3504
3505 \begin_layout Standard
3506 555
3507 \end_layout
3508
3509 \end_inset
3510 </cell>
3511 </row>
3512 <row>
3513 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3514 \begin_inset Text
3515
3516 \begin_layout Standard
3517
3518 \series bold
3519 Dal Bosco
3520 \end_layout
3521
3522 \end_inset
3523 </cell>
3524 <cell alignment="center" valignment="top" topline="true" usebox="none">
3525 \begin_inset Text
3526
3527 \begin_layout Standard
3528 Carolina
3529 \end_layout
3530
3531 \end_inset
3532 </cell>
3533 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3534 \begin_inset Text
3535
3536 \begin_layout Standard
3537 555
3538 \end_layout
3539
3540 \end_inset
3541 </cell>
3542 </row>
3543 <row>
3544 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3545 \begin_inset Text
3546
3547 \begin_layout Standard
3548
3549 \series bold
3550 Dalpiaz
3551 \end_layout
3552
3553 \end_inset
3554 </cell>
3555 <cell alignment="center" valignment="top" topline="true" usebox="none">
3556 \begin_inset Text
3557
3558 \begin_layout Standard
3559 Annamaria
3560 \end_layout
3561
3562 \end_inset
3563 </cell>
3564 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3565 \begin_inset Text
3566
3567 \begin_layout Standard
3568 555
3569 \end_layout
3570
3571 \end_inset
3572 </cell>
3573 </row>
3574 <row>
3575 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3576 \begin_inset Text
3577
3578 \begin_layout Standard
3579
3580 \series bold
3581 Feliciello
3582 \end_layout
3583
3584 \end_inset
3585 </cell>
3586 <cell alignment="center" valignment="top" topline="true" usebox="none">
3587 \begin_inset Text
3588
3589 \begin_layout Standard
3590 Domenico
3591 \end_layout
3592
3593 \end_inset
3594 </cell>
3595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3596 \begin_inset Text
3597
3598 \begin_layout Standard
3599 555
3600 \end_layout
3601
3602 \end_inset
3603 </cell>
3604 </row>
3605 <row>
3606 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3607 \begin_inset Text
3608
3609 \begin_layout Standard
3610
3611 \series bold
3612 Focarelli
3613 \end_layout
3614
3615 \end_inset
3616 </cell>
3617 <cell alignment="center" valignment="top" topline="true" usebox="none">
3618 \begin_inset Text
3619
3620 \begin_layout Standard
3621 Paola
3622 \end_layout
3623
3624 \end_inset
3625 </cell>
3626 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3627 \begin_inset Text
3628
3629 \begin_layout Standard
3630 555
3631 \end_layout
3632
3633 \end_inset
3634 </cell>
3635 </row>
3636 <row>
3637 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3638 \begin_inset Text
3639
3640 \begin_layout Standard
3641
3642 \series bold
3643 Galletti
3644 \end_layout
3645
3646 \end_inset
3647 </cell>
3648 <cell alignment="center" valignment="top" topline="true" usebox="none">
3649 \begin_inset Text
3650
3651 \begin_layout Standard
3652 Oreste
3653 \end_layout
3654
3655 \end_inset
3656 </cell>
3657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3658 \begin_inset Text
3659
3660 \begin_layout Standard
3661 555
3662 \end_layout
3663
3664 \end_inset
3665 </cell>
3666 </row>
3667 <row>
3668 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3669 \begin_inset Text
3670
3671 \begin_layout Standard
3672
3673 \series bold
3674 Gasparini
3675 \end_layout
3676
3677 \end_inset
3678 </cell>
3679 <cell alignment="center" valignment="top" topline="true" usebox="none">
3680 \begin_inset Text
3681
3682 \begin_layout Standard
3683 Franca
3684 \end_layout
3685
3686 \end_inset
3687 </cell>
3688 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3689 \begin_inset Text
3690
3691 \begin_layout Standard
3692 555
3693 \end_layout
3694
3695 \end_inset
3696 </cell>
3697 </row>
3698 <row>
3699 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3700 \begin_inset Text
3701
3702 \begin_layout Standard
3703
3704 \series bold
3705 Rizzardi
3706 \end_layout
3707
3708 \end_inset
3709 </cell>
3710 <cell alignment="center" valignment="top" topline="true" usebox="none">
3711 \begin_inset Text
3712
3713 \begin_layout Standard
3714 Paola
3715 \end_layout
3716
3717 \end_inset
3718 </cell>
3719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3720 \begin_inset Text
3721
3722 \begin_layout Standard
3723 555
3724 \end_layout
3725
3726 \end_inset
3727 </cell>
3728 </row>
3729 <row>
3730 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3731 \begin_inset Text
3732
3733 \begin_layout Standard
3734
3735 \series bold
3736 Lassini
3737 \end_layout
3738
3739 \end_inset
3740 </cell>
3741 <cell alignment="center" valignment="top" topline="true" usebox="none">
3742 \begin_inset Text
3743
3744 \begin_layout Standard
3745 Giancarlo
3746 \end_layout
3747
3748 \end_inset
3749 </cell>
3750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3751 \begin_inset Text
3752
3753 \begin_layout Standard
3754 555
3755 \end_layout
3756
3757 \end_inset
3758 </cell>
3759 </row>
3760 <row>
3761 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3762 \begin_inset Text
3763
3764 \begin_layout Standard
3765
3766 \series bold
3767 Malfatti
3768 \end_layout
3769
3770 \end_inset
3771 </cell>
3772 <cell alignment="center" valignment="top" topline="true" usebox="none">
3773 \begin_inset Text
3774
3775 \begin_layout Standard
3776 Luciano
3777 \end_layout
3778
3779 \end_inset
3780 </cell>
3781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3782 \begin_inset Text
3783
3784 \begin_layout Standard
3785 555
3786 \end_layout
3787
3788 \end_inset
3789 </cell>
3790 </row>
3791 <row>
3792 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3793 \begin_inset Text
3794
3795 \begin_layout Standard
3796
3797 \series bold
3798 Malfatti
3799 \end_layout
3800
3801 \end_inset
3802 </cell>
3803 <cell alignment="center" valignment="top" topline="true" usebox="none">
3804 \begin_inset Text
3805
3806 \begin_layout Standard
3807 Valeriano
3808 \end_layout
3809
3810 \end_inset
3811 </cell>
3812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3813 \begin_inset Text
3814
3815 \begin_layout Standard
3816 555
3817 \end_layout
3818
3819 \end_inset
3820 </cell>
3821 </row>
3822 <row>
3823 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3824 \begin_inset Text
3825
3826 \begin_layout Standard
3827
3828 \series bold
3829 Meneguzzo
3830 \end_layout
3831
3832 \end_inset
3833 </cell>
3834 <cell alignment="center" valignment="top" topline="true" usebox="none">
3835 \begin_inset Text
3836
3837 \begin_layout Standard
3838 Roberto
3839 \end_layout
3840
3841 \end_inset
3842 </cell>
3843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3844 \begin_inset Text
3845
3846 \begin_layout Standard
3847 555
3848 \end_layout
3849
3850 \end_inset
3851 </cell>
3852 </row>
3853 <row>
3854 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3855 \begin_inset Text
3856
3857 \begin_layout Standard
3858
3859 \series bold
3860 Mezzadra
3861 \end_layout
3862
3863 \end_inset
3864 </cell>
3865 <cell alignment="center" valignment="top" topline="true" usebox="none">
3866 \begin_inset Text
3867
3868 \begin_layout Standard
3869 Roberto
3870 \end_layout
3871
3872 \end_inset
3873 </cell>
3874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3875 \begin_inset Text
3876
3877 \begin_layout Standard
3878 555
3879 \end_layout
3880
3881 \end_inset
3882 </cell>
3883 </row>
3884 <row>
3885 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3886 \begin_inset Text
3887
3888 \begin_layout Standard
3889
3890 \series bold
3891 Pirpamer
3892 \end_layout
3893
3894 \end_inset
3895 </cell>
3896 <cell alignment="center" valignment="top" topline="true" usebox="none">
3897 \begin_inset Text
3898
3899 \begin_layout Standard
3900 Erich
3901 \end_layout
3902
3903 \end_inset
3904 </cell>
3905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3906 \begin_inset Text
3907
3908 \begin_layout Standard
3909 555
3910 \end_layout
3911
3912 \end_inset
3913 </cell>
3914 </row>
3915 <row>
3916 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3917 \begin_inset Text
3918
3919 \begin_layout Standard
3920
3921 \series bold
3922 Pochiesa
3923 \end_layout
3924
3925 \end_inset
3926 </cell>
3927 <cell alignment="center" valignment="top" topline="true" usebox="none">
3928 \begin_inset Text
3929
3930 \begin_layout Standard
3931 Paolo
3932 \end_layout
3933
3934 \end_inset
3935 </cell>
3936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3937 \begin_inset Text
3938
3939 \begin_layout Standard
3940 555, 222
3941 \end_layout
3942
3943 \end_inset
3944 </cell>
3945 </row>
3946 <row>
3947 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3948 \begin_inset Text
3949
3950 \begin_layout Standard
3951
3952 \series bold
3953 Radina
3954 \end_layout
3955
3956 \end_inset
3957 </cell>
3958 <cell alignment="center" valignment="top" topline="true" usebox="none">
3959 \begin_inset Text
3960
3961 \begin_layout Standard
3962 Claudio
3963 \end_layout
3964
3965 \end_inset
3966 </cell>
3967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3968 \begin_inset Text
3969
3970 \begin_layout Standard
3971 555
3972 \end_layout
3973
3974 \end_inset
3975 </cell>
3976 </row>
3977 <row>
3978 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3979 \begin_inset Text
3980
3981 \begin_layout Standard
3982
3983 \series bold
3984 Stuffer
3985 \end_layout
3986
3987 \end_inset
3988 </cell>
3989 <cell alignment="center" valignment="top" topline="true" usebox="none">
3990 \begin_inset Text
3991
3992 \begin_layout Standard
3993 Oskar
3994 \end_layout
3995
3996 \end_inset
3997 </cell>
3998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3999 \begin_inset Text
4000
4001 \begin_layout Standard
4002 555
4003 \end_layout
4004
4005 \end_inset
4006 </cell>
4007 </row>
4008 <row>
4009 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4010 \begin_inset Text
4011
4012 \begin_layout Standard
4013
4014 \series bold
4015 Tacchelli
4016 \end_layout
4017
4018 \end_inset
4019 </cell>
4020 <cell alignment="center" valignment="top" topline="true" usebox="none">
4021 \begin_inset Text
4022
4023 \begin_layout Standard
4024 Ugo
4025 \end_layout
4026
4027 \end_inset
4028 </cell>
4029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4030 \begin_inset Text
4031
4032 \begin_layout Standard
4033 555
4034 \end_layout
4035
4036 \end_inset
4037 </cell>
4038 </row>
4039 <row>
4040 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4041 \begin_inset Text
4042
4043 \begin_layout Standard
4044
4045 \series bold
4046 Tezzele
4047 \end_layout
4048
4049 \end_inset
4050 </cell>
4051 <cell alignment="center" valignment="top" topline="true" usebox="none">
4052 \begin_inset Text
4053
4054 \begin_layout Standard
4055 Margit
4056 \end_layout
4057
4058 \end_inset
4059 </cell>
4060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4061 \begin_inset Text
4062
4063 \begin_layout Standard
4064 555
4065 \end_layout
4066
4067 \end_inset
4068 </cell>
4069 </row>
4070 <row>
4071 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4072 \begin_inset Text
4073
4074 \begin_layout Standard
4075
4076 \series bold
4077 Unterkalmsteiner
4078 \end_layout
4079
4080 \end_inset
4081 </cell>
4082 <cell alignment="center" valignment="top" topline="true" usebox="none">
4083 \begin_inset Text
4084
4085 \begin_layout Standard
4086 Frieda
4087 \end_layout
4088
4089 \end_inset
4090 </cell>
4091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4092 \begin_inset Text
4093
4094 \begin_layout Standard
4095 555
4096 \end_layout
4097
4098 \end_inset
4099 </cell>
4100 </row>
4101 <row>
4102 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4103 \begin_inset Text
4104
4105 \begin_layout Standard
4106
4107 \series bold
4108 Vieider
4109 \end_layout
4110
4111 \end_inset
4112 </cell>
4113 <cell alignment="center" valignment="top" topline="true" usebox="none">
4114 \begin_inset Text
4115
4116 \begin_layout Standard
4117 Hilde
4118 \end_layout
4119
4120 \end_inset
4121 </cell>
4122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4123 \begin_inset Text
4124
4125 \begin_layout Standard
4126 555
4127 \end_layout
4128
4129 \end_inset
4130 </cell>
4131 </row>
4132 <row>
4133 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4134 \begin_inset Text
4135
4136 \begin_layout Standard
4137
4138 \series bold
4139 Vigna
4140 \end_layout
4141
4142 \end_inset
4143 </cell>
4144 <cell alignment="center" valignment="top" topline="true" usebox="none">
4145 \begin_inset Text
4146
4147 \begin_layout Standard
4148 Jürgen
4149 \end_layout
4150
4151 \end_inset
4152 </cell>
4153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4154 \begin_inset Text
4155
4156 \begin_layout Standard
4157 999
4158 \end_layout
4159
4160 \end_inset
4161 </cell>
4162 </row>
4163 <row>
4164 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4165 \begin_inset Text
4166
4167 \begin_layout Standard
4168
4169 \series bold
4170 Weber
4171 \end_layout
4172
4173 \end_inset
4174 </cell>
4175 <cell alignment="center" valignment="top" topline="true" usebox="none">
4176 \begin_inset Text
4177
4178 \begin_layout Standard
4179 Maurizio
4180 \end_layout
4181
4182 \end_inset
4183 </cell>
4184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4185 \begin_inset Text
4186
4187 \begin_layout Standard
4188 555
4189 \end_layout
4190
4191 \end_inset
4192 </cell>
4193 </row>
4194 <row bottomline="true">
4195 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4196 \begin_inset Text
4197
4198 \begin_layout Standard
4199
4200 \series bold
4201 Winkler
4202 \end_layout
4203
4204 \end_inset
4205 </cell>
4206 <cell alignment="center" valignment="top" topline="true" usebox="none">
4207 \begin_inset Text
4208
4209 \begin_layout Standard
4210 Franz
4211 \end_layout
4212
4213 \end_inset
4214 </cell>
4215 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4216 \begin_inset Text
4217
4218 \begin_layout Standard
4219 555
4220 \end_layout
4221
4222 \end_inset
4223 </cell>
4224 </row>
4225 <row bottomline="true" endlastfoot="true">
4226 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4227 \begin_inset Text
4228
4229 \begin_layout Standard
4230 fin
4231 \end_layout
4232
4233 \end_inset
4234 </cell>
4235 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4236 \begin_inset Text
4237
4238 \begin_layout Standard
4239
4240 \end_layout
4241
4242 \end_inset
4243 </cell>
4244 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4245 \begin_inset Text
4246
4247 \begin_layout Standard
4248
4249 \end_layout
4250
4251 \end_inset
4252 </cell>
4253 </row>
4254 </lyxtabular>
4255
4256 \end_inset
4257
4258
4259 \end_layout
4260
4261 \begin_layout Subsection
4262 Notas al pie en Tablas Largas
4263 \begin_inset LatexCommand label
4264 name "sub:Notas-al-pie-en-Tablas-Largas"
4265
4266 \end_inset
4267
4268
4269 \begin_inset LatexCommand index
4270 name "Tablas Largas ! Notas al pie"
4271
4272 \end_inset
4273
4274
4275 \end_layout
4276
4277 \begin_layout Standard
4278 Se pueden insertar notas al pie en cada celda de tabla larga.
4279  Aparecen abajo en la página donde esté la celda con la nota.
4280  La tabla\InsetSpace ~
4281
4282 \begin_inset LatexCommand ref
4283 reference "tab:DifEncabezados"
4284
4285 \end_inset
4286
4287  tiene un ejemplo de nota al pie.
4288 \end_layout
4289
4290 \begin_layout Subsection
4291 Encabezados en Tablas Largas
4292 \begin_inset LatexCommand index
4293 name "Tablas Largas ! Encabezados"
4294
4295 \end_inset
4296
4297
4298 \end_layout
4299
4300 \begin_layout Standard
4301 Una tabla larga no se puede poner flotante porque los flotantes solo pueden
4302  estar en una página.
4303  Por esto no se puede emplear el formato de encabezado en las tablas largas.
4304 \end_layout
4305
4306 \begin_layout Standard
4307 Para añadir un encabezado se necesita un sucio truco:
4308 \end_layout
4309
4310 \begin_layout Enumerate
4311 Crear una tabla larga
4312 \end_layout
4313
4314 \begin_layout Enumerate
4315 Marcar la primera fila y deshabilitar su línea superior
4316 \end_layout
4317
4318 \begin_layout Enumerate
4319 Insertar el siguiente comando como ERT en la primera celda:
4320 \newline
4321
4322 \series bold
4323
4324 \backslash
4325 caption[título corto]{título completo}
4326 \backslash
4327
4328 \backslash
4329 %
4330 \end_layout
4331
4332 \begin_layout Enumerate
4333 Insertar un "%" como ERT en cada celda de la primera fila
4334 \end_layout
4335
4336 \begin_layout Standard
4337 El comando 
4338 \series bold
4339
4340 \backslash
4341 caption
4342 \series default
4343  se usa como para los encabezados normales, el título corto que aparecerá
4344  en la Lista de Tablas en vez del título completo es opcional.
4345  El 
4346 \series bold
4347 %
4348 \series default
4349  en las celdas omite la línea vertical entre ellas.
4350  Ahora, la primera fila de la tabla es sólo una fila postiza para el encabezado,
4351  la tabla real comienza en la segunda fila.
4352 \end_layout
4353
4354 \begin_layout Standard
4355 He aquí una pequeña tabla larga para mostrar cómo funciona:
4356 \end_layout
4357
4358 \begin_layout Standard
4359 \begin_inset Tabular
4360 <lyxtabular version="3" rows="6" columns="5">
4361 <features islongtable="true">
4362 <column alignment="center" valignment="top" leftline="true" width="0">
4363 <column alignment="center" valignment="top" leftline="true" width="0">
4364 <column alignment="center" valignment="top" leftline="true" width="0">
4365 <column alignment="center" valignment="top" leftline="true" width="0">
4366 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4367 <row>
4368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4369 \begin_inset Text
4370
4371 \begin_layout Standard
4372 \begin_inset ERT
4373 status collapsed
4374
4375 \begin_layout Standard
4376
4377
4378 \backslash
4379 caption[Tabla larga]{Tabla larga con encabezado}
4380 \backslash
4381
4382 \backslash
4383 %
4384 \end_layout
4385
4386 \end_inset
4387
4388
4389 \end_layout
4390
4391 \end_inset
4392 </cell>
4393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4394 \begin_inset Text
4395
4396 \begin_layout Standard
4397 \begin_inset ERT
4398 status collapsed
4399
4400 \begin_layout Standard
4401
4402 %
4403 \end_layout
4404
4405 \end_inset
4406
4407
4408 \end_layout
4409
4410 \end_inset
4411 </cell>
4412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4413 \begin_inset Text
4414
4415 \begin_layout Standard
4416 \begin_inset ERT
4417 status collapsed
4418
4419 \begin_layout Standard
4420
4421 %
4422 \end_layout
4423
4424 \end_inset
4425
4426
4427 \end_layout
4428
4429 \end_inset
4430 </cell>
4431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4432 \begin_inset Text
4433
4434 \begin_layout Standard
4435 \begin_inset ERT
4436 status collapsed
4437
4438 \begin_layout Standard
4439
4440 %
4441 \end_layout
4442
4443 \end_inset
4444
4445
4446 \end_layout
4447
4448 \end_inset
4449 </cell>
4450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4451 \begin_inset Text
4452
4453 \begin_layout Standard
4454 \begin_inset ERT
4455 status collapsed
4456
4457 \begin_layout Standard
4458
4459 %
4460 \end_layout
4461
4462 \end_inset
4463
4464
4465 \end_layout
4466
4467 \end_inset
4468 </cell>
4469 </row>
4470 <row topline="true">
4471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4472 \begin_inset Text
4473
4474 \begin_layout Standard
4475 1
4476 \end_layout
4477
4478 \end_inset
4479 </cell>
4480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4481 \begin_inset Text
4482
4483 \begin_layout Standard
4484 2
4485 \end_layout
4486
4487 \end_inset
4488 </cell>
4489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4490 \begin_inset Text
4491
4492 \begin_layout Standard
4493 3
4494 \end_layout
4495
4496 \end_inset
4497 </cell>
4498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4499 \begin_inset Text
4500
4501 \begin_layout Standard
4502 4
4503 \end_layout
4504
4505 \end_inset
4506 </cell>
4507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4508 \begin_inset Text
4509
4510 \begin_layout Standard
4511 5
4512 \end_layout
4513
4514 \end_inset
4515 </cell>
4516 </row>
4517 <row topline="true">
4518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4519 \begin_inset Text
4520
4521 \begin_layout Standard
4522 asd
4523 \end_layout
4524
4525 \end_inset
4526 </cell>
4527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4528 \begin_inset Text
4529
4530 \begin_layout Standard
4531 s
4532 \end_layout
4533
4534 \end_inset
4535 </cell>
4536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4537 \begin_inset Text
4538
4539 \begin_layout Standard
4540 s
4541 \end_layout
4542
4543 \end_inset
4544 </cell>
4545 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4546 \begin_inset Text
4547
4548 \begin_layout Standard
4549 s
4550 \end_layout
4551
4552 \end_inset
4553 </cell>
4554 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4555 \begin_inset Text
4556
4557 \begin_layout Standard
4558 asd
4559 \end_layout
4560
4561 \end_inset
4562 </cell>
4563 </row>
4564 <row topline="true">
4565 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4566 \begin_inset Text
4567
4568 \begin_layout Standard
4569 asd
4570 \end_layout
4571
4572 \end_inset
4573 </cell>
4574 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4575 \begin_inset Text
4576
4577 \begin_layout Standard
4578 s
4579 \end_layout
4580
4581 \end_inset
4582 </cell>
4583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4584 \begin_inset Text
4585
4586 \begin_layout Standard
4587 s
4588 \end_layout
4589
4590 \end_inset
4591 </cell>
4592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4593 \begin_inset Text
4594
4595 \begin_layout Standard
4596 s
4597 \end_layout
4598
4599 \end_inset
4600 </cell>
4601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4602 \begin_inset Text
4603
4604 \begin_layout Standard
4605 asd
4606 \end_layout
4607
4608 \end_inset
4609 </cell>
4610 </row>
4611 <row topline="true">
4612 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4613 \begin_inset Text
4614
4615 \begin_layout Standard
4616 asd
4617 \end_layout
4618
4619 \end_inset
4620 </cell>
4621 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4622 \begin_inset Text
4623
4624 \begin_layout Standard
4625 s
4626 \end_layout
4627
4628 \end_inset
4629 </cell>
4630 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4631 \begin_inset Text
4632
4633 \begin_layout Standard
4634 s
4635 \end_layout
4636
4637 \end_inset
4638 </cell>
4639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4640 \begin_inset Text
4641
4642 \begin_layout Standard
4643 s
4644 \end_layout
4645
4646 \end_inset
4647 </cell>
4648 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4649 \begin_inset Text
4650
4651 \begin_layout Standard
4652 asd
4653 \end_layout
4654
4655 \end_inset
4656 </cell>
4657 </row>
4658 <row topline="true" bottomline="true">
4659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4660 \begin_inset Text
4661
4662 \begin_layout Standard
4663 asd
4664 \end_layout
4665
4666 \end_inset
4667 </cell>
4668 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4669 \begin_inset Text
4670
4671 \begin_layout Standard
4672 asd
4673 \end_layout
4674
4675 \end_inset
4676 </cell>
4677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4678 \begin_inset Text
4679
4680 \begin_layout Standard
4681 asd
4682 \end_layout
4683
4684 \end_inset
4685 </cell>
4686 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4687 \begin_inset Text
4688
4689 \begin_layout Standard
4690 asd
4691 \end_layout
4692
4693 \end_inset
4694 </cell>
4695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4696 \begin_inset Text
4697
4698 \begin_layout Standard
4699 asd
4700 \end_layout
4701
4702 \end_inset
4703 </cell>
4704 </row>
4705 </lyxtabular>
4706
4707 \end_inset
4708
4709
4710 \end_layout
4711
4712 \begin_layout Standard
4713 \begin_inset VSpace medskip
4714 \end_inset
4715
4716
4717 \begin_inset Note Greyedout
4718 status collapsed
4719
4720 \begin_layout Standard
4721
4722 \series bold
4723 Nota: 
4724 \series default
4725 Si utilizas el paquete de LaTeX 
4726 \series bold
4727 hyperref
4728 \series default
4729
4730 \begin_inset LatexCommand index
4731 name "LaTeX-paquetes ! hyperref"
4732
4733 \end_inset
4734
4735  para enlazar referencias cruzadas, el enlace al encabezado de una tabla
4736  larga apuntará siempre al comienzo.
4737 \end_layout
4738
4739 \end_inset
4740
4741
4742 \end_layout
4743
4744 \begin_layout Subsubsection
4745 Referencias a Tablas Largas
4746 \begin_inset LatexCommand index
4747 name "Tablas Largas ! Referencias a"
4748
4749 \end_inset
4750
4751
4752 \end_layout
4753
4754 \begin_layout Standard
4755 \begin_inset Tabular
4756 <lyxtabular version="3" rows="6" columns="5">
4757 <features islongtable="true">
4758 <column alignment="center" valignment="top" leftline="true" width="0">
4759 <column alignment="center" valignment="top" leftline="true" width="0">
4760 <column alignment="center" valignment="top" leftline="true" width="0">
4761 <column alignment="center" valignment="top" leftline="true" width="0">
4762 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4763 <row>
4764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4765 \begin_inset Text
4766
4767 \begin_layout Standard
4768 \begin_inset ERT
4769 status collapsed
4770
4771 \begin_layout Standard
4772
4773
4774 \backslash
4775 caption{Tabla larga referenciada
4776 \end_layout
4777
4778 \end_inset
4779
4780
4781 \begin_inset LatexCommand label
4782 name "tab:RefEjemplo"
4783
4784 \end_inset
4785
4786
4787 \begin_inset ERT
4788 status collapsed
4789
4790 \begin_layout Standard
4791
4792 }
4793 \backslash
4794
4795 \backslash
4796 %
4797 \end_layout
4798
4799 \end_inset
4800
4801
4802 \end_layout
4803
4804 \end_inset
4805 </cell>
4806 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4807 \begin_inset Text
4808
4809 \begin_layout Standard
4810 \begin_inset ERT
4811 status collapsed
4812
4813 \begin_layout Standard
4814
4815 %
4816 \end_layout
4817
4818 \end_inset
4819
4820
4821 \end_layout
4822
4823 \end_inset
4824 </cell>
4825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4826 \begin_inset Text
4827
4828 \begin_layout Standard
4829 \begin_inset ERT
4830 status collapsed
4831
4832 \begin_layout Standard
4833
4834 %
4835 \end_layout
4836
4837 \end_inset
4838
4839
4840 \end_layout
4841
4842 \end_inset
4843 </cell>
4844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4845 \begin_inset Text
4846
4847 \begin_layout Standard
4848 \begin_inset ERT
4849 status collapsed
4850
4851 \begin_layout Standard
4852
4853 %
4854 \end_layout
4855
4856 \end_inset
4857
4858
4859 \end_layout
4860
4861 \end_inset
4862 </cell>
4863 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4864 \begin_inset Text
4865
4866 \begin_layout Standard
4867 \begin_inset ERT
4868 status collapsed
4869
4870 \begin_layout Standard
4871
4872 %
4873 \end_layout
4874
4875 \end_inset
4876
4877
4878 \end_layout
4879
4880 \end_inset
4881 </cell>
4882 </row>
4883 <row topline="true">
4884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4885 \begin_inset Text
4886
4887 \begin_layout Standard
4888 1
4889 \end_layout
4890
4891 \end_inset
4892 </cell>
4893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4894 \begin_inset Text
4895
4896 \begin_layout Standard
4897 2
4898 \end_layout
4899
4900 \end_inset
4901 </cell>
4902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4903 \begin_inset Text
4904
4905 \begin_layout Standard
4906 3
4907 \end_layout
4908
4909 \end_inset
4910 </cell>
4911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4912 \begin_inset Text
4913
4914 \begin_layout Standard
4915 4
4916 \end_layout
4917
4918 \end_inset
4919 </cell>
4920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4921 \begin_inset Text
4922
4923 \begin_layout Standard
4924 5
4925 \end_layout
4926
4927 \end_inset
4928 </cell>
4929 </row>
4930 <row topline="true">
4931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4932 \begin_inset Text
4933
4934 \begin_layout Standard
4935 asd
4936 \end_layout
4937
4938 \end_inset
4939 </cell>
4940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4941 \begin_inset Text
4942
4943 \begin_layout Standard
4944 s
4945 \end_layout
4946
4947 \end_inset
4948 </cell>
4949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4950 \begin_inset Text
4951
4952 \begin_layout Standard
4953 s
4954 \end_layout
4955
4956 \end_inset
4957 </cell>
4958 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4959 \begin_inset Text
4960
4961 \begin_layout Standard
4962 s
4963 \end_layout
4964
4965 \end_inset
4966 </cell>
4967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4968 \begin_inset Text
4969
4970 \begin_layout Standard
4971 asd
4972 \end_layout
4973
4974 \end_inset
4975 </cell>
4976 </row>
4977 <row topline="true">
4978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4979 \begin_inset Text
4980
4981 \begin_layout Standard
4982 asd
4983 \end_layout
4984
4985 \end_inset
4986 </cell>
4987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4988 \begin_inset Text
4989
4990 \begin_layout Standard
4991 s
4992 \end_layout
4993
4994 \end_inset
4995 </cell>
4996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4997 \begin_inset Text
4998
4999 \begin_layout Standard
5000 s
5001 \end_layout
5002
5003 \end_inset
5004 </cell>
5005 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5006 \begin_inset Text
5007
5008 \begin_layout Standard
5009 s
5010 \end_layout
5011
5012 \end_inset
5013 </cell>
5014 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5015 \begin_inset Text
5016
5017 \begin_layout Standard
5018 asd
5019 \end_layout
5020
5021 \end_inset
5022 </cell>
5023 </row>
5024 <row topline="true">
5025 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5026 \begin_inset Text
5027
5028 \begin_layout Standard
5029 asd
5030 \end_layout
5031
5032 \end_inset
5033 </cell>
5034 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5035 \begin_inset Text
5036
5037 \begin_layout Standard
5038 s
5039 \end_layout
5040
5041 \end_inset
5042 </cell>
5043 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5044 \begin_inset Text
5045
5046 \begin_layout Standard
5047 s
5048 \end_layout
5049
5050 \end_inset
5051 </cell>
5052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5053 \begin_inset Text
5054
5055 \begin_layout Standard
5056 s
5057 \end_layout
5058
5059 \end_inset
5060 </cell>
5061 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5062 \begin_inset Text
5063
5064 \begin_layout Standard
5065 asd
5066 \end_layout
5067
5068 \end_inset
5069 </cell>
5070 </row>
5071 <row topline="true" bottomline="true">
5072 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5073 \begin_inset Text
5074
5075 \begin_layout Standard
5076 asd
5077 \end_layout
5078
5079 \end_inset
5080 </cell>
5081 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5082 \begin_inset Text
5083
5084 \begin_layout Standard
5085 sad
5086 \end_layout
5087
5088 \end_inset
5089 </cell>
5090 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5091 \begin_inset Text
5092
5093 \begin_layout Standard
5094 asd
5095 \end_layout
5096
5097 \end_inset
5098 </cell>
5099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5100 \begin_inset Text
5101
5102 \begin_layout Standard
5103 asd
5104 \end_layout
5105
5106 \end_inset
5107 </cell>
5108 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5109 \begin_inset Text
5110
5111 \begin_layout Standard
5112 asd
5113 \end_layout
5114
5115 \end_inset
5116 </cell>
5117 </row>
5118 </lyxtabular>
5119
5120 \end_inset
5121
5122
5123 \end_layout
5124
5125 \begin_layout Standard
5126 Para hacer referencia a una tabla larga, inserta una etiqueta en el comando
5127  
5128 \series bold
5129
5130 \backslash
5131 caption
5132 \series default
5133 .
5134  Esto se hace dividiendo el ERT del comando 
5135 \series bold
5136
5137 \backslash
5138 caption
5139 \series default
5140 .
5141  La parte del comando antes de la última llave "}"
5142 \end_layout
5143
5144 \begin_layout Standard
5145
5146 \series bold
5147
5148 \backslash
5149 caption[título corto]{título completo
5150 \end_layout
5151
5152 \begin_layout Standard
5153 está en el primer cuadro ERT, la etiqueta se inserta tras ella.
5154  Observa que tienes que añadir el prefijo "
5155 \emph on
5156 tab
5157 \emph default
5158 :" manualmente en el campo de etiqueta.
5159  El segundo cuadro ERT contiene el resto del comando
5160 \end_layout
5161
5162 \begin_layout Standard
5163
5164 \series bold
5165 }
5166 \backslash
5167
5168 \backslash
5169 %
5170 \end_layout
5171
5172 \begin_layout Standard
5173 y se inserta detrás del cuadro de etiqueta, véase Tabla\InsetSpace ~
5174
5175 \begin_inset LatexCommand ref
5176 reference "tab:RefEjemplo"
5177
5178 \end_inset
5179
5180 .
5181 \end_layout
5182
5183 \begin_layout Standard
5184 El formato del encabezado puede configurarse junto con todos los demás encabezad
5185 os del documento mediante el paquete LaTeX
5186 \series bold
5187  caption
5188 \series default
5189
5190 \begin_inset LatexCommand index
5191 name "LaTeX-paquetes ! caption"
5192
5193 \end_inset
5194
5195 , ver sección\InsetSpace ~
5196  
5197 \begin_inset LatexCommand ref
5198 reference "sec:Formato-de-Encabezados"
5199
5200 \end_inset
5201
5202 .
5203 \end_layout
5204
5205 \begin_layout Subsubsection
5206 Anchura de Encabezado
5207 \begin_inset LatexCommand index
5208 name "Tablas Largas ! Anchura de Encabezados"
5209
5210 \end_inset
5211
5212
5213 \end_layout
5214
5215 \begin_layout Standard
5216 La anchura máxima se define por la longitud 
5217 \series bold
5218
5219 \backslash
5220 LTcapwidth
5221 \series default
5222 .
5223  Por defecto es 4\InsetSpace \thinspace{}
5224 in.
5225  Para cambiarla añade el siguiente comando al preámbulo o como ERT en el
5226  documento antes de la tabla larga a la que afecta
5227 \end_layout
5228
5229 \begin_layout Standard
5230
5231 \series bold
5232
5233 \backslash
5234 setlength{
5235 \backslash
5236 LTcapwidth}{ancho}
5237 \end_layout
5238
5239 \begin_layout Standard
5240 donde el ancho puede ser una de las unidades listadas en el apéndice\InsetSpace ~
5241
5242 \begin_inset LatexCommand ref
5243 reference "cha:Unidades-disponibles-en"
5244
5245 \end_inset
5246
5247 .
5248 \end_layout
5249
5250 \begin_layout Standard
5251 Las tablas siguientes muestran la diferencia:
5252 \end_layout
5253
5254 \begin_layout Standard
5255 \begin_inset Tabular
5256 <lyxtabular version="3" rows="6" columns="5">
5257 <features islongtable="true">
5258 <column alignment="center" valignment="top" leftline="true" width="0">
5259 <column alignment="center" valignment="top" leftline="true" width="0">
5260 <column alignment="center" valignment="top" leftline="true" width="0">
5261 <column alignment="center" valignment="top" leftline="true" width="0">
5262 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5263 <row>
5264 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5265 \begin_inset Text
5266
5267 \begin_layout Standard
5268 \begin_inset ERT
5269 status collapsed
5270
5271 \begin_layout Standard
5272
5273
5274 \backslash
5275 caption[Encabezado con ancho predeterminado]{Encabezado completo con ancho
5276  predeterminado
5277 \end_layout
5278
5279 \begin_layout Standard
5280
5281 encabezado completo con ancho predeterminado encabezado completo con ancho
5282  predeterminado}
5283 \backslash
5284
5285 \backslash
5286 %
5287 \end_layout
5288
5289 \end_inset
5290
5291
5292 \end_layout
5293
5294 \end_inset
5295 </cell>
5296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5297 \begin_inset Text
5298
5299 \begin_layout Standard
5300 \begin_inset ERT
5301 status collapsed
5302
5303 \begin_layout Standard
5304
5305 %
5306 \end_layout
5307
5308 \end_inset
5309
5310
5311 \end_layout
5312
5313 \end_inset
5314 </cell>
5315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5316 \begin_inset Text
5317
5318 \begin_layout Standard
5319 \begin_inset ERT
5320 status collapsed
5321
5322 \begin_layout Standard
5323
5324 %
5325 \end_layout
5326
5327 \end_inset
5328
5329
5330 \end_layout
5331
5332 \end_inset
5333 </cell>
5334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5335 \begin_inset Text
5336
5337 \begin_layout Standard
5338 \begin_inset ERT
5339 status collapsed
5340
5341 \begin_layout Standard
5342
5343 %
5344 \end_layout
5345
5346 \end_inset
5347
5348
5349 \end_layout
5350
5351 \end_inset
5352 </cell>
5353 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5354 \begin_inset Text
5355
5356 \begin_layout Standard
5357 \begin_inset ERT
5358 status collapsed
5359
5360 \begin_layout Standard
5361
5362 %
5363 \end_layout
5364
5365 \end_inset
5366
5367
5368 \end_layout
5369
5370 \end_inset
5371 </cell>
5372 </row>
5373 <row topline="true">
5374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5375 \begin_inset Text
5376
5377 \begin_layout Standard
5378 1
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 2
5388 \end_layout
5389
5390 \end_inset
5391 </cell>
5392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5393 \begin_inset Text
5394
5395 \begin_layout Standard
5396 3
5397 \end_layout
5398
5399 \end_inset
5400 </cell>
5401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5402 \begin_inset Text
5403
5404 \begin_layout Standard
5405 4
5406 \end_layout
5407
5408 \end_inset
5409 </cell>
5410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5411 \begin_inset Text
5412
5413 \begin_layout Standard
5414 5
5415 \end_layout
5416
5417 \end_inset
5418 </cell>
5419 </row>
5420 <row topline="true">
5421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5422 \begin_inset Text
5423
5424 \begin_layout Standard
5425 asd
5426 \end_layout
5427
5428 \end_inset
5429 </cell>
5430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5431 \begin_inset Text
5432
5433 \begin_layout Standard
5434 s
5435 \end_layout
5436
5437 \end_inset
5438 </cell>
5439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5440 \begin_inset Text
5441
5442 \begin_layout Standard
5443 s
5444 \end_layout
5445
5446 \end_inset
5447 </cell>
5448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5449 \begin_inset Text
5450
5451 \begin_layout Standard
5452 s
5453 \end_layout
5454
5455 \end_inset
5456 </cell>
5457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5458 \begin_inset Text
5459
5460 \begin_layout Standard
5461 asd
5462 \end_layout
5463
5464 \end_inset
5465 </cell>
5466 </row>
5467 <row topline="true">
5468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5469 \begin_inset Text
5470
5471 \begin_layout Standard
5472 asd
5473 \end_layout
5474
5475 \end_inset
5476 </cell>
5477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5478 \begin_inset Text
5479
5480 \begin_layout Standard
5481 s
5482 \end_layout
5483
5484 \end_inset
5485 </cell>
5486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5487 \begin_inset Text
5488
5489 \begin_layout Standard
5490 s
5491 \end_layout
5492
5493 \end_inset
5494 </cell>
5495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5496 \begin_inset Text
5497
5498 \begin_layout Standard
5499 s
5500 \end_layout
5501
5502 \end_inset
5503 </cell>
5504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5505 \begin_inset Text
5506
5507 \begin_layout Standard
5508 asd
5509 \end_layout
5510
5511 \end_inset
5512 </cell>
5513 </row>
5514 <row topline="true">
5515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5516 \begin_inset Text
5517
5518 \begin_layout Standard
5519 asd
5520 \end_layout
5521
5522 \end_inset
5523 </cell>
5524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5525 \begin_inset Text
5526
5527 \begin_layout Standard
5528 s
5529 \end_layout
5530
5531 \end_inset
5532 </cell>
5533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5534 \begin_inset Text
5535
5536 \begin_layout Standard
5537 s
5538 \end_layout
5539
5540 \end_inset
5541 </cell>
5542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5543 \begin_inset Text
5544
5545 \begin_layout Standard
5546 s
5547 \end_layout
5548
5549 \end_inset
5550 </cell>
5551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5552 \begin_inset Text
5553
5554 \begin_layout Standard
5555 asd
5556 \end_layout
5557
5558 \end_inset
5559 </cell>
5560 </row>
5561 <row topline="true" bottomline="true">
5562 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5563 \begin_inset Text
5564
5565 \begin_layout Standard
5566 asd
5567 \end_layout
5568
5569 \end_inset
5570 </cell>
5571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5572 \begin_inset Text
5573
5574 \begin_layout Standard
5575 sad
5576 \end_layout
5577
5578 \end_inset
5579 </cell>
5580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5581 \begin_inset Text
5582
5583 \begin_layout Standard
5584 asd
5585 \end_layout
5586
5587 \end_inset
5588 </cell>
5589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5590 \begin_inset Text
5591
5592 \begin_layout Standard
5593 asd
5594 \end_layout
5595
5596 \end_inset
5597 </cell>
5598 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5599 \begin_inset Text
5600
5601 \begin_layout Standard
5602 asd
5603 \end_layout
5604
5605 \end_inset
5606 </cell>
5607 </row>
5608 </lyxtabular>
5609
5610 \end_inset
5611
5612
5613 \end_layout
5614
5615 \begin_layout Standard
5616 \begin_inset ERT
5617 status collapsed
5618
5619 \begin_layout Standard
5620
5621
5622 \backslash
5623 setlength{
5624 \backslash
5625 LTcapwidth}{5cm}
5626 \end_layout
5627
5628 \end_inset
5629
5630
5631 \begin_inset Tabular
5632 <lyxtabular version="3" rows="6" columns="5">
5633 <features islongtable="true">
5634 <column alignment="center" valignment="top" leftline="true" width="0">
5635 <column alignment="center" valignment="top" leftline="true" width="0">
5636 <column alignment="center" valignment="top" leftline="true" width="0">
5637 <column alignment="center" valignment="top" leftline="true" width="0">
5638 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5639 <row>
5640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5641 \begin_inset Text
5642
5643 \begin_layout Standard
5644 \begin_inset ERT
5645 status collapsed
5646
5647 \begin_layout Standard
5648
5649
5650 \backslash
5651 caption[Encabezado con anchura
5652 \backslash
5653 ,=
5654 \backslash
5655 ,5
5656 \backslash
5657 ,cm]{Encabezado completo con ancho de  5
5658 \backslash
5659 ,cm
5660 \end_layout
5661
5662 \begin_layout Standard
5663
5664 encabezado completo con ancho de 5
5665 \backslash
5666 ,cm encabezado completo con ancho de 5
5667 \backslash
5668 ,cm}
5669 \backslash
5670
5671 \backslash
5672 %
5673 \end_layout
5674
5675 \end_inset
5676
5677
5678 \end_layout
5679
5680 \end_inset
5681 </cell>
5682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5683 \begin_inset Text
5684
5685 \begin_layout Standard
5686 \begin_inset ERT
5687 status collapsed
5688
5689 \begin_layout Standard
5690
5691 %
5692 \end_layout
5693
5694 \end_inset
5695
5696
5697 \end_layout
5698
5699 \end_inset
5700 </cell>
5701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5702 \begin_inset Text
5703
5704 \begin_layout Standard
5705 \begin_inset ERT
5706 status collapsed
5707
5708 \begin_layout Standard
5709
5710 %
5711 \end_layout
5712
5713 \end_inset
5714
5715
5716 \end_layout
5717
5718 \end_inset
5719 </cell>
5720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5721 \begin_inset Text
5722
5723 \begin_layout Standard
5724 \begin_inset ERT
5725 status collapsed
5726
5727 \begin_layout Standard
5728
5729 %
5730 \end_layout
5731
5732 \end_inset
5733
5734
5735 \end_layout
5736
5737 \end_inset
5738 </cell>
5739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5740 \begin_inset Text
5741
5742 \begin_layout Standard
5743 \begin_inset ERT
5744 status collapsed
5745
5746 \begin_layout Standard
5747
5748 %
5749 \end_layout
5750
5751 \end_inset
5752
5753
5754 \end_layout
5755
5756 \end_inset
5757 </cell>
5758 </row>
5759 <row topline="true">
5760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5761 \begin_inset Text
5762
5763 \begin_layout Standard
5764 1
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 2
5774 \end_layout
5775
5776 \end_inset
5777 </cell>
5778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5779 \begin_inset Text
5780
5781 \begin_layout Standard
5782 3
5783 \end_layout
5784
5785 \end_inset
5786 </cell>
5787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5788 \begin_inset Text
5789
5790 \begin_layout Standard
5791 4
5792 \end_layout
5793
5794 \end_inset
5795 </cell>
5796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5797 \begin_inset Text
5798
5799 \begin_layout Standard
5800 5
5801 \end_layout
5802
5803 \end_inset
5804 </cell>
5805 </row>
5806 <row topline="true">
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 s
5821 \end_layout
5822
5823 \end_inset
5824 </cell>
5825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5826 \begin_inset Text
5827
5828 \begin_layout Standard
5829 s
5830 \end_layout
5831
5832 \end_inset
5833 </cell>
5834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5835 \begin_inset Text
5836
5837 \begin_layout Standard
5838 s
5839 \end_layout
5840
5841 \end_inset
5842 </cell>
5843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5844 \begin_inset Text
5845
5846 \begin_layout Standard
5847 asd
5848 \end_layout
5849
5850 \end_inset
5851 </cell>
5852 </row>
5853 <row topline="true">
5854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5855 \begin_inset Text
5856
5857 \begin_layout Standard
5858 asd
5859 \end_layout
5860
5861 \end_inset
5862 </cell>
5863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5864 \begin_inset Text
5865
5866 \begin_layout Standard
5867 s
5868 \end_layout
5869
5870 \end_inset
5871 </cell>
5872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5873 \begin_inset Text
5874
5875 \begin_layout Standard
5876 s
5877 \end_layout
5878
5879 \end_inset
5880 </cell>
5881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5882 \begin_inset Text
5883
5884 \begin_layout Standard
5885 s
5886 \end_layout
5887
5888 \end_inset
5889 </cell>
5890 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5891 \begin_inset Text
5892
5893 \begin_layout Standard
5894 asd
5895 \end_layout
5896
5897 \end_inset
5898 </cell>
5899 </row>
5900 <row topline="true">
5901 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5902 \begin_inset Text
5903
5904 \begin_layout Standard
5905 asd
5906 \end_layout
5907
5908 \end_inset
5909 </cell>
5910 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5911 \begin_inset Text
5912
5913 \begin_layout Standard
5914 s
5915 \end_layout
5916
5917 \end_inset
5918 </cell>
5919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5920 \begin_inset Text
5921
5922 \begin_layout Standard
5923 s
5924 \end_layout
5925
5926 \end_inset
5927 </cell>
5928 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5929 \begin_inset Text
5930
5931 \begin_layout Standard
5932 s
5933 \end_layout
5934
5935 \end_inset
5936 </cell>
5937 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5938 \begin_inset Text
5939
5940 \begin_layout Standard
5941 asd
5942 \end_layout
5943
5944 \end_inset
5945 </cell>
5946 </row>
5947 <row topline="true" bottomline="true">
5948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5949 \begin_inset Text
5950
5951 \begin_layout Standard
5952 asd
5953 \end_layout
5954
5955 \end_inset
5956 </cell>
5957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5958 \begin_inset Text
5959
5960 \begin_layout Standard
5961 sad
5962 \end_layout
5963
5964 \end_inset
5965 </cell>
5966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5967 \begin_inset Text
5968
5969 \begin_layout Standard
5970 asd
5971 \end_layout
5972
5973 \end_inset
5974 </cell>
5975 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5976 \begin_inset Text
5977
5978 \begin_layout Standard
5979 asd
5980 \end_layout
5981
5982 \end_inset
5983 </cell>
5984 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5985 \begin_inset Text
5986
5987 \begin_layout Standard
5988 asd
5989 \end_layout
5990
5991 \end_inset
5992 </cell>
5993 </row>
5994 </lyxtabular>
5995
5996 \end_inset
5997
5998
5999 \begin_inset ERT
6000 status collapsed
6001
6002 \begin_layout Standard
6003
6004
6005 \backslash
6006 setlength{
6007 \backslash
6008 LTcapwidth}{4in}
6009 \end_layout
6010
6011 \end_inset
6012
6013
6014 \end_layout
6015
6016 \begin_layout Subsubsection
6017 Encabezados Diferentes para cada Página de una Tabla Larga
6018 \begin_inset LatexCommand index
6019 name "Tablas Largas ! Encabezados Diferentes para cada Página"
6020
6021 \end_inset
6022
6023
6024 \end_layout
6025
6026 \begin_layout Standard
6027 Si los otros encabezados debieran ser diferentes del de la primera página,
6028  inserta el comando 
6029 \series bold
6030
6031 \backslash
6032 caption 
6033 \series default
6034 con un título corto no vacío en una fila postiza de encabezado marcado como
6035  primer encabezado.
6036  El encabezado para las restantes páginas se inserta con el comando 
6037 \series bold
6038
6039 \backslash
6040 caption
6041 \series default
6042  sin título corto en una fila postiza de encabezado marcado como primer
6043  encabezado.
6044  Si este encabezado no ha de incluir el número de tabla, usa el comando
6045  
6046 \series bold
6047
6048 \backslash
6049 caption*
6050 \series default
6051  en vez de 
6052 \series bold
6053
6054 \backslash
6055 caption
6056 \series default
6057 .
6058  La etiqueta para referenciar la tabla se inserta en el primer encabezado.
6059  La tabla\InsetSpace ~
6060
6061 \begin_inset LatexCommand ref
6062 reference "tab:DifEncabezados"
6063
6064 \end_inset
6065
6066  es un ejemplo de tabla larga con encabezados distintos donde el segundo
6067  no incluye número de tabla.
6068 \end_layout
6069
6070 \begin_layout Standard
6071 \align center
6072 \begin_inset Tabular
6073 <lyxtabular version="3" rows="60" columns="3">
6074 <features islongtable="true">
6075 <column alignment="left" valignment="top" leftline="true" width="0cm">
6076 <column alignment="left" valignment="top" rightline="true" width="0pt">
6077 <column alignment="right" valignment="top" rightline="true" width="0pt">
6078 <row endfirsthead="true">
6079 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6080 \begin_inset Text
6081
6082 \begin_layout Standard
6083 \begin_inset ERT
6084 status collapsed
6085
6086 \begin_layout Standard
6087
6088
6089 \backslash
6090 caption[Ejemplo de lista telefónica]{Ejemplo de lista telefónica 
6091 \end_layout
6092
6093 \end_inset
6094
6095
6096 \begin_inset LatexCommand label
6097 name "tab:DifEncabezados"
6098
6099 \end_inset
6100
6101
6102 \begin_inset ERT
6103 status collapsed
6104
6105 \begin_layout Standard
6106
6107 }
6108 \backslash
6109
6110 \backslash
6111 %
6112 \end_layout
6113
6114 \end_inset
6115
6116
6117 \end_layout
6118
6119 \end_inset
6120 </cell>
6121 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6122 \begin_inset Text
6123
6124 \begin_layout Standard
6125 \begin_inset ERT
6126 status collapsed
6127
6128 \begin_layout Standard
6129
6130 %
6131 \end_layout
6132
6133 \end_inset
6134
6135
6136 \end_layout
6137
6138 \end_inset
6139 </cell>
6140 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6141 \begin_inset Text
6142
6143 \begin_layout Standard
6144 \begin_inset ERT
6145 status collapsed
6146
6147 \begin_layout Standard
6148
6149 %
6150 \end_layout
6151
6152 \end_inset
6153
6154
6155 \end_layout
6156
6157 \end_inset
6158 </cell>
6159 </row>
6160 <row topline="true" bottomline="true" endfirsthead="true">
6161 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6162 \begin_inset Text
6163
6164 \begin_layout Standard
6165
6166 \series bold
6167 Ejemplo de lista telefónica (ignore los nombres)
6168 \end_layout
6169
6170 \end_inset
6171 </cell>
6172 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6173 \begin_inset Text
6174
6175 \begin_layout Standard
6176
6177 \end_layout
6178
6179 \end_inset
6180 </cell>
6181 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6182 \begin_inset Text
6183
6184 \begin_layout Standard
6185
6186 \end_layout
6187
6188 \end_inset
6189 </cell>
6190 </row>
6191 <row topline="true" bottomline="true" endfirsthead="true">
6192 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6193 \begin_inset Text
6194
6195 \begin_layout Standard
6196
6197 \series bold
6198 NOMBRE
6199 \end_layout
6200
6201 \end_inset
6202 </cell>
6203 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6204 \begin_inset Text
6205
6206 \begin_layout Standard
6207
6208 \end_layout
6209
6210 \end_inset
6211 </cell>
6212 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6213 \begin_inset Text
6214
6215 \begin_layout Standard
6216
6217 \series bold
6218 TEL.
6219 \end_layout
6220
6221 \end_inset
6222 </cell>
6223 </row>
6224 <row bottomline="true" endhead="true">
6225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6226 \begin_inset Text
6227
6228 \begin_layout Standard
6229 \begin_inset ERT
6230 status collapsed
6231
6232 \begin_layout Standard
6233
6234
6235 \backslash
6236 caption*{Continúa Ejemplo de lista telefónica}
6237 \backslash
6238
6239 \backslash
6240 %
6241 \end_layout
6242
6243 \end_inset
6244
6245
6246 \end_layout
6247
6248 \end_inset
6249 </cell>
6250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6251 \begin_inset Text
6252
6253 \begin_layout Standard
6254 \begin_inset ERT
6255 status collapsed
6256
6257 \begin_layout Standard
6258
6259 %
6260 \end_layout
6261
6262 \end_inset
6263
6264
6265 \end_layout
6266
6267 \end_inset
6268 </cell>
6269 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6270 \begin_inset Text
6271
6272 \begin_layout Standard
6273 \begin_inset ERT
6274 status collapsed
6275
6276 \begin_layout Standard
6277
6278 %
6279 \end_layout
6280
6281 \end_inset
6282
6283
6284 \end_layout
6285
6286 \end_inset
6287 </cell>
6288 </row>
6289 <row topline="true" bottomline="true" endhead="true">
6290 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6291 \begin_inset Text
6292
6293 \begin_layout Standard
6294
6295 \series bold
6296 Ejemplo de lista telefónica
6297 \end_layout
6298
6299 \end_inset
6300 </cell>
6301 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6302 \begin_inset Text
6303
6304 \begin_layout Standard
6305
6306 \end_layout
6307
6308 \end_inset
6309 </cell>
6310 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6311 \begin_inset Text
6312
6313 \begin_layout Standard
6314
6315 \end_layout
6316
6317 \end_inset
6318 </cell>
6319 </row>
6320 <row topline="true" bottomline="true" endhead="true">
6321 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6322 \begin_inset Text
6323
6324 \begin_layout Standard
6325
6326 \series bold
6327 NOMBRE
6328 \end_layout
6329
6330 \end_inset
6331 </cell>
6332 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6333 \begin_inset Text
6334
6335 \begin_layout Standard
6336
6337 \end_layout
6338
6339 \end_inset
6340 </cell>
6341 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6342 \begin_inset Text
6343
6344 \begin_layout Standard
6345
6346 \series bold
6347 TEL.
6348 \end_layout
6349
6350 \end_inset
6351 </cell>
6352 </row>
6353 <row topline="true" bottomline="true" endfoot="true">
6354 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6355 \begin_inset Text
6356
6357 \begin_layout Standard
6358 continúa en página siguiente
6359 \end_layout
6360
6361 \end_inset
6362 </cell>
6363 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6364 \begin_inset Text
6365
6366 \begin_layout Standard
6367
6368 \end_layout
6369
6370 \end_inset
6371 </cell>
6372 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6373 \begin_inset Text
6374
6375 \begin_layout Standard
6376
6377 \end_layout
6378
6379 \end_inset
6380 </cell>
6381 </row>
6382 <row>
6383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6384 \begin_inset Text
6385
6386 \begin_layout Standard
6387
6388 \series bold
6389 Annovi
6390 \end_layout
6391
6392 \end_inset
6393 </cell>
6394 <cell alignment="center" valignment="top" topline="true" usebox="none">
6395 \begin_inset Text
6396
6397 \begin_layout Standard
6398 Silvia
6399 \end_layout
6400
6401 \end_inset
6402 </cell>
6403 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6404 \begin_inset Text
6405
6406 \begin_layout Standard
6407 111
6408 \end_layout
6409
6410 \end_inset
6411 </cell>
6412 </row>
6413 <row>
6414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6415 \begin_inset Text
6416
6417 \begin_layout Standard
6418
6419 \series bold
6420 Bertoli
6421 \end_layout
6422
6423 \end_inset
6424 </cell>
6425 <cell alignment="center" valignment="top" topline="true" usebox="none">
6426 \begin_inset Text
6427
6428 \begin_layout Standard
6429 Stefano
6430 \end_layout
6431
6432 \end_inset
6433 </cell>
6434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6435 \begin_inset Text
6436
6437 \begin_layout Standard
6438 111
6439 \end_layout
6440
6441 \end_inset
6442 </cell>
6443 </row>
6444 <row>
6445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6446 \begin_inset Text
6447
6448 \begin_layout Standard
6449
6450 \series bold
6451 Bozzi
6452 \end_layout
6453
6454 \end_inset
6455 </cell>
6456 <cell alignment="center" valignment="top" topline="true" usebox="none">
6457 \begin_inset Text
6458
6459 \begin_layout Standard
6460 Walter
6461 \end_layout
6462
6463 \end_inset
6464 </cell>
6465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6466 \begin_inset Text
6467
6468 \begin_layout Standard
6469 111
6470 \end_layout
6471
6472 \end_inset
6473 </cell>
6474 </row>
6475 <row>
6476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6477 \begin_inset Text
6478
6479 \begin_layout Standard
6480
6481 \series bold
6482 Cachia
6483 \end_layout
6484
6485 \end_inset
6486 </cell>
6487 <cell alignment="center" valignment="top" topline="true" usebox="none">
6488 \begin_inset Text
6489
6490 \begin_layout Standard
6491 Maria
6492 \end_layout
6493
6494 \end_inset
6495 </cell>
6496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6497 \begin_inset Text
6498
6499 \begin_layout Standard
6500 111
6501 \end_layout
6502
6503 \end_inset
6504 </cell>
6505 </row>
6506 <row>
6507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6508 \begin_inset Text
6509
6510 \begin_layout Standard
6511
6512 \series bold
6513 Cachia
6514 \end_layout
6515
6516 \end_inset
6517 </cell>
6518 <cell alignment="center" valignment="top" topline="true" usebox="none">
6519 \begin_inset Text
6520
6521 \begin_layout Standard
6522 Maurizio
6523 \end_layout
6524
6525 \end_inset
6526 </cell>
6527 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6528 \begin_inset Text
6529
6530 \begin_layout Standard
6531 111
6532 \end_layout
6533
6534 \end_inset
6535 </cell>
6536 </row>
6537 <row>
6538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6539 \begin_inset Text
6540
6541 \begin_layout Standard
6542
6543 \series bold
6544 Cinquemani
6545 \end_layout
6546
6547 \end_inset
6548 </cell>
6549 <cell alignment="center" valignment="top" topline="true" usebox="none">
6550 \begin_inset Text
6551
6552 \begin_layout Standard
6553 Giusi
6554 \end_layout
6555
6556 \end_inset
6557 </cell>
6558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6559 \begin_inset Text
6560
6561 \begin_layout Standard
6562 111
6563 \end_layout
6564
6565 \end_inset
6566 </cell>
6567 </row>
6568 <row>
6569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6570 \begin_inset Text
6571
6572 \begin_layout Standard
6573
6574 \series bold
6575 Colin
6576 \end_layout
6577
6578 \end_inset
6579 </cell>
6580 <cell alignment="center" valignment="top" topline="true" usebox="none">
6581 \begin_inset Text
6582
6583 \begin_layout Standard
6584 Bernard
6585 \end_layout
6586
6587 \end_inset
6588 </cell>
6589 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6590 \begin_inset Text
6591
6592 \begin_layout Standard
6593 111
6594 \end_layout
6595
6596 \end_inset
6597 </cell>
6598 </row>
6599 <row>
6600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6601 \begin_inset Text
6602
6603 \begin_layout Standard
6604
6605 \series bold
6606 Concli
6607 \end_layout
6608
6609 \end_inset
6610 </cell>
6611 <cell alignment="center" valignment="top" topline="true" usebox="none">
6612 \begin_inset Text
6613
6614 \begin_layout Standard
6615 Gianfranco
6616 \end_layout
6617
6618 \end_inset
6619 </cell>
6620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6621 \begin_inset Text
6622
6623 \begin_layout Standard
6624 111
6625 \end_layout
6626
6627 \end_inset
6628 </cell>
6629 </row>
6630 <row>
6631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6632 \begin_inset Text
6633
6634 \begin_layout Standard
6635
6636 \series bold
6637 Dal Bosco
6638 \end_layout
6639
6640 \end_inset
6641 </cell>
6642 <cell alignment="center" valignment="top" topline="true" usebox="none">
6643 \begin_inset Text
6644
6645 \begin_layout Standard
6646 Carolina
6647 \end_layout
6648
6649 \end_inset
6650 </cell>
6651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6652 \begin_inset Text
6653
6654 \begin_layout Standard
6655 111
6656 \end_layout
6657
6658 \end_inset
6659 </cell>
6660 </row>
6661 <row>
6662 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6663 \begin_inset Text
6664
6665 \begin_layout Standard
6666
6667 \series bold
6668 Dalpiaz
6669 \end_layout
6670
6671 \end_inset
6672 </cell>
6673 <cell alignment="center" valignment="top" topline="true" usebox="none">
6674 \begin_inset Text
6675
6676 \begin_layout Standard
6677 Annamaria
6678 \end_layout
6679
6680 \end_inset
6681 </cell>
6682 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6683 \begin_inset Text
6684
6685 \begin_layout Standard
6686 111
6687 \end_layout
6688
6689 \end_inset
6690 </cell>
6691 </row>
6692 <row>
6693 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6694 \begin_inset Text
6695
6696 \begin_layout Standard
6697
6698 \series bold
6699 Feliciello
6700 \end_layout
6701
6702 \end_inset
6703 </cell>
6704 <cell alignment="center" valignment="top" topline="true" usebox="none">
6705 \begin_inset Text
6706
6707 \begin_layout Standard
6708 Domenico
6709 \end_layout
6710
6711 \end_inset
6712 </cell>
6713 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6714 \begin_inset Text
6715
6716 \begin_layout Standard
6717 111
6718 \end_layout
6719
6720 \end_inset
6721 </cell>
6722 </row>
6723 <row>
6724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6725 \begin_inset Text
6726
6727 \begin_layout Standard
6728
6729 \series bold
6730 Focarelli
6731 \end_layout
6732
6733 \end_inset
6734 </cell>
6735 <cell alignment="center" valignment="top" topline="true" usebox="none">
6736 \begin_inset Text
6737
6738 \begin_layout Standard
6739 Paola
6740 \end_layout
6741
6742 \end_inset
6743 </cell>
6744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6745 \begin_inset Text
6746
6747 \begin_layout Standard
6748 111
6749 \end_layout
6750
6751 \end_inset
6752 </cell>
6753 </row>
6754 <row>
6755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6756 \begin_inset Text
6757
6758 \begin_layout Standard
6759
6760 \series bold
6761 Galletti
6762 \end_layout
6763
6764 \end_inset
6765 </cell>
6766 <cell alignment="center" valignment="top" topline="true" usebox="none">
6767 \begin_inset Text
6768
6769 \begin_layout Standard
6770 Oreste
6771 \end_layout
6772
6773 \end_inset
6774 </cell>
6775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6776 \begin_inset Text
6777
6778 \begin_layout Standard
6779 111
6780 \end_layout
6781
6782 \end_inset
6783 </cell>
6784 </row>
6785 <row>
6786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6787 \begin_inset Text
6788
6789 \begin_layout Standard
6790
6791 \series bold
6792 Gasparini
6793 \end_layout
6794
6795 \end_inset
6796 </cell>
6797 <cell alignment="center" valignment="top" topline="true" usebox="none">
6798 \begin_inset Text
6799
6800 \begin_layout Standard
6801 Franca
6802 \end_layout
6803
6804 \end_inset
6805 </cell>
6806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6807 \begin_inset Text
6808
6809 \begin_layout Standard
6810 111
6811 \end_layout
6812
6813 \end_inset
6814 </cell>
6815 </row>
6816 <row>
6817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6818 \begin_inset Text
6819
6820 \begin_layout Standard
6821
6822 \series bold
6823 Rizzardi
6824 \series default
6825
6826 \begin_inset Foot
6827 status open
6828
6829 \begin_layout Standard
6830 Ejemplo de nota al pie
6831 \end_layout
6832
6833 \end_inset
6834
6835
6836 \end_layout
6837
6838 \end_inset
6839 </cell>
6840 <cell alignment="center" valignment="top" topline="true" usebox="none">
6841 \begin_inset Text
6842
6843 \begin_layout Standard
6844 Paola
6845 \end_layout
6846
6847 \end_inset
6848 </cell>
6849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6850 \begin_inset Text
6851
6852 \begin_layout Standard
6853 111
6854 \end_layout
6855
6856 \end_inset
6857 </cell>
6858 </row>
6859 <row>
6860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6861 \begin_inset Text
6862
6863 \begin_layout Standard
6864
6865 \series bold
6866 Lassini
6867 \end_layout
6868
6869 \end_inset
6870 </cell>
6871 <cell alignment="center" valignment="top" topline="true" usebox="none">
6872 \begin_inset Text
6873
6874 \begin_layout Standard
6875 Giancarlo
6876 \end_layout
6877
6878 \end_inset
6879 </cell>
6880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6881 \begin_inset Text
6882
6883 \begin_layout Standard
6884 111
6885 \end_layout
6886
6887 \end_inset
6888 </cell>
6889 </row>
6890 <row>
6891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6892 \begin_inset Text
6893
6894 \begin_layout Standard
6895
6896 \series bold
6897 Malfatti
6898 \end_layout
6899
6900 \end_inset
6901 </cell>
6902 <cell alignment="center" valignment="top" topline="true" usebox="none">
6903 \begin_inset Text
6904
6905 \begin_layout Standard
6906 Luciano
6907 \end_layout
6908
6909 \end_inset
6910 </cell>
6911 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6912 \begin_inset Text
6913
6914 \begin_layout Standard
6915 111
6916 \end_layout
6917
6918 \end_inset
6919 </cell>
6920 </row>
6921 <row>
6922 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6923 \begin_inset Text
6924
6925 \begin_layout Standard
6926
6927 \series bold
6928 Malfatti
6929 \end_layout
6930
6931 \end_inset
6932 </cell>
6933 <cell alignment="center" valignment="top" topline="true" usebox="none">
6934 \begin_inset Text
6935
6936 \begin_layout Standard
6937 Valeriano
6938 \end_layout
6939
6940 \end_inset
6941 </cell>
6942 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6943 \begin_inset Text
6944
6945 \begin_layout Standard
6946 111
6947 \end_layout
6948
6949 \end_inset
6950 </cell>
6951 </row>
6952 <row>
6953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6954 \begin_inset Text
6955
6956 \begin_layout Standard
6957
6958 \series bold
6959 Meneguzzo
6960 \end_layout
6961
6962 \end_inset
6963 </cell>
6964 <cell alignment="center" valignment="top" topline="true" usebox="none">
6965 \begin_inset Text
6966
6967 \begin_layout Standard
6968 Roberto
6969 \end_layout
6970
6971 \end_inset
6972 </cell>
6973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6974 \begin_inset Text
6975
6976 \begin_layout Standard
6977 111
6978 \end_layout
6979
6980 \end_inset
6981 </cell>
6982 </row>
6983 <row>
6984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6985 \begin_inset Text
6986
6987 \begin_layout Standard
6988
6989 \series bold
6990 Mezzadra
6991 \end_layout
6992
6993 \end_inset
6994 </cell>
6995 <cell alignment="center" valignment="top" topline="true" usebox="none">
6996 \begin_inset Text
6997
6998 \begin_layout Standard
6999 Roberto
7000 \end_layout
7001
7002 \end_inset
7003 </cell>
7004 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7005 \begin_inset Text
7006
7007 \begin_layout Standard
7008 111
7009 \end_layout
7010
7011 \end_inset
7012 </cell>
7013 </row>
7014 <row>
7015 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7016 \begin_inset Text
7017
7018 \begin_layout Standard
7019
7020 \series bold
7021 Pirpamer
7022 \end_layout
7023
7024 \end_inset
7025 </cell>
7026 <cell alignment="center" valignment="top" topline="true" usebox="none">
7027 \begin_inset Text
7028
7029 \begin_layout Standard
7030 Erich
7031 \end_layout
7032
7033 \end_inset
7034 </cell>
7035 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7036 \begin_inset Text
7037
7038 \begin_layout Standard
7039 111
7040 \end_layout
7041
7042 \end_inset
7043 </cell>
7044 </row>
7045 <row>
7046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7047 \begin_inset Text
7048
7049 \begin_layout Standard
7050
7051 \series bold
7052 Pochiesa
7053 \end_layout
7054
7055 \end_inset
7056 </cell>
7057 <cell alignment="center" valignment="top" topline="true" usebox="none">
7058 \begin_inset Text
7059
7060 \begin_layout Standard
7061 Paolo
7062 \end_layout
7063
7064 \end_inset
7065 </cell>
7066 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7067 \begin_inset Text
7068
7069 \begin_layout Standard
7070 111, 222
7071 \end_layout
7072
7073 \end_inset
7074 </cell>
7075 </row>
7076 <row>
7077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7078 \begin_inset Text
7079
7080 \begin_layout Standard
7081
7082 \series bold
7083 Radina
7084 \end_layout
7085
7086 \end_inset
7087 </cell>
7088 <cell alignment="center" valignment="top" topline="true" usebox="none">
7089 \begin_inset Text
7090
7091 \begin_layout Standard
7092 Claudio
7093 \end_layout
7094
7095 \end_inset
7096 </cell>
7097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7098 \begin_inset Text
7099
7100 \begin_layout Standard
7101 111
7102 \end_layout
7103
7104 \end_inset
7105 </cell>
7106 </row>
7107 <row>
7108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7109 \begin_inset Text
7110
7111 \begin_layout Standard
7112
7113 \series bold
7114 Stuffer
7115 \end_layout
7116
7117 \end_inset
7118 </cell>
7119 <cell alignment="center" valignment="top" topline="true" usebox="none">
7120 \begin_inset Text
7121
7122 \begin_layout Standard
7123 Oskar
7124 \end_layout
7125
7126 \end_inset
7127 </cell>
7128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7129 \begin_inset Text
7130
7131 \begin_layout Standard
7132 111
7133 \end_layout
7134
7135 \end_inset
7136 </cell>
7137 </row>
7138 <row>
7139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7140 \begin_inset Text
7141
7142 \begin_layout Standard
7143
7144 \series bold
7145 Tacchelli
7146 \end_layout
7147
7148 \end_inset
7149 </cell>
7150 <cell alignment="center" valignment="top" topline="true" usebox="none">
7151 \begin_inset Text
7152
7153 \begin_layout Standard
7154 Ugo
7155 \end_layout
7156
7157 \end_inset
7158 </cell>
7159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7160 \begin_inset Text
7161
7162 \begin_layout Standard
7163 111
7164 \end_layout
7165
7166 \end_inset
7167 </cell>
7168 </row>
7169 <row>
7170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7171 \begin_inset Text
7172
7173 \begin_layout Standard
7174
7175 \series bold
7176 Tezzele
7177 \end_layout
7178
7179 \end_inset
7180 </cell>
7181 <cell alignment="center" valignment="top" topline="true" usebox="none">
7182 \begin_inset Text
7183
7184 \begin_layout Standard
7185 Margit
7186 \end_layout
7187
7188 \end_inset
7189 </cell>
7190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7191 \begin_inset Text
7192
7193 \begin_layout Standard
7194 111
7195 \end_layout
7196
7197 \end_inset
7198 </cell>
7199 </row>
7200 <row>
7201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7202 \begin_inset Text
7203
7204 \begin_layout Standard
7205
7206 \series bold
7207 Unterkalmsteiner
7208 \end_layout
7209
7210 \end_inset
7211 </cell>
7212 <cell alignment="center" valignment="top" topline="true" usebox="none">
7213 \begin_inset Text
7214
7215 \begin_layout Standard
7216 Frieda
7217 \end_layout
7218
7219 \end_inset
7220 </cell>
7221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7222 \begin_inset Text
7223
7224 \begin_layout Standard
7225 111
7226 \end_layout
7227
7228 \end_inset
7229 </cell>
7230 </row>
7231 <row>
7232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7233 \begin_inset Text
7234
7235 \begin_layout Standard
7236
7237 \series bold
7238 Vieider
7239 \end_layout
7240
7241 \end_inset
7242 </cell>
7243 <cell alignment="center" valignment="top" topline="true" usebox="none">
7244 \begin_inset Text
7245
7246 \begin_layout Standard
7247 Hilde
7248 \end_layout
7249
7250 \end_inset
7251 </cell>
7252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7253 \begin_inset Text
7254
7255 \begin_layout Standard
7256 111
7257 \end_layout
7258
7259 \end_inset
7260 </cell>
7261 </row>
7262 <row>
7263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7264 \begin_inset Text
7265
7266 \begin_layout Standard
7267
7268 \series bold
7269 Vigna
7270 \end_layout
7271
7272 \end_inset
7273 </cell>
7274 <cell alignment="center" valignment="top" topline="true" usebox="none">
7275 \begin_inset Text
7276
7277 \begin_layout Standard
7278 Jürgen
7279 \end_layout
7280
7281 \end_inset
7282 </cell>
7283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7284 \begin_inset Text
7285
7286 \begin_layout Standard
7287 111
7288 \end_layout
7289
7290 \end_inset
7291 </cell>
7292 </row>
7293 <row>
7294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7295 \begin_inset Text
7296
7297 \begin_layout Standard
7298
7299 \series bold
7300 Weber
7301 \end_layout
7302
7303 \end_inset
7304 </cell>
7305 <cell alignment="center" valignment="top" topline="true" usebox="none">
7306 \begin_inset Text
7307
7308 \begin_layout Standard
7309 Maurizio
7310 \end_layout
7311
7312 \end_inset
7313 </cell>
7314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7315 \begin_inset Text
7316
7317 \begin_layout Standard
7318 111
7319 \end_layout
7320
7321 \end_inset
7322 </cell>
7323 </row>
7324 <row bottomline="true">
7325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7326 \begin_inset Text
7327
7328 \begin_layout Standard
7329
7330 \series bold
7331 Winkler
7332 \end_layout
7333
7334 \end_inset
7335 </cell>
7336 <cell alignment="center" valignment="top" topline="true" usebox="none">
7337 \begin_inset Text
7338
7339 \begin_layout Standard
7340 Franz
7341 \end_layout
7342
7343 \end_inset
7344 </cell>
7345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7346 \begin_inset Text
7347
7348 \begin_layout Standard
7349 111
7350 \end_layout
7351
7352 \end_inset
7353 </cell>
7354 </row>
7355 <row bottomline="true">
7356 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7357 \begin_inset Text
7358
7359 \begin_layout Standard
7360  
7361 \end_layout
7362
7363 \end_inset
7364 </cell>
7365 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7366 \begin_inset Text
7367
7368 \begin_layout Standard
7369
7370 \end_layout
7371
7372 \end_inset
7373 </cell>
7374 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7375 \begin_inset Text
7376
7377 \begin_layout Standard
7378
7379 \end_layout
7380
7381 \end_inset
7382 </cell>
7383 </row>
7384 <row>
7385 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7386 \begin_inset Text
7387
7388 \begin_layout Standard
7389
7390 \series bold
7391 Annovi
7392 \end_layout
7393
7394 \end_inset
7395 </cell>
7396 <cell alignment="center" valignment="top" topline="true" usebox="none">
7397 \begin_inset Text
7398
7399 \begin_layout Standard
7400 Silvia
7401 \end_layout
7402
7403 \end_inset
7404 </cell>
7405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7406 \begin_inset Text
7407
7408 \begin_layout Standard
7409 555
7410 \end_layout
7411
7412 \end_inset
7413 </cell>
7414 </row>
7415 <row>
7416 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7417 \begin_inset Text
7418
7419 \begin_layout Standard
7420
7421 \series bold
7422 Bertoli
7423 \end_layout
7424
7425 \end_inset
7426 </cell>
7427 <cell alignment="center" valignment="top" topline="true" usebox="none">
7428 \begin_inset Text
7429
7430 \begin_layout Standard
7431 Stefano
7432 \end_layout
7433
7434 \end_inset
7435 </cell>
7436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7437 \begin_inset Text
7438
7439 \begin_layout Standard
7440 555
7441 \end_layout
7442
7443 \end_inset
7444 </cell>
7445 </row>
7446 <row>
7447 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7448 \begin_inset Text
7449
7450 \begin_layout Standard
7451
7452 \series bold
7453 Bozzi
7454 \end_layout
7455
7456 \end_inset
7457 </cell>
7458 <cell alignment="center" valignment="top" topline="true" usebox="none">
7459 \begin_inset Text
7460
7461 \begin_layout Standard
7462 Walter
7463 \end_layout
7464
7465 \end_inset
7466 </cell>
7467 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7468 \begin_inset Text
7469
7470 \begin_layout Standard
7471 555
7472 \end_layout
7473
7474 \end_inset
7475 </cell>
7476 </row>
7477 <row>
7478 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7479 \begin_inset Text
7480
7481 \begin_layout Standard
7482
7483 \series bold
7484 Cachia
7485 \end_layout
7486
7487 \end_inset
7488 </cell>
7489 <cell alignment="center" valignment="top" topline="true" usebox="none">
7490 \begin_inset Text
7491
7492 \begin_layout Standard
7493 Maria
7494 \end_layout
7495
7496 \end_inset
7497 </cell>
7498 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7499 \begin_inset Text
7500
7501 \begin_layout Standard
7502 555
7503 \end_layout
7504
7505 \end_inset
7506 </cell>
7507 </row>
7508 <row>
7509 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7510 \begin_inset Text
7511
7512 \begin_layout Standard
7513
7514 \series bold
7515 Cachia
7516 \end_layout
7517
7518 \end_inset
7519 </cell>
7520 <cell alignment="center" valignment="top" topline="true" usebox="none">
7521 \begin_inset Text
7522
7523 \begin_layout Standard
7524 Maurizio
7525 \end_layout
7526
7527 \end_inset
7528 </cell>
7529 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7530 \begin_inset Text
7531
7532 \begin_layout Standard
7533 555
7534 \end_layout
7535
7536 \end_inset
7537 </cell>
7538 </row>
7539 <row>
7540 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7541 \begin_inset Text
7542
7543 \begin_layout Standard
7544
7545 \series bold
7546 Cinquemani
7547 \end_layout
7548
7549 \end_inset
7550 </cell>
7551 <cell alignment="center" valignment="top" topline="true" usebox="none">
7552 \begin_inset Text
7553
7554 \begin_layout Standard
7555 Giusi
7556 \end_layout
7557
7558 \end_inset
7559 </cell>
7560 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7561 \begin_inset Text
7562
7563 \begin_layout Standard
7564 555
7565 \end_layout
7566
7567 \end_inset
7568 </cell>
7569 </row>
7570 <row>
7571 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7572 \begin_inset Text
7573
7574 \begin_layout Standard
7575
7576 \series bold
7577 Colin
7578 \end_layout
7579
7580 \end_inset
7581 </cell>
7582 <cell alignment="center" valignment="top" topline="true" usebox="none">
7583 \begin_inset Text
7584
7585 \begin_layout Standard
7586 Bernard
7587 \end_layout
7588
7589 \end_inset
7590 </cell>
7591 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7592 \begin_inset Text
7593
7594 \begin_layout Standard
7595 555
7596 \end_layout
7597
7598 \end_inset
7599 </cell>
7600 </row>
7601 <row>
7602 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7603 \begin_inset Text
7604
7605 \begin_layout Standard
7606
7607 \series bold
7608 Concli
7609 \end_layout
7610
7611 \end_inset
7612 </cell>
7613 <cell alignment="center" valignment="top" topline="true" usebox="none">
7614 \begin_inset Text
7615
7616 \begin_layout Standard
7617 Gianfranco
7618 \end_layout
7619
7620 \end_inset
7621 </cell>
7622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7623 \begin_inset Text
7624
7625 \begin_layout Standard
7626 555
7627 \end_layout
7628
7629 \end_inset
7630 </cell>
7631 </row>
7632 <row>
7633 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7634 \begin_inset Text
7635
7636 \begin_layout Standard
7637
7638 \series bold
7639 Dal Bosco
7640 \end_layout
7641
7642 \end_inset
7643 </cell>
7644 <cell alignment="center" valignment="top" topline="true" usebox="none">
7645 \begin_inset Text
7646
7647 \begin_layout Standard
7648 Carolina
7649 \end_layout
7650
7651 \end_inset
7652 </cell>
7653 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7654 \begin_inset Text
7655
7656 \begin_layout Standard
7657 555
7658 \end_layout
7659
7660 \end_inset
7661 </cell>
7662 </row>
7663 <row>
7664 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7665 \begin_inset Text
7666
7667 \begin_layout Standard
7668
7669 \series bold
7670 Dalpiaz
7671 \end_layout
7672
7673 \end_inset
7674 </cell>
7675 <cell alignment="center" valignment="top" topline="true" usebox="none">
7676 \begin_inset Text
7677
7678 \begin_layout Standard
7679 Annamaria
7680 \end_layout
7681
7682 \end_inset
7683 </cell>
7684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7685 \begin_inset Text
7686
7687 \begin_layout Standard
7688 555
7689 \end_layout
7690
7691 \end_inset
7692 </cell>
7693 </row>
7694 <row>
7695 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7696 \begin_inset Text
7697
7698 \begin_layout Standard
7699
7700 \series bold
7701 Feliciello
7702 \end_layout
7703
7704 \end_inset
7705 </cell>
7706 <cell alignment="center" valignment="top" topline="true" usebox="none">
7707 \begin_inset Text
7708
7709 \begin_layout Standard
7710 Domenico
7711 \end_layout
7712
7713 \end_inset
7714 </cell>
7715 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7716 \begin_inset Text
7717
7718 \begin_layout Standard
7719 555
7720 \end_layout
7721
7722 \end_inset
7723 </cell>
7724 </row>
7725 <row>
7726 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7727 \begin_inset Text
7728
7729 \begin_layout Standard
7730
7731 \series bold
7732 Focarelli
7733 \end_layout
7734
7735 \end_inset
7736 </cell>
7737 <cell alignment="center" valignment="top" topline="true" usebox="none">
7738 \begin_inset Text
7739
7740 \begin_layout Standard
7741 Paola
7742 \end_layout
7743
7744 \end_inset
7745 </cell>
7746 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7747 \begin_inset Text
7748
7749 \begin_layout Standard
7750 555
7751 \end_layout
7752
7753 \end_inset
7754 </cell>
7755 </row>
7756 <row>
7757 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7758 \begin_inset Text
7759
7760 \begin_layout Standard
7761
7762 \series bold
7763 Galletti
7764 \end_layout
7765
7766 \end_inset
7767 </cell>
7768 <cell alignment="center" valignment="top" topline="true" usebox="none">
7769 \begin_inset Text
7770
7771 \begin_layout Standard
7772 Oreste
7773 \end_layout
7774
7775 \end_inset
7776 </cell>
7777 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7778 \begin_inset Text
7779
7780 \begin_layout Standard
7781 555
7782 \end_layout
7783
7784 \end_inset
7785 </cell>
7786 </row>
7787 <row>
7788 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7789 \begin_inset Text
7790
7791 \begin_layout Standard
7792
7793 \series bold
7794 Gasparini
7795 \end_layout
7796
7797 \end_inset
7798 </cell>
7799 <cell alignment="center" valignment="top" topline="true" usebox="none">
7800 \begin_inset Text
7801
7802 \begin_layout Standard
7803 Franca
7804 \end_layout
7805
7806 \end_inset
7807 </cell>
7808 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7809 \begin_inset Text
7810
7811 \begin_layout Standard
7812 555
7813 \end_layout
7814
7815 \end_inset
7816 </cell>
7817 </row>
7818 <row>
7819 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7820 \begin_inset Text
7821
7822 \begin_layout Standard
7823
7824 \series bold
7825 Rizzardi
7826 \end_layout
7827
7828 \end_inset
7829 </cell>
7830 <cell alignment="center" valignment="top" topline="true" usebox="none">
7831 \begin_inset Text
7832
7833 \begin_layout Standard
7834 Paola
7835 \end_layout
7836
7837 \end_inset
7838 </cell>
7839 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7840 \begin_inset Text
7841
7842 \begin_layout Standard
7843 555
7844 \end_layout
7845
7846 \end_inset
7847 </cell>
7848 </row>
7849 <row>
7850 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7851 \begin_inset Text
7852
7853 \begin_layout Standard
7854
7855 \series bold
7856 Lassini
7857 \end_layout
7858
7859 \end_inset
7860 </cell>
7861 <cell alignment="center" valignment="top" topline="true" usebox="none">
7862 \begin_inset Text
7863
7864 \begin_layout Standard
7865 Giancarlo
7866 \end_layout
7867
7868 \end_inset
7869 </cell>
7870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7871 \begin_inset Text
7872
7873 \begin_layout Standard
7874 555
7875 \end_layout
7876
7877 \end_inset
7878 </cell>
7879 </row>
7880 <row>
7881 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7882 \begin_inset Text
7883
7884 \begin_layout Standard
7885
7886 \series bold
7887 Malfatti
7888 \end_layout
7889
7890 \end_inset
7891 </cell>
7892 <cell alignment="center" valignment="top" topline="true" usebox="none">
7893 \begin_inset Text
7894
7895 \begin_layout Standard
7896 Luciano
7897 \end_layout
7898
7899 \end_inset
7900 </cell>
7901 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7902 \begin_inset Text
7903
7904 \begin_layout Standard
7905 555
7906 \end_layout
7907
7908 \end_inset
7909 </cell>
7910 </row>
7911 <row>
7912 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7913 \begin_inset Text
7914
7915 \begin_layout Standard
7916
7917 \series bold
7918 Malfatti
7919 \end_layout
7920
7921 \end_inset
7922 </cell>
7923 <cell alignment="center" valignment="top" topline="true" usebox="none">
7924 \begin_inset Text
7925
7926 \begin_layout Standard
7927 Valeriano
7928 \end_layout
7929
7930 \end_inset
7931 </cell>
7932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7933 \begin_inset Text
7934
7935 \begin_layout Standard
7936 555
7937 \end_layout
7938
7939 \end_inset
7940 </cell>
7941 </row>
7942 <row>
7943 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7944 \begin_inset Text
7945
7946 \begin_layout Standard
7947
7948 \series bold
7949 Meneguzzo
7950 \end_layout
7951
7952 \end_inset
7953 </cell>
7954 <cell alignment="center" valignment="top" topline="true" usebox="none">
7955 \begin_inset Text
7956
7957 \begin_layout Standard
7958 Roberto
7959 \end_layout
7960
7961 \end_inset
7962 </cell>
7963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7964 \begin_inset Text
7965
7966 \begin_layout Standard
7967 555
7968 \end_layout
7969
7970 \end_inset
7971 </cell>
7972 </row>
7973 <row bottomline="true">
7974 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7975 \begin_inset Text
7976
7977 \begin_layout Standard
7978
7979 \series bold
7980 Mezzadra
7981 \end_layout
7982
7983 \end_inset
7984 </cell>
7985 <cell alignment="center" valignment="top" topline="true" usebox="none">
7986 \begin_inset Text
7987
7988 \begin_layout Standard
7989 Roberto
7990 \end_layout
7991
7992 \end_inset
7993 </cell>
7994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7995 \begin_inset Text
7996
7997 \begin_layout Standard
7998 555
7999 \end_layout
8000
8001 \end_inset
8002 </cell>
8003 </row>
8004 <row bottomline="true" endlastfoot="true">
8005 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8006 \begin_inset Text
8007
8008 \begin_layout Standard
8009
8010 \end_layout
8011
8012 \end_inset
8013 </cell>
8014 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8015 \begin_inset Text
8016
8017 \begin_layout Standard
8018
8019 \end_layout
8020
8021 \end_inset
8022 </cell>
8023 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8024 \begin_inset Text
8025
8026 \begin_layout Standard
8027
8028 \end_layout
8029
8030 \end_inset
8031 </cell>
8032 </row>
8033 </lyxtabular>
8034
8035 \end_inset
8036
8037
8038 \end_layout
8039
8040 \begin_layout Section
8041 Particularidades de las Tablas Largas
8042 \end_layout
8043
8044 \begin_layout Subsection
8045 Cálculo
8046 \begin_inset LatexCommand index
8047 name "Tablas Largas ! Cálculo"
8048
8049 \end_inset
8050
8051
8052 \end_layout
8053
8054 \begin_layout Standard
8055 LaTeX calcula la altura de las páginas con tabla y sus saltos de página
8056  utilizando los denominados "trozos", que son partes de la tabla presentes
8057  en la memoria de LaTeX.
8058  El valor predeterminado está establacido a solo 20 filas.
8059  Si estás usando tablas largas con muchas páginas, la generación del documento
8060  puede hacerse muy lenta.
8061  No hay problema en aumentar el tamaño de los trozos hasta 100-1000 añadiendo
8062  el siguiente comando en el preámbulo del documento:
8063 \end_layout
8064
8065 \begin_layout Standard
8066
8067 \series bold
8068
8069 \backslash
8070 setcounter{LTchunksize}{100}
8071 \end_layout
8072
8073 \begin_layout Subsection
8074 Flotantes y Tablas Largas
8075 \begin_inset LatexCommand index
8076 name "Tablas Largas ! Flotantes"
8077
8078 \end_inset
8079
8080
8081 \end_layout
8082
8083 \begin_layout Standard
8084 Podría haber problemas si un flotante aparece en la misma página donde comienza
8085  una tabla larga.
8086  Para evitarlo, añade el comando 
8087 \series bold
8088
8089 \backslash
8090 clearpage
8091 \series default
8092  como ERT antes de la tabla.
8093 \end_layout
8094
8095 \begin_layout Subsection
8096 Saltos de Página Forzados
8097 \begin_inset LatexCommand index
8098 name "Tablas Largas ! Saltos de Página Forzados"
8099
8100 \end_inset
8101
8102
8103 \end_layout
8104
8105 \begin_layout Standard
8106 Por defecto, las tablas sólo se cortan entre filas.
8107  Si tienes una celda con líneas múltiples y necesitas un salto de página
8108  dentro de la celda, inserta el comando de nueva línea "
8109 \series bold
8110
8111 \backslash
8112
8113 \backslash
8114
8115 \series default
8116 " como ERT en el punto en que quieras cortar.
8117  Antes del comando "
8118 \series bold
8119
8120 \backslash
8121
8122 \backslash
8123
8124 \series default
8125 " debes insertar en ERT tantos caracteres "
8126 \series bold
8127 &
8128 \series default
8129 " como columnas siguientes de la tabla.
8130  
8131 \series bold
8132 &
8133 \series default
8134  es el caracter para separar celdas.
8135  Escribe en ERT después de cada 
8136 \series bold
8137 &
8138 \series default
8139  el contenido de la celda siguiente correspondiente y borra el contenido
8140  de esas celdas.
8141 \newline
8142 Detrás del comando 
8143 \series bold
8144
8145 \backslash
8146
8147 \backslash
8148
8149 \series default
8150 , inserta tantos 
8151 \series bold
8152 &
8153 \series default
8154  como columnas haya delante de la actual.
8155  En la tabla\InsetSpace ~
8156
8157 \begin_inset LatexCommand ref
8158 reference "tab:Saltos de Página Forzados"
8159
8160 \end_inset
8161
8162  la celda que debería cortarse está en la segunda columna seguida de otra
8163  columna.
8164  Por eso el siguiente comando se inserta en la celda como ERT detrás de
8165  "
8166 \emph on
8167 Castelchiodato,
8168 \emph default
8169 ":
8170 \end_layout
8171
8172 \begin_layout Standard
8173
8174 \series bold
8175 & 111
8176 \backslash
8177
8178 \backslash
8179
8180 \newline
8181 &
8182 \end_layout
8183
8184 \begin_layout Standard
8185 El "111" en la tercera columna de la fila se ha borrado.
8186  Si la fila más baja de la tabla larga no tiene, por alguna razón, línea
8187  superior pero quisieras una línea horizontal donde se corta la celda, usa
8188  este comando alternativo:
8189 \end_layout
8190
8191 \begin_layout Standard
8192
8193 \series bold
8194 & 111
8195 \backslash
8196
8197 \backslash
8198
8199 \newline
8200
8201 \backslash
8202 hline &
8203 \end_layout
8204
8205 \begin_layout Standard
8206 Cuando la celda a cortar está en la última columna, el comando
8207 \end_layout
8208
8209 \begin_layout Standard
8210
8211 \series bold
8212
8213 \backslash
8214 setlength{
8215 \backslash
8216 parfillskip}{0pt}
8217 \end_layout
8218
8219 \begin_layout Standard
8220 debe insertarse como ERT al principio de la celda.
8221  Esto garantiza que la parte de la celda que será mostrada en la nueva página
8222  aparecerá con toda su anchura.
8223 \end_layout
8224
8225 \begin_layout Standard
8226 \align center
8227 \begin_inset Tabular
8228 <lyxtabular version="3" rows="39" columns="3">
8229 <features islongtable="true">
8230 <column alignment="left" valignment="top" leftline="true" width="0cm">
8231 <column alignment="left" valignment="top" rightline="true" width="3cm">
8232 <column alignment="right" valignment="top" rightline="true" width="0pt">
8233 <row endfirsthead="true">
8234 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8235 \begin_inset Text
8236
8237 \begin_layout Standard
8238 \begin_inset ERT
8239 status collapsed
8240
8241 \begin_layout Standard
8242
8243
8244 \backslash
8245 caption[Tabla con salto de página forzado en celda]{Tabla con salto de página
8246  forzado en celda 
8247 \end_layout
8248
8249 \end_inset
8250
8251
8252 \begin_inset LatexCommand label
8253 name "tab:Saltos de Página Forzados"
8254
8255 \end_inset
8256
8257
8258 \begin_inset ERT
8259 status collapsed
8260
8261 \begin_layout Standard
8262
8263 }
8264 \backslash
8265
8266 \backslash
8267 %
8268 \end_layout
8269
8270 \end_inset
8271
8272
8273 \end_layout
8274
8275 \end_inset
8276 </cell>
8277 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8278 \begin_inset Text
8279
8280 \begin_layout Standard
8281 \begin_inset ERT
8282 status collapsed
8283
8284 \begin_layout Standard
8285
8286 %
8287 \end_layout
8288
8289 \end_inset
8290
8291
8292 \end_layout
8293
8294 \end_inset
8295 </cell>
8296 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8297 \begin_inset Text
8298
8299 \begin_layout Standard
8300 \begin_inset ERT
8301 status collapsed
8302
8303 \begin_layout Standard
8304
8305 %
8306 \end_layout
8307
8308 \end_inset
8309
8310
8311 \end_layout
8312
8313 \end_inset
8314 </cell>
8315 </row>
8316 <row topline="true" bottomline="true" endfirsthead="true">
8317 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8318 \begin_inset Text
8319
8320 \begin_layout Standard
8321
8322 \series bold
8323 Ejemplo de lista telefónica (ignore los nombres)
8324 \end_layout
8325
8326 \end_inset
8327 </cell>
8328 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8329 \begin_inset Text
8330
8331 \begin_layout Standard
8332
8333 \end_layout
8334
8335 \end_inset
8336 </cell>
8337 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8338 \begin_inset Text
8339
8340 \begin_layout Standard
8341
8342 \end_layout
8343
8344 \end_inset
8345 </cell>
8346 </row>
8347 <row topline="true" bottomline="true" endfirsthead="true">
8348 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8349 \begin_inset Text
8350
8351 \begin_layout Standard
8352
8353 \series bold
8354 NOMBRE
8355 \end_layout
8356
8357 \end_inset
8358 </cell>
8359 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8360 \begin_inset Text
8361
8362 \begin_layout Standard
8363
8364 \end_layout
8365
8366 \end_inset
8367 </cell>
8368 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8369 \begin_inset Text
8370
8371 \begin_layout Standard
8372
8373 \series bold
8374 TEL.
8375 \end_layout
8376
8377 \end_inset
8378 </cell>
8379 </row>
8380 <row bottomline="true" endhead="true">
8381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8382 \begin_inset Text
8383
8384 \begin_layout Standard
8385 \begin_inset ERT
8386 status collapsed
8387
8388 \begin_layout Standard
8389
8390
8391 \backslash
8392 caption{Continúa tabla con salto de página forzado en celda}
8393 \backslash
8394
8395 \backslash
8396 %
8397 \end_layout
8398
8399 \end_inset
8400
8401
8402 \end_layout
8403
8404 \end_inset
8405 </cell>
8406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8407 \begin_inset Text
8408
8409 \begin_layout Standard
8410 \begin_inset ERT
8411 status collapsed
8412
8413 \begin_layout Standard
8414
8415 %
8416 \end_layout
8417
8418 \end_inset
8419
8420
8421 \end_layout
8422
8423 \end_inset
8424 </cell>
8425 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8426 \begin_inset Text
8427
8428 \begin_layout Standard
8429 \begin_inset ERT
8430 status collapsed
8431
8432 \begin_layout Standard
8433
8434 %
8435 \end_layout
8436
8437 \end_inset
8438
8439
8440 \end_layout
8441
8442 \end_inset
8443 </cell>
8444 </row>
8445 <row topline="true" bottomline="true" endhead="true">
8446 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8447 \begin_inset Text
8448
8449 \begin_layout Standard
8450
8451 \series bold
8452  Ejemplo de lista telefónica
8453 \end_layout
8454
8455 \end_inset
8456 </cell>
8457 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8458 \begin_inset Text
8459
8460 \begin_layout Standard
8461
8462 \end_layout
8463
8464 \end_inset
8465 </cell>
8466 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8467 \begin_inset Text
8468
8469 \begin_layout Standard
8470
8471 \end_layout
8472
8473 \end_inset
8474 </cell>
8475 </row>
8476 <row topline="true" bottomline="true" endhead="true">
8477 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8478 \begin_inset Text
8479
8480 \begin_layout Standard
8481
8482 \series bold
8483 NOMBRE
8484 \end_layout
8485
8486 \end_inset
8487 </cell>
8488 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8489 \begin_inset Text
8490
8491 \begin_layout Standard
8492
8493 \end_layout
8494
8495 \end_inset
8496 </cell>
8497 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8498 \begin_inset Text
8499
8500 \begin_layout Standard
8501
8502 \series bold
8503 TEL.
8504 \end_layout
8505
8506 \end_inset
8507 </cell>
8508 </row>
8509 <row topline="true" bottomline="true" endfoot="true">
8510 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8511 \begin_inset Text
8512
8513 \begin_layout Standard
8514 continúa en página siguiente
8515 \end_layout
8516
8517 \end_inset
8518 </cell>
8519 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8520 \begin_inset Text
8521
8522 \begin_layout Standard
8523
8524 \end_layout
8525
8526 \end_inset
8527 </cell>
8528 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8529 \begin_inset Text
8530
8531 \begin_layout Standard
8532
8533 \end_layout
8534
8535 \end_inset
8536 </cell>
8537 </row>
8538 <row>
8539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8540 \begin_inset Text
8541
8542 \begin_layout Standard
8543
8544 \series bold
8545 Annovi
8546 \end_layout
8547
8548 \end_inset
8549 </cell>
8550 <cell alignment="center" valignment="top" topline="true" usebox="none">
8551 \begin_inset Text
8552
8553 \begin_layout Standard
8554 Silvia
8555 \end_layout
8556
8557 \end_inset
8558 </cell>
8559 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8560 \begin_inset Text
8561
8562 \begin_layout Standard
8563 111
8564 \end_layout
8565
8566 \end_inset
8567 </cell>
8568 </row>
8569 <row>
8570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8571 \begin_inset Text
8572
8573 \begin_layout Standard
8574
8575 \series bold
8576 Bertoli
8577 \end_layout
8578
8579 \end_inset
8580 </cell>
8581 <cell alignment="center" valignment="top" topline="true" usebox="none">
8582 \begin_inset Text
8583
8584 \begin_layout Standard
8585 Stefano
8586 \end_layout
8587
8588 \end_inset
8589 </cell>
8590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8591 \begin_inset Text
8592
8593 \begin_layout Standard
8594 111
8595 \end_layout
8596
8597 \end_inset
8598 </cell>
8599 </row>
8600 <row>
8601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8602 \begin_inset Text
8603
8604 \begin_layout Standard
8605
8606 \series bold
8607 Bozzi
8608 \end_layout
8609
8610 \end_inset
8611 </cell>
8612 <cell alignment="center" valignment="top" topline="true" usebox="none">
8613 \begin_inset Text
8614
8615 \begin_layout Standard
8616 Walter
8617 \end_layout
8618
8619 \end_inset
8620 </cell>
8621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8622 \begin_inset Text
8623
8624 \begin_layout Standard
8625 111
8626 \end_layout
8627
8628 \end_inset
8629 </cell>
8630 </row>
8631 <row>
8632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8633 \begin_inset Text
8634
8635 \begin_layout Standard
8636
8637 \series bold
8638 Cachia
8639 \end_layout
8640
8641 \end_inset
8642 </cell>
8643 <cell alignment="center" valignment="top" topline="true" usebox="none">
8644 \begin_inset Text
8645
8646 \begin_layout Standard
8647 Maria
8648 \end_layout
8649
8650 \end_inset
8651 </cell>
8652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8653 \begin_inset Text
8654
8655 \begin_layout Standard
8656 111
8657 \end_layout
8658
8659 \end_inset
8660 </cell>
8661 </row>
8662 <row>
8663 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8664 \begin_inset Text
8665
8666 \begin_layout Standard
8667
8668 \series bold
8669 Cachia
8670 \end_layout
8671
8672 \end_inset
8673 </cell>
8674 <cell alignment="center" valignment="top" topline="true" usebox="none">
8675 \begin_inset Text
8676
8677 \begin_layout Standard
8678 Maurizio
8679 \end_layout
8680
8681 \end_inset
8682 </cell>
8683 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8684 \begin_inset Text
8685
8686 \begin_layout Standard
8687 111
8688 \end_layout
8689
8690 \end_inset
8691 </cell>
8692 </row>
8693 <row>
8694 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8695 \begin_inset Text
8696
8697 \begin_layout Standard
8698
8699 \series bold
8700 Cinquemani
8701 \end_layout
8702
8703 \end_inset
8704 </cell>
8705 <cell alignment="center" valignment="top" topline="true" usebox="none">
8706 \begin_inset Text
8707
8708 \begin_layout Standard
8709 Giusi
8710 \end_layout
8711
8712 \end_inset
8713 </cell>
8714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8715 \begin_inset Text
8716
8717 \begin_layout Standard
8718 111
8719 \end_layout
8720
8721 \end_inset
8722 </cell>
8723 </row>
8724 <row>
8725 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8726 \begin_inset Text
8727
8728 \begin_layout Standard
8729
8730 \series bold
8731 Colin
8732 \end_layout
8733
8734 \end_inset
8735 </cell>
8736 <cell alignment="center" valignment="top" topline="true" usebox="none">
8737 \begin_inset Text
8738
8739 \begin_layout Standard
8740 Bernard
8741 \end_layout
8742
8743 \end_inset
8744 </cell>
8745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8746 \begin_inset Text
8747
8748 \begin_layout Standard
8749 111
8750 \end_layout
8751
8752 \end_inset
8753 </cell>
8754 </row>
8755 <row>
8756 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8757 \begin_inset Text
8758
8759 \begin_layout Standard
8760
8761 \series bold
8762 Concli
8763 \end_layout
8764
8765 \end_inset
8766 </cell>
8767 <cell alignment="center" valignment="top" topline="true" usebox="none">
8768 \begin_inset Text
8769
8770 \begin_layout Standard
8771 Gianfranco
8772 \end_layout
8773
8774 \end_inset
8775 </cell>
8776 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8777 \begin_inset Text
8778
8779 \begin_layout Standard
8780 111
8781 \end_layout
8782
8783 \end_inset
8784 </cell>
8785 </row>
8786 <row>
8787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8788 \begin_inset Text
8789
8790 \begin_layout Standard
8791
8792 \series bold
8793 Dal Bosco
8794 \end_layout
8795
8796 \end_inset
8797 </cell>
8798 <cell alignment="center" valignment="top" topline="true" usebox="none">
8799 \begin_inset Text
8800
8801 \begin_layout Standard
8802 Carolina
8803 \end_layout
8804
8805 \end_inset
8806 </cell>
8807 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8808 \begin_inset Text
8809
8810 \begin_layout Standard
8811 111
8812 \end_layout
8813
8814 \end_inset
8815 </cell>
8816 </row>
8817 <row>
8818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8819 \begin_inset Text
8820
8821 \begin_layout Standard
8822
8823 \series bold
8824 Dalpiaz
8825 \end_layout
8826
8827 \end_inset
8828 </cell>
8829 <cell alignment="center" valignment="top" topline="true" usebox="none">
8830 \begin_inset Text
8831
8832 \begin_layout Standard
8833 Annamaria
8834 \end_layout
8835
8836 \end_inset
8837 </cell>
8838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8839 \begin_inset Text
8840
8841 \begin_layout Standard
8842 111
8843 \end_layout
8844
8845 \end_inset
8846 </cell>
8847 </row>
8848 <row>
8849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8850 \begin_inset Text
8851
8852 \begin_layout Standard
8853
8854 \series bold
8855 Feliciello
8856 \end_layout
8857
8858 \end_inset
8859 </cell>
8860 <cell alignment="center" valignment="top" topline="true" usebox="none">
8861 \begin_inset Text
8862
8863 \begin_layout Standard
8864 Domenico
8865 \end_layout
8866
8867 \end_inset
8868 </cell>
8869 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8870 \begin_inset Text
8871
8872 \begin_layout Standard
8873 111
8874 \end_layout
8875
8876 \end_inset
8877 </cell>
8878 </row>
8879 <row>
8880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8881 \begin_inset Text
8882
8883 \begin_layout Standard
8884
8885 \series bold
8886 Focarelli
8887 \end_layout
8888
8889 \end_inset
8890 </cell>
8891 <cell alignment="center" valignment="top" topline="true" usebox="none">
8892 \begin_inset Text
8893
8894 \begin_layout Standard
8895 Paola
8896 \end_layout
8897
8898 \end_inset
8899 </cell>
8900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8901 \begin_inset Text
8902
8903 \begin_layout Standard
8904 111
8905 \end_layout
8906
8907 \end_inset
8908 </cell>
8909 </row>
8910 <row>
8911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8912 \begin_inset Text
8913
8914 \begin_layout Standard
8915
8916 \series bold
8917 Galletti
8918 \end_layout
8919
8920 \end_inset
8921 </cell>
8922 <cell alignment="center" valignment="top" topline="true" usebox="none">
8923 \begin_inset Text
8924
8925 \begin_layout Standard
8926 Oreste
8927 \end_layout
8928
8929 \end_inset
8930 </cell>
8931 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8932 \begin_inset Text
8933
8934 \begin_layout Standard
8935 111
8936 \end_layout
8937
8938 \end_inset
8939 </cell>
8940 </row>
8941 <row>
8942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8943 \begin_inset Text
8944
8945 \begin_layout Standard
8946
8947 \series bold
8948 Gasparini
8949 \end_layout
8950
8951 \end_inset
8952 </cell>
8953 <cell alignment="center" valignment="top" topline="true" usebox="none">
8954 \begin_inset Text
8955
8956 \begin_layout Standard
8957 Franca
8958 \end_layout
8959
8960 \end_inset
8961 </cell>
8962 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8963 \begin_inset Text
8964
8965 \begin_layout Standard
8966 111
8967 \end_layout
8968
8969 \end_inset
8970 </cell>
8971 </row>
8972 <row>
8973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8974 \begin_inset Text
8975
8976 \begin_layout Standard
8977
8978 \series bold
8979 Lassini
8980 \end_layout
8981
8982 \end_inset
8983 </cell>
8984 <cell alignment="center" valignment="top" topline="true" usebox="none">
8985 \begin_inset Text
8986
8987 \begin_layout Standard
8988 Giancarlo
8989 \end_layout
8990
8991 \end_inset
8992 </cell>
8993 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8994 \begin_inset Text
8995
8996 \begin_layout Standard
8997 111
8998 \end_layout
8999
9000 \end_inset
9001 </cell>
9002 </row>
9003 <row>
9004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9005 \begin_inset Text
9006
9007 \begin_layout Standard
9008
9009 \series bold
9010 Malfatti
9011 \end_layout
9012
9013 \end_inset
9014 </cell>
9015 <cell alignment="center" valignment="top" topline="true" usebox="none">
9016 \begin_inset Text
9017
9018 \begin_layout Standard
9019 Luciano
9020 \end_layout
9021
9022 \end_inset
9023 </cell>
9024 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9025 \begin_inset Text
9026
9027 \begin_layout Standard
9028 111
9029 \end_layout
9030
9031 \end_inset
9032 </cell>
9033 </row>
9034 <row>
9035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9036 \begin_inset Text
9037
9038 \begin_layout Standard
9039
9040 \series bold
9041 Malfatti
9042 \end_layout
9043
9044 \end_inset
9045 </cell>
9046 <cell alignment="center" valignment="top" topline="true" usebox="none">
9047 \begin_inset Text
9048
9049 \begin_layout Standard
9050 Valeriano
9051 \end_layout
9052
9053 \end_inset
9054 </cell>
9055 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9056 \begin_inset Text
9057
9058 \begin_layout Standard
9059 111
9060 \end_layout
9061
9062 \end_inset
9063 </cell>
9064 </row>
9065 <row>
9066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9067 \begin_inset Text
9068
9069 \begin_layout Standard
9070
9071 \series bold
9072 Meneguzzo
9073 \end_layout
9074
9075 \end_inset
9076 </cell>
9077 <cell alignment="center" valignment="top" topline="true" usebox="none">
9078 \begin_inset Text
9079
9080 \begin_layout Standard
9081 Roberto
9082 \end_layout
9083
9084 \end_inset
9085 </cell>
9086 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9087 \begin_inset Text
9088
9089 \begin_layout Standard
9090 111
9091 \end_layout
9092
9093 \end_inset
9094 </cell>
9095 </row>
9096 <row>
9097 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9098 \begin_inset Text
9099
9100 \begin_layout Standard
9101
9102 \series bold
9103 Mezzadra
9104 \end_layout
9105
9106 \end_inset
9107 </cell>
9108 <cell alignment="center" valignment="top" topline="true" usebox="none">
9109 \begin_inset Text
9110
9111 \begin_layout Standard
9112 Roberto
9113 \end_layout
9114
9115 \end_inset
9116 </cell>
9117 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9118 \begin_inset Text
9119
9120 \begin_layout Standard
9121 111
9122 \end_layout
9123
9124 \end_inset
9125 </cell>
9126 </row>
9127 <row>
9128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9129 \begin_inset Text
9130
9131 \begin_layout Standard
9132
9133 \series bold
9134 Pirpamer
9135 \end_layout
9136
9137 \end_inset
9138 </cell>
9139 <cell alignment="center" valignment="top" topline="true" usebox="none">
9140 \begin_inset Text
9141
9142 \begin_layout Standard
9143 Erich
9144 \end_layout
9145
9146 \end_inset
9147 </cell>
9148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9149 \begin_inset Text
9150
9151 \begin_layout Standard
9152 111
9153 \end_layout
9154
9155 \end_inset
9156 </cell>
9157 </row>
9158 <row>
9159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9160 \begin_inset Text
9161
9162 \begin_layout Standard
9163
9164 \series bold
9165 Pochiesa
9166 \end_layout
9167
9168 \end_inset
9169 </cell>
9170 <cell alignment="center" valignment="top" topline="true" usebox="none">
9171 \begin_inset Text
9172
9173 \begin_layout Standard
9174 Paolo
9175 \end_layout
9176
9177 \end_inset
9178 </cell>
9179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9180 \begin_inset Text
9181
9182 \begin_layout Standard
9183 111, 222
9184 \end_layout
9185
9186 \end_inset
9187 </cell>
9188 </row>
9189 <row>
9190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9191 \begin_inset Text
9192
9193 \begin_layout Standard
9194
9195 \series bold
9196 Radina
9197 \end_layout
9198
9199 \end_inset
9200 </cell>
9201 <cell alignment="center" valignment="top" topline="true" usebox="none">
9202 \begin_inset Text
9203
9204 \begin_layout Standard
9205 Claudio
9206 \end_layout
9207
9208 \end_inset
9209 </cell>
9210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9211 \begin_inset Text
9212
9213 \begin_layout Standard
9214 111
9215 \end_layout
9216
9217 \end_inset
9218 </cell>
9219 </row>
9220 <row>
9221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9222 \begin_inset Text
9223
9224 \begin_layout Standard
9225
9226 \series bold
9227 Rizzardi
9228 \end_layout
9229
9230 \end_inset
9231 </cell>
9232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9233 \begin_inset Text
9234
9235 \begin_layout Standard
9236 Paolo, 11.
9237  Fürst von Montecompatri, 11.
9238  Fürst von Sulmona und Vivaro, 10.
9239  Fürst von Rossano, 5.
9240  Herzog von Canemorte, 11.
9241  Herzog von Palombara, 5.
9242  Herzog von Castelchiodato,
9243 \begin_inset ERT
9244 status collapsed
9245
9246 \begin_layout Standard
9247
9248 & 111
9249 \backslash
9250
9251 \backslash
9252
9253 \end_layout
9254
9255 \begin_layout Standard
9256
9257 &
9258 \end_layout
9259
9260 \end_inset
9261
9262  11.
9263  Herzog von Poggionativo, 11.
9264  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9265  Graf von Valinfreda, 11.
9266  Baron von Cropalati, 11.
9267  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9268 \end_layout
9269
9270 \end_inset
9271 </cell>
9272 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9273 \begin_inset Text
9274
9275 \begin_layout Standard
9276
9277 \end_layout
9278
9279 \end_inset
9280 </cell>
9281 </row>
9282 <row>
9283 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9284 \begin_inset Text
9285
9286 \begin_layout Standard
9287
9288 \series bold
9289 Stuffer
9290 \end_layout
9291
9292 \end_inset
9293 </cell>
9294 <cell alignment="center" valignment="top" topline="true" usebox="none">
9295 \begin_inset Text
9296
9297 \begin_layout Standard
9298 Oskar
9299 \end_layout
9300
9301 \end_inset
9302 </cell>
9303 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9304 \begin_inset Text
9305
9306 \begin_layout Standard
9307 111
9308 \end_layout
9309
9310 \end_inset
9311 </cell>
9312 </row>
9313 <row>
9314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9315 \begin_inset Text
9316
9317 \begin_layout Standard
9318
9319 \series bold
9320 Tacchelli
9321 \end_layout
9322
9323 \end_inset
9324 </cell>
9325 <cell alignment="center" valignment="top" topline="true" usebox="none">
9326 \begin_inset Text
9327
9328 \begin_layout Standard
9329 Ugo
9330 \end_layout
9331
9332 \end_inset
9333 </cell>
9334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9335 \begin_inset Text
9336
9337 \begin_layout Standard
9338 111
9339 \end_layout
9340
9341 \end_inset
9342 </cell>
9343 </row>
9344 <row>
9345 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9346 \begin_inset Text
9347
9348 \begin_layout Standard
9349
9350 \series bold
9351 Tezzele
9352 \end_layout
9353
9354 \end_inset
9355 </cell>
9356 <cell alignment="center" valignment="top" topline="true" usebox="none">
9357 \begin_inset Text
9358
9359 \begin_layout Standard
9360 Margit
9361 \end_layout
9362
9363 \end_inset
9364 </cell>
9365 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9366 \begin_inset Text
9367
9368 \begin_layout Standard
9369 111
9370 \end_layout
9371
9372 \end_inset
9373 </cell>
9374 </row>
9375 <row>
9376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9377 \begin_inset Text
9378
9379 \begin_layout Standard
9380
9381 \series bold
9382 Unterkalmsteiner
9383 \end_layout
9384
9385 \end_inset
9386 </cell>
9387 <cell alignment="center" valignment="top" topline="true" usebox="none">
9388 \begin_inset Text
9389
9390 \begin_layout Standard
9391 Frieda
9392 \end_layout
9393
9394 \end_inset
9395 </cell>
9396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9397 \begin_inset Text
9398
9399 \begin_layout Standard
9400 111
9401 \end_layout
9402
9403 \end_inset
9404 </cell>
9405 </row>
9406 <row>
9407 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9408 \begin_inset Text
9409
9410 \begin_layout Standard
9411
9412 \series bold
9413 Vieider
9414 \end_layout
9415
9416 \end_inset
9417 </cell>
9418 <cell alignment="center" valignment="top" topline="true" usebox="none">
9419 \begin_inset Text
9420
9421 \begin_layout Standard
9422 Hilde
9423 \end_layout
9424
9425 \end_inset
9426 </cell>
9427 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9428 \begin_inset Text
9429
9430 \begin_layout Standard
9431 111
9432 \end_layout
9433
9434 \end_inset
9435 </cell>
9436 </row>
9437 <row>
9438 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9439 \begin_inset Text
9440
9441 \begin_layout Standard
9442
9443 \series bold
9444 Vigna
9445 \end_layout
9446
9447 \end_inset
9448 </cell>
9449 <cell alignment="center" valignment="top" topline="true" usebox="none">
9450 \begin_inset Text
9451
9452 \begin_layout Standard
9453 Jürgen
9454 \end_layout
9455
9456 \end_inset
9457 </cell>
9458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9459 \begin_inset Text
9460
9461 \begin_layout Standard
9462 111
9463 \end_layout
9464
9465 \end_inset
9466 </cell>
9467 </row>
9468 <row>
9469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9470 \begin_inset Text
9471
9472 \begin_layout Standard
9473
9474 \series bold
9475 Weber
9476 \end_layout
9477
9478 \end_inset
9479 </cell>
9480 <cell alignment="center" valignment="top" topline="true" usebox="none">
9481 \begin_inset Text
9482
9483 \begin_layout Standard
9484 Maurizio
9485 \end_layout
9486
9487 \end_inset
9488 </cell>
9489 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9490 \begin_inset Text
9491
9492 \begin_layout Standard
9493 111
9494 \end_layout
9495
9496 \end_inset
9497 </cell>
9498 </row>
9499 <row bottomline="true">
9500 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9501 \begin_inset Text
9502
9503 \begin_layout Standard
9504
9505 \series bold
9506 Winkler
9507 \end_layout
9508
9509 \end_inset
9510 </cell>
9511 <cell alignment="center" valignment="top" topline="true" usebox="none">
9512 \begin_inset Text
9513
9514 \begin_layout Standard
9515 Franz
9516 \end_layout
9517
9518 \end_inset
9519 </cell>
9520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9521 \begin_inset Text
9522
9523 \begin_layout Standard
9524 111
9525 \end_layout
9526
9527 \end_inset
9528 </cell>
9529 </row>
9530 <row endlastfoot="true">
9531 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9532 \begin_inset Text
9533
9534 \begin_layout Standard
9535
9536 \end_layout
9537
9538 \end_inset
9539 </cell>
9540 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9541 \begin_inset Text
9542
9543 \begin_layout Standard
9544
9545 \end_layout
9546
9547 \end_inset
9548 </cell>
9549 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9550 \begin_inset Text
9551
9552 \begin_layout Standard
9553
9554 \end_layout
9555
9556 \end_inset
9557 </cell>
9558 </row>
9559 </lyxtabular>
9560
9561 \end_inset
9562
9563
9564 \end_layout
9565
9566 \begin_layout Section
9567 Líneas Múltiples en Columnas y Filas
9568 \end_layout
9569
9570 \begin_layout Subsection
9571 Líneas Múltiples en Celdas
9572 \begin_inset LatexCommand label
9573 name "sub:Líneas-Múltiples-en"
9574
9575 \end_inset
9576
9577
9578 \begin_inset LatexCommand index
9579 name "Líneas Múltiples en Celdas"
9580
9581 \end_inset
9582
9583
9584 \begin_inset LatexCommand index
9585 name "Tablas ! Saltos de Línea"
9586
9587 \end_inset
9588
9589
9590 \end_layout
9591
9592 \begin_layout Standard
9593 \align center
9594 \begin_inset Float table
9595 placement H
9596 wide false
9597 sideways false
9598 status open
9599
9600 \begin_layout Caption
9601 \begin_inset LatexCommand label
9602 name "tab:Tabla-con-múltiples"
9603
9604 \end_inset
9605
9606 Tabla con líneas múltiples en celda
9607 \end_layout
9608
9609 \begin_layout Standard
9610 \align center
9611 \begin_inset Tabular
9612 <lyxtabular version="3" rows="3" columns="3">
9613 <features>
9614 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9615 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9616 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9617 <row topline="true">
9618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9619 \begin_inset Text
9620
9621 \begin_layout Standard
9622 líneas
9623 \begin_inset ERT
9624 status collapsed
9625
9626 \begin_layout Standard
9627
9628
9629 \backslash
9630 linebreak 
9631 \end_layout
9632
9633 \end_inset
9634
9635 múltiples
9636 \end_layout
9637
9638 \end_inset
9639 </cell>
9640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9641 \begin_inset Text
9642
9643 \begin_layout Standard
9644 b
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 c
9654 \end_layout
9655
9656 \end_inset
9657 </cell>
9658 </row>
9659 <row topline="true">
9660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9661 \begin_inset Text
9662
9663 \begin_layout Standard
9664 d
9665 \end_layout
9666
9667 \end_inset
9668 </cell>
9669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9670 \begin_inset Text
9671
9672 \begin_layout Standard
9673 e
9674 \end_layout
9675
9676 \end_inset
9677 </cell>
9678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9679 \begin_inset Text
9680
9681 \begin_layout Standard
9682 f
9683 \end_layout
9684
9685 \end_inset
9686 </cell>
9687 </row>
9688 <row topline="true" bottomline="true">
9689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9690 \begin_inset Text
9691
9692 \begin_layout Standard
9693 g
9694 \end_layout
9695
9696 \end_inset
9697 </cell>
9698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9699 \begin_inset Text
9700
9701 \begin_layout Standard
9702 h
9703 \end_layout
9704
9705 \end_inset
9706 </cell>
9707 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9708 \begin_inset Text
9709
9710 \begin_layout Standard
9711 i
9712 \end_layout
9713
9714 \end_inset
9715 </cell>
9716 </row>
9717 </lyxtabular>
9718
9719 \end_inset
9720
9721
9722 \end_layout
9723
9724 \end_inset
9725
9726
9727 \end_layout
9728
9729 \begin_layout Standard
9730 Al ajustar anchura fija en una columna se habilita la entrada de texto como
9731  párrafos con varias líneas y guionado.
9732 \end_layout
9733
9734 \begin_layout Standard
9735 Para generar la tabla\InsetSpace ~
9736
9737 \begin_inset LatexCommand ref
9738 reference "tab:Tabla-con-múltiples"
9739
9740 \end_inset
9741
9742 , crea una tabla 3×3, marca la primera celda y click-derecha sobre ella.
9743  En el diálogo que surge establace una anchura de 2.5\InsetSpace \thinspace{}
9744 cm y escoge centro en
9745  alineación vertical y horizontal.
9746  Como nuestro texto es menor de 2.5\InsetSpace \thinspace{}
9747 cm, solo aparece una línea.
9748  Para poner dos añadimos un salto de línea con el comando
9749 \end_layout
9750
9751 \begin_layout Standard
9752
9753 \series bold
9754
9755 \backslash
9756 linebreak
9757 \end_layout
9758
9759 \begin_layout Standard
9760 en ERT.
9761  Si el texto es más ancho que la celda será automáticamente dividido en
9762  líneas.
9763 \end_layout
9764
9765 \begin_layout Standard
9766 Para centrar verticalmente el texto en las otras dos celdas de la primera
9767  fila, haz click-derecha en la segunda celda, ajusta una anchura de 0.5\InsetSpace \thinspace{}
9768 cm
9769  y marca alineaciones centrales.
9770  Haz lo mismo con la tercera celda de la fila.
9771 \end_layout
9772
9773 \begin_layout Standard
9774 Si hay una palabra larga en una celda con anchura fija, LaTeX no puede cortarla
9775  con guión si es la primera entrada.
9776  Por eso hay que insertar algo para que dicha palabra no sea la primera
9777  entrada: Añade el comando
9778 \end_layout
9779
9780 \begin_layout Standard
9781
9782 \series bold
9783
9784 \backslash
9785 hspace{0pt}
9786 \end_layout
9787
9788 \begin_layout Standard
9789 en ERT antes de la palabra.
9790  Como el espacio es 0 la salida no cambia.
9791  La tabla\InsetSpace ~
9792
9793 \begin_inset LatexCommand ref
9794 reference "tab:Tabla-con-y"
9795
9796 \end_inset
9797
9798  muestra el efecto.
9799 \end_layout
9800
9801 \begin_layout Standard
9802 \begin_inset Float table
9803 wide false
9804 sideways false
9805 status open
9806
9807 \begin_layout Caption
9808 \begin_inset LatexCommand label
9809 name "tab:Tabla-con-y"
9810
9811 \end_inset
9812
9813 Tablas con y sin guionado
9814 \end_layout
9815
9816 \begin_layout Standard
9817
9818 \hfill
9819
9820 \begin_inset Tabular
9821 <lyxtabular version="3" rows="3" columns="3">
9822 <features>
9823 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9824 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9825 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9826 <row topline="true">
9827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9828 \begin_inset Text
9829
9830 \begin_layout Standard
9831 celdaconpalabramuylarga
9832 \end_layout
9833
9834 \end_inset
9835 </cell>
9836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9837 \begin_inset Text
9838
9839 \begin_layout Standard
9840 b
9841 \end_layout
9842
9843 \end_inset
9844 </cell>
9845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9846 \begin_inset Text
9847
9848 \begin_layout Standard
9849 c
9850 \end_layout
9851
9852 \end_inset
9853 </cell>
9854 </row>
9855 <row topline="true">
9856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9857 \begin_inset Text
9858
9859 \begin_layout Standard
9860 d
9861 \end_layout
9862
9863 \end_inset
9864 </cell>
9865 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9866 \begin_inset Text
9867
9868 \begin_layout Standard
9869 e
9870 \end_layout
9871
9872 \end_inset
9873 </cell>
9874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9875 \begin_inset Text
9876
9877 \begin_layout Standard
9878 f
9879 \end_layout
9880
9881 \end_inset
9882 </cell>
9883 </row>
9884 <row topline="true" bottomline="true">
9885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9886 \begin_inset Text
9887
9888 \begin_layout Standard
9889 g
9890 \end_layout
9891
9892 \end_inset
9893 </cell>
9894 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9895 \begin_inset Text
9896
9897 \begin_layout Standard
9898 h
9899 \end_layout
9900
9901 \end_inset
9902 </cell>
9903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9904 \begin_inset Text
9905
9906 \begin_layout Standard
9907 i
9908 \end_layout
9909
9910 \end_inset
9911 </cell>
9912 </row>
9913 </lyxtabular>
9914
9915 \end_inset
9916
9917
9918 \hfill
9919
9920 \begin_inset Tabular
9921 <lyxtabular version="3" rows="3" columns="3">
9922 <features>
9923 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9924 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9925 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9926 <row topline="true">
9927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9928 \begin_inset Text
9929
9930 \begin_layout Standard
9931 \begin_inset ERT
9932 status collapsed
9933
9934 \begin_layout Standard
9935
9936
9937 \backslash
9938 hspace{0pt}
9939 \end_layout
9940
9941 \end_inset
9942
9943 celdaconpalabramuylarga
9944 \end_layout
9945
9946 \end_inset
9947 </cell>
9948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9949 \begin_inset Text
9950
9951 \begin_layout Standard
9952 b
9953 \end_layout
9954
9955 \end_inset
9956 </cell>
9957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9958 \begin_inset Text
9959
9960 \begin_layout Standard
9961 c
9962 \end_layout
9963
9964 \end_inset
9965 </cell>
9966 </row>
9967 <row topline="true">
9968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9969 \begin_inset Text
9970
9971 \begin_layout Standard
9972 d
9973 \end_layout
9974
9975 \end_inset
9976 </cell>
9977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9978 \begin_inset Text
9979
9980 \begin_layout Standard
9981 e
9982 \end_layout
9983
9984 \end_inset
9985 </cell>
9986 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9987 \begin_inset Text
9988
9989 \begin_layout Standard
9990 f
9991 \end_layout
9992
9993 \end_inset
9994 </cell>
9995 </row>
9996 <row topline="true" bottomline="true">
9997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9998 \begin_inset Text
9999
10000 \begin_layout Standard
10001 g
10002 \end_layout
10003
10004 \end_inset
10005 </cell>
10006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10007 \begin_inset Text
10008
10009 \begin_layout Standard
10010 h
10011 \end_layout
10012
10013 \end_inset
10014 </cell>
10015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10016 \begin_inset Text
10017
10018 \begin_layout Standard
10019 i
10020 \end_layout
10021
10022 \end_inset
10023 </cell>
10024 </row>
10025 </lyxtabular>
10026
10027 \end_inset
10028
10029
10030 \hfill
10031
10032 \end_layout
10033
10034 \end_inset
10035
10036
10037 \end_layout
10038
10039 \begin_layout Standard
10040
10041 \newpage
10042
10043 \end_layout
10044
10045 \begin_layout Subsection
10046 Multicolumnas
10047 \begin_inset LatexCommand label
10048 name "sub:Multicolumnas"
10049
10050 \end_inset
10051
10052
10053 \begin_inset LatexCommand index
10054 name "Multicolumnas"
10055
10056 \end_inset
10057
10058
10059 \begin_inset LatexCommand index
10060 name "Tablas ! Multicolumnas"
10061
10062 \end_inset
10063
10064
10065 \end_layout
10066
10067 \begin_layout Subsubsection
10068 Fundamentos de Multicolumna
10069 \end_layout
10070
10071 \begin_layout Standard
10072 Para extender una celda sobre varias columnas, se marcan las celdas que
10073  se desee combinar y se usa el botón 
10074 \begin_inset Graphics
10075         filename ../images/tabular-feature_multicolumn.xpm
10076         scale 85
10077
10078 \end_inset
10079
10080 , o el menú 
10081 \family sans
10082 Editar\SpecialChar \menuseparator
10083 Tabla\SpecialChar \menuseparator
10084 Multicolumn
10085 \family default
10086 a, o click-derecha sobre las celdas marcadas y se selecciona en el diálogo,
10087  bajo la pestaña 
10088 \family sans
10089 Configuración
10090 \family default
10091 , la casilla Multicolumna.
10092 \end_layout
10093
10094 \begin_layout Standard
10095 Las multicolumnas tienen su propia configuración de celdas.
10096  Esto es, los cambios de bordes, alineación y anchura solo afectan a la
10097  multicolumna.
10098  Aquí hay un ejemplo de tabla con una multicolumna en la primera fila y
10099  otra en la última fila sin borde superior:
10100 \end_layout
10101
10102 \begin_layout Standard
10103 \align center
10104 \begin_inset Tabular
10105 <lyxtabular version="3" rows="3" columns="4">
10106 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10107 <column alignment="center" valignment="top" leftline="true" width="0pt">
10108 <column alignment="center" valignment="middle" leftline="true" width="0">
10109 <column alignment="center" valignment="top" leftline="true" width="0in">
10110 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10111 <row topline="true" bottomline="true">
10112 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10113 \begin_inset Text
10114
10115 \begin_layout Standard
10116 abc
10117 \end_layout
10118
10119 \end_inset
10120 </cell>
10121 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10122 \begin_inset Text
10123
10124 \begin_layout Standard
10125 def
10126 \lang ngerman
10127  
10128 \lang spanish
10129 ghi
10130 \end_layout
10131
10132 \end_inset
10133 </cell>
10134 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10135 \begin_inset Text
10136
10137 \begin_layout Standard
10138
10139 \end_layout
10140
10141 \end_inset
10142 </cell>
10143 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10144 \begin_inset Text
10145
10146 \begin_layout Standard
10147 jkl
10148 \end_layout
10149
10150 \end_inset
10151 </cell>
10152 </row>
10153 <row topline="true">
10154 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10155 \begin_inset Text
10156
10157 \begin_layout Standard
10158
10159 \family roman
10160 \series medium
10161 \shape up
10162 \size normal
10163 \emph off
10164 \bar no
10165 \noun off
10166 \color none
10167 A
10168 \end_layout
10169
10170 \end_inset
10171 </cell>
10172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10173 \begin_inset Text
10174
10175 \begin_layout Standard
10176 B
10177 \end_layout
10178
10179 \end_inset
10180 </cell>
10181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10182 \begin_inset Text
10183
10184 \begin_layout Standard
10185 C
10186 \end_layout
10187
10188 \end_inset
10189 </cell>
10190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10191 \begin_inset Text
10192
10193 \begin_layout Standard
10194 D
10195 \end_layout
10196
10197 \end_inset
10198 </cell>
10199 </row>
10200 <row topline="true" bottomline="true">
10201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10202 \begin_inset Text
10203
10204 \begin_layout Standard
10205 1
10206 \end_layout
10207
10208 \end_inset
10209 </cell>
10210 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10211 \begin_inset Text
10212
10213 \begin_layout Standard
10214 2
10215 \end_layout
10216
10217 \end_inset
10218 </cell>
10219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10220 \begin_inset Text
10221
10222 \begin_layout Standard
10223 3
10224 \end_layout
10225
10226 \end_inset
10227 </cell>
10228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10229 \begin_inset Text
10230
10231 \begin_layout Standard
10232 4
10233 \end_layout
10234
10235 \end_inset
10236 </cell>
10237 </row>
10238 </lyxtabular>
10239
10240 \end_inset
10241
10242
10243 \end_layout
10244
10245 \begin_layout Subsubsection
10246 Cálculos en Multicolumnas
10247 \begin_inset LatexCommand label
10248 name "sub:Cálculos-en-Multicolumnas"
10249
10250 \end_inset
10251
10252
10253 \begin_inset LatexCommand index
10254 name "Multicolumnas ! Cálculos"
10255
10256 \end_inset
10257
10258
10259 \end_layout
10260
10261 \begin_layout Standard
10262 LyX soporta multicolumnas directamente, pero hay que prestar atención a
10263  la anchura de celda de las columnas combinadas en la celda multicolumna.
10264 \end_layout
10265
10266 \begin_layout Standard
10267 \begin_inset Float table
10268 wide false
10269 sideways false
10270 status open
10271
10272 \begin_layout Caption
10273 \begin_inset LatexCommand label
10274 name "tab:Tabla-con-centrado"
10275
10276 \end_inset
10277
10278 Tabla con texto centrado en multicolumna sobre dos columnas que tienen exactamen
10279 te la mitad de anchura que la celda multicolumna
10280 \begin_inset OptArg
10281 status collapsed
10282
10283 \begin_layout Standard
10284 Tabla multicolumna perfecta
10285 \end_layout
10286
10287 \end_inset
10288
10289
10290 \end_layout
10291
10292 \begin_layout Standard
10293 \align center
10294 \begin_inset Tabular
10295 <lyxtabular version="3" rows="3" columns="3">
10296 <features>
10297 <column alignment="center" valignment="middle" leftline="true" width="0" special="|>{\centering}m{1.25cm-6.2pt}">
10298 <column alignment="center" valignment="middle" leftline="true" width="0">
10299 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10300 <row topline="true">
10301 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special="|>{\centering}m{2.5cm}|">
10302 \begin_inset Text
10303
10304 \begin_layout Standard
10305 multicolumna línea múltiple
10306 \end_layout
10307
10308 \end_inset
10309 </cell>
10310 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10311 \begin_inset Text
10312
10313 \begin_layout Standard
10314
10315 \end_layout
10316
10317 \end_inset
10318 </cell>
10319 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10320 \begin_inset Text
10321
10322 \begin_layout Standard
10323 c
10324 \end_layout
10325
10326 \end_inset
10327 </cell>
10328 </row>
10329 <row topline="true">
10330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10331 \begin_inset Text
10332
10333 \begin_layout Standard
10334 d
10335 \end_layout
10336
10337 \end_inset
10338 </cell>
10339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10340 \begin_inset Text
10341
10342 \begin_layout Standard
10343 e
10344 \end_layout
10345
10346 \end_inset
10347 </cell>
10348 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10349 \begin_inset Text
10350
10351 \begin_layout Standard
10352 f
10353 \end_layout
10354
10355 \end_inset
10356 </cell>
10357 </row>
10358 <row topline="true" bottomline="true">
10359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10360 \begin_inset Text
10361
10362 \begin_layout Standard
10363 g
10364 \end_layout
10365
10366 \end_inset
10367 </cell>
10368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10369 \begin_inset Text
10370
10371 \begin_layout Standard
10372 h
10373 \end_layout
10374
10375 \end_inset
10376 </cell>
10377 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10378 \begin_inset Text
10379
10380 \begin_layout Standard
10381 i
10382 \end_layout
10383
10384 \end_inset
10385 </cell>
10386 </row>
10387 </lyxtabular>
10388
10389 \end_inset
10390
10391
10392 \end_layout
10393
10394 \end_inset
10395
10396
10397 \end_layout
10398
10399 \begin_layout Standard
10400 Por ejemplo, para crear la Tabla\InsetSpace ~
10401
10402 \begin_inset LatexCommand ref
10403 reference "tab:Tabla-con-centrado"
10404
10405 \end_inset
10406
10407 , marca las dos primeras celdas en la primera fila de una tabla 3×3 y haz
10408  click-derecha.
10409  En el diálogo marca 
10410 \emph on
10411 multicolumna
10412 \emph default
10413
10414 \emph on
10415 alineación centro
10416 \emph default
10417  y una anchura de 2.5\InsetSpace \thinspace{}
10418 cm.
10419  Las columnas combinadas deberían tener exactamente la mitad de la anchura
10420  de la celda multicolumna, así que deberías ajustar 1.25\InsetSpace \thinspace{}
10421 cm para la primera
10422  columna.
10423  La segunda columna tendrá entonces automáticamente 1.25\InsetSpace \thinspace{}
10424 cm de anchura.
10425  Para la Tabla 
10426 \begin_inset LatexCommand ref
10427 reference "tab:Tabla-sin-mitad"
10428
10429 \end_inset
10430
10431  se ha procedido de la siguiente manera:
10432 \end_layout
10433
10434 \begin_layout Standard
10435 \begin_inset Float table
10436 wide false
10437 sideways false
10438 status open
10439
10440 \begin_layout Caption
10441 \begin_inset LatexCommand label
10442 name "tab:Tabla-sin-mitad"
10443
10444 \end_inset
10445
10446 Tabla en la que las columnas combinadas no tienen exactamente la mitad de
10447  anchura que la celda multicolumna
10448 \begin_inset OptArg
10449 status collapsed
10450
10451 \begin_layout Standard
10452 Tabla multicolumna imperfecta
10453 \end_layout
10454
10455 \end_inset
10456
10457
10458 \end_layout
10459
10460 \begin_layout Standard
10461 \align center
10462 \begin_inset Tabular
10463 <lyxtabular version="3" rows="3" columns="3">
10464 <features>
10465 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10466 <column alignment="center" valignment="top" leftline="true" width="0">
10467 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10468 <row topline="true" bottomline="true">
10469 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10470 \begin_inset Text
10471
10472 \begin_layout Standard
10473 multicolumna línea múltiple
10474 \end_layout
10475
10476 \end_inset
10477 </cell>
10478 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10479 \begin_inset Text
10480
10481 \begin_layout Standard
10482
10483 \end_layout
10484
10485 \end_inset
10486 </cell>
10487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10488 \begin_inset Text
10489
10490 \begin_layout Standard
10491 c
10492 \end_layout
10493
10494 \end_inset
10495 </cell>
10496 </row>
10497 <row topline="true">
10498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10499 \begin_inset Text
10500
10501 \begin_layout Standard
10502 d
10503 \end_layout
10504
10505 \end_inset
10506 </cell>
10507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10508 \begin_inset Text
10509
10510 \begin_layout Standard
10511 e
10512 \end_layout
10513
10514 \end_inset
10515 </cell>
10516 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10517 \begin_inset Text
10518
10519 \begin_layout Standard
10520 f
10521 \end_layout
10522
10523 \end_inset
10524 </cell>
10525 </row>
10526 <row topline="true" bottomline="true">
10527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10528 \begin_inset Text
10529
10530 \begin_layout Standard
10531 g
10532 \end_layout
10533
10534 \end_inset
10535 </cell>
10536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10537 \begin_inset Text
10538
10539 \begin_layout Standard
10540 h
10541 \end_layout
10542
10543 \end_inset
10544 </cell>
10545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10546 \begin_inset Text
10547
10548 \begin_layout Standard
10549 i
10550 \end_layout
10551
10552 \end_inset
10553 </cell>
10554 </row>
10555 </lyxtabular>
10556
10557 \end_inset
10558
10559
10560 \end_layout
10561
10562 \end_inset
10563
10564
10565 \end_layout
10566
10567 \begin_layout Standard
10568 Se ve que la primera columna no tiene la mitad de ancho que la celda multicolumn
10569 a, es un poco mayor.
10570  La razón es que la anchura dada para una celda 
10571 \begin_inset Formula $W_{g}$
10572 \end_inset
10573
10574  no es su anchura total 
10575 \begin_inset Formula $W_{\mathrm{tot}}$
10576 \end_inset
10577
10578  porque una celda es siempre algo mayor que la anchura dada.
10579  El Apéndice\InsetSpace ~
10580
10581 \begin_inset LatexCommand eqref
10582 reference "cha:Explicación-de-la-Ecuación"
10583
10584 \end_inset
10585
10586  lo explica con detalle.
10587 \end_layout
10588
10589 \begin_layout Standard
10590 La anchura dada necesaria, 
10591 \begin_inset Formula $W_{g\, n}$
10592 \end_inset
10593
10594  para combinar 
10595 \emph on
10596 n
10597 \emph default
10598  columnas puede calcularse de manera que cada columna tenga una anchura
10599  total de 
10600 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10601 \end_inset
10602
10603 :
10604 \begin_inset Formula \begin{equation}
10605 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10606
10607 \end_inset
10608
10609
10610 \end_layout
10611
10612 \begin_layout Standard
10613 En nuestro caso tenemos 
10614 \begin_inset Formula $n=2$
10615 \end_inset
10616
10617
10618 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10619 \end_inset
10620
10621 \InsetSpace \thinspace{}
10622 cm y los valores predeterminados para longitudes, así la ecuación\InsetSpace ~
10623
10624 \begin_inset LatexCommand ref
10625 reference "eq:Wgn"
10626
10627 \end_inset
10628
10629  queda
10630 \begin_inset Formula \begin{equation}
10631 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10632
10633 \end_inset
10634
10635
10636 \end_layout
10637
10638 \begin_layout Standard
10639 Para habilitar cálculos en LaTeX, debe cargarse en el preámbulo el paquete
10640  
10641 \series bold
10642 calc
10643 \series default
10644  con la línea
10645 \begin_inset LatexCommand index
10646 name "LaTeX-paquetes ! calc"
10647
10648 \end_inset
10649
10650
10651 \end_layout
10652
10653 \begin_layout Standard
10654
10655 \series bold
10656
10657 \backslash
10658 usepackage{calc}
10659 \end_layout
10660
10661 \begin_layout Standard
10662 LyX no permite calcular longitudes en el campo Ancho del cuadro de diálogo.
10663  Por tanto hay que insertar un argumento LaTeX en el diálogo.
10664  He aquí un repaso de los argumentos:
10665 \end_layout
10666
10667 \begin_layout Itemize
10668
10669 \series bold
10670 p{ancho}
10671 \series default
10672  crea celdas con anchura fija, el texto alineado arriba
10673 \end_layout
10674
10675 \begin_layout Itemize
10676
10677 \series bold
10678 m{ancho}
10679 \series default
10680  crea celdas con anchura fija, el texto con alineación vertical centrada
10681  
10682 \end_layout
10683
10684 \begin_layout Itemize
10685
10686 \series bold
10687 b{ancho}
10688 \series default
10689  crea celdas con anchura fija, el texto alineado abajo
10690 \end_layout
10691
10692 \begin_layout Standard
10693 Al introducir un argumento LaTeX, todas las propiedades de celda puestas
10694  en el diálogo se ignoran.
10695  
10696 \begin_inset Note Greyedout
10697 status open
10698
10699 \begin_layout Standard
10700
10701 \series bold
10702 Nota:
10703 \series default
10704  Debido a un error, LyX muestra de todas formas estas propiedades.
10705 \end_layout
10706
10707 \end_inset
10708
10709  El comando 
10710 \series bold
10711
10712 \backslash
10713 centering
10714 \series default
10715  se añade para centrar horizontalmente el texto.
10716  Puedes entonces introducir el siguiente argumento de LaTeX para la primera
10717  columna extendida:
10718 \end_layout
10719
10720 \begin_layout Standard
10721
10722 \series bold
10723 |>{
10724 \backslash
10725 centering}m{1.25cm-6.2pt}
10726 \end_layout
10727
10728 \begin_layout Standard
10729 La barra "
10730 \series bold
10731 |
10732 \series default
10733 " al principio dibuja el borde y el comando
10734 \series bold
10735  >{ }
10736 \series default
10737  significa que los comandos entre llaves se aplican antes de crear la celda.
10738 \end_layout
10739
10740 \begin_layout Standard
10741 Aunque hemos escogido alineación centrada para el texto de la celda multicolumna
10742 , aún está alineado a la izquierda.
10743  Esto se debe a que LyX solo aplica alineado a columnas simples.
10744  Así que para multicolumnas hemos de usar el argumento de LaTeX
10745 \end_layout
10746
10747 \begin_layout Standard
10748
10749 \series bold
10750 |>{
10751 \backslash
10752 centering}m{2.5cm}|
10753 \end_layout
10754
10755 \begin_layout Subsection
10756 Multifilas
10757 \begin_inset LatexCommand index
10758 name "Multifilas"
10759
10760 \end_inset
10761
10762
10763 \begin_inset LatexCommand index
10764 name "Tablas ! Multifilas"
10765
10766 \end_inset
10767
10768
10769 \begin_inset LatexCommand index
10770 name "LaTeX-paquetes ! multirow"
10771
10772 \end_inset
10773
10774
10775 \end_layout
10776
10777 \begin_layout Standard
10778 A diferencia de multicolumnas, LyX aún no soporta multifilas por lo que
10779  hace falta un poco de ERT.
10780  Hay que cargar el paquete de LaTeX 
10781 \series bold
10782 multirow
10783 \series default
10784  en el preámbulo del documento con el comando
10785 \end_layout
10786
10787 \begin_layout Standard
10788
10789 \series bold
10790
10791 \backslash
10792 usepackage{multirow}
10793 \end_layout
10794
10795 \begin_layout Standard
10796 Las multifilas se crean con el comando
10797 \end_layout
10798
10799 \begin_layout Standard
10800
10801 \series bold
10802
10803 \backslash
10804 multirow{número de filas}{ancho de celda}{entrada de celda}
10805 \end_layout
10806
10807 \begin_layout Standard
10808 Para crear la siguiente tabla:
10809 \end_layout
10810
10811 \begin_layout Standard
10812 \align center
10813 \begin_inset ERT
10814 status collapsed
10815
10816 \begin_layout Standard
10817
10818
10819 \backslash
10820 renewcommand{
10821 \backslash
10822 multirowsetup}{
10823 \backslash
10824 centering}
10825 \end_layout
10826
10827 \end_inset
10828
10829
10830 \begin_inset Tabular
10831 <lyxtabular version="3" rows="3" columns="3">
10832 <features>
10833 <column alignment="center" valignment="top" leftline="true" width="0">
10834 <column alignment="center" valignment="top" leftline="true" width="0">
10835 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10836 <row topline="true">
10837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10838 \begin_inset Text
10839
10840 \begin_layout Standard
10841 a
10842 \end_layout
10843
10844 \end_inset
10845 </cell>
10846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10847 \begin_inset Text
10848
10849 \begin_layout Standard
10850 b
10851 \end_layout
10852
10853 \end_inset
10854 </cell>
10855 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10856 \begin_inset Text
10857
10858 \begin_layout Standard
10859 c
10860 \end_layout
10861
10862 \end_inset
10863 </cell>
10864 </row>
10865 <row topline="true">
10866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10867 \begin_inset Text
10868
10869 \begin_layout Standard
10870 \begin_inset ERT
10871 status collapsed
10872
10873 \begin_layout Standard
10874
10875
10876 \backslash
10877 multirow{2}{2.5cm}{
10878 \end_layout
10879
10880 \end_inset
10881
10882 entrada multifila
10883 \begin_inset ERT
10884 status collapsed
10885
10886 \begin_layout Standard
10887
10888 }
10889 \end_layout
10890
10891 \end_inset
10892
10893
10894 \end_layout
10895
10896 \end_inset
10897 </cell>
10898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10899 \begin_inset Text
10900
10901 \begin_layout Standard
10902 e
10903 \end_layout
10904
10905 \end_inset
10906 </cell>
10907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10908 \begin_inset Text
10909
10910 \begin_layout Standard
10911 f
10912 \end_layout
10913
10914 \end_inset
10915 </cell>
10916 </row>
10917 <row topline="true" bottomline="true">
10918 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10919 \begin_inset Text
10920
10921 \begin_layout Standard
10922
10923 \end_layout
10924
10925 \end_inset
10926 </cell>
10927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10928 \begin_inset Text
10929
10930 \begin_layout Standard
10931 h
10932 \end_layout
10933
10934 \end_inset
10935 </cell>
10936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10937 \begin_inset Text
10938
10939 \begin_layout Standard
10940 i
10941 \end_layout
10942
10943 \end_inset
10944 </cell>
10945 </row>
10946 </lyxtabular>
10947
10948 \end_inset
10949
10950
10951 \begin_inset ERT
10952 status collapsed
10953
10954 \begin_layout Standard
10955
10956
10957 \backslash
10958 renewcommand{
10959 \backslash
10960 multirowsetup}{
10961 \backslash
10962 raggedright}
10963 \end_layout
10964
10965 \end_inset
10966
10967
10968 \end_layout
10969
10970 \begin_layout Standard
10971 crea una tabla 3×3.
10972  Para quitar la línea sobre la última celda en la primera columna, se marca
10973  la celda como multicolumna y se quita el borde superior.
10974  Ahora se crea la multifila en la segunda fila de la primera columna insertando
10975  ahí el comando
10976 \end_layout
10977
10978 \begin_layout Standard
10979
10980 \series bold
10981
10982 \backslash
10983 multirow{2}{2.5cm}{
10984 \end_layout
10985
10986 \begin_layout Standard
10987 como ERT.
10988  Según los parámetros del comando la multifila se expande a dos filas y
10989  tiene de ancho 2.5\InsetSpace \thinspace{}
10990 cm.
10991  El contenido de la celda multifila sigue fuera del cuadro ERT y el comando
10992  finaliza con llave derecha 
10993 \series bold
10994 }
10995 \series default
10996  en otro cuadro ERT tras el texto.
10997 \end_layout
10998
10999 \begin_layout Standard
11000
11001 \series bold
11002
11003 \backslash
11004 multirow
11005 \series default
11006  alinea su contenido a la izquierda por defecto.
11007  Para cambiarlo renombra el comando 
11008 \series bold
11009
11010 \backslash
11011 multirowsetup
11012 \series default
11013  con el comando
11014 \end_layout
11015
11016 \begin_layout Standard
11017
11018 \series bold
11019
11020 \backslash
11021 renewcommand{
11022 \backslash
11023 multirowsetup}{
11024 \backslash
11025 centering}
11026 \end_layout
11027
11028 \begin_layout Standard
11029 en ERT en el preámbulo del documento.
11030  Entonces se centran todas las entradas de celdas multifila en el documento.
11031  Si solo queremos centrar en algunas tablas, se puede renombrar el comando
11032  en ERT justo antes de la tabla en lugar de en el preámbulo.
11033  Si el texto debe estar alineado a la derecha, reemplaza 
11034 \series bold
11035
11036 \backslash
11037 centering
11038 \series default
11039  por 
11040 \series bold
11041
11042 \backslash
11043 raggedleft
11044 \series default
11045 .
11046  Para volver a alineado a la izquierda usa 
11047 \series bold
11048
11049 \backslash
11050 raggedright
11051 \series default
11052 .
11053 \end_layout
11054
11055 \begin_layout Section
11056 Booktabs
11057 \begin_inset LatexCommand index
11058 name "Booktabs"
11059
11060 \end_inset
11061
11062
11063 \begin_inset LatexCommand index
11064 name "LaTeX-paquetes ! booktabs"
11065
11066 \end_inset
11067
11068  
11069 \begin_inset Note Note
11070 status collapsed
11071
11072 \begin_layout Standard
11073
11074 \family roman
11075 \series medium
11076 \size footnotesize
11077 N.
11078  del t.
11079  A la espera de la traducción que se le asigne en LyX 1.5, he dejado el original
11080  en inglés
11081 \end_layout
11082
11083 \end_inset
11084
11085
11086 \end_layout
11087
11088 \begin_layout Standard
11089 En los libros, las tablas se suelen presentar como en la Tabla \InsetSpace ~
11090
11091 \begin_inset LatexCommand ref
11092 reference "tab:Ejemplo-tabla-booktabs"
11093
11094 \end_inset
11095
11096 .
11097  En inglés se denominan "
11098 \emph on
11099 booktabs
11100 \emph default
11101 ".
11102  La próxima versión de LyX, LyX\InsetSpace ~
11103 1.5, tendrá soporte para "booktabs", véase
11104  
11105 \begin_inset ERT
11106 status collapsed
11107
11108 \begin_layout Standard
11109
11110
11111 \backslash
11112 href{http://wiki.lyx.org/LyX/NewInLyX15}{
11113 \end_layout
11114
11115 \end_inset
11116
11117 What's new in LyX\InsetSpace ~
11118 1.5
11119 \begin_inset ERT
11120 status collapsed
11121
11122 \begin_layout Standard
11123
11124 }
11125 \end_layout
11126
11127 \end_inset
11128
11129 .
11130 \end_layout
11131
11132 \begin_layout Standard
11133 \begin_inset Float table
11134 placement h
11135 wide false
11136 sideways false
11137 status open
11138
11139 \begin_layout Caption
11140 \begin_inset LatexCommand label
11141 name "tab:Ejemplo-tabla-booktabs"
11142
11143 \end_inset
11144
11145 Ejemplo de tabla booktabs
11146 \end_layout
11147
11148 \begin_layout Standard
11149 \align center
11150 \begin_inset Tabular
11151 <lyxtabular version="3" rows="9" columns="4">
11152 <features>
11153 <column alignment="center" valignment="top" width="0">
11154 <column alignment="center" valignment="top" width="0">
11155 <column alignment="center" valignment="top" width="0">
11156 <column alignment="center" valignment="top" width="0">
11157 <row>
11158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11159 \begin_inset Text
11160
11161 \begin_layout Standard
11162 \begin_inset ERT
11163 status collapsed
11164
11165 \begin_layout Standard
11166
11167
11168 \backslash
11169 toprule 
11170 \end_layout
11171
11172 \end_inset
11173
11174 System
11175 \end_layout
11176
11177 \end_inset
11178 </cell>
11179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11180 \begin_inset Text
11181
11182 \begin_layout Standard
11183 Medipix
11184 \begin_inset Formula $\,$
11185 \end_inset
11186
11187 1
11188 \end_layout
11189
11190 \end_inset
11191 </cell>
11192 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11193 \begin_inset Text
11194
11195 \begin_layout Standard
11196 Medipix
11197 \begin_inset Formula $\,$
11198 \end_inset
11199
11200 2
11201 \end_layout
11202
11203 \end_inset
11204 </cell>
11205 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11206 \begin_inset Text
11207
11208 \begin_layout Standard
11209
11210 \end_layout
11211
11212 \end_inset
11213 </cell>
11214 </row>
11215 <row>
11216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11217 \begin_inset Text
11218
11219 \begin_layout Standard
11220 \begin_inset ERT
11221 status collapsed
11222
11223 \begin_layout Standard
11224
11225
11226 \backslash
11227 cmidrule(r){2-2}
11228 \end_layout
11229
11230 \end_inset
11231
11232
11233 \begin_inset ERT
11234 status collapsed
11235
11236 \begin_layout Standard
11237
11238
11239 \backslash
11240 cmidrule(l){3-4}
11241 \end_layout
11242
11243 \end_inset
11244
11245 Detector thickness [
11246 \begin_inset ERT
11247 status collapsed
11248
11249 \begin_layout Standard
11250
11251
11252 \backslash
11253 textmu m 
11254 \end_layout
11255
11256 \end_inset
11257
11258 ]
11259 \end_layout
11260
11261 \end_inset
11262 </cell>
11263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11264 \begin_inset Text
11265
11266 \begin_layout Standard
11267 300
11268 \end_layout
11269
11270 \end_inset
11271 </cell>
11272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11273 \begin_inset Text
11274
11275 \begin_layout Standard
11276 300
11277 \end_layout
11278
11279 \end_inset
11280 </cell>
11281 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11282 \begin_inset Text
11283
11284 \begin_layout Standard
11285 700
11286 \end_layout
11287
11288 \end_inset
11289 </cell>
11290 </row>
11291 <row>
11292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11293 \begin_inset Text
11294
11295 \begin_layout Standard
11296 \begin_inset ERT
11297 status collapsed
11298
11299 \begin_layout Standard
11300
11301
11302 \backslash
11303 midrule 
11304 \end_layout
11305
11306 \end_inset
11307
11308 Edge angle [°]
11309 \end_layout
11310
11311 \end_inset
11312 </cell>
11313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11314 \begin_inset Text
11315
11316 \begin_layout Standard
11317 3.55
11318 \end_layout
11319
11320 \end_inset
11321 </cell>
11322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11323 \begin_inset Text
11324
11325 \begin_layout Standard
11326 2.71
11327 \end_layout
11328
11329 \end_inset
11330 </cell>
11331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11332 \begin_inset Text
11333
11334 \begin_layout Standard
11335 7.99
11336 \end_layout
11337
11338 \end_inset
11339 </cell>
11340 </row>
11341 <row>
11342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11343 \begin_inset Text
11344
11345 \begin_layout Standard
11346 \begin_inset ERT
11347 status collapsed
11348
11349 \begin_layout Standard
11350
11351
11352 \backslash
11353 addlinespace 
11354 \end_layout
11355
11356 \end_inset
11357
11358 Spatial resolution [
11359 \begin_inset ERT
11360 status collapsed
11361
11362 \begin_layout Standard
11363
11364
11365 \backslash
11366 textmu m 
11367 \end_layout
11368
11369 \end_inset
11370
11371 ]
11372 \end_layout
11373
11374 \end_inset
11375 </cell>
11376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11377 \begin_inset Text
11378
11379 \begin_layout Standard
11380 4.26
11381 \end_layout
11382
11383 \end_inset
11384 </cell>
11385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11386 \begin_inset Text
11387
11388 \begin_layout Standard
11389 10.17
11390 \end_layout
11391
11392 \end_inset
11393 </cell>
11394 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11395 \begin_inset Text
11396
11397 \begin_layout Standard
11398 10.56
11399 \end_layout
11400
11401 \end_inset
11402 </cell>
11403 </row>
11404 <row>
11405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11406 \begin_inset Text
11407
11408 \begin_layout Standard
11409 \begin_inset ERT
11410 status collapsed
11411
11412 \begin_layout Standard
11413
11414
11415 \backslash
11416 addlinespace 
11417 \end_layout
11418
11419 \end_inset
11420
11421 MTF at 
11422 \begin_inset Formula $f_{\mathrm{max}}$
11423 \end_inset
11424
11425
11426 \end_layout
11427
11428 \end_inset
11429 </cell>
11430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11431 \begin_inset Text
11432
11433 \begin_layout Standard
11434 0.53
11435 \end_layout
11436
11437 \end_inset
11438 </cell>
11439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11440 \begin_inset Text
11441
11442 \begin_layout Standard
11443 0.37
11444 \end_layout
11445
11446 \end_inset
11447 </cell>
11448 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11449 \begin_inset Text
11450
11451 \begin_layout Standard
11452 0.39
11453 \end_layout
11454
11455 \end_inset
11456 </cell>
11457 </row>
11458 <row>
11459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11460 \begin_inset Text
11461
11462 \begin_layout Standard
11463 \begin_inset ERT
11464 status collapsed
11465
11466 \begin_layout Standard
11467
11468
11469 \backslash
11470 addlinespace 
11471 \end_layout
11472
11473 \end_inset
11474
11475
11476 \begin_inset ERT
11477 status collapsed
11478
11479 \begin_layout Standard
11480
11481
11482 \backslash
11483 cmidrule(l{10pt}){1-1}
11484 \end_layout
11485
11486 \end_inset
11487
11488 LSF-spatial resolution
11489 \end_layout
11490
11491 \end_inset
11492 </cell>
11493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11494 \begin_inset Text
11495
11496 \begin_layout Standard
11497
11498 \end_layout
11499
11500 \end_inset
11501 </cell>
11502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11503 \begin_inset Text
11504
11505 \begin_layout Standard
11506
11507 \end_layout
11508
11509 \end_inset
11510 </cell>
11511 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11512 \begin_inset Text
11513
11514 \begin_layout Standard
11515
11516 \end_layout
11517
11518 \end_inset
11519 </cell>
11520 </row>
11521 <row>
11522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11523 \begin_inset Text
11524
11525 \begin_layout Standard
11526 in 
11527 \begin_inset ERT
11528 status collapsed
11529
11530 \begin_layout Standard
11531
11532
11533 \backslash
11534 textmu m 
11535 \end_layout
11536
11537 \end_inset
11538
11539
11540 \end_layout
11541
11542 \end_inset
11543 </cell>
11544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11545 \begin_inset Text
11546
11547 \begin_layout Standard
11548 129.7
11549 \end_layout
11550
11551 \end_inset
11552 </cell>
11553 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11554 \begin_inset Text
11555
11556 \begin_layout Standard
11557 52.75
11558 \end_layout
11559
11560 \end_inset
11561 </cell>
11562 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11563 \begin_inset Text
11564
11565 \begin_layout Standard
11566 50.78
11567 \end_layout
11568
11569 \end_inset
11570 </cell>
11571 </row>
11572 <row>
11573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11574 \begin_inset Text
11575
11576 \begin_layout Standard
11577 in % of pixel size
11578 \end_layout
11579
11580 \end_inset
11581 </cell>
11582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11583 \begin_inset Text
11584
11585 \begin_layout Standard
11586 76.3
11587 \end_layout
11588
11589 \end_inset
11590 </cell>
11591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11592 \begin_inset Text
11593
11594 \begin_layout Standard
11595 95.9
11596 \end_layout
11597
11598 \end_inset
11599 </cell>
11600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11601 \begin_inset Text
11602
11603 \begin_layout Standard
11604 92.3
11605 \end_layout
11606
11607 \end_inset
11608 </cell>
11609 </row>
11610 <row>
11611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11612 \begin_inset Text
11613
11614 \begin_layout Standard
11615 \begin_inset ERT
11616 status collapsed
11617
11618 \begin_layout Standard
11619
11620
11621 \backslash
11622 bottomrule 
11623 \end_layout
11624
11625 \end_inset
11626
11627
11628 \end_layout
11629
11630 \end_inset
11631 </cell>
11632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11633 \begin_inset Text
11634
11635 \begin_layout Standard
11636
11637 \end_layout
11638
11639 \end_inset
11640 </cell>
11641 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11642 \begin_inset Text
11643
11644 \begin_layout Standard
11645
11646 \end_layout
11647
11648 \end_inset
11649 </cell>
11650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11651 \begin_inset Text
11652
11653 \begin_layout Standard
11654
11655 \end_layout
11656
11657 \end_inset
11658 </cell>
11659 </row>
11660 </lyxtabular>
11661
11662 \end_inset
11663
11664
11665 \end_layout
11666
11667 \end_inset
11668
11669
11670 \end_layout
11671
11672 \begin_layout Standard
11673 Este capítulo describe la creación de tablas "booktabs" en LyX\InsetSpace ~
11674 1.4.
11675 \end_layout
11676
11677 \begin_layout Subsection
11678 Comandos Fundamentales
11679 \begin_inset LatexCommand index
11680 name "Booktabs ! Comandos Fundamentales"
11681
11682 \end_inset
11683
11684
11685 \end_layout
11686
11687 \begin_layout Standard
11688 Para poder usar "booktabs" hay que cargar el paquete de LaTeX 
11689 \series bold
11690 booktabs
11691 \series default
11692  en el preámbulo del documento con la línea
11693 \begin_inset LatexCommand index
11694 name "LaTeX-paquetes ! booktabs"
11695
11696 \end_inset
11697
11698
11699 \end_layout
11700
11701 \begin_layout Standard
11702
11703 \series bold
11704
11705 \backslash
11706 usepackage{booktabs}
11707 \end_layout
11708
11709 \begin_layout Standard
11710 \begin_inset VSpace medskip
11711 \end_inset
11712
11713
11714 \end_layout
11715
11716 \begin_layout Standard
11717 La primera línea de una tabla booktabs se crea con el comando
11718 \end_layout
11719
11720 \begin_layout Standard
11721
11722 \series bold
11723
11724 \backslash
11725 toprule[ancho]
11726 \end_layout
11727
11728 \begin_layout Standard
11729 que se inserta como ERT en la primera celda como primera entrada.
11730  La anchura opcional especifica el grosor de línea; la predeterminada es
11731  0.08\InsetSpace \thinspace{}
11732 em.
11733  Puedes usar todas las unidades listadas en el apéndice \InsetSpace ~
11734
11735 \begin_inset LatexCommand ref
11736 reference "cha:Unidades-disponibles-en"
11737
11738 \end_inset
11739
11740  para fijar el ancho.
11741 \newline
11742 ¡Observa que todos los comandos ERT deben acabar con
11743  un espacio si les sigue texto!
11744 \end_layout
11745
11746 \begin_layout Standard
11747 La última línea de una tabla booktabs se crea con el comando ERT
11748 \end_layout
11749
11750 \begin_layout Standard
11751
11752 \series bold
11753
11754 \backslash
11755 bottomrule[ancho]
11756 \end_layout
11757
11758 \begin_layout Standard
11759 en la primera celda de la última fila.
11760  La última fila es solo para este comoando y no debería tener ningún otro
11761  contenido.
11762  La anchura predeterminada es la misma que para 
11763 \series bold
11764
11765 \backslash
11766 toprule
11767 \series default
11768 .
11769 \end_layout
11770
11771 \begin_layout Standard
11772 Las líneas horizontales que se extienden sobre todas las columnas se crean
11773  con el comando ERT
11774 \end_layout
11775
11776 \begin_layout Standard
11777
11778 \series bold
11779
11780 \backslash
11781 midrule[ancho]
11782 \end_layout
11783
11784 \begin_layout Standard
11785 La anchura predeterminada es 0.05\InsetSpace \thinspace{}
11786 em.
11787 \end_layout
11788
11789 \begin_layout Standard
11790 Las líneas que no se extienden a todas las columnas se crean con el comando
11791  ERT
11792 \end_layout
11793
11794 \begin_layout Standard
11795
11796 \series bold
11797
11798 \backslash
11799 cmidrule[ancho](recorte){inicol-fincol}
11800 \end_layout
11801
11802 \begin_layout Standard
11803 El grosor predeterminado es 0.03\InsetSpace \thinspace{}
11804 em; inicol es el número de columna donde
11805  empieza la línea y fincol el número de columna donde acaba; fincol debe
11806  ser siempre especificado incluso cuando la línea se extiende solo una columna.
11807  El parámetro opcional recorte debe ser 
11808 \emph on
11809 l{recorte}
11810 \emph default
11811  o 
11812 \emph on
11813 r{recorte}
11814 \emph default
11815 , donde recorte también es opcional.
11816  Por ejemplo, el parámetro 
11817 \emph on
11818 l{2pt}
11819 \emph default
11820  significa que la línea se recorta 2 pt por su izquierda.
11821  Si no se especifica el tamaño del recorte, las líneas se recortan por defecto
11822  en 0.5\InsetSpace \thinspace{}
11823 em.
11824 \end_layout
11825
11826 \begin_layout Standard
11827 Los comandos 
11828 \series bold
11829
11830 \backslash
11831 cmidrule
11832 \series default
11833  y 
11834 \series bold
11835
11836 \backslash
11837 midrule
11838 \series default
11839  deben insertarse como primera entrada de la primera celda de una fila .
11840  Las líneas se crean sobre la fila.
11841 \end_layout
11842
11843 \begin_layout Standard
11844 \begin_inset VSpace bigskip
11845 \end_inset
11846
11847 La Tabla\InsetSpace ~
11848
11849 \begin_inset LatexCommand ref
11850 reference "tab:Ejemplo-tabla-booktabs"
11851
11852 \end_inset
11853
11854  se ha creado con los comandos
11855 \end_layout
11856
11857 \begin_layout Standard
11858
11859 \series bold
11860
11861 \backslash
11862 cmidrule(r){2-2}
11863 \backslash
11864 cmidrule(l){3-4}
11865 \end_layout
11866
11867 \begin_layout Standard
11868 en la segunda fila, 
11869 \series bold
11870
11871 \backslash
11872 midrule
11873 \series default
11874  en la tercera, y
11875 \end_layout
11876
11877 \begin_layout Standard
11878
11879 \series bold
11880
11881 \backslash
11882 cmidrule(l{10pt}){1-1}
11883 \end_layout
11884
11885 \begin_layout Standard
11886 en la sexta fila.
11887 \end_layout
11888
11889 \begin_layout Subsection
11890 Comandos Especiales
11891 \begin_inset LatexCommand index
11892 name "Booktabs ! Comandos Especiales"
11893
11894 \end_inset
11895
11896
11897 \end_layout
11898
11899 \begin_layout Standard
11900 Para separar filas verticalmente se puede emplear el siguiente comando ERT
11901 \end_layout
11902
11903 \begin_layout Standard
11904
11905 \series bold
11906
11907 \backslash
11908 addlinespace[ancho]
11909 \end_layout
11910
11911 \begin_layout Standard
11912 El ancho predeterminado es 0.5\InsetSpace \thinspace{}
11913 em.
11914  En la Tabla\InsetSpace ~
11915
11916 \begin_inset LatexCommand ref
11917 reference "tab:Ejemplo-tabla-booktabs"
11918
11919 \end_inset
11920
11921  se ha insertado 
11922 \series bold
11923
11924 \backslash
11925 addlinespace
11926 \series default
11927  en la primera celda de algunas filas.
11928  El espacio se crea sobre las filas en las que se inserta el comando.
11929 \end_layout
11930
11931 \begin_layout Standard
11932 \begin_inset VSpace medskip
11933 \end_inset
11934
11935
11936 \end_layout
11937
11938 \begin_layout Standard
11939 Quizá quieras superponer líneas 
11940 \series bold
11941
11942 \backslash
11943 cmidrules
11944 \series default
11945  como en la Tabla\InsetSpace ~
11946
11947 \begin_inset LatexCommand ref
11948 reference "tab:Tabla-booktabs-especial"
11949
11950 \end_inset
11951
11952 .
11953  Esto se consigue con el comando ERT
11954 \end_layout
11955
11956 \begin_layout Standard
11957
11958 \series bold
11959
11960 \backslash
11961 moremidrule
11962 \series default
11963 s
11964 \end_layout
11965
11966 \begin_layout Standard
11967 El comando que se ha utilizado para la segunda fila de la Tabla\InsetSpace ~
11968
11969 \begin_inset LatexCommand ref
11970 reference "tab:Tabla-booktabs-especial"
11971
11972 \end_inset
11973
11974  es
11975 \end_layout
11976
11977 \begin_layout Standard
11978
11979 \series bold
11980
11981 \backslash
11982 cmidrule(r){2-2}
11983 \backslash
11984 cmidrule(l){3-4}
11985 \backslash
11986 moremidrules
11987 \backslash
11988 cmidrule{2-4}
11989 \end_layout
11990
11991 \begin_layout Standard
11992 El comando para la sexta fila es
11993 \end_layout
11994
11995 \begin_layout Standard
11996
11997 \series bold
11998
11999 \backslash
12000 midrule
12001 \backslash
12002 moremidrules
12003 \backslash
12004 cmidrule{3-4}
12005 \end_layout
12006
12007 \begin_layout Standard
12008 \begin_inset VSpace bigskip
12009 \end_inset
12010
12011
12012 \end_layout
12013
12014 \begin_layout Standard
12015 El espacio alrededor de cada línea en una tabla "booktabs" puede especificarse
12016  en el preámbulo del documento.
12017  Para más información al respecto, véase el manual del paquete 
12018 \begin_inset LatexCommand cite
12019 key "booktabs"
12020
12021 \end_inset
12022
12023 .
12024  Si de todas formas no te satisface el espaciado, puedes usar el siguiente
12025  comando para dibujar líneas que se extienden sobre todas las columnas
12026 \end_layout
12027
12028 \begin_layout Standard
12029
12030 \series bold
12031
12032 \backslash
12033 specialrule{anchura}{espacio superior}{espacio inferior}
12034 \end_layout
12035
12036 \begin_layout Standard
12037 \begin_inset Float table
12038 placement h
12039 wide false
12040 sideways false
12041 status open
12042
12043 \begin_layout Caption
12044 \begin_inset LatexCommand label
12045 name "tab:Tabla-booktabs-especial"
12046
12047 \end_inset
12048
12049 Tabla booktabs especial
12050 \end_layout
12051
12052 \begin_layout Standard
12053 \align center
12054 \begin_inset Tabular
12055 <lyxtabular version="3" rows="9" columns="4">
12056 <features>
12057 <column alignment="center" valignment="top" width="0">
12058 <column alignment="center" valignment="top" width="0">
12059 <column alignment="center" valignment="top" width="0">
12060 <column alignment="center" valignment="top" width="0">
12061 <row>
12062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12063 \begin_inset Text
12064
12065 \begin_layout Standard
12066 \begin_inset ERT
12067 status collapsed
12068
12069 \begin_layout Standard
12070
12071
12072 \backslash
12073 toprule 
12074 \end_layout
12075
12076 \end_inset
12077
12078 System
12079 \end_layout
12080
12081 \end_inset
12082 </cell>
12083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12084 \begin_inset Text
12085
12086 \begin_layout Standard
12087 Medipix
12088 \begin_inset Formula $\,$
12089 \end_inset
12090
12091 1
12092 \end_layout
12093
12094 \end_inset
12095 </cell>
12096 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12097 \begin_inset Text
12098
12099 \begin_layout Standard
12100 Medipix
12101 \begin_inset Formula $\,$
12102 \end_inset
12103
12104 2
12105 \end_layout
12106
12107 \end_inset
12108 </cell>
12109 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12110 \begin_inset Text
12111
12112 \begin_layout Standard
12113
12114 \end_layout
12115
12116 \end_inset
12117 </cell>
12118 </row>
12119 <row>
12120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12121 \begin_inset Text
12122
12123 \begin_layout Standard
12124 \begin_inset ERT
12125 status collapsed
12126
12127 \begin_layout Standard
12128
12129
12130 \backslash
12131 cmidrule(r){2-2}
12132 \end_layout
12133
12134 \end_inset
12135
12136
12137 \begin_inset ERT
12138 status collapsed
12139
12140 \begin_layout Standard
12141
12142
12143 \backslash
12144 cmidrule(l){3-4}
12145 \end_layout
12146
12147 \end_inset
12148
12149
12150 \begin_inset ERT
12151 status collapsed
12152
12153 \begin_layout Standard
12154
12155
12156 \backslash
12157 morecmidrules 
12158 \end_layout
12159
12160 \end_inset
12161
12162
12163 \begin_inset ERT
12164 status collapsed
12165
12166 \begin_layout Standard
12167
12168
12169 \backslash
12170 cmidrule{2-4}
12171 \end_layout
12172
12173 \end_inset
12174
12175 Detector thickness [
12176 \begin_inset ERT
12177 status collapsed
12178
12179 \begin_layout Standard
12180
12181
12182 \backslash
12183 textmu m 
12184 \end_layout
12185
12186 \end_inset
12187
12188 ]
12189 \end_layout
12190
12191 \end_inset
12192 </cell>
12193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12194 \begin_inset Text
12195
12196 \begin_layout Standard
12197 300
12198 \end_layout
12199
12200 \end_inset
12201 </cell>
12202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12203 \begin_inset Text
12204
12205 \begin_layout Standard
12206 300
12207 \end_layout
12208
12209 \end_inset
12210 </cell>
12211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12212 \begin_inset Text
12213
12214 \begin_layout Standard
12215 700
12216 \end_layout
12217
12218 \end_inset
12219 </cell>
12220 </row>
12221 <row>
12222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12223 \begin_inset Text
12224
12225 \begin_layout Standard
12226 \begin_inset ERT
12227 status collapsed
12228
12229 \begin_layout Standard
12230
12231
12232 \backslash
12233 midrule 
12234 \end_layout
12235
12236 \end_inset
12237
12238 Edge angle [°]
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 3.55
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 2.71
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 7.99
12266 \end_layout
12267
12268 \end_inset
12269 </cell>
12270 </row>
12271 <row>
12272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12273 \begin_inset Text
12274
12275 \begin_layout Standard
12276 \begin_inset ERT
12277 status collapsed
12278
12279 \begin_layout Standard
12280
12281
12282 \backslash
12283 addlinespace 
12284 \end_layout
12285
12286 \end_inset
12287
12288 Spatial resolution [
12289 \begin_inset ERT
12290 status collapsed
12291
12292 \begin_layout Standard
12293
12294
12295 \backslash
12296 textmu m 
12297 \end_layout
12298
12299 \end_inset
12300
12301 ]
12302 \end_layout
12303
12304 \end_inset
12305 </cell>
12306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12307 \begin_inset Text
12308
12309 \begin_layout Standard
12310 4.26
12311 \end_layout
12312
12313 \end_inset
12314 </cell>
12315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12316 \begin_inset Text
12317
12318 \begin_layout Standard
12319 10.17
12320 \end_layout
12321
12322 \end_inset
12323 </cell>
12324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12325 \begin_inset Text
12326
12327 \begin_layout Standard
12328 10.56
12329 \end_layout
12330
12331 \end_inset
12332 </cell>
12333 </row>
12334 <row>
12335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12336 \begin_inset Text
12337
12338 \begin_layout Standard
12339 \begin_inset ERT
12340 status collapsed
12341
12342 \begin_layout Standard
12343
12344
12345 \backslash
12346 addlinespace 
12347 \end_layout
12348
12349 \end_inset
12350
12351 MTF at 
12352 \begin_inset Formula $f_{\mathrm{max}}$
12353 \end_inset
12354
12355
12356 \end_layout
12357
12358 \end_inset
12359 </cell>
12360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12361 \begin_inset Text
12362
12363 \begin_layout Standard
12364 0.53
12365 \end_layout
12366
12367 \end_inset
12368 </cell>
12369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12370 \begin_inset Text
12371
12372 \begin_layout Standard
12373 0.37
12374 \end_layout
12375
12376 \end_inset
12377 </cell>
12378 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12379 \begin_inset Text
12380
12381 \begin_layout Standard
12382 0.39
12383 \end_layout
12384
12385 \end_inset
12386 </cell>
12387 </row>
12388 <row>
12389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12390 \begin_inset Text
12391
12392 \begin_layout Standard
12393 \begin_inset ERT
12394 status collapsed
12395
12396 \begin_layout Standard
12397
12398
12399 \backslash
12400 midrule
12401 \end_layout
12402
12403 \end_inset
12404
12405
12406 \begin_inset ERT
12407 status collapsed
12408
12409 \begin_layout Standard
12410
12411
12412 \backslash
12413 morecmidrules 
12414 \end_layout
12415
12416 \end_inset
12417
12418
12419 \begin_inset ERT
12420 status collapsed
12421
12422 \begin_layout Standard
12423
12424
12425 \backslash
12426 cmidrule{3-4}
12427 \end_layout
12428
12429 \end_inset
12430
12431 LSF-spatial resolution
12432 \end_layout
12433
12434 \end_inset
12435 </cell>
12436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12437 \begin_inset Text
12438
12439 \begin_layout Standard
12440
12441 \end_layout
12442
12443 \end_inset
12444 </cell>
12445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12446 \begin_inset Text
12447
12448 \begin_layout Standard
12449
12450 \end_layout
12451
12452 \end_inset
12453 </cell>
12454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12455 \begin_inset Text
12456
12457 \begin_layout Standard
12458
12459 \end_layout
12460
12461 \end_inset
12462 </cell>
12463 </row>
12464 <row>
12465 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12466 \begin_inset Text
12467
12468 \begin_layout Standard
12469 in 
12470 \begin_inset ERT
12471 status collapsed
12472
12473 \begin_layout Standard
12474
12475
12476 \backslash
12477 textmu m 
12478 \end_layout
12479
12480 \end_inset
12481
12482
12483 \end_layout
12484
12485 \end_inset
12486 </cell>
12487 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12488 \begin_inset Text
12489
12490 \begin_layout Standard
12491 129.7
12492 \end_layout
12493
12494 \end_inset
12495 </cell>
12496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12497 \begin_inset Text
12498
12499 \begin_layout Standard
12500 52.75
12501 \end_layout
12502
12503 \end_inset
12504 </cell>
12505 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12506 \begin_inset Text
12507
12508 \begin_layout Standard
12509 50.78
12510 \end_layout
12511
12512 \end_inset
12513 </cell>
12514 </row>
12515 <row>
12516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12517 \begin_inset Text
12518
12519 \begin_layout Standard
12520 in % of pixel size
12521 \end_layout
12522
12523 \end_inset
12524 </cell>
12525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12526 \begin_inset Text
12527
12528 \begin_layout Standard
12529 76.3
12530 \end_layout
12531
12532 \end_inset
12533 </cell>
12534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12535 \begin_inset Text
12536
12537 \begin_layout Standard
12538 95.9
12539 \end_layout
12540
12541 \end_inset
12542 </cell>
12543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12544 \begin_inset Text
12545
12546 \begin_layout Standard
12547 92.3
12548 \end_layout
12549
12550 \end_inset
12551 </cell>
12552 </row>
12553 <row>
12554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12555 \begin_inset Text
12556
12557 \begin_layout Standard
12558 \begin_inset ERT
12559 status collapsed
12560
12561 \begin_layout Standard
12562
12563
12564 \backslash
12565 bottomrule 
12566 \end_layout
12567
12568 \end_inset
12569
12570
12571 \end_layout
12572
12573 \end_inset
12574 </cell>
12575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12576 \begin_inset Text
12577
12578 \begin_layout Standard
12579
12580 \end_layout
12581
12582 \end_inset
12583 </cell>
12584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12585 \begin_inset Text
12586
12587 \begin_layout Standard
12588
12589 \end_layout
12590
12591 \end_inset
12592 </cell>
12593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12594 \begin_inset Text
12595
12596 \begin_layout Standard
12597
12598 \end_layout
12599
12600 \end_inset
12601 </cell>
12602 </row>
12603 </lyxtabular>
12604
12605 \end_inset
12606
12607
12608 \end_layout
12609
12610 \end_inset
12611
12612
12613 \end_layout
12614
12615 \begin_layout Section
12616 Tablas Coloreadas
12617 \begin_inset LatexCommand label
12618 name "sec:Tablas-Coloreadas"
12619
12620 \end_inset
12621
12622
12623 \begin_inset LatexCommand index
12624 name "Tablas ! Coloreadas"
12625
12626 \end_inset
12627
12628
12629 \end_layout
12630
12631 \begin_layout Subsection
12632 Celdas Coloreadas
12633 \begin_inset LatexCommand index
12634 name "Tablas Coloreadas ! Celdas"
12635
12636 \end_inset
12637
12638
12639 \begin_inset LatexCommand index
12640 name "Color ! en Celdas de Tablas"
12641
12642 \end_inset
12643
12644
12645 \end_layout
12646
12647 \begin_layout Standard
12648 \begin_inset Float table
12649 placement h
12650 wide false
12651 sideways false
12652 status open
12653
12654 \begin_layout Caption
12655 \begin_inset LatexCommand label
12656 name "tab:Tabla-coloreada-sin"
12657
12658 \end_inset
12659
12660 Tabla coloreada sin usar el paquete 
12661 \series bold
12662 colortbl
12663 \series default
12664
12665 \begin_inset OptArg
12666 status collapsed
12667
12668 \begin_layout Standard
12669 Tabla sin colortbl
12670 \end_layout
12671
12672 \end_inset
12673
12674
12675 \end_layout
12676
12677 \begin_layout Standard
12678 \align center
12679 \begin_inset Tabular
12680 <lyxtabular version="3" rows="3" columns="3">
12681 <features>
12682 <column alignment="center" valignment="top" leftline="true" width="0">
12683 <column alignment="center" valignment="top" leftline="true" width="0">
12684 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12685 <row topline="true">
12686 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12687 \begin_inset Text
12688
12689 \begin_layout Standard
12690
12691 \color green
12692 a
12693 \end_layout
12694
12695 \end_inset
12696 </cell>
12697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12698 \begin_inset Text
12699
12700 \begin_layout Standard
12701
12702 \color red
12703 b
12704 \end_layout
12705
12706 \end_inset
12707 </cell>
12708 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12709 \begin_inset Text
12710
12711 \begin_layout Standard
12712
12713 \color red
12714 c
12715 \end_layout
12716
12717 \end_inset
12718 </cell>
12719 </row>
12720 <row topline="true">
12721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12722 \begin_inset Text
12723
12724 \begin_layout Standard
12725
12726 \color green
12727 d
12728 \end_layout
12729
12730 \end_inset
12731 </cell>
12732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12733 \begin_inset Text
12734
12735 \begin_layout Standard
12736
12737 \color blue
12738 e
12739 \end_layout
12740
12741 \end_inset
12742 </cell>
12743 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12744 \begin_inset Text
12745
12746 \begin_layout Standard
12747
12748 \color blue
12749 f
12750 \end_layout
12751
12752 \end_inset
12753 </cell>
12754 </row>
12755 <row topline="true" bottomline="true">
12756 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12757 \begin_inset Text
12758
12759 \begin_layout Standard
12760
12761 \color green
12762 g
12763 \end_layout
12764
12765 \end_inset
12766 </cell>
12767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12768 \begin_inset Text
12769
12770 \begin_layout Standard
12771
12772 \color blue
12773 h
12774 \end_layout
12775
12776 \end_inset
12777 </cell>
12778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12779 \begin_inset Text
12780
12781 \begin_layout Standard
12782
12783 \color blue
12784 i
12785 \end_layout
12786
12787 \end_inset
12788 </cell>
12789 </row>
12790 </lyxtabular>
12791
12792 \end_inset
12793
12794
12795 \end_layout
12796
12797 \end_inset
12798
12799
12800 \end_layout
12801
12802 \begin_layout Standard
12803 Si solo necesitas color en el texto, marca las celdas y elige un color en
12804  el menú 
12805 \family sans
12806 Editar\SpecialChar \menuseparator
12807 Estilo\InsetSpace ~
12808 del\InsetSpace ~
12809 Texto
12810 \family default
12811 .
12812  Esto se ha hecho en la Tabla\InsetSpace ~
12813
12814 \begin_inset LatexCommand ref
12815 reference "tab:Tabla-coloreada-sin"
12816
12817 \end_inset
12818
12819 .
12820  En cualquier otro caso hay que usar el paquete LaTeX 
12821 \series bold
12822 colortbl
12823 \series default
12824 .
12825 \begin_inset LatexCommand index
12826 name "LaTeX-paquetes ! colortbl"
12827
12828 \end_inset
12829
12830
12831 \end_layout
12832
12833 \begin_layout Standard
12834 Para crear tablas coloreadas, 
12835 \series bold
12836 colortbl
12837 \series default
12838  debe cargarse en el preámbulo con la línea
12839 \end_layout
12840
12841 \begin_layout Standard
12842
12843 \series bold
12844
12845 \backslash
12846 usepackage{colortbl}
12847 \end_layout
12848
12849 \begin_layout Standard
12850 El color de una columna se define con el comando
12851 \end_layout
12852
12853 \begin_layout Standard
12854
12855 \series bold
12856
12857 \backslash
12858 columncolor{nombre del color}
12859 \end_layout
12860
12861 \begin_layout Standard
12862 dentro del comando 
12863 \series bold
12864 >{ }
12865 \series default
12866 .
12867  Más sobre el comando 
12868 \series bold
12869 >{}
12870 \series default
12871  se explica en la sección\InsetSpace ~
12872
12873 \begin_inset LatexCommand ref
12874 reference "sub:Cálculos-en-Multicolumnas"
12875
12876 \end_inset
12877
12878 .
12879 \end_layout
12880
12881 \begin_layout Standard
12882 Los siguientes nombres de color están predefinidos:
12883 \end_layout
12884
12885 \begin_layout Standard
12886
12887 \family sans
12888 red
12889 \family default
12890
12891 \family sans
12892 green
12893 \family default
12894 ,
12895 \family sans
12896  yellow, blue
12897 \family default
12898 ,
12899 \family sans
12900  cyan
12901 \family default
12902 \series bold
12903 ,
12904 \family sans
12905 \series default
12906  magenta, black
12907 \family default
12908 ,
12909 \family sans
12910  white
12911 \end_layout
12912
12913 \begin_layout Standard
12914 \begin_inset VSpace medskip
12915 \end_inset
12916
12917
12918 \end_layout
12919
12920 \begin_layout Standard
12921 Puedes definir tus propios colores con el comando
12922 \end_layout
12923
12924 \begin_layout Standard
12925
12926 \series bold
12927
12928 \backslash
12929 definecolor{nombre del color}{modelo de color}{valores de color}
12930 \end_layout
12931
12932 \begin_layout Standard
12933 El modelo de color puede ser
12934 \end_layout
12935
12936 \begin_layout Labeling
12937 \labelwidthstring 00.00.0000
12938 cmyk: cyan, magenta, yellow, black
12939 \end_layout
12940
12941 \begin_layout Labeling
12942 \labelwidthstring 00.00.0000
12943 rgb: red, green, blue
12944 \end_layout
12945
12946 \begin_layout Labeling
12947 \labelwidthstring 00.00.0000
12948 gray gray
12949 \end_layout
12950
12951 \begin_layout Standard
12952 y los valores de color son números separados por comas entre 0 y 1 que describen
12953  el factor para el color correspondiente del modelo de color.
12954 \end_layout
12955
12956 \begin_layout Standard
12957 Por ejemplo, puedes definir el color "
12958 \emph on
12959 verde oscuro
12960 \emph default
12961 " en el preámbulo con
12962 \end_layout
12963
12964 \begin_layout Standard
12965
12966 \series bold
12967
12968 \backslash
12969 definecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
12970 \end_layout
12971
12972 \begin_layout Standard
12973 y el color "
12974 \emph on
12975 gris claro
12976 \emph default
12977 " con
12978 \end_layout
12979
12980 \begin_layout Standard
12981
12982 \series bold
12983
12984 \backslash
12985 definecolor{grisclaro}{gray}{0.8}
12986 \end_layout
12987
12988 \begin_layout Standard
12989 \begin_inset VSpace medskip
12990 \end_inset
12991
12992
12993 \end_layout
12994
12995 \begin_layout Standard
12996 Las líneas se colorean con el comando
12997 \end_layout
12998
12999 \begin_layout Standard
13000
13001 \series bold
13002
13003 \backslash
13004 rowcolor{nombre del color}
13005 \end_layout
13006
13007 \begin_layout Standard
13008 y las celdas se colorean con el comando
13009 \end_layout
13010
13011 \begin_layout Standard
13012
13013 \series bold
13014
13015 \backslash
13016 cellcolor{nombre del color}
13017 \end_layout
13018
13019 \begin_layout Standard
13020 Ambos comandos se insertan al principio de una celda como ERT.
13021 \end_layout
13022
13023 \begin_layout Standard
13024 Para colorear caracteres en la tabla marca las celdas y usa el menú 
13025 \family sans
13026 Editar\SpecialChar \menuseparator
13027 Estilo\InsetSpace ~
13028 del\InsetSpace ~
13029 Texto
13030 \family default
13031 .
13032  Si una celda contiene ERT marca solo los caracteres, si no el ERT con color
13033  puede ocasionar errores de LaTeX.
13034 \end_layout
13035
13036 \begin_layout Standard
13037 \begin_inset VSpace bigskip
13038 \end_inset
13039
13040
13041 \end_layout
13042
13043 \begin_layout Standard
13044 Para crear la Tabla\InsetSpace ~
13045
13046 \begin_inset LatexCommand ref
13047 reference "tab:Tabla-coloreada-con"
13048
13049 \end_inset
13050
13051  haz lo siguiente: El color de la primera columna debería ser 
13052 \emph on
13053 verde oscuro
13054 \emph default
13055 .
13056  Así pues
13057 \end_layout
13058
13059 \begin_layout Standard
13060
13061 \series bold
13062 >{
13063 \backslash
13064 columncolor{verdeoscuro}
13065 \backslash
13066 centering}c
13067 \end_layout
13068
13069 \begin_layout Standard
13070 como argumento LaTeX para esta columna.
13071  La primera fila debería ser azul, por tanto el comando ERT
13072 \end_layout
13073
13074 \begin_layout Standard
13075
13076 \series bold
13077
13078 \backslash
13079 rowcolow{cyan}
13080 \end_layout
13081
13082 \begin_layout Standard
13083 se inserta en la primera celda de esta fila.
13084  Observa que esto sobreescribe el color de la columna para la primera celda.
13085  La última celda de la última fila se colorea magenta insertando el comando
13086  ERT
13087 \end_layout
13088
13089 \begin_layout Standard
13090
13091 \series bold
13092
13093 \backslash
13094 cellcolor{magenta}
13095 \end_layout
13096
13097 \begin_layout Standard
13098 Ahora podrían colorearse los caracteres usando el menú 
13099 \family sans
13100 Editar\SpecialChar \menuseparator
13101 Estilo\InsetSpace ~
13102 del\InsetSpace ~
13103 Texto
13104 \family default
13105 .
13106 \end_layout
13107
13108 \begin_layout Standard
13109 \begin_inset Float table
13110 placement h
13111 wide false
13112 sideways false
13113 status open
13114
13115 \begin_layout Caption
13116 \begin_inset LatexCommand label
13117 name "tab:Tabla-coloreada-con"
13118
13119 \end_inset
13120
13121 Tabla coloreada usando el paquete 
13122 \series bold
13123 colortbl
13124 \series default
13125
13126 \begin_inset OptArg
13127 status collapsed
13128
13129 \begin_layout Standard
13130 Tabla con colortbl
13131 \end_layout
13132
13133 \end_inset
13134
13135
13136 \end_layout
13137
13138 \begin_layout Standard
13139 \align center
13140 \begin_inset Tabular
13141 <lyxtabular version="3" rows="3" columns="3">
13142 <features>
13143 <column alignment="center" valignment="top" leftline="true" width="0" special=">{\columncolor{verdeoscuro}\centering}c">
13144 <column alignment="center" valignment="top" width="0">
13145 <column alignment="center" valignment="top" width="0">
13146 <row>
13147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13148 \begin_inset Text
13149
13150 \begin_layout Standard
13151 \begin_inset ERT
13152 status collapsed
13153
13154 \begin_layout Standard
13155
13156
13157 \backslash
13158 rowcolor{cyan}
13159 \end_layout
13160
13161 \end_inset
13162
13163
13164 \color magenta
13165 a
13166 \end_layout
13167
13168 \end_inset
13169 </cell>
13170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13171 \begin_inset Text
13172
13173 \begin_layout Standard
13174
13175 \color red
13176 b
13177 \end_layout
13178
13179 \end_inset
13180 </cell>
13181 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13182 \begin_inset Text
13183
13184 \begin_layout Standard
13185
13186 \color red
13187 c
13188 \end_layout
13189
13190 \end_inset
13191 </cell>
13192 </row>
13193 <row>
13194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13195 \begin_inset Text
13196
13197 \begin_layout Standard
13198
13199 \color yellow
13200 d
13201 \end_layout
13202
13203 \end_inset
13204 </cell>
13205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13206 \begin_inset Text
13207
13208 \begin_layout Standard
13209
13210 \color blue
13211 e
13212 \end_layout
13213
13214 \end_inset
13215 </cell>
13216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13217 \begin_inset Text
13218
13219 \begin_layout Standard
13220
13221 \color blue
13222 f
13223 \end_layout
13224
13225 \end_inset
13226 </cell>
13227 </row>
13228 <row>
13229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13230 \begin_inset Text
13231
13232 \begin_layout Standard
13233
13234 \color yellow
13235 g
13236 \end_layout
13237
13238 \end_inset
13239 </cell>
13240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13241 \begin_inset Text
13242
13243 \begin_layout Standard
13244
13245 \color blue
13246 h
13247 \end_layout
13248
13249 \end_inset
13250 </cell>
13251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13252 \begin_inset Text
13253
13254 \begin_layout Standard
13255 \begin_inset ERT
13256 status collapsed
13257
13258 \begin_layout Standard
13259
13260
13261 \backslash
13262 cellcolor{magenta}
13263 \end_layout
13264
13265 \end_inset
13266
13267
13268 \color green
13269 i
13270 \end_layout
13271
13272 \end_inset
13273 </cell>
13274 </row>
13275 </lyxtabular>
13276
13277 \end_inset
13278
13279
13280 \end_layout
13281
13282 \end_inset
13283
13284
13285 \end_layout
13286
13287 \begin_layout Subsection
13288 Líneas coloreadas
13289 \begin_inset LatexCommand index
13290 name "Tablas Coloreadas ! Líneas"
13291
13292 \end_inset
13293
13294
13295 \begin_inset LatexCommand index
13296 name "Color ! en Líneas de Tabla"
13297
13298 \end_inset
13299
13300
13301 \end_layout
13302
13303 \begin_layout Standard
13304 Como se describe en la sección\InsetSpace ~
13305
13306 \begin_inset LatexCommand ref
13307 reference "sub:Grosor-de-Líneas"
13308
13309 \end_inset
13310
13311 , el grosor para todas las líneas en una tabla puede ajustarse con el comando
13312  
13313 \series bold
13314
13315 \backslash
13316 arrayrulewidth
13317 \series default
13318 .
13319  Se ha puesto 1.5\InsetSpace \thinspace{}
13320 pt para todas las tablas de esta sección.
13321 \begin_inset ERT
13322 status collapsed
13323
13324 \begin_layout Standard
13325
13326
13327 \backslash
13328 setlength{
13329 \backslash
13330 arrayrulewidth}{1.5pt}
13331 \end_layout
13332
13333 \end_inset
13334
13335
13336 \end_layout
13337
13338 \begin_layout Standard
13339 Por ejemplo, para colorear todas las líneas verticales en verde, crea en
13340  el preámbulo del documento el siguiente formato de columna, de acuerdo
13341  a lo descrito en la sección\InsetSpace ~
13342
13343 \begin_inset LatexCommand ref
13344 reference "sub:Formato-Personalizado"
13345
13346 \end_inset
13347
13348 :
13349 \end_layout
13350
13351 \begin_layout Standard
13352
13353 \series bold
13354
13355 \backslash
13356 newcolumntype{W}{!{
13357 \backslash
13358 color{green}
13359 \backslash
13360 vline}}
13361 \end_layout
13362
13363 \begin_layout Standard
13364 Para la Tabla\InsetSpace ~
13365
13366 \begin_inset LatexCommand ref
13367 reference "tab:Tabla-con-verticales-coloreadas"
13368
13369 \end_inset
13370
13371  se usó el argumento LaTeX
13372 \end_layout
13373
13374 \begin_layout Standard
13375
13376 \series bold
13377 WcW
13378 \end_layout
13379
13380 \begin_layout Standard
13381 para la última columna y
13382 \end_layout
13383
13384 \begin_layout Standard
13385
13386 \series bold
13387 Wc
13388 \end_layout
13389
13390 \begin_layout Standard
13391 para las demás.
13392 \end_layout
13393
13394 \begin_layout Standard
13395 Si quieres tener varios colores, define más formatos de columna.
13396 \end_layout
13397
13398 \begin_layout Standard
13399 \begin_inset Float table
13400 wide false
13401 sideways false
13402 status collapsed
13403
13404 \begin_layout Caption
13405 \begin_inset LatexCommand label
13406 name "tab:Tabla-con-verticales-coloreadas"
13407
13408 \end_inset
13409
13410 Tabla con líneas vertcales coloreadas
13411 \end_layout
13412
13413 \begin_layout Standard
13414 \align center
13415 \begin_inset Tabular
13416 <lyxtabular version="3" rows="3" columns="3">
13417 <features>
13418 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
13419 <column alignment="center" valignment="top" width="0" special="Wc">
13420 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
13421 <row topline="true">
13422 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13423 \begin_inset Text
13424
13425 \begin_layout Standard
13426 sd
13427 \end_layout
13428
13429 \end_inset
13430 </cell>
13431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13432 \begin_inset Text
13433
13434 \begin_layout Standard
13435
13436 \end_layout
13437
13438 \end_inset
13439 </cell>
13440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13441 \begin_inset Text
13442
13443 \begin_layout Standard
13444
13445 \end_layout
13446
13447 \end_inset
13448 </cell>
13449 </row>
13450 <row topline="true">
13451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13452 \begin_inset Text
13453
13454 \begin_layout Standard
13455
13456 \end_layout
13457
13458 \end_inset
13459 </cell>
13460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13461 \begin_inset Text
13462
13463 \begin_layout Standard
13464 sd
13465 \end_layout
13466
13467 \end_inset
13468 </cell>
13469 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13470 \begin_inset Text
13471
13472 \begin_layout Standard
13473
13474 \end_layout
13475
13476 \end_inset
13477 </cell>
13478 </row>
13479 <row topline="true" bottomline="true">
13480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13481 \begin_inset Text
13482
13483 \begin_layout Standard
13484
13485 \end_layout
13486
13487 \end_inset
13488 </cell>
13489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13490 \begin_inset Text
13491
13492 \begin_layout Standard
13493
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 sd
13503 \end_layout
13504
13505 \end_inset
13506 </cell>
13507 </row>
13508 </lyxtabular>
13509
13510 \end_inset
13511
13512
13513 \end_layout
13514
13515 \end_inset
13516
13517
13518 \end_layout
13519
13520 \begin_layout Standard
13521 \begin_inset VSpace bigskip
13522 \end_inset
13523
13524 Para colorear líneas horizontales, por ejemplo en rojo, como en la Tabla\InsetSpace ~
13525
13526 \begin_inset LatexCommand ref
13527 reference "tab:Tabla-con-horizontales-coloreadas"
13528
13529 \end_inset
13530
13531 , inserta estos comandos en ERT antes de la tabla o del flotante:
13532 \end_layout
13533
13534 \begin_layout Standard
13535
13536 \series bold
13537
13538 \backslash
13539 let
13540 \backslash
13541 myHlineC
13542 \backslash
13543 hline
13544 \newline
13545
13546 \backslash
13547 renewcommand{
13548 \backslash
13549 hline}{
13550 \backslash
13551 arrayrulecolor{red}
13552 \backslash
13553 myHlineC
13554 \backslash
13555 arrayrulecolor{black}}
13556 \end_layout
13557
13558 \begin_layout Standard
13559 \begin_inset ERT
13560 status collapsed
13561
13562 \begin_layout Standard
13563
13564
13565 \backslash
13566 let
13567 \backslash
13568 myHlineC
13569 \backslash
13570 hline
13571 \end_layout
13572
13573 \begin_layout Standard
13574
13575
13576 \backslash
13577 renewcommand{
13578 \backslash
13579 hline}{
13580 \backslash
13581 arrayrulecolor{red}
13582 \backslash
13583 myHlineC
13584 \backslash
13585 arrayrulecolor{black}}
13586 \end_layout
13587
13588 \end_inset
13589
13590
13591 \begin_inset Float table
13592 wide false
13593 sideways false
13594 status open
13595
13596 \begin_layout Caption
13597 \begin_inset LatexCommand label
13598 name "tab:Tabla-con-horizontales-coloreadas"
13599
13600 \end_inset
13601
13602 Tabla con líneas horizontales coloreadas
13603 \end_layout
13604
13605 \begin_layout Standard
13606 \align center
13607 \begin_inset Tabular
13608 <lyxtabular version="3" rows="3" columns="3">
13609 <features>
13610 <column alignment="center" valignment="top" leftline="true" width="0">
13611 <column alignment="center" valignment="top" leftline="true" width="0">
13612 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13613 <row topline="true">
13614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13615 \begin_inset Text
13616
13617 \begin_layout Standard
13618 sd
13619 \end_layout
13620
13621 \end_inset
13622 </cell>
13623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13624 \begin_inset Text
13625
13626 \begin_layout Standard
13627
13628 \end_layout
13629
13630 \end_inset
13631 </cell>
13632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13633 \begin_inset Text
13634
13635 \begin_layout Standard
13636
13637 \end_layout
13638
13639 \end_inset
13640 </cell>
13641 </row>
13642 <row topline="true">
13643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13644 \begin_inset Text
13645
13646 \begin_layout Standard
13647
13648 \end_layout
13649
13650 \end_inset
13651 </cell>
13652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13653 \begin_inset Text
13654
13655 \begin_layout Standard
13656 sd
13657 \end_layout
13658
13659 \end_inset
13660 </cell>
13661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13662 \begin_inset Text
13663
13664 \begin_layout Standard
13665
13666 \end_layout
13667
13668 \end_inset
13669 </cell>
13670 </row>
13671 <row topline="true" bottomline="true">
13672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13673 \begin_inset Text
13674
13675 \begin_layout Standard
13676
13677 \end_layout
13678
13679 \end_inset
13680 </cell>
13681 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13682 \begin_inset Text
13683
13684 \begin_layout Standard
13685
13686 \end_layout
13687
13688 \end_inset
13689 </cell>
13690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13691 \begin_inset Text
13692
13693 \begin_layout Standard
13694 sd
13695 \end_layout
13696
13697 \end_inset
13698 </cell>
13699 </row>
13700 </lyxtabular>
13701
13702 \end_inset
13703
13704
13705 \end_layout
13706
13707 \end_inset
13708
13709
13710 \end_layout
13711
13712 \begin_layout Standard
13713 \begin_inset ERT
13714 status collapsed
13715
13716 \begin_layout Standard
13717
13718
13719 \backslash
13720 pagebreak 
13721 \end_layout
13722
13723 \end_inset
13724
13725
13726 \end_layout
13727
13728 \begin_layout Standard
13729 Para volver al color de línea negro predeterminado inserta este comando
13730  en ERT detrás de la tabla o el flotante:
13731 \end_layout
13732
13733 \begin_layout Standard
13734
13735 \series bold
13736
13737 \backslash
13738 renewcommand{
13739 \backslash
13740 hline}{
13741 \backslash
13742 myHlineC}
13743 \end_layout
13744
13745 \begin_layout Standard
13746 La Tabla\InsetSpace ~
13747
13748 \begin_inset LatexCommand ref
13749 reference "tab:Tabla-con-líneas-coloreadas"
13750
13751 \end_inset
13752
13753  es un ejemplo con líneas verticales y horizontales coloreadas.
13754 \end_layout
13755
13756 \begin_layout Standard
13757 \begin_inset Float table
13758 wide false
13759 sideways false
13760 status open
13761
13762 \begin_layout Caption
13763 \begin_inset LatexCommand label
13764 name "tab:Tabla-con-líneas-coloreadas"
13765
13766 \end_inset
13767
13768 Tabla con líneas coloreadas
13769 \end_layout
13770
13771 \begin_layout Standard
13772 \align center
13773 \begin_inset Tabular
13774 <lyxtabular version="3" rows="3" columns="3">
13775 <features>
13776 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
13777 <column alignment="center" valignment="top" width="0" special="Wc">
13778 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
13779 <row topline="true">
13780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13781 \begin_inset Text
13782
13783 \begin_layout Standard
13784 sd
13785 \end_layout
13786
13787 \end_inset
13788 </cell>
13789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13790 \begin_inset Text
13791
13792 \begin_layout Standard
13793
13794 \end_layout
13795
13796 \end_inset
13797 </cell>
13798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13799 \begin_inset Text
13800
13801 \begin_layout Standard
13802
13803 \end_layout
13804
13805 \end_inset
13806 </cell>
13807 </row>
13808 <row topline="true">
13809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13810 \begin_inset Text
13811
13812 \begin_layout Standard
13813
13814 \end_layout
13815
13816 \end_inset
13817 </cell>
13818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13819 \begin_inset Text
13820
13821 \begin_layout Standard
13822 sd
13823 \end_layout
13824
13825 \end_inset
13826 </cell>
13827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13828 \begin_inset Text
13829
13830 \begin_layout Standard
13831
13832 \end_layout
13833
13834 \end_inset
13835 </cell>
13836 </row>
13837 <row topline="true" bottomline="true">
13838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13839 \begin_inset Text
13840
13841 \begin_layout Standard
13842
13843 \end_layout
13844
13845 \end_inset
13846 </cell>
13847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13848 \begin_inset Text
13849
13850 \begin_layout Standard
13851
13852 \end_layout
13853
13854 \end_inset
13855 </cell>
13856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13857 \begin_inset Text
13858
13859 \begin_layout Standard
13860 sd
13861 \end_layout
13862
13863 \end_inset
13864 </cell>
13865 </row>
13866 </lyxtabular>
13867
13868 \end_inset
13869
13870
13871 \end_layout
13872
13873 \end_inset
13874
13875
13876 \end_layout
13877
13878 \begin_layout Standard
13879 \begin_inset ERT
13880 status collapsed
13881
13882 \begin_layout Standard
13883
13884
13885 \backslash
13886 renewcommand{
13887 \backslash
13888 hline}{
13889 \backslash
13890 myHlineC}
13891 \end_layout
13892
13893 \end_inset
13894
13895
13896 \end_layout
13897
13898 \begin_layout Standard
13899 \begin_inset ERT
13900 status collapsed
13901
13902 \begin_layout Standard
13903
13904
13905 \backslash
13906 setlength{
13907 \backslash
13908 arrayrulewidth}{0.4pt}
13909 \end_layout
13910
13911 \end_inset
13912
13913
13914 \end_layout
13915
13916 \begin_layout Section
13917 Personalización de Tablas
13918 \begin_inset LatexCommand index
13919 name "Personalización de Tablas"
13920
13921 \end_inset
13922
13923
13924 \begin_inset LatexCommand index
13925 name "Tablas ! Personalización"
13926
13927 \end_inset
13928
13929
13930 \end_layout
13931
13932 \begin_layout Subsection
13933 Altura Extra de Fila
13934 \begin_inset LatexCommand label
13935 name "sub:Altura-Extra-de-Fila"
13936
13937 \end_inset
13938
13939
13940 \begin_inset LatexCommand index
13941 name "Personalización de Tablas ! Altura Extra de Filas"
13942
13943 \end_inset
13944
13945
13946 \end_layout
13947
13948 \begin_layout Standard
13949 A veces las letras grandes o altas como 
13950 \emph on
13951 b
13952 \emph default
13953  y 
13954 \emph on
13955 d
13956 \emph default
13957  no tienen bastante espacio entre los bordes superior e inferior de una
13958  celda.
13959  Con la línea en el preámbulo
13960 \end_layout
13961
13962 \begin_layout Standard
13963
13964 \series bold
13965
13966 \backslash
13967 setlength{
13968 \backslash
13969 extrarowheight}{2pt}
13970 \end_layout
13971
13972 \begin_layout Standard
13973 se añaden 2\InsetSpace \thinspace{}
13974 pt de altura extra a todas las celdas de todas las tablas.
13975  Aunque esto suele mejorar la apariencia, tiene el inconveniente de que
13976  el texto no sale exactamente centrado verticalmente.
13977 \end_layout
13978
13979 \begin_layout Standard
13980 Un método alternativo para altura extra de fila se describe en la sección\InsetSpace ~
13981
13982 \begin_inset LatexCommand ref
13983 reference "sub:Alineación-Vertical"
13984
13985 \end_inset
13986
13987 .
13988 \end_layout
13989
13990 \begin_layout Subsection
13991 Alineación Especial de Celdas
13992 \begin_inset LatexCommand index
13993 name "Personalización de Tablas ! Alineación Especial de Celdas"
13994
13995 \end_inset
13996
13997
13998 \end_layout
13999
14000 \begin_layout Standard
14001 A veces mejora la presentación las entradas en las celdas de una columna
14002  se alinean con un caracter determinado, p.\InsetSpace \thinspace{}
14003 e.
14004  el separador decimal, como en la Tabla\InsetSpace ~
14005
14006 \begin_inset LatexCommand ref
14007 reference "tab:Tabla-con-celdas-de"
14008
14009 \end_inset
14010
14011 .
14012 \end_layout
14013
14014 \begin_layout Standard
14015 \begin_inset Float table
14016 wide false
14017 sideways false
14018 status open
14019
14020 \begin_layout Caption
14021 \begin_inset LatexCommand label
14022 name "tab:Tabla-con-celdas-de"
14023
14024 \end_inset
14025
14026 Tabla con celdas alineadas con el separador decimal.
14027 \end_layout
14028
14029 \begin_layout Standard
14030 \align center
14031 \begin_inset Tabular
14032 <lyxtabular version="3" rows="4" columns="2">
14033 <features>
14034 <column alignment="right" valignment="top" width="0">
14035 <column alignment="left" valignment="top" width="0" special="@{}l">
14036 <row bottomline="true">
14037 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
14038 \begin_inset Text
14039
14040 \begin_layout Standard
14041 encabezado
14042 \end_layout
14043
14044 \end_inset
14045 </cell>
14046 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14047 \begin_inset Text
14048
14049 \begin_layout Standard
14050
14051 \end_layout
14052
14053 \end_inset
14054 </cell>
14055 </row>
14056 <row>
14057 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14058 \begin_inset Text
14059
14060 \begin_layout Standard
14061 12.
14062 \end_layout
14063
14064 \end_inset
14065 </cell>
14066 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14067 \begin_inset Text
14068
14069 \begin_layout Standard
14070 6
14071 \end_layout
14072
14073 \end_inset
14074 </cell>
14075 </row>
14076 <row>
14077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14078 \begin_inset Text
14079
14080 \begin_layout Standard
14081 0.
14082 \end_layout
14083
14084 \end_inset
14085 </cell>
14086 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14087 \begin_inset Text
14088
14089 \begin_layout Standard
14090 68
14091 \end_layout
14092
14093 \end_inset
14094 </cell>
14095 </row>
14096 <row>
14097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14098 \begin_inset Text
14099
14100 \begin_layout Standard
14101 -123.
14102 \end_layout
14103
14104 \end_inset
14105 </cell>
14106 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14107 \begin_inset Text
14108
14109 \begin_layout Standard
14110 0
14111 \end_layout
14112
14113 \end_inset
14114 </cell>
14115 </row>
14116 </lyxtabular>
14117
14118 \end_inset
14119
14120
14121 \end_layout
14122
14123 \end_inset
14124
14125
14126 \end_layout
14127
14128 \begin_layout Standard
14129 Esta es una tabla 4×2.
14130  El encabezado es una multicolumna centrada.
14131  La primera columna está alineada a la derecha y contiene el punto decimal
14132  y los dígitos anteriores.
14133  La segunda columna está alineada a la izquierda y contiene los dígitos
14134  posteriores al punto decimal.
14135  Para omitir el espacio que hay normalmente entre dos columnas usa el siguiente
14136  argumento LaTeX para la segunda columna:
14137 \end_layout
14138
14139 \begin_layout Standard
14140
14141 \series bold
14142 @{}l
14143 \end_layout
14144
14145 \begin_layout Standard
14146 Si quieres una línea vertical a la derecha de la segunda columna, usa en
14147  su lugar el argumento LaTeX: 
14148 \series bold
14149 @{}l|
14150 \end_layout
14151
14152 \begin_layout Standard
14153 La Tabla\InsetSpace ~
14154
14155 \begin_inset LatexCommand ref
14156 reference "tab:Varias-alineaciones"
14157
14158 \end_inset
14159
14160  muestra varios ejemplos de alineación.
14161  Para alinear con el signo de relación debes añadir el segundo espacio matemátic
14162 o más pequeño al comienzo de la última columna para conseguir el espacio
14163  adecuado alrededor del signo.
14164 \end_layout
14165
14166 \begin_layout Standard
14167 \begin_inset Float table
14168 wide false
14169 sideways false
14170 status open
14171
14172 \begin_layout Caption
14173 \begin_inset LatexCommand label
14174 name "tab:Varias-alineaciones"
14175
14176 \end_inset
14177
14178 Tabla con varias alineaciones.
14179 \end_layout
14180
14181 \begin_layout Standard
14182 \align center
14183 \begin_inset Tabular
14184 <lyxtabular version="3" rows="4" columns="6">
14185 <features>
14186 <column alignment="right" valignment="top" width="0">
14187 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
14188 <column alignment="right" valignment="top" width="0">
14189 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
14190 <column alignment="right" valignment="top" width="0">
14191 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
14192 <row bottomline="true">
14193 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
14194 \begin_inset Text
14195
14196 \begin_layout Standard
14197 unidades
14198 \end_layout
14199
14200 \end_inset
14201 </cell>
14202 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14203 \begin_inset Text
14204
14205 \begin_layout Standard
14206
14207 \end_layout
14208
14209 \end_inset
14210 </cell>
14211 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
14212 \begin_inset Text
14213
14214 \begin_layout Standard
14215 exponentes
14216 \end_layout
14217
14218 \end_inset
14219 </cell>
14220 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14221 \begin_inset Text
14222
14223 \begin_layout Standard
14224
14225 \end_layout
14226
14227 \end_inset
14228 </cell>
14229 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
14230 \begin_inset Text
14231
14232 \begin_layout Standard
14233 relaciones
14234 \end_layout
14235
14236 \end_inset
14237 </cell>
14238 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14239 \begin_inset Text
14240
14241 \begin_layout Standard
14242
14243 \end_layout
14244
14245 \end_inset
14246 </cell>
14247 </row>
14248 <row>
14249 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14250 \begin_inset Text
14251
14252 \begin_layout Standard
14253 12×
14254 \end_layout
14255
14256 \end_inset
14257 </cell>
14258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14259 \begin_inset Text
14260
14261 \begin_layout Standard
14262 24\InsetSpace \thinspace{}
14263 bottles
14264 \end_layout
14265
14266 \end_inset
14267 </cell>
14268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14269 \begin_inset Text
14270
14271 \begin_layout Standard
14272 \begin_inset Formula $10\cdot$
14273 \end_inset
14274
14275
14276 \end_layout
14277
14278 \end_inset
14279 </cell>
14280 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14281 \begin_inset Text
14282
14283 \begin_layout Standard
14284 \begin_inset Formula $10^{\mbox{-}17}$
14285 \end_inset
14286
14287
14288 \end_layout
14289
14290 \end_inset
14291 </cell>
14292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14293 \begin_inset Text
14294
14295 \begin_layout Standard
14296 \begin_inset Formula $\Gamma(t)\propto$
14297 \end_inset
14298
14299
14300 \end_layout
14301
14302 \end_inset
14303 </cell>
14304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14305 \begin_inset Text
14306
14307 \begin_layout Standard
14308 \begin_inset Formula $\:\Upsilon(t)$
14309 \end_inset
14310
14311
14312 \end_layout
14313
14314 \end_inset
14315 </cell>
14316 </row>
14317 <row>
14318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14319 \begin_inset Text
14320
14321 \begin_layout Standard
14322 1024×
14323 \end_layout
14324
14325 \end_inset
14326 </cell>
14327 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14328 \begin_inset Text
14329
14330 \begin_layout Standard
14331 768\InsetSpace \thinspace{}
14332 Pixels
14333 \end_layout
14334
14335 \end_inset
14336 </cell>
14337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14338 \begin_inset Text
14339
14340 \begin_layout Standard
14341 \begin_inset Formula $5.78\cdot$
14342 \end_inset
14343
14344
14345 \end_layout
14346
14347 \end_inset
14348 </cell>
14349 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14350 \begin_inset Text
14351
14352 \begin_layout Standard
14353 \begin_inset Formula $10^{7}$
14354 \end_inset
14355
14356
14357 \end_layout
14358
14359 \end_inset
14360 </cell>
14361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14362 \begin_inset Text
14363
14364 \begin_layout Standard
14365 \begin_inset Formula $A\ne$
14366 \end_inset
14367
14368
14369 \end_layout
14370
14371 \end_inset
14372 </cell>
14373 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14374 \begin_inset Text
14375
14376 \begin_layout Standard
14377 \begin_inset Formula $\: B_{\mathrm{red}}$
14378 \end_inset
14379
14380
14381 \end_layout
14382
14383 \end_inset
14384 </cell>
14385 </row>
14386 <row>
14387 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14388 \begin_inset Text
14389
14390 \begin_layout Standard
14391 32×
14392 \end_layout
14393
14394 \end_inset
14395 </cell>
14396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14397 \begin_inset Text
14398
14399 \begin_layout Standard
14400 6\InsetSpace \thinspace{}
14401 cm
14402 \end_layout
14403
14404 \end_inset
14405 </cell>
14406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14407 \begin_inset Text
14408
14409 \begin_layout Standard
14410 -
14411 \begin_inset Formula $33.5\cdot$
14412 \end_inset
14413
14414
14415 \end_layout
14416
14417 \end_inset
14418 </cell>
14419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14420 \begin_inset Text
14421
14422 \begin_layout Standard
14423 \begin_inset Formula $10^{4}$
14424 \end_inset
14425
14426
14427 \end_layout
14428
14429 \end_inset
14430 </cell>
14431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14432 \begin_inset Text
14433
14434 \begin_layout Standard
14435 \begin_inset Formula $\sin(\alpha)\ge$
14436 \end_inset
14437
14438
14439 \end_layout
14440
14441 \end_inset
14442 </cell>
14443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14444 \begin_inset Text
14445
14446 \begin_layout Standard
14447 \begin_inset Formula $\:\sin(\beta)$
14448 \end_inset
14449
14450
14451 \end_layout
14452
14453 \end_inset
14454 </cell>
14455 </row>
14456 </lyxtabular>
14457
14458 \end_inset
14459
14460
14461 \end_layout
14462
14463 \end_inset
14464
14465
14466 \end_layout
14467
14468 \begin_layout Standard
14469 \begin_inset VSpace bigskip
14470 \end_inset
14471
14472 también hay un paquete LaTeX, 
14473 \series bold
14474 dcolumn
14475 \series default
14476
14477 \begin_inset LatexCommand index
14478 name "LaTeX-paquetes ! dcolumn"
14479
14480 \end_inset
14481
14482 , que provee alineación de celdas.
14483  Pero desgraciadamente trata las entradas de celda en modo matemático y
14484  no permite fórmulas en celdas: La primera columna de la Tabla\InsetSpace ~
14485
14486 \begin_inset LatexCommand ref
14487 reference "tab:Varias-alineaciones"
14488
14489 \end_inset
14490
14491  se verá con 
14492 \series bold
14493 dcolumn
14494 \series default
14495  como la primera columna en la Tabla\InsetSpace ~
14496
14497 \begin_inset LatexCommand ref
14498 reference "tab:Alineaciones-con-el"
14499
14500 \end_inset
14501
14502  y solo con algunos trucos se consigue lo que se espera.
14503  La lineación de la segunda y tercera columnas de la Tabla\InsetSpace ~
14504
14505 \begin_inset LatexCommand ref
14506 reference "tab:Varias-alineaciones"
14507
14508 \end_inset
14509
14510  no es posible con 
14511 \series bold
14512 dcolumn
14513 \series default
14514 .
14515 \end_layout
14516
14517 \begin_layout Standard
14518 \begin_inset Float table
14519 placement h
14520 wide false
14521 sideways false
14522 status open
14523
14524 \begin_layout Caption
14525 \begin_inset LatexCommand label
14526 name "tab:Alineaciones-con-el"
14527
14528 \end_inset
14529
14530 Alineaciones con el paquete LaTeX dcolumn.
14531  Para la segunda y tercera alineaciones se han hecho algunos trucos.
14532 \end_layout
14533
14534 \begin_layout Standard
14535 \align center
14536 \begin_inset Tabular
14537 <lyxtabular version="3" rows="4" columns="3">
14538 <features>
14539 <column alignment="center" valignment="top" rightline="true" width="0" special="D{×}{\times}{-1}|">
14540 <column alignment="center" valignment="top" width="0" special="D{×}{\times}{4.9}|">
14541 <column alignment="center" valignment="top" rightline="true" width="0" special="D{~}{\,}{9.7}">
14542 <row bottomline="true">
14543 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
14544 \begin_inset Text
14545
14546 \begin_layout Standard
14547 units
14548 \end_layout
14549
14550 \end_inset
14551 </cell>
14552 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
14553 \begin_inset Text
14554
14555 \begin_layout Standard
14556 units
14557 \end_layout
14558
14559 \end_inset
14560 </cell>
14561 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
14562 \begin_inset Text
14563
14564 \begin_layout Standard
14565 units
14566 \end_layout
14567
14568 \end_inset
14569 </cell>
14570 </row>
14571 <row>
14572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14573 \begin_inset Text
14574
14575 \begin_layout Standard
14576 12×24\InsetSpace \thinspace{}
14577 bottles
14578 \end_layout
14579
14580 \end_inset
14581 </cell>
14582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14583 \begin_inset Text
14584
14585 \begin_layout Standard
14586 12×24\InsetSpace \thinspace{}
14587
14588 \begin_inset Formula $\mbox{bottles}$
14589 \end_inset
14590
14591
14592 \end_layout
14593
14594 \end_inset
14595 </cell>
14596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14597 \begin_inset Text
14598
14599 \begin_layout Standard
14600 12×24~
14601 \begin_inset Formula $\mbox{bottles}$
14602 \end_inset
14603
14604
14605 \end_layout
14606
14607 \end_inset
14608 </cell>
14609 </row>
14610 <row>
14611 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14612 \begin_inset Text
14613
14614 \begin_layout Standard
14615 1024×768\InsetSpace \thinspace{}
14616 Pixels
14617 \end_layout
14618
14619 \end_inset
14620 </cell>
14621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14622 \begin_inset Text
14623
14624 \begin_layout Standard
14625 1024×768\InsetSpace \thinspace{}
14626
14627 \begin_inset Formula $\mbox{Pixels}$
14628 \end_inset
14629
14630
14631 \end_layout
14632
14633 \end_inset
14634 </cell>
14635 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14636 \begin_inset Text
14637
14638 \begin_layout Standard
14639 1024×768~
14640 \begin_inset Formula $\mbox{Pixels}$
14641 \end_inset
14642
14643
14644 \end_layout
14645
14646 \end_inset
14647 </cell>
14648 </row>
14649 <row>
14650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14651 \begin_inset Text
14652
14653 \begin_layout Standard
14654 32×6\InsetSpace \thinspace{}
14655 cm
14656 \end_layout
14657
14658 \end_inset
14659 </cell>
14660 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14661 \begin_inset Text
14662
14663 \begin_layout Standard
14664 32×6\InsetSpace \thinspace{}
14665
14666 \begin_inset Formula $\mbox{cm}$
14667 \end_inset
14668
14669
14670 \end_layout
14671
14672 \end_inset
14673 </cell>
14674 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14675 \begin_inset Text
14676
14677 \begin_layout Standard
14678 32×6~
14679 \begin_inset Formula $\mbox{cm}$
14680 \end_inset
14681
14682
14683 \end_layout
14684
14685 \end_inset
14686 </cell>
14687 </row>
14688 </lyxtabular>
14689
14690 \end_inset
14691
14692
14693 \end_layout
14694
14695 \end_inset
14696
14697
14698 \end_layout
14699
14700 \begin_layout Subsection
14701 Formato Personalizado de Celda/Columna
14702 \begin_inset LatexCommand label
14703 name "sub:Formato-Personalizado"
14704
14705 \end_inset
14706
14707
14708 \begin_inset LatexCommand index
14709 name "Personalización de Tablas ! Formato de Celda/Columna"
14710
14711 \end_inset
14712
14713
14714 \end_layout
14715
14716 \begin_layout Standard
14717 El cálculo de la anchura nesesaria para columnas extendidas descrito en
14718  la sección\InsetSpace ~
14719
14720 \begin_inset LatexCommand ref
14721 reference "sub:Cálculos-en-Multicolumnas"
14722
14723 \end_inset
14724
14725  es muy pesado si tienes varias tablas con multicolumnas.
14726  Para hacerlo más fácil, puedes definir en el preámbulo un formato de celda/colu
14727 mna aplicable a todas las tablas del documento.
14728  El formato se define con el comando
14729 \end_layout
14730
14731 \begin_layout Standard
14732
14733 \series bold
14734
14735 \backslash
14736 newcolumntype{nombre del formato}[número de argumentos]{comandos}
14737 \end_layout
14738
14739 \begin_layout Standard
14740 El nombre de formato puede ser una sola letra.
14741  Las letras 
14742 \emph on
14743 b, c, l, m, p 
14744 \emph default
14745 y
14746 \emph on
14747  r
14748 \emph default
14749  están predefinidas y no pueden usarse.
14750  Pero se permiten todas las mayúsculas.
14751 \end_layout
14752
14753 \begin_layout Standard
14754 \begin_inset VSpace medskip
14755 \end_inset
14756
14757
14758 \end_layout
14759
14760 \begin_layout Standard
14761 Para celdas multicolumna vertical y horizontalmente centradas con una anchura
14762  fija puedes definir el formato de celda
14763 \end_layout
14764
14765 \begin_layout Standard
14766
14767 \series bold
14768
14769 \backslash
14770 newcolumntype{M}[1]{>{
14771 \backslash
14772 centering
14773 \backslash
14774 hspace{0pt}}m{#1}}
14775 \end_layout
14776
14777 \begin_layout Standard
14778 donde 
14779 \series bold
14780
14781 \backslash
14782 hspace{0pt}
14783 \series default
14784  evita el problema de partir con guión la primera palabra, como se describe
14785  en la sección\InsetSpace ~
14786
14787 \begin_inset LatexCommand ref
14788 reference "sub:Líneas-Múltiples-en"
14789
14790 \end_inset
14791
14792 .
14793  Ahora puedes introducir simplemente
14794 \end_layout
14795
14796 \begin_layout Standard
14797
14798 \series bold
14799 |M{ancho}
14800 \end_layout
14801
14802 \begin_layout Standard
14803 como argumento LaTeX en el diálogo de tabla para crear una multicolumna.
14804 \end_layout
14805
14806 \begin_layout Standard
14807 \begin_inset VSpace bigskip
14808 \end_inset
14809
14810
14811 \end_layout
14812
14813 \begin_layout Standard
14814 Para celdas extendidas en una celda multicolumna, puedes definir el formato
14815 \end_layout
14816
14817 \begin_layout Standard
14818
14819 \series bold
14820
14821 \backslash
14822 newcolumntype{S}[2]{>{
14823 \backslash
14824 centering
14825 \backslash
14826 hspace{0pt}}
14827 \newline
14828
14829 \begin_inset ERT
14830 status collapsed
14831
14832 \begin_layout Standard
14833
14834
14835 \backslash
14836 phantom{
14837 \end_layout
14838
14839 \end_inset
14840
14841
14842 \backslash
14843 newcolumntype{S}[2]
14844 \begin_inset ERT
14845 status collapsed
14846
14847 \begin_layout Standard
14848
14849 }
14850 \end_layout
14851
14852 \end_inset
14853
14854 m{(#1+(2
14855 \backslash
14856 tabcolsep+
14857 \backslash
14858 arrayrulewidth)*(1-#2))/#2}}
14859 \end_layout
14860
14861 \begin_layout Standard
14862 Este formato usa la ecuación 
14863 \begin_inset LatexCommand eqref
14864 reference "eq:Wgn"
14865
14866 \end_inset
14867
14868  para calcular la anchura necesaria para que cada celda extendida tenga
14869  la misma anchura.
14870 \end_layout
14871
14872 \begin_layout Standard
14873 Ahora puedes introducir
14874 \end_layout
14875
14876 \begin_layout Standard
14877
14878 \series bold
14879 |S{ancho de la celda multicolumna}{número de columnas extendidas}
14880 \end_layout
14881
14882 \begin_layout Standard
14883 como argumento LaTeX de la columna.
14884 \end_layout
14885
14886 \begin_layout Standard
14887 \begin_inset VSpace bigskip
14888 \end_inset
14889
14890
14891 \end_layout
14892
14893 \begin_layout Standard
14894 Para columnas coloreadas puedes definir
14895 \end_layout
14896
14897 \begin_layout Standard
14898
14899 \series bold
14900
14901 \backslash
14902 newcolumntype{K}[1]{>{
14903 \backslash
14904 columncolor{#1}
14905 \backslash
14906 hspace{0pt}}c}
14907 \end_layout
14908
14909 \begin_layout Standard
14910 La "c" al final crea una columna con anchura flexible cuyo texto está centrado
14911  horizontalmente.
14912  Ahora puedes introducir
14913 \end_layout
14914
14915 \begin_layout Standard
14916
14917 \series bold
14918 K{nombre del color}
14919 \end_layout
14920
14921 \begin_layout Standard
14922 como argumento LaTeX.
14923 \end_layout
14924
14925 \begin_layout Standard
14926 \begin_inset VSpace bigskip
14927 \end_inset
14928
14929
14930 \end_layout
14931
14932 \begin_layout Standard
14933 Para crear la Tabla\InsetSpace ~
14934
14935 \begin_inset LatexCommand ref
14936 reference "tab:Tabla-con-formatos-definidos-por"
14937
14938 \end_inset
14939
14940  usa los argumentos LaTeX
14941 \end_layout
14942
14943 \begin_layout Standard
14944
14945 \series bold
14946 |M{2.5cm}
14947 \end_layout
14948
14949 \begin_layout Standard
14950 para la primera columna y la multicolumna,
14951 \end_layout
14952
14953 \begin_layout Standard
14954
14955 \series bold
14956 |K{red}|
14957 \end_layout
14958
14959 \begin_layout Standard
14960 para la última columna y
14961 \end_layout
14962
14963 \begin_layout Standard
14964
14965 \series bold
14966 |S{2.5cm}{2}
14967 \end_layout
14968
14969 \begin_layout Standard
14970 para las celdas en la segunda columna.
14971 \end_layout
14972
14973 \begin_layout Standard
14974 \begin_inset Float table
14975 placement h
14976 wide false
14977 sideways false
14978 status open
14979
14980 \begin_layout Caption
14981 \begin_inset LatexCommand label
14982 name "tab:Tabla-con-formatos-definidos-por"
14983
14984 \end_inset
14985
14986 Tabla con formatos definidos por el usuario
14987 \end_layout
14988
14989 \begin_layout Standard
14990 \align center
14991 \begin_inset Tabular
14992 <lyxtabular version="3" rows="3" columns="4">
14993 <features>
14994 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="|M{2.5cm}">
14995 <column alignment="center" valignment="middle" leftline="true" width="0" special="|S{2.5cm}{2}">
14996 <column alignment="center" valignment="middle" leftline="true" width="0">
14997 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="|K{red}|">
14998 <row topline="true">
14999 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15000 \begin_inset Text
15001
15002 \begin_layout Standard
15003 palabramuylargaenceldadetabla
15004 \end_layout
15005
15006 \end_inset
15007 </cell>
15008 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}|">
15009 \begin_inset Text
15010
15011 \begin_layout Standard
15012 multicolumna línea múltiple
15013 \end_layout
15014
15015 \end_inset
15016 </cell>
15017 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15018 \begin_inset Text
15019
15020 \begin_layout Standard
15021
15022 \end_layout
15023
15024 \end_inset
15025 </cell>
15026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15027 \begin_inset Text
15028
15029 \begin_layout Standard
15030 c
15031 \end_layout
15032
15033 \end_inset
15034 </cell>
15035 </row>
15036 <row topline="true">
15037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15038 \begin_inset Text
15039
15040 \begin_layout Standard
15041 d
15042 \end_layout
15043
15044 \end_inset
15045 </cell>
15046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15047 \begin_inset Text
15048
15049 \begin_layout Standard
15050 e
15051 \end_layout
15052
15053 \end_inset
15054 </cell>
15055 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15056 \begin_inset Text
15057
15058 \begin_layout Standard
15059 f
15060 \end_layout
15061
15062 \end_inset
15063 </cell>
15064 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15065 \begin_inset Text
15066
15067 \begin_layout Standard
15068 g
15069 \end_layout
15070
15071 \end_inset
15072 </cell>
15073 </row>
15074 <row topline="true" bottomline="true">
15075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15076 \begin_inset Text
15077
15078 \begin_layout Standard
15079 h
15080 \end_layout
15081
15082 \end_inset
15083 </cell>
15084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15085 \begin_inset Text
15086
15087 \begin_layout Standard
15088 i
15089 \end_layout
15090
15091 \end_inset
15092 </cell>
15093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15094 \begin_inset Text
15095
15096 \begin_layout Standard
15097 j
15098 \end_layout
15099
15100 \end_inset
15101 </cell>
15102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15103 \begin_inset Text
15104
15105 \begin_layout Standard
15106 k
15107 \end_layout
15108
15109 \end_inset
15110 </cell>
15111 </row>
15112 </lyxtabular>
15113
15114 \end_inset
15115
15116
15117 \end_layout
15118
15119 \end_inset
15120
15121
15122 \end_layout
15123
15124 \begin_layout Subsection
15125 Grosor de Líneas
15126 \begin_inset LatexCommand label
15127 name "sub:Grosor-de-Líneas"
15128
15129 \end_inset
15130
15131
15132 \begin_inset LatexCommand index
15133 name "Personalización de Tablas ! Grosor de Línea"
15134
15135 \end_inset
15136
15137
15138 \end_layout
15139
15140 \begin_layout Standard
15141 El grosor para todas las líneas de una tabla puede ajustarse con la longitud
15142  
15143 \series bold
15144
15145 \backslash
15146 arrayrulewidth
15147 \series default
15148 .
15149  Por ejemplo, para poner un grosor de línea de 1.5\InsetSpace \thinspace{}
15150 pt, como en la Tabla\InsetSpace ~
15151
15152 \begin_inset LatexCommand ref
15153 reference "tab:Tabla-con-líneas"
15154
15155 \end_inset
15156
15157 , inserta el comando
15158 \end_layout
15159
15160 \begin_layout Standard
15161
15162 \series bold
15163
15164 \backslash
15165 setlength{
15166 \backslash
15167 arrayrulewidth}{1.5pt}
15168 \end_layout
15169
15170 \begin_layout Standard
15171 en ERT antes de la tabla o flotante.
15172  Este cambio es válido para todas las siguientes tablas.
15173  Para volver al valor predeterminado, define 
15174 \series bold
15175
15176 \backslash
15177 arrayrulewidth
15178 \series default
15179  a 0.4\InsetSpace \thinspace{}
15180 pt en ERT detrás de la tabla o flotante.
15181 \end_layout
15182
15183 \begin_layout Standard
15184 \begin_inset ERT
15185 status collapsed
15186
15187 \begin_layout Standard
15188
15189
15190 \backslash
15191 setlength{
15192 \backslash
15193 arrayrulewidth}{1.5pt}
15194 \end_layout
15195
15196 \end_inset
15197
15198
15199 \begin_inset Float table
15200 wide false
15201 sideways false
15202 status open
15203
15204 \begin_layout Caption
15205 \begin_inset LatexCommand label
15206 name "tab:Tabla-con-líneas"
15207
15208 \end_inset
15209
15210 Tabla con líneas de grosor 1.5\InsetSpace \thinspace{}
15211 pt
15212 \end_layout
15213
15214 \begin_layout Standard
15215 \align center
15216 \begin_inset Tabular
15217 <lyxtabular version="3" rows="3" columns="3">
15218 <features>
15219 <column alignment="center" valignment="top" leftline="true" width="0">
15220 <column alignment="center" valignment="top" leftline="true" width="0">
15221 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
15222 <row topline="true">
15223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15224 \begin_inset Text
15225
15226 \begin_layout Standard
15227 sd
15228 \end_layout
15229
15230 \end_inset
15231 </cell>
15232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15233 \begin_inset Text
15234
15235 \begin_layout Standard
15236
15237 \end_layout
15238
15239 \end_inset
15240 </cell>
15241 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15242 \begin_inset Text
15243
15244 \begin_layout Standard
15245
15246 \end_layout
15247
15248 \end_inset
15249 </cell>
15250 </row>
15251 <row topline="true">
15252 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15253 \begin_inset Text
15254
15255 \begin_layout Standard
15256
15257 \end_layout
15258
15259 \end_inset
15260 </cell>
15261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15262 \begin_inset Text
15263
15264 \begin_layout Standard
15265 sd
15266 \end_layout
15267
15268 \end_inset
15269 </cell>
15270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15271 \begin_inset Text
15272
15273 \begin_layout Standard
15274
15275 \end_layout
15276
15277 \end_inset
15278 </cell>
15279 </row>
15280 <row topline="true" bottomline="true">
15281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15282 \begin_inset Text
15283
15284 \begin_layout Standard
15285
15286 \end_layout
15287
15288 \end_inset
15289 </cell>
15290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15291 \begin_inset Text
15292
15293 \begin_layout Standard
15294
15295 \end_layout
15296
15297 \end_inset
15298 </cell>
15299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15300 \begin_inset Text
15301
15302 \begin_layout Standard
15303 sd
15304 \end_layout
15305
15306 \end_inset
15307 </cell>
15308 </row>
15309 </lyxtabular>
15310
15311 \end_inset
15312
15313
15314 \end_layout
15315
15316 \end_inset
15317
15318
15319 \begin_inset ERT
15320 status collapsed
15321
15322 \begin_layout Standard
15323
15324
15325 \backslash
15326 setlength{
15327 \backslash
15328 arrayrulewidth}{0.4pt}
15329 \end_layout
15330
15331 \end_inset
15332
15333
15334 \end_layout
15335
15336 \begin_layout Standard
15337 \begin_inset VSpace bigskip
15338 \end_inset
15339
15340 Para definir un grosor de 1.5\InsetSpace \thinspace{}
15341 pt sólo para líneas horizontales, como en la
15342  Tabla\InsetSpace ~
15343
15344 \begin_inset LatexCommand ref
15345 reference "tab:Tabla-con-horizontales"
15346
15347 \end_inset
15348
15349 , inserta estos comandos en ERT antes de la tabla o flotante:
15350 \end_layout
15351
15352 \begin_layout Standard
15353
15354 \series bold
15355
15356 \backslash
15357 let
15358 \backslash
15359 myHline
15360 \backslash
15361 hline
15362 \newline
15363
15364 \backslash
15365 renewcommand{
15366 \backslash
15367 hline}
15368 \newline
15369  {
15370 \backslash
15371 noalign{
15372 \backslash
15373 global
15374 \backslash
15375 arrayrulewidth 1.5pt}
15376 \newline
15377   
15378 \backslash
15379 myHline
15380 \backslash
15381 noalign{
15382 \backslash
15383 global
15384 \backslash
15385 arrayrulewidth 0.4pt}}
15386 \end_layout
15387
15388 \begin_layout Standard
15389 Para volver al grosor predeterminado, inserta este comando en ERT detrás
15390  de la tabla o flotante:
15391 \end_layout
15392
15393 \begin_layout Standard
15394
15395 \series bold
15396
15397 \backslash
15398 renewcommand{
15399 \backslash
15400 hline}{
15401 \backslash
15402 myHline}
15403 \end_layout
15404
15405 \begin_layout Standard
15406 \begin_inset ERT
15407 status collapsed
15408
15409 \begin_layout Standard
15410
15411
15412 \backslash
15413 let
15414 \backslash
15415 myHline
15416 \backslash
15417 hline
15418 \end_layout
15419
15420 \begin_layout Standard
15421
15422
15423 \backslash
15424 renewcommand{
15425 \backslash
15426 hline}
15427 \end_layout
15428
15429 \begin_layout Standard
15430
15431  {
15432 \backslash
15433 noalign{
15434 \backslash
15435 global
15436 \backslash
15437 arrayrulewidth 1.5pt}
15438 \end_layout
15439
15440 \begin_layout Standard
15441
15442   
15443 \backslash
15444 myHline
15445 \backslash
15446 noalign{
15447 \backslash
15448 global
15449 \backslash
15450 arrayrulewidth 0.4pt}}
15451 \end_layout
15452
15453 \end_inset
15454
15455
15456 \begin_inset Float table
15457 wide false
15458 sideways false
15459 status open
15460
15461 \begin_layout Caption
15462 \begin_inset LatexCommand label
15463 name "tab:Tabla-con-horizontales"
15464
15465 \end_inset
15466
15467 Tabla con líneas horizontales de 1.5\InsetSpace \thinspace{}
15468 pt
15469 \end_layout
15470
15471 \begin_layout Standard
15472 \align center
15473 \begin_inset Tabular
15474 <lyxtabular version="3" rows="3" columns="3">
15475 <features>
15476 <column alignment="center" valignment="top" leftline="true" width="0">
15477 <column alignment="center" valignment="top" leftline="true" width="0">
15478 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
15479 <row topline="true">
15480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15481 \begin_inset Text
15482
15483 \begin_layout Standard
15484 sd
15485 \end_layout
15486
15487 \end_inset
15488 </cell>
15489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15490 \begin_inset Text
15491
15492 \begin_layout Standard
15493
15494 \end_layout
15495
15496 \end_inset
15497 </cell>
15498 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15499 \begin_inset Text
15500
15501 \begin_layout Standard
15502
15503 \end_layout
15504
15505 \end_inset
15506 </cell>
15507 </row>
15508 <row topline="true">
15509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15510 \begin_inset Text
15511
15512 \begin_layout Standard
15513
15514 \end_layout
15515
15516 \end_inset
15517 </cell>
15518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15519 \begin_inset Text
15520
15521 \begin_layout Standard
15522 sd
15523 \end_layout
15524
15525 \end_inset
15526 </cell>
15527 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15528 \begin_inset Text
15529
15530 \begin_layout Standard
15531
15532 \end_layout
15533
15534 \end_inset
15535 </cell>
15536 </row>
15537 <row topline="true" bottomline="true">
15538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15539 \begin_inset Text
15540
15541 \begin_layout Standard
15542
15543 \end_layout
15544
15545 \end_inset
15546 </cell>
15547 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15548 \begin_inset Text
15549
15550 \begin_layout Standard
15551
15552 \end_layout
15553
15554 \end_inset
15555 </cell>
15556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15557 \begin_inset Text
15558
15559 \begin_layout Standard
15560 sd
15561 \end_layout
15562
15563 \end_inset
15564 </cell>
15565 </row>
15566 </lyxtabular>
15567
15568 \end_inset
15569
15570
15571 \end_layout
15572
15573 \end_inset
15574
15575
15576 \begin_inset ERT
15577 status collapsed
15578
15579 \begin_layout Standard
15580
15581
15582 \backslash
15583 renewcommand{
15584 \backslash
15585 hline}{
15586 \backslash
15587 myHline}
15588 \end_layout
15589
15590 \end_inset
15591
15592
15593 \end_layout
15594
15595 \begin_layout Standard
15596 \begin_inset VSpace bigskip
15597 \end_inset
15598
15599 Para establacer grosor de 1.5 pt sólo para líneas verticales, crea el siguiente
15600  formato de columna en el preámbulo del documento, de acuerdo con lo descrito
15601  en la sección\InsetSpace ~
15602
15603 \begin_inset LatexCommand ref
15604 reference "sub:Formato-Personalizado"
15605
15606 \end_inset
15607
15608 :
15609 \end_layout
15610
15611 \begin_layout Standard
15612
15613 \series bold
15614
15615 \backslash
15616 newcolumntype{V}{!{
15617 \backslash
15618 vrule width 1.5pt}}
15619 \end_layout
15620
15621 \begin_layout Standard
15622 Para la Tabla\InsetSpace ~
15623
15624 \begin_inset LatexCommand ref
15625 reference "tab:Tabla-con-verticales"
15626
15627 \end_inset
15628
15629  se usó el argumento LaTeX
15630 \end_layout
15631
15632 \begin_layout Standard
15633
15634 \series bold
15635 VcV
15636 \end_layout
15637
15638 \begin_layout Standard
15639 para la última columna y
15640 \end_layout
15641
15642 \begin_layout Standard
15643
15644 \series bold
15645 Vc
15646 \end_layout
15647
15648 \begin_layout Standard
15649 para las otras.
15650 \end_layout
15651
15652 \begin_layout Standard
15653 \begin_inset Float table
15654 wide false
15655 sideways false
15656 status open
15657
15658 \begin_layout Caption
15659 \begin_inset LatexCommand label
15660 name "tab:Tabla-con-verticales"
15661
15662 \end_inset
15663
15664 Tabla con líneas verticales de 1.5\InsetSpace \thinspace{}
15665 pt de grosor
15666 \end_layout
15667
15668 \begin_layout Standard
15669 \align center
15670 \begin_inset Tabular
15671 <lyxtabular version="3" rows="3" columns="3">
15672 <features>
15673 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
15674 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
15675 <column alignment="center" valignment="top" leftline="true" width="0" special="VcV">
15676 <row topline="true">
15677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15678 \begin_inset Text
15679
15680 \begin_layout Standard
15681 sd
15682 \end_layout
15683
15684 \end_inset
15685 </cell>
15686 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15687 \begin_inset Text
15688
15689 \begin_layout Standard
15690
15691 \end_layout
15692
15693 \end_inset
15694 </cell>
15695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15696 \begin_inset Text
15697
15698 \begin_layout Standard
15699
15700 \end_layout
15701
15702 \end_inset
15703 </cell>
15704 </row>
15705 <row topline="true">
15706 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15707 \begin_inset Text
15708
15709 \begin_layout Standard
15710
15711 \end_layout
15712
15713 \end_inset
15714 </cell>
15715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15716 \begin_inset Text
15717
15718 \begin_layout Standard
15719 sd
15720 \end_layout
15721
15722 \end_inset
15723 </cell>
15724 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15725 \begin_inset Text
15726
15727 \begin_layout Standard
15728
15729 \end_layout
15730
15731 \end_inset
15732 </cell>
15733 </row>
15734 <row topline="true" bottomline="true">
15735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15736 \begin_inset Text
15737
15738 \begin_layout Standard
15739
15740 \end_layout
15741
15742 \end_inset
15743 </cell>
15744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15745 \begin_inset Text
15746
15747 \begin_layout Standard
15748
15749 \end_layout
15750
15751 \end_inset
15752 </cell>
15753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15754 \begin_inset Text
15755
15756 \begin_layout Standard
15757 sd
15758 \end_layout
15759
15760 \end_inset
15761 </cell>
15762 </row>
15763 </lyxtabular>
15764
15765 \end_inset
15766
15767
15768 \end_layout
15769
15770 \end_inset
15771
15772
15773 \end_layout
15774
15775 \begin_layout Subsection
15776 Líneas de Trazos
15777 \begin_inset LatexCommand index
15778 name "Personalización de Tablas ! Líneas de Trazos"
15779
15780 \end_inset
15781
15782
15783 \end_layout
15784
15785 \begin_layout Standard
15786 \begin_inset Float table
15787 placement H
15788 wide false
15789 sideways false
15790 status open
15791
15792 \begin_layout Caption
15793 \begin_inset LatexCommand label
15794 name "tab:Tabla-con-trazos"
15795
15796 \end_inset
15797
15798 Tabla con líneas de trazos
15799 \end_layout
15800
15801 \begin_layout Standard
15802 \align center
15803 \begin_inset Tabular
15804 <lyxtabular version="3" rows="5" columns="5">
15805 <features>
15806 <column alignment="center" valignment="top" leftline="true" width="0">
15807 <column alignment="center" valignment="top" leftline="true" width="0">
15808 <column alignment="center" valignment="top" width="0" special=":c">
15809 <column alignment="center" valignment="top" leftline="true" width="0">
15810 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
15811 <row topline="true" bottomline="true">
15812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15813 \begin_inset Text
15814
15815 \begin_layout Standard
15816 a
15817 \end_layout
15818
15819 \end_inset
15820 </cell>
15821 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15822 \begin_inset Text
15823
15824 \begin_layout Standard
15825 b
15826 \end_layout
15827
15828 \end_inset
15829 </cell>
15830 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15831 \begin_inset Text
15832
15833 \begin_layout Standard
15834 c
15835 \end_layout
15836
15837 \end_inset
15838 </cell>
15839 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15840 \begin_inset Text
15841
15842 \begin_layout Standard
15843 d
15844 \end_layout
15845
15846 \end_inset
15847 </cell>
15848 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15849 \begin_inset Text
15850
15851 \begin_layout Standard
15852 e
15853 \end_layout
15854
15855 \end_inset
15856 </cell>
15857 </row>
15858 <row topline="true">
15859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15860 \begin_inset Text
15861
15862 \begin_layout Standard
15863 f
15864 \end_layout
15865
15866 \end_inset
15867 </cell>
15868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15869 \begin_inset Text
15870
15871 \begin_layout Standard
15872 g
15873 \end_layout
15874
15875 \end_inset
15876 </cell>
15877 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15878 \begin_inset Text
15879
15880 \begin_layout Standard
15881 h
15882 \end_layout
15883
15884 \end_inset
15885 </cell>
15886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15887 \begin_inset Text
15888
15889 \begin_layout Standard
15890 i
15891 \end_layout
15892
15893 \end_inset
15894 </cell>
15895 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15896 \begin_inset Text
15897
15898 \begin_layout Standard
15899 j
15900 \end_layout
15901
15902 \end_inset
15903 </cell>
15904 </row>
15905 <row>
15906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15907 \begin_inset Text
15908
15909 \begin_layout Standard
15910 \begin_inset ERT
15911 status collapsed
15912
15913 \begin_layout Standard
15914
15915
15916 \backslash
15917 hdashline 
15918 \end_layout
15919
15920 \end_inset
15921
15922 k
15923 \end_layout
15924
15925 \end_inset
15926 </cell>
15927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15928 \begin_inset Text
15929
15930 \begin_layout Standard
15931 l
15932 \end_layout
15933
15934 \end_inset
15935 </cell>
15936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15937 \begin_inset Text
15938
15939 \begin_layout Standard
15940 m
15941 \end_layout
15942
15943 \end_inset
15944 </cell>
15945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15946 \begin_inset Text
15947
15948 \begin_layout Standard
15949 n
15950 \end_layout
15951
15952 \end_inset
15953 </cell>
15954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15955 \begin_inset Text
15956
15957 \begin_layout Standard
15958 o
15959 \end_layout
15960
15961 \end_inset
15962 </cell>
15963 </row>
15964 <row topline="true">
15965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15966 \begin_inset Text
15967
15968 \begin_layout Standard
15969 \begin_inset ERT
15970 status collapsed
15971
15972 \begin_layout Standard
15973
15974
15975 \backslash
15976 cdashline{4-5}
15977 \end_layout
15978
15979 \end_inset
15980
15981 p
15982 \end_layout
15983
15984 \end_inset
15985 </cell>
15986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15987 \begin_inset Text
15988
15989 \begin_layout Standard
15990 q
15991 \end_layout
15992
15993 \end_inset
15994 </cell>
15995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
15996 \begin_inset Text
15997
15998 \begin_layout Standard
15999 r
16000 \end_layout
16001
16002 \end_inset
16003 </cell>
16004 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
16005 \begin_inset Text
16006
16007 \begin_layout Standard
16008 s
16009 \end_layout
16010
16011 \end_inset
16012 </cell>
16013 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16014 \begin_inset Text
16015
16016 \begin_layout Standard
16017
16018 \end_layout
16019
16020 \end_inset
16021 </cell>
16022 </row>
16023 <row topline="true" bottomline="true">
16024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16025 \begin_inset Text
16026
16027 \begin_layout Standard
16028 t
16029 \end_layout
16030
16031 \end_inset
16032 </cell>
16033 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16034 \begin_inset Text
16035
16036 \begin_layout Standard
16037 u
16038 \end_layout
16039
16040 \end_inset
16041 </cell>
16042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16043 \begin_inset Text
16044
16045 \begin_layout Standard
16046 v
16047 \end_layout
16048
16049 \end_inset
16050 </cell>
16051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16052 \begin_inset Text
16053
16054 \begin_layout Standard
16055 w
16056 \end_layout
16057
16058 \end_inset
16059 </cell>
16060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16061 \begin_inset Text
16062
16063 \begin_layout Standard
16064 x
16065 \end_layout
16066
16067 \end_inset
16068 </cell>
16069 </row>
16070 </lyxtabular>
16071
16072 \end_inset
16073
16074
16075 \end_layout
16076
16077 \end_inset
16078
16079
16080 \end_layout
16081
16082 \begin_layout Standard
16083 En principio LyX no soporta líneas de trazos, hay que usar ERT.
16084  Hay que cargar antes en el preámbulo del documento el paquete LaTeX 
16085 \series bold
16086 arydshln
16087 \series default
16088
16089 \begin_inset LatexCommand index
16090 name "LaTeX-paquetes ! arydshln"
16091
16092 \end_inset
16093
16094  
16095 \end_layout
16096
16097 \begin_layout Standard
16098
16099 \series bold
16100
16101 \backslash
16102 usepackage{arydshln}
16103 \end_layout
16104
16105 \begin_layout Standard
16106 Para hacer una línea vertical a trazos, introduce dos puntos ":" junto con
16107  el caracter para alineación horizontal como argumento LaTeX en el diálogo
16108  de celda de tabla.
16109 \end_layout
16110
16111 \begin_layout Standard
16112 Para una línea de trazos horizontal añade el comando
16113 \end_layout
16114
16115 \begin_layout Standard
16116
16117 \series bold
16118
16119 \backslash
16120 hdashline
16121 \end_layout
16122
16123 \begin_layout Standard
16124 en ERT como primer elemento de la primera celda en la fila.
16125 \end_layout
16126
16127 \begin_layout Standard
16128 Para líneas de trazos en multicolumna usa el comandoi
16129 \end_layout
16130
16131 \begin_layout Standard
16132
16133 \series bold
16134
16135 \backslash
16136 cdashline{line number
16137 \series default
16138 }
16139 \end_layout
16140
16141 \begin_layout Standard
16142 en ERT como primer elemento de la primera celda en la fila.
16143  Si por ejemplo tienes una multicolumna extendida sobre las columnas 2 a
16144  4 y quieres una línea de trazos por encima, añade el comando
16145 \end_layout
16146
16147 \begin_layout Standard
16148
16149 \series bold
16150
16151 \backslash
16152 cdashline{2-4}
16153 \end_layout
16154
16155 \begin_layout Standard
16156 como primer elemento de la primera celda en la fila de la multicolumna.
16157 \end_layout
16158
16159 \begin_layout Standard
16160 \begin_inset VSpace bigskip
16161 \end_inset
16162
16163
16164 \end_layout
16165
16166 \begin_layout Standard
16167 La Tabla\InsetSpace ~
16168
16169 \begin_inset LatexCommand ref
16170 reference "tab:Tabla-con-trazos"
16171
16172 \end_inset
16173
16174  se ha hecho usando "
16175 \series bold
16176 :c
16177 \series default
16178 " como argumento LaTeX de la tercera columna.
16179  El comando ERT 
16180 \series bold
16181
16182 \backslash
16183 hdashline
16184 \series default
16185  se ha insertado en la primera celda de la tercera fila y el comando ERT
16186 \newline
16187
16188 \series bold
16189
16190 \backslash
16191 cdashline{4-5}
16192 \series default
16193  en la primera celda de la cuarta fila.
16194 \end_layout
16195
16196 \begin_layout Standard
16197 \begin_inset Note Greyedout
16198 status open
16199
16200 \begin_layout Standard
16201
16202 \series bold
16203 Nota: 
16204 \series default
16205 Aparentemente el paquete LaTeX 
16206 \series bold
16207 arydshln
16208 \series default
16209  no es compatible con el paquete LaTeX 
16210 \series bold
16211 colortbl
16212 \series default
16213
16214 \begin_inset LatexCommand index
16215 name "LaTeX-paquetes ! colortbl"
16216
16217 \end_inset
16218
16219  que se usa para tablas coloreadas en la sección\InsetSpace ~
16220
16221 \begin_inset LatexCommand ref
16222 reference "sec:Tablas-Coloreadas"
16223
16224 \end_inset
16225
16226 .
16227  Esto implica que las tablas coloreadas no pueden tener líneas de trazos.
16228 \end_layout
16229
16230 \end_inset
16231
16232
16233 \end_layout
16234
16235 \begin_layout Chapter
16236 Flotantes
16237 \begin_inset LatexCommand label
16238 name "cha:Floats"
16239
16240 \end_inset
16241
16242
16243 \begin_inset LatexCommand index
16244 name "Flotantes"
16245
16246 \end_inset
16247
16248
16249 \end_layout
16250
16251 \begin_layout Section
16252 Introducción
16253 \begin_inset LatexCommand label
16254 name "sec:IntroducciónFlotantes"
16255
16256 \end_inset
16257
16258
16259 \begin_inset LatexCommand index
16260 name "Flotantes ! Introducción"
16261
16262 \end_inset
16263
16264
16265 \end_layout
16266
16267 \begin_layout Standard
16268 Un flotante es un bloque de texto asociado con alguna especie de etiqueta
16269  que no tiene posición fija.
16270  Puede "flotar" adelante o atrás una o dos páginas, donde encaje mejor.
16271  Las 
16272 \family sans
16273 Notas\InsetSpace ~
16274 al\InsetSpace ~
16275 pie
16276 \family default
16277  y 
16278 \family sans
16279 Notas\InsetSpace ~
16280 al\InsetSpace ~
16281 margen
16282 \family default
16283  también son flotantes, porque pueden flotar a la página siguiente cuando
16284  hay demasiadas notas en la página.
16285 \end_layout
16286
16287 \begin_layout Standard
16288 Los flotantes hacen posible composiciones de alta calidad.
16289  Imágenes y tablas se pueden distribuir equitativamente en las páginas para
16290  impedir espacios en blanco y páginas sin texto.
16291  Como el flotante destruye a menudo el contexto entre texto e imagen/tabla,
16292  cada flotante puede estar referido en el texto.
16293  Por lo tanto los flotantes están numerados.
16294  Las referencias se describen en la sección\InsetSpace ~
16295
16296 \begin_inset LatexCommand ref
16297 reference "sec:Referencias-a-Flotantes"
16298
16299 \end_inset
16300
16301  .
16302 \end_layout
16303
16304 \begin_layout Standard
16305 Para insertar un flotante, usa el menú 
16306 \family sans
16307 Insertar\SpecialChar \menuseparator
16308 Flotante
16309 \family default
16310 .
16311  En el documento se inserta un cuadro con etiqueta en el entorno 
16312 \family sans
16313 Encabezado
16314 \begin_inset Foot
16315 status collapsed
16316
16317 \begin_layout Standard
16318 El entorno 
16319 \family sans
16320 Encabezado
16321 \family default
16322  se describe en 
16323 \emph on
16324 Guía\InsetSpace ~
16325 del\InsetSpace ~
16326 Usuario 
16327 \emph default
16328 de LyX.
16329 \end_layout
16330
16331 \end_inset
16332
16333 .
16334
16335 \family default
16336  Cada etiqueta acaba con el caracter "#" como receptáculo para el número
16337  de flotante en la salida.
16338  La etiqueta será traducida automáticamente al lenguaje del documento.
16339  Tras la etiqueta se puede insertar el texto de encabezado.
16340  La imagen o tabla se inserta encima o debajo del encabezado en un párrafo
16341  separado dentro del flotante.
16342  Más sobre colocación de encabezados se describe en la sección\InsetSpace ~
16343
16344 \begin_inset LatexCommand ref
16345 reference "sec:Colocación-de-Encabezados"
16346
16347 \end_inset
16348
16349 .
16350  Para mantener legible el documento LyX, puedes abrir y cerrar el cuadro
16351  del flotante haciendo click-izquierda sobre ella.
16352  Un cuadro cerrado se muestra así: 
16353 \begin_inset Graphics
16354         filename ../clipart/flotante.png
16355         scale 70
16356
16357 \end_inset
16358
16359  -- un cuadro gris con etiqueta en rojo.
16360 \end_layout
16361
16362 \begin_layout Standard
16363 Se recomienda insertar flotantes como párrafos separados para evitar posibles
16364  errores de LaTeX si el texto circundante se formatea de modo especial.
16365 \end_layout
16366
16367 \begin_layout Standard
16368 Figuras o tablas ya existentes pueden ponerse en un flotante marcándolas
16369  y pinchando el botón correspondiente de la barra de herramientas para un
16370  flotante nuevo.
16371 \end_layout
16372
16373 \begin_layout Section
16374 Tipos de Flotantes
16375 \end_layout
16376
16377 \begin_layout Standard
16378 Además de los flotantes de imagen y de tabla que se describen en la sección\InsetSpace ~
16379
16380 \begin_inset LatexCommand ref
16381 reference "sec:Figuras-Flotantes"
16382
16383 \end_inset
16384
16385  y 
16386 \begin_inset LatexCommand ref
16387 reference "sec:Tablas-Flotantes"
16388
16389 \end_inset
16390
16391 , respectivamente, LyX ofrece los tipos 
16392 \series bold
16393 Algoritmo
16394 \series default
16395  y 
16396 \series bold
16397 Ajustado\InsetSpace ~
16398 al\InsetSpace ~
16399 Texto
16400 \series default
16401 .
16402 \end_layout
16403
16404 \begin_layout Subsection
16405 Algoritmos Flotantes
16406 \begin_inset LatexCommand index
16407 name "Flotantes ! Algoritmos Flotantes"
16408
16409 \end_inset
16410
16411
16412 \end_layout
16413
16414 \begin_layout Standard
16415 \begin_inset Float algorithm
16416 placement h
16417 wide false
16418 sideways false
16419 status open
16420
16421 \begin_layout Caption
16422 \begin_inset LatexCommand label
16423 name "alg:Ejemplo-de-Algoritmo-flotante"
16424
16425 \end_inset
16426
16427 Ejemplo de Algoritmo flotante
16428 \end_layout
16429
16430 \begin_layout LyX-Code
16431 for I in 1..N loop
16432 \newline
16433  Sum:= Sum + A(I); /*senseless comment*/
16434 \newline
16435 end loop
16436 \begin_inset VSpace -4mm
16437 \end_inset
16438
16439
16440 \end_layout
16441
16442 \end_inset
16443
16444
16445 \end_layout
16446
16447 \begin_layout Standard
16448 Este tipo de flotante se inserta con el menú 
16449 \family sans
16450 Insertar\SpecialChar \menuseparator
16451 Flotante\SpecialChar \menuseparator
16452 Algoritmo
16453 \family default
16454 .
16455  Se usa para códigos y descripciones de algoritmos.
16456  Un posible entorno para algoritmos es 
16457 \family sans
16458 Código-LyX
16459 \family default
16460 , descrito en 
16461 \emph on
16462 Guía del Usuario
16463 \emph default
16464  de LyX.
16465  El algoritmo\InsetSpace ~
16466
16467 \begin_inset LatexCommand ref
16468 reference "alg:Ejemplo-de-Algoritmo-flotante"
16469
16470 \end_inset
16471
16472  es un ejemplo de algoritmo flotante en el que se ha añadido un espacio
16473  vertical de -4\InsetSpace \thinspace{}
16474 mm al final para tener la línea inferior exactamente bajo
16475  la última línea de texto.
16476 \end_layout
16477
16478 \begin_layout Standard
16479 La etiqueta de flotante no se traduce automáticamente al lenguaje del documento.
16480  Si tu documento no es en Inglés, tienes que hacerlo manualmente añadiendo
16481  la siguiente línea al preámbulo del documento
16482 \series bold
16483 :
16484 \end_layout
16485
16486 \begin_layout Standard
16487
16488 \series bold
16489
16490 \backslash
16491 floatname{algorithm}{nombre}
16492 \end_layout
16493
16494 \begin_layout Standard
16495
16496 \family sans
16497 nombre
16498 \family default
16499  es la palabra
16500 \begin_inset Quotes eld
16501 \end_inset
16502
16503
16504 \emph on
16505 algorithm
16506 \emph default
16507
16508 \begin_inset Quotes erd
16509 \end_inset
16510
16511  en el lenguaje deseado.
16512 \end_layout
16513
16514 \begin_layout Description
16515
16516 \series bold
16517 Nota: 
16518 \series default
16519 Si se emplea el paquete LaTeX 
16520 \series bold
16521 hyperref
16522 \series default
16523
16524 \begin_inset LatexCommand index
16525 name "LaTeX-paquetes ! hyperref"
16526
16527 \end_inset
16528
16529  para enlazar referencias cruzadas a flotantes en la salida PDF, debe cargarse
16530  en el preámbulo LaTeX antes de la definición de flotantes para poder referirse
16531  a ellos.
16532  LyX establace la definición de algoritmos flotantes automáticamente antes
16533  que la parte del preámbulo editabla por el usuario, así que hay que insertar
16534  las siguientes líneas 
16535 \emph on
16536 después
16537 \emph default
16538  de cargar el comando
16539 \series bold
16540  hyperref:
16541 \begin_inset VSpace defskip
16542 \end_inset
16543
16544
16545 \newline
16546
16547 \backslash
16548 newfloat{Xalgorithm}{tbp}{loa}
16549 \newline
16550
16551 \backslash
16552 floatname{Xalgorithm}{nombre}
16553 \newline
16554
16555 \backslash
16556 newcommand{
16557 \backslash
16558 theHalgorithm}{
16559 \backslash
16560 theHXalgorithm}
16561 \newline
16562
16563 \backslash
16564 renewenvironment{algorithm}[1][tbp]
16565 \newline
16566
16567 \begin_inset ERT
16568 status collapsed
16569
16570 \begin_layout Standard
16571
16572
16573 \backslash
16574 hphantom{ }
16575 \end_layout
16576
16577 \end_inset
16578
16579 {
16580 \backslash
16581 begin{Xalgorithm}[#1]}{
16582 \backslash
16583 end{Xalgorithm}}
16584 \begin_inset VSpace defskip
16585 \end_inset
16586
16587
16588 \series default
16589
16590 \newline
16591 Donde 
16592 \family sans
16593 nombre
16594 \family default
16595  es la palabra "
16596 \emph on
16597 algorithm
16598 \emph default
16599 " en el lenguaje deseado.
16600 \end_layout
16601
16602 \begin_layout Standard
16603 Los algoritmos flotantes no se numeran por defecto en el esquema "capítulo.algori
16604 tmo" como es el caso para tablas e imágenes flotantes en muchas clases de
16605  documento.
16606  Para numerar algoritmos flotantes en el mismo esquema, añade este comando
16607  en el preámbulo del documento:
16608 \end_layout
16609
16610 \begin_layout Standard
16611
16612 \series bold
16613
16614 \backslash
16615 numberwithin{algorithm}{chapter}
16616 \end_layout
16617
16618 \begin_layout Standard
16619 Si usas el paquete LaTeX 
16620 \series bold
16621 hyperref
16622 \series default
16623 , añade en su lugar esta línea 
16624 \emph on
16625 después
16626 \emph default
16627  de la definición de 
16628 \family sans
16629 Xalgorithm
16630 \family default
16631  (los comandos de arriba) en el preámbulo:
16632 \end_layout
16633
16634 \begin_layout Standard
16635
16636 \series bold
16637
16638 \backslash
16639 numberwithin{Xalgorithm}{chapter}
16640 \end_layout
16641
16642 \begin_layout Standard
16643 Para poder usar el comando 
16644 \series bold
16645
16646 \backslash
16647 numberwithin
16648 \series default
16649 , marca en el menú
16650 \newline
16651  
16652 \family sans
16653 Documento\SpecialChar \menuseparator
16654 Configuración\SpecialChar \menuseparator
16655 Ecuaciones
16656 \family default
16657  la opción 
16658 \family sans
16659 Usar\InsetSpace ~
16660 el\InsetSpace ~
16661 paquete\InsetSpace ~
16662 AMS
16663 \family default
16664 .
16665 \end_layout
16666
16667 \begin_layout Subsection
16668 Flotantes Ajustados a Texto
16669 \begin_inset LatexCommand index
16670 name "Flotantes ! Ajustados a Texto"
16671
16672 \end_inset
16673
16674
16675 \begin_inset LatexCommand label
16676 name "sub:floatflt-flotante-ajustado"
16677
16678 \end_inset
16679
16680
16681 \end_layout
16682
16683 \begin_layout Standard
16684 Este tipo de flotante se usa cuando quieres envolver una figura en el texto,
16685  de manera que ocupe solo una parte del ancho de columna.
16686  Puede insertarse usando el menú 
16687 \begin_inset Wrap figure
16688 placement l
16689 width "40col%"
16690 status open
16691
16692 \begin_layout Standard
16693 \begin_inset Graphics
16694         filename ../clipart/mobius.pdf
16695         display color
16696         width 40col%
16697         rotateOrigin center
16698
16699 \end_inset
16700
16701
16702 \end_layout
16703
16704 \begin_layout Caption
16705 \begin_inset LatexCommand label
16706 name "fig:Esto-es-una"
16707
16708 \end_inset
16709
16710 Esto es una figura envuelta, y esto la genial cabecera que la describe.
16711 \begin_inset VSpace medskip
16712 \end_inset
16713
16714
16715 \end_layout
16716
16717 \end_inset
16718
16719  
16720 \family sans
16721 Insertar\SpecialChar \menuseparator
16722 Flotante\SpecialChar \menuseparator
16723 Flotante\InsetSpace ~
16724 de\InsetSpace ~
16725 ajuste\InsetSpace ~
16726 de\InsetSpace ~
16727 texto
16728 \family default
16729  si está instalado el paquete LaTeX 
16730 \series bold
16731 floatflt
16732 \series default
16733
16734 \begin_inset LatexCommand index
16735 name "LaTeX-paquetes ! floatflt"
16736
16737 \end_inset
16738
16739 .
16740 \begin_inset Foot
16741 status collapsed
16742
16743 \begin_layout Standard
16744 La instalación de paquetes LaTeX se explica en el manual 
16745 \emph on
16746 Configuration de LaTeX
16747 \emph default
16748 .
16749 \end_layout
16750
16751 \end_inset
16752
16753  La anchura y posición del flotante se ajusta con click-derecha sobre el
16754  cuadro del flotante.
16755  La Figura \InsetSpace ~
16756
16757 \begin_inset LatexCommand ref
16758 reference "fig:Esto-es-una"
16759
16760 \end_inset
16761
16762  es un ejemplo de flotante ajustado a texto con una anchura del 40\InsetSpace \thinspace{}
16763 col%.
16764 \begin_inset Foot
16765 status collapsed
16766
16767 \begin_layout Standard
16768 Ver unidades disponibles en\InsetSpace ~
16769
16770 \begin_inset LatexCommand ref
16771 reference "cha:Unidades-disponibles-en"
16772
16773 \end_inset
16774
16775 .
16776 \end_layout
16777
16778 \end_inset
16779
16780  Se ha añadido algún espacio bajo el encabezado para separarlo mejor del
16781  texto envolvente.
16782 \end_layout
16783
16784 \begin_layout Standard
16785 El paquete LaTeX 
16786 \series bold
16787 floatflt
16788 \series default
16789  también soporta tablas ajustadas a texto pero aún no es soportado por LyX.
16790  Si lo necesitas, consulta la documentoación de 
16791 \series bold
16792 floatflt
16793 \series default
16794  
16795 \begin_inset LatexCommand cite
16796 key "floatflt"
16797
16798 \end_inset
16799
16800 .
16801 \end_layout
16802
16803 \begin_layout Standard
16804 \begin_inset Note Greyedout
16805 status open
16806
16807 \begin_layout Standard
16808
16809 \series bold
16810 Nota:
16811 \series default
16812  ¡Los flotantes ajustados a texto son frágiles! P.
16813  e.
16814  si una figura está demasiado cerca de la parte inferior de la página se
16815  pueden perder cosas en el camino de salida, el flotante puede no aparecer
16816  o situarse junto a otro texto.
16817 \begin_inset Foot
16818 status collapsed
16819
16820 \begin_layout Standard
16821 La mejor solución es usar el paquete LaTeX 
16822 \series bold
16823 wrapfig
16824 \series default
16825
16826 \begin_inset LatexCommand index
16827 name "LaTeX-paquetes ! wrapfig\\vspace{4mm}"
16828
16829 \end_inset
16830
16831  en vez de 
16832 \series bold
16833 floatflt
16834 \series default
16835  pero actualmente no es soportado por LyX.
16836 \end_layout
16837
16838 \end_inset
16839
16840
16841 \end_layout
16842
16843 \end_inset
16844
16845
16846 \end_layout
16847
16848 \begin_layout Standard
16849 En general:
16850 \end_layout
16851
16852 \begin_layout Itemize
16853 Los flotantes ajustados no deberían situarse en párrafos que van sobre un
16854  salto de página.
16855  Esto implica que lo mejor es insertarlos en el sitio exacto cuando el documento
16856  esté casi listo y puedas prever los saltos de página.
16857 \end_layout
16858
16859 \begin_layout Itemize
16860 Los flotantes ajustados deberían situarse, bien en un párrafo propio antes
16861  del párrafo donde deben ajustarse, o bien dentro de un párrafo.
16862 \end_layout
16863
16864 \begin_layout Itemize
16865 Los flotantes ajustados en párrafos consecutivos pueden dar problemas, así
16866  que asegura que hay un párrafo de texto entre ellos.
16867 \end_layout
16868
16869 \begin_layout Itemize
16870 Los flotantes ajustados no están permitidos en cabeceras de sección o tablas.
16871 \end_layout
16872
16873 \begin_layout Section
16874 Referencias a Flotantes
16875 \begin_inset LatexCommand label
16876 name "sec:Referencias-a-Flotantes"
16877
16878 \end_inset
16879
16880
16881 \begin_inset LatexCommand index
16882 name "Flotantes ! Referencias"
16883
16884 \end_inset
16885
16886
16887 \begin_inset LatexCommand index
16888 name "Referencias"
16889
16890 \end_inset
16891
16892
16893 \end_layout
16894
16895 \begin_layout Standard
16896 Para referirse a un flotante, inserta una etiqueta en su encabezado con
16897  el menú 
16898 \family sans
16899 Insertar\SpecialChar \menuseparator
16900 Etiqueta
16901 \family default
16902  o el botón 
16903 \begin_inset Graphics
16904         filename ../images/label-insert.xpm
16905         scale 85
16906
16907 \end_inset
16908
16909 .
16910  Aparece una ventana esperando la introducción del texto de la etiqueta
16911  y se inserta un cuadro gris como este: 
16912 \begin_inset Graphics
16913         filename ../clipart/etiqueta.png
16914         scale 85
16915
16916 \end_inset
16917
16918 .
16919  LyX ofrece como texto las primeras palabras del encabezado con un prefijo.
16920  El prefijo depende del tipo de flotante, p.\InsetSpace \thinspace{}
16921 e.
16922  para figuras el prefijo será "
16923 \family sans
16924 fig:
16925 \family default
16926 ".
16927 \end_layout
16928
16929 \begin_layout Standard
16930 La etiqueta se usa como ancla y el nombre para la referencia.
16931  Puedes referir a la etiqueta usando el menú 
16932 \family sans
16933 Insertar\SpecialChar \menuseparator
16934 Referencia
16935 \family default
16936 \InsetSpace ~
16937
16938 \family sans
16939 cruzada
16940 \family default
16941  o el botón 
16942 \begin_inset Graphics
16943         filename ../images/dialog-show-new-inset_ref.xpm
16944         scale 85
16945
16946 \end_inset
16947
16948 .
16949  Aparece una ventana de referencia cruzada con todas las etiquetas del documento.
16950  Si tienes abiertos varios documentos LyX, escoge el que estás trabajando
16951  de la lista desplegable de la parte superior del diálogo.
16952  Puedes ordenar las etiquetas alfabéticamente y elegir una.
16953  Se inserta un cuadro gris como este: 
16954 \begin_inset Graphics
16955         filename ../clipart/referencia2.png
16956         scale 85
16957
16958 \end_inset
16959
16960 .
16961  En la salida, en lugar de este cuadro aparecerá el número de la referencia.
16962 \end_layout
16963
16964 \begin_layout Standard
16965 Se recomienda poner un espacio protegido entre el nombre de la referencia
16966  cruzada y su número para evitar saltos de línea entre ellos.
16967  Si una referencia cruzada corresponde a una etiqueta inexistente verás
16968  dos interrogaciones en la salida.
16969 \end_layout
16970
16971 \begin_layout Standard
16972 En cualquier momento puedes cambiar etiquetas haciendo click sobre el cuadro.
16973  Las referencias a las etiquetas cambiadas cambian automáticamente su enlace
16974  al texto de la etiqueta nueva, no te ocupes por eso.
16975 \end_layout
16976
16977 \begin_layout Standard
16978 El botón 
16979 \family sans
16980 Ir\InsetSpace ~
16981 a\InsetSpace ~
16982 la\InsetSpace ~
16983 etiqueta
16984 \family default
16985  en la ventana de referencia cruzada lleva el cursor hasta dicha etiqueta,
16986  y el texto del botón cambia a 
16987 \family sans
16988 Volver
16989 \family default
16990  con el que se puede retornar a la referencia.
16991  Click-derecha sobre el cuadro de la referencia también lleva el cursor
16992  hasta la etiqueta pero sin opción de volver.
16993 \end_layout
16994
16995 \begin_layout Subsection
16996 Formatos de Referencia Cruzada
16997 \begin_inset LatexCommand label
16998 name "sub:Formatos-referencia-cruzada"
16999
17000 \end_inset
17001
17002
17003 \begin_inset LatexCommand index
17004 name "Referencias ! Formatos"
17005
17006 \end_inset
17007
17008
17009 \end_layout
17010
17011 \begin_layout Standard
17012 Hay seis variedades de referencias cruzadas:
17013 \end_layout
17014
17015 \begin_layout Description
17016 <referencia>: imprime el número flotante, esta es la opción predeterminada:
17017  
17018 \begin_inset LatexCommand ref
17019 reference "fig:Dos-imágenes-distorsionadas"
17020
17021 \end_inset
17022
17023
17024 \end_layout
17025
17026 \begin_layout Description
17027 (<referencia>): imprime el número flotante entre paréntesis, es el estilo
17028  habitual para referirse a fórmulas, especialmente si se omite el nombre
17029  "Ecuación": 
17030 \begin_inset LatexCommand eqref
17031 reference "eq:Wgn"
17032
17033 \end_inset
17034
17035
17036 \end_layout
17037
17038 \begin_layout Description
17039 <página>: imprime el número de página: Página\InsetSpace ~
17040
17041 \begin_inset LatexCommand pageref
17042 reference "fig:Dos-imágenes-distorsionadas"
17043
17044 \end_inset
17045
17046
17047 \end_layout
17048
17049 \begin_layout Description
17050 en\InsetSpace ~
17051 página\InsetSpace ~
17052 <página>: imprime el texto "en la página" y el número de página:
17053  
17054 \begin_inset LatexCommand vpageref
17055 reference "fig:Dos-imágenes-distorsionadas"
17056
17057 \end_inset
17058
17059
17060 \end_layout
17061
17062 \begin_layout Description
17063 <referencia>\InsetSpace ~
17064 en\InsetSpace ~
17065 página\InsetSpace ~
17066 <página>: imprime el número flotante, el texto "en la
17067  página" y el número de página: 
17068 \begin_inset LatexCommand vref
17069 reference "fig:Dos-imágenes-distorsionadas"
17070
17071 \end_inset
17072
17073
17074 \end_layout
17075
17076 \begin_layout Description
17077 Referencia\InsetSpace ~
17078 con\InsetSpace ~
17079 formato: imprime un formato autodefinido:
17080 \newline
17081
17082 \begin_inset LatexCommand prettyref
17083 reference "fig:Dos-imágenes-distorsionadas"
17084
17085 \end_inset
17086
17087
17088 \end_layout
17089
17090 \begin_layout Standard
17091 Ten en cuenta que el estilo <página> no imprime el número si la etiqueta
17092  está en la misma página, en la anterior o en la siguiente.
17093  En su lugar verás p.\InsetSpace \thinspace{}
17094 e.
17095  el texto "
17096 \family sans
17097 en esta página
17098 \family default
17099 ".
17100 \end_layout
17101
17102 \begin_layout Standard
17103 El número y página actual de la parte del documento referida es automáticamente
17104  calculado por LaTeX en la salida.
17105  Las variedades se ajustan en el campo 
17106 \family sans
17107 Formato
17108 \family default
17109  de la ventana de referencia cruzada, que aparece al pinchar sobre el cuadro.
17110 \end_layout
17111
17112 \begin_layout Standard
17113 \begin_inset VSpace bigskip
17114 \end_inset
17115
17116
17117 \end_layout
17118
17119 \begin_layout Standard
17120 Para definir un formato en el estilo 
17121 \family sans
17122 Referencia\InsetSpace ~
17123 con\InsetSpace ~
17124 formato
17125 \family default
17126 , puedes usar el siguiente comando en el preámbulo del documento:
17127 \end_layout
17128
17129 \begin_layout Standard
17130
17131 \series bold
17132
17133 \backslash
17134 newrefformat{prefijo}{texto}
17135 \end_layout
17136
17137 \begin_layout Standard
17138 Este comando afecta a todas las referencias a etiquetas con el mismo prefijo.
17139  Para dar el formato de la 
17140 \family sans
17141 Referencia\InsetSpace ~
17142 con\InsetSpace ~
17143 formato
17144 \family default
17145  del ejemplo anterior se usó el comando: 
17146 \end_layout
17147
17148 \begin_layout Standard
17149
17150 \series bold
17151
17152 \backslash
17153 newrefformat{fig}
17154 \newline
17155
17156 \begin_inset ERT
17157 status collapsed
17158
17159 \begin_layout Standard
17160
17161
17162 \backslash
17163 hphantom{ }
17164 \end_layout
17165
17166 \end_inset
17167
17168 {Figura~flotante~
17169 \backslash
17170 ref{#1} impresa en página~
17171 \backslash
17172 pageref{#1}}
17173 \end_layout
17174
17175 \begin_layout Standard
17176 La tilde "~" es el equivalente en LaTeX al espacio protegido.
17177  El comando 
17178 \series bold
17179
17180 \backslash
17181 ref{#1}
17182 \series default
17183  se refiere al número flotante, el comando 
17184 \series bold
17185
17186 \backslash
17187 pageref{#1}
17188 \series default
17189  al número de página.
17190 \end_layout
17191
17192 \begin_layout Subsection
17193 Designación Automática de Referencias
17194 \begin_inset LatexCommand index
17195 name "Referencias ! Designación Automática"
17196
17197 \end_inset
17198
17199
17200 \end_layout
17201
17202 \begin_layout Standard
17203 El paquete LaTeX 
17204 \series bold
17205 hyperref
17206 \series default
17207  dispone de una característica muy útil que permite incluir automáticamente
17208  en las referencias cruzadas el nombre de los flotantes referidos (o partes
17209  de texto como secciones).
17210  Quieres p.\InsetSpace \thinspace{}
17211 e.
17212  escribir la palabra "Figura" antes de cada cuadro de referencia.
17213  Para conseguirlo debes cargar el paquete LaTeX 
17214 \series bold
17215 hyperref
17216 \series default
17217
17218 \begin_inset LatexCommand index
17219 name "LaTeX-paquetes ! hyperref"
17220
17221 \end_inset
17222
17223  en el preámbulo del documento con
17224 \end_layout
17225
17226 \begin_layout Standard
17227
17228 \series bold
17229
17230 \backslash
17231 usepackage[pdfborder={0 0 0}]{hyperref}
17232 \newline
17233
17234 \backslash
17235 AtBeginDocument{
17236 \backslash
17237 renewcommand{
17238 \backslash
17239 ref}[1]{
17240 \backslash
17241 mbox{
17242 \backslash
17243 autoref{#1}}}}
17244 \end_layout
17245
17246 \begin_layout Standard
17247
17248 \series bold
17249 hyperref 
17250 \series default
17251 se utiliza para enlazar referencias cruzadas en las salidas DVI y PDF, esto
17252  significa que el lector del documento podrá pinchar sobre una entrada de
17253  Índice o una referencia y será inmediatamente dirigido a esa parte del
17254  documento.
17255  
17256 \series bold
17257 hyperref
17258 \series default
17259  también crea marcadores PDF para cada sección para facilitar al lector
17260  la navegación por el documento.
17261  Esto también se ha usado en este documento pero si echas una ojeada al
17262  preámbulo encontrarás varias opciones en la carga de 
17263 \series bold
17264 hyperref
17265 \series default
17266 .
17267  Para aprender más sobre ello acude a la documentoación del paquete 
17268 \begin_inset LatexCommand cite
17269 key "hyperref"
17270
17271 \end_inset
17272
17273 .
17274 \end_layout
17275
17276 \begin_layout Standard
17277 \begin_inset Note Greyedout
17278 status open
17279
17280 \begin_layout Standard
17281
17282 \series bold
17283 Nota:
17284 \series default
17285  La designación automática de referencias no puede usarse en el estilo 
17286 \family sans
17287 Referencia\InsetSpace ~
17288 con\InsetSpace ~
17289 formato
17290 \family default
17291 , descrita en la sección\InsetSpace ~
17292
17293 \begin_inset LatexCommand ref
17294 reference "sub:Formatos-referencia-cruzada"
17295
17296 \end_inset
17297
17298 .
17299  Por esto no se ha usado en este documento.
17300 \end_layout
17301
17302 \end_inset
17303
17304
17305 \end_layout
17306
17307 \begin_layout Subsection
17308 Colocación de Referencias
17309 \begin_inset LatexCommand label
17310 name "sub:Colocación-de-Referencias"
17311
17312 \end_inset
17313
17314
17315 \begin_inset LatexCommand index
17316 name "Referencias ! Colocación"
17317
17318 \end_inset
17319
17320
17321 \end_layout
17322
17323 \begin_layout Standard
17324 Si usas 
17325 \series bold
17326 hyperref
17327 \series default
17328
17329 \begin_inset LatexCommand index
17330 name "LaTeX-paquetes ! hyperref"
17331
17332 \end_inset
17333
17334  para enlazar referencias cruzadas en la salida, verás que al pinchar sobre
17335  la referencia de una imagen flotante te lleva hasta la etiqueta de la imagen.
17336  El encabezado será la primera parte de texto en pantalla, de forma que
17337  para ver la imagen debes deslizar.
17338  Se debe a que el ancla de enlace de la referencia se sitúa en la etiqueta.
17339  Usando el paquete 
17340 \series bold
17341 hypcap
17342 \series default
17343
17344 \begin_inset LatexCommand index
17345 name "LaTeX-paquetes ! hypcap"
17346
17347 \end_inset
17348
17349 , que forma parte del paquete LaTeX 
17350 \series bold
17351 oberdiek
17352 \series default
17353
17354 \begin_inset LatexCommand index
17355 name "LaTeX-paquetes ! oberdiek"
17356
17357 \end_inset
17358
17359 , el ancla de enlace se sitúa al comienzo de un flotante.
17360  Para usar esta característica para figuras flotantes carga 
17361 \series bold
17362 hypcap
17363 \series default
17364  en el preámbulo con
17365 \end_layout
17366
17367 \begin_layout Standard
17368
17369 \series bold
17370
17371 \backslash
17372 usepackage[figure]{hypcap}
17373 \end_layout
17374
17375 \begin_layout Standard
17376 Puedes usar 
17377 \series bold
17378 hypcap
17379 \series default
17380  para todos los flotantes aunque no se recomienda por razones de estabilidad.
17381  Más información en el manual de 
17382 \series bold
17383 hypcap
17384 \series default
17385  
17386 \begin_inset LatexCommand cite
17387 key "hypcap"
17388
17389 \end_inset
17390
17391 .
17392 \end_layout
17393
17394 \begin_layout Standard
17395 \begin_inset Note Greyedout
17396 status open
17397
17398 \begin_layout Standard
17399
17400 \series bold
17401 Nota: hypcap 
17402 \series default
17403 debe cargarse después de
17404 \series bold
17405  hyperref 
17406 \series default
17407 en el preámbulo
17408 \series bold
17409 .
17410 \end_layout
17411
17412 \end_inset
17413
17414
17415 \end_layout
17416
17417 \begin_layout Section
17418 Colocación de Flotantes
17419 \begin_inset LatexCommand label
17420 name "sec:Colocación-de-Flotantes"
17421
17422 \end_inset
17423
17424
17425 \begin_inset LatexCommand index
17426 name "Flotantes ! Colocación"
17427
17428 \end_inset
17429
17430
17431 \end_layout
17432
17433 \begin_layout Standard
17434 Click-derecha sobre un cuadro de flotante abre un diálogo en el que pueden
17435  cambiarse las opciones de LaTeX para situar los flotantes.
17436 \newline
17437 La opción 
17438 \family sans
17439 Extender\InsetSpace ~
17440 columnas
17441 \family default
17442  solo es aplicable a documentoos de dos columnas: Si lo seleccionas, el
17443  flotante abarcará ambas columnas en lugar de una sola.
17444  La opción 
17445 \family sans
17446 Girar\InsetSpace ~
17447 a\InsetSpace ~
17448 un\InsetSpace ~
17449 lado
17450 \family default
17451  sirve para girar flotantes, ver sección\InsetSpace ~
17452
17453 \begin_inset LatexCommand ref
17454 reference "sec:Rotación-de-Flotantes"
17455
17456 \end_inset
17457
17458 .
17459  
17460 \end_layout
17461
17462 \begin_layout Standard
17463 Puedes usar una o más de las siguientes opciones en el diálogo para establacer
17464  la posición de un flotante si desmarcas la opción 
17465 \family sans
17466 Usar\InsetSpace ~
17467 ubicación\InsetSpace ~
17468 predeterminada
17469 \family default
17470 :
17471 \end_layout
17472
17473 \begin_layout Standard
17474
17475 \family sans
17476 \series bold
17477 Aquí\InsetSpace ~
17478 si\InsetSpace ~
17479 es\InsetSpace ~
17480 posible:
17481 \family default
17482 \series default
17483  intenta situar el flotante en la posición en la que se inserta
17484 \end_layout
17485
17486 \begin_layout Standard
17487
17488 \family sans
17489 \series bold
17490 Principio\InsetSpace ~
17491 de\InsetSpace ~
17492 página:
17493 \family default
17494 \series default
17495  intenta situar el flotante al principio de la página actual
17496 \end_layout
17497
17498 \begin_layout Standard
17499
17500 \family sans
17501 \series bold
17502 Fin\InsetSpace ~
17503 de\InsetSpace ~
17504 página:
17505 \family default
17506 \series default
17507  intenta situar el flotante al final de la página actual
17508 \end_layout
17509
17510 \begin_layout Standard
17511
17512 \family sans
17513 \series bold
17514 Página\InsetSpace ~
17515 de\InsetSpace ~
17516 flotantes:
17517 \family default
17518 \series default
17519  intenta situar el flotante en una página propia 
17520 \end_layout
17521
17522 \begin_layout Standard
17523 LaTeX usa 
17524 \emph on
17525 siempre
17526 \emph default
17527  ese orden de opciones.
17528  Significa que si usas la colocación predeterminada, LaTeX probará en primer
17529  lugar 
17530 \family sans
17531 Aquí\InsetSpace ~
17532 si\InsetSpace ~
17533 es\InsetSpace ~
17534 posible
17535 \family default
17536 , luego 
17537 \family sans
17538 Principio\InsetSpace ~
17539 de\InsetSpace ~
17540 página
17541 \family default
17542 , y después las otras.
17543  Si no usas la predeterminada, LaTeX solo probará las opciones marcadas
17544  pero en dicho orden.
17545  Si no es posible ninguna de las 4 ubicaciones el proceso se repite internamente
17546  pero intenta poner el flotante en la página siguiente.
17547 \end_layout
17548
17549 \begin_layout Standard
17550 De forma predeterminada cada una de las opciones tiene sus propias reglas:
17551 \end_layout
17552
17553 \begin_layout Labeling
17554 \labelwidthstring 00.00.0000
17555
17556 \family sans
17557 Principio\InsetSpace ~
17558 de\InsetSpace ~
17559 página: 
17560 \family default
17561 solo si el flotante ocupa menos del 70\InsetSpace \thinspace{}
17562 % de la página puede ubicarse al principio
17563  de página (
17564 \series bold
17565
17566 \backslash
17567 topfraction
17568 \series default
17569 )
17570 \end_layout
17571
17572 \begin_layout Labeling
17573 \labelwidthstring 00.00.0000
17574
17575 \family sans
17576 Fin\InsetSpace ~
17577 de\InsetSpace ~
17578 página: 
17579 \family default
17580 solo si el flotante ocupa menos del 30\InsetSpace \thinspace{}
17581 % de la página puede ubicarse al fin
17582  de página.
17583  (
17584 \series bold
17585
17586 \backslash
17587 bottomfraction
17588 \series default
17589 )
17590 \end_layout
17591
17592 \begin_layout Labeling
17593 \labelwidthstring 00.00.0000
17594
17595 \family sans
17596 Página\InsetSpace ~
17597 de\InsetSpace ~
17598 flotantes: 
17599 \family default
17600 solo si más del 50\InsetSpace \thinspace{}
17601 % de la página se ocupa por flotantes puede haber varios
17602  juntos en la misma página.
17603  (
17604 \series bold
17605
17606 \backslash
17607 floatpáginafraction
17608 \series default
17609 )
17610 \end_layout
17611
17612 \begin_layout Standard
17613 Si no te agradan estas reglas puedes ignorarlas marcando la opción adicional
17614  
17615 \family sans
17616 Ignorar\InsetSpace ~
17617 reglas\InsetSpace ~
17618 de\InsetSpace ~
17619 LaTeX
17620 \family default
17621 .
17622 \newline
17623 También puedes redefinir las reglas con comandos LaTeX que van entre paréntesis
17624  tras la descripción de reglas anteriores.
17625  Por ejemplo, para aumentar el valor predeterminado, quizás pequeño, de
17626  la regla 
17627 \family sans
17628 Fin
17629 \family default
17630 \InsetSpace ~
17631
17632 \family sans
17633 de
17634 \family default
17635 \InsetSpace ~
17636
17637 \family sans
17638 página 
17639 \family default
17640 al 50\InsetSpace \thinspace{}
17641 %, añade esta línea en el preámbulo:
17642 \end_layout
17643
17644 \begin_layout Standard
17645
17646 \series bold
17647
17648 \backslash
17649 renewcommand{
17650 \backslash
17651 bottomfraction}{0.5}
17652 \end_layout
17653
17654 \begin_layout Standard
17655 En determinados casos podrías necesitar ubicar un flotante exactamente en
17656  la posición en la que se inserta.
17657  Para esto puedes usar la opción 
17658 \family sans
17659 Aquí\InsetSpace ~
17660 definitivamente
17661 \family default
17662 .
17663  Usa esta opción esporádicamente y solo cuando el documento esté casi listo,
17664  porque el flotante ya no podrá "flotar" y si haces cambios al documento
17665  se podría estropear el diseño de la página.
17666 \end_layout
17667
17668 \begin_layout Standard
17669 No hay opciones de ubicación para flotantes ajustados a texto porque siempre
17670  están rodeados por texto de un párrafo determinado.
17671 \begin_inset VSpace bigskip
17672 \end_inset
17673
17674
17675 \end_layout
17676
17677 \begin_layout Standard
17678 A veces surge el problema de que un flotante se sitúa al principio de la
17679  página mientras que su sección correspondiente empieza en mitad de la página,
17680  así que el lector podría creer que el flotante forma parte de la sección
17681  anterior.
17682  Para evitarlo puede emplearse el comando LaTeX 
17683 \series bold
17684
17685 \backslash
17686 suppressfloats
17687 \series default
17688 , que suprime la ubicación de un flotante dado en la página donde se inserta
17689  y además puede servir para evitar que el flotante se coloque antes del
17690  inicio de sección.
17691  Para ello, añade estos comandos al préambulo:
17692 \end_layout
17693
17694 \begin_layout Standard
17695
17696 \series bold
17697
17698 \backslash
17699 let
17700 \backslash
17701 mySection
17702 \backslash
17703 section
17704 \newline
17705
17706 \backslash
17707 renewcommand{
17708 \backslash
17709 section}{
17710 \backslash
17711 suppressfloats[t]
17712 \backslash
17713 mySection}
17714 \end_layout
17715
17716 \begin_layout Standard
17717 Se puede hacer lo mismo para todas las cabeceras de sección, capítulos y
17718  subsecciones.
17719  No es recomendable para partes pequeñas de texto como subsubsecciones porque
17720  LaTeX podría tener problemas para encontrar una ubicación adecuada.
17721 \end_layout
17722
17723 \begin_layout Standard
17724 \begin_inset VSpace bigskip
17725 \end_inset
17726
17727 En ciertos casos se quieren tener todas las figuras/tablas al final del
17728  documento.
17729  Para estos casos está el paquete LaTeX 
17730 \series bold
17731 endfloat
17732 \series default
17733
17734 \begin_inset LatexCommand index
17735 name "LaTeX-paquetes ! endfloat"
17736
17737 \end_inset
17738
17739 .
17740  Pone todas las figuras y tablas flotantes al final del documento en secciones
17741  propias.
17742  En la posición original del flotante se inserta una indicación como 
17743 \begin_inset Quotes eld
17744 \end_inset
17745
17746
17747 \family sans
17748 [Figura\InsetSpace ~
17749 3.2 por aquí.]
17750 \family default
17751
17752 \begin_inset Quotes erd
17753 \end_inset
17754
17755 .
17756  El paquete 
17757 \series bold
17758 endfloat
17759 \series default
17760  se carga en el preámbulo con la línea
17761 \end_layout
17762
17763 \begin_layout Standard
17764
17765 \series bold
17766
17767 \backslash
17768 usepackage[options]{endfloat}
17769 \end_layout
17770
17771 \begin_layout Standard
17772 Hay varias opciones para diseñar las secciones figura/tabla creadas.
17773  Para más información ver la documentación de 
17774 \begin_inset LatexCommand cite
17775 key "endfloat"
17776
17777 \end_inset
17778
17779 .
17780 \newline
17781
17782 \begin_inset Note Greyedout
17783 status open
17784
17785 \begin_layout Standard
17786
17787 \series bold
17788 Nota: endfloat
17789 \series default
17790  no traduce automáticamente la indicación, hay que hacerlo manualmente,
17791  ver sección\InsetSpace ~
17792 4 en 
17793 \begin_inset LatexCommand cite
17794 key "endfloat"
17795
17796 \end_inset
17797
17798 .
17799 \end_layout
17800
17801 \end_inset
17802
17803
17804 \newline
17805
17806 \begin_inset Note Greyedout
17807 status open
17808
17809 \begin_layout Standard
17810
17811 \series bold
17812 Nota:
17813 \series default
17814  Actualmente hay un error en 
17815 \series bold
17816 endfloat
17817 \series default
17818  cuando el encabezado contiene el caracter alemán 
17819 \begin_inset Quotes eld
17820 \end_inset
17821
17822 ß
17823 \begin_inset Quotes erd
17824 \end_inset
17825
17826 .
17827  Usa en ese caso el comando 
17828 \begin_inset Quotes eld
17829 \end_inset
17830
17831
17832 \series bold
17833
17834 \backslash
17835 ss
17836 \series default
17837
17838 \begin_inset Quotes erd
17839 \end_inset
17840
17841  en ERT en vez de 
17842 \begin_inset Quotes eld
17843 \end_inset
17844
17845 ß
17846 \begin_inset Quotes erd
17847 \end_inset
17848
17849 .
17850 \end_layout
17851
17852 \end_inset
17853
17854
17855 \end_layout
17856
17857 \begin_layout Standard
17858 \begin_inset VSpace bigskip
17859 \end_inset
17860
17861 Más detalles sobre ubicación de flotantes en libros sobre LaTeX como 
17862 \begin_inset LatexCommand cite
17863 key "latexcompanion,latexguide,latexbook"
17864
17865 \end_inset
17866
17867 .
17868 \end_layout
17869
17870 \begin_layout Section
17871 Rotación de Flotantes
17872 \begin_inset LatexCommand label
17873 name "sec:Rotación-de-Flotantes"
17874
17875 \end_inset
17876
17877
17878 \begin_inset LatexCommand index
17879 name "Flotantes ! Rotación"
17880
17881 \end_inset
17882
17883
17884 \end_layout
17885
17886 \begin_layout Standard
17887 Podrías necesitar girar flotantes, especialmente en tablas grandes.
17888  Para girar todo el flotante y su encabezado, pincha sobre su cuadro y marca
17889  la opción 
17890 \family sans
17891 Girar\InsetSpace ~
17892 a\InsetSpace ~
17893 un\InsetSpace ~
17894 lado
17895 \family default
17896 .
17897 \end_layout
17898
17899 \begin_layout Standard
17900 Los flotantes girados son puestos siempre en su propia página (o columna
17901  si el documento es de dos columnas).
17902  Normalmente se rotan de forma que puedes leerlos desde el margen externo
17903  -- a la izquierda en páginas pares, a la derecha en impares.
17904 \end_layout
17905
17906 \begin_layout Standard
17907 Los flotantes girados se refieren igual que los normales, y el formato de
17908  encabezado también es el mismo: Un ejemplo es la Tabla\InsetSpace ~
17909
17910 \begin_inset LatexCommand ref
17911 reference "tab:Tabla-girada"
17912
17913 \end_inset
17914
17915 .
17916 \end_layout
17917
17918 \begin_layout Standard
17919 \begin_inset Note Greyedout
17920 status open
17921
17922 \begin_layout Standard
17923
17924 \series bold
17925 Nota:
17926 \series default
17927  No todos los visores DVI pueden mostrar tablas giradas.
17928 \end_layout
17929
17930 \end_inset
17931
17932
17933 \end_layout
17934
17935 \begin_layout Standard
17936 \begin_inset Float table
17937 wide false
17938 sideways true
17939 status open
17940
17941 \begin_layout Caption
17942 \begin_inset LatexCommand label
17943 name "tab:Tabla-girada"
17944
17945 \end_inset
17946
17947  Tabla girada
17948 \end_layout
17949
17950 \begin_layout Standard
17951 \align center
17952 \begin_inset Tabular
17953 <lyxtabular version="3" rows="1" columns="5">
17954 <features>
17955 <column alignment="center" valignment="top" leftline="true" width="0">
17956 <column alignment="center" valignment="top" leftline="true" width="0">
17957 <column alignment="center" valignment="top" leftline="true" width="0">
17958 <column alignment="center" valignment="top" leftline="true" width="0">
17959 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
17960 <row topline="true" bottomline="true">
17961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17962 \begin_inset Text
17963
17964 \begin_layout Standard
17965 test
17966 \end_layout
17967
17968 \end_inset
17969 </cell>
17970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17971 \begin_inset Text
17972
17973 \begin_layout Standard
17974 b
17975 \end_layout
17976
17977 \end_inset
17978 </cell>
17979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17980 \begin_inset Text
17981
17982 \begin_layout Standard
17983 c
17984 \end_layout
17985
17986 \end_inset
17987 </cell>
17988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17989 \begin_inset Text
17990
17991 \begin_layout Standard
17992 d
17993 \end_layout
17994
17995 \end_inset
17996 </cell>
17997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17998 \begin_inset Text
17999
18000 \begin_layout Standard
18001 e
18002 \end_layout
18003
18004 \end_inset
18005 </cell>
18006 </row>
18007 </lyxtabular>
18008
18009 \end_inset
18010
18011
18012 \end_layout
18013
18014 \end_inset
18015
18016
18017 \end_layout
18018
18019 \begin_layout Section
18020 Formato de Encabezados
18021 \begin_inset LatexCommand index
18022 name "Encabezados ! Formato"
18023
18024 \end_inset
18025
18026
18027 \begin_inset LatexCommand index
18028 name "Flotantes ! Formato de Encabezados"
18029
18030 \end_inset
18031
18032
18033 \begin_inset LatexCommand index
18034 name "LaTeX-paquetes ! caption"
18035
18036 \end_inset
18037
18038
18039 \begin_inset LatexCommand label
18040 name "sec:Formato-de-Encabezados"
18041
18042 \end_inset
18043
18044
18045 \end_layout
18046
18047 \begin_layout Standard
18048 El entorno 
18049 \family sans
18050 Encabezado
18051 \family default
18052  es el predeterminado para los 
18053 \family sans
18054 Flotantes
18055 \family default
18056 .
18057  En LyX los encabezados se muestran como etiqueta, p.\InsetSpace \thinspace{}
18058 e.\InsetSpace ~
18059 "
18060 \family sans
18061 Figura #
18062 \family default
18063 :" seguida por el texto.
18064  El símbolo de número 
18065 \begin_inset Quotes eld
18066 \end_inset
18067
18068 #
18069 \begin_inset Quotes erd
18070 \end_inset
18071
18072  es sustituido en la salida impresa por el número de referencia real.
18073  Por defecto la etiqueta y el número usan la misma fuente que el texto del
18074  encabezado y el signo dos puntos sigue al número para separar la etiqueta
18075  del texto.
18076  El formato de encabezado no es apropiado para todos los formatos de documento.
18077  
18078 \end_layout
18079
18080 \begin_layout Standard
18081 Para cambiar el formato predeterminado carga el paquete LaTeX 
18082 \series bold
18083 caption
18084 \series default
18085
18086 \begin_inset LatexCommand index
18087 name "LaTeX-paquetes ! caption"
18088
18089 \end_inset
18090
18091  en el preámbulo del documento con la línea:
18092 \end_layout
18093
18094 \begin_layout Standard
18095
18096 \series bold
18097
18098 \backslash
18099 usepackage[definición de formato]{caption}
18100 \end_layout
18101
18102 \begin_layout Standard
18103 Para poner, por ejemplo, la etiqueta y el número en sans-serif negrita y
18104  los encabezados de tabla siempre sobre ella como en este documento, usa
18105  el comando:
18106 \end_layout
18107
18108 \begin_layout Standard
18109
18110 \series bold
18111
18112 \backslash
18113 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
18114 \end_layout
18115
18116 \begin_layout Standard
18117 También puedes definir distintos formatos de encabezado para los distintos
18118  tipos de flotantes.
18119  En ese caso carga el paquete 
18120 \series bold
18121 caption
18122 \series default
18123  sin opciones específicas y define los distintos formatos con ayuda del
18124  comando
18125 \end_layout
18126
18127 \begin_layout Standard
18128
18129 \series bold
18130
18131 \backslash
18132 captionsetup[tipo de flotante]{definición de formato}
18133 \end_layout
18134
18135 \begin_layout Standard
18136 en el preámbulo del documento.
18137  Por ejemplo los encabezados de la Figura\InsetSpace ~
18138
18139 \begin_inset LatexCommand ref
18140 reference "fig:Esto-es-una-fig"
18141
18142 \end_inset
18143
18144  y la Tabla\InsetSpace ~
18145
18146 \begin_inset LatexCommand ref
18147 reference "tab:Esto-es-una-tab"
18148
18149 \end_inset
18150
18151  pueden crearse usando los siguientes comandos en el preámbulo:
18152 \end_layout
18153
18154 \begin_layout Standard
18155
18156 \series bold
18157
18158 \backslash
18159 usepackage[tableposition=top]{caption}
18160 \series default
18161
18162 \newline
18163
18164 \series bold
18165
18166 \backslash
18167 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm,%
18168 \newline
18169
18170 \begin_inset ERT
18171 status collapsed
18172
18173 \begin_layout Standard
18174
18175
18176 \backslash
18177 hphantom{
18178 \backslash
18179
18180 \backslash
18181 captionsetup[figure]
18182 \backslash
18183 {}
18184 \end_layout
18185
18186 \end_inset
18187
18188  labelsep=period}
18189 \newline
18190
18191 \backslash
18192 captionsetup[table]{labelfont={bf,sf}}
18193 \end_layout
18194
18195 \begin_layout Standard
18196 Para más información sobre el paquete 
18197 \series bold
18198 caption
18199 \series default
18200  acude a su documentación 
18201 \begin_inset LatexCommand cite
18202 key "caption,caption-de"
18203
18204 \end_inset
18205
18206 .
18207 \end_layout
18208
18209 \begin_layout Standard
18210 \begin_inset VSpace bigskip
18211 \end_inset
18212
18213 Si estás usando la clase de documento 
18214 \series bold
18215 koma-script
18216 \series default
18217
18218 \begin_inset LatexCommand index
18219 name "LaTeX-paquetes ! koma-script"
18220
18221 \end_inset
18222
18223  (
18224 \family sans
18225 article (koma-script)
18226 \family default
18227
18228 \family sans
18229 book (koma-script)
18230 \family default
18231
18232 \family sans
18233 letter (koma-script)
18234 \family default
18235 , o 
18236 \family sans
18237 report (koma-script)
18238 \family default
18239 \InsetSpace \thinspace{}
18240 ), puedes emplear en vez del paquete 
18241 \series bold
18242 caption
18243 \series default
18244  el comando
18245 \series bold
18246  
18247 \backslash
18248 setkomafont
18249 \series default
18250  incluido en 
18251 \series bold
18252 koma-script
18253 \series default
18254 .
18255  Por ejemplo, para poner en negrita la etiqueta del encabezado añade este
18256  comando en el preámbulo del documento:
18257 \end_layout
18258
18259 \begin_layout Standard
18260
18261 \series bold
18262
18263 \backslash
18264 setkomafont{captionlabel}{
18265 \backslash
18266 bfseries}
18267 \end_layout
18268
18269 \begin_layout Standard
18270 Más información sobre 
18271 \series bold
18272
18273 \backslash
18274 setkomafont
18275 \series default
18276  en la documentación de 
18277 \series bold
18278 koma-script
18279 \series default
18280  
18281 \begin_inset LatexCommand cite
18282 key "koma-script,koma-script-de"
18283
18284 \end_inset
18285
18286 .
18287 \end_layout
18288
18289 \begin_layout Standard
18290 \begin_inset ERT
18291 status collapsed
18292
18293 \begin_layout Standard
18294
18295
18296 \backslash
18297 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
18298 }
18299 \end_layout
18300
18301 \end_inset
18302
18303
18304 \begin_inset Note Note
18305 status open
18306
18307 \begin_layout Standard
18308 El formato de encabezado se ha cambiado sólo para este ejemplo.
18309 \end_layout
18310
18311 \end_inset
18312
18313
18314 \end_layout
18315
18316 \begin_layout Standard
18317 \begin_inset Float figure
18318 placement !p
18319 wide false
18320 sideways false
18321 status open
18322
18323 \begin_layout Standard
18324 \align center
18325 \begin_inset Graphics
18326         filename ../clipart/mobius.pdf
18327         lyxscale 50
18328         scale 50
18329
18330 \end_inset
18331
18332
18333 \end_layout
18334
18335 \begin_layout Caption
18336 \begin_inset LatexCommand label
18337 name "fig:Esto-es-una-fig"
18338
18339 \end_inset
18340
18341 Este es un ejemplo de encabezado de figura que es mayor de una línea para
18342  mostrar el formato diferente.
18343  Aquí se usa un encabezado autodefinido.
18344 \end_layout
18345
18346 \end_inset
18347
18348
18349 \end_layout
18350
18351 \begin_layout Standard
18352 \begin_inset ERT
18353 status collapsed
18354
18355 \begin_layout Standard
18356
18357
18358 \backslash
18359 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
18360 on}
18361 \end_layout
18362
18363 \end_inset
18364
18365
18366 \end_layout
18367
18368 \begin_layout Standard
18369 \begin_inset Float table
18370 placement !p
18371 wide false
18372 sideways false
18373 status open
18374
18375 \begin_layout Caption
18376 \begin_inset LatexCommand label
18377 name "tab:Esto-es-una-tab"
18378
18379 \end_inset
18380
18381 Este es un ejemplo de encabezado de tabla mayor que una línea para mostrar
18382  el formato diferente.
18383  Aquí se usa el formato de encabezado standard para tablas de este documento.
18384 \end_layout
18385
18386 \begin_layout Standard
18387 \align center
18388 \begin_inset Tabular
18389 <lyxtabular version="3" rows="1" columns="5">
18390 <features>
18391 <column alignment="center" valignment="top" leftline="true" width="0">
18392 <column alignment="center" valignment="top" leftline="true" width="0">
18393 <column alignment="center" valignment="top" leftline="true" width="0">
18394 <column alignment="center" valignment="top" leftline="true" width="0">
18395 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
18396 <row topline="true" bottomline="true">
18397 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18398 \begin_inset Text
18399
18400 \begin_layout Standard
18401 a
18402 \end_layout
18403
18404 \end_inset
18405 </cell>
18406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18407 \begin_inset Text
18408
18409 \begin_layout Standard
18410 b
18411 \end_layout
18412
18413 \end_inset
18414 </cell>
18415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18416 \begin_inset Text
18417
18418 \begin_layout Standard
18419 c
18420 \end_layout
18421
18422 \end_inset
18423 </cell>
18424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18425 \begin_inset Text
18426
18427 \begin_layout Standard
18428 d
18429 \end_layout
18430
18431 \end_inset
18432 </cell>
18433 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18434 \begin_inset Text
18435
18436 \begin_layout Standard
18437 e
18438 \end_layout
18439
18440 \end_inset
18441 </cell>
18442 </row>
18443 </lyxtabular>
18444
18445 \end_inset
18446
18447
18448 \end_layout
18449
18450 \end_inset
18451
18452
18453 \end_layout
18454
18455 \begin_layout Section
18456 Colocación de Encabezados
18457 \begin_inset LatexCommand index
18458 name "Encabezados ! Colocación"
18459
18460 \end_inset
18461
18462
18463 \begin_inset LatexCommand index
18464 name "Flotantes ! Colocación de Encabezados"
18465
18466 \end_inset
18467
18468
18469 \begin_inset LatexCommand label
18470 name "sec:Colocación-de-Encabezados"
18471
18472 \end_inset
18473
18474
18475 \end_layout
18476
18477 \begin_layout Standard
18478 La norma habitual para colocar encabezados es:
18479 \end_layout
18480
18481 \begin_layout Description
18482 Figura: El encabezado bajo la figura
18483 \end_layout
18484
18485 \begin_layout Description
18486 Tabla: El encabezado sobre la tabla
18487 \end_layout
18488
18489 \begin_layout Standard
18490 Desafortunadamente, las clases standard de LaTeX no soportan encabezados
18491  sobre la tabla.
18492  Esto implica que si usas las clases de documento 
18493 \family sans
18494 article
18495 \family default
18496
18497 \family sans
18498 book
18499 \family default
18500
18501 \family sans
18502 letter
18503 \family default
18504 , o 
18505 \family sans
18506 report
18507 \family default
18508  no habrá espacio entre el encabezado y la tabla.
18509  Para insertar el espacio adecuado añade la siguiente opción al comando
18510  del paquete LaTeX 
18511 \series bold
18512 caption
18513 \series default
18514  en el preámbulo del documento
18515 \begin_inset Foot
18516 status collapsed
18517
18518 \begin_layout Standard
18519 Ver la sección\InsetSpace ~
18520
18521 \begin_inset LatexCommand ref
18522 reference "sec:Formato-de-Encabezados"
18523
18524 \end_inset
18525
18526  para más información sobre el paquete 
18527 \series bold
18528 caption
18529 \series default
18530 .
18531 \end_layout
18532
18533 \end_inset
18534
18535 :
18536 \end_layout
18537
18538 \begin_layout Standard
18539
18540 \series bold
18541 tableposition=top
18542 \end_layout
18543
18544 \begin_layout Standard
18545 Si estás usando la clase 
18546 \series bold
18547 koma-script
18548 \series default
18549
18550 \begin_inset LatexCommand index
18551 name "LaTeX-paquetes ! koma-script"
18552
18553 \end_inset
18554
18555  (
18556 \family sans
18557 article (koma-script)
18558 \family default
18559
18560 \family sans
18561 book (koma-script)
18562 \family default
18563
18564 \family sans
18565 letter (koma-script)
18566 \family default
18567 , o 
18568 \family sans
18569 report (koma-script)
18570 \family default
18571 \InsetSpace \thinspace{}
18572 ), en vez de 
18573 \series bold
18574 caption
18575 \series default
18576  puedes poner la opción 
18577 \series bold
18578 tablecaptionabove
18579 \series default
18580  de la clase de documento, o usar el entorno 
18581 \family sans
18582 Encabezado
18583 \family default
18584 \InsetSpace ~
18585
18586 \family sans
18587 Arriba
18588 \family default
18589  en vez del entorno 
18590 \family sans
18591 Encabezado
18592 \family default
18593 .
18594 \end_layout
18595
18596 \begin_layout Standard
18597 \begin_inset VSpace bigskip
18598 \end_inset
18599
18600 También es posible poner el encabezado junto a una figura o tabla.
18601  Para conseguirlo hay que cargar el paquete LaTeX 
18602 \series bold
18603 sidecap
18604 \series default
18605
18606 \begin_inset LatexCommand index
18607 name "LaTeX-paquetes ! sidecap"
18608
18609 \end_inset
18610
18611  añadiendo en el preámbulo del documento la línea
18612 \end_layout
18613
18614 \begin_layout Standard
18615
18616 \series bold
18617
18618 \backslash
18619 usepackage[option]{sidecap}
18620 \end_layout
18621
18622 \begin_layout Standard
18623 Si no se especifica opción, el encabezado se ubica del lado del margen externo
18624  de la página -- a la derecha en páginas impares, a la izquierda en las
18625  pares.
18626  Puedes cambiar la colocación al margen interno con la opción 
18627 \series bold
18628 innercaption
18629 \series default
18630 .
18631  Para forzar la ubicación siempre a la derecha o a la izquierda, usa las
18632  opciones 
18633 \series bold
18634 rightcaption
18635 \series default
18636  o 
18637 \series bold
18638 leftcaption
18639 \series default
18640 , respectivamente.
18641 \end_layout
18642
18643 \begin_layout Standard
18644 Para situar en LyX el encabezado de un flotante al lado, es necesario añadir
18645  estos comandos al preámbulo del documento:
18646 \end_layout
18647
18648 \begin_layout Standard
18649
18650 \lyxline
18651
18652 \end_layout
18653
18654 \begin_layout Standard
18655
18656 \series bold
18657
18658 \backslash
18659 newcommand{
18660 \backslash
18661 TabBesBeg}{%
18662 \newline
18663
18664 \begin_inset ERT
18665 status collapsed
18666
18667 \begin_layout Standard
18668
18669
18670 \backslash
18671 hphantom{ }
18672 \end_layout
18673
18674 \end_inset
18675
18676
18677 \backslash
18678 let
18679 \backslash
18680 MyTable
18681 \backslash
18682 table
18683 \newline
18684
18685 \begin_inset ERT
18686 status collapsed
18687
18688 \begin_layout Standard
18689
18690
18691 \backslash
18692 hphantom{ }
18693 \end_layout
18694
18695 \end_inset
18696
18697
18698 \backslash
18699 let
18700 \backslash
18701 MyEndtable
18702 \backslash
18703 endtable
18704 \newline
18705
18706 \begin_inset ERT
18707 status collapsed
18708
18709 \begin_layout Standard
18710
18711
18712 \backslash
18713 hphantom{ }
18714 \end_layout
18715
18716 \end_inset
18717
18718
18719 \backslash
18720 renewenvironment{table}{
18721 \backslash
18722 begin{SCtable}}{
18723 \backslash
18724 end{SCtable}}}
18725 \end_layout
18726
18727 \begin_layout Standard
18728
18729 \series bold
18730
18731 \backslash
18732 newcommand{
18733 \backslash
18734 TabBesEnd}{%
18735 \newline
18736
18737 \begin_inset ERT
18738 status collapsed
18739
18740 \begin_layout Standard
18741
18742
18743 \backslash
18744 hphantom{ }
18745 \end_layout
18746
18747 \end_inset
18748
18749
18750 \backslash
18751 let
18752 \backslash
18753 table
18754 \backslash
18755 MyTable
18756 \newline
18757
18758 \begin_inset ERT
18759 status collapsed
18760
18761 \begin_layout Standard
18762
18763
18764 \backslash
18765 hphantom{ }
18766 \end_layout
18767
18768 \end_inset
18769
18770
18771 \backslash
18772 let
18773 \backslash
18774 endtable
18775 \backslash
18776 MyEndtable
18777 \end_layout
18778
18779 \begin_layout Standard
18780
18781 \series bold
18782
18783 \backslash
18784 newcommand{
18785 \backslash
18786 FigBesBeg}{%
18787 \newline
18788
18789 \begin_inset ERT
18790 status collapsed
18791
18792 \begin_layout Standard
18793
18794
18795 \backslash
18796 hphantom{ }
18797 \end_layout
18798
18799 \end_inset
18800
18801
18802 \backslash
18803 let
18804 \backslash
18805 MyFigure
18806 \backslash
18807 figure
18808 \newline
18809
18810 \begin_inset ERT
18811 status collapsed
18812
18813 \begin_layout Standard
18814
18815
18816 \backslash
18817 hphantom{ }
18818 \end_layout
18819
18820 \end_inset
18821
18822
18823 \backslash
18824 let
18825 \backslash
18826 MyEndfigure
18827 \backslash
18828 endfigure
18829 \newline
18830
18831 \begin_inset ERT
18832 status collapsed
18833
18834 \begin_layout Standard
18835
18836
18837 \backslash
18838 hphantom{ }
18839 \end_layout
18840
18841 \end_inset
18842
18843
18844 \backslash
18845 renewenvironment{figure}{
18846 \backslash
18847 begin{SCfigure}}{
18848 \backslash
18849 end{SCfigure}}}
18850 \end_layout
18851
18852 \begin_layout Standard
18853
18854 \series bold
18855
18856 \backslash
18857 newcommand{
18858 \backslash
18859 FigBesEnd}{%
18860 \newline
18861
18862 \begin_inset ERT
18863 status collapsed
18864
18865 \begin_layout Standard
18866
18867
18868 \backslash
18869 hphantom{ }
18870 \end_layout
18871
18872 \end_inset
18873
18874
18875 \backslash
18876 let
18877 \backslash
18878 figure
18879 \backslash
18880 MyFigure
18881 \newline
18882
18883 \begin_inset ERT
18884 status collapsed
18885
18886 \begin_layout Standard
18887
18888
18889 \backslash
18890 hphantom{ }
18891 \end_layout
18892
18893 \end_inset
18894
18895
18896 \backslash
18897 let
18898 \backslash
18899 endfigure
18900 \backslash
18901 MyEndfigure}
18902 \end_layout
18903
18904 \begin_layout Standard
18905
18906 \lyxline
18907
18908 \end_layout
18909
18910 \begin_layout Standard
18911 Estos comandos permiten redefinir los flotantes de modo que el encabezado
18912  aparezca en un lado.
18913  Para figuras flotantes usa el comando
18914 \end_layout
18915
18916 \begin_layout Standard
18917
18918 \series bold
18919
18920 \backslash
18921 FigBesBeg
18922 \end_layout
18923
18924 \begin_layout Standard
18925 en ERT antes del flotante.
18926  Detrás del flotante inserta
18927 \end_layout
18928
18929 \begin_layout Standard
18930
18931 \series bold
18932
18933 \backslash
18934 FigBesEnd
18935 \end_layout
18936
18937 \begin_layout Standard
18938 en ERT para volver a la definición original de flotantes.
18939 \end_layout
18940
18941 \begin_layout Standard
18942 Para tablas flotantes usa los comandos correspondientes
18943 \end_layout
18944
18945 \begin_layout Standard
18946
18947 \series bold
18948
18949 \backslash
18950 TabBesBeg
18951 \series default
18952  y 
18953 \series bold
18954
18955 \backslash
18956 TabBesEnd
18957 \end_layout
18958
18959 \begin_layout Standard
18960 La Figura\InsetSpace ~
18961
18962 \begin_inset LatexCommand ref
18963 reference "fig:encab-al-lado"
18964
18965 \end_inset
18966
18967  y la Tabla\InsetSpace ~
18968
18969 \begin_inset LatexCommand ref
18970 reference "tab:encab-al-lado"
18971
18972 \end_inset
18973
18974  son ejemplos en los que el encabezado se sitúa al lado.
18975 \end_layout
18976
18977 \begin_layout Standard
18978 En los ejemplos puedes ver que el texto del encabezado aparece encima del
18979  flotante en tablas flotantes y debajo en las figuras flotantes.
18980  Para cambiarlo, puedes usar el comando
18981 \end_layout
18982
18983 \begin_layout Standard
18984
18985 \series bold
18986
18987 \backslash
18988 sidecaptionvpos{tipo de flotante}{colocación}
18989 \end_layout
18990
18991 \begin_layout Standard
18992 en el preámbulo o en ERT antes del flotante.
18993  El tipo de flotante es 
18994 \family sans
18995 figure
18996 \family default
18997  o 
18998 \family sans
18999 table
19000 \family default
19001 , la colocación puede ser 
19002 \begin_inset Quotes eld
19003 \end_inset
19004
19005
19006 \family sans
19007 t
19008 \family default
19009
19010 \begin_inset Quotes erd
19011 \end_inset
19012
19013  por 
19014 \begin_inset Quotes eld
19015 \end_inset
19016
19017 top
19018 \begin_inset Quotes erd
19019 \end_inset
19020
19021  (arriba), 
19022 \begin_inset Quotes eld
19023 \end_inset
19024
19025
19026 \family sans
19027 c
19028 \family default
19029
19030 \begin_inset Quotes erd
19031 \end_inset
19032
19033  por 
19034 \begin_inset Quotes eld
19035 \end_inset
19036
19037 center
19038 \begin_inset Quotes erd
19039 \end_inset
19040
19041  (centro), o 
19042 \begin_inset Quotes eld
19043 \end_inset
19044
19045
19046 \family sans
19047 b
19048 \family default
19049
19050 \begin_inset Quotes erd
19051 \end_inset
19052
19053  por 
19054 \begin_inset Quotes eld
19055 \end_inset
19056
19057 bottom
19058 \begin_inset Quotes erd
19059 \end_inset
19060
19061  (abajo).
19062  Para tener, por ejemplo, el encabezado de figuras flotantes verticalmente
19063  centrado, usa el comando
19064 \end_layout
19065
19066 \begin_layout Standard
19067
19068 \series bold
19069
19070 \backslash
19071 sidecaptionvpos{figure}{c}
19072 \end_layout
19073
19074 \begin_layout Standard
19075 Esto se ha hecho en la Figura\InsetSpace ~
19076
19077 \begin_inset LatexCommand ref
19078 reference "fig:encab-al-lado-de-fig"
19079
19080 \end_inset
19081
19082 .
19083 \end_layout
19084
19085 \begin_layout Standard
19086 \begin_inset VSpace defskip
19087 \end_inset
19088
19089 Más información sobre el paquete 
19090 \series bold
19091 sidecap
19092 \series default
19093  en su documentación 
19094 \begin_inset LatexCommand cite
19095 key "sidecap"
19096
19097 \end_inset
19098
19099 .
19100 \end_layout
19101
19102 \begin_layout Standard
19103 \begin_inset Note Greyedout
19104 status collapsed
19105
19106 \begin_layout Standard
19107
19108 \series bold
19109 Nota:
19110 \series default
19111  El paquete LaTeX 
19112 \series bold
19113 hypcap
19114 \series default
19115
19116 \begin_inset LatexCommand index
19117 name "LaTeX-paquetes ! hypcap"
19118
19119 \end_inset
19120
19121 , descrito en la sección\InsetSpace ~
19122
19123 \begin_inset LatexCommand ref
19124 reference "sub:Colocación-de-Referencias"
19125
19126 \end_inset
19127
19128 , no afecta a flotantes con el encabezado al lado.
19129 \end_layout
19130
19131 \end_inset
19132
19133
19134 \end_layout
19135
19136 \begin_layout Standard
19137 \begin_inset ERT
19138 status collapsed
19139
19140 \begin_layout Standard
19141
19142
19143 \backslash
19144 FigBesBeg 
19145 \end_layout
19146
19147 \end_inset
19148
19149
19150 \end_layout
19151
19152 \begin_layout Standard
19153 \begin_inset Float figure
19154 wide false
19155 sideways false
19156 status open
19157
19158 \begin_layout Standard
19159 \begin_inset Graphics
19160         filename ../clipart/escher-lsd.pdf
19161         scale 75
19162
19163 \end_inset
19164
19165
19166 \end_layout
19167
19168 \begin_layout Caption
19169 \begin_inset LatexCommand label
19170 name "fig:encab-al-lado"
19171
19172 \end_inset
19173
19174 Encabezado al lado de una figura.
19175 \end_layout
19176
19177 \end_inset
19178
19179
19180 \end_layout
19181
19182 \begin_layout Standard
19183 \begin_inset ERT
19184 status collapsed
19185
19186 \begin_layout Standard
19187
19188
19189 \backslash
19190 TabBesBeg 
19191 \end_layout
19192
19193 \end_inset
19194
19195
19196 \end_layout
19197
19198 \begin_layout Standard
19199 \begin_inset Float table
19200 wide false
19201 sideways false
19202 status open
19203
19204 \begin_layout Caption
19205 \begin_inset LatexCommand label
19206 name "tab:encab-al-lado"
19207
19208 \end_inset
19209
19210 Encabezado al lado de una tabla.
19211 \end_layout
19212
19213 \begin_layout Standard
19214 \begin_inset Tabular
19215 <lyxtabular version="3" rows="4" columns="5">
19216 <features>
19217 <column alignment="center" valignment="top" leftline="true" width="0">
19218 <column alignment="center" valignment="top" leftline="true" width="0">
19219 <column alignment="center" valignment="top" leftline="true" width="0">
19220 <column alignment="center" valignment="top" leftline="true" width="0">
19221 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19222 <row topline="true">
19223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19224 \begin_inset Text
19225
19226 \begin_layout Standard
19227 a
19228 \end_layout
19229
19230 \end_inset
19231 </cell>
19232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19233 \begin_inset Text
19234
19235 \begin_layout Standard
19236
19237 \end_layout
19238
19239 \end_inset
19240 </cell>
19241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19242 \begin_inset Text
19243
19244 \begin_layout Standard
19245 b
19246 \end_layout
19247
19248 \end_inset
19249 </cell>
19250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19251 \begin_inset Text
19252
19253 \begin_layout Standard
19254
19255 \end_layout
19256
19257 \end_inset
19258 </cell>
19259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19260 \begin_inset Text
19261
19262 \begin_layout Standard
19263 c
19264 \end_layout
19265
19266 \end_inset
19267 </cell>
19268 </row>
19269 <row topline="true">
19270 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19271 \begin_inset Text
19272
19273 \begin_layout Standard
19274
19275 \end_layout
19276
19277 \end_inset
19278 </cell>
19279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19280 \begin_inset Text
19281
19282 \begin_layout Standard
19283 d
19284 \end_layout
19285
19286 \end_inset
19287 </cell>
19288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19289 \begin_inset Text
19290
19291 \begin_layout Standard
19292
19293 \end_layout
19294
19295 \end_inset
19296 </cell>
19297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19298 \begin_inset Text
19299
19300 \begin_layout Standard
19301 e
19302 \end_layout
19303
19304 \end_inset
19305 </cell>
19306 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19307 \begin_inset Text
19308
19309 \begin_layout Standard
19310
19311 \end_layout
19312
19313 \end_inset
19314 </cell>
19315 </row>
19316 <row topline="true">
19317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19318 \begin_inset Text
19319
19320 \begin_layout Standard
19321 f
19322 \end_layout
19323
19324 \end_inset
19325 </cell>
19326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19327 \begin_inset Text
19328
19329 \begin_layout Standard
19330
19331 \end_layout
19332
19333 \end_inset
19334 </cell>
19335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19336 \begin_inset Text
19337
19338 \begin_layout Standard
19339 g
19340 \end_layout
19341
19342 \end_inset
19343 </cell>
19344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19345 \begin_inset Text
19346
19347 \begin_layout Standard
19348
19349 \end_layout
19350
19351 \end_inset
19352 </cell>
19353 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19354 \begin_inset Text
19355
19356 \begin_layout Standard
19357 h
19358 \end_layout
19359
19360 \end_inset
19361 </cell>
19362 </row>
19363 <row topline="true" bottomline="true">
19364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19365 \begin_inset Text
19366
19367 \begin_layout Standard
19368
19369 \end_layout
19370
19371 \end_inset
19372 </cell>
19373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19374 \begin_inset Text
19375
19376 \begin_layout Standard
19377 i
19378 \end_layout
19379
19380 \end_inset
19381 </cell>
19382 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19383 \begin_inset Text
19384
19385 \begin_layout Standard
19386
19387 \end_layout
19388
19389 \end_inset
19390 </cell>
19391 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19392 \begin_inset Text
19393
19394 \begin_layout Standard
19395 j
19396 \end_layout
19397
19398 \end_inset
19399 </cell>
19400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19401 \begin_inset Text
19402
19403 \begin_layout Standard
19404
19405 \end_layout
19406
19407 \end_inset
19408 </cell>
19409 </row>
19410 </lyxtabular>
19411
19412 \end_inset
19413
19414
19415 \end_layout
19416
19417 \end_inset
19418
19419
19420 \end_layout
19421
19422 \begin_layout Standard
19423 \begin_inset ERT
19424 status collapsed
19425
19426 \begin_layout Standard
19427
19428
19429 \backslash
19430 TabBesEnd
19431 \end_layout
19432
19433 \end_inset
19434
19435
19436 \end_layout
19437
19438 \begin_layout Standard
19439 \begin_inset ERT
19440 status collapsed
19441
19442 \begin_layout Standard
19443
19444
19445 \backslash
19446 sidecaptionvpos{figure}{c}
19447 \end_layout
19448
19449 \end_inset
19450
19451
19452 \begin_inset Float figure
19453 wide false
19454 sideways false
19455 status open
19456
19457 \begin_layout Standard
19458 \begin_inset Graphics
19459         filename ../clipart/escher-lsd.pdf
19460         scale 75
19461
19462 \end_inset
19463
19464
19465 \end_layout
19466
19467 \begin_layout Caption
19468 \begin_inset LatexCommand label
19469 name "fig:encab-al-lado-de-fig"
19470
19471 \end_inset
19472
19473 Encabezado junto a una figura centrado verticalmente.
19474 \end_layout
19475
19476 \end_inset
19477
19478
19479 \end_layout
19480
19481 \begin_layout Standard
19482 \begin_inset ERT
19483 status collapsed
19484
19485 \begin_layout Standard
19486
19487
19488 \backslash
19489 FigBesEnd
19490 \end_layout
19491
19492 \end_inset
19493
19494
19495 \end_layout
19496
19497 \begin_layout Section
19498 Lista de Flotantes
19499 \begin_inset LatexCommand label
19500 name "sec:Lista-de-Flotantes"
19501
19502 \end_inset
19503
19504
19505 \begin_inset LatexCommand index
19506 name "Flotantes ! Lista"
19507
19508 \end_inset
19509
19510
19511 \end_layout
19512
19513 \begin_layout Standard
19514 Igual que en el índice general se listan las secciones del documento, hay
19515  listas para todos los tipos de flotantes, como las figuras.
19516  Se pueden insertar mediante los submenús 
19517 \family sans
19518 Insertar\SpecialChar \menuseparator
19519 Lista / IG
19520 \family default
19521 .
19522 \end_layout
19523
19524 \begin_layout Standard
19525 Las entradas de la lista son los encabezados del flotante o su título corto,
19526  el número, y el número de página del documento en la que aparecen.
19527 \end_layout
19528
19529 \begin_layout Standard
19530 Puedes encontrar las listas de figuras y tablas al final de este documento.
19531 \end_layout
19532
19533 \begin_layout Chapter
19534 Notas
19535 \end_layout
19536
19537 \begin_layout Section
19538 Notas en 
19539 \begin_inset ERT
19540 status collapsed
19541
19542 \begin_layout Standard
19543
19544
19545 \backslash
19546 texorpdfstring{
19547 \end_layout
19548
19549 \end_inset
19550
19551 LyX
19552 \begin_inset ERT
19553 status collapsed
19554
19555 \begin_layout Standard
19556
19557 }{LyX}
19558 \end_layout
19559
19560 \end_inset
19561
19562  
19563 \begin_inset LatexCommand label
19564 name "sec:Notas-en-LyX"
19565
19566 \end_inset
19567
19568
19569 \begin_inset LatexCommand index
19570 name "Notas ! Notas en LyX"
19571
19572 \end_inset
19573
19574
19575 \begin_inset Note Note
19576 status collapsed
19577
19578 \begin_layout Standard
19579 El comando 
19580 \backslash
19581 texorpdfstring es suministrado por el paquete LaTeX hyperref para evitar
19582  que los enlaces se muestren erróneamente en los marcadores PDF.
19583  Para más información sobre esto mira en 
19584 \begin_inset LatexCommand cite
19585 key "hyperref"
19586
19587 \end_inset
19588
19589 .
19590 \end_layout
19591
19592 \end_inset
19593
19594
19595 \end_layout
19596
19597 \begin_layout Standard
19598 Las notas se insertan con el botón 
19599 \begin_inset Graphics
19600         filename ../images/note-insert.xpm
19601         scale 85
19602
19603 \end_inset
19604
19605  o el menú 
19606 \family sans
19607 Insertar\SpecialChar \menuseparator
19608 Nota
19609 \family default
19610 .
19611  Hay tres tipos de notas:
19612 \end_layout
19613
19614 \begin_layout Description
19615 Nota\InsetSpace ~
19616 LyX Este tipo es para notas internas que no han de aparecer en la salida:
19617  Su cuadro se muestra como este:
19618 \newline
19619
19620 \newline
19621
19622 \begin_inset Graphics
19623         filename ../clipart/NotaLyXImagen.png
19624         display none
19625         scale 85
19626
19627 \end_inset
19628
19629  
19630 \begin_inset Note Note
19631 status collapsed
19632
19633 \begin_layout Standard
19634 Este es un texto en un recuadro que no se muestra en la salida.
19635 \end_layout
19636
19637 \end_inset
19638
19639
19640 \end_layout
19641
19642 \begin_layout Description
19643 Comentario Esta nota tampoco se muestra en la salida pero aparece como un
19644  comentario de LaTeX, cuando exportas el documento a LaTeX via el menú 
19645 \family sans
19646 Archivo\SpecialChar \menuseparator
19647 Exportar\SpecialChar \menuseparator
19648 LaTeX (pdflatex) / LaTeX (plain)
19649 \family default
19650 .
19651  Su recuadro se ve así:
19652 \newline
19653
19654 \newline
19655
19656 \begin_inset Graphics
19657         filename ../clipart/ComentNotaImagen.png
19658         display none
19659         scale 85
19660
19661 \end_inset
19662
19663  
19664 \begin_inset Note Comment
19665 status collapsed
19666
19667 \begin_layout Standard
19668 Texto de una nota comentario que solo aparece como comentario en archivos
19669  LaTeX.
19670 \end_layout
19671
19672 \end_inset
19673
19674
19675 \end_layout
19676
19677 \begin_layout Description
19678 Resaltado\InsetSpace ~
19679 en\InsetSpace ~
19680 gris Esta nota aparece en la salida como texto resaltado en gris.
19681  Su recuadro se parece a este:
19682 \newline
19683
19684 \newline
19685
19686 \begin_inset Graphics
19687         filename ../clipart/GrisNotaImagen.png
19688         display none
19689         scale 85
19690
19691 \end_inset
19692
19693
19694 \newline
19695
19696 \begin_inset ERT
19697 status collapsed
19698
19699 \begin_layout Standard
19700
19701
19702 \backslash
19703 renewenvironment{lyxgreyedout}
19704 \end_layout
19705
19706 \begin_layout Standard
19707
19708 {
19709 \backslash
19710 textcolor[gray]{0.8}
19711 \backslash
19712 bgroup}{
19713 \backslash
19714 egroup}
19715 \end_layout
19716
19717 \end_inset
19718
19719
19720 \begin_inset Note Greyedout
19721 status open
19722
19723 \begin_layout Standard
19724 Este es el texto
19725 \begin_inset Foot
19726 status open
19727
19728 \begin_layout Standard
19729 Esto es un ejemplo de nota al pie en una nota resaltada en gris.
19730 \end_layout
19731
19732 \end_inset
19733
19734  de un comentario que se muestra resaltado en gris.
19735 \end_layout
19736
19737 \end_inset
19738
19739
19740 \begin_inset ERT
19741 status collapsed
19742
19743 \begin_layout Standard
19744
19745
19746 \backslash
19747 renewenvironment{lyxgreyedout}
19748 \end_layout
19749
19750 \begin_layout Standard
19751
19752 {
19753 \backslash
19754 textcolor{blue}
19755 \backslash
19756 bgroup}{
19757 \backslash
19758 egroup}
19759 \end_layout
19760
19761 \end_inset
19762
19763
19764 \end_layout
19765
19766 \begin_layout Standard
19767 Si usas el botón de la barra de herramientas para insertar notas, se inserta
19768  una 
19769 \family sans
19770 Nota\InsetSpace ~
19771 LyX
19772 \family default
19773 .
19774  Puedes cambiar entre los tres tipos de nota con click-derecha sobre el
19775  recuadro.
19776  
19777 \family roman
19778 \series medium
19779 \bar no
19780 Si quieres convertir un texto presente a nota, márcalo y pincha sobre el
19781  botón de herramienta nota
19782 \family default
19783 \series default
19784 \bar default
19785 .
19786 \end_layout
19787
19788 \begin_layout Standard
19789 Como se ve en el ejemplo anterior: La primera línea de notas resaltadas
19790  en gris está un poco sangrada y puede tener notas al pie.
19791 \end_layout
19792
19793 \begin_layout Standard
19794 \begin_inset VSpace bigskip
19795 \end_inset
19796
19797 Se puede cambiar el color del resaltado en gris poniendo en el preámbulo
19798  el comando:
19799 \end_layout
19800
19801 \begin_layout Standard
19802
19803 \series bold
19804
19805 \backslash
19806 renewenvironment{lyxgreyedout}
19807 \newline
19808
19809 \begin_inset ERT
19810 status collapsed
19811
19812 \begin_layout Standard
19813
19814
19815 \backslash
19816 hphantom{ }
19817 \end_layout
19818
19819 \end_inset
19820
19821 {
19822 \backslash
19823 textcolor{color}
19824 \backslash
19825 bgroup}{
19826 \backslash
19827 egroup}
19828 \end_layout
19829
19830 \begin_layout Standard
19831 Los colores disponibles y el método para definir nuestros propios colores
19832  se explica en la sección\InsetSpace ~
19833
19834 \begin_inset LatexCommand ref
19835 reference "sec:Tablas-Coloreadas"
19836
19837 \end_inset
19838
19839 .
19840 \end_layout
19841
19842 \begin_layout Standard
19843 Las notas en azul en este documento se han hecho con notas resaltado en
19844  gris definiendo el color del texto en azul.
19845 \end_layout
19846
19847 \begin_layout Section
19848 Notas al pie
19849 \begin_inset LatexCommand label
19850 name "sec:Notas-al-pie"
19851
19852 \end_inset
19853
19854
19855 \begin_inset LatexCommand index
19856 name "Notas ! al Pie"
19857
19858 \end_inset
19859
19860
19861 \begin_inset LatexCommand index
19862 name "Notas al Pie"
19863
19864 \end_inset
19865
19866
19867 \end_layout
19868
19869 \begin_layout Standard
19870 Las notas al pie se insertan con el botón 
19871 \begin_inset Graphics
19872         filename ../images/footnote-insert.xpm
19873         scale 85
19874
19875 \end_inset
19876
19877  o el menú 
19878 \family sans
19879 Insertar\SpecialChar \menuseparator
19880 Nota\InsetSpace ~
19881 al\InsetSpace ~
19882 pie
19883 \family default
19884 .
19885  
19886 \family roman
19887 \series medium
19888 \bar no
19889 Aparece un recuadro como este:
19890 \family default
19891 \series default
19892 \bar default
19893  
19894 \begin_inset Graphics
19895         filename ../clipart/notapie.png
19896         scale 80
19897
19898 \end_inset
19899
19900
19901 \family roman
19902 \series medium
19903 \bar no
19904  donde puedes introducir el texto.
19905  Si quieres convertir un texto existente en nota al pie, márcalo y pincha
19906  sobre el
19907 \family default
19908 \series default
19909 \bar default
19910  
19911 \family roman
19912 \series medium
19913 \bar no
19914 botón
19915 \family default
19916 \series default
19917 \bar default
19918 .
19919 \end_layout
19920
19921 \begin_layout Standard
19922 Aquí hay un ejemplo de nota al pie:
19923 \family roman
19924 \series medium
19925 \bar no
19926
19927 \begin_inset Foot
19928 status open
19929
19930 \begin_layout Standard
19931 \begin_inset LatexCommand label
19932 name "pie:Esto-es-una"
19933
19934 \end_inset
19935
19936 Ejemplo de nota al pie.
19937 \end_layout
19938
19939 \end_inset
19940
19941
19942 \family default
19943 \series default
19944 \bar default
19945
19946 \begin_inset ERT
19947 status collapsed
19948
19949 \begin_layout Standard
19950
19951
19952 \backslash
19953 newcounter{MyRepeatFoot}
19954 \end_layout
19955
19956 \begin_layout Standard
19957
19958
19959 \backslash
19960 setcounter{MyRepeatFoot}{
19961 \backslash
19962 thefootnote}
19963 \end_layout
19964
19965 \end_inset
19966
19967
19968 \end_layout
19969
19970 \begin_layout Standard
19971 En la salida, el pie se muestra como número exponente en el lugar del texto
19972  donde se coloca el recuadro.
19973  El texto se coloca al final de la página actual.
19974  Los números de las notas son calculados por LaTeX, y son consecutivos.
19975  Si comienza o no el recuento en cada capítulo depende de la clase de documento.
19976 \end_layout
19977
19978 \begin_layout Standard
19979 Las notas al pie pueden referenciarse como flotantes: Inserta una etiqueta
19980  en la nota y pon una referencia cruzada a esta etiqueta en el texto como
19981  se describe en la sección\InsetSpace ~
19982
19983 \begin_inset LatexCommand ref
19984 reference "sec:Referencias-a-Flotantes"
19985
19986 \end_inset
19987
19988 .
19989 \newline
19990 Esto es una referencia cruzada a la Nota al pie\InsetSpace ~
19991
19992 \begin_inset LatexCommand prettyref
19993 reference "pie:Esto-es-una"
19994
19995 \end_inset
19996
19997 .
19998 \newline
19999
20000 \begin_inset Note Greyedout
20001 status collapsed
20002
20003 \begin_layout Standard
20004
20005 \series bold
20006 Nota:
20007 \series default
20008  LyX no suministra prefijos para etiquetas en notas al pie, así que has
20009  de insertar un prefijo, p.\InsetSpace \thinspace{}
20010 e.\InsetSpace ~
20011
20012 \family sans
20013
20014 \begin_inset Quotes eld
20015 \end_inset
20016
20017 pie:
20018 \family default
20019
20020 \begin_inset Quotes erd
20021 \end_inset
20022
20023  manualmente cuando quieras usar el estilo 
20024 \family sans
20025 Referencia\InsetSpace ~
20026 con\InsetSpace ~
20027 formato
20028 \family default
20029 .
20030 \end_layout
20031
20032 \end_inset
20033
20034
20035 \end_layout
20036
20037 \begin_layout Standard
20038 \begin_inset VSpace defskip
20039 \end_inset
20040
20041 Para poner notas al pie en tablas, tienes que usar minipáginas, ver sección\InsetSpace ~
20042
20043 \begin_inset LatexCommand ref
20044 reference "sec:Minipáginas"
20045
20046 \end_inset
20047
20048 .
20049  Los pies en tablas largas en la sección\InsetSpace ~
20050
20051 \begin_inset LatexCommand ref
20052 reference "sub:Notas-al-pie-en-Tablas-Largas"
20053
20054 \end_inset
20055
20056 .
20057 \end_layout
20058
20059 \begin_layout Standard
20060 \begin_inset VSpace defskip
20061 \end_inset
20062
20063 Para crear solo una marca para una nota al pie, usa el comando 
20064 \series bold
20065
20066 \backslash
20067 footnotemark[número]
20068 \series default
20069  en ERT.
20070  Esto se emplea si tienes la misma anotación varias veces en el texto pero
20071  no quieres imprimir el pie cada vez.
20072 \newline
20073 Como no sabes el número del pie que
20074  se repite mientras escribes el texto, tienes que guardarlo.
20075  Para el siguiente ejemplo de marca de pie, se han insertado estos comandos
20076  en ERT detrás de Nota\InsetSpace ~
20077 al\InsetSpace ~
20078 pie\InsetSpace ~
20079
20080 \begin_inset LatexCommand ref
20081 reference "pie:Esto-es-una"
20082
20083 \end_inset
20084
20085  para guardar el número de pie:
20086 \end_layout
20087
20088 \begin_layout Standard
20089
20090 \series bold
20091
20092 \backslash
20093 newcounter{MyRepeatFoot}
20094 \newline
20095
20096 \backslash
20097 setcounter{MyRepeatFoot}{
20098 \backslash
20099 thefootnote}
20100 \end_layout
20101
20102 \begin_layout Standard
20103 La marca de pie se crea entonces con el comando:
20104 \end_layout
20105
20106 \begin_layout Standard
20107
20108 \series bold
20109
20110 \backslash
20111 footnotemark[
20112 \backslash
20113 theMyRepeatFoot]
20114 \end_layout
20115
20116 \begin_layout Standard
20117 Aquí hay un ejemplo de marca de pie:
20118 \family roman
20119 \series medium
20120 \bar no
20121
20122 \begin_inset ERT
20123 status open
20124
20125 \begin_layout Standard
20126
20127
20128 \backslash
20129 footnotemark[
20130 \backslash
20131 theMyRepeatFoot]
20132 \end_layout
20133
20134 \end_inset
20135
20136
20137 \end_layout
20138
20139 \begin_layout Subsection
20140 Numeración de Notas al Pie
20141 \begin_inset LatexCommand label
20142 name "sub:Numeración-de-Notas-al-Pie"
20143
20144 \end_inset
20145
20146
20147 \begin_inset LatexCommand index
20148 name "Notas al Pie ! Numeración"
20149
20150 \end_inset
20151
20152
20153 \end_layout
20154
20155 \begin_layout Standard
20156 Si quieres numerar notas al pie en el esquema 
20157 \begin_inset Quotes eld
20158 \end_inset
20159
20160 capítulo.nota
20161 \begin_inset Quotes erd
20162 \end_inset
20163
20164 , añade el siguiente comando al preámbulo del documento:
20165 \end_layout
20166
20167 \begin_layout Standard
20168
20169 \series bold
20170
20171 \backslash
20172 numberwithin{footnote}{chapter}
20173 \end_layout
20174
20175 \begin_layout Standard
20176 Para poder usar el comando 
20177 \series bold
20178
20179 \backslash
20180 numberwithin
20181 \series default
20182 , marca la opción 
20183 \family sans
20184 Usar
20185 \family default
20186 \InsetSpace ~
20187
20188 \family sans
20189 el
20190 \family default
20191 \InsetSpace ~
20192
20193 \family sans
20194 paquete
20195 \family default
20196 \InsetSpace ~
20197
20198 \family sans
20199 AMS 
20200 \family default
20201 en la pestaña 
20202 \family sans
20203 Ecuaciones
20204 \family default
20205  de la configuración del documento.
20206 \end_layout
20207
20208 \begin_layout Standard
20209 \begin_inset ERT
20210 status collapsed
20211
20212 \begin_layout Standard
20213
20214
20215 \backslash
20216 numberwithin{footnote}{chapter}
20217 \end_layout
20218
20219 \end_inset
20220
20221 Esto es otro ejemplo de nota al pie:
20222 \series bold
20223
20224 \begin_inset Foot
20225 status open
20226
20227 \begin_layout Standard
20228 Nota al pie numerada en el esquema 
20229 \begin_inset Quotes eld
20230 \end_inset
20231
20232 capítulo.nota
20233 \begin_inset Quotes erd
20234 \end_inset
20235
20236 .
20237 \end_layout
20238
20239 \end_inset
20240
20241
20242 \series default
20243
20244 \begin_inset ERT
20245 status collapsed
20246
20247 \begin_layout Standard
20248
20249
20250 \backslash
20251 numberwithin{footnote}{part}
20252 \end_layout
20253
20254 \end_inset
20255
20256
20257 \end_layout
20258
20259 \begin_layout Standard
20260 \begin_inset VSpace bigskip
20261 \end_inset
20262
20263
20264 \end_layout
20265
20266 \begin_layout Standard
20267 Para reestablecer el número de pie a 1 en cada sección añade este
20268 \family roman
20269  comando en el preámbulo:
20270 \end_layout
20271
20272 \begin_layout Standard
20273
20274 \series bold
20275
20276 \backslash
20277 @addtoreset{footnote}{section}
20278 \end_layout
20279
20280 \begin_layout Standard
20281 \begin_inset VSpace bigskip
20282 \end_inset
20283
20284 El siguiente comando en el preámbulo cambia el estilo de numeración del
20285  pie a números romanos pequeños:
20286 \end_layout
20287
20288 \begin_layout Standard
20289
20290 \series bold
20291
20292 \backslash
20293 renewcommand{
20294 \backslash
20295 thefootnote}{
20296 \backslash
20297 roman{footnote}}
20298 \end_layout
20299
20300 \begin_layout Standard
20301 \begin_inset ERT
20302 status collapsed
20303
20304 \begin_layout Standard
20305
20306
20307 \backslash
20308 renewcommand{
20309 \backslash
20310 thefootnote}{
20311 \backslash
20312 roman{footnote}}
20313 \end_layout
20314
20315 \end_inset
20316
20317  Nota al pie en números romanos:
20318 \begin_inset Foot
20319 status open
20320
20321 \begin_layout Standard
20322 Ejemplo de nota al pie en números romanos.
20323 \end_layout
20324
20325 \end_inset
20326
20327
20328 \begin_inset ERT
20329 status collapsed
20330
20331 \begin_layout Standard
20332
20333
20334 \backslash
20335 renewcommand{
20336 \backslash
20337 thefootnote}{
20338 \backslash
20339 arabic{footnote}}
20340 \end_layout
20341
20342 \end_inset
20343
20344
20345 \end_layout
20346
20347 \begin_layout Standard
20348 Para cambiar el estilo de número a romanos en mayúscula cambia el comando
20349  
20350 \series bold
20351
20352 \backslash
20353 roman
20354 \series default
20355  por 
20356 \series bold
20357
20358 \backslash
20359 Roman
20360 \series default
20361 .
20362  Para 
20363 \begin_inset Quotes eld
20364 \end_inset
20365
20366 numerar
20367 \begin_inset Quotes erd
20368 \end_inset
20369
20370  notas al pie con letras mayúsculas o minúsculas usa 
20371 \series bold
20372
20373 \backslash
20374 Alph
20375 \series default
20376  o 
20377 \series bold
20378
20379 \backslash
20380 alph
20381 \series default
20382 , respectivamente.
20383  Para 
20384 \begin_inset Quotes eld
20385 \end_inset
20386
20387 numerar
20388 \begin_inset Quotes erd
20389 \end_inset
20390
20391  notas al pie con símbolos usa 
20392 \series bold
20393
20394 \backslash
20395 fnsymbol
20396 \series default
20397 .
20398 \end_layout
20399
20400 \begin_layout Standard
20401 \begin_inset Note Greyedout
20402 status open
20403
20404 \begin_layout Standard
20405
20406 \series bold
20407 Nota:
20408 \series medium
20409  
20410 \series default
20411 Solo puedes numerar hasta 26 pies con letras, porque esta numeración está
20412  limitada a letras simples.
20413 \end_layout
20414
20415 \end_inset
20416
20417
20418 \newline
20419
20420 \begin_inset Note Greyedout
20421 status open
20422
20423 \begin_layout Standard
20424
20425 \series bold
20426 Nota:
20427 \series default
20428  Solo puedes numerar 9 pies con símbolos.
20429 \end_layout
20430
20431 \end_inset
20432
20433
20434 \end_layout
20435
20436 \begin_layout Standard
20437 Para volver al estilo de numeración predeterminado cuando has cambiado a
20438  otro estilo, usa 
20439 \series bold
20440
20441 \backslash
20442 arabic
20443 \series default
20444  en vez de 
20445 \series bold
20446
20447 \backslash
20448 roman
20449 \series default
20450  en el comando anterior.
20451 \end_layout
20452
20453 \begin_layout Subsection
20454 Colocación de Notas al Pie
20455 \begin_inset LatexCommand index
20456 name "Notas al Pie ! Colocación"
20457
20458 \end_inset
20459
20460
20461 \end_layout
20462
20463 \begin_layout Standard
20464 Si tienes varias notas al pie de una página, se muestran sin espacio vertical
20465  entre ellas al final de la página.
20466  Para hacerlas más legibles puedes añadir p.\InsetSpace \thinspace{}
20467 e.
20468  1.5\InsetSpace \thinspace{}
20469 mm con el comando siguiente en el preámbulo:
20470 \end_layout
20471
20472 \begin_layout Standard
20473
20474 \series bold
20475
20476 \backslash
20477 let
20478 \backslash
20479 myFoot
20480 \backslash
20481 footnote
20482 \newline
20483
20484 \backslash
20485 renewcommand{
20486 \backslash
20487 footnote}[1]{
20488 \backslash
20489 myFoot{#1
20490 \backslash
20491 vspace{1.5mm}}}
20492 \end_layout
20493
20494 \begin_layout Standard
20495 \begin_inset VSpace bigskip
20496 \end_inset
20497
20498 En documentos a dos columnas la nota al pie aparece al final de cada columna,
20499  ver la Figura\InsetSpace ~
20500
20501 \begin_inset LatexCommand ref
20502 reference "fig:Colocación-standard-del-pie"
20503
20504 \end_inset
20505
20506 .
20507  Si las notas debieran mostrarse sólo al final de la columna derecha, como
20508  en la Figura\InsetSpace ~
20509
20510 \begin_inset LatexCommand ref
20511 reference "fig:Colocación-del-pie-en"
20512
20513 \end_inset
20514
20515 , usa el paquete LaTeX 
20516 \series bold
20517 ftnright
20518 \series default
20519
20520 \begin_inset LatexCommand index
20521 name "LaTeX-paquetes ! ftnright"
20522
20523 \end_inset
20524
20525  con este comando en el preámbulo:
20526 \end_layout
20527
20528 \begin_layout Standard
20529
20530 \series bold
20531
20532 \backslash
20533 usepackage{ftnright}
20534 \end_layout
20535
20536 \begin_layout Standard
20537 \begin_inset Float figure
20538 placement !h
20539 wide false
20540 sideways false
20541 status open
20542
20543 \begin_layout Standard
20544 \begin_inset ERT
20545 status collapsed
20546
20547 \begin_layout Standard
20548
20549
20550 \backslash
20551 framebox{
20552 \end_layout
20553
20554 \end_inset
20555
20556
20557 \begin_inset Graphics
20558         filename ../clipart/without_fntright.pdf
20559         width 100col%
20560
20561 \end_inset
20562
20563
20564 \begin_inset ERT
20565 status collapsed
20566
20567 \begin_layout Standard
20568
20569 }
20570 \end_layout
20571
20572 \end_inset
20573
20574
20575 \end_layout
20576
20577 \begin_layout Caption
20578 \begin_inset LatexCommand label
20579 name "fig:Colocación-standard-del-pie"
20580
20581 \end_inset
20582
20583 Colocación standard de notas al pie en documentos a dos columnas.
20584 \end_layout
20585
20586 \end_inset
20587
20588
20589 \end_layout
20590
20591 \begin_layout Standard
20592 \begin_inset Float figure
20593 placement !h
20594 wide false
20595 sideways false
20596 status open
20597
20598 \begin_layout Standard
20599 \begin_inset ERT
20600 status collapsed
20601
20602 \begin_layout Standard
20603
20604
20605 \backslash
20606 framebox{
20607 \end_layout
20608
20609 \end_inset
20610
20611
20612 \begin_inset Graphics
20613         filename ../clipart/with_fntright.pdf
20614         width 100col%
20615
20616 \end_inset
20617
20618
20619 \begin_inset ERT
20620 status collapsed
20621
20622 \begin_layout Standard
20623
20624 }
20625 \end_layout
20626
20627 \end_inset
20628
20629
20630 \end_layout
20631
20632 \begin_layout Caption
20633 \begin_inset LatexCommand label
20634 name "fig:Colocación-del-pie-en"
20635
20636 \end_inset
20637
20638 Colocación del pie en documentos a dos columnas cuando se usa el paquete
20639  LaTeX 
20640 \series bold
20641 ftnright
20642 \series default
20643 .
20644 \end_layout
20645
20646 \end_inset
20647
20648
20649 \end_layout
20650
20651 \begin_layout Standard
20652 \begin_inset VSpace bigskip
20653 \end_inset
20654
20655 En alguna literatura científica se acostumbra reunir las notas e imprimirlas
20656  en un párrafo separado al final de la sección, como en la Figura\InsetSpace ~
20657
20658 \begin_inset LatexCommand ref
20659 reference "fig:Notas-al-final----notas-al-pie"
20660
20661 \end_inset
20662
20663 .
20664  Para usar notas finales en vez de notas al pie , carga el paquete LaTeX
20665  
20666 \series bold
20667 endnotes
20668 \series default
20669
20670 \begin_inset LatexCommand index
20671 name "LaTeX-paquetes ! endnotes"
20672
20673 \end_inset
20674
20675  con las siguientes líneas en el preámbulo de tu documento:
20676 \end_layout
20677
20678 \begin_layout Standard
20679
20680 \series bold
20681
20682 \backslash
20683 usepackage{endnotes}
20684 \newline
20685
20686 \backslash
20687 let
20688 \backslash
20689 footnote
20690 \backslash
20691 endnote
20692 \end_layout
20693
20694 \begin_layout Standard
20695 Para insertar la colección de notas, escribe el comando
20696 \end_layout
20697
20698 \begin_layout Standard
20699
20700 \series bold
20701
20702 \backslash
20703 theendnotes
20704 \end_layout
20705
20706 \begin_layout Standard
20707 en ERT al final de una sección o capítulo.
20708 \end_layout
20709
20710 \begin_layout Standard
20711 \begin_inset Float figure
20712 wide false
20713 sideways false
20714 status open
20715
20716 \begin_layout Standard
20717 \align center
20718 \begin_inset ERT
20719 status collapsed
20720
20721 \begin_layout Standard
20722
20723
20724 \backslash
20725 framebox{
20726 \end_layout
20727
20728 \end_inset
20729
20730
20731 \begin_inset Graphics
20732         filename ../clipart/endnotes.pdf
20733
20734 \end_inset
20735
20736
20737 \begin_inset ERT
20738 status collapsed
20739
20740 \begin_layout Standard
20741
20742 }
20743 \end_layout
20744
20745 \end_inset
20746
20747
20748 \end_layout
20749
20750 \begin_layout Caption
20751 \begin_inset LatexCommand label
20752 name "fig:Notas-al-final----notas-al-pie"
20753
20754 \end_inset
20755
20756 Notas al final -- notas al pie impresas en párrafo separado al final de
20757  la sección o del capítulo.
20758 \end_layout
20759
20760 \end_inset
20761
20762
20763 \end_layout
20764
20765 \begin_layout Standard
20766 \begin_inset VSpace defskip
20767 \end_inset
20768
20769 La cabecera de párrafo para las notas finales no se traduce automáticamente
20770  al lenguaje del documento, hay que hacerlo manualmente.
20771   El siguiente comando de preámbulo traduce el nombre en inglés 
20772 \begin_inset Quotes eld
20773 \end_inset
20774
20775 Notes
20776 \begin_inset Quotes erd
20777 \end_inset
20778
20779  al español 
20780 \begin_inset Quotes eld
20781 \end_inset
20782
20783 Notas
20784 \begin_inset Quotes erd
20785 \end_inset
20786
20787 :
20788 \end_layout
20789
20790 \begin_layout Standard
20791
20792 \series bold
20793
20794 \backslash
20795 renewcommand{
20796 \backslash
20797 notesname}{Notas}
20798 \end_layout
20799
20800 \begin_layout Standard
20801 \begin_inset VSpace defskip
20802 \end_inset
20803
20804 La numeración de notas finales puede cambiarse como la de las notas al pie,
20805  como se describe en la sección\InsetSpace ~
20806
20807 \begin_inset LatexCommand ref
20808 reference "sub:Numeración-de-Notas-al-Pie"
20809
20810 \end_inset
20811
20812 ; sólo hay que reemplazar el comando 
20813 \series bold
20814
20815 \backslash
20816 thefootnote
20817 \series default
20818  por 
20819 \series bold
20820
20821 \backslash
20822 theendnote
20823 \series default
20824 .
20825  Para restablecer la numeración usa el comando 
20826 \series bold
20827
20828 \backslash
20829 @addtoreset 
20830 \series default
20831 como se describe en la sección\InsetSpace ~
20832
20833 \begin_inset LatexCommand ref
20834 reference "sub:Numeración-de-Notas-al-Pie"
20835
20836 \end_inset
20837
20838  y sustituye el parámetro de comando 
20839 \series bold
20840 footnote
20841 \series default
20842  por 
20843 \series bold
20844 endnote
20845 \series default
20846 .
20847 \end_layout
20848
20849 \begin_layout Standard
20850 Para crear solo una marca para una nota final, usa el comando 
20851 \series bold
20852
20853 \backslash
20854 endnotemark[número]
20855 \series default
20856  similar al comando 
20857 \series bold
20858
20859 \backslash
20860 footnotemark
20861 \series default
20862 , descrito en la sección\InsetSpace ~
20863
20864 \begin_inset LatexCommand ref
20865 reference "sec:Notas-al-pie"
20866
20867 \end_inset
20868
20869 .
20870 \end_layout
20871
20872 \begin_layout Standard
20873 \begin_inset VSpace bigskip
20874 \end_inset
20875
20876 Las notas al pie también pueden colocarse al margen de la página y la alineación
20877  del texto del pie también puede cambiarse, ver el paquete LaTeX 
20878 \series bold
20879 footmisc
20880 \series default
20881
20882 \begin_inset LatexCommand index
20883 name "LaTeX-paquetes ! footmisc"
20884
20885 \end_inset
20886
20887
20888 \begin_inset LatexCommand cite
20889 key "footmisc"
20890
20891 \end_inset
20892
20893  para más información.
20894 \end_layout
20895
20896 \begin_layout Standard
20897 Para otras posibilidades de diseño de notas al pie mira en libros de LaTeX,
20898  
20899 \begin_inset LatexCommand cite
20900 key "latexcompanion,latexguide,latexbook"
20901
20902 \end_inset
20903
20904 .
20905 \end_layout
20906
20907 \begin_layout Section
20908 Notas al Margen
20909 \begin_inset LatexCommand index
20910 name "Notas ! al Margen"
20911
20912 \end_inset
20913
20914
20915 \end_layout
20916
20917 \begin_layout Standard
20918 Las notas al margen se ven y se comportan en LyX como notas al pie.
20919  Se insertan con el menú 
20920 \family sans
20921 Insertar\SpecialChar \menuseparator
20922 Nota\InsetSpace ~
20923 al\InsetSpace ~
20924 margen
20925 \family default
20926  o el botón 
20927 \begin_inset Graphics
20928         filename ../images/marginalnote-insert.xpm
20929         scale 85
20930
20931 \end_inset
20932
20933 .
20934  Aparece un cuadro gris con la etiqueta en rojo
20935 \family roman
20936 \series medium
20937  
20938 \begin_inset Quotes eld
20939 \end_inset
20940
20941 margen
20942 \begin_inset Quotes erd
20943 \end_inset
20944
20945  en el que puedes escribir el texto de la nota.
20946 \end_layout
20947
20948 \begin_layout Standard
20949 Al lado hay un ejemplo de nota al margen.
20950 \family roman
20951 \series medium
20952
20953 \begin_inset Marginal
20954 status open
20955
20956 \begin_layout Standard
20957 Esto es una nota al margen.
20958 \end_layout
20959
20960 \end_inset
20961
20962
20963 \end_layout
20964
20965 \begin_layout Standard
20966 Estas notas salen en el margen derecho en documentos a una cara.
20967  En documentos a doble cara se muestran en el margen externo -- izquierdo
20968  en páginas pares, derecho en páginas impares.
20969  El texto de las notas se alinea en la parte opuesta al margen -- se alinea
20970  a la derecha si la nota aparece en el margen izquierdo.
20971  La primera línea de la nota se sitúa en la posición de la línea del texto
20972  en la que se inserta en el documento.
20973 \end_layout
20974
20975 \begin_layout Standard
20976 \begin_inset VSpace bigskip
20977 \end_inset
20978
20979 Para colocar la nota en el margen interno añade el comando
20980 \end_layout
20981
20982 \begin_layout Standard
20983
20984 \series bold
20985
20986 \backslash
20987 reversemarginpar
20988 \end_layout
20989
20990 \begin_layout Standard
20991 en ERT antes de la nota.
20992  La nueva colocación es válida para todas las siguientes notas al margen.
20993 \begin_inset ERT
20994 status collapsed
20995
20996 \begin_layout Standard
20997
20998
20999 \backslash
21000 reversemarginpar 
21001 \end_layout
21002
21003 \end_inset
21004
21005
21006 \begin_inset Marginal
21007 status open
21008
21009 \begin_layout Standard
21010 Esto es una nota en el margen interno.
21011 \end_layout
21012
21013 \end_inset
21014
21015
21016 \series bold
21017
21018 \newline
21019
21020 \series default
21021
21022 \begin_inset Note Greyedout
21023 status open
21024
21025 \begin_layout Standard
21026
21027 \series bold
21028 Nota:
21029 \series default
21030  A veces no hay espacio suficiente en el margen interno, por lo que la nota
21031  no se mostrará correctamente en la salida.
21032 \end_layout
21033
21034 \end_inset
21035
21036
21037 \end_layout
21038
21039 \begin_layout Standard
21040 \begin_inset ERT
21041 status collapsed
21042
21043 \begin_layout Standard
21044
21045
21046 \backslash
21047 normalmarginpar 
21048 \end_layout
21049
21050 \end_inset
21051
21052 Para volver a la ubicación predeterminada inserta el comando
21053 \end_layout
21054
21055 \begin_layout Standard
21056
21057 \series bold
21058
21059 \backslash
21060 normalmarginpar
21061 \end_layout
21062
21063 \begin_layout Standard
21064 en ERT.
21065 \newline
21066  
21067 \begin_inset Note Greyedout
21068 status open
21069
21070 \begin_layout Standard
21071
21072 \series bold
21073 Nota:
21074 \series default
21075  El comando se ignora si en el mismo párrafo está también presente el comando
21076  
21077 \series bold
21078
21079 \backslash
21080 reversemarginpar
21081 \series default
21082 .
21083 \end_layout
21084
21085 \end_inset
21086
21087
21088 \end_layout
21089
21090 \begin_layout Standard
21091 \begin_inset VSpace bigskip
21092 \end_inset
21093
21094
21095 \family roman
21096 \series medium
21097
21098 \begin_inset Marginal
21099 status open
21100
21101 \begin_layout Standard
21102 PalabraMuyLargaAlMargen no partida con guión.
21103 \end_layout
21104
21105 \end_inset
21106
21107
21108 \family default
21109 \series default
21110 Como en el caso descrito en la sección\InsetSpace ~
21111
21112 \begin_inset LatexCommand ref
21113 reference "sub:Líneas-Múltiples-en"
21114
21115 \end_inset
21116
21117 , una palabra larga no puede partirse con guión cuando es la primera en
21118  la nota al margen.
21119  Para evitar esto, inserta el comando
21120 \end_layout
21121
21122 \begin_layout Standard
21123
21124 \series bold
21125
21126 \backslash
21127 hspace{0pt}
21128 \end_layout
21129
21130 \begin_layout Standard
21131 en ERT antes de la palabra
21132 \family roman
21133 \series medium
21134 .
21135 \begin_inset Marginal
21136 status open
21137
21138 \begin_layout Standard
21139 \begin_inset ERT
21140 status collapsed
21141
21142 \begin_layout Standard
21143
21144
21145 \backslash
21146 hspace{0pt}
21147 \end_layout
21148
21149 \end_inset
21150
21151 PalabraMuyLargaAlMargen partida con guión.
21152 \end_layout
21153
21154 \end_inset
21155
21156
21157 \end_layout
21158
21159 \begin_layout Standard
21160 \begin_inset VSpace bigskip
21161 \end_inset
21162
21163
21164 \end_layout
21165
21166 \begin_layout Standard
21167 \begin_inset Note Greyedout
21168 status open
21169
21170 \begin_layout Standard
21171
21172 \series bold
21173 Nota:
21174 \series default
21175  Normalmente no pueden utilizarse notas al margen en tablas, flotantes,
21176  y notas al pie.
21177 \end_layout
21178
21179 \end_inset
21180
21181
21182 \end_layout
21183
21184 \begin_layout Standard
21185 Esta restricción se puede salvar con el paquete LaTeX 
21186 \series bold
21187 marginnote
21188 \series default
21189
21190 \begin_inset LatexCommand index
21191 name "LaTeX-paquetes ! marginnote"
21192
21193 \end_inset
21194
21195 .
21196  Poniendo estas dos líneas en el preámbulo, el comando usado por LyX para
21197  notas al margen es redefinido para usar el comando provisto por el paquete
21198  
21199 \series bold
21200 marginnote
21201 \series default
21202 :
21203 \end_layout
21204
21205 \begin_layout Standard
21206
21207 \series bold
21208
21209 \backslash
21210 usepackage{marginnote}
21211 \newline
21212
21213 \backslash
21214 let
21215 \backslash
21216 marginpar
21217 \backslash
21218 marginnote
21219 \end_layout
21220
21221 \begin_layout Standard
21222 Esto se ha utilizado en el presente documento porque 
21223 \series bold
21224 marginnote
21225 \series default
21226  tiene una característica adicional útil: Puedes imponer un offset vertical
21227  a la nota.
21228  A veces esto hace falta si hay demasiadas notas juntas o para mejorar el
21229  diseño de la página.
21230  El offset se determina en LyX como ERT directamente tras la nota al margen
21231  en el esquema
21232 \end_layout
21233
21234 \begin_layout Standard
21235
21236 \series bold
21237 [offset]
21238 \end_layout
21239
21240 \begin_layout Standard
21241 donde offset es una longitud en una de las unidades listadas en la Tabla\InsetSpace ~
21242
21243 \begin_inset LatexCommand ref
21244 reference "tab:Unidades"
21245
21246 \end_inset
21247
21248 .
21249  Un valor negativo desplaza la nota hacia arriba, un valor positivo hacia
21250  abajo.
21251
21252 \family roman
21253 \series medium
21254  Por ejemplo la nota adjunta a esta línea de texto está desplazada 1.5\InsetSpace \thinspace{}
21255 cm
21256  arriba con el comando ERT 
21257 \begin_inset Quotes eld
21258 \end_inset
21259
21260
21261 \family default
21262 \series bold
21263 [-1.5cm]
21264 \family roman
21265 \series medium
21266
21267 \begin_inset Quotes erd
21268 \end_inset
21269
21270
21271 \begin_inset Marginal
21272 status collapsed
21273
21274 \begin_layout Standard
21275 Esta nota está 1.5\InsetSpace \thinspace{}
21276 cm por encima de su posición original.
21277 \end_layout
21278
21279 \end_inset
21280
21281
21282 \family default
21283 \series default
21284
21285 \begin_inset ERT
21286 status collapsed
21287
21288 \begin_layout Standard
21289
21290 [-1.5cm]
21291 \end_layout
21292
21293 \end_inset
21294
21295
21296 \end_layout
21297
21298 \begin_layout Standard
21299 \begin_inset VSpace defskip
21300 \end_inset
21301
21302 Con 
21303 \series bold
21304 marginnote
21305 \series default
21306  también puedes cambiar la alineación del texto en el margen.
21307  Por ejemplo los comandos
21308 \end_layout
21309
21310 \begin_layout Standard
21311
21312 \series bold
21313
21314 \backslash
21315 renewcommand*{
21316 \backslash
21317 raggedleftmarginnote}{
21318 \backslash
21319 centering}
21320 \newline
21321
21322 \backslash
21323 renewcommand*{
21324 \backslash
21325 raggedrightmarginnote}{
21326 \backslash
21327 centering}
21328 \end_layout
21329
21330 \begin_layout Standard
21331 producen alineación centrada.
21332  
21333 \series bold
21334
21335 \backslash
21336 raggedleftmarginnote
21337 \series default
21338  identifica las notas que aparecen al lado izquierdo.
21339 \family roman
21340 \series medium
21341
21342 \begin_inset ERT
21343 status collapsed
21344
21345 \begin_layout Standard
21346
21347
21348 \backslash
21349 renewcommand*{
21350 \backslash
21351 raggedleftmarginnote}{
21352 \backslash
21353 centering}
21354 \end_layout
21355
21356 \begin_layout Standard
21357
21358
21359 \backslash
21360 renewcommand*{
21361 \backslash
21362 raggedrightmarginnote}{
21363 \backslash
21364 centering}
21365 \end_layout
21366
21367 \end_inset
21368
21369
21370 \begin_inset Marginal
21371 status open
21372
21373 \begin_layout Standard
21374 El texto de esta nota está centrado.
21375 \end_layout
21376
21377 \end_inset
21378
21379  
21380 \family default
21381 \series default
21382 El valor predeterminado es 
21383 \end_layout
21384
21385 \begin_layout Standard
21386
21387 \series bold
21388
21389 \backslash
21390 renewcommand*{
21391 \backslash
21392 raggedleftmarginnote}{
21393 \backslash
21394 raggedleft}
21395 \newline
21396
21397 \backslash
21398 renewcommand*{
21399 \backslash
21400 raggedrightmarginnote}{
21401 \backslash
21402 raggedright}
21403 \family roman
21404 \series medium
21405
21406 \begin_inset ERT
21407 status collapsed
21408
21409 \begin_layout Standard
21410
21411
21412 \backslash
21413 renewcommand*{
21414 \backslash
21415 raggedleftmarginnote}{
21416 \backslash
21417 raggedleft}
21418 \end_layout
21419
21420 \begin_layout Standard
21421
21422
21423 \backslash
21424 renewcommand*{
21425 \backslash
21426 raggedrightmarginnote}{
21427 \backslash
21428 raggedright}
21429 \end_layout
21430
21431 \end_inset
21432
21433
21434 \end_layout
21435
21436 \begin_layout Standard
21437 \begin_inset VSpace defskip
21438 \end_inset
21439
21440 Para otras características de 
21441 \series bold
21442 marginnote
21443 \series default
21444  mira en su documentación 
21445 \begin_inset LatexCommand cite
21446 key "marginnote"
21447
21448 \end_inset
21449
21450 .
21451 \end_layout
21452
21453 \begin_layout Standard
21454 \begin_inset VSpace bigskip
21455 \end_inset
21456
21457 El diseño de las notas al margen puede ser redefinido.
21458  Por ejemplo, para crear una cabecera para todas las notas con el texto
21459  
21460 \begin_inset Quotes erd
21461 \end_inset
21462
21463
21464 \family sans
21465 \series bold
21466 \bar under
21467 Atención
21468 \family default
21469 \series default
21470 \bar default
21471
21472 \begin_inset Quotes eld
21473 \end_inset
21474
21475 , subrayado, sans-serif en negrita, añade lo siguiente en el preámbulo:
21476 \end_layout
21477
21478 \begin_layout Standard
21479
21480 \series bold
21481
21482 \backslash
21483 let
21484 \backslash
21485 myMarginpar
21486 \backslash
21487 marginpar
21488 \newline
21489
21490 \backslash
21491 renewcommand{
21492 \backslash
21493 marginpar}[1]{
21494 \backslash
21495 myMarginpar{%
21496 \newline
21497
21498 \begin_inset ERT
21499 status collapsed
21500
21501 \begin_layout Standard
21502
21503
21504 \backslash
21505 hphantom{ }
21506 \end_layout
21507
21508 \end_inset
21509
21510
21511 \backslash
21512 hspace{0pt}
21513 \backslash
21514 textsf{
21515 \backslash
21516 textbf{
21517 \backslash
21518 underbar{¡Atención!}}}%
21519 \newline
21520
21521 \begin_inset ERT
21522 status collapsed
21523
21524 \begin_layout Standard
21525
21526
21527 \backslash
21528 hphantom{ }
21529 \end_layout
21530
21531 \end_inset
21532
21533
21534 \backslash
21535 vspace{1.5mm}
21536 \backslash
21537
21538 \backslash
21539 #1}}
21540 \end_layout
21541
21542 \begin_layout Standard
21543
21544 \family roman
21545 \series medium
21546 \begin_inset ERT
21547 status collapsed
21548
21549 \begin_layout Standard
21550
21551
21552 \backslash
21553 let
21554 \backslash
21555 myMarginpar
21556 \backslash
21557 marginpar
21558 \end_layout
21559
21560 \begin_layout Standard
21561
21562
21563 \backslash
21564 renewcommand{
21565 \backslash
21566 marginpar}[1]{
21567 \backslash
21568 myMarginpar{%
21569 \end_layout
21570
21571 \begin_layout Standard
21572
21573    
21574 \backslash
21575 textsf{
21576 \backslash
21577 textbf{
21578 \backslash
21579 underbar{¡Atención!}}}%
21580 \end_layout
21581
21582 \begin_layout Standard
21583
21584    
21585 \backslash
21586 vspace{1.5mm}
21587 \backslash
21588
21589 \backslash
21590 #1}}
21591 \end_layout
21592
21593 \end_inset
21594
21595
21596 \begin_inset Marginal
21597 status open
21598
21599 \begin_layout Standard
21600 Esta es una nota con una cabecera definida.
21601 \end_layout
21602
21603 \end_inset
21604
21605
21606 \family default
21607 \series default
21608
21609 \begin_inset ERT
21610 status collapsed
21611
21612 \begin_layout Standard
21613
21614 [-1.5cm]
21615 \end_layout
21616
21617 \end_inset
21618
21619
21620 \family roman
21621 \series medium
21622
21623 \begin_inset ERT
21624 status collapsed
21625
21626 \begin_layout Standard
21627
21628
21629 \backslash
21630 renewcommand{
21631 \backslash
21632 marginpar}[1]{
21633 \backslash
21634 myMarginpar{#1}}
21635 \end_layout
21636
21637 \end_inset
21638
21639
21640 \family default
21641 \series default
21642
21643 \begin_inset Note Note
21644 status collapsed
21645
21646 \begin_layout Standard
21647 El formato de la nota al margen se ha cambiado solo para este ejemplo.
21648 \end_layout
21649
21650 \end_inset
21651
21652
21653 \end_layout
21654
21655 \begin_layout Chapter
21656 Cuadros
21657 \end_layout
21658
21659 \begin_layout Section
21660 Introducción
21661 \begin_inset LatexCommand index
21662 name "Cuadros ! Introducción"
21663
21664 \end_inset
21665
21666
21667 \end_layout
21668
21669 \begin_layout Standard
21670 Los cuadros se emplean para dar formato a bloques de texto.
21671  Se pueden usar para escribir documentos con varios lenguajes, ver sección\InsetSpace ~
21672
21673 \begin_inset LatexCommand ref
21674 reference "sec:Minipáginas"
21675
21676 \end_inset
21677
21678 , enmarcar textos, ver sección\InsetSpace ~
21679
21680 \begin_inset LatexCommand ref
21681 reference "sec:Cuadros-Enmarcados"
21682
21683 \end_inset
21684
21685 , evitar la división de palabras, ver sección\InsetSpace ~
21686
21687 \begin_inset LatexCommand ref
21688 reference "sec:Prevención-de-la-Partición-con-Guiones"
21689
21690 \end_inset
21691
21692 , alinear texto, ver sección\InsetSpace ~
21693
21694 \begin_inset LatexCommand ref
21695 reference "sub:Alineación-Vertical"
21696
21697 \end_inset
21698
21699 , o para poner color de fondo a un texto, ver sección\InsetSpace ~
21700
21701 \begin_inset LatexCommand ref
21702 reference "sec:Cuadros-Coloreados"
21703
21704 \end_inset
21705
21706 .
21707 \end_layout
21708
21709 \begin_layout Standard
21710 Se insertan con el menú Insertar\SpecialChar \menuseparator
21711 Cuadro.
21712  Surge un recuadro gris con la etiqueta 
21713 \family sans
21714 Cuadro (Minipágina)
21715 \family default
21716
21717 \begin_inset Graphics
21718         filename ../clipart/CuadroMinipag.png
21719         scale 75
21720         keepAspectRatio
21721
21722 \end_inset
21723
21724 .
21725  El tipo de cuadro se puede elegir al hacer click-derecho sobre él.
21726  Sale un diálogo en el que 
21727 \family sans
21728 Cuadro
21729 \family default
21730 \InsetSpace ~
21731
21732 \family sans
21733 interior
21734 \family default
21735  permite escoger los tipos 
21736 \family sans
21737 Parbox (
21738 \family default
21739
21740 \begin_inset Quotes eld
21741 \end_inset
21742
21743
21744 \family sans
21745 Párrafo
21746 \family default
21747
21748 \begin_inset Quotes erd
21749 \end_inset
21750
21751
21752 \family sans
21753 )
21754 \family default
21755  y 
21756 \family sans
21757 Minipágina
21758 \family default
21759 .
21760  El 
21761 \family sans
21762 Minipágina
21763 \family default
21764  es el predeterminado para nuevos cuadros y se explica en la sección\InsetSpace ~
21765
21766 \begin_inset LatexCommand ref
21767 reference "sec:Minipáginas"
21768
21769 \end_inset
21770
21771 ; el tipo 
21772 \family sans
21773 Parbox
21774 \family default
21775  se describe en la sección\InsetSpace ~
21776
21777 \begin_inset LatexCommand ref
21778 reference "sec:Cuadros-de-Párrafo"
21779
21780 \end_inset
21781
21782 .
21783 \end_layout
21784
21785 \begin_layout Standard
21786 Los cuadros no se numeran y por tanto no se pueden referenciar como los
21787  flotantes o las notas al pie.
21788 \end_layout
21789
21790 \begin_layout Standard
21791 \begin_inset Note Greyedout
21792 status open
21793
21794 \begin_layout Standard
21795
21796 \series bold
21797 Nota:
21798 \series default
21799  Debido a un error en LyX hay que insertar un espacio protegido detrás de
21800  un cuadro si se desea separar con un espacio el cuadro y el texto siguiente.
21801 \end_layout
21802
21803 \end_inset
21804
21805
21806 \end_layout
21807
21808 \begin_layout Standard
21809 \begin_inset Note Greyedout
21810 status open
21811
21812 \begin_layout Standard
21813
21814 \series bold
21815 Nota:
21816 \series default
21817  Los cuadros no deben ser el item en un entorno 
21818 \family sans
21819 Enumeración
21820 \family default
21821  o 
21822 \family sans
21823 Descripción
21824 \family default
21825 .
21826 \end_layout
21827
21828 \end_inset
21829
21830
21831 \end_layout
21832
21833 \begin_layout Standard
21834 \begin_inset Note Greyedout
21835 status open
21836
21837 \begin_layout Standard
21838
21839 \series bold
21840 Nota:
21841 \series default
21842  Por razones desconocidas solo se puede poner el tipo 
21843 \family sans
21844 Cuadro\InsetSpace ~
21845 interior
21846 \family default
21847  en 
21848 \family sans
21849 Ninguno
21850 \family default
21851  cuando se emplea un cuadro enmarcado.
21852  Los cuadros sin ningún tipo de 
21853 \family sans
21854 Cuadro\InsetSpace ~
21855 interior
21856 \family default
21857  y sin marcos se explican en la sección\InsetSpace ~
21858
21859 \begin_inset LatexCommand ref
21860 reference "sec:Prevención-de-la-Partición-con-Guiones"
21861
21862 \end_inset
21863
21864 .
21865 \end_layout
21866
21867 \end_inset
21868
21869
21870 \end_layout
21871
21872 \begin_layout Section
21873 Diálogo Cuadros
21874 \begin_inset LatexCommand index
21875 name "Cuadros ! Diálogo"
21876
21877 \end_inset
21878
21879
21880 \begin_inset LatexCommand index
21881 name "Cuadros ! Alineación"
21882
21883 \end_inset
21884
21885
21886 \end_layout
21887
21888 \begin_layout Standard
21889 En el diálogo puedes ajustar la geometría del cuadro en los campos 
21890 \family sans
21891 Ancho
21892 \family default
21893  y 
21894 \family sans
21895 Alto
21896 \family default
21897 .
21898  Las unidades disponibles para la geometría se explican en la Tabla\InsetSpace ~
21899
21900 \begin_inset LatexCommand ref
21901 reference "tab:Unidades"
21902
21903 \end_inset
21904
21905 .
21906  El campo 
21907 \family sans
21908 Alto
21909 \family default
21910  ofrece los siguientes tamaños adicionales:
21911 \end_layout
21912
21913 \begin_layout Description
21914 Profundidad Este es el texto plano 
21915 \begin_inset Quotes eld
21916 \end_inset
21917
21918 alto
21919 \begin_inset Quotes erd
21920 \end_inset
21921
21922 .
21923  Ignora la profundidad total cuando hay mútiples líneas de texto en el cuadro:
21924 \newline
21925
21926 \newline
21927
21928 \newline
21929
21930 \begin_inset Box Boxed
21931 position "c"
21932 hor_pos "c"
21933 has_inner_box 1
21934 inner_pos "c"
21935 use_parbox 0
21936 width "12col%"
21937 special "none"
21938 height "1in"
21939 height_special "depth"
21940 status open
21941
21942 \begin_layout Standard
21943 \align center
21944 Cuadro con altura establecida en 1\InsetSpace \thinspace{}
21945 Profundidad
21946 \end_layout
21947
21948 \end_inset
21949
21950
21951 \newline
21952
21953 \newline
21954
21955 \end_layout
21956
21957 \begin_layout Description
21958 Alto Es la altura del texto que está dentro del cuadro.
21959  Un valor de, p.\InsetSpace \thinspace{}
21960 e.\InsetSpace ~
21961 2 para este tamaño fijará la altura del cuadro a 2 veces
21962  la altura del texto: 
21963 \begin_inset Box Boxed
21964 position "c"
21965 hor_pos "c"
21966 has_inner_box 1
21967 inner_pos "c"
21968 use_parbox 0
21969 width "20col%"
21970 special "none"
21971 height "2in"
21972 height_special "height"
21973 status open
21974
21975 \begin_layout Standard
21976 \align center
21977 Cuadro con altura puesta en 2\InsetSpace \thinspace{}
21978 Alto
21979 \end_layout
21980
21981 \end_inset
21982
21983
21984 \end_layout
21985
21986 \begin_layout Description
21987 Alto\InsetSpace ~
21988 Total Esto es el Alto\InsetSpace \thinspace{}
21989 +\InsetSpace \thinspace{}
21990 Profundidad: 
21991 \begin_inset Box Boxed
21992 position "c"
21993 hor_pos "c"
21994 has_inner_box 1
21995 inner_pos "c"
21996 use_parbox 0
21997 width "20col%"
21998 special "none"
21999 height "1in"
22000 height_special "totalheight"
22001 status open
22002
22003 \begin_layout Standard
22004 \align center
22005 Cuadro con altura puesta a 1\InsetSpace \thinspace{}
22006 Alto\InsetSpace ~
22007 total
22008 \end_layout
22009
22010 \end_inset
22011
22012
22013 \end_layout
22014
22015 \begin_layout Description
22016 Ancho Esto determina al ancho del cuadro como altura: 
22017 \begin_inset Box Boxed
22018 position "c"
22019 hor_pos "c"
22020 has_inner_box 1
22021 inner_pos "c"
22022 use_parbox 0
22023 width "12col%"
22024 special "none"
22025 height "1in"
22026 height_special "width"
22027 status open
22028
22029 \begin_layout Standard
22030 \align center
22031 Cuadro con altura puesta en 1\InsetSpace \thinspace{}
22032 Ancho
22033 \end_layout
22034
22035 \end_inset
22036
22037
22038 \end_layout
22039
22040 \begin_layout Standard
22041 \begin_inset VSpace bigskip
22042 \end_inset
22043
22044 Si has elegido un 
22045 \family sans
22046 Cuadro\InsetSpace ~
22047 interior
22048 \family default
22049 , la alineación vertical del cuadro puede ser:
22050 \end_layout
22051
22052 \begin_layout Description
22053 Superior Ejemplo de línea de texto.
22054  
22055 \begin_inset Box Boxed
22056 position "t"
22057 hor_pos "c"
22058 has_inner_box 1
22059 inner_pos "c"
22060 use_parbox 0
22061 width "12col%"
22062 special "none"
22063 height "1in"
22064 height_special "totalheight"
22065 status open
22066
22067 \begin_layout Standard
22068 \align center
22069 Cuadro alineado arriba.
22070 \end_layout
22071
22072 \end_inset
22073
22074 \InsetSpace ~
22075 Ejemplo de línea de texto.
22076 \end_layout
22077
22078 \begin_layout Description
22079 Medio Ejemplo de línea de texto.
22080  
22081 \begin_inset Box Boxed
22082 position "c"
22083 hor_pos "c"
22084 has_inner_box 1
22085 inner_pos "c"
22086 use_parbox 0
22087 width "12col%"
22088 special "none"
22089 height "1in"
22090 height_special "totalheight"
22091 status open
22092
22093 \begin_layout Standard
22094 \align center
22095 Cuadro alineado enmedio.
22096 \end_layout
22097
22098 \end_inset
22099
22100 \InsetSpace ~
22101 Ejemplo de línea de texto.
22102 \end_layout
22103
22104 \begin_layout Description
22105 Inferior Ejemplo de línea de texto.
22106  
22107 \begin_inset Box Boxed
22108 position "b"
22109 hor_pos "c"
22110 has_inner_box 1
22111 inner_pos "c"
22112 use_parbox 0
22113 width "12col%"
22114 special "none"
22115 height "1in"
22116 height_special "totalheight"
22117 status open
22118
22119 \begin_layout Standard
22120 \align center
22121 Cuadro alineado abajo.
22122 \end_layout
22123
22124 \end_inset
22125
22126 \InsetSpace ~
22127 Ejemplo de línea de texto.
22128 \end_layout
22129
22130 \begin_layout Standard
22131 La alineación horizontal del cuadro puede establecerse en el diálogo de
22132  configuración de párrafo de LyX si colocas el cuadro en su propio párrafo.
22133 \end_layout
22134
22135 \begin_layout Standard
22136 \begin_inset VSpace bigskip
22137 \end_inset
22138
22139 Cuando has escogido un 
22140 \family sans
22141 Cuadro\InsetSpace ~
22142 interior
22143 \family default
22144 , el contenido puede alinearse verticalmente a:
22145 \end_layout
22146
22147 \begin_layout Description
22148 Superior Ejemplo de línea de texto.
22149  
22150 \begin_inset Box Boxed
22151 position "c"
22152 hor_pos "c"
22153 has_inner_box 1
22154 inner_pos "t"
22155 use_parbox 0
22156 width "12col%"
22157 special "none"
22158 height "1.5in"
22159 height_special "totalheight"
22160 status open
22161
22162 \begin_layout Standard
22163 \align center
22164 Cuadro con texto alineado arriba.
22165 \end_layout
22166
22167 \end_inset
22168
22169 \InsetSpace ~
22170 Ejemplo de línea de texto.
22171 \end_layout
22172
22173 \begin_layout Description
22174 Medio Ejemplo de línea de texto.
22175  
22176 \begin_inset Box Boxed
22177 position "c"
22178 hor_pos "c"
22179 has_inner_box 1
22180 inner_pos "c"
22181 use_parbox 0
22182 width "12col%"
22183 special "none"
22184 height "1.5in"
22185 height_special "totalheight"
22186 status open
22187
22188 \begin_layout Standard
22189 \align center
22190 Cuadro con texto alineado enmedio.
22191 \end_layout
22192
22193 \end_inset
22194
22195 \InsetSpace ~
22196 Ejemplo de línea de texto.
22197 \end_layout
22198
22199 \begin_layout Description
22200 Inferior Ejemplo de línea de texto.
22201  
22202 \begin_inset Box Boxed
22203 position "c"
22204 hor_pos "c"
22205 has_inner_box 1
22206 inner_pos "b"
22207 use_parbox 0
22208 width "12col%"
22209 special "none"
22210 height "1.5in"
22211 height_special "totalheight"
22212 status open
22213
22214 \begin_layout Standard
22215 \align center
22216 Cuadro con texto alineado abajo.
22217 \end_layout
22218
22219 \end_inset
22220
22221 \InsetSpace ~
22222 Ejemplo de línea de texto.
22223 \end_layout
22224
22225 \begin_layout Description
22226 Estirado Ejemplo de línea de texto.
22227  
22228 \begin_inset Box Boxed
22229 position "c"
22230 hor_pos "c"
22231 has_inner_box 1
22232 inner_pos "s"
22233 use_parbox 0
22234 width "12col%"
22235 special "none"
22236 height "1.5in"
22237 height_special "totalheight"
22238 status open
22239
22240 \begin_layout Standard
22241 \align center
22242 Este texto
22243 \end_layout
22244
22245 \begin_layout Standard
22246 \align center
22247 está
22248 \end_layout
22249
22250 \begin_layout Standard
22251 \align center
22252 estirado.
22253 \end_layout
22254
22255 \end_inset
22256
22257 \InsetSpace ~
22258 Ejemplo de línea de texto.
22259 \end_layout
22260
22261 \begin_layout Standard
22262 Para estirar el contenido debe tener más de un párrafo.
22263  En el ejemplo anterior cada línea de texto está en un párrafo propio.
22264 \end_layout
22265
22266 \begin_layout Standard
22267 \begin_inset VSpace bigskip
22268 \end_inset
22269
22270 Para estirar horizontalmente el contenido usa el diálogo de párrafos de
22271  LyX cuando hayas escogido un 
22272 \family sans
22273 Cuadro\InsetSpace ~
22274 interior
22275 \family default
22276 .
22277 \end_layout
22278
22279 \begin_layout Standard
22280 \align center
22281 \begin_inset Box Boxed
22282 position "c"
22283 hor_pos "c"
22284 has_inner_box 1
22285 inner_pos "s"
22286 use_parbox 0
22287 width "15col%"
22288 special "none"
22289 height "1.25in"
22290 height_special "totalheight"
22291 status open
22292
22293 \begin_layout Standard
22294 \align left
22295 Cuadro
22296 \end_layout
22297
22298 \begin_layout Standard
22299 \align center
22300 con texto
22301 \end_layout
22302
22303 \begin_layout Standard
22304 \align right
22305 estirado
22306 \end_layout
22307
22308 \end_inset
22309
22310
22311 \end_layout
22312
22313 \begin_layout Standard
22314 Si no has estabecido un 
22315 \family sans
22316 Cuadro\InsetSpace ~
22317 interior
22318 \family default
22319 , puedes alinear horizontalmente el contenido del cuadro en el diálogo de
22320  cuadro.
22321 \end_layout
22322
22323 \begin_layout Standard
22324 \align center
22325 \begin_inset Box Boxed
22326 position "c"
22327 hor_pos "s"
22328 has_inner_box 0
22329 inner_pos "s"
22330 use_parbox 0
22331 width "90col%"
22332 special "none"
22333 height "1.25in"
22334 height_special "totalheight"
22335 status open
22336
22337 \begin_layout Standard
22338 \align left
22339 Texto estirado horizontalmente.
22340 \end_layout
22341
22342 \end_inset
22343
22344
22345 \end_layout
22346
22347 \begin_layout Section
22348 Cuadros Enmarcados
22349 \begin_inset LatexCommand label
22350 name "sec:Cuadros-Enmarcados"
22351
22352 \end_inset
22353
22354
22355 \begin_inset LatexCommand index
22356 name "Cuadros ! Marcos"
22357
22358 \end_inset
22359
22360
22361 \end_layout
22362
22363 \begin_layout Standard
22364 El estilo de marco del cuadro se puede determinar en la lista desplegable
22365  
22366 \family sans
22367 Tipo
22368 \family default
22369  del diálogo de cuadros.
22370  Son posibles los siguientes marcos:
22371 \end_layout
22372
22373 \begin_layout Description
22374 Marco\InsetSpace ~
22375 rectangular Dibuja un marco rectangular alrededor del cuadro.
22376  El grosor del marco depende de 
22377 \series bold
22378
22379 \backslash
22380 fboxrule
22381 \series default
22382 .
22383  
22384 \begin_inset Box Boxed
22385 position "c"
22386 hor_pos "c"
22387 has_inner_box 1
22388 inner_pos "c"
22389 use_parbox 0
22390 width "20col%"
22391 special "none"
22392 height "1in"
22393 height_special "totalheight"
22394 status collapsed
22395
22396 \begin_layout Standard
22397 \align center
22398 Cuadro rectangular
22399 \end_layout
22400
22401 \end_inset
22402
22403
22404 \end_layout
22405
22406 \begin_layout Description
22407 Marco\InsetSpace ~
22408 ovalado,\InsetSpace ~
22409 fino Dibuja un marco ovalado cuya línea tiene un grosor de
22410  0.4\InsetSpace \thinspace{}
22411 pt.
22412  
22413 \begin_inset Box ovalbox
22414 position "c"
22415 hor_pos "c"
22416 has_inner_box 1
22417 inner_pos "c"
22418 use_parbox 0
22419 width "20col%"
22420 special "none"
22421 height "1in"
22422 height_special "totalheight"
22423 status open
22424
22425 \begin_layout Standard
22426 \align center
22427 Marco ovalado, fino
22428 \end_layout
22429
22430 \end_inset
22431
22432
22433 \end_layout
22434
22435 \begin_layout Description
22436 Marco\InsetSpace ~
22437 ovalado,\InsetSpace ~
22438 grueso Dibuja un marco ovalado cuya línea tiene un grosor de
22439  0.8\InsetSpace \thinspace{}
22440 pt.
22441  
22442 \begin_inset Box Ovalbox
22443 position "c"
22444 hor_pos "c"
22445 has_inner_box 1
22446 inner_pos "c"
22447 use_parbox 0
22448 width "20col%"
22449 special "none"
22450 height "1in"
22451 height_special "totalheight"
22452 status open
22453
22454 \begin_layout Standard
22455 \align center
22456 Cuadro ovalado, grueso
22457 \end_layout
22458
22459 \end_inset
22460
22461
22462 \end_layout
22463
22464 \begin_layout Description
22465 Marco\InsetSpace ~
22466 con\InsetSpace ~
22467 sombra Dibuja un cuadro rectangular con sombra alrededor del cuadro.
22468  El grosor de la línea tiene el tamaño dado por 
22469 \series bold
22470
22471 \backslash
22472 fboxrule
22473 \series default
22474 , la sombra tiene una anchura de 4\InsetSpace \thinspace{}
22475 pt.
22476  
22477 \begin_inset Box Shadowbox
22478 position "c"
22479 hor_pos "c"
22480 has_inner_box 1
22481 inner_pos "c"
22482 use_parbox 0
22483 width "20col%"
22484 special "none"
22485 height "1in"
22486 height_special "totalheight"
22487 status open
22488
22489 \begin_layout Standard
22490 \align center
22491 Marco sombrado
22492 \end_layout
22493
22494 \end_inset
22495
22496
22497 \end_layout
22498
22499 \begin_layout Description
22500 Marco\InsetSpace ~
22501 doble Dibuja un rectángulo de línea doble alrededor del cuadro.
22502  El grosor de la línea interior es 0.75\InsetSpace \thinspace{}
22503
22504 \series bold
22505
22506 \backslash
22507 fboxrule
22508 \series default
22509 , el de la línea exterior es 1.5\InsetSpace \thinspace{}
22510
22511 \series bold
22512
22513 \backslash
22514 fboxrule
22515 \series default
22516 .
22517  La distancia entre líneas es 1.5\InsetSpace \thinspace{}
22518
22519 \series bold
22520
22521 \backslash
22522 fboxrule
22523 \series default
22524 \InsetSpace \thinspace{}
22525 +\InsetSpace \thinspace{}
22526 0.5\InsetSpace \thinspace{}
22527 pt.
22528  
22529 \begin_inset Box Doublebox
22530 position "c"
22531 hor_pos "c"
22532 has_inner_box 1
22533 inner_pos "c"
22534 use_parbox 0
22535 width "20col%"
22536 special "none"
22537 height "1in"
22538 height_special "totalheight"
22539 status open
22540
22541 \begin_layout Standard
22542 \align center
22543 Marco doble
22544 \end_layout
22545
22546 \end_inset
22547
22548
22549 \end_layout
22550
22551 \begin_layout Standard
22552 \begin_inset VSpace bigskip
22553 \end_inset
22554
22555 La etiqueta del recuadro en LyX cambiará según el estilo de marco elegido.
22556  Para poder utilizar los distintos marcos, debe estar instalado el paquete
22557  LaTeX 
22558 \series bold
22559 fancybox
22560 \series default
22561
22562 \begin_inset LatexCommand index
22563 name "LaTeX-paquetes ! fancybox"
22564
22565 \end_inset
22566
22567 .
22568 \end_layout
22569
22570 \begin_layout Standard
22571 \begin_inset VSpace bigskip
22572 \end_inset
22573
22574 El valor predeterminado por 
22575 \series bold
22576
22577 \backslash
22578 fboxrule
22579 \series default
22580  es 0.4\InsetSpace \thinspace{}
22581 pt.
22582  Puede cambiarse con el siguiente comando en ERT, p.\InsetSpace \thinspace{}
22583 e.\InsetSpace ~
22584 a\InsetSpace ~
22585 2\InsetSpace \thinspace{}
22586 pt:
22587 \end_layout
22588
22589 \begin_layout Standard
22590
22591 \series bold
22592
22593 \backslash
22594 setlength{
22595 \backslash
22596 fboxrule}{2pt}
22597 \end_layout
22598
22599 \begin_layout Standard
22600 \begin_inset ERT
22601 status collapsed
22602
22603 \begin_layout Standard
22604
22605
22606 \backslash
22607 setlength{
22608 \backslash
22609 fboxrule}{2pt}
22610 \end_layout
22611
22612 \end_inset
22613
22614
22615 \begin_inset Box Boxed
22616 position "c"
22617 hor_pos "c"
22618 has_inner_box 1
22619 inner_pos "c"
22620 use_parbox 0
22621 width "25col%"
22622 special "none"
22623 height "1in"
22624 height_special "totalheight"
22625 status open
22626
22627 \begin_layout Standard
22628 \align center
22629 Cuadro rectangular con 
22630 \series bold
22631
22632 \backslash
22633 fboxrule
22634 \series default
22635 \InsetSpace \thinspace{}
22636 =\InsetSpace \thinspace{}
22637 2\InsetSpace \thinspace{}
22638 pt
22639 \end_layout
22640
22641 \end_inset
22642
22643
22644 \begin_inset ERT
22645 status collapsed
22646
22647 \begin_layout Standard
22648
22649
22650 \backslash
22651 setlength{
22652 \backslash
22653 fboxrule}{0.4pt}
22654 \end_layout
22655
22656 \end_inset
22657
22658
22659 \end_layout
22660
22661 \begin_layout Standard
22662 \begin_inset VSpace bigskip
22663 \end_inset
22664
22665 El espacio entre el marco y el contenido del cuadro es 3\InsetSpace \thinspace{}
22666 pt por defecto para
22667  todos los estilos.
22668  Se puede cambiar mediante la longitud 
22669 \series bold
22670
22671 \backslash
22672 fboxsep
22673 \series default
22674 .
22675  Por ejemplo el comando
22676 \end_layout
22677
22678 \begin_layout Standard
22679
22680 \series bold
22681
22682 \backslash
22683 setlength{
22684 \backslash
22685 fboxsep}{10pt}
22686 \end_layout
22687
22688 \begin_layout Standard
22689 determina un valor de 10\InsetSpace \thinspace{}
22690 pt, como en el siguiente cuadro:
22691 \end_layout
22692
22693 \begin_layout Standard
22694 \begin_inset ERT
22695 status collapsed
22696
22697 \begin_layout Standard
22698
22699
22700 \backslash
22701 setlength{
22702 \backslash
22703 fboxsep}{10pt}
22704 \end_layout
22705
22706 \end_inset
22707
22708
22709 \begin_inset Box Boxed
22710 position "c"
22711 hor_pos "c"
22712 has_inner_box 1
22713 inner_pos "c"
22714 use_parbox 0
22715 width "25col%"
22716 special "none"
22717 height "1in"
22718 height_special "totalheight"
22719 status open
22720
22721 \begin_layout Standard
22722 \align center
22723 Cuadro rectangular con 
22724 \series bold
22725
22726 \backslash
22727 fboxsep
22728 \series default
22729 \InsetSpace \thinspace{}
22730 =\InsetSpace \thinspace{}
22731 10\InsetSpace \thinspace{}
22732 pt
22733 \end_layout
22734
22735 \end_inset
22736
22737
22738 \begin_inset ERT
22739 status collapsed
22740
22741 \begin_layout Standard
22742
22743
22744 \backslash
22745 setlength{
22746 \backslash
22747 fboxsep}{3pt}
22748 \end_layout
22749
22750 \end_inset
22751
22752
22753 \end_layout
22754
22755 \begin_layout Standard
22756 \begin_inset VSpace bigskip
22757 \end_inset
22758
22759 El diámetro de las esquinas de los cuadros ovalados se puede modificar con
22760  el comando 
22761 \series bold
22762
22763 \backslash
22764 cornersize
22765 \series default
22766 .
22767  El comando
22768 \end_layout
22769
22770 \begin_layout Standard
22771
22772 \series bold
22773
22774 \backslash
22775 cornersize*{1cm}
22776 \end_layout
22777
22778 \begin_layout Standard
22779 establece un diámetro de 1\InsetSpace \thinspace{}
22780 cm.
22781  El comando
22782 \end_layout
22783
22784 \begin_layout Standard
22785
22786 \series bold
22787
22788 \backslash
22789 cornersize{num}
22790 \end_layout
22791
22792 \begin_layout Standard
22793 fija el diámetro en 
22794 \family sans
22795 num\InsetSpace \thinspace{}
22796 ×\InsetSpace \thinspace{}
22797 minimo(ancho y alto del cuadro)
22798 \family default
22799 .
22800  Por defecto es 
22801 \series bold
22802
22803 \backslash
22804 cornersize{0.5}
22805 \series default
22806 .
22807 \end_layout
22808
22809 \begin_layout Standard
22810 \begin_inset ERT
22811 status collapsed
22812
22813 \begin_layout Standard
22814
22815
22816 \backslash
22817 cornersize*{1.5cm}
22818 \end_layout
22819
22820 \end_inset
22821
22822
22823 \begin_inset Box Ovalbox
22824 position "c"
22825 hor_pos "c"
22826 has_inner_box 1
22827 inner_pos "c"
22828 use_parbox 0
22829 width "25col%"
22830 special "none"
22831 height "1in"
22832 height_special "totalheight"
22833 status open
22834
22835 \begin_layout Standard
22836 \align center
22837 Cuadro ovalado con 
22838 \series bold
22839
22840 \backslash
22841 cornersize
22842 \series default
22843 \InsetSpace \thinspace{}
22844 =\InsetSpace \thinspace{}
22845 1.5\InsetSpace \thinspace{}
22846 cm
22847 \end_layout
22848
22849 \end_inset
22850
22851
22852 \begin_inset ERT
22853 status collapsed
22854
22855 \begin_layout Standard
22856
22857
22858 \backslash
22859 cornersize{0.5}
22860 \end_layout
22861
22862 \end_inset
22863
22864
22865 \end_layout
22866
22867 \begin_layout Standard
22868 \begin_inset VSpace bigskip
22869 \end_inset
22870
22871 El tamaño de la sombra se puede ajustar cambiando la longitud 
22872 \series bold
22873
22874 \backslash
22875 shadowsize
22876 \series default
22877 .
22878  Este comando la ajusta a 2\InsetSpace \thinspace{}
22879 pt en el cuadro siguiente:
22880 \end_layout
22881
22882 \begin_layout Standard
22883
22884 \series bold
22885
22886 \backslash
22887 setlength{
22888 \backslash
22889 shadowsize}{2pt}
22890 \end_layout
22891
22892 \begin_layout Standard
22893 \begin_inset ERT
22894 status collapsed
22895
22896 \begin_layout Standard
22897
22898
22899 \backslash
22900 setlength{
22901 \backslash
22902 shadowsize}{2pt}
22903 \end_layout
22904
22905 \end_inset
22906
22907
22908 \begin_inset Box Shadowbox
22909 position "c"
22910 hor_pos "c"
22911 has_inner_box 1
22912 inner_pos "c"
22913 use_parbox 0
22914 width "25col%"
22915 special "none"
22916 height "1in"
22917 height_special "totalheight"
22918 status open
22919
22920 \begin_layout Standard
22921 \align center
22922 Cuadro sombreado con 
22923 \series bold
22924
22925 \backslash
22926 shadowsize
22927 \series default
22928 \InsetSpace \thinspace{}
22929 =\InsetSpace \thinspace{}
22930 2\InsetSpace \thinspace{}
22931 pt
22932 \end_layout
22933
22934 \end_inset
22935
22936
22937 \begin_inset ERT
22938 status collapsed
22939
22940 \begin_layout Standard
22941
22942
22943 \backslash
22944 setlength{
22945 \backslash
22946 shadowsize}{4pt}
22947 \end_layout
22948
22949 \end_inset
22950
22951
22952 \end_layout
22953
22954 \begin_layout Standard
22955 \begin_inset VSpace bigskip
22956 \end_inset
22957
22958 Los cambios en las dimensiones son válidos para todos los cuadros que siguen
22959  a los comandos.
22960 \end_layout
22961
22962 \begin_layout Section
22963 Minipáginas
22964 \begin_inset LatexCommand label
22965 name "sec:Minipáginas"
22966
22967 \end_inset
22968
22969
22970 \begin_inset LatexCommand index
22971 name "Cuadros ! Minipáginas"
22972
22973 \end_inset
22974
22975
22976 \end_layout
22977
22978 \begin_layout Standard
22979 Las minipáginas son tratadas por LaTeX como páginas dentro de páginas y
22980  por tanto pueden tener, por ejemplo, sus propias notas al pie.
22981 \end_layout
22982
22983 \begin_layout Standard
22984 Las minipáginas son útiles para escribir documentos con distintos lenguajes.
22985 \end_layout
22986
22987 \begin_layout Standard
22988 A continuación hay dos ejemplos de minipáginas adosadas.
22989  Su anchura está puesta en 45\InsetSpace \thinspace{}
22990 col% y separadas por un relleno horizontal,
22991  insertado via el menú 
22992 \family sans
22993 Insertar\SpecialChar \menuseparator
22994 Formato\InsetSpace ~
22995
22996 \family default
22997 es
22998 \family sans
22999 pecial\InsetSpace ~
23000 \SpecialChar \menuseparator
23001 Relleno\InsetSpace ~
23002 horizontal
23003 \family default
23004 .
23005 \end_layout
23006
23007 \begin_layout Standard
23008 \begin_inset Box Frameless
23009 position "t"
23010 hor_pos "c"
23011 has_inner_box 1
23012 inner_pos "c"
23013 use_parbox 0
23014 width "45col%"
23015 special "none"
23016 height "1in"
23017 height_special "totalheight"
23018 status open
23019
23020 \begin_layout Standard
23021
23022 \lang german
23023 Dies ist ein deutscher Text.
23024  Dies ist ein deutscher Text.
23025  Dies ist ein deutscher Text.
23026  Dies ist ein deutscher Text.
23027  Dies ist ein deutscher Text.
23028  Dies ist ein deutscher Text.
23029  Dies ist ein deutscher Text.
23030  Dies ist ein deutscher Text.
23031  Dies ist ein deutscher Text.
23032  Dies ist ein deutscher Text.
23033  Dies ist ein deutscher Text.
23034  Dies ist ein deutscher Text.
23035  Dies ist ein deutscher Text
23036 \begin_inset Foot
23037 status collapsed
23038
23039 \begin_layout Standard
23040
23041 \lang german
23042 Dies ist eine deutsche Fußnote.
23043 \end_layout
23044
23045 \end_inset
23046
23047 .
23048  Dies ist ein deutscher Text.
23049  Dies ist ein deutscher Text.
23050 \end_layout
23051
23052 \end_inset
23053
23054
23055 \hfill
23056
23057 \begin_inset Box Frameless
23058 position "t"
23059 hor_pos "c"
23060 has_inner_box 1
23061 inner_pos "c"
23062 use_parbox 0
23063 width "45col%"
23064 special "none"
23065 height "1in"
23066 height_special "totalheight"
23067 status open
23068
23069 \begin_layout Standard
23070 This is an English Text.
23071  This is an English Text.
23072  This is an English Text.
23073  This is an English Text.
23074  This is an English Text.
23075  This is an English Text.
23076  This is an English Text.
23077  This is an English Text.
23078  This is an English Text.
23079  This is an English Text.
23080  This is an English Text.
23081  This is an English Text.
23082  This is an English Text.
23083  This is an English Text.
23084  This is an English Text.
23085  This is an English Text.
23086 \begin_inset Foot
23087 status collapsed
23088
23089 \begin_layout Standard
23090 This is an English footnote.
23091 \end_layout
23092
23093 \end_inset
23094
23095  This is an English Text.
23096  
23097 \end_layout
23098
23099 \end_inset
23100
23101
23102 \end_layout
23103
23104 \begin_layout Standard
23105 \begin_inset VSpace bigskip
23106 \end_inset
23107
23108 Otra aplicación de los cuadros son las notas a pie en tablas.
23109  Debido a una restricción de LaTeX las notas a pie en tablas no aparecen
23110  al final de la página actual.
23111  Pero si pones la tabla con notas al pie en una minipágina, las notas aparecen
23112  en la parte inferior, ordenadas con letras.
23113  La ordenación de las notas al pie se restablece en cada minipágina pero
23114  no fuera de las minipáginas.
23115 \end_layout
23116
23117 \begin_layout Standard
23118 La nota al pie en esta tabla no aparece: 
23119 \begin_inset Tabular
23120 <lyxtabular version="3" rows="3" columns="4">
23121 <features>
23122 <column alignment="center" valignment="top" leftline="true" width="0pt">
23123 <column alignment="center" valignment="top" leftline="true" width="0pt">
23124 <column alignment="center" valignment="top" leftline="true" width="0pt">
23125 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
23126 <row topline="true">
23127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23128 \begin_inset Text
23129
23130 \begin_layout Standard
23131 1
23132 \end_layout
23133
23134 \end_inset
23135 </cell>
23136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23137 \begin_inset Text
23138
23139 \begin_layout Standard
23140 2
23141 \end_layout
23142
23143 \end_inset
23144 </cell>
23145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23146 \begin_inset Text
23147
23148 \begin_layout Standard
23149 3
23150 \begin_inset Foot
23151 status open
23152
23153 \begin_layout Standard
23154 Nota al pie en una tabla.
23155 \end_layout
23156
23157 \end_inset
23158
23159
23160 \end_layout
23161
23162 \end_inset
23163 </cell>
23164 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23165 \begin_inset Text
23166
23167 \begin_layout Standard
23168 4
23169 \end_layout
23170
23171 \end_inset
23172 </cell>
23173 </row>
23174 <row topline="true">
23175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23176 \begin_inset Text
23177
23178 \begin_layout Standard
23179 a
23180 \end_layout
23181
23182 \end_inset
23183 </cell>
23184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23185 \begin_inset Text
23186
23187 \begin_layout Standard
23188 b
23189 \end_layout
23190
23191 \end_inset
23192 </cell>
23193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23194 \begin_inset Text
23195
23196 \begin_layout Standard
23197 c
23198 \end_layout
23199
23200 \end_inset
23201 </cell>
23202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23203 \begin_inset Text
23204
23205 \begin_layout Standard
23206 d
23207 \end_layout
23208
23209 \end_inset
23210 </cell>
23211 </row>
23212 <row topline="true" bottomline="true">
23213 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23214 \begin_inset Text
23215
23216 \begin_layout Standard
23217 e
23218 \end_layout
23219
23220 \end_inset
23221 </cell>
23222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23223 \begin_inset Text
23224
23225 \begin_layout Standard
23226 f
23227 \end_layout
23228
23229 \end_inset
23230 </cell>
23231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23232 \begin_inset Text
23233
23234 \begin_layout Standard
23235 g
23236 \end_layout
23237
23238 \end_inset
23239 </cell>
23240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23241 \begin_inset Text
23242
23243 \begin_layout Standard
23244 h
23245 \end_layout
23246
23247 \end_inset
23248 </cell>
23249 </row>
23250 </lyxtabular>
23251
23252 \end_inset
23253
23254
23255 \end_layout
23256
23257 \begin_layout Standard
23258 \align center
23259 \begin_inset Box Frameless
23260 position "t"
23261 hor_pos "c"
23262 has_inner_box 1
23263 inner_pos "c"
23264 use_parbox 0
23265 width "30col%"
23266 special "none"
23267 height "1in"
23268 height_special "totalheight"
23269 status open
23270
23271 \begin_layout Standard
23272 \align center
23273 \begin_inset Tabular
23274 <lyxtabular version="3" rows="3" columns="4">
23275 <features>
23276 <column alignment="center" valignment="top" leftline="true" width="0pt">
23277 <column alignment="center" valignment="top" leftline="true" width="0pt">
23278 <column alignment="center" valignment="top" leftline="true" width="0pt">
23279 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
23280 <row topline="true">
23281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23282 \begin_inset Text
23283
23284 \begin_layout Standard
23285 1
23286 \end_layout
23287
23288 \end_inset
23289 </cell>
23290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23291 \begin_inset Text
23292
23293 \begin_layout Standard
23294 2
23295 \end_layout
23296
23297 \end_inset
23298 </cell>
23299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23300 \begin_inset Text
23301
23302 \begin_layout Standard
23303 3
23304 \begin_inset Foot
23305 status open
23306
23307 \begin_layout Standard
23308 Nota al pie en una tabla..
23309 \end_layout
23310
23311 \end_inset
23312
23313
23314 \end_layout
23315
23316 \end_inset
23317 </cell>
23318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23319 \begin_inset Text
23320
23321 \begin_layout Standard
23322 4
23323 \end_layout
23324
23325 \end_inset
23326 </cell>
23327 </row>
23328 <row topline="true">
23329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23330 \begin_inset Text
23331
23332 \begin_layout Standard
23333 a
23334 \end_layout
23335
23336 \end_inset
23337 </cell>
23338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23339 \begin_inset Text
23340
23341 \begin_layout Standard
23342 b
23343 \end_layout
23344
23345 \end_inset
23346 </cell>
23347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23348 \begin_inset Text
23349
23350 \begin_layout Standard
23351 c
23352 \end_layout
23353
23354 \end_inset
23355 </cell>
23356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23357 \begin_inset Text
23358
23359 \begin_layout Standard
23360 d
23361 \end_layout
23362
23363 \end_inset
23364 </cell>
23365 </row>
23366 <row topline="true" bottomline="true">
23367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23368 \begin_inset Text
23369
23370 \begin_layout Standard
23371 e
23372 \end_layout
23373
23374 \end_inset
23375 </cell>
23376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23377 \begin_inset Text
23378
23379 \begin_layout Standard
23380 f
23381 \end_layout
23382
23383 \end_inset
23384 </cell>
23385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23386 \begin_inset Text
23387
23388 \begin_layout Standard
23389 g
23390 \end_layout
23391
23392 \end_inset
23393 </cell>
23394 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23395 \begin_inset Text
23396
23397 \begin_layout Standard
23398 h
23399 \end_layout
23400
23401 \end_inset
23402 </cell>
23403 </row>
23404 </lyxtabular>
23405
23406 \end_inset
23407
23408
23409 \end_layout
23410
23411 \end_inset
23412
23413
23414 \end_layout
23415
23416 \begin_layout Standard
23417 \begin_inset VSpace bigskip
23418 \end_inset
23419
23420 La configuración global de párrafos se ignora en las minipáginas.
23421  Esto significa que en las mismas no habrá espacio entre párrafos aunque
23422  pongas p.\InsetSpace \thinspace{}
23423 e.\InsetSpace ~
23424
23425 \family sans
23426 Salto\InsetSpace ~
23427 medio
23428 \family default
23429  en la configuración del documento.
23430 \end_layout
23431
23432 \begin_layout Standard
23433 Las minipáginas también sirven para poner un color de fondo para partes
23434  de texto, ver sección\InsetSpace ~
23435
23436 \begin_inset LatexCommand ref
23437 reference "sub:Color-en-Párrafos"
23438
23439 \end_inset
23440
23441 .
23442 \end_layout
23443
23444 \begin_layout Standard
23445 \begin_inset Note Greyedout
23446 status collapsed
23447
23448 \begin_layout Standard
23449
23450 \series bold
23451 Nota:
23452 \series default
23453  No puedes tener flotantes o notas al margen en minipáginas pero sí puedes
23454  tener minipáginas en tablas, flotantes, y otros cuadros.
23455 \end_layout
23456
23457 \end_inset
23458
23459
23460 \end_layout
23461
23462 \begin_layout Section
23463 Cuadros de Párrafo (Parbox)
23464 \begin_inset LatexCommand label
23465 name "sec:Cuadros-de-Párrafo"
23466
23467 \end_inset
23468
23469
23470 \begin_inset LatexCommand index
23471 name "Cuadros ! de Párrafo"
23472
23473 \end_inset
23474
23475
23476 \end_layout
23477
23478 \begin_layout Standard
23479 Los cuadros de párrafo son similares a las minipáginas con la diferencia
23480  de que no pueden contener notas al pie.
23481   La diferencia principal es que las minipáginas no son verdaderos cuadros
23482  sino entornos de LaTeX.
23483 \end_layout
23484
23485 \begin_layout Standard
23486 \align center
23487 \begin_inset Box Frameless
23488 position "t"
23489 hor_pos "c"
23490 has_inner_box 1
23491 inner_pos "t"
23492 use_parbox 1
23493 width "33col%"
23494 special "none"
23495 height "1in"
23496 height_special "totalheight"
23497 status collapsed
23498
23499 \begin_layout Standard
23500 Texto en un cuadro de párrafo.
23501  Texto en un cuadro de párrafo.
23502  Esta nota no aparece:
23503 \begin_inset Foot
23504 status open
23505
23506 \begin_layout Standard
23507 Esta es una nota en cuadro de párrafo y por eso no aparecerá.
23508 \end_layout
23509
23510 \end_inset
23511
23512
23513 \end_layout
23514
23515 \end_inset
23516
23517
23518 \end_layout
23519
23520 \begin_layout Section
23521 Cuadros para Palabras y Caracteres
23522 \begin_inset LatexCommand index
23523 name "Cuadros ! para Palabras y Caracteres"
23524
23525 \end_inset
23526
23527
23528 \end_layout
23529
23530 \begin_layout Subsection
23531 Prevención de la Partición con Guiones
23532 \begin_inset LatexCommand label
23533 name "sec:Prevención-de-la-Partición-con-Guiones"
23534
23535 \end_inset
23536
23537
23538 \begin_inset LatexCommand index
23539 name "Cuadros ! Prevenir Partición con Guiones"
23540
23541 \end_inset
23542
23543
23544 \end_layout
23545
23546 \begin_layout Standard
23547 Hay un tipo especial de cuadro para impedir que una palabra sea partida
23548  con guión.
23549 \newline
23550 He aquí un ejemplo:
23551 \end_layout
23552
23553 \begin_layout Standard
23554 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
23555 e.\InsetSpace ~
23556 estalarguís
23557 imapalabra.
23558 \end_layout
23559
23560 \begin_layout Standard
23561 Para evitar su división usa el comando
23562 \end_layout
23563
23564 \begin_layout Standard
23565
23566 \series bold
23567
23568 \backslash
23569 mbox{
23570 \end_layout
23571
23572 \begin_layout Standard
23573 en ERT antes de la palabra.
23574  Tras ella inserta una llave de cierre 
23575 \begin_inset Quotes eld
23576 \end_inset
23577
23578
23579 \series bold
23580 }
23581 \series default
23582
23583 \begin_inset Quotes erd
23584 \end_inset
23585
23586  en ERT.
23587 \begin_inset ERT
23588 status collapsed
23589
23590 \begin_layout Standard
23591
23592
23593 \backslash
23594 pagebreak 
23595 \end_layout
23596
23597 \end_inset
23598
23599
23600 \end_layout
23601
23602 \begin_layout Standard
23603 Este es el resultado:
23604 \end_layout
23605
23606 \begin_layout Standard
23607 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
23608 e.\InsetSpace ~
23609
23610 \begin_inset ERT
23611 status collapsed
23612
23613 \begin_layout Standard
23614
23615
23616 \backslash
23617 mbox{
23618 \end_layout
23619
23620 \end_inset
23621
23622 estalarguísimapalabra.
23623 \begin_inset ERT
23624 status collapsed
23625
23626 \begin_layout Standard
23627
23628 }
23629 \end_layout
23630
23631 \end_inset
23632
23633
23634 \end_layout
23635
23636 \begin_layout Standard
23637 Por supuesto, la palabra sobresale del margen.
23638  Para evitarlo, añade via el menú 
23639 \family sans
23640 Insertar\SpecialChar \menuseparator
23641 Formato\InsetSpace ~
23642 especial\InsetSpace ~
23643 \SpecialChar \menuseparator
23644 Salto\InsetSpace ~
23645 de\InsetSpace ~
23646
23647 \family default
23648 línea (atajo 
23649 \series bold
23650 Ctrl-Return
23651 \series default
23652 ) un salto de línea antes de la palabra:
23653 \end_layout
23654
23655 \begin_layout Standard
23656 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
23657 e.\InsetSpace ~
23658
23659 \newline
23660
23661 \begin_inset ERT
23662 status collapsed
23663
23664 \begin_layout Standard
23665
23666
23667 \backslash
23668 mbox{
23669 \end_layout
23670
23671 \end_inset
23672
23673 estalarguísimapalabra.
23674 \begin_inset ERT
23675 status collapsed
23676
23677 \begin_layout Standard
23678
23679 }
23680 \end_layout
23681
23682 \end_inset
23683
23684
23685 \end_layout
23686
23687 \begin_layout Subsection
23688 Alineación Vertical
23689 \begin_inset LatexCommand label
23690 name "sub:Alineación-Vertical"
23691
23692 \end_inset
23693
23694
23695 \begin_inset LatexCommand index
23696 name "Cuadros ! para Alineación Vertical"
23697
23698 \end_inset
23699
23700
23701 \end_layout
23702
23703 \begin_layout Standard
23704 Con ayuda del comando 
23705 \series bold
23706
23707 \backslash
23708 raisebox
23709 \series default
23710  puedes alinear verticalmente con el texto circundante palabras o caracteres.
23711  
23712 \series bold
23713
23714 \backslash
23715 raisebox
23716 \series default
23717  se utiliza según el esquema:
23718 \end_layout
23719
23720 \begin_layout Standard
23721
23722 \series bold
23723
23724 \backslash
23725 raisebox{elevación}[altura][profundidad]{contenido del cuadro}
23726 \end_layout
23727
23728 \begin_layout Standard
23729 La elevación puede ser un valor positivo para subir el cuadro o negativo
23730  para bajarlo.
23731 \end_layout
23732
23733 \begin_layout Standard
23734 Para alinear una palabra, p.\InsetSpace \thinspace{}
23735 e\InsetSpace ~
23736
23737 \begin_inset Quotes eld
23738 \end_inset
23739
23740 prevención
23741 \begin_inset Quotes erd
23742 \end_inset
23743
23744  para que la parte inferior de la letra más 
23745 \begin_inset Quotes eld
23746 \end_inset
23747
23748 profunda
23749 \begin_inset Quotes erd
23750 \end_inset
23751
23752  
23753 \begin_inset Quotes eld
23754 \end_inset
23755
23756 p
23757 \begin_inset Quotes erd
23758 \end_inset
23759
23760  esté en la línea de base, inserta el comando
23761 \end_layout
23762
23763 \begin_layout Standard
23764
23765 \series bold
23766
23767 \backslash
23768 raisebox{
23769 \backslash
23770 depth}{
23771 \end_layout
23772
23773 \begin_layout Standard
23774 en ERT antes de la palabra.
23775  Detrás de la palabra inserta una llave de cierre 
23776 \begin_inset Quotes eld
23777 \end_inset
23778
23779
23780 \series bold
23781 }
23782 \series default
23783
23784 \begin_inset Quotes erd
23785 \end_inset
23786
23787  en ERT.
23788 \newline
23789 Este es el resultado:
23790 \end_layout
23791
23792 \begin_layout Standard
23793 Esto es una línea de texto con la palabra 
23794 \begin_inset ERT
23795 status collapsed
23796
23797 \begin_layout Standard
23798
23799
23800 \backslash
23801 raisebox{
23802 \backslash
23803 depth}{
23804 \end_layout
23805
23806 \end_inset
23807
23808
23809 \begin_inset Quotes eld
23810 \end_inset
23811
23812 prevención
23813 \begin_inset Quotes erd
23814 \end_inset
23815
23816
23817 \begin_inset ERT
23818 status collapsed
23819
23820 \begin_layout Standard
23821
23822 }
23823 \end_layout
23824
23825 \end_inset
23826
23827  elevada.
23828 \end_layout
23829
23830 \begin_layout Standard
23831 \begin_inset VSpace bigskip
23832 \end_inset
23833
23834 Cuando eleves o bajes caracteres en una línea, se modifica el espacio entre
23835  líneas:
23836 \end_layout
23837
23838 \begin_layout Standard
23839 Esto es una línea de texto con la palabra 
23840 \begin_inset ERT
23841 status collapsed
23842
23843 \begin_layout Standard
23844
23845
23846 \backslash
23847 raisebox{-
23848 \backslash
23849 depth}{
23850 \end_layout
23851
23852 \end_inset
23853
23854
23855 \begin_inset Quotes eld
23856 \end_inset
23857
23858 prevención
23859 \begin_inset Quotes erd
23860 \end_inset
23861
23862
23863 \begin_inset ERT
23864 status collapsed
23865
23866 \begin_layout Standard
23867
23868 }
23869 \end_layout
23870
23871 \end_inset
23872
23873  como palabra más baja.
23874 \newline
23875 Esto es una línea de texto con la palabra 
23876 \begin_inset ERT
23877 status collapsed
23878
23879 \begin_layout Standard
23880
23881
23882 \backslash
23883 raisebox{0.5cm}{
23884 \end_layout
23885
23886 \end_inset
23887
23888
23889 \begin_inset Quotes eld
23890 \end_inset
23891
23892 testigo
23893 \begin_inset Quotes erd
23894 \end_inset
23895
23896
23897 \begin_inset ERT
23898 status collapsed
23899
23900 \begin_layout Standard
23901
23902 }
23903 \end_layout
23904
23905 \end_inset
23906
23907  como palabra más alta.
23908 \end_layout
23909
23910 \begin_layout Standard
23911 Si por alguna razón quieres impedir esto, pon la altura de cuadro a cero.
23912  Por ejemplo
23913 \end_layout
23914
23915 \begin_layout Standard
23916
23917 \series bold
23918
23919 \backslash
23920 raisebox{-
23921 \backslash
23922 depth}[0pt]{
23923 \end_layout
23924
23925 \begin_layout Standard
23926 Esto es una línea de texto con la palabra 
23927 \begin_inset ERT
23928 status collapsed
23929
23930 \begin_layout Standard
23931
23932
23933 \backslash
23934 raisebox{-
23935 \backslash
23936 depth}[0pt]{
23937 \end_layout
23938
23939 \end_inset
23940
23941
23942 \begin_inset Quotes eld
23943 \end_inset
23944
23945 prevención
23946 \begin_inset Quotes erd
23947 \end_inset
23948
23949
23950 \begin_inset ERT
23951 status collapsed
23952
23953 \begin_layout Standard
23954
23955 }
23956 \end_layout
23957
23958 \end_inset
23959
23960  como palabra más baja.
23961 \newline
23962 Esto es una línea de texto con la palabra 
23963 \begin_inset ERT
23964 status collapsed
23965
23966 \begin_layout Standard
23967
23968
23969 \backslash
23970 raisebox{0.5cm}[0pt]{
23971 \end_layout
23972
23973 \end_inset
23974
23975
23976 \begin_inset Quotes eld
23977 \end_inset
23978
23979 testigo
23980 \begin_inset Quotes erd
23981 \end_inset
23982
23983
23984 \begin_inset ERT
23985 status collapsed
23986
23987 \begin_layout Standard
23988
23989 }
23990 \end_layout
23991
23992 \end_inset
23993
23994  como palabra más alta.
23995 \end_layout
23996
23997 \begin_layout Standard
23998 \begin_inset VSpace bigskip
23999 \end_inset
24000
24001 El comando 
24002 \series bold
24003
24004 \backslash
24005 raisebox
24006 \series default
24007  es útil para insertar espacio vertical extra para ciertas filas de tabla
24008  de modo que su contenido esté más separado de las líneas circundantes.
24009  En la Tabla\InsetSpace ~
24010
24011 \begin_inset LatexCommand ref
24012 reference "tab:Dos-tablas-que"
24013
24014 \end_inset
24015
24016  las filas con subíndice y exponente obtienen espacio extra al elevarlas
24017  con un cuadro vacío: El comando
24018 \end_layout
24019
24020 \begin_layout Standard
24021
24022 \series bold
24023
24024 \backslash
24025 raisebox{5mm}{}
24026 \end_layout
24027
24028 \begin_layout Standard
24029 se ha insertado en las filas de la tabla.
24030 \end_layout
24031
24032 \begin_layout Standard
24033 Para añadir espacio extra vertical a todas las filas de todas las tablas,
24034  sería más conveniente  el método descrito en la sección\InsetSpace ~
24035
24036 \begin_inset LatexCommand ref
24037 reference "sub:Altura-Extra-de-Fila"
24038
24039 \end_inset
24040
24041 .
24042 \end_layout
24043
24044 \begin_layout Standard
24045 \begin_inset Float table
24046 wide false
24047 sideways false
24048 status open
24049
24050 \begin_layout Caption
24051 \begin_inset LatexCommand label
24052 name "tab:Dos-tablas-que"
24053
24054 \end_inset
24055
24056 Dos tablas que muestran el efecto de espacio vertical extra con 
24057 \backslash
24058
24059 \series bold
24060 raisebox
24061 \end_layout
24062
24063 \begin_layout Standard
24064
24065 \hfill
24066
24067 \begin_inset Tabular
24068 <lyxtabular version="3" rows="5" columns="2">
24069 <features>
24070 <column alignment="center" valignment="top" leftline="true" width="0pt">
24071 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24072 <row topline="true">
24073 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24074 \begin_inset Text
24075
24076 \begin_layout Standard
24077 sin 
24078 \series bold
24079
24080 \backslash
24081 raisebox
24082 \end_layout
24083
24084 \end_inset
24085 </cell>
24086 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24087 \begin_inset Text
24088
24089 \begin_layout Standard
24090
24091 \end_layout
24092
24093 \end_inset
24094 </cell>
24095 </row>
24096 <row topline="true">
24097 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24098 \begin_inset Text
24099
24100 \begin_layout Standard
24101 Commando
24102 \end_layout
24103
24104 \end_inset
24105 </cell>
24106 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24107 \begin_inset Text
24108
24109 \begin_layout Standard
24110 Resultado
24111 \end_layout
24112
24113 \end_inset
24114 </cell>
24115 </row>
24116 <row topline="true">
24117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24118 \begin_inset Text
24119
24120 \begin_layout Standard
24121 B_V
24122 \end_layout
24123
24124 \end_inset
24125 </cell>
24126 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24127 \begin_inset Text
24128
24129 \begin_layout Standard
24130 \begin_inset Formula $B_{V}$
24131 \end_inset
24132
24133
24134 \end_layout
24135
24136 \end_inset
24137 </cell>
24138 </row>
24139 <row topline="true">
24140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24141 \begin_inset Text
24142
24143 \begin_layout Standard
24144 B^V
24145 \end_layout
24146
24147 \end_inset
24148 </cell>
24149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24150 \begin_inset Text
24151
24152 \begin_layout Standard
24153 \begin_inset Formula $B^{V}$
24154 \end_inset
24155
24156
24157 \end_layout
24158
24159 \end_inset
24160 </cell>
24161 </row>
24162 <row topline="true" bottomline="true">
24163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24164 \begin_inset Text
24165
24166 \begin_layout Standard
24167 B^
24168 \begin_inset ERT
24169 status collapsed
24170
24171 \begin_layout Standard
24172
24173
24174 \backslash
24175 textvisiblespace 
24176 \end_layout
24177
24178 \end_inset
24179
24180 A
24181 \end_layout
24182
24183 \end_inset
24184 </cell>
24185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24186 \begin_inset Text
24187
24188 \begin_layout Standard
24189 \begin_inset Formula $B^{A}$
24190 \end_inset
24191
24192
24193 \end_layout
24194
24195 \end_inset
24196 </cell>
24197 </row>
24198 </lyxtabular>
24199
24200 \end_inset
24201
24202
24203 \begin_inset ERT
24204 status collapsed
24205
24206 \begin_layout Standard
24207
24208
24209 \backslash
24210 hspace{2pt}
24211 \end_layout
24212
24213 \end_inset
24214
24215
24216 \begin_inset Tabular
24217 <lyxtabular version="3" rows="5" columns="2">
24218 <features>
24219 <column alignment="center" valignment="top" leftline="true" width="0">
24220 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
24221 <row topline="true" bottomline="true">
24222 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24223 \begin_inset Text
24224
24225 \begin_layout Standard
24226 sin 
24227 \series bold
24228
24229 \backslash
24230 raisebox
24231 \end_layout
24232
24233 \end_inset
24234 </cell>
24235 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24236 \begin_inset Text
24237
24238 \begin_layout Standard
24239
24240 \end_layout
24241
24242 \end_inset
24243 </cell>
24244 </row>
24245 <row topline="true">
24246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24247 \begin_inset Text
24248
24249 \begin_layout Standard
24250 Comando
24251 \end_layout
24252
24253 \end_inset
24254 </cell>
24255 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24256 \begin_inset Text
24257
24258 \begin_layout Standard
24259 Resultado
24260 \end_layout
24261
24262 \end_inset
24263 </cell>
24264 </row>
24265 <row topline="true">
24266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24267 \begin_inset Text
24268
24269 \begin_layout Standard
24270 B_V
24271 \end_layout
24272
24273 \end_inset
24274 </cell>
24275 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24276 \begin_inset Text
24277
24278 \begin_layout Standard
24279 \begin_inset Formula $B_{V}$
24280 \end_inset
24281
24282
24283 \end_layout
24284
24285 \end_inset
24286 </cell>
24287 </row>
24288 <row topline="true">
24289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24290 \begin_inset Text
24291
24292 \begin_layout Standard
24293 B^V
24294 \end_layout
24295
24296 \end_inset
24297 </cell>
24298 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24299 \begin_inset Text
24300
24301 \begin_layout Standard
24302 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
24303 \end_inset
24304
24305
24306 \end_layout
24307
24308 \end_inset
24309 </cell>
24310 </row>
24311 <row topline="true" bottomline="true">
24312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24313 \begin_inset Text
24314
24315 \begin_layout Standard
24316 B^
24317 \begin_inset ERT
24318 status collapsed
24319
24320 \begin_layout Standard
24321
24322
24323 \backslash
24324 textvisiblespace 
24325 \end_layout
24326
24327 \end_inset
24328
24329 A
24330 \end_layout
24331
24332 \end_inset
24333 </cell>
24334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24335 \begin_inset Text
24336
24337 \begin_layout Standard
24338 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
24339 \end_inset
24340
24341
24342 \end_layout
24343
24344 \end_inset
24345 </cell>
24346 </row>
24347 </lyxtabular>
24348
24349 \end_inset
24350
24351
24352 \hfill
24353
24354 \end_layout
24355
24356 \end_inset
24357
24358
24359 \end_layout
24360
24361 \begin_layout Section
24362 Cuadros Coloreados
24363 \begin_inset LatexCommand label
24364 name "sec:Cuadros-Coloreados"
24365
24366 \end_inset
24367
24368
24369 \begin_inset LatexCommand index
24370 name "Cuadros ! Color"
24371
24372 \end_inset
24373
24374
24375 \end_layout
24376
24377 \begin_layout Subsection
24378 Color en Texto
24379 \begin_inset LatexCommand index
24380 name "Color ! en Texto"
24381
24382 \end_inset
24383
24384
24385 \end_layout
24386
24387 \begin_layout Standard
24388 Para colorear el fondo de un texto, éste debe ponerse en un cuadro coloreado.
24389  Esto requiere cargar el paquete LaTeX 
24390 \series bold
24391 color
24392 \series default
24393
24394 \begin_inset LatexCommand index
24395 name "LaTeX-paquetes ! color"
24396
24397 \end_inset
24398
24399  en el preámbulo del documento con
24400 \end_layout
24401
24402 \begin_layout Standard
24403
24404 \series bold
24405
24406 \backslash
24407 @ifundefined{textcolor}
24408 \newline
24409
24410 \begin_inset ERT
24411 status collapsed
24412
24413 \begin_layout Standard
24414
24415
24416 \backslash
24417 hphantom{ }
24418 \end_layout
24419
24420 \end_inset
24421
24422 {
24423 \backslash
24424 usepackage{color}}{}
24425 \end_layout
24426
24427 \begin_layout Standard
24428 LyX cargará automáticamente el paquete 
24429 \series bold
24430 color
24431 \series default
24432  cuando colorees texto
24433 \begin_inset Foot
24434 status open
24435
24436 \begin_layout Standard
24437 Para evitar cargarlo dos veces se usa el comando 
24438 \series bold
24439
24440 \backslash
24441 @ifundefined
24442 \series default
24443 .
24444 \end_layout
24445
24446 \end_inset
24447
24448 .
24449 \end_layout
24450
24451 \begin_layout Standard
24452 \begin_inset VSpace medskip
24453 \end_inset
24454
24455 Los cuadros coloreados se crean con el comando 
24456 \series bold
24457
24458 \backslash
24459 colorbox
24460 \series default
24461 , de acuerdo con el siguiente esquema:
24462 \end_layout
24463
24464 \begin_layout Standard
24465
24466 \series bold
24467
24468 \backslash
24469 colorbox{color}{contenido del cuadro}
24470 \end_layout
24471
24472 \begin_layout Standard
24473 El contenido también puede ser un cuadro y los cuadros coloreados también
24474  pueden estar en otros cuadros.
24475 \end_layout
24476
24477 \begin_layout Standard
24478 Los siguientes colores están predefinidos:
24479 \newline
24480
24481 \family sans
24482 black
24483 \family default
24484
24485 \family sans
24486 blue
24487 \family default
24488
24489 \family sans
24490 cyan
24491 \family default
24492 \series bold
24493
24494 \family sans
24495 \series default
24496 green
24497 \family default
24498
24499 \family sans
24500 magenta
24501 \family default
24502
24503 \family sans
24504 red
24505 \family default
24506
24507 \family sans
24508 white
24509 \family default
24510
24511 \family sans
24512 yellow
24513 \family default
24514 .
24515 \newline
24516 También puedes definir tus propios colores según se explica en la sección\InsetSpace ~
24517
24518 \begin_inset LatexCommand ref
24519 reference "sec:Tablas-Coloreadas"
24520
24521 \end_inset
24522
24523 .
24524 \end_layout
24525
24526 \begin_layout Standard
24527 Por ejemplo, para poner fondo rojo a una palabra, inserta el comando
24528 \end_layout
24529
24530 \begin_layout Standard
24531
24532 \series bold
24533
24534 \backslash
24535 colorbox{red}{
24536 \end_layout
24537
24538 \begin_layout Standard
24539 en ERT antes de la palabra.
24540  Tras la palabra inserta una llave de cierre 
24541 \begin_inset Quotes eld
24542 \end_inset
24543
24544
24545 \series bold
24546 }
24547 \series default
24548
24549 \begin_inset Quotes erd
24550 \end_inset
24551
24552  en ERT.
24553 \newline
24554 Este es el resultado:
24555 \end_layout
24556
24557 \begin_layout Standard
24558 Línea en la que la palabra 
24559 \begin_inset ERT
24560 status collapsed
24561
24562 \begin_layout Standard
24563
24564
24565 \backslash
24566 colorbox{red}{
24567 \end_layout
24568
24569 \end_inset
24570
24571
24572 \begin_inset Quotes eld
24573 \end_inset
24574
24575 ¡Atención!
24576 \begin_inset Quotes erd
24577 \end_inset
24578
24579
24580 \begin_inset ERT
24581 status collapsed
24582
24583 \begin_layout Standard
24584
24585 }
24586 \end_layout
24587
24588 \end_inset
24589
24590  tiene fondo rojo.
24591 \end_layout
24592
24593 \begin_layout Standard
24594 \begin_inset VSpace bigskip
24595 \end_inset
24596
24597 Si quieres un marco de distinto color, puedes emplear el comando 
24598 \series bold
24599
24600 \backslash
24601 fcolorbox
24602 \series default
24603  con el esquema siguiente:
24604 \end_layout
24605
24606 \begin_layout Standard
24607
24608 \series bold
24609
24610 \backslash
24611 fcolorbox{color del marco}{color del cuadro}{contenido del cuadro}
24612 \end_layout
24613
24614 \begin_layout Standard
24615
24616 \series bold
24617
24618 \backslash
24619 fcolorbox
24620 \series default
24621  es una extensión de 
24622 \series bold
24623
24624 \backslash
24625 colorbox
24626 \series default
24627 .
24628  El grosor del marco y el espacio entre él y el contenido se puede ajustar
24629  con las longitudes 
24630 \series bold
24631
24632 \backslash
24633 fboxrule
24634 \series default
24635  y 
24636 \series bold
24637
24638 \backslash
24639 fboxsep
24640 \series default
24641 , respectivamente, como se describe en la sección\InsetSpace ~
24642
24643 \begin_inset LatexCommand ref
24644 reference "sec:Cuadros-Enmarcados"
24645
24646 \end_inset
24647
24648 .
24649 \end_layout
24650
24651 \begin_layout Standard
24652 Para el ejemplo siguiente se ha utilizado el comando
24653 \end_layout
24654
24655 \begin_layout Standard
24656
24657 \series bold
24658
24659 \backslash
24660 fcolorbox{cyan}{magenta}{
24661 \end_layout
24662
24663 \begin_layout Standard
24664 Este es un ejemplo en el que se ha puesto un grosor de 1\InsetSpace \thinspace{}
24665 mm para la línea
24666  del marco:
24667 \newline
24668
24669 \begin_inset ERT
24670 status collapsed
24671
24672 \begin_layout Standard
24673
24674
24675 \backslash
24676 fboxrule 1mm 
24677 \backslash
24678 fboxsep 1mm
24679 \end_layout
24680
24681 \end_inset
24682
24683
24684 \begin_inset ERT
24685 status collapsed
24686
24687 \begin_layout Standard
24688
24689
24690 \backslash
24691 fcolorbox{cyan}{magenta}{
24692 \end_layout
24693
24694 \end_inset
24695
24696 Texto en un marco coloreado y enmarcado.
24697 \begin_inset ERT
24698 status collapsed
24699
24700 \begin_layout Standard
24701
24702 }
24703 \end_layout
24704
24705 \end_inset
24706
24707
24708 \end_layout
24709
24710 \begin_layout Standard
24711 \begin_inset VSpace bigskip
24712 \end_inset
24713
24714 Por supuesto también puedes colorear el texto en un marco coloreado:
24715 \newline
24716
24717 \begin_inset ERT
24718 status collapsed
24719
24720 \begin_layout Standard
24721
24722
24723 \backslash
24724 fcolorbox{cyan}{magenta}{
24725 \end_layout
24726
24727 \end_inset
24728
24729
24730 \color yellow
24731 Texto coloreado en un marco sombreado y coloreado.
24732 \color none
24733
24734 \begin_inset ERT
24735 status collapsed
24736
24737 \begin_layout Standard
24738
24739 }
24740 \end_layout
24741
24742 \end_inset
24743
24744
24745 \begin_inset ERT
24746 status collapsed
24747
24748 \begin_layout Standard
24749
24750
24751 \backslash
24752 fboxrule 0.4pt 
24753 \backslash
24754 fboxsep 3pt
24755 \end_layout
24756
24757 \end_inset
24758
24759
24760 \end_layout
24761
24762 \begin_layout Standard
24763
24764 \series bold
24765 \begin_inset VSpace medskip
24766 \end_inset
24767
24768
24769 \end_layout
24770
24771 \begin_layout Standard
24772 \begin_inset Note Greyedout
24773 status open
24774
24775 \begin_layout Standard
24776
24777 \series bold
24778 Nota:
24779 \series default
24780  El texto en cuadros coloreados no puede tener saltos de línea.
24781  Para colorear líneas o párrafos múltiples, usa un cuadro dentro de un cuadro
24782  coloreado como se describe a continuación.
24783 \end_layout
24784
24785 \end_inset
24786
24787
24788 \end_layout
24789
24790 \begin_layout Subsection
24791 Color en Párrafos
24792 \begin_inset LatexCommand label
24793 name "sub:Color-en-Párrafos"
24794
24795 \end_inset
24796
24797
24798 \begin_inset LatexCommand index
24799 name "Color ! en Párrafos"
24800
24801 \end_inset
24802
24803
24804 \end_layout
24805
24806 \begin_layout Standard
24807 Para poner color de fondo en más de una línea, pon el texto en una minipágina.
24808  Antes de la minipágina inserta el comando 
24809 \series bold
24810
24811 \backslash
24812 colorbox
24813 \end_layout
24814
24815 \begin_layout Standard
24816
24817 \series bold
24818
24819 \backslash
24820 colorbox{color}{
24821 \end_layout
24822
24823 \begin_layout Standard
24824 en ERT.
24825  Detrás de la minipágina inserta una llave de cierre 
24826 \begin_inset Quotes eld
24827 \end_inset
24828
24829
24830 \series bold
24831 }
24832 \series default
24833
24834 \begin_inset Quotes erd
24835 \end_inset
24836
24837  en ERT.
24838 \end_layout
24839
24840 \begin_layout Standard
24841 \begin_inset ERT
24842 status collapsed
24843
24844 \begin_layout Standard
24845
24846
24847 \backslash
24848 colorbox{grisclaro}{
24849 \end_layout
24850
24851 \end_inset
24852
24853
24854 \begin_inset Box Frameless
24855 position "t"
24856 hor_pos "c"
24857 has_inner_box 1
24858 inner_pos "t"
24859 use_parbox 0
24860 width "100col%"
24861 special "none"
24862 height "1in"
24863 height_special "totalheight"
24864 status open
24865
24866 \begin_layout Standard
24867 Texto con color de fondo.
24868  Texto con color de fondo.
24869 \end_layout
24870
24871 \begin_layout Standard
24872 \begin_inset VSpace defskip
24873 \end_inset
24874
24875 El texto puede tener notas al pie
24876 \begin_inset Foot
24877 status open
24878
24879 \begin_layout Standard
24880 Otro ejemplo de nota
24881 \end_layout
24882
24883 \end_inset
24884
24885  y puede incluir tablas y figuras.
24886 \end_layout
24887
24888 \begin_layout Standard
24889 \align center
24890 \begin_inset Tabular
24891 <lyxtabular version="3" rows="3" columns="3">
24892 <features>
24893 <column alignment="center" valignment="top" leftline="true" width="0">
24894 <column alignment="center" valignment="top" leftline="true" width="0">
24895 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
24896 <row topline="true">
24897 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24898 \begin_inset Text
24899
24900 \begin_layout Standard
24901 a
24902 \end_layout
24903
24904 \end_inset
24905 </cell>
24906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24907 \begin_inset Text
24908
24909 \begin_layout Standard
24910 !
24911 \end_layout
24912
24913 \end_inset
24914 </cell>
24915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24916 \begin_inset Text
24917
24918 \begin_layout Standard
24919 3
24920 \end_layout
24921
24922 \end_inset
24923 </cell>
24924 </row>
24925 <row topline="true">
24926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24927 \begin_inset Text
24928
24929 \begin_layout Standard
24930 <
24931 \end_layout
24932
24933 \end_inset
24934 </cell>
24935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24936 \begin_inset Text
24937
24938 \begin_layout Standard
24939 b2
24940 \begin_inset Quotes erd
24941 \end_inset
24942
24943 |
24944 \end_layout
24945
24946 \end_inset
24947 </cell>
24948 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24949 \begin_inset Text
24950
24951 \begin_layout Standard
24952 >
24953 \end_layout
24954
24955 \end_inset
24956 </cell>
24957 </row>
24958 <row topline="true" bottomline="true">
24959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24960 \begin_inset Text
24961
24962 \begin_layout Standard
24963 1
24964 \end_layout
24965
24966 \end_inset
24967 </cell>
24968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24969 \begin_inset Text
24970
24971 \begin_layout Standard
24972 §
24973 \end_layout
24974
24975 \end_inset
24976 </cell>
24977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24978 \begin_inset Text
24979
24980 \begin_layout Standard
24981 c
24982 \end_layout
24983
24984 \end_inset
24985 </cell>
24986 </row>
24987 </lyxtabular>
24988
24989 \end_inset
24990
24991
24992 \end_layout
24993
24994 \end_inset
24995
24996
24997 \begin_inset ERT
24998 status collapsed
24999
25000 \begin_layout Standard
25001
25002 }
25003 \end_layout
25004
25005 \end_inset
25006
25007
25008 \end_layout
25009
25010 \begin_layout Section
25011 URLs (Localizador Universal de Recursos)
25012 \begin_inset LatexCommand index
25013 name "URLs"
25014
25015 \end_inset
25016
25017
25018 \end_layout
25019
25020 \begin_layout Standard
25021 Los enlaces a páginas web o direcciones de correo se insertan con el menú
25022  
25023 \family sans
25024 Insertar\SpecialChar \menuseparator
25025 URL
25026 \family default
25027 .
25028  Surge un diálogo con dos campos; el campo 
25029 \family sans
25030 URL
25031 \family default
25032  y el campo 
25033 \family sans
25034 Nombre
25035 \family default
25036  para la descripción del URL, que saldrá impreso como texto normal inmediatament
25037 e antes del URL.
25038 \end_layout
25039
25040 \begin_layout Standard
25041 He aquí un ejemplo de URL: 
25042 \begin_inset LatexCommand url
25043 name "Página de LyX"
25044 target "http://www.lyx.org"
25045
25046 \end_inset
25047
25048
25049 \end_layout
25050
25051 \begin_layout Standard
25052 La opción 
25053 \family sans
25054 Generar\InsetSpace ~
25055 hiperenlace
25056 \family default
25057  en el diálogo URL sólo tiene efecto al exportar el documento al formato
25058  
25059 \begin_inset Quotes eld
25060 \end_inset
25061
25062
25063 \family sans
25064 LinuxDoc
25065 \family default
25066
25067 \begin_inset Quotes erd
25068 \end_inset
25069
25070 .
25071 \end_layout
25072
25073 \begin_layout Standard
25074 No se puede cambiar el estilo del texto del enlace.
25075  El texto del campo 
25076 \family sans
25077 Nombre
25078 \family default
25079  tendrá el estilo de texto predeterminado para el documento mientras que
25080  el texto del campo 
25081 \family sans
25082 URL
25083 \family default
25084  tendrá el estilo 
25085 \begin_inset Quotes eld
25086 \end_inset
25087
25088
25089 \family sans
25090 Typewriter
25091 \family default
25092
25093 \begin_inset Quotes erd
25094 \end_inset
25095
25096 .
25097 \end_layout
25098
25099 \begin_layout Standard
25100 Cuando usas el paquete LaTeX 
25101 \series bold
25102 hyperref
25103 \series default
25104
25105 \begin_inset LatexCommand index
25106 name "LaTeX-paquetes ! hyperref"
25107
25108 \end_inset
25109
25110  para enlazar referencias cruzadas, en las salidas DVI y PDF los URLs se
25111  convierten automáticamente en hiperenlaces pinchables.
25112 \end_layout
25113
25114 \begin_layout Standard
25115 \begin_inset Note Greyedout
25116 status open
25117
25118 \begin_layout Standard
25119
25120 \series bold
25121 Nota: 
25122 \series default
25123 Cuando utilices los caracteres: "%", "#", "^", debes escribirlos precedidos
25124  por una barra invertida, p.\InsetSpace \thinspace{}
25125 e.\InsetSpace ~
25126
25127 \begin_inset Quotes eld
25128 \end_inset
25129
25130
25131 \backslash
25132 #
25133 \begin_inset Quotes erd
25134 \end_inset
25135
25136 .
25137  Los URLs no deben finalizar con una barra invertida.
25138 \end_layout
25139
25140 \end_inset
25141
25142
25143 \end_layout
25144
25145 \begin_layout Standard
25146 \begin_inset VSpace bigskip
25147 \end_inset
25148
25149 Para crear hiperenlaces reales sin tener que escribir la dirección del enlace
25150  en el texto, puedes usar el comando
25151 \end_layout
25152
25153 \begin_layout Standard
25154
25155 \series bold
25156
25157 \backslash
25158 href{dirección del enlace}{texto del enlace}
25159 \end_layout
25160
25161 \begin_layout Standard
25162 en ERT.
25163  Por ejemplo, para conseguir un enlace a la página web de LyX, escribe el
25164  comando
25165 \end_layout
25166
25167 \begin_layout Standard
25168
25169 \series bold
25170
25171 \backslash
25172 href{http://www.lyx.org}{
25173 \end_layout
25174
25175 \begin_layout Standard
25176 en ERT.
25177  Inserta después del comando el texto del enlace 
25178 \begin_inset Quotes eld
25179 \end_inset
25180
25181 Página de LyX
25182 \begin_inset Quotes erd
25183 \end_inset
25184
25185  seguido por una llave en ERT.
25186  Este es el resultado: 
25187 \begin_inset ERT
25188 status collapsed
25189
25190 \begin_layout Standard
25191
25192
25193 \backslash
25194 href{http://www.lyx.org}{
25195 \end_layout
25196
25197 \end_inset
25198
25199 Página de LyX
25200 \begin_inset ERT
25201 status collapsed
25202
25203 \begin_layout Standard
25204
25205 }
25206 \end_layout
25207
25208 \end_inset
25209
25210
25211 \end_layout
25212
25213 \begin_layout Standard
25214 Para enlazar a direcciones de correo, añade el prefijo 
25215 \begin_inset Quotes eld
25216 \end_inset
25217
25218
25219 \family sans
25220 mailto:
25221 \family default
25222
25223 \begin_inset Quotes erd
25224 \end_inset
25225
25226  a la dirección del enlace:
25227 \newline
25228 Correo para 
25229 \begin_inset ERT
25230 status collapsed
25231
25232 \begin_layout Standard
25233
25234
25235 \backslash
25236 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
25237 \end_layout
25238
25239 \end_inset
25240
25241 la lista de correo de documentación de LyX (lyx-docs)
25242 \begin_inset ERT
25243 status collapsed
25244
25245 \begin_layout Standard
25246
25247 }
25248 \end_layout
25249
25250 \end_inset
25251
25252 .
25253 \end_layout
25254
25255 \begin_layout Standard
25256 Emplear 
25257 \series bold
25258
25259 \backslash
25260 href
25261 \series default
25262  en vez del cuadro URL de LyX tiene la ventaja de que puedes especificar
25263  el estilo de texto del enlace para todas las demás partes del texto y que
25264  puedes cambiar el estilo de texto para todos los URLs en el documento con
25265  una opción en el comando de carga de 
25266 \series bold
25267 hyperref
25268 \series default
25269 .
25270  Además las restricciones mencionadas antes no se aplican a 
25271 \series bold
25272
25273 \backslash
25274 href
25275 \series default
25276 .
25277  
25278 \end_layout
25279
25280 \begin_layout Standard
25281
25282 \end_layout
25283
25284 \begin_layout Standard
25285
25286 \newpage
25287
25288 \end_layout
25289
25290 \begin_layout Chapter
25291 \start_of_appendix
25292 Unidades disponibles en 
25293 \begin_inset ERT
25294 status collapsed
25295
25296 \begin_layout Standard
25297
25298
25299 \backslash
25300 texorpdfstring{
25301 \end_layout
25302
25303 \end_inset
25304
25305 LyX
25306 \begin_inset ERT
25307 status collapsed
25308
25309 \begin_layout Standard
25310
25311 }{LyX}
25312 \end_layout
25313
25314 \end_inset
25315
25316
25317 \begin_inset LatexCommand index
25318 name "Unidades"
25319
25320 \end_inset
25321
25322
25323 \begin_inset LatexCommand label
25324 name "cha:Unidades-disponibles-en"
25325
25326 \end_inset
25327
25328
25329 \begin_inset Note Note
25330 status collapsed
25331
25332 \begin_layout Standard
25333 El comando 
25334 \backslash
25335 texorpdfstring suministrado por el paquete LaTeX hyperref impide que los
25336  enlaces se muestren erróneamente en los marcadores PDF.
25337  Más información en 
25338 \begin_inset LatexCommand cite
25339 key "hyperref"
25340
25341 \end_inset
25342
25343 .
25344 \end_layout
25345
25346 \end_inset
25347
25348
25349 \end_layout
25350
25351 \begin_layout Standard
25352 Para comprender las unidades descritas en este manual, la Tabla\InsetSpace ~
25353
25354 \begin_inset LatexCommand ref
25355 reference "tab:Unidades"
25356
25357 \end_inset
25358
25359  describe todas las unidades disponibles en LyX.
25360 \end_layout
25361
25362 \begin_layout Standard
25363 \begin_inset Float table
25364 placement h
25365 wide false
25366 sideways false
25367 status open
25368
25369 \begin_layout Caption
25370 \begin_inset LatexCommand label
25371 name "tab:Unidades"
25372
25373 \end_inset
25374
25375 Unidades
25376 \end_layout
25377
25378 \begin_layout Standard
25379 \begin_inset VSpace medskip
25380 \end_inset
25381
25382
25383 \end_layout
25384
25385 \begin_layout Standard
25386 \align center
25387 \begin_inset Tabular
25388 <lyxtabular version="3" rows="20" columns="2">
25389 <features>
25390 <column alignment="center" valignment="top" leftline="true" width="0">
25391 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
25392 <row topline="true" bottomline="true">
25393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25394 \begin_inset Text
25395
25396 \begin_layout Standard
25397 unidad
25398 \end_layout
25399
25400 \end_inset
25401 </cell>
25402 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25403 \begin_inset Text
25404
25405 \begin_layout Standard
25406 nombre/descripción
25407 \end_layout
25408
25409 \end_inset
25410 </cell>
25411 </row>
25412 <row topline="true">
25413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25414 \begin_inset Text
25415
25416 \begin_layout Standard
25417 mm
25418 \end_layout
25419
25420 \end_inset
25421 </cell>
25422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25423 \begin_inset Text
25424
25425 \begin_layout Standard
25426 milímetro
25427 \end_layout
25428
25429 \end_inset
25430 </cell>
25431 </row>
25432 <row topline="true">
25433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25434 \begin_inset Text
25435
25436 \begin_layout Standard
25437 cm
25438 \end_layout
25439
25440 \end_inset
25441 </cell>
25442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25443 \begin_inset Text
25444
25445 \begin_layout Standard
25446 centímetro
25447 \end_layout
25448
25449 \end_inset
25450 </cell>
25451 </row>
25452 <row topline="true">
25453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25454 \begin_inset Text
25455
25456 \begin_layout Standard
25457 in
25458 \end_layout
25459
25460 \end_inset
25461 </cell>
25462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25463 \begin_inset Text
25464
25465 \begin_layout Standard
25466 pulgada
25467 \end_layout
25468
25469 \end_inset
25470 </cell>
25471 </row>
25472 <row topline="true">
25473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25474 \begin_inset Text
25475
25476 \begin_layout Standard
25477 pt
25478 \end_layout
25479
25480 \end_inset
25481 </cell>
25482 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25483 \begin_inset Text
25484
25485 \begin_layout Standard
25486 punto (72.27\InsetSpace \thinspace{}
25487 pt = 1\InsetSpace \thinspace{}
25488 in)
25489 \end_layout
25490
25491 \end_inset
25492 </cell>
25493 </row>
25494 <row topline="true">
25495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25496 \begin_inset Text
25497
25498 \begin_layout Standard
25499 pc
25500 \end_layout
25501
25502 \end_inset
25503 </cell>
25504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25505 \begin_inset Text
25506
25507 \begin_layout Standard
25508 pica (1\InsetSpace \thinspace{}
25509 pc = 12\InsetSpace \thinspace{}
25510 pt)
25511 \end_layout
25512
25513 \end_inset
25514 </cell>
25515 </row>
25516 <row topline="true">
25517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25518 \begin_inset Text
25519
25520 \begin_layout Standard
25521 sp
25522 \end_layout
25523
25524 \end_inset
25525 </cell>
25526 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25527 \begin_inset Text
25528
25529 \begin_layout Standard
25530 punto escalado (65536\InsetSpace \thinspace{}
25531 sp = 1\InsetSpace \thinspace{}
25532 pt)
25533 \end_layout
25534
25535 \end_inset
25536 </cell>
25537 </row>
25538 <row topline="true">
25539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25540 \begin_inset Text
25541
25542 \begin_layout Standard
25543 bp
25544 \end_layout
25545
25546 \end_inset
25547 </cell>
25548 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25549 \begin_inset Text
25550
25551 \begin_layout Standard
25552 punto grande (72\InsetSpace \thinspace{}
25553 bp = 1\InsetSpace \thinspace{}
25554 in)
25555 \end_layout
25556
25557 \end_inset
25558 </cell>
25559 </row>
25560 <row topline="true">
25561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25562 \begin_inset Text
25563
25564 \begin_layout Standard
25565 dd
25566 \end_layout
25567
25568 \end_inset
25569 </cell>
25570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25571 \begin_inset Text
25572
25573 \begin_layout Standard
25574 didot (72\InsetSpace \thinspace{}
25575 dd 
25576 \begin_inset Formula $\approx$
25577 \end_inset
25578
25579  37.6\InsetSpace \thinspace{}
25580 mm)
25581 \end_layout
25582
25583 \end_inset
25584 </cell>
25585 </row>
25586 <row topline="true">
25587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25588 \begin_inset Text
25589
25590 \begin_layout Standard
25591 cc
25592 \end_layout
25593
25594 \end_inset
25595 </cell>
25596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25597 \begin_inset Text
25598
25599 \begin_layout Standard
25600 cicero (1\InsetSpace \thinspace{}
25601 cc = 12\InsetSpace \thinspace{}
25602 dd)
25603 \end_layout
25604
25605 \end_inset
25606 </cell>
25607 </row>
25608 <row topline="true">
25609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25610 \begin_inset Text
25611
25612 \begin_layout Standard
25613 Escala%
25614 \end_layout
25615
25616 \end_inset
25617 </cell>
25618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25619 \begin_inset Text
25620
25621 \begin_layout Standard
25622 % de anchura original de la imagen
25623 \end_layout
25624
25625 \end_inset
25626 </cell>
25627 </row>
25628 <row topline="true">
25629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25630 \begin_inset Text
25631
25632 \begin_layout Standard
25633 text%
25634 \end_layout
25635
25636 \end_inset
25637 </cell>
25638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25639 \begin_inset Text
25640
25641 \begin_layout Standard
25642 % de anchura de texto
25643 \end_layout
25644
25645 \end_inset
25646 </cell>
25647 </row>
25648 <row topline="true">
25649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25650 \begin_inset Text
25651
25652 \begin_layout Standard
25653 col%
25654 \end_layout
25655
25656 \end_inset
25657 </cell>
25658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25659 \begin_inset Text
25660
25661 \begin_layout Standard
25662 % de anchura de columna
25663 \end_layout
25664
25665 \end_inset
25666 </cell>
25667 </row>
25668 <row topline="true">
25669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25670 \begin_inset Text
25671
25672 \begin_layout Standard
25673 page%
25674 \end_layout
25675
25676 \end_inset
25677 </cell>
25678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25679 \begin_inset Text
25680
25681 \begin_layout Standard
25682 % de anchura de página
25683 \end_layout
25684
25685 \end_inset
25686 </cell>
25687 </row>
25688 <row topline="true">
25689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25690 \begin_inset Text
25691
25692 \begin_layout Standard
25693 line%
25694 \end_layout
25695
25696 \end_inset
25697 </cell>
25698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25699 \begin_inset Text
25700
25701 \begin_layout Standard
25702 % de anchura de línea
25703 \end_layout
25704
25705 \end_inset
25706 </cell>
25707 </row>
25708 <row topline="true">
25709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25710 \begin_inset Text
25711
25712 \begin_layout Standard
25713 theight%
25714 \end_layout
25715
25716 \end_inset
25717 </cell>
25718 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25719 \begin_inset Text
25720
25721 \begin_layout Standard
25722 % de altura de texto
25723 \end_layout
25724
25725 \end_inset
25726 </cell>
25727 </row>
25728 <row topline="true">
25729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25730 \begin_inset Text
25731
25732 \begin_layout Standard
25733 pheight%
25734 \end_layout
25735
25736 \end_inset
25737 </cell>
25738 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25739 \begin_inset Text
25740
25741 \begin_layout Standard
25742 % de altura de página
25743 \end_layout
25744
25745 \end_inset
25746 </cell>
25747 </row>
25748 <row topline="true">
25749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25750 \begin_inset Text
25751
25752 \begin_layout Standard
25753 ex
25754 \end_layout
25755
25756 \end_inset
25757 </cell>
25758 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25759 \begin_inset Text
25760
25761 \begin_layout Standard
25762 altura de la letra 
25763 \emph on
25764 x
25765 \emph default
25766  en la fuente actual
25767 \end_layout
25768
25769 \end_inset
25770 </cell>
25771 </row>
25772 <row topline="true">
25773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25774 \begin_inset Text
25775
25776 \begin_layout Standard
25777 em
25778 \end_layout
25779
25780 \end_inset
25781 </cell>
25782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25783 \begin_inset Text
25784
25785 \begin_layout Standard
25786 anchura de la letra 
25787 \emph on
25788 M
25789 \emph default
25790  en la fuente actual
25791 \end_layout
25792
25793 \end_inset
25794 </cell>
25795 </row>
25796 <row topline="true" bottomline="true">
25797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25798 \begin_inset Text
25799
25800 \begin_layout Standard
25801 mu
25802 \end_layout
25803
25804 \end_inset
25805 </cell>
25806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25807 \begin_inset Text
25808
25809 \begin_layout Standard
25810 unidad matemática (1\InsetSpace \thinspace{}
25811 mu = 1/18\InsetSpace \thinspace{}
25812 em)
25813 \end_layout
25814
25815 \end_inset
25816 </cell>
25817 </row>
25818 </lyxtabular>
25819
25820 \end_inset
25821
25822
25823 \end_layout
25824
25825 \end_inset
25826
25827
25828 \end_layout
25829
25830 \begin_layout Chapter
25831 Formatos de Archivos de Salida con Gráficos
25832 \begin_inset LatexCommand label
25833 name "cha:Formatos-de-Archivos-de-Salida"
25834
25835 \end_inset
25836
25837
25838 \end_layout
25839
25840 \begin_layout Section
25841 DVI
25842 \begin_inset LatexCommand index
25843 name "Formatos de Archivo ! DVI"
25844
25845 \end_inset
25846
25847
25848 \begin_inset LatexCommand index
25849 name "DVI|see{Formatos de Archivo}"
25850
25851 \end_inset
25852
25853
25854 \end_layout
25855
25856 \begin_layout Standard
25857 Este tipo de archivo tiene la extensión 
25858 \begin_inset Quotes eld
25859 \end_inset
25860
25861
25862 \family typewriter
25863 .dvi
25864 \family default
25865
25866 \begin_inset Quotes erd
25867 \end_inset
25868
25869 .
25870  Se denomina 
25871 \begin_inset Quotes eld
25872 \end_inset
25873
25874 device-independent
25875 \begin_inset Quotes erd
25876 \end_inset
25877
25878  (DVI), porque es completamente portable; se pueden mover de una máquina
25879  a otra sin necesidad de conversión alguna.
25880  En la época en que se desarrolló este formato, esto no era un asunto baladí.
25881  DVIs se usan para previsualizaciones rápidas y preparación para otros formatos
25882  de salida como PostScript.
25883 \end_layout
25884
25885 \begin_layout Standard
25886 \begin_inset Note Greyedout
25887 status collapsed
25888
25889 \begin_layout Standard
25890
25891 \series bold
25892 Nota:
25893 \series default
25894  Los archivos DVI no contienen imágenes, sino enlaces a ellas.
25895 \end_layout
25896
25897 \end_inset
25898
25899  Por tanto no debes olvidar esto si mueves archivos 
25900 \family typewriter
25901 .dvi
25902 \family default
25903  a otro ordenador.
25904  Esta característica también puede retardar la visualización del archivo,
25905  porque el visor DVI tiene que convertir la imagen en segundo plano para
25906  hacerla visible al deslizar el visor.
25907  Así pues recomendamos usar PDF para archivos con muchas imágenes.
25908 \end_layout
25909
25910 \begin_layout Standard
25911 Un documento se exporta a DVI con el menú 
25912 \family sans
25913 Archivo\SpecialChar \menuseparator
25914 Exportar\SpecialChar \menuseparator
25915 DVI
25916 \family default
25917  o el botón 
25918 \begin_inset Graphics
25919         filename ../clipart/buffer-view_dvi.png
25920         scale 85
25921
25922 \end_inset
25923
25924 .
25925 \begin_inset Note Note
25926 status collapsed
25927
25928 \begin_layout Standard
25929 N.
25930  del t.
25931  Yo no veo este botón ¿?
25932 \end_layout
25933
25934 \end_inset
25935
25936
25937 \end_layout
25938
25939 \begin_layout Section
25940 PostScript
25941 \begin_inset LatexCommand label
25942 name "sec:PostScript"
25943
25944 \end_inset
25945
25946
25947 \begin_inset LatexCommand index
25948 name "Formatos de Archivo ! PostScript"
25949
25950 \end_inset
25951
25952
25953 \begin_inset LatexCommand index
25954 name "PostScript|see{Formatos de Archivo}"
25955
25956 \end_inset
25957
25958
25959 \end_layout
25960
25961 \begin_layout Standard
25962 Este tipo de archivo tiene la extensión 
25963 \begin_inset Quotes eld
25964 \end_inset
25965
25966
25967 \family typewriter
25968 .ps
25969 \family default
25970
25971 \begin_inset Quotes erd
25972 \end_inset
25973
25974 .
25975  PostScript fue desarrollado por la compañía 
25976 \family typewriter
25977 Adobe
25978 \family default
25979  como lenguaje para impresoras.
25980  Por eso estos archivos contienen comandos que usa la impresora para imprimirlos.
25981  PostScript puede considerarse como un 
25982 \begin_inset Quotes eld
25983 \end_inset
25984
25985 lenguaje de programación
25986 \begin_inset Quotes erd
25987 \end_inset
25988
25989 ; con él puedes calcular y dibujar imágenes y diagramas
25990 \begin_inset Foot
25991 status collapsed
25992
25993 \begin_layout Standard
25994 Si estás interesado en este tema acude al paquete LaTeX 
25995 \series bold
25996 PSTricks
25997 \series default
25998  
25999 \begin_inset LatexCommand cite
26000 key "pstricks"
26001
26002 \end_inset
26003
26004 .
26005 \end_layout
26006
26007 \end_inset
26008
26009 .
26010  Por esto los archivos suelen ser más grandes que los PDFs.
26011 \end_layout
26012
26013 \begin_layout Standard
26014 Los archivos PostScript solo pueden contener imágenes en el formato 
26015 \begin_inset Quotes eld
26016 \end_inset
26017
26018 Encapsulated PostScript
26019 \begin_inset Quotes erd
26020 \end_inset
26021
26022  (EPS, extensión 
26023 \begin_inset Quotes eld
26024 \end_inset
26025
26026
26027 \family typewriter
26028 .eps
26029 \family default
26030
26031 \begin_inset Quotes erd
26032 \end_inset
26033
26034 ).
26035  Como LyX permite usar cualquier formato de imagen conocido, tiene que trabajar
26036  en segundo plano para convertir las imágenes a EPS.
26037  Si por ejemplo, el documento tiene 50 imágenes, LyX ha de hacer 50 conversiones
26038  cada vez que veas o exportes el documento.
26039  Esto ralentizará mucho el trabajo, así que si piensas usar PostScript,
26040  puedes evitar el problema insertando las imágenes directamente en EPS.
26041 \end_layout
26042
26043 \begin_layout Standard
26044 El documento se puede exportar a PostScript con el menú 
26045 \family sans
26046 Archivo\SpecialChar \menuseparator
26047 Exportar\SpecialChar \menuseparator
26048 Postscript
26049 \family default
26050 .
26051 \end_layout
26052
26053 \begin_layout Section
26054 PDF
26055 \begin_inset LatexCommand label
26056 name "sec:PDF"
26057
26058 \end_inset
26059
26060
26061 \begin_inset LatexCommand index
26062 name "Formatos de Archivo ! PDF"
26063
26064 \end_inset
26065
26066
26067 \begin_inset LatexCommand index
26068 name "PDF"
26069
26070 \end_inset
26071
26072
26073 \end_layout
26074
26075 \begin_layout Standard
26076 Este tipo de archivo tiene la extensión 
26077 \begin_inset Quotes eld
26078 \end_inset
26079
26080
26081 \family typewriter
26082 .pdf
26083 \family default
26084
26085 \begin_inset Quotes erd
26086 \end_inset
26087
26088 .
26089  El formato 
26090 \begin_inset Quotes eld
26091 \end_inset
26092
26093 Portable Document Format
26094 \begin_inset Quotes erd
26095 \end_inset
26096
26097  (PDF) fue desarrollado por 
26098 \family typewriter
26099 Adobe
26100 \family default
26101  como derivado de PostScript.
26102  Es más comprimido y utiliza muchos menos comandos que PostScript.
26103  Como su nombre 
26104 \begin_inset Quotes eld
26105 \end_inset
26106
26107 portable
26108 \begin_inset Quotes erd
26109 \end_inset
26110
26111  indica, puede ser procesado por cualquier sistema operativo y la salida
26112  impresa se muestra exactamente igual.
26113 \end_layout
26114
26115 \begin_layout Standard
26116 PDF puede contener imágenes en su propio formato PDF, en el formato 
26117 \begin_inset Quotes eld
26118 \end_inset
26119
26120 Joint Photographic Experts Group
26121 \begin_inset Quotes erd
26122 \end_inset
26123
26124  (JPG, extensión 
26125 \begin_inset Quotes eld
26126 \end_inset
26127
26128
26129 \family typewriter
26130 .jpg
26131 \family default
26132
26133 \begin_inset Quotes erd
26134 \end_inset
26135
26136  o 
26137 \begin_inset Quotes eld
26138 \end_inset
26139
26140
26141 \family typewriter
26142 .jpeg
26143 \family default
26144
26145 \begin_inset Quotes erd
26146 \end_inset
26147
26148 ), y en el formato 
26149 \begin_inset Quotes eld
26150 \end_inset
26151
26152 Portable Network Graphics
26153 \begin_inset Quotes erd
26154 \end_inset
26155
26156  (PNG, extensión 
26157 \begin_inset Quotes eld
26158 \end_inset
26159
26160
26161 \family typewriter
26162 .png
26163 \family default
26164
26165 \begin_inset Quotes erd
26166 \end_inset
26167
26168 ).
26169  Aunque puedes poner cualquier otro formato de imagen, porque LyX los convierte
26170  en segundo plano a alguno de los anteriores.
26171  Pero como se ha comentado en la sección sobre PostScript, la conversión
26172  de gráficos ralentiza el trabajo.
26173  Por tanto se recomienda utilizar alguno de los tres formatos de imagen
26174  mencionados.
26175 \end_layout
26176
26177 \begin_layout Standard
26178 Un documento se puede exportar a PDF via el menú 
26179 \family sans
26180 Archivo\SpecialChar \menuseparator
26181 Exportar
26182 \family default
26183  en tres modos diferentes:
26184 \end_layout
26185
26186 \begin_layout Description
26187 PDF Este utiliza el programa 
26188 \family typewriter
26189 ps2pdf
26190 \family default
26191  que crea un PDF a partir de una versión PostScript del archivo.
26192  La versión PostScript es producida por el programa 
26193 \family typewriter
26194 dvips
26195 \family default
26196  que usa una versión DVI como paso intermedio.
26197  Así que este modo de exportación consta de tres conversiones.
26198 \end_layout
26199
26200 \begin_layout Description
26201 PDF\InsetSpace ~
26202 (dvipdfm) Este utiliza el programa 
26203 \family typewriter
26204 dvipdfm
26205 \family default
26206  que convierte el archivo a DVI en segundo plano y en un segundo paso a
26207  PDF.
26208 \end_layout
26209
26210 \begin_layout Description
26211 PDF\InsetSpace ~
26212 (pdflatex) Este utiliza el programa 
26213 \family typewriter
26214 pdftex
26215 \family default
26216  que convierte directamente el archivo a PDF.
26217  Alternativamente se puede usar el  botón 
26218 \begin_inset Graphics
26219         filename ../clipart/buffer-export_pdf2.png
26220         scale 85
26221
26222 \end_inset
26223
26224 .
26225 \begin_inset Note Note
26226 status collapsed
26227
26228 \begin_layout Standard
26229 N.
26230  del t.
26231  Yo no veo este botón ¿?
26232 \end_layout
26233
26234 \end_inset
26235
26236
26237 \end_layout
26238
26239 \begin_layout Standard
26240 Se recomienda usar 
26241 \family sans
26242 PDF\InsetSpace ~
26243 (pdflatex)
26244 \family default
26245  porque 
26246 \family typewriter
26247 pdftex
26248 \family default
26249  soporta todas las características de las versiones actuales de PDF, es
26250  rápido y estable.
26251  El programa 
26252 \family typewriter
26253 dvipdfm
26254 \family default
26255  ya no se desarrolla y está un poco obsoleto.
26256 \end_layout
26257
26258 \begin_layout Chapter
26259 Explicación de la Ecuación\InsetSpace ~
26260
26261 \begin_inset LatexCommand eqref
26262 reference "eq:Wgn"
26263
26264 \end_inset
26265
26266
26267 \begin_inset LatexCommand label
26268 name "cha:Explicación-de-la-Ecuación"
26269
26270 \end_inset
26271
26272
26273 \end_layout
26274
26275 \begin_layout Standard
26276 La anchura total de 
26277 \emph on
26278 n
26279 \emph default
26280  celdas de una tabla 
26281 \begin_inset Formula $W_{\mathrm{tot\, n}}$
26282 \end_inset
26283
26284  puede calcularse con
26285 \end_layout
26286
26287 \begin_layout Standard
26288 \begin_inset Formula \begin{equation}
26289 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
26290
26291 \end_inset
26292
26293
26294 \end_layout
26295
26296 \begin_layout Standard
26297 donde 
26298 \begin_inset Formula $W_{g\, n}$
26299 \end_inset
26300
26301  es el ancho dado de todas las celdas.
26302  
26303 \series bold
26304
26305 \backslash
26306 tabcolsep
26307 \series default
26308  es la longitud LaTeX entre el texto y el borde de la celda, 6\InsetSpace \thinspace{}
26309 pt por defecto.
26310  
26311 \series bold
26312
26313 \backslash
26314 arrayrulewidth
26315 \series default
26316  es el grosor de línea del borde, 0.4\InsetSpace \thinspace{}
26317 pt por defecto.
26318 \end_layout
26319
26320 \begin_layout Standard
26321 Procediendo como en la ecuación\InsetSpace ~
26322
26323 \begin_inset LatexCommand eqref
26324 reference "eq:Wtot_n"
26325
26326 \end_inset
26327
26328 , el ancho total de una multicolumna, 
26329 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
26330 \end_inset
26331
26332  es
26333 \end_layout
26334
26335 \begin_layout Standard
26336 \begin_inset Formula \begin{equation}
26337 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
26338
26339 \end_inset
26340
26341
26342 \end_layout
26343
26344 \begin_layout Standard
26345 Igualando las ecuaciones\InsetSpace ~
26346
26347 \begin_inset LatexCommand eqref
26348 reference "eq:Wtot_n"
26349
26350 \end_inset
26351
26352  y 
26353 \begin_inset LatexCommand eqref
26354 reference "eq:Wtot_mult"
26355
26356 \end_inset
26357
26358  podemos calcular el ancho dado necesario 
26359 \begin_inset Formula $W_{g\, n}$
26360 \end_inset
26361
26362  cuando se expanden 
26363 \emph on
26364 n
26365 \emph default
26366  columnas, de forma que cada una de ellas tiene una anchura total  
26367 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
26368 \end_inset
26369
26370 :
26371 \end_layout
26372
26373 \begin_layout Standard
26374 \begin_inset Formula \begin{equation}
26375 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
26376
26377 \end_inset
26378
26379
26380 \end_layout
26381
26382 \begin_layout Bibliography
26383 \begin_inset LatexCommand bibitem
26384 key "latexcompanion"
26385
26386 \end_inset
26387
26388 Frank Mittelbach and Michel Goossens: 
26389 \emph on
26390 The LaTeX Companion Second Edition.
26391  
26392 \emph default
26393 Addison-Wesley, 2004
26394 \end_layout
26395
26396 \begin_layout Bibliography
26397 \begin_inset LatexCommand bibitem
26398 key "latexguide"
26399
26400 \end_inset
26401
26402 Helmut Kopka and Patrick W.
26403  Daly: 
26404 \emph on
26405 A Guide to LaTeX Fourth Edition.
26406  
26407 \emph default
26408 Addison-Wesley, 2003
26409 \end_layout
26410
26411 \begin_layout Bibliography
26412 \begin_inset LatexCommand bibitem
26413 key "latexbook"
26414
26415 \end_inset
26416
26417 Leslie Lamport: 
26418 \emph on
26419 LaTeX: A Document Preparation System.
26420  
26421 \emph default
26422 Addison-Wesley, second edition, 1994
26423 \end_layout
26424
26425 \begin_layout Bibliography
26426 \begin_inset LatexCommand bibitem
26427 key "booktabs"
26428
26429 \end_inset
26430
26431
26432 \begin_inset ERT
26433 status collapsed
26434
26435 \begin_layout Standard
26436
26437
26438 \backslash
26439 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
26440 {
26441 \end_layout
26442
26443 \end_inset
26444
26445 Documentación
26446 \begin_inset ERT
26447 status collapsed
26448
26449 \begin_layout Standard
26450
26451 }
26452 \end_layout
26453
26454 \end_inset
26455
26456  del paquete LaTeX 
26457 \series bold
26458 booktabs
26459 \series default
26460
26461 \begin_inset LatexCommand index
26462 name "LaTeX-paquetes ! booktabs"
26463
26464 \end_inset
26465
26466
26467 \end_layout
26468
26469 \begin_layout Bibliography
26470 \begin_inset LatexCommand bibitem
26471 key "caption"
26472
26473 \end_inset
26474
26475
26476 \begin_inset ERT
26477 status collapsed
26478
26479 \begin_layout Standard
26480
26481
26482 \backslash
26483 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
26484 \end_layout
26485
26486 \end_inset
26487
26488 Documentación
26489 \begin_inset ERT
26490 status collapsed
26491
26492 \begin_layout Standard
26493
26494 }
26495 \end_layout
26496
26497 \end_inset
26498
26499  del paquete LaTeX 
26500 \series bold
26501 caption
26502 \series default
26503
26504 \begin_inset LatexCommand index
26505 name "LaTeX-paquetes ! caption"
26506
26507 \end_inset
26508
26509
26510 \end_layout
26511
26512 \begin_layout Bibliography
26513 \begin_inset LatexCommand bibitem
26514 key "caption-de"
26515
26516 \end_inset
26517
26518 (En Alemán) 
26519 \begin_inset ERT
26520 status collapsed
26521
26522 \begin_layout Standard
26523
26524
26525 \backslash
26526 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
26527 {
26528 \end_layout
26529
26530 \end_inset
26531
26532 Documentación
26533 \begin_inset ERT
26534 status collapsed
26535
26536 \begin_layout Standard
26537
26538 }
26539 \end_layout
26540
26541 \end_inset
26542
26543  del paquete LaTeX 
26544 \series bold
26545 caption
26546 \end_layout
26547
26548 \begin_layout Bibliography
26549 \begin_inset LatexCommand bibitem
26550 key "endfloat"
26551
26552 \end_inset
26553
26554
26555 \begin_inset ERT
26556 status collapsed
26557
26558 \begin_layout Standard
26559
26560
26561 \backslash
26562 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
26563 {
26564 \end_layout
26565
26566 \end_inset
26567
26568 Documentación
26569 \begin_inset ERT
26570 status collapsed
26571
26572 \begin_layout Standard
26573
26574 }
26575 \end_layout
26576
26577 \end_inset
26578
26579  del paquete LaTeX 
26580 \series bold
26581 endfloat
26582 \series default
26583
26584 \begin_inset LatexCommand index
26585 name "LaTeX-paquetes ! endfloat"
26586
26587 \end_inset
26588
26589
26590 \end_layout
26591
26592 \begin_layout Bibliography
26593 \begin_inset LatexCommand bibitem
26594 key "floatflt"
26595
26596 \end_inset
26597
26598
26599 \begin_inset ERT
26600 status collapsed
26601
26602 \begin_layout Standard
26603
26604
26605 \backslash
26606 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
26607 {
26608 \end_layout
26609
26610 \end_inset
26611
26612 Documentación
26613 \begin_inset ERT
26614 status collapsed
26615
26616 \begin_layout Standard
26617
26618 }
26619 \end_layout
26620
26621 \end_inset
26622
26623  del paquete LaTeX 
26624 \series bold
26625 floatflt
26626 \series default
26627
26628 \begin_inset LatexCommand index
26629 name "LaTeX-paquetes ! floatflt"
26630
26631 \end_inset
26632
26633
26634 \end_layout
26635
26636 \begin_layout Bibliography
26637 \begin_inset LatexCommand bibitem
26638 key "footmisc"
26639
26640 \end_inset
26641
26642
26643 \begin_inset ERT
26644 status collapsed
26645
26646 \begin_layout Standard
26647
26648
26649 \backslash
26650 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
26651 {
26652 \end_layout
26653
26654 \end_inset
26655
26656 Documentación
26657 \begin_inset ERT
26658 status collapsed
26659
26660 \begin_layout Standard
26661
26662 }
26663 \end_layout
26664
26665 \end_inset
26666
26667  del paquete LaTeX 
26668 \series bold
26669 footmisc
26670 \series default
26671
26672 \begin_inset LatexCommand index
26673 name "LaTeX-paquetes ! footmisc"
26674
26675 \end_inset
26676
26677
26678 \end_layout
26679
26680 \begin_layout Bibliography
26681 \begin_inset LatexCommand bibitem
26682 key "hypcap"
26683
26684 \end_inset
26685
26686
26687 \begin_inset ERT
26688 status collapsed
26689
26690 \begin_layout Standard
26691
26692
26693 \backslash
26694 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
26695 \end_layout
26696
26697 \end_inset
26698
26699 Documentación
26700 \begin_inset ERT
26701 status collapsed
26702
26703 \begin_layout Standard
26704
26705 }
26706 \end_layout
26707
26708 \end_inset
26709
26710  del paquete LaTeX 
26711 \series bold
26712 hypcap
26713 \series default
26714
26715 \begin_inset LatexCommand index
26716 name "LaTeX-paquetes ! hyperref"
26717
26718 \end_inset
26719
26720
26721 \end_layout
26722
26723 \begin_layout Bibliography
26724 \begin_inset LatexCommand bibitem
26725 key "hyperref"
26726
26727 \end_inset
26728
26729
26730 \begin_inset ERT
26731 status collapsed
26732
26733 \begin_layout Standard
26734
26735
26736 \backslash
26737 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
26738 {
26739 \end_layout
26740
26741 \end_inset
26742
26743 Documentación
26744 \begin_inset ERT
26745 status collapsed
26746
26747 \begin_layout Standard
26748
26749 }
26750 \end_layout
26751
26752 \end_inset
26753
26754  del paquete LaTeX 
26755 \series bold
26756 hyperref
26757 \series default
26758
26759 \begin_inset LatexCommand index
26760 name "LaTeX-paquetes ! hyperref"
26761
26762 \end_inset
26763
26764
26765 \end_layout
26766
26767 \begin_layout Bibliography
26768 \begin_inset LatexCommand bibitem
26769 key "koma-script"
26770
26771 \end_inset
26772
26773
26774 \begin_inset ERT
26775 status collapsed
26776
26777 \begin_layout Standard
26778
26779
26780 \backslash
26781 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
26782 df}{
26783 \end_layout
26784
26785 \end_inset
26786
26787 Documentación
26788 \begin_inset ERT
26789 status collapsed
26790
26791 \begin_layout Standard
26792
26793 }
26794 \end_layout
26795
26796 \end_inset
26797
26798  del paquete LaTeX 
26799 \series bold
26800 koma-script
26801 \series default
26802
26803 \begin_inset LatexCommand index
26804 name "LaTeX-paquetes ! koma-script"
26805
26806 \end_inset
26807
26808
26809 \end_layout
26810
26811 \begin_layout Bibliography
26812 \begin_inset LatexCommand bibitem
26813 key "koma-script-de"
26814
26815 \end_inset
26816
26817 (En Alemán) 
26818 \begin_inset ERT
26819 status collapsed
26820
26821 \begin_layout Standard
26822
26823
26824 \backslash
26825 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
26826 df}{
26827 \end_layout
26828
26829 \end_inset
26830
26831 Documentación
26832 \begin_inset ERT
26833 status collapsed
26834
26835 \begin_layout Standard
26836
26837 }
26838 \end_layout
26839
26840 \end_inset
26841
26842  del paquete LaTeX 
26843 \series bold
26844 koma-script
26845 \series default
26846
26847 \begin_inset LatexCommand index
26848 name "LaTeX-paquetes ! koma-script"
26849
26850 \end_inset
26851
26852
26853 \end_layout
26854
26855 \begin_layout Bibliography
26856 \begin_inset LatexCommand bibitem
26857 key "marginnote"
26858
26859 \end_inset
26860
26861
26862 \begin_inset ERT
26863 status collapsed
26864
26865 \begin_layout Standard
26866
26867
26868 \backslash
26869 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
26870 pdf}{
26871 \end_layout
26872
26873 \end_inset
26874
26875 Documentación
26876 \begin_inset ERT
26877 status collapsed
26878
26879 \begin_layout Standard
26880
26881 }
26882 \end_layout
26883
26884 \end_inset
26885
26886  del paquete LaTeX 
26887 \series bold
26888 marginnote
26889 \series default
26890
26891 \begin_inset LatexCommand index
26892 name "LaTeX-paquetes ! marginnote"
26893
26894 \end_inset
26895
26896
26897 \end_layout
26898
26899 \begin_layout Bibliography
26900 \begin_inset LatexCommand bibitem
26901 key "pstricks"
26902
26903 \end_inset
26904
26905
26906 \begin_inset ERT
26907 status collapsed
26908
26909 \begin_layout Standard
26910
26911
26912 \backslash
26913 href{http://tug.org/PSTricks/main.cgi/}{
26914 \end_layout
26915
26916 \end_inset
26917
26918 Página Web
26919 \begin_inset ERT
26920 status collapsed
26921
26922 \begin_layout Standard
26923
26924 }
26925 \end_layout
26926
26927 \end_inset
26928
26929  del paquete LaTeX 
26930 \series bold
26931 PSTricks
26932 \series default
26933
26934 \begin_inset LatexCommand index
26935 name "LaTeX-paquetes ! PSTricks"
26936
26937 \end_inset
26938
26939
26940 \end_layout
26941
26942 \begin_layout Bibliography
26943 \begin_inset LatexCommand bibitem
26944 key "sidecap"
26945
26946 \end_inset
26947
26948
26949 \begin_inset ERT
26950 status collapsed
26951
26952 \begin_layout Standard
26953
26954
26955 \backslash
26956 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
26957 \end_layout
26958
26959 \end_inset
26960
26961 Documentación
26962 \begin_inset ERT
26963 status collapsed
26964
26965 \begin_layout Standard
26966
26967 }
26968 \end_layout
26969
26970 \end_inset
26971
26972  del paquete LaTeX 
26973 \series bold
26974 sidecap
26975 \series default
26976
26977 \begin_inset LatexCommand index
26978 name "LaTeX-paquetes ! sidecap"
26979
26980 \end_inset
26981
26982
26983 \end_layout
26984
26985 \begin_layout Bibliography
26986 \begin_inset LatexCommand bibitem
26987 key "NewInLyX15"
26988
26989 \end_inset
26990
26991
26992 \begin_inset ERT
26993 status collapsed
26994
26995 \begin_layout Standard
26996
26997
26998 \backslash
26999 href{http://wiki.lyx.org/LyX/NewInLyX15}{
27000 \end_layout
27001
27002 \end_inset
27003
27004 Wiki página
27005 \begin_inset ERT
27006 status collapsed
27007
27008 \begin_layout Standard
27009
27010 }
27011 \end_layout
27012
27013 \end_inset
27014
27015  sobre características nuevas previstas para la versión 
27016 \family sans
27017 LyX\InsetSpace ~
27018 1.5
27019 \family default
27020 .
27021 \end_layout
27022
27023 \begin_layout Standard
27024 \begin_inset LatexCommand printindex
27025
27026 \end_inset
27027
27028
27029 \end_layout
27030
27031 \begin_layout Standard
27032 \begin_inset FloatList figure
27033
27034 \end_inset
27035
27036
27037 \end_layout
27038
27039 \begin_layout Standard
27040 \begin_inset FloatList table
27041
27042 \end_inset
27043
27044
27045 \end_layout
27046
27047 \end_body
27048 \end_document