]> git.lyx.org Git - lyx.git/blob - lib/doc/es/EmbeddedObjects.lyx
EmbeddedObjects: corrected index
[lyx.git] / lib / doc / es / EmbeddedObjects.lyx
1 #LyX 1.5.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 263
3 \begin_document
4 \begin_header
5 \textclass scrbook
6 \begin_preamble
7 % provides caption formatting
8 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}[2004/07/16]
9
10 % provides commands to set caption
11 % beside tables/images
12 \usepackage{sidecap}
13
14 \newcommand{\TabBesBeg}{%
15  \let\MyTable\table
16  \let\MyEndtable\endtable
17  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
18
19 \newcommand{\TabBesEnd}{%
20  \let\table\MyTable
21  \let\endtable\MyEndtable}
22
23 \newcommand{\FigBesBeg}{%
24  \let\MyFigure\figure
25  \let\MyEndfigure\endfigure
26  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
27
28 \newcommand{\FigBesEnd}{%
29  \let\figure\MyFigure
30  \let\endfigure\MyEndfigure}
31
32 % enables calculation of values,
33 \usepackage{calc}
34
35 % provides special table cell alignments
36 \usepackage{dcolumn}
37
38 % increase the bottom float placement fraction
39 \renewcommand{\bottomfraction}{0.5}
40
41 % avoids that floats are placed before their
42 % corresponding section starts
43 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
44
45 % speed up the longtable calculation
46 \setcounter{LTchunksize}{100}
47
48 % if pdflatex is used
49 \usepackage{ifpdf}
50 \ifpdf
51
52 % set fonts for nicer pdf view
53 \IfFileExists{lmodern.sty}
54  {\usepackage{lmodern}} % if it exists
55  {% if it exists not
56   \usepackage[scaled=0.92]{helvet}
57   \usepackage{mathptmx}
58   \usepackage{courier}
59  } % end if it exists not
60
61 % link all cross references and URLs
62 % in pdf output
63  \usepackage[colorlinks=true, bookmarks, bookmarksnumbered, bookmarksopen, bookmarksopenlevel=1,
64   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,
65   pdfpagelayout=OneColumn, pdfnewwindow=true,
66   pdfstartview=XYZ, plainpages=false, pdfpagelabels,
67   pdfauthor={LyX Team}, pdftex,
68   pdftitle={LyX's Figure, Table, Floats, Notes, and Boxes manual},
69   pdfsubject={LyX-documentation about figures, tables, floats, notes, and boxes},
70   pdfkeywords={LyX, Tables, Figures, Floats, Boxes, Notes}]{hyperref}
71  
72 \else % if dvi or ps is produced
73
74  % link all cross references and URLs in DVI output
75  \usepackage[ps2pdf, colorlinks=true,
76   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue]{hyperref}
77
78 \fi % end if pdflatex is used
79
80 % that links to image floats jumps
81 % to the beginning of the float and 
82 % not to its caption
83 \usepackage[figure]{hypcap}
84
85 % used for colored tables
86 \@ifundefined{textcolor}
87  {\usepackage{color}}{}
88 \usepackage{colortbl}
89 \definecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
90 \definecolor{grisclaro}{gray}{0.8}
91
92 % used for multirows
93 \usepackage{multirow}
94 %\renewcommand{\multirowsetup}{\centering}
95
96 % used for book-style tables
97 \usepackage{booktabs}
98
99 % used to have extra space in table cells,
100 \setlength{\extrarowheight}{2pt}
101
102 % used for customized tables
103 % ---
104 \newcolumntype{M}[1]
105  {>{\centering\hspace{0pt}}m{#1}}
106
107 \newcolumntype{S}[2]
108  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
109
110 \newcolumntype{K}[1]
111  {>{\columncolor{#1}\hspace{0pt}}c}
112
113 \newcolumntype{V}{!{\vrule width 1.5pt}}
114
115 \newcolumntype{W}{!{\color{green}\vline}}
116 % ---
117
118 % To be able to enter the characters ° and · directly in LyX
119 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
120 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
121
122 % the pages of the TOC are numbered roman
123 % and a PDF-bookmark for the TOC is added
124 \pagenumbering{roman}
125 \let\myTOC\tableofcontents
126 \renewcommand{\tableofcontents}{%
127  \pdfbookmark[1]{Contenidos}{}
128  \myTOC
129  \cleardoublepage
130  \pagenumbering{arabic}}
131
132 % insert additional vertical space of
133 % 1.5 mm between footnotes
134 \let\myFoot\footnote
135 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
136
137 % enable algorithm floats to be referenced
138 \newfloat{Xalgorithm}{tbp}{loa}
139 \floatname{Xalgorithm}{Algoritmo}
140 \newcommand{\theHalgorithm}{\theHXalgorithm}
141 \renewenvironment{algorithm}[1][tbp]
142  {\begin{Xalgorithm}[#1]}{\end{Xalgorithm}}
143
144 % number algorithm floats within chapters
145 \numberwithin{Xalgorithm}{chapter}
146
147 % redefine the greyed out note
148 \renewenvironment{lyxgreyedout}
149  {\textcolor{blue}\bgroup}{\egroup}
150
151 % ------------------------------------
152 % used to check for needed LaTeX packages
153 \usepackage{ifthen}
154
155 % check for package arydshln
156 % used for tables with dashed lines
157 \newboolean{arydshln}
158 \IfFileExists{arydshln.sty}
159  {\usepackage{arydshln}
160   \setboolean{arydshln}{true}}
161  {\setboolean{arydshln}{false}}
162
163 % check for package marginnote
164 % used for margin notes
165 \newboolean{marginnote}
166 \IfFileExists{marginnote.sty}
167  {\usepackage{marginnote}
168   \let\marginpar\marginnote
169   \setboolean{marginnote}{true}}
170  {\setboolean{marginnote}{false}}
171 \end_preamble
172 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
173 \language spanish
174 \inputencoding auto
175 \font_roman default
176 \font_sans default
177 \font_typewriter default
178 \font_default_family default
179 \font_sc false
180 \font_osf false
181 \font_sf_scale 100
182 \font_tt_scale 100
183 \graphics default
184 \paperfontsize 12
185 \spacing single
186 \papersize default
187 \use_geometry false
188 \use_amsmath 2
189 \use_esint 0
190 \cite_engine basic
191 \use_bibtopic false
192 \paperorientation portrait
193 \secnumdepth 3
194 \tocdepth 3
195 \paragraph_separation skip
196 \defskip medskip
197 \quotes_language english
198 \papercolumns 1
199 \papersides 2
200 \paperpagestyle default
201 \bullet 1 1 34 -1
202 \bullet 2 2 35 -1
203 \bullet 3 2 7 -1
204 \tracking_changes false
205 \output_changes false
206 \author "usti" 
207 \author "IG,,," 
208 \author "Uwe Stöhr" 
209 \author "" 
210 \end_header
211
212 \begin_body
213
214 \begin_layout Title
215 Manual detallado de Figuras, Tablas, Flotantes, Notas y Cuadros en LyX
216 \end_layout
217
218 \begin_layout Author
219 por el Equipo LyX
220 \begin_inset Foot
221 status collapsed
222
223 \begin_layout Standard
224 \noindent
225 Si tienes comentarios o correcciones, por favor, envíalo a la lista de correo
226  de Documentación de LyX: 
227 \family typewriter
228
229 \begin_inset ERT
230 status collapsed
231
232 \begin_layout Standard
233
234
235 \backslash
236 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's es-ExtendedInsets manual}{
237 \end_layout
238
239 \end_inset
240
241 lyx-docs@lists.lyx.org
242 \begin_inset ERT
243 status collapsed
244
245 \begin_layout Standard
246
247 }
248 \end_layout
249
250 \end_inset
251
252
253 \end_layout
254
255 \end_inset
256
257
258 \begin_inset Note Note
259 status collapsed
260
261 \begin_layout Standard
262 autor original: Uwe Stöhr
263 \end_layout
264
265 \end_inset
266
267
268 \begin_inset Note Note
269 status collapsed
270
271 \begin_layout Standard
272 Traducción de: Ignacio García
273 \end_layout
274
275 \end_inset
276
277
278 \newline
279
280 \newline
281
282 \family sans
283 Versión 1.5.0-1
284 \end_layout
285
286 \begin_layout Standard
287 \begin_inset LatexCommand tableofcontents
288
289 \end_inset
290
291
292 \end_layout
293
294 \begin_layout Standard
295 \begin_inset Note Note
296 status open
297
298 \begin_layout Standard
299 Para exportar todas las partes de este documento a PDF, PS, o DVI, deben
300  estar instalados los paquetes LaTeX 
301 \series bold
302 arydshln
303 \series default
304  y 
305 \series bold
306 marginnote
307 \series default
308 .
309  Si no están instalados, también podrás exportar el documento, pero las
310  secciones en que dichos paquetes son necesarios no aparecen en la salida.
311 \end_layout
312
313 \begin_layout Standard
314 La última versión en PDF de este documento puede encontrarse aquí:
315 \series bold
316
317 \newline
318 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
319 \end_layout
320
321 \end_inset
322
323
324 \end_layout
325
326 \begin_layout Chapter
327 Figuras
328 \begin_inset LatexCommand label
329 name "cha:Figuras"
330
331 \end_inset
332
333
334 \begin_inset LatexCommand index
335 name "Figuras"
336
337 \end_inset
338
339
340 \begin_inset LatexCommand index
341 name "Gráficos|see{Figuras}"
342
343 \end_inset
344
345
346 \end_layout
347
348 \begin_layout Section
349 Diálogo Gráficos
350 \begin_inset LatexCommand index
351 name "Figuras ! Diálogo Gráficos"
352
353 \end_inset
354
355
356 \end_layout
357
358 \begin_layout Standard
359 Para insertar una imagen en un documento, sitúa el cursor en el lugar del
360  texto que desees y haz click en el icono 
361 \begin_inset Graphics
362         filename ../../images/dialog-show-new-inset_graphics.xpm
363         scale 85
364
365 \end_inset
366
367  o en el menú 
368 \family sans
369 Insertar\SpecialChar \menuseparator
370 Imagen\SpecialChar \ldots{}
371
372 \family default
373  Aparecerá un diálogo para escoger el archivo a cargar.
374  La imagen aparecerá en el archivo de salida exactamente en la misma posición
375  en la que la has colocado.
376 \end_layout
377
378 \begin_layout Standard
379 El diálogo Gráficos puede lanzarse en cualquier momento haciendo click-derecha
380  sobre una imagen.
381  Este diálogo tiene tres pestañas:
382 \end_layout
383
384 \begin_layout Description
385 Gráficos Aquí puedes elegir tu archivo gráfico y ajustar separadamente su
386  presentación en LyX y en la salida.
387  En el apéndice\InsetSpace ~
388
389 \begin_inset LatexCommand ref
390 reference "cha:Unidades-disponibles-en"
391
392 \end_inset
393
394  se detallan las unidades disponibles para el tamaño del gráfico.
395 \newline
396 Puedes girar
397  los gráficos en el sentido de las agujas de reloj estableciendo un ángulo
398  y un origen de rotación.
399  La imagen también gira en LyX.
400 \newline
401 Las imágenes se pueden abrir con un programa
402  de tu elección pulsando el botón 
403 \family sans
404 Editar
405 \family default
406 .
407  Los programas visor y editor para cada formato de imagen se pueden establecer
408  en la configuración de los formatos de archivo de las preferencias de LyX.
409 \end_layout
410
411 \begin_layout Description
412 Recorte Alternativamente al escalado, es posible establecer las coordenadas
413  de la imagen para ajustar su altura y anchura en la salida.
414  Además, las coordenadas se pueden calcular automáticamente pinchando el
415  botón 
416 \family sans
417 Obtener\InsetSpace ~
418 de\InsetSpace ~
419 archivo
420 \family default
421 .
422  El botón 
423 \family sans
424 Recortar\InsetSpace ~
425 al\InsetSpace ~
426 cuadro\InsetSpace ~
427 delimitador
428 \family default
429  imprimirá sólo la región de la imagen comprendida en las coordenadas introducid
430 as.
431  Normalmente no necesitarás preocuparte por esto y puedes ignorar esta pestaña.
432 \end_layout
433
434 \begin_layout Description
435 Opciones\InsetSpace ~
436 extra En esta pestaña puedes modificar la apariencia de la imagen
437  en LyX, y poner la imagen como subfigura de una figura flotante con su
438  propio título.Las subfiguras se explican en la sección\InsetSpace ~
439
440 \begin_inset LatexCommand ref
441 reference "sec:Figuras-Flotantes"
442
443 \end_inset
444
445 .
446 \newline
447 Los expertos en LaTeX pueden especificar aquí opciones LaTeX adicionales.
448 \newline
449 La
450  opción 
451 \family sans
452 Modo\InsetSpace ~
453 borrador
454 \family default
455  hace que en la salida se muestre sólo un marco con el tamaño de la imagen.
456 \newline
457 La
458  opción 
459 \family sans
460 No\InsetSpace ~
461 descomprimir\InsetSpace ~
462 al\InsetSpace ~
463 exportar
464 \family default
465  sólo afecta a los gráficos EPS comprimidos, p.\InsetSpace \thinspace{}
466 e.\InsetSpace ~
467
468 \emph on
469 x.eps.gz
470 \emph default
471 .
472  Si se usa esta opción, las imágenes no serán descomprimidas al exportar,
473  puesto que LaTeX puede manejarlas como están.
474 \newline
475 Los gráficos EPS comprimidos
476  sirven para ahorrar espacio de disco si se utiliza PostScript como formato
477  de salida, ver apéndice\InsetSpace ~
478
479 \begin_inset LatexCommand ref
480 reference "sec:PostScript"
481
482 \end_inset
483
484 .
485  Para comprimir gráficos EPS, usa los siguientes comandos en un UNIX-shell
486  o en consola de Windows:
487 \newline
488
489 \series bold
490 gzip x.eps
491 \series default
492
493 \newline
494
495 \series bold
496 zgrep %%Bounding x.eps.gz > x.eps.bb
497 \series default
498
499 \newline
500 El segundo comando crea un archivo de cuadro delimitador 
501 \begin_inset Quotes eld
502 \end_inset
503
504 x.eps.bb
505 \begin_inset Quotes erd
506 \end_inset
507
508  que necesita LaTeX para gráficos comprimidos.
509 \end_layout
510
511 \begin_layout Standard
512 \begin_inset VSpace bigskip
513 \end_inset
514
515
516 \end_layout
517
518 \begin_layout Standard
519 Esto es un ejemplo de imagen en formato EPS
520 \begin_inset Foot
521 status collapsed
522
523 \begin_layout Standard
524 Los formatos de imagen se explica en el sección\InsetSpace ~
525
526 \begin_inset LatexCommand ref
527 reference "sec:Formatos-de-imagen"
528
529 \end_inset
530
531 .
532 \end_layout
533
534 \end_inset
535
536  en un párrafo separado centrado horizontalmente:
537 \end_layout
538
539 \begin_layout Standard
540 \align center
541 \begin_inset Graphics
542         filename ../clipart/mobius.eps
543         display color
544         scale 70
545         rotateOrigin center
546
547 \end_inset
548
549
550 \end_layout
551
552 \begin_layout Standard
553 Esta es la misma imagen pero en modo borrador:
554 \end_layout
555
556 \begin_layout Standard
557 \align center
558 \begin_inset Graphics
559         filename ../clipart/mobius.eps
560         display color
561         scale 70
562         draft
563         rotateOrigin center
564
565 \end_inset
566
567
568 \end_layout
569
570 \begin_layout Section
571 Figuras Flotantes
572 \begin_inset LatexCommand label
573 name "sec:Figuras-Flotantes"
574
575 \end_inset
576
577
578 \begin_inset LatexCommand index
579 name "Flotantes ! Figuras Flotantes"
580
581 \end_inset
582
583
584 \begin_inset LatexCommand index
585 name "Figuras ! Flotantes"
586
587 \end_inset
588
589
590 \end_layout
591
592 \begin_layout Standard
593 Para información general sobre flotantes, echa una ojeada a la sección\InsetSpace ~
594
595 \begin_inset LatexCommand ref
596 reference "sec:IntroducciónFlotantes"
597
598 \end_inset
599
600 .
601 \end_layout
602
603 \begin_layout Standard
604 El botón 
605 \begin_inset Graphics
606         filename ../../images/float-insert_figure.xpm
607         scale 85
608
609 \end_inset
610
611  y el menú 
612 \family sans
613 Insertar\SpecialChar \menuseparator
614 Flotante\SpecialChar \menuseparator
615 Figura
616 \family default
617  insertan un flotante con la etiqueta 
618 \begin_inset Quotes eld
619 \end_inset
620
621 Figura #:
622 \begin_inset Quotes erd
623 \end_inset
624
625  (# es el número actual).
626  La imagen se puede insertar sobre el encabezado, como en la figura\InsetSpace ~
627
628 \begin_inset LatexCommand ref
629 reference "fig:kill-plat"
630
631 \end_inset
632
633 , o bajo el encabezado, como en la figura\InsetSpace ~
634
635 \begin_inset LatexCommand ref
636 reference "fig:escher"
637
638 \end_inset
639
640 .
641  Más información sobre ubicación de encabezados en la sección\InsetSpace ~
642
643 \begin_inset LatexCommand ref
644 reference "sec:Colocación-de-Encabezados"
645
646 \end_inset
647
648 .
649 \end_layout
650
651 \begin_layout Standard
652 \begin_inset Float figure
653 wide false
654 sideways false
655 status open
656
657 \begin_layout Standard
658 \align center
659 \begin_inset Graphics
660         filename ../clipart/platypus.eps
661         display color
662         width 50col%
663         rotateOrigin center
664
665 \end_inset
666
667
668 \end_layout
669
670 \begin_layout Standard
671 \begin_inset Caption
672
673 \begin_layout Standard
674 \begin_inset LatexCommand label
675 name "fig:kill-plat"
676
677 \end_inset
678
679 Un platypus muy distorsionado en un flotante.
680 \end_layout
681
682 \end_inset
683
684
685 \end_layout
686
687 \end_inset
688
689
690 \end_layout
691
692 \begin_layout Standard
693 \begin_inset Float figure
694 wide false
695 sideways false
696 status open
697
698 \begin_layout Standard
699 \begin_inset Caption
700
701 \begin_layout Standard
702 \begin_inset LatexCommand label
703 name "fig:escher"
704
705 \end_inset
706
707 M.C.
708  Escher en ácido.
709 \end_layout
710
711 \end_inset
712
713
714 \end_layout
715
716 \begin_layout Standard
717 \align center
718 \begin_inset Graphics
719         filename ../clipart/escher-lsd.eps
720         display color
721         scale 80
722         rotateOrigin center
723
724 \end_inset
725
726
727 \end_layout
728
729 \end_inset
730
731
732 \end_layout
733
734 \begin_layout Standard
735 \begin_inset LatexCommand index
736 name "Referencias ! a Figuras"
737
738 \end_inset
739
740 Las figuras\InsetSpace ~
741
742 \begin_inset LatexCommand ref
743 reference "fig:kill-plat"
744
745 \end_inset
746
747  y 
748 \begin_inset LatexCommand ref
749 reference "fig:escher"
750
751 \end_inset
752
753  son ejemplos de figuras con referencias cruzadas.
754  Las figuras pueden tener referencias cruzadas en el documento mediante
755  referencia a su etiqueta.
756  Para hacerlo inserta una etiqueta en el encabezado usando el menú 
757 \family sans
758 Insertar\SpecialChar \menuseparator
759 Etiqueta
760 \family default
761  o el botón 
762 \begin_inset Graphics
763         filename ../../images/label-insert.xpm
764         scale 85
765
766 \end_inset
767
768 .
769  Ahora puedes referirte a la etiqueta usando el menú 
770 \family sans
771 Insertar\SpecialChar \menuseparator
772 Referencia\InsetSpace ~
773 cruzada
774 \family default
775  o el botón 
776 \begin_inset Graphics
777         filename ../../images/dialog-show-new-inset_ref.xpm
778         scale 85
779
780 \end_inset
781
782 .
783  Es importante emplear referencias a flotantes, mejor que alusiones vagas
784  como 
785 \begin_inset Quotes eld
786 \end_inset
787
788 la figura de arriba
789 \begin_inset Quotes erd
790 \end_inset
791
792 , porque como LaTeX recolocará los flotantes en el documento final, podría
793  no quedar 
794 \begin_inset Quotes eld
795 \end_inset
796
797 arriba
798 \begin_inset Quotes erd
799 \end_inset
800
801  precisamente.
802 \newline
803 Las referencias se explican con detalle en la sección\InsetSpace ~
804
805 \begin_inset LatexCommand ref
806 reference "sec:Referencias-a-Flotantes"
807
808 \end_inset
809
810 .
811 \end_layout
812
813 \begin_layout Standard
814 Normalmente sólo se inserta una imagen en un flotante, pero a veces podríamos
815  querer poner dos imágenes con subtítulos separados.
816  Esto es posible mediante la pestaña 
817 \family sans
818 Opciones\InsetSpace ~
819 extra
820 \family default
821  del diálogo gráficos.
822  Elije la opción 
823 \family sans
824 Subfigura
825 \family default
826  e introduce el subtítulo en la casilla 
827 \family sans
828 Descripción
829 \family default
830 .
831  Observa que sólo el título principal del encabezado del flotante se añade
832  a la Lista de Figuras.
833 \newline
834 Las referencias a las subfiguras se explican en la
835  sección\InsetSpace ~
836
837 \begin_inset LatexCommand ref
838 reference "sub:Referencias-a-Subfiguras"
839
840 \end_inset
841
842 .
843 \end_layout
844
845 \begin_layout Standard
846 La figura\InsetSpace ~
847
848 \begin_inset LatexCommand ref
849 reference "fig:Dos-imágenes-distorsionadas"
850
851 \end_inset
852
853  es un ejemplo de figura flotante con dos imágenes una junto a otra.
854  También se pueden poner una sobre otra.
855 \end_layout
856
857 \begin_layout Standard
858 \begin_inset Float figure
859 wide false
860 sideways false
861 status open
862
863 \begin_layout Standard
864
865 \hfill
866
867 \begin_inset Graphics
868         filename ../clipart/escher-lsd.eps
869         width 45col%
870         subcaption
871         subcaptionText "Estructura indefinible"
872
873 \end_inset
874
875
876 \hfill
877
878 \begin_inset Graphics
879         filename ../clipart/platypus.eps
880         lyxscale 60
881         width 45col%
882         subcaption
883         subcaptionText "\label{fig:Platypus} Platypus"
884
885 \end_inset
886
887
888 \hfill
889
890 \end_layout
891
892 \begin_layout Standard
893 \begin_inset Caption
894
895 \begin_layout Standard
896 \begin_inset LatexCommand label
897 name "fig:Dos-imágenes-distorsionadas"
898
899 \end_inset
900
901 Dos imágenes distorsionadas.
902 \end_layout
903
904 \end_inset
905
906
907 \end_layout
908
909 \end_inset
910
911
912 \end_layout
913
914 \begin_layout Section
915 Formatos de Imagen
916 \begin_inset LatexCommand label
917 name "sec:Formatos-de-imagen"
918
919 \end_inset
920
921
922 \begin_inset LatexCommand index
923 name "Formatos de Imagen"
924
925 \end_inset
926
927
928 \begin_inset LatexCommand index
929 name "Figuras ! Formatos de Imagen"
930
931 \end_inset
932
933
934 \end_layout
935
936 \begin_layout Standard
937 Puedes insertar imágenes en cualquier formato.
938  Pero como se explica en el apéndice\InsetSpace ~
939
940 \begin_inset LatexCommand ref
941 reference "cha:Formatos-de-Archivos-de-Salida"
942
943 \end_inset
944
945 , cada formato de archivo del documento de salida permite solo ciertos formatos
946  de archivo de imagen.
947  Por eso LyX usa el programa 
948 \family sans
949 Imagemagick
950 \family default
951  en segundo plano para convertir imágenes al formato adecuado.
952  Para aumentar el rendimiento evitando estas conversiones, puedes usar sólo
953  los formatos de imagen admitidos en el formato de archivo de salida.
954  Los formatos de salida se explican en el apéndice\InsetSpace ~
955
956 \begin_inset LatexCommand ref
957 reference "cha:Formatos-de-Archivos-de-Salida"
958
959 \end_inset
960
961 .
962 \end_layout
963
964 \begin_layout Standard
965 Como en el caso de las fuentes, hay dos tipos de formatos de imagen:
966 \end_layout
967
968 \begin_layout Description
969 Imágenes\InsetSpace ~
970 Mapa\InsetSpace ~
971 de\InsetSpace ~
972 bits (Bitmap) consisten en valores de píxel, generalmente
973  comprimidos.
974  Por tanto no son totalmente escalables y se ven pixeladas a valores altos
975  de zoom.
976  Formatos de imágenes en bitmap bien conocidos son 
977 \begin_inset Quotes eld
978 \end_inset
979
980 Graphics Interchange Format
981 \begin_inset Quotes erd
982 \end_inset
983
984  (GIF, extensión 
985 \begin_inset Quotes eld
986 \end_inset
987
988 .gif
989 \begin_inset Quotes erd
990 \end_inset
991
992 )
993 \begin_inset LatexCommand index
994 name "GIF|see{Formatos de Imagen}"
995
996 \end_inset
997
998
999 \begin_inset Quotes eld
1000 \end_inset
1001
1002 Portable Network Graphics
1003 \begin_inset Quotes erd
1004 \end_inset
1005
1006  (PNG, extensión 
1007 \begin_inset Quotes eld
1008 \end_inset
1009
1010 .png
1011 \begin_inset Quotes erd
1012 \end_inset
1013
1014 )
1015 \begin_inset LatexCommand index
1016 name "PNG|see{Formatos de Imagen}"
1017
1018 \end_inset
1019
1020 , y 
1021 \begin_inset Quotes eld
1022 \end_inset
1023
1024 Joint Photographic Experts Group
1025 \begin_inset Quotes erd
1026 \end_inset
1027
1028  (JPG, extensión 
1029 \begin_inset Quotes eld
1030 \end_inset
1031
1032 .jpg
1033 \begin_inset Quotes erd
1034 \end_inset
1035
1036  o 
1037 \begin_inset Quotes eld
1038 \end_inset
1039
1040 .jpeg
1041 \begin_inset Quotes erd
1042 \end_inset
1043
1044 )
1045 \begin_inset LatexCommand index
1046 name "JPG|see{Formatos de Imagen}"
1047
1048 \end_inset
1049
1050 .
1051 \end_layout
1052
1053 \begin_layout Description
1054 Imágenes\InsetSpace ~
1055 vectoriales consisten en vectores y por tanto pueden escalarse a
1056  cualquier tamaño sin pérdidas.
1057  La posibilidad de escalado hace falta para crear presentaciones, porque
1058  éstas siempre son escaladas por el proyector.
1059  El escalado también es útil en los documentoos en línea para permitir el
1060  zoom en diagramas.
1061 \newline
1062 Formatos de imagen escalables pueden ser 
1063 \begin_inset Quotes eld
1064 \end_inset
1065
1066 Scalable Vector Graphics
1067 \begin_inset Quotes erd
1068 \end_inset
1069
1070  (SVG, extensión 
1071 \begin_inset Quotes eld
1072 \end_inset
1073
1074 .svg
1075 \begin_inset Quotes erd
1076 \end_inset
1077
1078 )
1079 \begin_inset LatexCommand index
1080 name "SVG|see{Formatos de Imagen}"
1081
1082 \end_inset
1083
1084
1085 \begin_inset Quotes eld
1086 \end_inset
1087
1088 Encapsulated PostScript
1089 \begin_inset Quotes erd
1090 \end_inset
1091
1092  (EPS, extensión 
1093 \begin_inset Quotes eld
1094 \end_inset
1095
1096 .eps
1097 \begin_inset Quotes erd
1098 \end_inset
1099
1100 )
1101 \begin_inset LatexCommand index
1102 name "EPS|see{Formatos de Imagen}"
1103
1104 \end_inset
1105
1106
1107 \begin_inset Quotes eld
1108 \end_inset
1109
1110 Portable Document Format
1111 \begin_inset Quotes erd
1112 \end_inset
1113
1114  (PDF, extensión 
1115 \begin_inset Quotes eld
1116 \end_inset
1117
1118 .pdf
1119 \begin_inset Quotes erd
1120 \end_inset
1121
1122 )
1123 \begin_inset LatexCommand index
1124 name "PDF|see{Formatos de Imagen}"
1125
1126 \end_inset
1127
1128 , y 
1129 \begin_inset Quotes eld
1130 \end_inset
1131
1132 Windows Metafile
1133 \begin_inset Quotes erd
1134 \end_inset
1135
1136  (WMF, extensión 
1137 \begin_inset Quotes eld
1138 \end_inset
1139
1140 .wmf
1141 \begin_inset Quotes erd
1142 \end_inset
1143
1144 )
1145 \begin_inset LatexCommand index
1146 name "WMF|see{Formatos de Imagen}"
1147
1148 \end_inset
1149
1150 .
1151  Escribimos 
1152 \begin_inset Quotes eld
1153 \end_inset
1154
1155 pueden ser
1156 \begin_inset Quotes erd
1157 \end_inset
1158
1159 , porque se puede convertir cualquier imagen bitmap a PDF o EPS y el resultado
1160  será todavía una imagen bitmap.
1161  En estos casos sólo se añade una cabecera con las propiedades de la imagen
1162  a la imagen original
1163 \begin_inset Foot
1164 status open
1165
1166 \begin_layout Standard
1167 En el caso de PDF, además se comprime la imagen original.
1168 \end_layout
1169
1170 \end_inset
1171
1172 .
1173  Por ejemplo, los archivos PDF generados por 
1174 \family sans
1175 Adobe Photoshop
1176 \family default
1177  son imágenes bitmap.
1178 \end_layout
1179
1180 \begin_layout Standard
1181 Normalmente no es posible convertir una imagen bitmap a escalable, sólo
1182  viceversa.
1183  Sólo los formatos de imagen PDF y EPS pueden empotrarse directamente en
1184  archivos de salida PDF y PostScript, respectivamente.
1185  Las imágenes SVG y WMF son recalculadas a bitmaps cuando se genera el archivo
1186  de salida porque actualmente no hay convertidores adecuados WMF/SVG 
1187 \begin_inset Formula $\to$
1188 \end_inset
1189
1190  PDF/EPS.
1191 \end_layout
1192
1193 \begin_layout Chapter
1194 Tablas
1195 \begin_inset LatexCommand label
1196 name "cha:Tablas"
1197
1198 \end_inset
1199
1200
1201 \begin_inset LatexCommand index
1202 name "Tablas"
1203
1204 \end_inset
1205
1206
1207 \end_layout
1208
1209 \begin_layout Section
1210 Introducción
1211 \begin_inset LatexCommand index
1212 name "Tablas ! Introducción"
1213
1214 \end_inset
1215
1216
1217 \end_layout
1218
1219 \begin_layout Standard
1220 Puede insertarse una tabla mediante el botón
1221 \begin_inset Graphics
1222         filename ../../images/tabular-insert.xpm
1223         scale 85
1224
1225 \end_inset
1226
1227  o el menú 
1228 \family sans
1229 Insertar\SpecialChar \menuseparator
1230 Tabla
1231 \family default
1232 .
1233  Aparece un diálogo en el que se pide el número de filas y columnas.
1234  Por defecto, la tabla tiene líneas que enmarcan cada celda y la primera
1235  fila aparece separada por una línea doble: la línea inferior de la primera
1236  fila y la línea superior de la segunda fila.
1237  Ejemplo de tabla:
1238 \end_layout
1239
1240 \begin_layout Standard
1241 \align center
1242 \begin_inset Tabular
1243 <lyxtabular version="3" rows="4" columns="4">
1244 <features>
1245 <column alignment="center" valignment="top" leftline="true" width="0">
1246 <column alignment="center" valignment="top" leftline="true" width="0pt">
1247 <column alignment="center" valignment="top" leftline="true" width="0in">
1248 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1249 <row topline="true" bottomline="true">
1250 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1251 \begin_inset Text
1252
1253 \begin_layout Standard
1254
1255 \end_layout
1256
1257 \end_inset
1258 </cell>
1259 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1260 \begin_inset Text
1261
1262 \begin_layout Standard
1263
1264 \family roman
1265 \series medium
1266 \shape up
1267 \size normal
1268 \emph off
1269 \bar no
1270 \noun off
1271 \color none
1272 1
1273 \end_layout
1274
1275 \end_inset
1276 </cell>
1277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1278 \begin_inset Text
1279
1280 \begin_layout Standard
1281 2
1282 \end_layout
1283
1284 \end_inset
1285 </cell>
1286 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1287 \begin_inset Text
1288
1289 \begin_layout Standard
1290 3
1291 \end_layout
1292
1293 \end_inset
1294 </cell>
1295 </row>
1296 <row topline="true">
1297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1298 \begin_inset Text
1299
1300 \begin_layout Standard
1301
1302 \family roman
1303 \series medium
1304 \shape up
1305 \size normal
1306 \emph off
1307 \bar no
1308 \noun off
1309 \color none
1310 A
1311 \end_layout
1312
1313 \end_inset
1314 </cell>
1315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1316 \begin_inset Text
1317
1318 \begin_layout Standard
1319
1320 \end_layout
1321
1322 \end_inset
1323 </cell>
1324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1325 \begin_inset Text
1326
1327 \begin_layout Standard
1328
1329 \end_layout
1330
1331 \end_inset
1332 </cell>
1333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1334 \begin_inset Text
1335
1336 \begin_layout Standard
1337
1338 \end_layout
1339
1340 \end_inset
1341 </cell>
1342 </row>
1343 <row topline="true">
1344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1345 \begin_inset Text
1346
1347 \begin_layout Standard
1348
1349 \family roman
1350 \series medium
1351 \shape up
1352 \size normal
1353 \emph off
1354 \bar no
1355 \noun off
1356 \color none
1357 B
1358 \end_layout
1359
1360 \end_inset
1361 </cell>
1362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1363 \begin_inset Text
1364
1365 \begin_layout Standard
1366
1367 \end_layout
1368
1369 \end_inset
1370 </cell>
1371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1372 \begin_inset Text
1373
1374 \begin_layout Standard
1375
1376 \size normal
1377 \noun off
1378 \color none
1379  
1380 \end_layout
1381
1382 \end_inset
1383 </cell>
1384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1385 \begin_inset Text
1386
1387 \begin_layout Standard
1388
1389 \end_layout
1390
1391 \end_inset
1392 </cell>
1393 </row>
1394 <row topline="true" bottomline="true">
1395 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1396 \begin_inset Text
1397
1398 \begin_layout Standard
1399
1400 \family roman
1401 \series medium
1402 \shape up
1403 \size normal
1404 \emph off
1405 \bar no
1406 \noun off
1407 \color none
1408 C
1409 \end_layout
1410
1411 \end_inset
1412 </cell>
1413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1414 \begin_inset Text
1415
1416 \begin_layout Standard
1417
1418 \end_layout
1419
1420 \end_inset
1421 </cell>
1422 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1423 \begin_inset Text
1424
1425 \begin_layout Standard
1426
1427 \end_layout
1428
1429 \end_inset
1430 </cell>
1431 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1432 \begin_inset Text
1433
1434 \begin_layout Standard
1435
1436 \end_layout
1437
1438 \end_inset
1439 </cell>
1440 </row>
1441 </lyxtabular>
1442
1443 \end_inset
1444
1445
1446 \end_layout
1447
1448 \begin_layout Section
1449 Diálogo Tablas
1450 \begin_inset LatexCommand index
1451 name "Tablas ! Diálogo"
1452
1453 \end_inset
1454
1455
1456 \end_layout
1457
1458 \begin_layout Standard
1459 Una tabla se puede cambiar mediante el cuadro de diálogo que aparece al
1460  pinchar sobre ella con el botón derecho del ratón.
1461  Se pueden ajustar los parámetros de la celda y fila/columna en la que se
1462  encuentra el cursor.
1463  La mayoría de opciones también trabajan sobre una selección de celdas,
1464  de filas o de columnas.
1465  Observa que hay que diferenciar entre seleccionar una celda o seleccionar
1466  su 
1467 \emph on
1468 contenido
1469 \emph default
1470 .
1471  En el cuadro de diálogo aparecen las siguientes pestañas:
1472 \end_layout
1473
1474 \begin_layout Description
1475
1476 \family sans
1477 Configuración\InsetSpace ~
1478 de\InsetSpace ~
1479 Tabla
1480 \family default
1481  Aquí puedes establecer la alineación horizontal para la fila actual y la
1482  anchura de la columna actual.
1483  Una vez puesta la anchura puedes ajustar también el alineamiento vertical.
1484  Una anchura determinada permite tener saltos de línea y distintos párrafos
1485  de texto, ver sección \InsetSpace ~
1486
1487 \begin_inset LatexCommand ref
1488 reference "sub:Líneas-Múltiples-en"
1489
1490 \end_inset
1491
1492 .
1493  Si no estableces anchura, la columna será tan ancha como el contenido de
1494  la celda más ancha.
1495 \newline
1496 Además, puedes marcar una o más celdas de una fila como
1497  una celda multicolumna, ver sección\InsetSpace ~
1498
1499 \begin_inset LatexCommand ref
1500 reference "sub:Multicolumnas"
1501
1502 \end_inset
1503
1504 .
1505 \newline
1506 Las casillas de giro rotan la celda actual, una selección o toda la tabla
1507  90º en el sentido de las agujas del reloj.
1508  La rotación no se ve en LyX, sí en la salida.
1509 \newline
1510
1511 \begin_inset Note Greyedout
1512 status open
1513
1514 \begin_layout Standard
1515
1516 \series bold
1517 Nota:
1518 \series default
1519  No todos los visores DVI pueden mostrar rotaciones.
1520 \end_layout
1521
1522 \end_inset
1523
1524
1525 \newline
1526 También es posible introducir argumentos LaTeX necesarios para formatos
1527  especiales, ver sección\InsetSpace ~
1528
1529 \begin_inset LatexCommand ref
1530 reference "sub:Cálculos-en-Multicolumnas"
1531
1532 \end_inset
1533
1534  y 
1535 \begin_inset LatexCommand ref
1536 reference "sec:Tablas-Coloreadas"
1537
1538 \end_inset
1539
1540 .
1541 \end_layout
1542
1543 \begin_layout Description
1544
1545 \family sans
1546 Bordes
1547 \family default
1548  En esta pestaña puedes añadir y quitar bordes para la fila/columna actual.
1549 \end_layout
1550
1551 \begin_layout Description
1552
1553 \family sans
1554 Tabla\InsetSpace ~
1555 Larga
1556 \family default
1557  Para hacer 
1558 \emph on
1559 tablas largas
1560 \emph default
1561  que pueden extenderse por varias páginas.
1562  La sección\InsetSpace ~
1563
1564 \begin_inset LatexCommand ref
1565 reference "sec:Tablas-Largas"
1566
1567 \end_inset
1568
1569  describe su uso en detalle.
1570 \end_layout
1571
1572 \begin_layout Standard
1573 Si la barra de herramientas de tabla está abierta, puedes mover el cursor
1574  con las teclas de flecha de celda en celda y la propiedad de la celda actual
1575  aparecerá inmediatamente en el diálogo.
1576 \end_layout
1577
1578 \begin_layout Section
1579 Barra de Herramientas de Tablas
1580 \begin_inset LatexCommand index
1581 name "Tablas ! Barra de Herramientas"
1582
1583 \end_inset
1584
1585
1586 \end_layout
1587
1588 \begin_layout Standard
1589 La barra de herramientas de tabla es una alternativa al cuadro de diálogo
1590  para cambiar las tablas de manera más rápida.
1591  Normalmente debería aparecer en la parte inferior de la ventana principal
1592  de LyX cuando el cursor está dentro de una tabla.
1593  En cualquier momento se puede presentar esta barra pinchando con el botón
1594  derecho del ratón en cualquier punto de la barra principal de menú.
1595 \end_layout
1596
1597 \begin_layout Standard
1598 La barra de herramientas tiene los siguientes iconos:
1599 \end_layout
1600
1601 \begin_layout Labeling
1602 \labelwidthstring 00.00.0000
1603 \begin_inset Graphics
1604         filename ../../images/tabular-feature_append-row.xpm
1605
1606 \end_inset
1607
1608  añade una fila bajo la celda actual o selección
1609 \end_layout
1610
1611 \begin_layout Labeling
1612 \labelwidthstring 00.00.0000
1613 \begin_inset Graphics
1614         filename ../../images/tabular-feature_append-column.xpm
1615
1616 \end_inset
1617
1618  añade una columna a la derecha de la celda actual o selección
1619 \end_layout
1620
1621 \begin_layout Labeling
1622 \labelwidthstring 00.00.0000
1623 \begin_inset Graphics
1624         filename ../../images/tabular-feature_delete-row.xpm
1625
1626 \end_inset
1627
1628  borra la fila actual o selección
1629 \end_layout
1630
1631 \begin_layout Labeling
1632 \labelwidthstring 00.00.0000
1633 \begin_inset Graphics
1634         filename ../../images/tabular-feature_delete-column.xpm
1635
1636 \end_inset
1637
1638  borra la columna actual o selección
1639 \end_layout
1640
1641 \begin_layout Labeling
1642 \labelwidthstring 00.00.0000
1643 \begin_inset Graphics
1644         filename ../../images/tabular-feature_toggle-line-top.xpm
1645
1646 \end_inset
1647
1648  añade una línea sobre la celda/fila actual o la selección
1649 \end_layout
1650
1651 \begin_layout Labeling
1652 \labelwidthstring 00.00.0000
1653 \begin_inset Graphics
1654         filename ../../images/tabular-feature_toggle-line-bottom.xpm
1655
1656 \end_inset
1657
1658  añade una línea bajo la celda/fila actual o la selección
1659 \end_layout
1660
1661 \begin_layout Labeling
1662 \labelwidthstring 00.00.0000
1663 \begin_inset Graphics
1664         filename ../../images/tabular-feature_toggle-line-left.xpm
1665
1666 \end_inset
1667
1668  añade una línea a la izquierda de la celda/fila actual o la selección
1669 \end_layout
1670
1671 \begin_layout Labeling
1672 \labelwidthstring 00.00.0000
1673 \begin_inset Graphics
1674         filename ../../images/tabular-feature_toggle-line-right.xpm
1675
1676 \end_inset
1677
1678  añade una línea a la derecha de la celda/fila actual o la selección
1679 \end_layout
1680
1681 \begin_layout Labeling
1682 \labelwidthstring 00.00.0000
1683 \begin_inset Graphics
1684         filename ../../images/tabular-feature_set-all-lines.xpm
1685
1686 \end_inset
1687
1688  añade líneas alrededor de la celda actual o seleccionadas - si la celda
1689  actual no es multicolumna esto afecta también a la fila y columna actuales
1690 \end_layout
1691
1692 \begin_layout Labeling
1693 \labelwidthstring 00.00.0000
1694 \begin_inset Graphics
1695         filename ../../images/tabular-feature_unset-all-lines.xpm
1696
1697 \end_inset
1698
1699  borra todas las líneas de la celda o celdas seleccionadas - si la celda
1700  actual no es multicolumna esto afecta también a la fila y columna actuales
1701 \end_layout
1702
1703 \begin_layout Labeling
1704 \labelwidthstring 00.00.0000
1705 \begin_inset Graphics
1706         filename ../../images/tabular-feature_align-left.xpm
1707
1708 \end_inset
1709
1710  alinea a la izquierda el contenido de la celda / columna
1711 \end_layout
1712
1713 \begin_layout Labeling
1714 \labelwidthstring 00.00.0000
1715 \begin_inset Graphics
1716         filename ../../images/tabular-feature_align-center.xpm
1717
1718 \end_inset
1719
1720  centra el contenido de la celda / columna horizontalmente
1721 \end_layout
1722
1723 \begin_layout Labeling
1724 \labelwidthstring 00.00.0000
1725 \begin_inset Graphics
1726         filename ../../images/tabular-feature_align-right.xpm
1727
1728 \end_inset
1729
1730  alinea a la derecha el contenido de la celda / columna
1731 \end_layout
1732
1733 \begin_layout Labeling
1734 \labelwidthstring 00.00.0000
1735 \begin_inset Graphics
1736         filename ../../images/tabular-feature_valign-top.xpm
1737
1738 \end_inset
1739
1740  alinea arriba el contenido de la celda
1741 \end_layout
1742
1743 \begin_layout Labeling
1744 \labelwidthstring 00.00.0000
1745 \begin_inset Graphics
1746         filename ../../images/tabular-feature_valign-middle.xpm
1747
1748 \end_inset
1749
1750  centra verticalmente el contenido de la celda
1751 \end_layout
1752
1753 \begin_layout Labeling
1754 \labelwidthstring 00.00.0000
1755 \begin_inset Graphics
1756         filename ../../images/tabular-feature_valign-bottom.xpm
1757
1758 \end_inset
1759
1760  alinea abajo el contenido de la celda
1761 \end_layout
1762
1763 \begin_layout Labeling
1764 \labelwidthstring 00.00.0000
1765 \begin_inset Graphics
1766         filename ../../images/tabular-feature_set-rotate-cell.xpm
1767
1768 \end_inset
1769
1770  gira la celda o selección 90° como las agujas de reloj
1771 \end_layout
1772
1773 \begin_layout Labeling
1774 \labelwidthstring 00.00.0000
1775 \begin_inset Graphics
1776         filename ../../images/tabular-feature_set-rotate-tabular.xpm
1777
1778 \end_inset
1779
1780  gira toda la tabla 90° como agujas del reloj
1781 \end_layout
1782
1783 \begin_layout Labeling
1784 \labelwidthstring 00.00.0000
1785 \begin_inset Graphics
1786         filename ../../images/tabular-feature_multicolumn.xpm
1787
1788 \end_inset
1789
1790  establece la celda actual o selección como multicolumna
1791 \end_layout
1792
1793 \begin_layout Section
1794 Menú Editar Tabla
1795 \begin_inset LatexCommand index
1796 name "Tablas ! Menú Editar"
1797
1798 \end_inset
1799
1800
1801 \end_layout
1802
1803 \begin_layout Standard
1804 Además del diálogo y la barra de herramientas, el menú 
1805 \family sans
1806 Editar\SpecialChar \menuseparator
1807 Tabla
1808 \family default
1809  permite añadir y borrar bordes para la fila/columna actual y establecer
1810  la selección como multicolumna.
1811  El menú sólo está disponible si el cursor está en la tabla.
1812 \end_layout
1813
1814 \begin_layout Section
1815 Tablas Flotantes
1816 \begin_inset LatexCommand label
1817 name "sec:Tablas-Flotantes"
1818
1819 \end_inset
1820
1821
1822 \begin_inset LatexCommand index
1823 name "Flotantes ! Tablas"
1824
1825 \end_inset
1826
1827
1828 \begin_inset LatexCommand index
1829 name "Tablas ! Flotantes"
1830
1831 \end_inset
1832
1833
1834 \end_layout
1835
1836 \begin_layout Standard
1837 Para una explicación general sobre flotantes, echa un vistazo a la sección\InsetSpace ~
1838
1839 \begin_inset LatexCommand ref
1840 reference "sec:IntroducciónFlotantes"
1841
1842 \end_inset
1843
1844 .
1845 \end_layout
1846
1847 \begin_layout Standard
1848 \begin_inset Float table
1849 placement h
1850 wide false
1851 sideways false
1852 status open
1853
1854 \begin_layout Standard
1855 \begin_inset Caption
1856
1857 \begin_layout Standard
1858 \begin_inset LatexCommand label
1859 name "tab:una tabla flotante"
1860
1861 \end_inset
1862
1863 Una tabla flotante.
1864 \end_layout
1865
1866 \end_inset
1867
1868
1869 \end_layout
1870
1871 \begin_layout Standard
1872 \align center
1873 \begin_inset Tabular
1874 <lyxtabular version="3" rows="3" columns="3">
1875 <features>
1876 <column alignment="center" valignment="top" leftline="true" width="0pt">
1877 <column alignment="center" valignment="top" leftline="true" width="0pt">
1878 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1879 <row topline="true" bottomline="true">
1880 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1881 \begin_inset Text
1882
1883 \begin_layout Standard
1884
1885 \family roman
1886 \series medium
1887 \shape up
1888 \size normal
1889 \emph off
1890 \bar no
1891 \noun off
1892 \color none
1893 1
1894 \end_layout
1895
1896 \end_inset
1897 </cell>
1898 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1899 \begin_inset Text
1900
1901 \begin_layout Standard
1902
1903 \family roman
1904 \series medium
1905 \shape up
1906 \size normal
1907 \emph off
1908 \bar no
1909 \noun off
1910 \color none
1911 2
1912 \end_layout
1913
1914 \end_inset
1915 </cell>
1916 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1917 \begin_inset Text
1918
1919 \begin_layout Standard
1920
1921 \family roman
1922 \series medium
1923 \shape up
1924 \size normal
1925 \emph off
1926 \bar no
1927 \noun off
1928 \color none
1929 3
1930 \end_layout
1931
1932 \end_inset
1933 </cell>
1934 </row>
1935 <row topline="true">
1936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1937 \begin_inset Text
1938
1939 \begin_layout Standard
1940
1941 \family roman
1942 \series medium
1943 \shape up
1944 \size normal
1945 \emph off
1946 \bar no
1947 \noun off
1948 \color none
1949 Pepe
1950 \end_layout
1951
1952 \end_inset
1953 </cell>
1954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1955 \begin_inset Text
1956
1957 \begin_layout Standard
1958
1959 \family roman
1960 \series medium
1961 \shape up
1962 \size normal
1963 \emph off
1964 \bar no
1965 \noun off
1966 \color none
1967 Mari
1968 \end_layout
1969
1970 \end_inset
1971 </cell>
1972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1973 \begin_inset Text
1974
1975 \begin_layout Standard
1976
1977 \family roman
1978 \series medium
1979 \shape up
1980 \size normal
1981 \emph off
1982 \bar no
1983 \noun off
1984 \color none
1985 Teo
1986 \end_layout
1987
1988 \end_inset
1989 </cell>
1990 </row>
1991 <row topline="true" bottomline="true">
1992 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1993 \begin_inset Text
1994
1995 \begin_layout Standard
1996
1997 \family roman
1998 \series medium
1999 \shape up
2000 \size normal
2001 \emph off
2002 \bar no
2003 \noun off
2004 \color none
2005 \begin_inset Formula $\int x^{2}dx$
2006 \end_inset
2007
2008
2009 \end_layout
2010
2011 \end_inset
2012 </cell>
2013 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2014 \begin_inset Text
2015
2016 \begin_layout Standard
2017
2018 \family roman
2019 \series medium
2020 \shape up
2021 \size normal
2022 \emph off
2023 \bar no
2024 \noun off
2025 \color none
2026 \begin_inset Formula $\left[\begin{array}{cc}
2027 a & b\\
2028 c & d\end{array}\right]$
2029 \end_inset
2030
2031
2032 \end_layout
2033
2034 \end_inset
2035 </cell>
2036 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2037 \begin_inset Text
2038
2039 \begin_layout Standard
2040
2041 \family roman
2042 \series medium
2043 \shape up
2044 \size normal
2045 \emph off
2046 \bar no
2047 \noun off
2048 \color none
2049 \begin_inset Formula $1+1=2$
2050 \end_inset
2051
2052
2053 \end_layout
2054
2055 \end_inset
2056 </cell>
2057 </row>
2058 </lyxtabular>
2059
2060 \end_inset
2061
2062
2063 \end_layout
2064
2065 \end_inset
2066
2067
2068 \end_layout
2069
2070 \begin_layout Standard
2071 Las tablas flotantes pueden insertarse con el menú 
2072 \family sans
2073 Insertar\SpecialChar \menuseparator
2074 Flotante\SpecialChar \menuseparator
2075 Tabla
2076 \family default
2077  o con el botón 
2078 \begin_inset Graphics
2079         filename ../../images/float-insert_table.xpm
2080         scale 85
2081
2082 \end_inset
2083
2084 .
2085 \end_layout
2086
2087 \begin_layout Standard
2088 El flotante se muestra como un cuadro desplegable con la etiqueta 
2089 \begin_inset Quotes eld
2090 \end_inset
2091
2092 Tabla\InsetSpace ~
2093 #:
2094 \begin_inset Quotes erd
2095 \end_inset
2096
2097  (# es el número actual).
2098  El texto que sigue a dicha etiqueta es el encabezado de tabla.
2099  Para insertar una tabla en el flotante se sitúa el cursor al final del
2100  texto de encabezado y se pulsa Enter.
2101  El encabezado se imprime encima de la tabla.
2102 \end_layout
2103
2104 \begin_layout Standard
2105 La tabla\InsetSpace ~
2106
2107 \begin_inset LatexCommand ref
2108 reference "tab:una tabla flotante"
2109
2110 \end_inset
2111
2112  es un ejemplo de tabla flotante.
2113 \end_layout
2114
2115 \begin_layout Standard
2116 Lo habitual es poner el encabezado sobre la tabla, lo que desafortunadamente
2117  no es soportado en las clases estándar de LaTeX.
2118  Esto significa que si estás usando las clases de documento
2119 \family sans
2120 article
2121 \family default
2122
2123 \family sans
2124 book
2125 \family default
2126
2127 \family sans
2128 letter
2129 \family default
2130 , o 
2131 \family sans
2132 report
2133 \family default
2134  no habrá espacio entre el encabezado y la tabla.
2135  Para añadir el espacio faltante hay que poner en el preámbulo LaTeX del
2136  documento la siguiente opción al comando del paquete de LaTeX 
2137 \series bold
2138 caption
2139 \series default
2140
2141 \begin_inset LatexCommand index
2142 name "LaTeX-paquetes ! caption"
2143
2144 \end_inset
2145
2146
2147 \begin_inset Foot
2148 status open
2149
2150 \begin_layout Standard
2151 Para más información ve a la sección\InsetSpace ~
2152
2153 \begin_inset LatexCommand ref
2154 reference "sec:Colocación-de-Encabezados"
2155
2156 \end_inset
2157
2158 .
2159 \end_layout
2160
2161 \end_inset
2162
2163 :
2164 \end_layout
2165
2166 \begin_layout Standard
2167
2168 \series bold
2169 tableposition=top
2170 \end_layout
2171
2172 \begin_layout Standard
2173 El encabezado puede formatearse mediante el paquete de LaTeX 
2174 \series bold
2175 caption
2176 \series default
2177  como se describe en la sección\InsetSpace ~
2178
2179 \begin_inset LatexCommand ref
2180 reference "sec:Formato-de-Encabezados"
2181
2182 \end_inset
2183
2184 .
2185  
2186 \end_layout
2187
2188 \begin_layout Standard
2189 \begin_inset LatexCommand index
2190 name "Referencias ! a Tablas"
2191
2192 \end_inset
2193
2194 Las tablas pueden tener referencias cruzadas en el texto referenciando su
2195  etiqueta.
2196  Para hacerlo inserta una etiqueta en el encabezado con el menú 
2197 \family sans
2198 Insertar\SpecialChar \menuseparator
2199 Etiqueta
2200 \family default
2201  o con el botón 
2202 \begin_inset Graphics
2203         filename ../../images/label-insert.xpm
2204         scale 85
2205
2206 \end_inset
2207
2208 .
2209  Ahora puedes referirte a la etiqueta con el menú 
2210 \family sans
2211 Insertar\SpecialChar \menuseparator
2212 Referencia\InsetSpace ~
2213 cruzada
2214 \family default
2215  o con el botón 
2216 \begin_inset Graphics
2217         filename ../../images/dialog-show-new-inset_ref.xpm
2218         scale 85
2219
2220 \end_inset
2221
2222 .
2223 \newline
2224 Las referencias se explican con detalle en la sección\InsetSpace ~
2225
2226 \begin_inset LatexCommand ref
2227 reference "sec:Referencias-a-Flotantes"
2228
2229 \end_inset
2230
2231 .
2232 \end_layout
2233
2234 \begin_layout Section
2235 Tablas Largas
2236 \begin_inset LatexCommand label
2237 name "sec:Tablas-Largas"
2238
2239 \end_inset
2240
2241
2242 \begin_inset LatexCommand index
2243 name "Tablas Largas"
2244
2245 \end_inset
2246
2247
2248 \begin_inset LatexCommand index
2249 name "Tablas ! Largas"
2250
2251 \end_inset
2252
2253
2254 \end_layout
2255
2256 \begin_layout Standard
2257 Si la tabla es demasiado larga para una página, puedes usar la opción 
2258 \family sans
2259 Usar\InsetSpace ~
2260 tabla\InsetSpace ~
2261 larga
2262 \family default
2263  en la pestaña 
2264 \family sans
2265 Tabla\InsetSpace ~
2266 larga
2267 \family default
2268  del diálogo de tablas, para repartir automáticamente la tabla en varias
2269  páginas.
2270  Al hacerlo se habilitan diversos botones opcionales en los que puedes definir:
2271 \end_layout
2272
2273 \begin_layout Description
2274
2275 \family sans
2276 Encabezado:
2277 \family default
2278  La fila actual y todas las de arriba, que no tienen ninguna opción especial
2279  definida, se definen como filas de encabezado para todas las páginas de
2280  la tabla, excepto para la primera página si 
2281 \family sans
2282 Primer\InsetSpace ~
2283 encabezado
2284 \family default
2285  está definido.
2286  Este se denomina encabezado principal.
2287 \end_layout
2288
2289 \begin_layout Description
2290
2291 \family sans
2292 Primer\InsetSpace ~
2293 encabezado:
2294 \family default
2295  La fila actual y superiores, que no tienen ninguna opción especial definida,
2296  se definen como filas cabeceras de la primera página de la tabla.
2297 \end_layout
2298
2299 \begin_layout Description
2300
2301 \family sans
2302 Pie:
2303 \family default
2304  La fila actual y todas las siguientes, que no tienen ninguna opción especial
2305  definida, se definen como filas de pie de todas las páginas de la tabla,
2306  excepto para la última página si se define 
2307 \family sans
2308 Último\InsetSpace ~
2309 pie.
2310 \end_layout
2311
2312 \begin_layout Description
2313
2314 \family sans
2315 Último\InsetSpace ~
2316 pie: L
2317 \family default
2318 a fila actual y siguientes, que no tienen ninguna opción especial definida,
2319  se definen como filas de pie de la última página de la tabla.
2320 \end_layout
2321
2322 \begin_layout Standard
2323 También se puede especificar una fila en la que se dividirá la tabla.
2324  Si se establece más de una opción en la misma fila, habría que tener en
2325  cuenta que sólo la primera de ellas se usa en la fila dada.
2326  Las otras quedarán definidas como 
2327 \emph on
2328 vacías
2329 \emph default
2330 .
2331  En este contexto, primera significa primero en este orden: 
2332 \family sans
2333 Pie, Último\InsetSpace ~
2334 pie, Encabezado, Primer\InsetSpace ~
2335 encabezado
2336 \family default
2337 .
2338  La siguiente tabla muestra cómo funciona:
2339 \end_layout
2340
2341 \begin_layout Standard
2342
2343 \end_layout
2344
2345 \begin_layout Standard
2346 \align center
2347 \begin_inset Tabular
2348 <lyxtabular version="3" rows="69" columns="3">
2349 <features islongtable="true">
2350 <column alignment="left" valignment="top" leftline="true" width="0cm">
2351 <column alignment="left" valignment="top" width="0pt">
2352 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2353 <row topline="true" bottomline="true" endfirsthead="true">
2354 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2355 \begin_inset Text
2356
2357 \begin_layout Standard
2358
2359 \series bold
2360 Ejemplo de lista telefónica (ignore los nombres)
2361 \end_layout
2362
2363 \end_inset
2364 </cell>
2365 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2366 \begin_inset Text
2367
2368 \begin_layout Standard
2369
2370 \end_layout
2371
2372 \end_inset
2373 </cell>
2374 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2375 \begin_inset Text
2376
2377 \begin_layout Standard
2378
2379 \end_layout
2380
2381 \end_inset
2382 </cell>
2383 </row>
2384 <row topline="true" bottomline="true" endfirsthead="true">
2385 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2386 \begin_inset Text
2387
2388 \begin_layout Standard
2389
2390 \series bold
2391 NOMBRE
2392 \end_layout
2393
2394 \end_inset
2395 </cell>
2396 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2397 \begin_inset Text
2398
2399 \begin_layout Standard
2400
2401 \end_layout
2402
2403 \end_inset
2404 </cell>
2405 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2406 \begin_inset Text
2407
2408 \begin_layout Standard
2409
2410 \series bold
2411 TEL.
2412 \end_layout
2413
2414 \end_inset
2415 </cell>
2416 </row>
2417 <row topline="true" bottomline="true" endhead="true">
2418 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2419 \begin_inset Text
2420
2421 \begin_layout Standard
2422
2423 \series bold
2424 Ejemplo de lista telefónica
2425 \end_layout
2426
2427 \end_inset
2428 </cell>
2429 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2430 \begin_inset Text
2431
2432 \begin_layout Standard
2433
2434 \end_layout
2435
2436 \end_inset
2437 </cell>
2438 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2439 \begin_inset Text
2440
2441 \begin_layout Standard
2442
2443 \end_layout
2444
2445 \end_inset
2446 </cell>
2447 </row>
2448 <row topline="true" bottomline="true" endhead="true">
2449 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2450 \begin_inset Text
2451
2452 \begin_layout Standard
2453
2454 \series bold
2455 NOMBRE
2456 \end_layout
2457
2458 \end_inset
2459 </cell>
2460 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2461 \begin_inset Text
2462
2463 \begin_layout Standard
2464
2465 \end_layout
2466
2467 \end_inset
2468 </cell>
2469 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2470 \begin_inset Text
2471
2472 \begin_layout Standard
2473
2474 \series bold
2475 TEL.
2476 \end_layout
2477
2478 \end_inset
2479 </cell>
2480 </row>
2481 <row topline="true" bottomline="true" endfoot="true">
2482 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2483 \begin_inset Text
2484
2485 \begin_layout Standard
2486  continúa en la página siguiente
2487 \end_layout
2488
2489 \end_inset
2490 </cell>
2491 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2492 \begin_inset Text
2493
2494 \begin_layout Standard
2495
2496 \end_layout
2497
2498 \end_inset
2499 </cell>
2500 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2501 \begin_inset Text
2502
2503 \begin_layout Standard
2504
2505 \end_layout
2506
2507 \end_inset
2508 </cell>
2509 </row>
2510 <row>
2511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2512 \begin_inset Text
2513
2514 \begin_layout Standard
2515
2516 \series bold
2517 Annovi
2518 \end_layout
2519
2520 \end_inset
2521 </cell>
2522 <cell alignment="center" valignment="top" topline="true" usebox="none">
2523 \begin_inset Text
2524
2525 \begin_layout Standard
2526 Silvia
2527 \end_layout
2528
2529 \end_inset
2530 </cell>
2531 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2532 \begin_inset Text
2533
2534 \begin_layout Standard
2535 111
2536 \end_layout
2537
2538 \end_inset
2539 </cell>
2540 </row>
2541 <row>
2542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2543 \begin_inset Text
2544
2545 \begin_layout Standard
2546
2547 \series bold
2548 Bertoli
2549 \end_layout
2550
2551 \end_inset
2552 </cell>
2553 <cell alignment="center" valignment="top" topline="true" usebox="none">
2554 \begin_inset Text
2555
2556 \begin_layout Standard
2557 Stefano
2558 \end_layout
2559
2560 \end_inset
2561 </cell>
2562 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2563 \begin_inset Text
2564
2565 \begin_layout Standard
2566 111
2567 \end_layout
2568
2569 \end_inset
2570 </cell>
2571 </row>
2572 <row>
2573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2574 \begin_inset Text
2575
2576 \begin_layout Standard
2577
2578 \series bold
2579 Bozzi
2580 \end_layout
2581
2582 \end_inset
2583 </cell>
2584 <cell alignment="center" valignment="top" topline="true" usebox="none">
2585 \begin_inset Text
2586
2587 \begin_layout Standard
2588 Walter
2589 \end_layout
2590
2591 \end_inset
2592 </cell>
2593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2594 \begin_inset Text
2595
2596 \begin_layout Standard
2597 111
2598 \end_layout
2599
2600 \end_inset
2601 </cell>
2602 </row>
2603 <row>
2604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2605 \begin_inset Text
2606
2607 \begin_layout Standard
2608
2609 \series bold
2610 Cachia
2611 \end_layout
2612
2613 \end_inset
2614 </cell>
2615 <cell alignment="center" valignment="top" topline="true" usebox="none">
2616 \begin_inset Text
2617
2618 \begin_layout Standard
2619 Maria
2620 \end_layout
2621
2622 \end_inset
2623 </cell>
2624 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2625 \begin_inset Text
2626
2627 \begin_layout Standard
2628 111
2629 \end_layout
2630
2631 \end_inset
2632 </cell>
2633 </row>
2634 <row>
2635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2636 \begin_inset Text
2637
2638 \begin_layout Standard
2639
2640 \series bold
2641 Cachia
2642 \end_layout
2643
2644 \end_inset
2645 </cell>
2646 <cell alignment="center" valignment="top" topline="true" usebox="none">
2647 \begin_inset Text
2648
2649 \begin_layout Standard
2650 Maurizio
2651 \end_layout
2652
2653 \end_inset
2654 </cell>
2655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2656 \begin_inset Text
2657
2658 \begin_layout Standard
2659 111
2660 \end_layout
2661
2662 \end_inset
2663 </cell>
2664 </row>
2665 <row>
2666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2667 \begin_inset Text
2668
2669 \begin_layout Standard
2670
2671 \series bold
2672 Cinquemani
2673 \end_layout
2674
2675 \end_inset
2676 </cell>
2677 <cell alignment="center" valignment="top" topline="true" usebox="none">
2678 \begin_inset Text
2679
2680 \begin_layout Standard
2681 Giusi
2682 \end_layout
2683
2684 \end_inset
2685 </cell>
2686 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2687 \begin_inset Text
2688
2689 \begin_layout Standard
2690 111
2691 \end_layout
2692
2693 \end_inset
2694 </cell>
2695 </row>
2696 <row>
2697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2698 \begin_inset Text
2699
2700 \begin_layout Standard
2701
2702 \series bold
2703 Colin
2704 \end_layout
2705
2706 \end_inset
2707 </cell>
2708 <cell alignment="center" valignment="top" topline="true" usebox="none">
2709 \begin_inset Text
2710
2711 \begin_layout Standard
2712 Bernard
2713 \end_layout
2714
2715 \end_inset
2716 </cell>
2717 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2718 \begin_inset Text
2719
2720 \begin_layout Standard
2721 111
2722 \end_layout
2723
2724 \end_inset
2725 </cell>
2726 </row>
2727 <row>
2728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2729 \begin_inset Text
2730
2731 \begin_layout Standard
2732
2733 \series bold
2734 Concli
2735 \end_layout
2736
2737 \end_inset
2738 </cell>
2739 <cell alignment="center" valignment="top" topline="true" usebox="none">
2740 \begin_inset Text
2741
2742 \begin_layout Standard
2743 Gianfranco
2744 \end_layout
2745
2746 \end_inset
2747 </cell>
2748 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2749 \begin_inset Text
2750
2751 \begin_layout Standard
2752 111
2753 \end_layout
2754
2755 \end_inset
2756 </cell>
2757 </row>
2758 <row>
2759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2760 \begin_inset Text
2761
2762 \begin_layout Standard
2763
2764 \series bold
2765 Dal Bosco
2766 \end_layout
2767
2768 \end_inset
2769 </cell>
2770 <cell alignment="center" valignment="top" topline="true" usebox="none">
2771 \begin_inset Text
2772
2773 \begin_layout Standard
2774 Carolina
2775 \end_layout
2776
2777 \end_inset
2778 </cell>
2779 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2780 \begin_inset Text
2781
2782 \begin_layout Standard
2783 111
2784 \end_layout
2785
2786 \end_inset
2787 </cell>
2788 </row>
2789 <row>
2790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2791 \begin_inset Text
2792
2793 \begin_layout Standard
2794
2795 \series bold
2796 Dalpiaz
2797 \end_layout
2798
2799 \end_inset
2800 </cell>
2801 <cell alignment="center" valignment="top" topline="true" usebox="none">
2802 \begin_inset Text
2803
2804 \begin_layout Standard
2805 Annamaria
2806 \end_layout
2807
2808 \end_inset
2809 </cell>
2810 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2811 \begin_inset Text
2812
2813 \begin_layout Standard
2814 111
2815 \end_layout
2816
2817 \end_inset
2818 </cell>
2819 </row>
2820 <row>
2821 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2822 \begin_inset Text
2823
2824 \begin_layout Standard
2825
2826 \series bold
2827 Feliciello
2828 \end_layout
2829
2830 \end_inset
2831 </cell>
2832 <cell alignment="center" valignment="top" topline="true" usebox="none">
2833 \begin_inset Text
2834
2835 \begin_layout Standard
2836 Domenico
2837 \end_layout
2838
2839 \end_inset
2840 </cell>
2841 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2842 \begin_inset Text
2843
2844 \begin_layout Standard
2845 111
2846 \end_layout
2847
2848 \end_inset
2849 </cell>
2850 </row>
2851 <row>
2852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2853 \begin_inset Text
2854
2855 \begin_layout Standard
2856
2857 \series bold
2858 Focarelli
2859 \end_layout
2860
2861 \end_inset
2862 </cell>
2863 <cell alignment="center" valignment="top" topline="true" usebox="none">
2864 \begin_inset Text
2865
2866 \begin_layout Standard
2867 Paola
2868 \end_layout
2869
2870 \end_inset
2871 </cell>
2872 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2873 \begin_inset Text
2874
2875 \begin_layout Standard
2876 111
2877 \end_layout
2878
2879 \end_inset
2880 </cell>
2881 </row>
2882 <row>
2883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2884 \begin_inset Text
2885
2886 \begin_layout Standard
2887
2888 \series bold
2889 Galletti
2890 \end_layout
2891
2892 \end_inset
2893 </cell>
2894 <cell alignment="center" valignment="top" topline="true" usebox="none">
2895 \begin_inset Text
2896
2897 \begin_layout Standard
2898 Oreste
2899 \end_layout
2900
2901 \end_inset
2902 </cell>
2903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2904 \begin_inset Text
2905
2906 \begin_layout Standard
2907 111
2908 \end_layout
2909
2910 \end_inset
2911 </cell>
2912 </row>
2913 <row>
2914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2915 \begin_inset Text
2916
2917 \begin_layout Standard
2918
2919 \series bold
2920 Gasparini
2921 \end_layout
2922
2923 \end_inset
2924 </cell>
2925 <cell alignment="center" valignment="top" topline="true" usebox="none">
2926 \begin_inset Text
2927
2928 \begin_layout Standard
2929 Franca
2930 \end_layout
2931
2932 \end_inset
2933 </cell>
2934 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2935 \begin_inset Text
2936
2937 \begin_layout Standard
2938 111
2939 \end_layout
2940
2941 \end_inset
2942 </cell>
2943 </row>
2944 <row>
2945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2946 \begin_inset Text
2947
2948 \begin_layout Standard
2949
2950 \series bold
2951 Rizzardi
2952 \end_layout
2953
2954 \end_inset
2955 </cell>
2956 <cell alignment="center" valignment="top" topline="true" usebox="none">
2957 \begin_inset Text
2958
2959 \begin_layout Standard
2960 Paola
2961 \end_layout
2962
2963 \end_inset
2964 </cell>
2965 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2966 \begin_inset Text
2967
2968 \begin_layout Standard
2969 111
2970 \end_layout
2971
2972 \end_inset
2973 </cell>
2974 </row>
2975 <row>
2976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2977 \begin_inset Text
2978
2979 \begin_layout Standard
2980
2981 \series bold
2982 Lassini
2983 \end_layout
2984
2985 \end_inset
2986 </cell>
2987 <cell alignment="center" valignment="top" topline="true" usebox="none">
2988 \begin_inset Text
2989
2990 \begin_layout Standard
2991 Giancarlo
2992 \end_layout
2993
2994 \end_inset
2995 </cell>
2996 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2997 \begin_inset Text
2998
2999 \begin_layout Standard
3000 111
3001 \end_layout
3002
3003 \end_inset
3004 </cell>
3005 </row>
3006 <row>
3007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3008 \begin_inset Text
3009
3010 \begin_layout Standard
3011
3012 \series bold
3013 Malfatti
3014 \end_layout
3015
3016 \end_inset
3017 </cell>
3018 <cell alignment="center" valignment="top" topline="true" usebox="none">
3019 \begin_inset Text
3020
3021 \begin_layout Standard
3022 Luciano
3023 \end_layout
3024
3025 \end_inset
3026 </cell>
3027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3028 \begin_inset Text
3029
3030 \begin_layout Standard
3031 111
3032 \end_layout
3033
3034 \end_inset
3035 </cell>
3036 </row>
3037 <row>
3038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3039 \begin_inset Text
3040
3041 \begin_layout Standard
3042
3043 \series bold
3044 Malfatti
3045 \end_layout
3046
3047 \end_inset
3048 </cell>
3049 <cell alignment="center" valignment="top" topline="true" usebox="none">
3050 \begin_inset Text
3051
3052 \begin_layout Standard
3053 Valeriano
3054 \end_layout
3055
3056 \end_inset
3057 </cell>
3058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3059 \begin_inset Text
3060
3061 \begin_layout Standard
3062 111
3063 \end_layout
3064
3065 \end_inset
3066 </cell>
3067 </row>
3068 <row>
3069 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3070 \begin_inset Text
3071
3072 \begin_layout Standard
3073
3074 \series bold
3075 Meneguzzo
3076 \end_layout
3077
3078 \end_inset
3079 </cell>
3080 <cell alignment="center" valignment="top" topline="true" usebox="none">
3081 \begin_inset Text
3082
3083 \begin_layout Standard
3084 Roberto
3085 \end_layout
3086
3087 \end_inset
3088 </cell>
3089 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3090 \begin_inset Text
3091
3092 \begin_layout Standard
3093 111
3094 \end_layout
3095
3096 \end_inset
3097 </cell>
3098 </row>
3099 <row>
3100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3101 \begin_inset Text
3102
3103 \begin_layout Standard
3104
3105 \series bold
3106 Mezzadra
3107 \end_layout
3108
3109 \end_inset
3110 </cell>
3111 <cell alignment="center" valignment="top" topline="true" usebox="none">
3112 \begin_inset Text
3113
3114 \begin_layout Standard
3115 Roberto
3116 \end_layout
3117
3118 \end_inset
3119 </cell>
3120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3121 \begin_inset Text
3122
3123 \begin_layout Standard
3124 111
3125 \end_layout
3126
3127 \end_inset
3128 </cell>
3129 </row>
3130 <row>
3131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3132 \begin_inset Text
3133
3134 \begin_layout Standard
3135
3136 \series bold
3137 Pirpamer
3138 \end_layout
3139
3140 \end_inset
3141 </cell>
3142 <cell alignment="center" valignment="top" topline="true" usebox="none">
3143 \begin_inset Text
3144
3145 \begin_layout Standard
3146 Erich
3147 \end_layout
3148
3149 \end_inset
3150 </cell>
3151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3152 \begin_inset Text
3153
3154 \begin_layout Standard
3155 111
3156 \end_layout
3157
3158 \end_inset
3159 </cell>
3160 </row>
3161 <row>
3162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3163 \begin_inset Text
3164
3165 \begin_layout Standard
3166
3167 \series bold
3168 Pochiesa
3169 \end_layout
3170
3171 \end_inset
3172 </cell>
3173 <cell alignment="center" valignment="top" topline="true" usebox="none">
3174 \begin_inset Text
3175
3176 \begin_layout Standard
3177 Paolo
3178 \end_layout
3179
3180 \end_inset
3181 </cell>
3182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3183 \begin_inset Text
3184
3185 \begin_layout Standard
3186 111, 222
3187 \end_layout
3188
3189 \end_inset
3190 </cell>
3191 </row>
3192 <row>
3193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3194 \begin_inset Text
3195
3196 \begin_layout Standard
3197
3198 \series bold
3199 Radina
3200 \end_layout
3201
3202 \end_inset
3203 </cell>
3204 <cell alignment="center" valignment="top" topline="true" usebox="none">
3205 \begin_inset Text
3206
3207 \begin_layout Standard
3208 Claudio
3209 \end_layout
3210
3211 \end_inset
3212 </cell>
3213 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3214 \begin_inset Text
3215
3216 \begin_layout Standard
3217 111
3218 \end_layout
3219
3220 \end_inset
3221 </cell>
3222 </row>
3223 <row>
3224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3225 \begin_inset Text
3226
3227 \begin_layout Standard
3228
3229 \series bold
3230 Stuffer
3231 \end_layout
3232
3233 \end_inset
3234 </cell>
3235 <cell alignment="center" valignment="top" topline="true" usebox="none">
3236 \begin_inset Text
3237
3238 \begin_layout Standard
3239 Oskar
3240 \end_layout
3241
3242 \end_inset
3243 </cell>
3244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3245 \begin_inset Text
3246
3247 \begin_layout Standard
3248 111
3249 \end_layout
3250
3251 \end_inset
3252 </cell>
3253 </row>
3254 <row>
3255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3256 \begin_inset Text
3257
3258 \begin_layout Standard
3259
3260 \series bold
3261 Tacchelli
3262 \end_layout
3263
3264 \end_inset
3265 </cell>
3266 <cell alignment="center" valignment="top" topline="true" usebox="none">
3267 \begin_inset Text
3268
3269 \begin_layout Standard
3270 Ugo
3271 \end_layout
3272
3273 \end_inset
3274 </cell>
3275 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3276 \begin_inset Text
3277
3278 \begin_layout Standard
3279 111
3280 \end_layout
3281
3282 \end_inset
3283 </cell>
3284 </row>
3285 <row>
3286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3287 \begin_inset Text
3288
3289 \begin_layout Standard
3290
3291 \series bold
3292 Tezzele
3293 \end_layout
3294
3295 \end_inset
3296 </cell>
3297 <cell alignment="center" valignment="top" topline="true" usebox="none">
3298 \begin_inset Text
3299
3300 \begin_layout Standard
3301 Margit
3302 \end_layout
3303
3304 \end_inset
3305 </cell>
3306 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3307 \begin_inset Text
3308
3309 \begin_layout Standard
3310 111
3311 \end_layout
3312
3313 \end_inset
3314 </cell>
3315 </row>
3316 <row>
3317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3318 \begin_inset Text
3319
3320 \begin_layout Standard
3321
3322 \series bold
3323 Unterkalmsteiner
3324 \end_layout
3325
3326 \end_inset
3327 </cell>
3328 <cell alignment="center" valignment="top" topline="true" usebox="none">
3329 \begin_inset Text
3330
3331 \begin_layout Standard
3332 Frieda
3333 \end_layout
3334
3335 \end_inset
3336 </cell>
3337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3338 \begin_inset Text
3339
3340 \begin_layout Standard
3341 111
3342 \end_layout
3343
3344 \end_inset
3345 </cell>
3346 </row>
3347 <row>
3348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3349 \begin_inset Text
3350
3351 \begin_layout Standard
3352
3353 \series bold
3354 Vieider
3355 \end_layout
3356
3357 \end_inset
3358 </cell>
3359 <cell alignment="center" valignment="top" topline="true" usebox="none">
3360 \begin_inset Text
3361
3362 \begin_layout Standard
3363 Hilde
3364 \end_layout
3365
3366 \end_inset
3367 </cell>
3368 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3369 \begin_inset Text
3370
3371 \begin_layout Standard
3372 111
3373 \end_layout
3374
3375 \end_inset
3376 </cell>
3377 </row>
3378 <row>
3379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3380 \begin_inset Text
3381
3382 \begin_layout Standard
3383
3384 \series bold
3385 Vigna
3386 \end_layout
3387
3388 \end_inset
3389 </cell>
3390 <cell alignment="center" valignment="top" topline="true" usebox="none">
3391 \begin_inset Text
3392
3393 \begin_layout Standard
3394 Jürgen
3395 \end_layout
3396
3397 \end_inset
3398 </cell>
3399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3400 \begin_inset Text
3401
3402 \begin_layout Standard
3403 111
3404 \end_layout
3405
3406 \end_inset
3407 </cell>
3408 </row>
3409 <row>
3410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3411 \begin_inset Text
3412
3413 \begin_layout Standard
3414
3415 \series bold
3416 Weber
3417 \end_layout
3418
3419 \end_inset
3420 </cell>
3421 <cell alignment="center" valignment="top" topline="true" usebox="none">
3422 \begin_inset Text
3423
3424 \begin_layout Standard
3425 Maurizio
3426 \end_layout
3427
3428 \end_inset
3429 </cell>
3430 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3431 \begin_inset Text
3432
3433 \begin_layout Standard
3434 111
3435 \end_layout
3436
3437 \end_inset
3438 </cell>
3439 </row>
3440 <row bottomline="true">
3441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3442 \begin_inset Text
3443
3444 \begin_layout Standard
3445
3446 \series bold
3447 Winkler
3448 \end_layout
3449
3450 \end_inset
3451 </cell>
3452 <cell alignment="center" valignment="top" topline="true" usebox="none">
3453 \begin_inset Text
3454
3455 \begin_layout Standard
3456 Franz
3457 \end_layout
3458
3459 \end_inset
3460 </cell>
3461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3462 \begin_inset Text
3463
3464 \begin_layout Standard
3465 111
3466 \end_layout
3467
3468 \end_inset
3469 </cell>
3470 </row>
3471 <row bottomline="true">
3472 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3473 \begin_inset Text
3474
3475 \begin_layout Standard
3476  
3477 \end_layout
3478
3479 \end_inset
3480 </cell>
3481 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3482 \begin_inset Text
3483
3484 \begin_layout Standard
3485
3486 \end_layout
3487
3488 \end_inset
3489 </cell>
3490 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3491 \begin_inset Text
3492
3493 \begin_layout Standard
3494
3495 \end_layout
3496
3497 \end_inset
3498 </cell>
3499 </row>
3500 <row>
3501 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3502 \begin_inset Text
3503
3504 \begin_layout Standard
3505
3506 \series bold
3507 Annovi
3508 \end_layout
3509
3510 \end_inset
3511 </cell>
3512 <cell alignment="center" valignment="top" topline="true" usebox="none">
3513 \begin_inset Text
3514
3515 \begin_layout Standard
3516 Silvia
3517 \end_layout
3518
3519 \end_inset
3520 </cell>
3521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3522 \begin_inset Text
3523
3524 \begin_layout Standard
3525 555
3526 \end_layout
3527
3528 \end_inset
3529 </cell>
3530 </row>
3531 <row>
3532 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3533 \begin_inset Text
3534
3535 \begin_layout Standard
3536
3537 \series bold
3538 Bertoli
3539 \end_layout
3540
3541 \end_inset
3542 </cell>
3543 <cell alignment="center" valignment="top" topline="true" usebox="none">
3544 \begin_inset Text
3545
3546 \begin_layout Standard
3547 Stefano
3548 \end_layout
3549
3550 \end_inset
3551 </cell>
3552 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3553 \begin_inset Text
3554
3555 \begin_layout Standard
3556 555
3557 \end_layout
3558
3559 \end_inset
3560 </cell>
3561 </row>
3562 <row>
3563 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3564 \begin_inset Text
3565
3566 \begin_layout Standard
3567
3568 \series bold
3569 Bozzi
3570 \end_layout
3571
3572 \end_inset
3573 </cell>
3574 <cell alignment="center" valignment="top" topline="true" usebox="none">
3575 \begin_inset Text
3576
3577 \begin_layout Standard
3578 Walter
3579 \end_layout
3580
3581 \end_inset
3582 </cell>
3583 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3584 \begin_inset Text
3585
3586 \begin_layout Standard
3587 555
3588 \end_layout
3589
3590 \end_inset
3591 </cell>
3592 </row>
3593 <row>
3594 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3595 \begin_inset Text
3596
3597 \begin_layout Standard
3598
3599 \series bold
3600 Cachia
3601 \end_layout
3602
3603 \end_inset
3604 </cell>
3605 <cell alignment="center" valignment="top" topline="true" usebox="none">
3606 \begin_inset Text
3607
3608 \begin_layout Standard
3609 Maria
3610 \end_layout
3611
3612 \end_inset
3613 </cell>
3614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3615 \begin_inset Text
3616
3617 \begin_layout Standard
3618 555
3619 \end_layout
3620
3621 \end_inset
3622 </cell>
3623 </row>
3624 <row>
3625 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3626 \begin_inset Text
3627
3628 \begin_layout Standard
3629
3630 \series bold
3631 Cachia
3632 \end_layout
3633
3634 \end_inset
3635 </cell>
3636 <cell alignment="center" valignment="top" topline="true" usebox="none">
3637 \begin_inset Text
3638
3639 \begin_layout Standard
3640 Maurizio
3641 \end_layout
3642
3643 \end_inset
3644 </cell>
3645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3646 \begin_inset Text
3647
3648 \begin_layout Standard
3649 555
3650 \end_layout
3651
3652 \end_inset
3653 </cell>
3654 </row>
3655 <row>
3656 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3657 \begin_inset Text
3658
3659 \begin_layout Standard
3660
3661 \series bold
3662 Cinquemani
3663 \end_layout
3664
3665 \end_inset
3666 </cell>
3667 <cell alignment="center" valignment="top" topline="true" usebox="none">
3668 \begin_inset Text
3669
3670 \begin_layout Standard
3671 Giusi
3672 \end_layout
3673
3674 \end_inset
3675 </cell>
3676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3677 \begin_inset Text
3678
3679 \begin_layout Standard
3680 555
3681 \end_layout
3682
3683 \end_inset
3684 </cell>
3685 </row>
3686 <row>
3687 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3688 \begin_inset Text
3689
3690 \begin_layout Standard
3691
3692 \series bold
3693 Colin
3694 \end_layout
3695
3696 \end_inset
3697 </cell>
3698 <cell alignment="center" valignment="top" topline="true" usebox="none">
3699 \begin_inset Text
3700
3701 \begin_layout Standard
3702 Bernard
3703 \end_layout
3704
3705 \end_inset
3706 </cell>
3707 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3708 \begin_inset Text
3709
3710 \begin_layout Standard
3711 555
3712 \end_layout
3713
3714 \end_inset
3715 </cell>
3716 </row>
3717 <row>
3718 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3719 \begin_inset Text
3720
3721 \begin_layout Standard
3722
3723 \series bold
3724 Concli
3725 \end_layout
3726
3727 \end_inset
3728 </cell>
3729 <cell alignment="center" valignment="top" topline="true" usebox="none">
3730 \begin_inset Text
3731
3732 \begin_layout Standard
3733 Gianfranco
3734 \end_layout
3735
3736 \end_inset
3737 </cell>
3738 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3739 \begin_inset Text
3740
3741 \begin_layout Standard
3742 555
3743 \end_layout
3744
3745 \end_inset
3746 </cell>
3747 </row>
3748 <row>
3749 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3750 \begin_inset Text
3751
3752 \begin_layout Standard
3753
3754 \series bold
3755 Dal Bosco
3756 \end_layout
3757
3758 \end_inset
3759 </cell>
3760 <cell alignment="center" valignment="top" topline="true" usebox="none">
3761 \begin_inset Text
3762
3763 \begin_layout Standard
3764 Carolina
3765 \end_layout
3766
3767 \end_inset
3768 </cell>
3769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3770 \begin_inset Text
3771
3772 \begin_layout Standard
3773 555
3774 \end_layout
3775
3776 \end_inset
3777 </cell>
3778 </row>
3779 <row>
3780 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3781 \begin_inset Text
3782
3783 \begin_layout Standard
3784
3785 \series bold
3786 Dalpiaz
3787 \end_layout
3788
3789 \end_inset
3790 </cell>
3791 <cell alignment="center" valignment="top" topline="true" usebox="none">
3792 \begin_inset Text
3793
3794 \begin_layout Standard
3795 Annamaria
3796 \end_layout
3797
3798 \end_inset
3799 </cell>
3800 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3801 \begin_inset Text
3802
3803 \begin_layout Standard
3804 555
3805 \end_layout
3806
3807 \end_inset
3808 </cell>
3809 </row>
3810 <row>
3811 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3812 \begin_inset Text
3813
3814 \begin_layout Standard
3815
3816 \series bold
3817 Feliciello
3818 \end_layout
3819
3820 \end_inset
3821 </cell>
3822 <cell alignment="center" valignment="top" topline="true" usebox="none">
3823 \begin_inset Text
3824
3825 \begin_layout Standard
3826 Domenico
3827 \end_layout
3828
3829 \end_inset
3830 </cell>
3831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3832 \begin_inset Text
3833
3834 \begin_layout Standard
3835 555
3836 \end_layout
3837
3838 \end_inset
3839 </cell>
3840 </row>
3841 <row>
3842 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3843 \begin_inset Text
3844
3845 \begin_layout Standard
3846
3847 \series bold
3848 Focarelli
3849 \end_layout
3850
3851 \end_inset
3852 </cell>
3853 <cell alignment="center" valignment="top" topline="true" usebox="none">
3854 \begin_inset Text
3855
3856 \begin_layout Standard
3857 Paola
3858 \end_layout
3859
3860 \end_inset
3861 </cell>
3862 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3863 \begin_inset Text
3864
3865 \begin_layout Standard
3866 555
3867 \end_layout
3868
3869 \end_inset
3870 </cell>
3871 </row>
3872 <row>
3873 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3874 \begin_inset Text
3875
3876 \begin_layout Standard
3877
3878 \series bold
3879 Galletti
3880 \end_layout
3881
3882 \end_inset
3883 </cell>
3884 <cell alignment="center" valignment="top" topline="true" usebox="none">
3885 \begin_inset Text
3886
3887 \begin_layout Standard
3888 Oreste
3889 \end_layout
3890
3891 \end_inset
3892 </cell>
3893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3894 \begin_inset Text
3895
3896 \begin_layout Standard
3897 555
3898 \end_layout
3899
3900 \end_inset
3901 </cell>
3902 </row>
3903 <row>
3904 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3905 \begin_inset Text
3906
3907 \begin_layout Standard
3908
3909 \series bold
3910 Gasparini
3911 \end_layout
3912
3913 \end_inset
3914 </cell>
3915 <cell alignment="center" valignment="top" topline="true" usebox="none">
3916 \begin_inset Text
3917
3918 \begin_layout Standard
3919 Franca
3920 \end_layout
3921
3922 \end_inset
3923 </cell>
3924 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3925 \begin_inset Text
3926
3927 \begin_layout Standard
3928 555
3929 \end_layout
3930
3931 \end_inset
3932 </cell>
3933 </row>
3934 <row>
3935 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3936 \begin_inset Text
3937
3938 \begin_layout Standard
3939
3940 \series bold
3941 Rizzardi
3942 \end_layout
3943
3944 \end_inset
3945 </cell>
3946 <cell alignment="center" valignment="top" topline="true" usebox="none">
3947 \begin_inset Text
3948
3949 \begin_layout Standard
3950 Paola
3951 \end_layout
3952
3953 \end_inset
3954 </cell>
3955 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3956 \begin_inset Text
3957
3958 \begin_layout Standard
3959 555
3960 \end_layout
3961
3962 \end_inset
3963 </cell>
3964 </row>
3965 <row>
3966 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3967 \begin_inset Text
3968
3969 \begin_layout Standard
3970
3971 \series bold
3972 Lassini
3973 \end_layout
3974
3975 \end_inset
3976 </cell>
3977 <cell alignment="center" valignment="top" topline="true" usebox="none">
3978 \begin_inset Text
3979
3980 \begin_layout Standard
3981 Giancarlo
3982 \end_layout
3983
3984 \end_inset
3985 </cell>
3986 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3987 \begin_inset Text
3988
3989 \begin_layout Standard
3990 555
3991 \end_layout
3992
3993 \end_inset
3994 </cell>
3995 </row>
3996 <row>
3997 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3998 \begin_inset Text
3999
4000 \begin_layout Standard
4001
4002 \series bold
4003 Malfatti
4004 \end_layout
4005
4006 \end_inset
4007 </cell>
4008 <cell alignment="center" valignment="top" topline="true" usebox="none">
4009 \begin_inset Text
4010
4011 \begin_layout Standard
4012 Luciano
4013 \end_layout
4014
4015 \end_inset
4016 </cell>
4017 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4018 \begin_inset Text
4019
4020 \begin_layout Standard
4021 555
4022 \end_layout
4023
4024 \end_inset
4025 </cell>
4026 </row>
4027 <row>
4028 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4029 \begin_inset Text
4030
4031 \begin_layout Standard
4032
4033 \series bold
4034 Malfatti
4035 \end_layout
4036
4037 \end_inset
4038 </cell>
4039 <cell alignment="center" valignment="top" topline="true" usebox="none">
4040 \begin_inset Text
4041
4042 \begin_layout Standard
4043 Valeriano
4044 \end_layout
4045
4046 \end_inset
4047 </cell>
4048 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4049 \begin_inset Text
4050
4051 \begin_layout Standard
4052 555
4053 \end_layout
4054
4055 \end_inset
4056 </cell>
4057 </row>
4058 <row>
4059 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4060 \begin_inset Text
4061
4062 \begin_layout Standard
4063
4064 \series bold
4065 Meneguzzo
4066 \end_layout
4067
4068 \end_inset
4069 </cell>
4070 <cell alignment="center" valignment="top" topline="true" usebox="none">
4071 \begin_inset Text
4072
4073 \begin_layout Standard
4074 Roberto
4075 \end_layout
4076
4077 \end_inset
4078 </cell>
4079 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4080 \begin_inset Text
4081
4082 \begin_layout Standard
4083 555
4084 \end_layout
4085
4086 \end_inset
4087 </cell>
4088 </row>
4089 <row>
4090 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4091 \begin_inset Text
4092
4093 \begin_layout Standard
4094
4095 \series bold
4096 Mezzadra
4097 \end_layout
4098
4099 \end_inset
4100 </cell>
4101 <cell alignment="center" valignment="top" topline="true" usebox="none">
4102 \begin_inset Text
4103
4104 \begin_layout Standard
4105 Roberto
4106 \end_layout
4107
4108 \end_inset
4109 </cell>
4110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4111 \begin_inset Text
4112
4113 \begin_layout Standard
4114 555
4115 \end_layout
4116
4117 \end_inset
4118 </cell>
4119 </row>
4120 <row>
4121 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4122 \begin_inset Text
4123
4124 \begin_layout Standard
4125
4126 \series bold
4127 Pirpamer
4128 \end_layout
4129
4130 \end_inset
4131 </cell>
4132 <cell alignment="center" valignment="top" topline="true" usebox="none">
4133 \begin_inset Text
4134
4135 \begin_layout Standard
4136 Erich
4137 \end_layout
4138
4139 \end_inset
4140 </cell>
4141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4142 \begin_inset Text
4143
4144 \begin_layout Standard
4145 555
4146 \end_layout
4147
4148 \end_inset
4149 </cell>
4150 </row>
4151 <row>
4152 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4153 \begin_inset Text
4154
4155 \begin_layout Standard
4156
4157 \series bold
4158 Pochiesa
4159 \end_layout
4160
4161 \end_inset
4162 </cell>
4163 <cell alignment="center" valignment="top" topline="true" usebox="none">
4164 \begin_inset Text
4165
4166 \begin_layout Standard
4167 Paolo
4168 \end_layout
4169
4170 \end_inset
4171 </cell>
4172 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4173 \begin_inset Text
4174
4175 \begin_layout Standard
4176 555, 222
4177 \end_layout
4178
4179 \end_inset
4180 </cell>
4181 </row>
4182 <row>
4183 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4184 \begin_inset Text
4185
4186 \begin_layout Standard
4187
4188 \series bold
4189 Radina
4190 \end_layout
4191
4192 \end_inset
4193 </cell>
4194 <cell alignment="center" valignment="top" topline="true" usebox="none">
4195 \begin_inset Text
4196
4197 \begin_layout Standard
4198 Claudio
4199 \end_layout
4200
4201 \end_inset
4202 </cell>
4203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4204 \begin_inset Text
4205
4206 \begin_layout Standard
4207 555
4208 \end_layout
4209
4210 \end_inset
4211 </cell>
4212 </row>
4213 <row>
4214 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4215 \begin_inset Text
4216
4217 \begin_layout Standard
4218
4219 \series bold
4220 Stuffer
4221 \end_layout
4222
4223 \end_inset
4224 </cell>
4225 <cell alignment="center" valignment="top" topline="true" usebox="none">
4226 \begin_inset Text
4227
4228 \begin_layout Standard
4229 Oskar
4230 \end_layout
4231
4232 \end_inset
4233 </cell>
4234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4235 \begin_inset Text
4236
4237 \begin_layout Standard
4238 555
4239 \end_layout
4240
4241 \end_inset
4242 </cell>
4243 </row>
4244 <row>
4245 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4246 \begin_inset Text
4247
4248 \begin_layout Standard
4249
4250 \series bold
4251 Tacchelli
4252 \end_layout
4253
4254 \end_inset
4255 </cell>
4256 <cell alignment="center" valignment="top" topline="true" usebox="none">
4257 \begin_inset Text
4258
4259 \begin_layout Standard
4260 Ugo
4261 \end_layout
4262
4263 \end_inset
4264 </cell>
4265 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4266 \begin_inset Text
4267
4268 \begin_layout Standard
4269 555
4270 \end_layout
4271
4272 \end_inset
4273 </cell>
4274 </row>
4275 <row>
4276 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4277 \begin_inset Text
4278
4279 \begin_layout Standard
4280
4281 \series bold
4282 Tezzele
4283 \end_layout
4284
4285 \end_inset
4286 </cell>
4287 <cell alignment="center" valignment="top" topline="true" usebox="none">
4288 \begin_inset Text
4289
4290 \begin_layout Standard
4291 Margit
4292 \end_layout
4293
4294 \end_inset
4295 </cell>
4296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4297 \begin_inset Text
4298
4299 \begin_layout Standard
4300 555
4301 \end_layout
4302
4303 \end_inset
4304 </cell>
4305 </row>
4306 <row>
4307 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4308 \begin_inset Text
4309
4310 \begin_layout Standard
4311
4312 \series bold
4313 Unterkalmsteiner
4314 \end_layout
4315
4316 \end_inset
4317 </cell>
4318 <cell alignment="center" valignment="top" topline="true" usebox="none">
4319 \begin_inset Text
4320
4321 \begin_layout Standard
4322 Frieda
4323 \end_layout
4324
4325 \end_inset
4326 </cell>
4327 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4328 \begin_inset Text
4329
4330 \begin_layout Standard
4331 555
4332 \end_layout
4333
4334 \end_inset
4335 </cell>
4336 </row>
4337 <row>
4338 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4339 \begin_inset Text
4340
4341 \begin_layout Standard
4342
4343 \series bold
4344 Vieider
4345 \end_layout
4346
4347 \end_inset
4348 </cell>
4349 <cell alignment="center" valignment="top" topline="true" usebox="none">
4350 \begin_inset Text
4351
4352 \begin_layout Standard
4353 Hilde
4354 \end_layout
4355
4356 \end_inset
4357 </cell>
4358 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4359 \begin_inset Text
4360
4361 \begin_layout Standard
4362 555
4363 \end_layout
4364
4365 \end_inset
4366 </cell>
4367 </row>
4368 <row>
4369 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4370 \begin_inset Text
4371
4372 \begin_layout Standard
4373
4374 \series bold
4375 Vigna
4376 \end_layout
4377
4378 \end_inset
4379 </cell>
4380 <cell alignment="center" valignment="top" topline="true" usebox="none">
4381 \begin_inset Text
4382
4383 \begin_layout Standard
4384 Jürgen
4385 \end_layout
4386
4387 \end_inset
4388 </cell>
4389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4390 \begin_inset Text
4391
4392 \begin_layout Standard
4393 999
4394 \end_layout
4395
4396 \end_inset
4397 </cell>
4398 </row>
4399 <row>
4400 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4401 \begin_inset Text
4402
4403 \begin_layout Standard
4404
4405 \series bold
4406 Weber
4407 \end_layout
4408
4409 \end_inset
4410 </cell>
4411 <cell alignment="center" valignment="top" topline="true" usebox="none">
4412 \begin_inset Text
4413
4414 \begin_layout Standard
4415 Maurizio
4416 \end_layout
4417
4418 \end_inset
4419 </cell>
4420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4421 \begin_inset Text
4422
4423 \begin_layout Standard
4424 555
4425 \end_layout
4426
4427 \end_inset
4428 </cell>
4429 </row>
4430 <row bottomline="true">
4431 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4432 \begin_inset Text
4433
4434 \begin_layout Standard
4435
4436 \series bold
4437 Winkler
4438 \end_layout
4439
4440 \end_inset
4441 </cell>
4442 <cell alignment="center" valignment="top" topline="true" usebox="none">
4443 \begin_inset Text
4444
4445 \begin_layout Standard
4446 Franz
4447 \end_layout
4448
4449 \end_inset
4450 </cell>
4451 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4452 \begin_inset Text
4453
4454 \begin_layout Standard
4455 555
4456 \end_layout
4457
4458 \end_inset
4459 </cell>
4460 </row>
4461 <row bottomline="true" endlastfoot="true">
4462 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4463 \begin_inset Text
4464
4465 \begin_layout Standard
4466 fin
4467 \end_layout
4468
4469 \end_inset
4470 </cell>
4471 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4472 \begin_inset Text
4473
4474 \begin_layout Standard
4475
4476 \end_layout
4477
4478 \end_inset
4479 </cell>
4480 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4481 \begin_inset Text
4482
4483 \begin_layout Standard
4484
4485 \end_layout
4486
4487 \end_inset
4488 </cell>
4489 </row>
4490 </lyxtabular>
4491
4492 \end_inset
4493
4494
4495 \begin_inset ERT
4496 status collapsed
4497
4498 \begin_layout Standard
4499
4500
4501 \backslash
4502 addtocounter{table}{-1}
4503 \end_layout
4504
4505 \end_inset
4506
4507
4508 \begin_inset Note Note
4509 status open
4510
4511 \begin_layout Standard
4512 Para comprender el uso de este comando, lee al final de la sección\InsetSpace ~
4513 2.6.2 la
4514  primera nota resaltada en gris.
4515  
4516 \end_layout
4517
4518 \end_inset
4519
4520
4521 \end_layout
4522
4523 \begin_layout Subsection
4524 Notas al pie en Tablas Largas
4525 \begin_inset LatexCommand label
4526 name "sub:Notas-al-pie-en-Tablas-Largas"
4527
4528 \end_inset
4529
4530
4531 \begin_inset LatexCommand index
4532 name "Tablas Largas ! Notas al pie"
4533
4534 \end_inset
4535
4536
4537 \end_layout
4538
4539 \begin_layout Standard
4540 Se pueden insertar notas al pie en cada celda de una tabla larga.
4541  Aparecen abajo en la página donde esté la celda con la nota.
4542  La tabla\InsetSpace ~
4543
4544 \begin_inset LatexCommand ref
4545 reference "tab:DifEncabezados"
4546
4547 \end_inset
4548
4549  tiene un ejemplo de nota al pie.
4550 \end_layout
4551
4552 \begin_layout Subsection
4553 Encabezados en Tablas Largas
4554 \begin_inset LatexCommand index
4555 name "Tablas Largas ! Encabezados"
4556
4557 \end_inset
4558
4559
4560 \end_layout
4561
4562 \begin_layout Standard
4563 Una tabla larga no se puede poner flotante porque los flotantes sólo pueden
4564  estar en una página, aunque el entorno encabezado de flotantes sí puede
4565  usarse para tablas largas.
4566 \end_layout
4567
4568 \begin_layout Standard
4569 LyX todavía no soporta totalmente encabezados en tablas largas, de modo
4570  que hay que crearlos de la sigiente forma:
4571 \end_layout
4572
4573 \begin_layout Enumerate
4574 Crea una tabla larga.
4575 \end_layout
4576
4577 \begin_layout Enumerate
4578 Marca la primera fila y deshabilita su línea superior.
4579 \end_layout
4580
4581 \begin_layout Enumerate
4582 Inserta un encabezado mediante el menú 
4583 \family sans
4584 Insertar\SpecialChar \menuseparator
4585 Encabezado
4586 \family default
4587  en la primera celda.
4588 \newline
4589 También puedes añadir un título breve para el encabezado.
4590 \end_layout
4591
4592 \begin_layout Enumerate
4593 Inserta un 
4594 \begin_inset Quotes eld
4595 \end_inset
4596
4597
4598 \series bold
4599
4600 \backslash
4601
4602 \backslash
4603 %
4604 \series default
4605
4606 \begin_inset Quotes erd
4607 \end_inset
4608
4609  como ERT detrás del encabezado.
4610 \end_layout
4611
4612 \begin_layout Standard
4613 En la Lista de Tablas aparecerá el título breve en vez del título completo.
4614  El 
4615 \series bold
4616
4617 \begin_inset Quotes eld
4618 \end_inset
4619
4620
4621 \backslash
4622
4623 \backslash
4624 %
4625 \series default
4626
4627 \begin_inset Quotes erd
4628 \end_inset
4629
4630  detrás del encabezado elimina las líneas verticales entre las siguientes
4631  celdas de la fila.
4632  Ahora, la primera fila de la tabla es sólo una fila postiza para el encabezado,
4633  la tabla real comienza en la segunda fila.
4634 \end_layout
4635
4636 \begin_layout Standard
4637 He aquí una pequeña tabla larga para mostrar cómo funciona:
4638 \end_layout
4639
4640 \begin_layout Standard
4641 \begin_inset Tabular
4642 <lyxtabular version="3" rows="6" columns="5">
4643 <features islongtable="true">
4644 <column alignment="center" valignment="top" leftline="true" width="0">
4645 <column alignment="center" valignment="top" leftline="true" width="0">
4646 <column alignment="center" valignment="top" leftline="true" width="0">
4647 <column alignment="center" valignment="top" leftline="true" width="0">
4648 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4649 <row>
4650 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4651 \begin_inset Text
4652
4653 \begin_layout Standard
4654 \begin_inset Caption
4655
4656 \begin_layout Standard
4657 Tabla larga con encabezado
4658 \begin_inset OptArg
4659 status collapsed
4660
4661 \begin_layout Standard
4662 Tabla larga con encabezado
4663 \end_layout
4664
4665 \end_inset
4666
4667
4668 \end_layout
4669
4670 \end_inset
4671
4672
4673 \begin_inset ERT
4674 status collapsed
4675
4676 \begin_layout Standard
4677
4678
4679 \backslash
4680
4681 \backslash
4682 %
4683 \end_layout
4684
4685 \end_inset
4686
4687
4688 \end_layout
4689
4690 \end_inset
4691 </cell>
4692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4693 \begin_inset Text
4694
4695 \begin_layout Standard
4696
4697 \end_layout
4698
4699 \end_inset
4700 </cell>
4701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4702 \begin_inset Text
4703
4704 \begin_layout Standard
4705
4706 \end_layout
4707
4708 \end_inset
4709 </cell>
4710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4711 \begin_inset Text
4712
4713 \begin_layout Standard
4714
4715 \end_layout
4716
4717 \end_inset
4718 </cell>
4719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4720 \begin_inset Text
4721
4722 \begin_layout Standard
4723
4724 \end_layout
4725
4726 \end_inset
4727 </cell>
4728 </row>
4729 <row topline="true">
4730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4731 \begin_inset Text
4732
4733 \begin_layout Standard
4734 1
4735 \end_layout
4736
4737 \end_inset
4738 </cell>
4739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4740 \begin_inset Text
4741
4742 \begin_layout Standard
4743 2
4744 \end_layout
4745
4746 \end_inset
4747 </cell>
4748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4749 \begin_inset Text
4750
4751 \begin_layout Standard
4752 3
4753 \end_layout
4754
4755 \end_inset
4756 </cell>
4757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4758 \begin_inset Text
4759
4760 \begin_layout Standard
4761 4
4762 \end_layout
4763
4764 \end_inset
4765 </cell>
4766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4767 \begin_inset Text
4768
4769 \begin_layout Standard
4770 5
4771 \end_layout
4772
4773 \end_inset
4774 </cell>
4775 </row>
4776 <row topline="true">
4777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4778 \begin_inset Text
4779
4780 \begin_layout Standard
4781 asd
4782 \end_layout
4783
4784 \end_inset
4785 </cell>
4786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4787 \begin_inset Text
4788
4789 \begin_layout Standard
4790 s
4791 \end_layout
4792
4793 \end_inset
4794 </cell>
4795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4796 \begin_inset Text
4797
4798 \begin_layout Standard
4799 s
4800 \end_layout
4801
4802 \end_inset
4803 </cell>
4804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4805 \begin_inset Text
4806
4807 \begin_layout Standard
4808 s
4809 \end_layout
4810
4811 \end_inset
4812 </cell>
4813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4814 \begin_inset Text
4815
4816 \begin_layout Standard
4817 asd
4818 \end_layout
4819
4820 \end_inset
4821 </cell>
4822 </row>
4823 <row topline="true">
4824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4825 \begin_inset Text
4826
4827 \begin_layout Standard
4828 asd
4829 \end_layout
4830
4831 \end_inset
4832 </cell>
4833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4834 \begin_inset Text
4835
4836 \begin_layout Standard
4837 s
4838 \end_layout
4839
4840 \end_inset
4841 </cell>
4842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4843 \begin_inset Text
4844
4845 \begin_layout Standard
4846 s
4847 \end_layout
4848
4849 \end_inset
4850 </cell>
4851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4852 \begin_inset Text
4853
4854 \begin_layout Standard
4855 s
4856 \end_layout
4857
4858 \end_inset
4859 </cell>
4860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4861 \begin_inset Text
4862
4863 \begin_layout Standard
4864 asd
4865 \end_layout
4866
4867 \end_inset
4868 </cell>
4869 </row>
4870 <row topline="true">
4871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4872 \begin_inset Text
4873
4874 \begin_layout Standard
4875 asd
4876 \end_layout
4877
4878 \end_inset
4879 </cell>
4880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4881 \begin_inset Text
4882
4883 \begin_layout Standard
4884 s
4885 \end_layout
4886
4887 \end_inset
4888 </cell>
4889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4890 \begin_inset Text
4891
4892 \begin_layout Standard
4893 s
4894 \end_layout
4895
4896 \end_inset
4897 </cell>
4898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4899 \begin_inset Text
4900
4901 \begin_layout Standard
4902 s
4903 \end_layout
4904
4905 \end_inset
4906 </cell>
4907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4908 \begin_inset Text
4909
4910 \begin_layout Standard
4911 asd
4912 \end_layout
4913
4914 \end_inset
4915 </cell>
4916 </row>
4917 <row topline="true" bottomline="true">
4918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4919 \begin_inset Text
4920
4921 \begin_layout Standard
4922 asd
4923 \end_layout
4924
4925 \end_inset
4926 </cell>
4927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4928 \begin_inset Text
4929
4930 \begin_layout Standard
4931 asd
4932 \end_layout
4933
4934 \end_inset
4935 </cell>
4936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4937 \begin_inset Text
4938
4939 \begin_layout Standard
4940 asd
4941 \end_layout
4942
4943 \end_inset
4944 </cell>
4945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4946 \begin_inset Text
4947
4948 \begin_layout Standard
4949 asd
4950 \end_layout
4951
4952 \end_inset
4953 </cell>
4954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4955 \begin_inset Text
4956
4957 \begin_layout Standard
4958 asd
4959 \end_layout
4960
4961 \end_inset
4962 </cell>
4963 </row>
4964 </lyxtabular>
4965
4966 \end_inset
4967
4968
4969 \end_layout
4970
4971 \begin_layout Standard
4972 \begin_inset VSpace medskip
4973 \end_inset
4974
4975
4976 \begin_inset Note Greyedout
4977 status open
4978
4979 \begin_layout Standard
4980
4981 \series bold
4982 Nota
4983 \series default
4984 : El número de la tabla es incrementado para cada tabla larga, aunque no
4985  pongas encabezado en alguna de ellas.
4986  Por esto podría suceder que, p.\InsetSpace \thinspace{}
4987 e., la tabla\InsetSpace ~
4988 2.4 siga a la tabla\InsetSpace ~
4989 2.1 en la lista
4990  de tablas debido a que hay dos tablas largas sin encabezado.
4991  Para evitarlo, puedes añadir el siguiente comando en ERT detrás de cada
4992  tabla larga sin encabezado:
4993 \end_layout
4994
4995 \begin_layout Standard
4996
4997 \series bold
4998
4999 \backslash
5000 addtocounter{table}{-1}
5001 \end_layout
5002
5003 \end_inset
5004
5005
5006 \begin_inset Note Greyedout
5007 status open
5008
5009 \begin_layout Standard
5010
5011 \series bold
5012 Nota:
5013 \series default
5014  Si utilizas el paquete de LaTeX 
5015 \series bold
5016 hyperref
5017 \series default
5018
5019 \begin_inset LatexCommand index
5020 name "LaTeX-paquetes ! hyperref"
5021
5022 \end_inset
5023
5024  para enlazar referencias cruzadas, el enlace al encabezado de una tabla
5025  larga apuntará siempre al comienzo.
5026 \end_layout
5027
5028 \end_inset
5029
5030
5031 \end_layout
5032
5033 \begin_layout Subsubsection
5034 Referencias a Tablas Largas
5035 \begin_inset LatexCommand index
5036 name "Tablas Largas ! Referencias a"
5037
5038 \end_inset
5039
5040
5041 \end_layout
5042
5043 \begin_layout Standard
5044 \begin_inset Tabular
5045 <lyxtabular version="3" rows="6" columns="5">
5046 <features islongtable="true">
5047 <column alignment="center" valignment="top" leftline="true" width="0">
5048 <column alignment="center" valignment="top" leftline="true" width="0">
5049 <column alignment="center" valignment="top" leftline="true" width="0">
5050 <column alignment="center" valignment="top" leftline="true" width="0">
5051 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5052 <row>
5053 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5054 \begin_inset Text
5055
5056 \begin_layout Standard
5057 \begin_inset Caption
5058
5059 \begin_layout Standard
5060 Tabla larga referenciada
5061 \begin_inset LatexCommand label
5062 name "tab:RefEjemplo"
5063
5064 \end_inset
5065
5066
5067 \end_layout
5068
5069 \end_inset
5070
5071
5072 \begin_inset ERT
5073 status collapsed
5074
5075 \begin_layout Standard
5076
5077
5078 \backslash
5079
5080 \backslash
5081 %
5082 \end_layout
5083
5084 \end_inset
5085
5086
5087 \end_layout
5088
5089 \end_inset
5090 </cell>
5091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5092 \begin_inset Text
5093
5094 \begin_layout Standard
5095
5096 \end_layout
5097
5098 \end_inset
5099 </cell>
5100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5101 \begin_inset Text
5102
5103 \begin_layout Standard
5104
5105 \end_layout
5106
5107 \end_inset
5108 </cell>
5109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5110 \begin_inset Text
5111
5112 \begin_layout Standard
5113
5114 \end_layout
5115
5116 \end_inset
5117 </cell>
5118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5119 \begin_inset Text
5120
5121 \begin_layout Standard
5122
5123 \end_layout
5124
5125 \end_inset
5126 </cell>
5127 </row>
5128 <row topline="true">
5129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5130 \begin_inset Text
5131
5132 \begin_layout Standard
5133 1
5134 \end_layout
5135
5136 \end_inset
5137 </cell>
5138 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5139 \begin_inset Text
5140
5141 \begin_layout Standard
5142 2
5143 \end_layout
5144
5145 \end_inset
5146 </cell>
5147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5148 \begin_inset Text
5149
5150 \begin_layout Standard
5151 3
5152 \end_layout
5153
5154 \end_inset
5155 </cell>
5156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5157 \begin_inset Text
5158
5159 \begin_layout Standard
5160 4
5161 \end_layout
5162
5163 \end_inset
5164 </cell>
5165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5166 \begin_inset Text
5167
5168 \begin_layout Standard
5169 5
5170 \end_layout
5171
5172 \end_inset
5173 </cell>
5174 </row>
5175 <row topline="true">
5176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5177 \begin_inset Text
5178
5179 \begin_layout Standard
5180 asd
5181 \end_layout
5182
5183 \end_inset
5184 </cell>
5185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5186 \begin_inset Text
5187
5188 \begin_layout Standard
5189 s
5190 \end_layout
5191
5192 \end_inset
5193 </cell>
5194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5195 \begin_inset Text
5196
5197 \begin_layout Standard
5198 s
5199 \end_layout
5200
5201 \end_inset
5202 </cell>
5203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5204 \begin_inset Text
5205
5206 \begin_layout Standard
5207 s
5208 \end_layout
5209
5210 \end_inset
5211 </cell>
5212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5213 \begin_inset Text
5214
5215 \begin_layout Standard
5216 asd
5217 \end_layout
5218
5219 \end_inset
5220 </cell>
5221 </row>
5222 <row topline="true">
5223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5224 \begin_inset Text
5225
5226 \begin_layout Standard
5227 asd
5228 \end_layout
5229
5230 \end_inset
5231 </cell>
5232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5233 \begin_inset Text
5234
5235 \begin_layout Standard
5236 s
5237 \end_layout
5238
5239 \end_inset
5240 </cell>
5241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5242 \begin_inset Text
5243
5244 \begin_layout Standard
5245 s
5246 \end_layout
5247
5248 \end_inset
5249 </cell>
5250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5251 \begin_inset Text
5252
5253 \begin_layout Standard
5254 s
5255 \end_layout
5256
5257 \end_inset
5258 </cell>
5259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5260 \begin_inset Text
5261
5262 \begin_layout Standard
5263 asd
5264 \end_layout
5265
5266 \end_inset
5267 </cell>
5268 </row>
5269 <row topline="true">
5270 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5271 \begin_inset Text
5272
5273 \begin_layout Standard
5274 asd
5275 \end_layout
5276
5277 \end_inset
5278 </cell>
5279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5280 \begin_inset Text
5281
5282 \begin_layout Standard
5283 s
5284 \end_layout
5285
5286 \end_inset
5287 </cell>
5288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5289 \begin_inset Text
5290
5291 \begin_layout Standard
5292 s
5293 \end_layout
5294
5295 \end_inset
5296 </cell>
5297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5298 \begin_inset Text
5299
5300 \begin_layout Standard
5301 s
5302 \end_layout
5303
5304 \end_inset
5305 </cell>
5306 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5307 \begin_inset Text
5308
5309 \begin_layout Standard
5310 asd
5311 \end_layout
5312
5313 \end_inset
5314 </cell>
5315 </row>
5316 <row topline="true" bottomline="true">
5317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5318 \begin_inset Text
5319
5320 \begin_layout Standard
5321 asd
5322 \end_layout
5323
5324 \end_inset
5325 </cell>
5326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5327 \begin_inset Text
5328
5329 \begin_layout Standard
5330 sad
5331 \end_layout
5332
5333 \end_inset
5334 </cell>
5335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5336 \begin_inset Text
5337
5338 \begin_layout Standard
5339 asd
5340 \end_layout
5341
5342 \end_inset
5343 </cell>
5344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5345 \begin_inset Text
5346
5347 \begin_layout Standard
5348 asd
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 asd
5358 \end_layout
5359
5360 \end_inset
5361 </cell>
5362 </row>
5363 </lyxtabular>
5364
5365 \end_inset
5366
5367
5368 \end_layout
5369
5370 \begin_layout Standard
5371 Para referenciar una tabla larga, inserta una etiqueta en el encabezado.Observa
5372  que tienes que añadir el prefijo 
5373 \begin_inset Quotes eld
5374 \end_inset
5375
5376
5377 \emph on
5378 tab
5379 \emph default
5380 :
5381 \begin_inset Quotes erd
5382 \end_inset
5383
5384  manualmente en el campo de etiqueta.
5385  
5386 \end_layout
5387
5388 \begin_layout Standard
5389 Esto es una referencia a la tabla\InsetSpace ~
5390
5391 \begin_inset LatexCommand ref
5392 reference "tab:RefEjemplo"
5393
5394 \end_inset
5395
5396 .
5397 \end_layout
5398
5399 \begin_layout Standard
5400 El formato del encabezado puede configurarse junto con todos los demás encabezad
5401 os del documento mediante el paquete LaTeX 
5402 \series bold
5403 caption
5404 \series default
5405
5406 \begin_inset LatexCommand index
5407 name "LaTeX-paquetes ! caption"
5408
5409 \end_inset
5410
5411 , ver sección\InsetSpace ~
5412  
5413 \begin_inset LatexCommand ref
5414 reference "sec:Formato-de-Encabezados"
5415
5416 \end_inset
5417
5418 .
5419 \end_layout
5420
5421 \begin_layout Subsubsection
5422 Anchura de Encabezado
5423 \begin_inset LatexCommand index
5424 name "Tablas Largas ! Anchura de Encabezados"
5425
5426 \end_inset
5427
5428
5429 \end_layout
5430
5431 \begin_layout Standard
5432 La anchura máxima se define por la longitud 
5433 \series bold
5434
5435 \backslash
5436 LTcapwidth
5437 \series default
5438 .
5439  Por defecto es 4\InsetSpace \thinspace{}
5440 in.
5441  Para cambiarla añade el siguiente comando al preámbulo o como ERT en el
5442  documento antes de la tabla larga a la que afecta
5443 \end_layout
5444
5445 \begin_layout Standard
5446
5447 \series bold
5448
5449 \backslash
5450 setlength{
5451 \backslash
5452 LTcapwidth}{ancho}
5453 \end_layout
5454
5455 \begin_layout Standard
5456 donde el ancho puede ser una de las unidades listadas en el apéndice\InsetSpace ~
5457
5458 \begin_inset LatexCommand ref
5459 reference "cha:Unidades-disponibles-en"
5460
5461 \end_inset
5462
5463 .
5464 \end_layout
5465
5466 \begin_layout Standard
5467 Las tablas siguientes muestran la diferencia:
5468 \end_layout
5469
5470 \begin_layout Standard
5471 \begin_inset Tabular
5472 <lyxtabular version="3" rows="6" columns="5">
5473 <features islongtable="true">
5474 <column alignment="center" valignment="top" leftline="true" width="0">
5475 <column alignment="center" valignment="top" leftline="true" width="0">
5476 <column alignment="center" valignment="top" leftline="true" width="0">
5477 <column alignment="center" valignment="top" leftline="true" width="0">
5478 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5479 <row>
5480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5481 \begin_inset Text
5482
5483 \begin_layout Standard
5484 \begin_inset Caption
5485
5486 \begin_layout Standard
5487 Encabezado completo con ancho predeterminado encabezado completo con ancho
5488  predeterminado encabezado completo con ancho predeterminado
5489 \begin_inset OptArg
5490 status collapsed
5491
5492 \begin_layout Standard
5493 Encabezado con ancho predeterminado
5494 \end_layout
5495
5496 \end_inset
5497
5498
5499 \end_layout
5500
5501 \end_inset
5502
5503
5504 \begin_inset ERT
5505 status collapsed
5506
5507 \begin_layout Standard
5508
5509
5510 \backslash
5511
5512 \backslash
5513 %
5514 \end_layout
5515
5516 \end_inset
5517
5518
5519 \end_layout
5520
5521 \end_inset
5522 </cell>
5523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5524 \begin_inset Text
5525
5526 \begin_layout Standard
5527
5528 \end_layout
5529
5530 \end_inset
5531 </cell>
5532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5533 \begin_inset Text
5534
5535 \begin_layout Standard
5536
5537 \end_layout
5538
5539 \end_inset
5540 </cell>
5541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5542 \begin_inset Text
5543
5544 \begin_layout Standard
5545
5546 \end_layout
5547
5548 \end_inset
5549 </cell>
5550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5551 \begin_inset Text
5552
5553 \begin_layout Standard
5554
5555 \end_layout
5556
5557 \end_inset
5558 </cell>
5559 </row>
5560 <row topline="true">
5561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5562 \begin_inset Text
5563
5564 \begin_layout Standard
5565 1
5566 \end_layout
5567
5568 \end_inset
5569 </cell>
5570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5571 \begin_inset Text
5572
5573 \begin_layout Standard
5574 2
5575 \end_layout
5576
5577 \end_inset
5578 </cell>
5579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5580 \begin_inset Text
5581
5582 \begin_layout Standard
5583 3
5584 \end_layout
5585
5586 \end_inset
5587 </cell>
5588 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5589 \begin_inset Text
5590
5591 \begin_layout Standard
5592 4
5593 \end_layout
5594
5595 \end_inset
5596 </cell>
5597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5598 \begin_inset Text
5599
5600 \begin_layout Standard
5601 5
5602 \end_layout
5603
5604 \end_inset
5605 </cell>
5606 </row>
5607 <row topline="true">
5608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5609 \begin_inset Text
5610
5611 \begin_layout Standard
5612 asd
5613 \end_layout
5614
5615 \end_inset
5616 </cell>
5617 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5618 \begin_inset Text
5619
5620 \begin_layout Standard
5621 s
5622 \end_layout
5623
5624 \end_inset
5625 </cell>
5626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5627 \begin_inset Text
5628
5629 \begin_layout Standard
5630 s
5631 \end_layout
5632
5633 \end_inset
5634 </cell>
5635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5636 \begin_inset Text
5637
5638 \begin_layout Standard
5639 s
5640 \end_layout
5641
5642 \end_inset
5643 </cell>
5644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5645 \begin_inset Text
5646
5647 \begin_layout Standard
5648 asd
5649 \end_layout
5650
5651 \end_inset
5652 </cell>
5653 </row>
5654 <row topline="true">
5655 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5656 \begin_inset Text
5657
5658 \begin_layout Standard
5659 asd
5660 \end_layout
5661
5662 \end_inset
5663 </cell>
5664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5665 \begin_inset Text
5666
5667 \begin_layout Standard
5668 s
5669 \end_layout
5670
5671 \end_inset
5672 </cell>
5673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5674 \begin_inset Text
5675
5676 \begin_layout Standard
5677 s
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 s
5687 \end_layout
5688
5689 \end_inset
5690 </cell>
5691 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5692 \begin_inset Text
5693
5694 \begin_layout Standard
5695 asd
5696 \end_layout
5697
5698 \end_inset
5699 </cell>
5700 </row>
5701 <row topline="true">
5702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5703 \begin_inset Text
5704
5705 \begin_layout Standard
5706 asd
5707 \end_layout
5708
5709 \end_inset
5710 </cell>
5711 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5712 \begin_inset Text
5713
5714 \begin_layout Standard
5715 s
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 s
5725 \end_layout
5726
5727 \end_inset
5728 </cell>
5729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5730 \begin_inset Text
5731
5732 \begin_layout Standard
5733 s
5734 \end_layout
5735
5736 \end_inset
5737 </cell>
5738 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5739 \begin_inset Text
5740
5741 \begin_layout Standard
5742 asd
5743 \end_layout
5744
5745 \end_inset
5746 </cell>
5747 </row>
5748 <row topline="true" bottomline="true">
5749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5750 \begin_inset Text
5751
5752 \begin_layout Standard
5753 asd
5754 \end_layout
5755
5756 \end_inset
5757 </cell>
5758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5759 \begin_inset Text
5760
5761 \begin_layout Standard
5762 sad
5763 \end_layout
5764
5765 \end_inset
5766 </cell>
5767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5768 \begin_inset Text
5769
5770 \begin_layout Standard
5771 asd
5772 \end_layout
5773
5774 \end_inset
5775 </cell>
5776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5777 \begin_inset Text
5778
5779 \begin_layout Standard
5780 asd
5781 \end_layout
5782
5783 \end_inset
5784 </cell>
5785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5786 \begin_inset Text
5787
5788 \begin_layout Standard
5789 asd
5790 \end_layout
5791
5792 \end_inset
5793 </cell>
5794 </row>
5795 </lyxtabular>
5796
5797 \end_inset
5798
5799
5800 \end_layout
5801
5802 \begin_layout Standard
5803 \begin_inset ERT
5804 status collapsed
5805
5806 \begin_layout Standard
5807
5808
5809 \backslash
5810 setlength{
5811 \backslash
5812 LTcapwidth}{5cm}
5813 \end_layout
5814
5815 \end_inset
5816
5817
5818 \begin_inset Tabular
5819 <lyxtabular version="3" rows="6" columns="5">
5820 <features islongtable="true">
5821 <column alignment="center" valignment="top" leftline="true" width="0">
5822 <column alignment="center" valignment="top" leftline="true" width="0">
5823 <column alignment="center" valignment="top" leftline="true" width="0">
5824 <column alignment="center" valignment="top" leftline="true" width="0">
5825 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5826 <row>
5827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5828 \begin_inset Text
5829
5830 \begin_layout Standard
5831 \begin_inset Caption
5832
5833 \begin_layout Standard
5834 Encabezado completo con ancho de  5\InsetSpace \thinspace{}
5835 cm encabezado completo con ancho de 5\InsetSpace \thinspace{}
5836 cm
5837  encabezado completo con ancho de 5\InsetSpace \thinspace{}
5838 cm
5839 \begin_inset OptArg
5840 status collapsed
5841
5842 \begin_layout Standard
5843 Encabezado con anchura\InsetSpace \thinspace{}
5844 =\InsetSpace \thinspace{}
5845 5\InsetSpace \thinspace{}
5846 cm
5847 \end_layout
5848
5849 \end_inset
5850
5851
5852 \end_layout
5853
5854 \end_inset
5855
5856
5857 \begin_inset ERT
5858 status collapsed
5859
5860 \begin_layout Standard
5861
5862
5863 \backslash
5864
5865 \backslash
5866 %
5867 \end_layout
5868
5869 \end_inset
5870
5871
5872 \end_layout
5873
5874 \end_inset
5875 </cell>
5876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5877 \begin_inset Text
5878
5879 \begin_layout Standard
5880
5881 \end_layout
5882
5883 \end_inset
5884 </cell>
5885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5886 \begin_inset Text
5887
5888 \begin_layout Standard
5889
5890 \end_layout
5891
5892 \end_inset
5893 </cell>
5894 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5895 \begin_inset Text
5896
5897 \begin_layout Standard
5898
5899 \end_layout
5900
5901 \end_inset
5902 </cell>
5903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5904 \begin_inset Text
5905
5906 \begin_layout Standard
5907
5908 \end_layout
5909
5910 \end_inset
5911 </cell>
5912 </row>
5913 <row topline="true">
5914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5915 \begin_inset Text
5916
5917 \begin_layout Standard
5918 1
5919 \end_layout
5920
5921 \end_inset
5922 </cell>
5923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5924 \begin_inset Text
5925
5926 \begin_layout Standard
5927 2
5928 \end_layout
5929
5930 \end_inset
5931 </cell>
5932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5933 \begin_inset Text
5934
5935 \begin_layout Standard
5936 3
5937 \end_layout
5938
5939 \end_inset
5940 </cell>
5941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5942 \begin_inset Text
5943
5944 \begin_layout Standard
5945 4
5946 \end_layout
5947
5948 \end_inset
5949 </cell>
5950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5951 \begin_inset Text
5952
5953 \begin_layout Standard
5954 5
5955 \end_layout
5956
5957 \end_inset
5958 </cell>
5959 </row>
5960 <row topline="true">
5961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5962 \begin_inset Text
5963
5964 \begin_layout Standard
5965 asd
5966 \end_layout
5967
5968 \end_inset
5969 </cell>
5970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5971 \begin_inset Text
5972
5973 \begin_layout Standard
5974 s
5975 \end_layout
5976
5977 \end_inset
5978 </cell>
5979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5980 \begin_inset Text
5981
5982 \begin_layout Standard
5983 s
5984 \end_layout
5985
5986 \end_inset
5987 </cell>
5988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5989 \begin_inset Text
5990
5991 \begin_layout Standard
5992 s
5993 \end_layout
5994
5995 \end_inset
5996 </cell>
5997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5998 \begin_inset Text
5999
6000 \begin_layout Standard
6001 asd
6002 \end_layout
6003
6004 \end_inset
6005 </cell>
6006 </row>
6007 <row topline="true">
6008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6009 \begin_inset Text
6010
6011 \begin_layout Standard
6012 asd
6013 \end_layout
6014
6015 \end_inset
6016 </cell>
6017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6018 \begin_inset Text
6019
6020 \begin_layout Standard
6021 s
6022 \end_layout
6023
6024 \end_inset
6025 </cell>
6026 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6027 \begin_inset Text
6028
6029 \begin_layout Standard
6030 s
6031 \end_layout
6032
6033 \end_inset
6034 </cell>
6035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6036 \begin_inset Text
6037
6038 \begin_layout Standard
6039 s
6040 \end_layout
6041
6042 \end_inset
6043 </cell>
6044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6045 \begin_inset Text
6046
6047 \begin_layout Standard
6048 asd
6049 \end_layout
6050
6051 \end_inset
6052 </cell>
6053 </row>
6054 <row topline="true">
6055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6056 \begin_inset Text
6057
6058 \begin_layout Standard
6059 asd
6060 \end_layout
6061
6062 \end_inset
6063 </cell>
6064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6065 \begin_inset Text
6066
6067 \begin_layout Standard
6068 s
6069 \end_layout
6070
6071 \end_inset
6072 </cell>
6073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6074 \begin_inset Text
6075
6076 \begin_layout Standard
6077 s
6078 \end_layout
6079
6080 \end_inset
6081 </cell>
6082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6083 \begin_inset Text
6084
6085 \begin_layout Standard
6086 s
6087 \end_layout
6088
6089 \end_inset
6090 </cell>
6091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6092 \begin_inset Text
6093
6094 \begin_layout Standard
6095 asd
6096 \end_layout
6097
6098 \end_inset
6099 </cell>
6100 </row>
6101 <row topline="true" bottomline="true">
6102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6103 \begin_inset Text
6104
6105 \begin_layout Standard
6106 asd
6107 \end_layout
6108
6109 \end_inset
6110 </cell>
6111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6112 \begin_inset Text
6113
6114 \begin_layout Standard
6115 sad
6116 \end_layout
6117
6118 \end_inset
6119 </cell>
6120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6121 \begin_inset Text
6122
6123 \begin_layout Standard
6124 asd
6125 \end_layout
6126
6127 \end_inset
6128 </cell>
6129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6130 \begin_inset Text
6131
6132 \begin_layout Standard
6133 asd
6134 \end_layout
6135
6136 \end_inset
6137 </cell>
6138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6139 \begin_inset Text
6140
6141 \begin_layout Standard
6142 asd
6143 \end_layout
6144
6145 \end_inset
6146 </cell>
6147 </row>
6148 </lyxtabular>
6149
6150 \end_inset
6151
6152
6153 \begin_inset ERT
6154 status collapsed
6155
6156 \begin_layout Standard
6157
6158
6159 \backslash
6160 setlength{
6161 \backslash
6162 LTcapwidth}{4in}
6163 \end_layout
6164
6165 \end_inset
6166
6167
6168 \end_layout
6169
6170 \begin_layout Subsubsection
6171 Encabezados Distintos para cada Página
6172 \begin_inset LatexCommand index
6173 name "Tablas Largas ! Encabezados Diferentes para cada Página"
6174
6175 \end_inset
6176
6177
6178 \end_layout
6179
6180 \begin_layout Standard
6181 Si los otros encabezados debieran ser diferentes del de la primera página,
6182  inserta un encabezado con un título breve no vacío en una fila postiza
6183  de encabezado marcado como primer encabezado.
6184  El encabezado para las restantes páginas se inserta como encabezado sin
6185  título breve en una fila postiza de encabezado marcado como primer encabezado.
6186  Si este encabezado no ha de incluir el número de tabla, usa el comando
6187 \end_layout
6188
6189 \begin_layout Standard
6190
6191 \series bold
6192
6193 \backslash
6194 caption*{texto del encabezado}
6195 \end_layout
6196
6197 \begin_layout Standard
6198 en vez del recuadro de encabezados de LyX.
6199  La etiqueta para referenciar la tabla se inserta en el primer encabezado.
6200  La tabla\InsetSpace ~
6201
6202 \begin_inset LatexCommand ref
6203 reference "tab:DifEncabezados"
6204
6205 \end_inset
6206
6207  es un ejemplo de tabla larga con encabezados distintos donde el segundo
6208  no incluye número de tabla.
6209 \end_layout
6210
6211 \begin_layout Standard
6212 \align center
6213 \begin_inset Tabular
6214 <lyxtabular version="3" rows="60" columns="3">
6215 <features islongtable="true">
6216 <column alignment="left" valignment="top" leftline="true" width="0cm">
6217 <column alignment="left" valignment="top" rightline="true" width="0pt">
6218 <column alignment="right" valignment="top" rightline="true" width="0pt">
6219 <row endfirsthead="true">
6220 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6221 \begin_inset Text
6222
6223 \begin_layout Standard
6224 \begin_inset Caption
6225
6226 \begin_layout Standard
6227 Ejemplo de lista telefónica
6228 \begin_inset LatexCommand label
6229 name "tab:DifEncabezados"
6230
6231 \end_inset
6232
6233
6234 \begin_inset OptArg
6235 status collapsed
6236
6237 \begin_layout Standard
6238 Ejemplo de lista telefónica
6239 \end_layout
6240
6241 \end_inset
6242
6243
6244 \end_layout
6245
6246 \end_inset
6247
6248
6249 \begin_inset ERT
6250 status collapsed
6251
6252 \begin_layout Standard
6253
6254
6255 \backslash
6256
6257 \backslash
6258 %
6259 \end_layout
6260
6261 \end_inset
6262
6263
6264 \end_layout
6265
6266 \end_inset
6267 </cell>
6268 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6269 \begin_inset Text
6270
6271 \begin_layout Standard
6272
6273 \end_layout
6274
6275 \end_inset
6276 </cell>
6277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6278 \begin_inset Text
6279
6280 \begin_layout Standard
6281
6282 \end_layout
6283
6284 \end_inset
6285 </cell>
6286 </row>
6287 <row topline="true" bottomline="true" endfirsthead="true">
6288 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6289 \begin_inset Text
6290
6291 \begin_layout Standard
6292
6293 \series bold
6294 Ejemplo de lista telefónica (ignore los nombres)
6295 \end_layout
6296
6297 \end_inset
6298 </cell>
6299 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6300 \begin_inset Text
6301
6302 \begin_layout Standard
6303
6304 \end_layout
6305
6306 \end_inset
6307 </cell>
6308 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6309 \begin_inset Text
6310
6311 \begin_layout Standard
6312
6313 \end_layout
6314
6315 \end_inset
6316 </cell>
6317 </row>
6318 <row topline="true" bottomline="true" endfirsthead="true">
6319 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6320 \begin_inset Text
6321
6322 \begin_layout Standard
6323
6324 \series bold
6325 NOMBRE
6326 \end_layout
6327
6328 \end_inset
6329 </cell>
6330 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6331 \begin_inset Text
6332
6333 \begin_layout Standard
6334
6335 \end_layout
6336
6337 \end_inset
6338 </cell>
6339 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6340 \begin_inset Text
6341
6342 \begin_layout Standard
6343
6344 \series bold
6345 TEL.
6346 \end_layout
6347
6348 \end_inset
6349 </cell>
6350 </row>
6351 <row bottomline="true" endhead="true">
6352 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6353 \begin_inset Text
6354
6355 \begin_layout Standard
6356 \begin_inset ERT
6357 status collapsed
6358
6359 \begin_layout Standard
6360
6361
6362 \backslash
6363 caption*{Continúa Ejemplo de lista telefónica}
6364 \backslash
6365
6366 \backslash
6367 %
6368 \end_layout
6369
6370 \end_inset
6371
6372
6373 \end_layout
6374
6375 \end_inset
6376 </cell>
6377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6378 \begin_inset Text
6379
6380 \begin_layout Standard
6381
6382 \end_layout
6383
6384 \end_inset
6385 </cell>
6386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6387 \begin_inset Text
6388
6389 \begin_layout Standard
6390
6391 \end_layout
6392
6393 \end_inset
6394 </cell>
6395 </row>
6396 <row topline="true" bottomline="true" endhead="true">
6397 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6398 \begin_inset Text
6399
6400 \begin_layout Standard
6401
6402 \series bold
6403 Ejemplo de lista telefónica
6404 \end_layout
6405
6406 \end_inset
6407 </cell>
6408 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6409 \begin_inset Text
6410
6411 \begin_layout Standard
6412
6413 \end_layout
6414
6415 \end_inset
6416 </cell>
6417 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6418 \begin_inset Text
6419
6420 \begin_layout Standard
6421
6422 \end_layout
6423
6424 \end_inset
6425 </cell>
6426 </row>
6427 <row topline="true" bottomline="true" endhead="true">
6428 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6429 \begin_inset Text
6430
6431 \begin_layout Standard
6432
6433 \series bold
6434 NOMBRE
6435 \end_layout
6436
6437 \end_inset
6438 </cell>
6439 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6440 \begin_inset Text
6441
6442 \begin_layout Standard
6443
6444 \end_layout
6445
6446 \end_inset
6447 </cell>
6448 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6449 \begin_inset Text
6450
6451 \begin_layout Standard
6452
6453 \series bold
6454 TEL.
6455 \end_layout
6456
6457 \end_inset
6458 </cell>
6459 </row>
6460 <row topline="true" bottomline="true" endfoot="true">
6461 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6462 \begin_inset Text
6463
6464 \begin_layout Standard
6465 continúa en página siguiente
6466 \end_layout
6467
6468 \end_inset
6469 </cell>
6470 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6471 \begin_inset Text
6472
6473 \begin_layout Standard
6474
6475 \end_layout
6476
6477 \end_inset
6478 </cell>
6479 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6480 \begin_inset Text
6481
6482 \begin_layout Standard
6483
6484 \end_layout
6485
6486 \end_inset
6487 </cell>
6488 </row>
6489 <row>
6490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6491 \begin_inset Text
6492
6493 \begin_layout Standard
6494
6495 \series bold
6496 Annovi
6497 \end_layout
6498
6499 \end_inset
6500 </cell>
6501 <cell alignment="center" valignment="top" topline="true" usebox="none">
6502 \begin_inset Text
6503
6504 \begin_layout Standard
6505 Silvia
6506 \end_layout
6507
6508 \end_inset
6509 </cell>
6510 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6511 \begin_inset Text
6512
6513 \begin_layout Standard
6514 111
6515 \end_layout
6516
6517 \end_inset
6518 </cell>
6519 </row>
6520 <row>
6521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6522 \begin_inset Text
6523
6524 \begin_layout Standard
6525
6526 \series bold
6527 Bertoli
6528 \end_layout
6529
6530 \end_inset
6531 </cell>
6532 <cell alignment="center" valignment="top" topline="true" usebox="none">
6533 \begin_inset Text
6534
6535 \begin_layout Standard
6536 Stefano
6537 \end_layout
6538
6539 \end_inset
6540 </cell>
6541 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6542 \begin_inset Text
6543
6544 \begin_layout Standard
6545 111
6546 \end_layout
6547
6548 \end_inset
6549 </cell>
6550 </row>
6551 <row>
6552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6553 \begin_inset Text
6554
6555 \begin_layout Standard
6556
6557 \series bold
6558 Bozzi
6559 \end_layout
6560
6561 \end_inset
6562 </cell>
6563 <cell alignment="center" valignment="top" topline="true" usebox="none">
6564 \begin_inset Text
6565
6566 \begin_layout Standard
6567 Walter
6568 \end_layout
6569
6570 \end_inset
6571 </cell>
6572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6573 \begin_inset Text
6574
6575 \begin_layout Standard
6576 111
6577 \end_layout
6578
6579 \end_inset
6580 </cell>
6581 </row>
6582 <row>
6583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6584 \begin_inset Text
6585
6586 \begin_layout Standard
6587
6588 \series bold
6589 Cachia
6590 \end_layout
6591
6592 \end_inset
6593 </cell>
6594 <cell alignment="center" valignment="top" topline="true" usebox="none">
6595 \begin_inset Text
6596
6597 \begin_layout Standard
6598 Maria
6599 \end_layout
6600
6601 \end_inset
6602 </cell>
6603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6604 \begin_inset Text
6605
6606 \begin_layout Standard
6607 111
6608 \end_layout
6609
6610 \end_inset
6611 </cell>
6612 </row>
6613 <row>
6614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6615 \begin_inset Text
6616
6617 \begin_layout Standard
6618
6619 \series bold
6620 Cachia
6621 \end_layout
6622
6623 \end_inset
6624 </cell>
6625 <cell alignment="center" valignment="top" topline="true" usebox="none">
6626 \begin_inset Text
6627
6628 \begin_layout Standard
6629 Maurizio
6630 \end_layout
6631
6632 \end_inset
6633 </cell>
6634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6635 \begin_inset Text
6636
6637 \begin_layout Standard
6638 111
6639 \end_layout
6640
6641 \end_inset
6642 </cell>
6643 </row>
6644 <row>
6645 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6646 \begin_inset Text
6647
6648 \begin_layout Standard
6649
6650 \series bold
6651 Cinquemani
6652 \end_layout
6653
6654 \end_inset
6655 </cell>
6656 <cell alignment="center" valignment="top" topline="true" usebox="none">
6657 \begin_inset Text
6658
6659 \begin_layout Standard
6660 Giusi
6661 \end_layout
6662
6663 \end_inset
6664 </cell>
6665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6666 \begin_inset Text
6667
6668 \begin_layout Standard
6669 111
6670 \end_layout
6671
6672 \end_inset
6673 </cell>
6674 </row>
6675 <row>
6676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6677 \begin_inset Text
6678
6679 \begin_layout Standard
6680
6681 \series bold
6682 Colin
6683 \end_layout
6684
6685 \end_inset
6686 </cell>
6687 <cell alignment="center" valignment="top" topline="true" usebox="none">
6688 \begin_inset Text
6689
6690 \begin_layout Standard
6691 Bernard
6692 \end_layout
6693
6694 \end_inset
6695 </cell>
6696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6697 \begin_inset Text
6698
6699 \begin_layout Standard
6700 111
6701 \end_layout
6702
6703 \end_inset
6704 </cell>
6705 </row>
6706 <row>
6707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6708 \begin_inset Text
6709
6710 \begin_layout Standard
6711
6712 \series bold
6713 Concli
6714 \end_layout
6715
6716 \end_inset
6717 </cell>
6718 <cell alignment="center" valignment="top" topline="true" usebox="none">
6719 \begin_inset Text
6720
6721 \begin_layout Standard
6722 Gianfranco
6723 \end_layout
6724
6725 \end_inset
6726 </cell>
6727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6728 \begin_inset Text
6729
6730 \begin_layout Standard
6731 111
6732 \end_layout
6733
6734 \end_inset
6735 </cell>
6736 </row>
6737 <row>
6738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6739 \begin_inset Text
6740
6741 \begin_layout Standard
6742
6743 \series bold
6744 Dal Bosco
6745 \end_layout
6746
6747 \end_inset
6748 </cell>
6749 <cell alignment="center" valignment="top" topline="true" usebox="none">
6750 \begin_inset Text
6751
6752 \begin_layout Standard
6753 Carolina
6754 \end_layout
6755
6756 \end_inset
6757 </cell>
6758 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6759 \begin_inset Text
6760
6761 \begin_layout Standard
6762 111
6763 \end_layout
6764
6765 \end_inset
6766 </cell>
6767 </row>
6768 <row>
6769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6770 \begin_inset Text
6771
6772 \begin_layout Standard
6773
6774 \series bold
6775 Dalpiaz
6776 \end_layout
6777
6778 \end_inset
6779 </cell>
6780 <cell alignment="center" valignment="top" topline="true" usebox="none">
6781 \begin_inset Text
6782
6783 \begin_layout Standard
6784 Annamaria
6785 \end_layout
6786
6787 \end_inset
6788 </cell>
6789 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6790 \begin_inset Text
6791
6792 \begin_layout Standard
6793 111
6794 \end_layout
6795
6796 \end_inset
6797 </cell>
6798 </row>
6799 <row>
6800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6801 \begin_inset Text
6802
6803 \begin_layout Standard
6804
6805 \series bold
6806 Feliciello
6807 \end_layout
6808
6809 \end_inset
6810 </cell>
6811 <cell alignment="center" valignment="top" topline="true" usebox="none">
6812 \begin_inset Text
6813
6814 \begin_layout Standard
6815 Domenico
6816 \end_layout
6817
6818 \end_inset
6819 </cell>
6820 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6821 \begin_inset Text
6822
6823 \begin_layout Standard
6824 111
6825 \end_layout
6826
6827 \end_inset
6828 </cell>
6829 </row>
6830 <row>
6831 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6832 \begin_inset Text
6833
6834 \begin_layout Standard
6835
6836 \series bold
6837 Focarelli
6838 \end_layout
6839
6840 \end_inset
6841 </cell>
6842 <cell alignment="center" valignment="top" topline="true" usebox="none">
6843 \begin_inset Text
6844
6845 \begin_layout Standard
6846 Paola
6847 \end_layout
6848
6849 \end_inset
6850 </cell>
6851 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6852 \begin_inset Text
6853
6854 \begin_layout Standard
6855 111
6856 \end_layout
6857
6858 \end_inset
6859 </cell>
6860 </row>
6861 <row>
6862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6863 \begin_inset Text
6864
6865 \begin_layout Standard
6866
6867 \series bold
6868 Galletti
6869 \end_layout
6870
6871 \end_inset
6872 </cell>
6873 <cell alignment="center" valignment="top" topline="true" usebox="none">
6874 \begin_inset Text
6875
6876 \begin_layout Standard
6877 Oreste
6878 \end_layout
6879
6880 \end_inset
6881 </cell>
6882 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6883 \begin_inset Text
6884
6885 \begin_layout Standard
6886 111
6887 \end_layout
6888
6889 \end_inset
6890 </cell>
6891 </row>
6892 <row>
6893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6894 \begin_inset Text
6895
6896 \begin_layout Standard
6897
6898 \series bold
6899 Gasparini
6900 \end_layout
6901
6902 \end_inset
6903 </cell>
6904 <cell alignment="center" valignment="top" topline="true" usebox="none">
6905 \begin_inset Text
6906
6907 \begin_layout Standard
6908 Franca
6909 \end_layout
6910
6911 \end_inset
6912 </cell>
6913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6914 \begin_inset Text
6915
6916 \begin_layout Standard
6917 111
6918 \end_layout
6919
6920 \end_inset
6921 </cell>
6922 </row>
6923 <row>
6924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6925 \begin_inset Text
6926
6927 \begin_layout Standard
6928
6929 \series bold
6930 Rizzardi
6931 \series default
6932
6933 \begin_inset Foot
6934 status open
6935
6936 \begin_layout Standard
6937 Ejemplo de nota al pie
6938 \end_layout
6939
6940 \end_inset
6941
6942
6943 \end_layout
6944
6945 \end_inset
6946 </cell>
6947 <cell alignment="center" valignment="top" topline="true" usebox="none">
6948 \begin_inset Text
6949
6950 \begin_layout Standard
6951 Paola
6952 \end_layout
6953
6954 \end_inset
6955 </cell>
6956 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6957 \begin_inset Text
6958
6959 \begin_layout Standard
6960 111
6961 \end_layout
6962
6963 \end_inset
6964 </cell>
6965 </row>
6966 <row>
6967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6968 \begin_inset Text
6969
6970 \begin_layout Standard
6971
6972 \series bold
6973 Lassini
6974 \end_layout
6975
6976 \end_inset
6977 </cell>
6978 <cell alignment="center" valignment="top" topline="true" usebox="none">
6979 \begin_inset Text
6980
6981 \begin_layout Standard
6982 Giancarlo
6983 \end_layout
6984
6985 \end_inset
6986 </cell>
6987 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6988 \begin_inset Text
6989
6990 \begin_layout Standard
6991 111
6992 \end_layout
6993
6994 \end_inset
6995 </cell>
6996 </row>
6997 <row>
6998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6999 \begin_inset Text
7000
7001 \begin_layout Standard
7002
7003 \series bold
7004 Malfatti
7005 \end_layout
7006
7007 \end_inset
7008 </cell>
7009 <cell alignment="center" valignment="top" topline="true" usebox="none">
7010 \begin_inset Text
7011
7012 \begin_layout Standard
7013 Luciano
7014 \end_layout
7015
7016 \end_inset
7017 </cell>
7018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7019 \begin_inset Text
7020
7021 \begin_layout Standard
7022 111
7023 \end_layout
7024
7025 \end_inset
7026 </cell>
7027 </row>
7028 <row>
7029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7030 \begin_inset Text
7031
7032 \begin_layout Standard
7033
7034 \series bold
7035 Malfatti
7036 \end_layout
7037
7038 \end_inset
7039 </cell>
7040 <cell alignment="center" valignment="top" topline="true" usebox="none">
7041 \begin_inset Text
7042
7043 \begin_layout Standard
7044 Valeriano
7045 \end_layout
7046
7047 \end_inset
7048 </cell>
7049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7050 \begin_inset Text
7051
7052 \begin_layout Standard
7053 111
7054 \end_layout
7055
7056 \end_inset
7057 </cell>
7058 </row>
7059 <row>
7060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7061 \begin_inset Text
7062
7063 \begin_layout Standard
7064
7065 \series bold
7066 Meneguzzo
7067 \end_layout
7068
7069 \end_inset
7070 </cell>
7071 <cell alignment="center" valignment="top" topline="true" usebox="none">
7072 \begin_inset Text
7073
7074 \begin_layout Standard
7075 Roberto
7076 \end_layout
7077
7078 \end_inset
7079 </cell>
7080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7081 \begin_inset Text
7082
7083 \begin_layout Standard
7084 111
7085 \end_layout
7086
7087 \end_inset
7088 </cell>
7089 </row>
7090 <row>
7091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7092 \begin_inset Text
7093
7094 \begin_layout Standard
7095
7096 \series bold
7097 Mezzadra
7098 \end_layout
7099
7100 \end_inset
7101 </cell>
7102 <cell alignment="center" valignment="top" topline="true" usebox="none">
7103 \begin_inset Text
7104
7105 \begin_layout Standard
7106 Roberto
7107 \end_layout
7108
7109 \end_inset
7110 </cell>
7111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7112 \begin_inset Text
7113
7114 \begin_layout Standard
7115 111
7116 \end_layout
7117
7118 \end_inset
7119 </cell>
7120 </row>
7121 <row>
7122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7123 \begin_inset Text
7124
7125 \begin_layout Standard
7126
7127 \series bold
7128 Pirpamer
7129 \end_layout
7130
7131 \end_inset
7132 </cell>
7133 <cell alignment="center" valignment="top" topline="true" usebox="none">
7134 \begin_inset Text
7135
7136 \begin_layout Standard
7137 Erich
7138 \end_layout
7139
7140 \end_inset
7141 </cell>
7142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7143 \begin_inset Text
7144
7145 \begin_layout Standard
7146 111
7147 \end_layout
7148
7149 \end_inset
7150 </cell>
7151 </row>
7152 <row>
7153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7154 \begin_inset Text
7155
7156 \begin_layout Standard
7157
7158 \series bold
7159 Pochiesa
7160 \end_layout
7161
7162 \end_inset
7163 </cell>
7164 <cell alignment="center" valignment="top" topline="true" usebox="none">
7165 \begin_inset Text
7166
7167 \begin_layout Standard
7168 Paolo
7169 \end_layout
7170
7171 \end_inset
7172 </cell>
7173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7174 \begin_inset Text
7175
7176 \begin_layout Standard
7177 111, 222
7178 \end_layout
7179
7180 \end_inset
7181 </cell>
7182 </row>
7183 <row>
7184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7185 \begin_inset Text
7186
7187 \begin_layout Standard
7188
7189 \series bold
7190 Radina
7191 \end_layout
7192
7193 \end_inset
7194 </cell>
7195 <cell alignment="center" valignment="top" topline="true" usebox="none">
7196 \begin_inset Text
7197
7198 \begin_layout Standard
7199 Claudio
7200 \end_layout
7201
7202 \end_inset
7203 </cell>
7204 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7205 \begin_inset Text
7206
7207 \begin_layout Standard
7208 111
7209 \end_layout
7210
7211 \end_inset
7212 </cell>
7213 </row>
7214 <row>
7215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7216 \begin_inset Text
7217
7218 \begin_layout Standard
7219
7220 \series bold
7221 Stuffer
7222 \end_layout
7223
7224 \end_inset
7225 </cell>
7226 <cell alignment="center" valignment="top" topline="true" usebox="none">
7227 \begin_inset Text
7228
7229 \begin_layout Standard
7230 Oskar
7231 \end_layout
7232
7233 \end_inset
7234 </cell>
7235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7236 \begin_inset Text
7237
7238 \begin_layout Standard
7239 111
7240 \end_layout
7241
7242 \end_inset
7243 </cell>
7244 </row>
7245 <row>
7246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7247 \begin_inset Text
7248
7249 \begin_layout Standard
7250
7251 \series bold
7252 Tacchelli
7253 \end_layout
7254
7255 \end_inset
7256 </cell>
7257 <cell alignment="center" valignment="top" topline="true" usebox="none">
7258 \begin_inset Text
7259
7260 \begin_layout Standard
7261 Ugo
7262 \end_layout
7263
7264 \end_inset
7265 </cell>
7266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7267 \begin_inset Text
7268
7269 \begin_layout Standard
7270 111
7271 \end_layout
7272
7273 \end_inset
7274 </cell>
7275 </row>
7276 <row>
7277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7278 \begin_inset Text
7279
7280 \begin_layout Standard
7281
7282 \series bold
7283 Tezzele
7284 \end_layout
7285
7286 \end_inset
7287 </cell>
7288 <cell alignment="center" valignment="top" topline="true" usebox="none">
7289 \begin_inset Text
7290
7291 \begin_layout Standard
7292 Margit
7293 \end_layout
7294
7295 \end_inset
7296 </cell>
7297 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7298 \begin_inset Text
7299
7300 \begin_layout Standard
7301 111
7302 \end_layout
7303
7304 \end_inset
7305 </cell>
7306 </row>
7307 <row>
7308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7309 \begin_inset Text
7310
7311 \begin_layout Standard
7312
7313 \series bold
7314 Unterkalmsteiner
7315 \end_layout
7316
7317 \end_inset
7318 </cell>
7319 <cell alignment="center" valignment="top" topline="true" usebox="none">
7320 \begin_inset Text
7321
7322 \begin_layout Standard
7323 Frieda
7324 \end_layout
7325
7326 \end_inset
7327 </cell>
7328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7329 \begin_inset Text
7330
7331 \begin_layout Standard
7332 111
7333 \end_layout
7334
7335 \end_inset
7336 </cell>
7337 </row>
7338 <row>
7339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7340 \begin_inset Text
7341
7342 \begin_layout Standard
7343
7344 \series bold
7345 Vieider
7346 \end_layout
7347
7348 \end_inset
7349 </cell>
7350 <cell alignment="center" valignment="top" topline="true" usebox="none">
7351 \begin_inset Text
7352
7353 \begin_layout Standard
7354 Hilde
7355 \end_layout
7356
7357 \end_inset
7358 </cell>
7359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7360 \begin_inset Text
7361
7362 \begin_layout Standard
7363 111
7364 \end_layout
7365
7366 \end_inset
7367 </cell>
7368 </row>
7369 <row>
7370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7371 \begin_inset Text
7372
7373 \begin_layout Standard
7374
7375 \series bold
7376 Vigna
7377 \end_layout
7378
7379 \end_inset
7380 </cell>
7381 <cell alignment="center" valignment="top" topline="true" usebox="none">
7382 \begin_inset Text
7383
7384 \begin_layout Standard
7385 Jürgen
7386 \end_layout
7387
7388 \end_inset
7389 </cell>
7390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7391 \begin_inset Text
7392
7393 \begin_layout Standard
7394 111
7395 \end_layout
7396
7397 \end_inset
7398 </cell>
7399 </row>
7400 <row>
7401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7402 \begin_inset Text
7403
7404 \begin_layout Standard
7405
7406 \series bold
7407 Weber
7408 \end_layout
7409
7410 \end_inset
7411 </cell>
7412 <cell alignment="center" valignment="top" topline="true" usebox="none">
7413 \begin_inset Text
7414
7415 \begin_layout Standard
7416 Maurizio
7417 \end_layout
7418
7419 \end_inset
7420 </cell>
7421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7422 \begin_inset Text
7423
7424 \begin_layout Standard
7425 111
7426 \end_layout
7427
7428 \end_inset
7429 </cell>
7430 </row>
7431 <row bottomline="true">
7432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7433 \begin_inset Text
7434
7435 \begin_layout Standard
7436
7437 \series bold
7438 Winkler
7439 \end_layout
7440
7441 \end_inset
7442 </cell>
7443 <cell alignment="center" valignment="top" topline="true" usebox="none">
7444 \begin_inset Text
7445
7446 \begin_layout Standard
7447 Franz
7448 \end_layout
7449
7450 \end_inset
7451 </cell>
7452 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7453 \begin_inset Text
7454
7455 \begin_layout Standard
7456 111
7457 \end_layout
7458
7459 \end_inset
7460 </cell>
7461 </row>
7462 <row bottomline="true">
7463 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7464 \begin_inset Text
7465
7466 \begin_layout Standard
7467  
7468 \end_layout
7469
7470 \end_inset
7471 </cell>
7472 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7473 \begin_inset Text
7474
7475 \begin_layout Standard
7476
7477 \end_layout
7478
7479 \end_inset
7480 </cell>
7481 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7482 \begin_inset Text
7483
7484 \begin_layout Standard
7485
7486 \end_layout
7487
7488 \end_inset
7489 </cell>
7490 </row>
7491 <row>
7492 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7493 \begin_inset Text
7494
7495 \begin_layout Standard
7496
7497 \series bold
7498 Annovi
7499 \end_layout
7500
7501 \end_inset
7502 </cell>
7503 <cell alignment="center" valignment="top" topline="true" usebox="none">
7504 \begin_inset Text
7505
7506 \begin_layout Standard
7507 Silvia
7508 \end_layout
7509
7510 \end_inset
7511 </cell>
7512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7513 \begin_inset Text
7514
7515 \begin_layout Standard
7516 555
7517 \end_layout
7518
7519 \end_inset
7520 </cell>
7521 </row>
7522 <row>
7523 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7524 \begin_inset Text
7525
7526 \begin_layout Standard
7527
7528 \series bold
7529 Bertoli
7530 \end_layout
7531
7532 \end_inset
7533 </cell>
7534 <cell alignment="center" valignment="top" topline="true" usebox="none">
7535 \begin_inset Text
7536
7537 \begin_layout Standard
7538 Stefano
7539 \end_layout
7540
7541 \end_inset
7542 </cell>
7543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7544 \begin_inset Text
7545
7546 \begin_layout Standard
7547 555
7548 \end_layout
7549
7550 \end_inset
7551 </cell>
7552 </row>
7553 <row>
7554 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7555 \begin_inset Text
7556
7557 \begin_layout Standard
7558
7559 \series bold
7560 Bozzi
7561 \end_layout
7562
7563 \end_inset
7564 </cell>
7565 <cell alignment="center" valignment="top" topline="true" usebox="none">
7566 \begin_inset Text
7567
7568 \begin_layout Standard
7569 Walter
7570 \end_layout
7571
7572 \end_inset
7573 </cell>
7574 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7575 \begin_inset Text
7576
7577 \begin_layout Standard
7578 555
7579 \end_layout
7580
7581 \end_inset
7582 </cell>
7583 </row>
7584 <row>
7585 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7586 \begin_inset Text
7587
7588 \begin_layout Standard
7589
7590 \series bold
7591 Cachia
7592 \end_layout
7593
7594 \end_inset
7595 </cell>
7596 <cell alignment="center" valignment="top" topline="true" usebox="none">
7597 \begin_inset Text
7598
7599 \begin_layout Standard
7600 Maria
7601 \end_layout
7602
7603 \end_inset
7604 </cell>
7605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7606 \begin_inset Text
7607
7608 \begin_layout Standard
7609 555
7610 \end_layout
7611
7612 \end_inset
7613 </cell>
7614 </row>
7615 <row>
7616 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7617 \begin_inset Text
7618
7619 \begin_layout Standard
7620
7621 \series bold
7622 Cachia
7623 \end_layout
7624
7625 \end_inset
7626 </cell>
7627 <cell alignment="center" valignment="top" topline="true" usebox="none">
7628 \begin_inset Text
7629
7630 \begin_layout Standard
7631 Maurizio
7632 \end_layout
7633
7634 \end_inset
7635 </cell>
7636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7637 \begin_inset Text
7638
7639 \begin_layout Standard
7640 555
7641 \end_layout
7642
7643 \end_inset
7644 </cell>
7645 </row>
7646 <row>
7647 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7648 \begin_inset Text
7649
7650 \begin_layout Standard
7651
7652 \series bold
7653 Cinquemani
7654 \end_layout
7655
7656 \end_inset
7657 </cell>
7658 <cell alignment="center" valignment="top" topline="true" usebox="none">
7659 \begin_inset Text
7660
7661 \begin_layout Standard
7662 Giusi
7663 \end_layout
7664
7665 \end_inset
7666 </cell>
7667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7668 \begin_inset Text
7669
7670 \begin_layout Standard
7671 555
7672 \end_layout
7673
7674 \end_inset
7675 </cell>
7676 </row>
7677 <row>
7678 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7679 \begin_inset Text
7680
7681 \begin_layout Standard
7682
7683 \series bold
7684 Colin
7685 \end_layout
7686
7687 \end_inset
7688 </cell>
7689 <cell alignment="center" valignment="top" topline="true" usebox="none">
7690 \begin_inset Text
7691
7692 \begin_layout Standard
7693 Bernard
7694 \end_layout
7695
7696 \end_inset
7697 </cell>
7698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7699 \begin_inset Text
7700
7701 \begin_layout Standard
7702 555
7703 \end_layout
7704
7705 \end_inset
7706 </cell>
7707 </row>
7708 <row>
7709 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7710 \begin_inset Text
7711
7712 \begin_layout Standard
7713
7714 \series bold
7715 Concli
7716 \end_layout
7717
7718 \end_inset
7719 </cell>
7720 <cell alignment="center" valignment="top" topline="true" usebox="none">
7721 \begin_inset Text
7722
7723 \begin_layout Standard
7724 Gianfranco
7725 \end_layout
7726
7727 \end_inset
7728 </cell>
7729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7730 \begin_inset Text
7731
7732 \begin_layout Standard
7733 555
7734 \end_layout
7735
7736 \end_inset
7737 </cell>
7738 </row>
7739 <row>
7740 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7741 \begin_inset Text
7742
7743 \begin_layout Standard
7744
7745 \series bold
7746 Dal Bosco
7747 \end_layout
7748
7749 \end_inset
7750 </cell>
7751 <cell alignment="center" valignment="top" topline="true" usebox="none">
7752 \begin_inset Text
7753
7754 \begin_layout Standard
7755 Carolina
7756 \end_layout
7757
7758 \end_inset
7759 </cell>
7760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7761 \begin_inset Text
7762
7763 \begin_layout Standard
7764 555
7765 \end_layout
7766
7767 \end_inset
7768 </cell>
7769 </row>
7770 <row>
7771 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7772 \begin_inset Text
7773
7774 \begin_layout Standard
7775
7776 \series bold
7777 Dalpiaz
7778 \end_layout
7779
7780 \end_inset
7781 </cell>
7782 <cell alignment="center" valignment="top" topline="true" usebox="none">
7783 \begin_inset Text
7784
7785 \begin_layout Standard
7786 Annamaria
7787 \end_layout
7788
7789 \end_inset
7790 </cell>
7791 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7792 \begin_inset Text
7793
7794 \begin_layout Standard
7795 555
7796 \end_layout
7797
7798 \end_inset
7799 </cell>
7800 </row>
7801 <row>
7802 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7803 \begin_inset Text
7804
7805 \begin_layout Standard
7806
7807 \series bold
7808 Feliciello
7809 \end_layout
7810
7811 \end_inset
7812 </cell>
7813 <cell alignment="center" valignment="top" topline="true" usebox="none">
7814 \begin_inset Text
7815
7816 \begin_layout Standard
7817 Domenico
7818 \end_layout
7819
7820 \end_inset
7821 </cell>
7822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7823 \begin_inset Text
7824
7825 \begin_layout Standard
7826 555
7827 \end_layout
7828
7829 \end_inset
7830 </cell>
7831 </row>
7832 <row>
7833 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7834 \begin_inset Text
7835
7836 \begin_layout Standard
7837
7838 \series bold
7839 Focarelli
7840 \end_layout
7841
7842 \end_inset
7843 </cell>
7844 <cell alignment="center" valignment="top" topline="true" usebox="none">
7845 \begin_inset Text
7846
7847 \begin_layout Standard
7848 Paola
7849 \end_layout
7850
7851 \end_inset
7852 </cell>
7853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7854 \begin_inset Text
7855
7856 \begin_layout Standard
7857 555
7858 \end_layout
7859
7860 \end_inset
7861 </cell>
7862 </row>
7863 <row>
7864 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7865 \begin_inset Text
7866
7867 \begin_layout Standard
7868
7869 \series bold
7870 Galletti
7871 \end_layout
7872
7873 \end_inset
7874 </cell>
7875 <cell alignment="center" valignment="top" topline="true" usebox="none">
7876 \begin_inset Text
7877
7878 \begin_layout Standard
7879 Oreste
7880 \end_layout
7881
7882 \end_inset
7883 </cell>
7884 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7885 \begin_inset Text
7886
7887 \begin_layout Standard
7888 555
7889 \end_layout
7890
7891 \end_inset
7892 </cell>
7893 </row>
7894 <row>
7895 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7896 \begin_inset Text
7897
7898 \begin_layout Standard
7899
7900 \series bold
7901 Gasparini
7902 \end_layout
7903
7904 \end_inset
7905 </cell>
7906 <cell alignment="center" valignment="top" topline="true" usebox="none">
7907 \begin_inset Text
7908
7909 \begin_layout Standard
7910 Franca
7911 \end_layout
7912
7913 \end_inset
7914 </cell>
7915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7916 \begin_inset Text
7917
7918 \begin_layout Standard
7919 555
7920 \end_layout
7921
7922 \end_inset
7923 </cell>
7924 </row>
7925 <row>
7926 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7927 \begin_inset Text
7928
7929 \begin_layout Standard
7930
7931 \series bold
7932 Rizzardi
7933 \end_layout
7934
7935 \end_inset
7936 </cell>
7937 <cell alignment="center" valignment="top" topline="true" usebox="none">
7938 \begin_inset Text
7939
7940 \begin_layout Standard
7941 Paola
7942 \end_layout
7943
7944 \end_inset
7945 </cell>
7946 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7947 \begin_inset Text
7948
7949 \begin_layout Standard
7950 555
7951 \end_layout
7952
7953 \end_inset
7954 </cell>
7955 </row>
7956 <row>
7957 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7958 \begin_inset Text
7959
7960 \begin_layout Standard
7961
7962 \series bold
7963 Lassini
7964 \end_layout
7965
7966 \end_inset
7967 </cell>
7968 <cell alignment="center" valignment="top" topline="true" usebox="none">
7969 \begin_inset Text
7970
7971 \begin_layout Standard
7972 Giancarlo
7973 \end_layout
7974
7975 \end_inset
7976 </cell>
7977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7978 \begin_inset Text
7979
7980 \begin_layout Standard
7981 555
7982 \end_layout
7983
7984 \end_inset
7985 </cell>
7986 </row>
7987 <row>
7988 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7989 \begin_inset Text
7990
7991 \begin_layout Standard
7992
7993 \series bold
7994 Malfatti
7995 \end_layout
7996
7997 \end_inset
7998 </cell>
7999 <cell alignment="center" valignment="top" topline="true" usebox="none">
8000 \begin_inset Text
8001
8002 \begin_layout Standard
8003 Luciano
8004 \end_layout
8005
8006 \end_inset
8007 </cell>
8008 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8009 \begin_inset Text
8010
8011 \begin_layout Standard
8012 555
8013 \end_layout
8014
8015 \end_inset
8016 </cell>
8017 </row>
8018 <row>
8019 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8020 \begin_inset Text
8021
8022 \begin_layout Standard
8023
8024 \series bold
8025 Malfatti
8026 \end_layout
8027
8028 \end_inset
8029 </cell>
8030 <cell alignment="center" valignment="top" topline="true" usebox="none">
8031 \begin_inset Text
8032
8033 \begin_layout Standard
8034 Valeriano
8035 \end_layout
8036
8037 \end_inset
8038 </cell>
8039 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8040 \begin_inset Text
8041
8042 \begin_layout Standard
8043 555
8044 \end_layout
8045
8046 \end_inset
8047 </cell>
8048 </row>
8049 <row>
8050 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8051 \begin_inset Text
8052
8053 \begin_layout Standard
8054
8055 \series bold
8056 Meneguzzo
8057 \end_layout
8058
8059 \end_inset
8060 </cell>
8061 <cell alignment="center" valignment="top" topline="true" usebox="none">
8062 \begin_inset Text
8063
8064 \begin_layout Standard
8065 Roberto
8066 \end_layout
8067
8068 \end_inset
8069 </cell>
8070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8071 \begin_inset Text
8072
8073 \begin_layout Standard
8074 555
8075 \end_layout
8076
8077 \end_inset
8078 </cell>
8079 </row>
8080 <row bottomline="true">
8081 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8082 \begin_inset Text
8083
8084 \begin_layout Standard
8085
8086 \series bold
8087 Mezzadra
8088 \end_layout
8089
8090 \end_inset
8091 </cell>
8092 <cell alignment="center" valignment="top" topline="true" usebox="none">
8093 \begin_inset Text
8094
8095 \begin_layout Standard
8096 Roberto
8097 \end_layout
8098
8099 \end_inset
8100 </cell>
8101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8102 \begin_inset Text
8103
8104 \begin_layout Standard
8105 555
8106 \end_layout
8107
8108 \end_inset
8109 </cell>
8110 </row>
8111 <row bottomline="true" endlastfoot="true">
8112 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8113 \begin_inset Text
8114
8115 \begin_layout Standard
8116
8117 \end_layout
8118
8119 \end_inset
8120 </cell>
8121 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8122 \begin_inset Text
8123
8124 \begin_layout Standard
8125
8126 \end_layout
8127
8128 \end_inset
8129 </cell>
8130 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8131 \begin_inset Text
8132
8133 \begin_layout Standard
8134
8135 \end_layout
8136
8137 \end_inset
8138 </cell>
8139 </row>
8140 </lyxtabular>
8141
8142 \end_inset
8143
8144
8145 \end_layout
8146
8147 \begin_layout Section
8148 Particularidades de las Tablas Largas
8149 \end_layout
8150
8151 \begin_layout Subsection
8152 Cálculos
8153 \begin_inset LatexCommand index
8154 name "Tablas Largas ! Cálculos"
8155
8156 \end_inset
8157
8158
8159 \end_layout
8160
8161 \begin_layout Standard
8162 LaTeX calcula la altura de las páginas con tabla y sus saltos de página
8163  utilizando los denominados 
8164 \begin_inset Quotes eld
8165 \end_inset
8166
8167 trozos
8168 \begin_inset Quotes erd
8169 \end_inset
8170
8171 , que son partes de la tabla presentes en la memoria de LaTeX.
8172  El valor predeterminado está establecido a solo 20 filas.
8173  Si estás usando tablas largas con muchas páginas, la generación del documento
8174  puede hacerse muy lenta.
8175  No hay problema en aumentar el tamaño de los trozos hasta 100-1000 añadiendo
8176  el siguiente comando en el preámbulo del documento:
8177 \end_layout
8178
8179 \begin_layout Standard
8180
8181 \series bold
8182
8183 \backslash
8184 setcounter{LTchunksize}{100}
8185 \end_layout
8186
8187 \begin_layout Subsection
8188 Flotantes y Tablas Largas
8189 \begin_inset LatexCommand index
8190 name "Tablas Largas ! Flotantes"
8191
8192 \end_inset
8193
8194
8195 \end_layout
8196
8197 \begin_layout Standard
8198 Podría haber problemas si un flotante aparece en la misma página donde comienza
8199  una tabla larga.
8200  Para evitarlo, añade el comando 
8201 \series bold
8202
8203 \backslash
8204 clearpage
8205 \series default
8206  como ERT antes de la tabla.
8207 \end_layout
8208
8209 \begin_layout Subsection
8210 Saltos de Página Forzados
8211 \begin_inset LatexCommand index
8212 name "Tablas Largas ! Saltos de Página Forzados"
8213
8214 \end_inset
8215
8216
8217 \end_layout
8218
8219 \begin_layout Standard
8220 Por defecto, las tablas sólo se cortan entre filas.
8221  Si tienes una celda con líneas múltiples y necesitas un salto de página
8222  dentro de la celda, inserta el comando de nueva línea 
8223 \begin_inset Quotes eld
8224 \end_inset
8225
8226
8227 \series bold
8228
8229 \backslash
8230
8231 \backslash
8232
8233 \series default
8234
8235 \begin_inset Quotes erd
8236 \end_inset
8237
8238  como ERT en el punto en que quieras cortar.
8239  Antes del comando 
8240 \begin_inset Quotes eld
8241 \end_inset
8242
8243
8244 \series bold
8245
8246 \backslash
8247
8248 \backslash
8249
8250 \series default
8251
8252 \begin_inset Quotes erd
8253 \end_inset
8254
8255  debes insertar en ERT tantos caracteres 
8256 \begin_inset Quotes eld
8257 \end_inset
8258
8259
8260 \series bold
8261 &
8262 \series default
8263
8264 \begin_inset Quotes erd
8265 \end_inset
8266
8267  como columnas siguientes de la tabla.
8268  
8269 \series bold
8270 &
8271 \series default
8272  es el caracter para separar celdas.
8273  Escribe en ERT después de cada 
8274 \series bold
8275 &
8276 \series default
8277  el contenido de la celda siguiente correspondiente y borra el contenido
8278  de esas celdas.
8279 \newline
8280 Detrás del comando 
8281 \series bold
8282
8283 \backslash
8284
8285 \backslash
8286
8287 \series default
8288 , inserta tantos 
8289 \series bold
8290 &
8291 \series default
8292  como columnas haya delante de la actual.
8293  En la tabla\InsetSpace ~
8294
8295 \begin_inset LatexCommand ref
8296 reference "tab:Saltos de Página Forzados"
8297
8298 \end_inset
8299
8300  la celda que debería cortarse está en la segunda columna seguida de otra
8301  columna.
8302  Por eso el siguiente comando se inserta en la celda como ERT detrás de
8303  
8304 \begin_inset Quotes eld
8305 \end_inset
8306
8307
8308 \emph on
8309 Castelchiodato,
8310 \emph default
8311
8312 \begin_inset Quotes erd
8313 \end_inset
8314
8315 :
8316 \end_layout
8317
8318 \begin_layout Standard
8319
8320 \series bold
8321 & 111
8322 \backslash
8323
8324 \backslash
8325
8326 \newline
8327 &
8328 \end_layout
8329
8330 \begin_layout Standard
8331 El 
8332 \begin_inset Quotes eld
8333 \end_inset
8334
8335 111
8336 \begin_inset Quotes erd
8337 \end_inset
8338
8339  en la tercera columna de la fila se ha borrado.
8340  Si la fila más baja de la tabla larga no tiene, por alguna razón, línea
8341  superior pero quisieras una línea horizontal donde se corta la celda, usa
8342  este comando alternativo:
8343 \end_layout
8344
8345 \begin_layout Standard
8346
8347 \series bold
8348 & 111
8349 \backslash
8350
8351 \backslash
8352
8353 \newline
8354
8355 \backslash
8356 hline &
8357 \end_layout
8358
8359 \begin_layout Standard
8360 Cuando la celda a cortar está en la última columna, el comando
8361 \end_layout
8362
8363 \begin_layout Standard
8364
8365 \series bold
8366
8367 \backslash
8368 setlength{
8369 \backslash
8370 parf\SpecialChar \textcompwordmark{}
8371 illskip}{0pt}
8372 \end_layout
8373
8374 \begin_layout Standard
8375 debe insertarse como ERT al principio de la celda.
8376  Esto garantiza que la parte de la celda que será mostrada en la nueva página
8377  aparecerá con toda su anchura.
8378 \end_layout
8379
8380 \begin_layout Standard
8381 \align center
8382 \begin_inset Tabular
8383 <lyxtabular version="3" rows="39" columns="3">
8384 <features islongtable="true">
8385 <column alignment="left" valignment="top" leftline="true" width="0cm">
8386 <column alignment="left" valignment="top" rightline="true" width="3cm">
8387 <column alignment="right" valignment="top" rightline="true" width="0pt">
8388 <row endfirsthead="true">
8389 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8390 \begin_inset Text
8391
8392 \begin_layout Standard
8393 \begin_inset Caption
8394
8395 \begin_layout Standard
8396 Tabla con salto de página forzado en celda
8397 \begin_inset LatexCommand label
8398 name "tab:Saltos de Página Forzados"
8399
8400 \end_inset
8401
8402
8403 \begin_inset OptArg
8404 status collapsed
8405
8406 \begin_layout Standard
8407 Tabla con salto de página forzado en celda
8408 \end_layout
8409
8410 \end_inset
8411
8412
8413 \end_layout
8414
8415 \end_inset
8416
8417
8418 \begin_inset ERT
8419 status collapsed
8420
8421 \begin_layout Standard
8422
8423
8424 \backslash
8425
8426 \backslash
8427 %
8428 \end_layout
8429
8430 \end_inset
8431
8432
8433 \end_layout
8434
8435 \end_inset
8436 </cell>
8437 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8438 \begin_inset Text
8439
8440 \begin_layout Standard
8441
8442 \end_layout
8443
8444 \end_inset
8445 </cell>
8446 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8447 \begin_inset Text
8448
8449 \begin_layout Standard
8450
8451 \end_layout
8452
8453 \end_inset
8454 </cell>
8455 </row>
8456 <row topline="true" bottomline="true" endfirsthead="true">
8457 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8458 \begin_inset Text
8459
8460 \begin_layout Standard
8461
8462 \series bold
8463 Ejemplo de lista telefónica (ignore los nombres)
8464 \end_layout
8465
8466 \end_inset
8467 </cell>
8468 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8469 \begin_inset Text
8470
8471 \begin_layout Standard
8472
8473 \end_layout
8474
8475 \end_inset
8476 </cell>
8477 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8478 \begin_inset Text
8479
8480 \begin_layout Standard
8481
8482 \end_layout
8483
8484 \end_inset
8485 </cell>
8486 </row>
8487 <row topline="true" bottomline="true" endfirsthead="true">
8488 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8489 \begin_inset Text
8490
8491 \begin_layout Standard
8492
8493 \series bold
8494 NOMBRE
8495 \end_layout
8496
8497 \end_inset
8498 </cell>
8499 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8500 \begin_inset Text
8501
8502 \begin_layout Standard
8503
8504 \end_layout
8505
8506 \end_inset
8507 </cell>
8508 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8509 \begin_inset Text
8510
8511 \begin_layout Standard
8512
8513 \series bold
8514 TEL.
8515 \end_layout
8516
8517 \end_inset
8518 </cell>
8519 </row>
8520 <row bottomline="true" endhead="true">
8521 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8522 \begin_inset Text
8523
8524 \begin_layout Standard
8525 \begin_inset ERT
8526 status collapsed
8527
8528 \begin_layout Standard
8529
8530
8531 \backslash
8532 caption*{Continúa tabla con salto de página forzado en celda}
8533 \backslash
8534
8535 \backslash
8536 %
8537 \end_layout
8538
8539 \end_inset
8540
8541
8542 \end_layout
8543
8544 \end_inset
8545 </cell>
8546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8547 \begin_inset Text
8548
8549 \begin_layout Standard
8550
8551 \end_layout
8552
8553 \end_inset
8554 </cell>
8555 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8556 \begin_inset Text
8557
8558 \begin_layout Standard
8559
8560 \end_layout
8561
8562 \end_inset
8563 </cell>
8564 </row>
8565 <row topline="true" bottomline="true" endhead="true">
8566 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8567 \begin_inset Text
8568
8569 \begin_layout Standard
8570  
8571 \series bold
8572 Ejemplo de lista telefónica
8573 \end_layout
8574
8575 \end_inset
8576 </cell>
8577 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8578 \begin_inset Text
8579
8580 \begin_layout Standard
8581
8582 \end_layout
8583
8584 \end_inset
8585 </cell>
8586 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8587 \begin_inset Text
8588
8589 \begin_layout Standard
8590
8591 \end_layout
8592
8593 \end_inset
8594 </cell>
8595 </row>
8596 <row topline="true" bottomline="true" endhead="true">
8597 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8598 \begin_inset Text
8599
8600 \begin_layout Standard
8601
8602 \series bold
8603 NOMBRE
8604 \end_layout
8605
8606 \end_inset
8607 </cell>
8608 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8609 \begin_inset Text
8610
8611 \begin_layout Standard
8612
8613 \end_layout
8614
8615 \end_inset
8616 </cell>
8617 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8618 \begin_inset Text
8619
8620 \begin_layout Standard
8621
8622 \series bold
8623 TEL.
8624 \end_layout
8625
8626 \end_inset
8627 </cell>
8628 </row>
8629 <row topline="true" bottomline="true" endfoot="true">
8630 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8631 \begin_inset Text
8632
8633 \begin_layout Standard
8634 continúa en página siguiente
8635 \end_layout
8636
8637 \end_inset
8638 </cell>
8639 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8640 \begin_inset Text
8641
8642 \begin_layout Standard
8643
8644 \end_layout
8645
8646 \end_inset
8647 </cell>
8648 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8649 \begin_inset Text
8650
8651 \begin_layout Standard
8652
8653 \end_layout
8654
8655 \end_inset
8656 </cell>
8657 </row>
8658 <row>
8659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8660 \begin_inset Text
8661
8662 \begin_layout Standard
8663
8664 \series bold
8665 Annovi
8666 \end_layout
8667
8668 \end_inset
8669 </cell>
8670 <cell alignment="center" valignment="top" topline="true" usebox="none">
8671 \begin_inset Text
8672
8673 \begin_layout Standard
8674 Silvia
8675 \end_layout
8676
8677 \end_inset
8678 </cell>
8679 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8680 \begin_inset Text
8681
8682 \begin_layout Standard
8683 111
8684 \end_layout
8685
8686 \end_inset
8687 </cell>
8688 </row>
8689 <row>
8690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8691 \begin_inset Text
8692
8693 \begin_layout Standard
8694
8695 \series bold
8696 Bertoli
8697 \end_layout
8698
8699 \end_inset
8700 </cell>
8701 <cell alignment="center" valignment="top" topline="true" usebox="none">
8702 \begin_inset Text
8703
8704 \begin_layout Standard
8705 Stefano
8706 \end_layout
8707
8708 \end_inset
8709 </cell>
8710 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8711 \begin_inset Text
8712
8713 \begin_layout Standard
8714 111
8715 \end_layout
8716
8717 \end_inset
8718 </cell>
8719 </row>
8720 <row>
8721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8722 \begin_inset Text
8723
8724 \begin_layout Standard
8725
8726 \series bold
8727 Bozzi
8728 \end_layout
8729
8730 \end_inset
8731 </cell>
8732 <cell alignment="center" valignment="top" topline="true" usebox="none">
8733 \begin_inset Text
8734
8735 \begin_layout Standard
8736 Walter
8737 \end_layout
8738
8739 \end_inset
8740 </cell>
8741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8742 \begin_inset Text
8743
8744 \begin_layout Standard
8745 111
8746 \end_layout
8747
8748 \end_inset
8749 </cell>
8750 </row>
8751 <row>
8752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8753 \begin_inset Text
8754
8755 \begin_layout Standard
8756
8757 \series bold
8758 Cachia
8759 \end_layout
8760
8761 \end_inset
8762 </cell>
8763 <cell alignment="center" valignment="top" topline="true" usebox="none">
8764 \begin_inset Text
8765
8766 \begin_layout Standard
8767 Maria
8768 \end_layout
8769
8770 \end_inset
8771 </cell>
8772 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8773 \begin_inset Text
8774
8775 \begin_layout Standard
8776 111
8777 \end_layout
8778
8779 \end_inset
8780 </cell>
8781 </row>
8782 <row>
8783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8784 \begin_inset Text
8785
8786 \begin_layout Standard
8787
8788 \series bold
8789 Cachia
8790 \end_layout
8791
8792 \end_inset
8793 </cell>
8794 <cell alignment="center" valignment="top" topline="true" usebox="none">
8795 \begin_inset Text
8796
8797 \begin_layout Standard
8798 Maurizio
8799 \end_layout
8800
8801 \end_inset
8802 </cell>
8803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8804 \begin_inset Text
8805
8806 \begin_layout Standard
8807 111
8808 \end_layout
8809
8810 \end_inset
8811 </cell>
8812 </row>
8813 <row>
8814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8815 \begin_inset Text
8816
8817 \begin_layout Standard
8818
8819 \series bold
8820 Cinquemani
8821 \end_layout
8822
8823 \end_inset
8824 </cell>
8825 <cell alignment="center" valignment="top" topline="true" usebox="none">
8826 \begin_inset Text
8827
8828 \begin_layout Standard
8829 Giusi
8830 \end_layout
8831
8832 \end_inset
8833 </cell>
8834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8835 \begin_inset Text
8836
8837 \begin_layout Standard
8838 111
8839 \end_layout
8840
8841 \end_inset
8842 </cell>
8843 </row>
8844 <row>
8845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8846 \begin_inset Text
8847
8848 \begin_layout Standard
8849
8850 \series bold
8851 Colin
8852 \end_layout
8853
8854 \end_inset
8855 </cell>
8856 <cell alignment="center" valignment="top" topline="true" usebox="none">
8857 \begin_inset Text
8858
8859 \begin_layout Standard
8860 Bernard
8861 \end_layout
8862
8863 \end_inset
8864 </cell>
8865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8866 \begin_inset Text
8867
8868 \begin_layout Standard
8869 111
8870 \end_layout
8871
8872 \end_inset
8873 </cell>
8874 </row>
8875 <row>
8876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8877 \begin_inset Text
8878
8879 \begin_layout Standard
8880
8881 \series bold
8882 Concli
8883 \end_layout
8884
8885 \end_inset
8886 </cell>
8887 <cell alignment="center" valignment="top" topline="true" usebox="none">
8888 \begin_inset Text
8889
8890 \begin_layout Standard
8891 Gianfranco
8892 \end_layout
8893
8894 \end_inset
8895 </cell>
8896 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8897 \begin_inset Text
8898
8899 \begin_layout Standard
8900 111
8901 \end_layout
8902
8903 \end_inset
8904 </cell>
8905 </row>
8906 <row>
8907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8908 \begin_inset Text
8909
8910 \begin_layout Standard
8911
8912 \series bold
8913 Dal Bosco
8914 \end_layout
8915
8916 \end_inset
8917 </cell>
8918 <cell alignment="center" valignment="top" topline="true" usebox="none">
8919 \begin_inset Text
8920
8921 \begin_layout Standard
8922 Carolina
8923 \end_layout
8924
8925 \end_inset
8926 </cell>
8927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8928 \begin_inset Text
8929
8930 \begin_layout Standard
8931 111
8932 \end_layout
8933
8934 \end_inset
8935 </cell>
8936 </row>
8937 <row>
8938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8939 \begin_inset Text
8940
8941 \begin_layout Standard
8942
8943 \series bold
8944 Dalpiaz
8945 \end_layout
8946
8947 \end_inset
8948 </cell>
8949 <cell alignment="center" valignment="top" topline="true" usebox="none">
8950 \begin_inset Text
8951
8952 \begin_layout Standard
8953 Annamaria
8954 \end_layout
8955
8956 \end_inset
8957 </cell>
8958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8959 \begin_inset Text
8960
8961 \begin_layout Standard
8962 111
8963 \end_layout
8964
8965 \end_inset
8966 </cell>
8967 </row>
8968 <row>
8969 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8970 \begin_inset Text
8971
8972 \begin_layout Standard
8973
8974 \series bold
8975 Feliciello
8976 \end_layout
8977
8978 \end_inset
8979 </cell>
8980 <cell alignment="center" valignment="top" topline="true" usebox="none">
8981 \begin_inset Text
8982
8983 \begin_layout Standard
8984 Domenico
8985 \end_layout
8986
8987 \end_inset
8988 </cell>
8989 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8990 \begin_inset Text
8991
8992 \begin_layout Standard
8993 111
8994 \end_layout
8995
8996 \end_inset
8997 </cell>
8998 </row>
8999 <row>
9000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9001 \begin_inset Text
9002
9003 \begin_layout Standard
9004
9005 \series bold
9006 Focarelli
9007 \end_layout
9008
9009 \end_inset
9010 </cell>
9011 <cell alignment="center" valignment="top" topline="true" usebox="none">
9012 \begin_inset Text
9013
9014 \begin_layout Standard
9015 Paola
9016 \end_layout
9017
9018 \end_inset
9019 </cell>
9020 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9021 \begin_inset Text
9022
9023 \begin_layout Standard
9024 111
9025 \end_layout
9026
9027 \end_inset
9028 </cell>
9029 </row>
9030 <row>
9031 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9032 \begin_inset Text
9033
9034 \begin_layout Standard
9035
9036 \series bold
9037 Galletti
9038 \end_layout
9039
9040 \end_inset
9041 </cell>
9042 <cell alignment="center" valignment="top" topline="true" usebox="none">
9043 \begin_inset Text
9044
9045 \begin_layout Standard
9046 Oreste
9047 \end_layout
9048
9049 \end_inset
9050 </cell>
9051 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9052 \begin_inset Text
9053
9054 \begin_layout Standard
9055 111
9056 \end_layout
9057
9058 \end_inset
9059 </cell>
9060 </row>
9061 <row>
9062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9063 \begin_inset Text
9064
9065 \begin_layout Standard
9066
9067 \series bold
9068 Gasparini
9069 \end_layout
9070
9071 \end_inset
9072 </cell>
9073 <cell alignment="center" valignment="top" topline="true" usebox="none">
9074 \begin_inset Text
9075
9076 \begin_layout Standard
9077 Franca
9078 \end_layout
9079
9080 \end_inset
9081 </cell>
9082 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9083 \begin_inset Text
9084
9085 \begin_layout Standard
9086 111
9087 \end_layout
9088
9089 \end_inset
9090 </cell>
9091 </row>
9092 <row>
9093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9094 \begin_inset Text
9095
9096 \begin_layout Standard
9097
9098 \series bold
9099 Lassini
9100 \end_layout
9101
9102 \end_inset
9103 </cell>
9104 <cell alignment="center" valignment="top" topline="true" usebox="none">
9105 \begin_inset Text
9106
9107 \begin_layout Standard
9108 Giancarlo
9109 \end_layout
9110
9111 \end_inset
9112 </cell>
9113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9114 \begin_inset Text
9115
9116 \begin_layout Standard
9117 111
9118 \end_layout
9119
9120 \end_inset
9121 </cell>
9122 </row>
9123 <row>
9124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9125 \begin_inset Text
9126
9127 \begin_layout Standard
9128
9129 \series bold
9130 Malfatti
9131 \end_layout
9132
9133 \end_inset
9134 </cell>
9135 <cell alignment="center" valignment="top" topline="true" usebox="none">
9136 \begin_inset Text
9137
9138 \begin_layout Standard
9139 Luciano
9140 \end_layout
9141
9142 \end_inset
9143 </cell>
9144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9145 \begin_inset Text
9146
9147 \begin_layout Standard
9148 111
9149 \end_layout
9150
9151 \end_inset
9152 </cell>
9153 </row>
9154 <row>
9155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9156 \begin_inset Text
9157
9158 \begin_layout Standard
9159
9160 \series bold
9161 Malfatti
9162 \end_layout
9163
9164 \end_inset
9165 </cell>
9166 <cell alignment="center" valignment="top" topline="true" usebox="none">
9167 \begin_inset Text
9168
9169 \begin_layout Standard
9170 Valeriano
9171 \end_layout
9172
9173 \end_inset
9174 </cell>
9175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9176 \begin_inset Text
9177
9178 \begin_layout Standard
9179 111
9180 \end_layout
9181
9182 \end_inset
9183 </cell>
9184 </row>
9185 <row>
9186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9187 \begin_inset Text
9188
9189 \begin_layout Standard
9190
9191 \series bold
9192 Meneguzzo
9193 \end_layout
9194
9195 \end_inset
9196 </cell>
9197 <cell alignment="center" valignment="top" topline="true" usebox="none">
9198 \begin_inset Text
9199
9200 \begin_layout Standard
9201 Roberto
9202 \end_layout
9203
9204 \end_inset
9205 </cell>
9206 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9207 \begin_inset Text
9208
9209 \begin_layout Standard
9210 111
9211 \end_layout
9212
9213 \end_inset
9214 </cell>
9215 </row>
9216 <row>
9217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9218 \begin_inset Text
9219
9220 \begin_layout Standard
9221
9222 \series bold
9223 Mezzadra
9224 \end_layout
9225
9226 \end_inset
9227 </cell>
9228 <cell alignment="center" valignment="top" topline="true" usebox="none">
9229 \begin_inset Text
9230
9231 \begin_layout Standard
9232 Roberto
9233 \end_layout
9234
9235 \end_inset
9236 </cell>
9237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9238 \begin_inset Text
9239
9240 \begin_layout Standard
9241 111
9242 \end_layout
9243
9244 \end_inset
9245 </cell>
9246 </row>
9247 <row>
9248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9249 \begin_inset Text
9250
9251 \begin_layout Standard
9252
9253 \series bold
9254 Pirpamer
9255 \end_layout
9256
9257 \end_inset
9258 </cell>
9259 <cell alignment="center" valignment="top" topline="true" usebox="none">
9260 \begin_inset Text
9261
9262 \begin_layout Standard
9263 Erich
9264 \end_layout
9265
9266 \end_inset
9267 </cell>
9268 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9269 \begin_inset Text
9270
9271 \begin_layout Standard
9272 111
9273 \end_layout
9274
9275 \end_inset
9276 </cell>
9277 </row>
9278 <row>
9279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9280 \begin_inset Text
9281
9282 \begin_layout Standard
9283
9284 \series bold
9285 Pochiesa
9286 \end_layout
9287
9288 \end_inset
9289 </cell>
9290 <cell alignment="center" valignment="top" topline="true" usebox="none">
9291 \begin_inset Text
9292
9293 \begin_layout Standard
9294 Paolo
9295 \end_layout
9296
9297 \end_inset
9298 </cell>
9299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9300 \begin_inset Text
9301
9302 \begin_layout Standard
9303 111, 222
9304 \end_layout
9305
9306 \end_inset
9307 </cell>
9308 </row>
9309 <row>
9310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9311 \begin_inset Text
9312
9313 \begin_layout Standard
9314
9315 \series bold
9316 Radina
9317 \end_layout
9318
9319 \end_inset
9320 </cell>
9321 <cell alignment="center" valignment="top" topline="true" usebox="none">
9322 \begin_inset Text
9323
9324 \begin_layout Standard
9325 Claudio
9326 \end_layout
9327
9328 \end_inset
9329 </cell>
9330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9331 \begin_inset Text
9332
9333 \begin_layout Standard
9334 111
9335 \end_layout
9336
9337 \end_inset
9338 </cell>
9339 </row>
9340 <row>
9341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9342 \begin_inset Text
9343
9344 \begin_layout Standard
9345
9346 \series bold
9347 Rizzardi
9348 \end_layout
9349
9350 \end_inset
9351 </cell>
9352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9353 \begin_inset Text
9354
9355 \begin_layout Standard
9356 Paolo, 11.
9357  Fürst von Montecompatri, 11.
9358  Fürst von Sulmona und Vivaro, 10.
9359  Fürst von Rossano, 5.
9360  Herzog von Canemorte, 11.
9361  Herzog von Palombara, 5.
9362  Herzog von Castelchiodato,
9363 \begin_inset ERT
9364 status collapsed
9365
9366 \begin_layout Standard
9367
9368 & 111
9369 \backslash
9370
9371 \backslash
9372
9373 \end_layout
9374
9375 \begin_layout Standard
9376
9377 &
9378 \end_layout
9379
9380 \end_inset
9381
9382  11.
9383  Herzog von Poggionativo, 11.
9384  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9385  Graf von Valinfreda, 11.
9386  Baron von Cropalati, 11.
9387  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9388 \end_layout
9389
9390 \end_inset
9391 </cell>
9392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9393 \begin_inset Text
9394
9395 \begin_layout Standard
9396
9397 \end_layout
9398
9399 \end_inset
9400 </cell>
9401 </row>
9402 <row>
9403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9404 \begin_inset Text
9405
9406 \begin_layout Standard
9407
9408 \series bold
9409 Stuffer
9410 \end_layout
9411
9412 \end_inset
9413 </cell>
9414 <cell alignment="center" valignment="top" topline="true" usebox="none">
9415 \begin_inset Text
9416
9417 \begin_layout Standard
9418 Oskar
9419 \end_layout
9420
9421 \end_inset
9422 </cell>
9423 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9424 \begin_inset Text
9425
9426 \begin_layout Standard
9427 111
9428 \end_layout
9429
9430 \end_inset
9431 </cell>
9432 </row>
9433 <row>
9434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9435 \begin_inset Text
9436
9437 \begin_layout Standard
9438
9439 \series bold
9440 Tacchelli
9441 \end_layout
9442
9443 \end_inset
9444 </cell>
9445 <cell alignment="center" valignment="top" topline="true" usebox="none">
9446 \begin_inset Text
9447
9448 \begin_layout Standard
9449 Ugo
9450 \end_layout
9451
9452 \end_inset
9453 </cell>
9454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9455 \begin_inset Text
9456
9457 \begin_layout Standard
9458 111
9459 \end_layout
9460
9461 \end_inset
9462 </cell>
9463 </row>
9464 <row>
9465 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9466 \begin_inset Text
9467
9468 \begin_layout Standard
9469
9470 \series bold
9471 Tezzele
9472 \end_layout
9473
9474 \end_inset
9475 </cell>
9476 <cell alignment="center" valignment="top" topline="true" usebox="none">
9477 \begin_inset Text
9478
9479 \begin_layout Standard
9480 Margit
9481 \end_layout
9482
9483 \end_inset
9484 </cell>
9485 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9486 \begin_inset Text
9487
9488 \begin_layout Standard
9489 111
9490 \end_layout
9491
9492 \end_inset
9493 </cell>
9494 </row>
9495 <row>
9496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9497 \begin_inset Text
9498
9499 \begin_layout Standard
9500
9501 \series bold
9502 Unterkalmsteiner
9503 \end_layout
9504
9505 \end_inset
9506 </cell>
9507 <cell alignment="center" valignment="top" topline="true" usebox="none">
9508 \begin_inset Text
9509
9510 \begin_layout Standard
9511 Frieda
9512 \end_layout
9513
9514 \end_inset
9515 </cell>
9516 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9517 \begin_inset Text
9518
9519 \begin_layout Standard
9520 111
9521 \end_layout
9522
9523 \end_inset
9524 </cell>
9525 </row>
9526 <row>
9527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9528 \begin_inset Text
9529
9530 \begin_layout Standard
9531
9532 \series bold
9533 Vieider
9534 \end_layout
9535
9536 \end_inset
9537 </cell>
9538 <cell alignment="center" valignment="top" topline="true" usebox="none">
9539 \begin_inset Text
9540
9541 \begin_layout Standard
9542 Hilde
9543 \end_layout
9544
9545 \end_inset
9546 </cell>
9547 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9548 \begin_inset Text
9549
9550 \begin_layout Standard
9551 111
9552 \end_layout
9553
9554 \end_inset
9555 </cell>
9556 </row>
9557 <row>
9558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9559 \begin_inset Text
9560
9561 \begin_layout Standard
9562
9563 \series bold
9564 Vigna
9565 \end_layout
9566
9567 \end_inset
9568 </cell>
9569 <cell alignment="center" valignment="top" topline="true" usebox="none">
9570 \begin_inset Text
9571
9572 \begin_layout Standard
9573 Jürgen
9574 \end_layout
9575
9576 \end_inset
9577 </cell>
9578 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9579 \begin_inset Text
9580
9581 \begin_layout Standard
9582 111
9583 \end_layout
9584
9585 \end_inset
9586 </cell>
9587 </row>
9588 <row>
9589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9590 \begin_inset Text
9591
9592 \begin_layout Standard
9593
9594 \series bold
9595 Weber
9596 \end_layout
9597
9598 \end_inset
9599 </cell>
9600 <cell alignment="center" valignment="top" topline="true" usebox="none">
9601 \begin_inset Text
9602
9603 \begin_layout Standard
9604 Maurizio
9605 \end_layout
9606
9607 \end_inset
9608 </cell>
9609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9610 \begin_inset Text
9611
9612 \begin_layout Standard
9613 111
9614 \end_layout
9615
9616 \end_inset
9617 </cell>
9618 </row>
9619 <row bottomline="true">
9620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9621 \begin_inset Text
9622
9623 \begin_layout Standard
9624
9625 \series bold
9626 Winkler
9627 \end_layout
9628
9629 \end_inset
9630 </cell>
9631 <cell alignment="center" valignment="top" topline="true" usebox="none">
9632 \begin_inset Text
9633
9634 \begin_layout Standard
9635 Franz
9636 \end_layout
9637
9638 \end_inset
9639 </cell>
9640 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9641 \begin_inset Text
9642
9643 \begin_layout Standard
9644 111
9645 \end_layout
9646
9647 \end_inset
9648 </cell>
9649 </row>
9650 <row endlastfoot="true">
9651 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9652 \begin_inset Text
9653
9654 \begin_layout Standard
9655
9656 \end_layout
9657
9658 \end_inset
9659 </cell>
9660 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9661 \begin_inset Text
9662
9663 \begin_layout Standard
9664
9665 \end_layout
9666
9667 \end_inset
9668 </cell>
9669 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9670 \begin_inset Text
9671
9672 \begin_layout Standard
9673
9674 \end_layout
9675
9676 \end_inset
9677 </cell>
9678 </row>
9679 </lyxtabular>
9680
9681 \end_inset
9682
9683
9684 \end_layout
9685
9686 \begin_layout Section
9687 Líneas Múltiples en Columnas y Filas
9688 \end_layout
9689
9690 \begin_layout Subsection
9691 Líneas Múltiples en Celdas
9692 \begin_inset LatexCommand label
9693 name "sub:Líneas-Múltiples-en"
9694
9695 \end_inset
9696
9697
9698 \begin_inset LatexCommand index
9699 name "Líneas Múltiples en Celdas"
9700
9701 \end_inset
9702
9703
9704 \begin_inset LatexCommand index
9705 name "Tablas ! Saltos de Línea"
9706
9707 \end_inset
9708
9709
9710 \end_layout
9711
9712 \begin_layout Standard
9713 \align center
9714 \begin_inset Float table
9715 placement H
9716 wide false
9717 sideways false
9718 status collapsed
9719
9720 \begin_layout Standard
9721 \begin_inset Caption
9722
9723 \begin_layout Standard
9724 \begin_inset LatexCommand label
9725 name "tab:Tabla-con-múltiples"
9726
9727 \end_inset
9728
9729 Tabla con líneas múltiples en celda
9730 \end_layout
9731
9732 \end_inset
9733
9734
9735 \end_layout
9736
9737 \begin_layout Standard
9738 \align center
9739 \begin_inset Tabular
9740 <lyxtabular version="3" rows="3" columns="3">
9741 <features>
9742 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9743 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9744 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9745 <row topline="true">
9746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9747 \begin_inset Text
9748
9749 \begin_layout Standard
9750 líneas
9751 \begin_inset ERT
9752 status collapsed
9753
9754 \begin_layout Standard
9755
9756
9757 \backslash
9758 linebreak 
9759 \end_layout
9760
9761 \end_inset
9762
9763 múltiples
9764 \end_layout
9765
9766 \end_inset
9767 </cell>
9768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9769 \begin_inset Text
9770
9771 \begin_layout Standard
9772 b
9773 \end_layout
9774
9775 \end_inset
9776 </cell>
9777 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9778 \begin_inset Text
9779
9780 \begin_layout Standard
9781 c
9782 \end_layout
9783
9784 \end_inset
9785 </cell>
9786 </row>
9787 <row topline="true">
9788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9789 \begin_inset Text
9790
9791 \begin_layout Standard
9792 d
9793 \end_layout
9794
9795 \end_inset
9796 </cell>
9797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9798 \begin_inset Text
9799
9800 \begin_layout Standard
9801 e
9802 \end_layout
9803
9804 \end_inset
9805 </cell>
9806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9807 \begin_inset Text
9808
9809 \begin_layout Standard
9810 f
9811 \end_layout
9812
9813 \end_inset
9814 </cell>
9815 </row>
9816 <row topline="true" bottomline="true">
9817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9818 \begin_inset Text
9819
9820 \begin_layout Standard
9821 g
9822 \end_layout
9823
9824 \end_inset
9825 </cell>
9826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9827 \begin_inset Text
9828
9829 \begin_layout Standard
9830 h
9831 \end_layout
9832
9833 \end_inset
9834 </cell>
9835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9836 \begin_inset Text
9837
9838 \begin_layout Standard
9839 i
9840 \end_layout
9841
9842 \end_inset
9843 </cell>
9844 </row>
9845 </lyxtabular>
9846
9847 \end_inset
9848
9849
9850 \end_layout
9851
9852 \end_inset
9853
9854
9855 \end_layout
9856
9857 \begin_layout Standard
9858 Al ajustar anchura fija en una columna se habilita la entrada de texto como
9859  párrafos con varias líneas y guionado.
9860 \end_layout
9861
9862 \begin_layout Standard
9863 Para generar la tabla\InsetSpace ~
9864
9865 \begin_inset LatexCommand ref
9866 reference "tab:Tabla-con-múltiples"
9867
9868 \end_inset
9869
9870 , crea una tabla 3×3, marca la primera celda y click-derecha sobre ella.
9871  En el diálogo que surge establece una anchura de 2.5\InsetSpace \thinspace{}
9872 cm y escoge centro en
9873  alineación vertical y horizontal.
9874  Como nuestro texto es menor de 2.5\InsetSpace \thinspace{}
9875 cm, sólo aparece una línea.
9876  Para poner dos añadimos un salto de línea con el comando en ERT
9877 \end_layout
9878
9879 \begin_layout Standard
9880
9881 \series bold
9882
9883 \backslash
9884 linebreak
9885 \end_layout
9886
9887 \begin_layout Standard
9888 Si el texto es más ancho que la celda será automáticamente dividido en líneas.
9889 \end_layout
9890
9891 \begin_layout Standard
9892 Para centrar verticalmente el texto en las otras dos celdas de la primera
9893  fila, haz click-derecha en la segunda celda, ajusta una anchura de 0.5\InsetSpace \thinspace{}
9894 cm
9895  y marca alineaciones centrales.
9896  Haz lo mismo con la tercera celda de la fila.
9897 \end_layout
9898
9899 \begin_layout Standard
9900 Si hay una palabra larga en una celda con anchura fija, LaTeX no puede cortarla
9901  con guión si es la primera entrada.
9902  Por eso hay que insertar algo para que dicha palabra no sea la primera
9903  entrada: Añade el comando
9904 \end_layout
9905
9906 \begin_layout Standard
9907
9908 \series bold
9909
9910 \backslash
9911 hspace{0pt}
9912 \end_layout
9913
9914 \begin_layout Standard
9915 en ERT antes de la palabra.
9916  Como el espacio es 0 la salida no cambia.
9917  La tabla\InsetSpace ~
9918
9919 \begin_inset LatexCommand ref
9920 reference "tab:Tabla-con-y"
9921
9922 \end_inset
9923
9924  muestra el efecto.
9925 \end_layout
9926
9927 \begin_layout Standard
9928 \begin_inset Float table
9929 placement b
9930 wide false
9931 sideways false
9932 status collapsed
9933
9934 \begin_layout Standard
9935 \begin_inset Caption
9936
9937 \begin_layout Standard
9938 \begin_inset LatexCommand label
9939 name "tab:Tabla-con-y"
9940
9941 \end_inset
9942
9943 Tablas con y sin guión
9944 \end_layout
9945
9946 \end_inset
9947
9948
9949 \end_layout
9950
9951 \begin_layout Standard
9952
9953 \hfill
9954
9955 \begin_inset Tabular
9956 <lyxtabular version="3" rows="3" columns="3">
9957 <features>
9958 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9959 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9960 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9961 <row topline="true">
9962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9963 \begin_inset Text
9964
9965 \begin_layout Standard
9966 celdaconpalabramuylarga
9967 \end_layout
9968
9969 \end_inset
9970 </cell>
9971 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9972 \begin_inset Text
9973
9974 \begin_layout Standard
9975 b
9976 \end_layout
9977
9978 \end_inset
9979 </cell>
9980 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9981 \begin_inset Text
9982
9983 \begin_layout Standard
9984 c
9985 \end_layout
9986
9987 \end_inset
9988 </cell>
9989 </row>
9990 <row topline="true">
9991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9992 \begin_inset Text
9993
9994 \begin_layout Standard
9995 d
9996 \end_layout
9997
9998 \end_inset
9999 </cell>
10000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10001 \begin_inset Text
10002
10003 \begin_layout Standard
10004 e
10005 \end_layout
10006
10007 \end_inset
10008 </cell>
10009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10010 \begin_inset Text
10011
10012 \begin_layout Standard
10013 f
10014 \end_layout
10015
10016 \end_inset
10017 </cell>
10018 </row>
10019 <row topline="true" bottomline="true">
10020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10021 \begin_inset Text
10022
10023 \begin_layout Standard
10024 g
10025 \end_layout
10026
10027 \end_inset
10028 </cell>
10029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10030 \begin_inset Text
10031
10032 \begin_layout Standard
10033 h
10034 \end_layout
10035
10036 \end_inset
10037 </cell>
10038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10039 \begin_inset Text
10040
10041 \begin_layout Standard
10042 i
10043 \end_layout
10044
10045 \end_inset
10046 </cell>
10047 </row>
10048 </lyxtabular>
10049
10050 \end_inset
10051
10052
10053 \hfill
10054
10055 \begin_inset Tabular
10056 <lyxtabular version="3" rows="3" columns="3">
10057 <features>
10058 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10059 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10060 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10061 <row topline="true">
10062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10063 \begin_inset Text
10064
10065 \begin_layout Standard
10066 \begin_inset ERT
10067 status collapsed
10068
10069 \begin_layout Standard
10070
10071
10072 \backslash
10073 hspace{0pt}
10074 \end_layout
10075
10076 \end_inset
10077
10078 celdaconpalabramuylarga
10079 \end_layout
10080
10081 \end_inset
10082 </cell>
10083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10084 \begin_inset Text
10085
10086 \begin_layout Standard
10087 b
10088 \end_layout
10089
10090 \end_inset
10091 </cell>
10092 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10093 \begin_inset Text
10094
10095 \begin_layout Standard
10096 c
10097 \end_layout
10098
10099 \end_inset
10100 </cell>
10101 </row>
10102 <row topline="true">
10103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10104 \begin_inset Text
10105
10106 \begin_layout Standard
10107 d
10108 \end_layout
10109
10110 \end_inset
10111 </cell>
10112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10113 \begin_inset Text
10114
10115 \begin_layout Standard
10116 e
10117 \end_layout
10118
10119 \end_inset
10120 </cell>
10121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10122 \begin_inset Text
10123
10124 \begin_layout Standard
10125 f
10126 \end_layout
10127
10128 \end_inset
10129 </cell>
10130 </row>
10131 <row topline="true" bottomline="true">
10132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10133 \begin_inset Text
10134
10135 \begin_layout Standard
10136 g
10137 \end_layout
10138
10139 \end_inset
10140 </cell>
10141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10142 \begin_inset Text
10143
10144 \begin_layout Standard
10145 h
10146 \end_layout
10147
10148 \end_inset
10149 </cell>
10150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10151 \begin_inset Text
10152
10153 \begin_layout Standard
10154 i
10155 \end_layout
10156
10157 \end_inset
10158 </cell>
10159 </row>
10160 </lyxtabular>
10161
10162 \end_inset
10163
10164
10165 \hfill
10166
10167 \end_layout
10168
10169 \end_inset
10170
10171
10172 \end_layout
10173
10174 \begin_layout Standard
10175
10176 \newpage
10177
10178 \end_layout
10179
10180 \begin_layout Subsection
10181 Multicolumnas
10182 \begin_inset LatexCommand label
10183 name "sub:Multicolumnas"
10184
10185 \end_inset
10186
10187
10188 \begin_inset LatexCommand index
10189 name "Multicolumnas"
10190
10191 \end_inset
10192
10193
10194 \begin_inset LatexCommand index
10195 name "Tablas ! Multicolumnas"
10196
10197 \end_inset
10198
10199
10200 \end_layout
10201
10202 \begin_layout Subsubsection
10203 Fundamentos de Multicolumna
10204 \end_layout
10205
10206 \begin_layout Standard
10207 Para extender una celda sobre varias columnas, se marcan las celdas que
10208  se desee combinar y se usa el botón 
10209 \begin_inset Graphics
10210         filename ../../images/tabular-feature_multicolumn.xpm
10211         scale 85
10212
10213 \end_inset
10214
10215 , o el menú 
10216 \family sans
10217 Editar\SpecialChar \menuseparator
10218 Tabla\SpecialChar \menuseparator
10219 Multicolumna
10220 \family default
10221 , o click-derecha sobre las celdas marcadas y se selecciona en el diálogo,
10222  bajo la pestaña 
10223 \family sans
10224 Configuración
10225 \family default
10226 , la casilla Multicolumna.
10227 \end_layout
10228
10229 \begin_layout Standard
10230 Las multicolumnas tienen su propia configuración de celdas.
10231  Esto es, los cambios de bordes, alineación y anchura sólo afectan a la
10232  multicolumna.
10233  Aquí hay un ejemplo de tabla con una multicolumna en la primera fila y
10234  otra en la última fila sin borde superior:
10235 \end_layout
10236
10237 \begin_layout Standard
10238 \align center
10239 \begin_inset Tabular
10240 <lyxtabular version="3" rows="3" columns="4">
10241 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10242 <column alignment="center" valignment="top" leftline="true" width="0pt">
10243 <column alignment="center" valignment="middle" leftline="true" width="0">
10244 <column alignment="center" valignment="top" leftline="true" width="0in">
10245 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10246 <row topline="true" bottomline="true">
10247 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10248 \begin_inset Text
10249
10250 \begin_layout Standard
10251 abc
10252 \end_layout
10253
10254 \end_inset
10255 </cell>
10256 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10257 \begin_inset Text
10258
10259 \begin_layout Standard
10260 def ghi
10261 \end_layout
10262
10263 \end_inset
10264 </cell>
10265 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10266 \begin_inset Text
10267
10268 \begin_layout Standard
10269
10270 \end_layout
10271
10272 \end_inset
10273 </cell>
10274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10275 \begin_inset Text
10276
10277 \begin_layout Standard
10278 jkl
10279 \end_layout
10280
10281 \end_inset
10282 </cell>
10283 </row>
10284 <row topline="true">
10285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10286 \begin_inset Text
10287
10288 \begin_layout Standard
10289
10290 \family roman
10291 \series medium
10292 \shape up
10293 \size normal
10294 \emph off
10295 \bar no
10296 \noun off
10297 \color none
10298 A
10299 \end_layout
10300
10301 \end_inset
10302 </cell>
10303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10304 \begin_inset Text
10305
10306 \begin_layout Standard
10307 B
10308 \end_layout
10309
10310 \end_inset
10311 </cell>
10312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10313 \begin_inset Text
10314
10315 \begin_layout Standard
10316 C
10317 \end_layout
10318
10319 \end_inset
10320 </cell>
10321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10322 \begin_inset Text
10323
10324 \begin_layout Standard
10325 D
10326 \end_layout
10327
10328 \end_inset
10329 </cell>
10330 </row>
10331 <row topline="true" bottomline="true">
10332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10333 \begin_inset Text
10334
10335 \begin_layout Standard
10336 1
10337 \end_layout
10338
10339 \end_inset
10340 </cell>
10341 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10342 \begin_inset Text
10343
10344 \begin_layout Standard
10345 2
10346 \end_layout
10347
10348 \end_inset
10349 </cell>
10350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10351 \begin_inset Text
10352
10353 \begin_layout Standard
10354 3
10355 \end_layout
10356
10357 \end_inset
10358 </cell>
10359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10360 \begin_inset Text
10361
10362 \begin_layout Standard
10363 4
10364 \end_layout
10365
10366 \end_inset
10367 </cell>
10368 </row>
10369 </lyxtabular>
10370
10371 \end_inset
10372
10373
10374 \end_layout
10375
10376 \begin_layout Subsubsection
10377 Cálculos en Multicolumnas
10378 \begin_inset LatexCommand label
10379 name "sub:Cálculos-en-Multicolumnas"
10380
10381 \end_inset
10382
10383
10384 \begin_inset LatexCommand index
10385 name "Multicolumnas ! Cálculos"
10386
10387 \end_inset
10388
10389
10390 \end_layout
10391
10392 \begin_layout Standard
10393 LyX soporta multicolumnas directamente, pero hay que prestar atención a
10394  la anchura de celda de las columnas combinadas en la celda multicolumna.
10395 \end_layout
10396
10397 \begin_layout Standard
10398 \begin_inset Float table
10399 wide false
10400 sideways false
10401 status open
10402
10403 \begin_layout Standard
10404 \begin_inset Caption
10405
10406 \begin_layout Standard
10407 \begin_inset LatexCommand label
10408 name "tab:Tabla-con-centrado"
10409
10410 \end_inset
10411
10412 Tabla con texto centrado en multicolumna sobre dos columnas que tienen exactamen
10413 te la mitad de anchura que la celda multicolumna
10414 \begin_inset OptArg
10415 status collapsed
10416
10417 \begin_layout Standard
10418 Tabla multicolumna perfecta
10419 \end_layout
10420
10421 \end_inset
10422
10423
10424 \end_layout
10425
10426 \end_inset
10427
10428
10429 \end_layout
10430
10431 \begin_layout Standard
10432 \align center
10433 \begin_inset Tabular
10434 <lyxtabular version="3" rows="3" columns="3">
10435 <features>
10436 <column alignment="center" valignment="middle" leftline="true" width="0" special="|>{\centering}m{1.25cm-6.2pt}">
10437 <column alignment="center" valignment="middle" leftline="true" width="0">
10438 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10439 <row topline="true">
10440 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special="|>{\centering}m{2.5cm}|">
10441 \begin_inset Text
10442
10443 \begin_layout Standard
10444 multicolumna línea múltiple
10445 \end_layout
10446
10447 \end_inset
10448 </cell>
10449 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10450 \begin_inset Text
10451
10452 \begin_layout Standard
10453
10454 \end_layout
10455
10456 \end_inset
10457 </cell>
10458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10459 \begin_inset Text
10460
10461 \begin_layout Standard
10462 c
10463 \end_layout
10464
10465 \end_inset
10466 </cell>
10467 </row>
10468 <row topline="true">
10469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10470 \begin_inset Text
10471
10472 \begin_layout Standard
10473 d
10474 \end_layout
10475
10476 \end_inset
10477 </cell>
10478 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10479 \begin_inset Text
10480
10481 \begin_layout Standard
10482 e
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 f
10492 \end_layout
10493
10494 \end_inset
10495 </cell>
10496 </row>
10497 <row topline="true" bottomline="true">
10498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10499 \begin_inset Text
10500
10501 \begin_layout Standard
10502 g
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 h
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 i
10521 \end_layout
10522
10523 \end_inset
10524 </cell>
10525 </row>
10526 </lyxtabular>
10527
10528 \end_inset
10529
10530
10531 \end_layout
10532
10533 \end_inset
10534
10535
10536 \end_layout
10537
10538 \begin_layout Standard
10539 Por ejemplo, para crear la tabla\InsetSpace ~
10540
10541 \begin_inset LatexCommand ref
10542 reference "tab:Tabla-con-centrado"
10543
10544 \end_inset
10545
10546 , marca las dos primeras celdas en la primera fila de una tabla 3×3 y haz
10547  click-derecha.
10548  En el diálogo marca 
10549 \emph on
10550 multicolumna
10551 \emph default
10552
10553 \emph on
10554 alineación centro
10555 \emph default
10556  y una anchura de 2.5\InsetSpace \thinspace{}
10557 cm.
10558  Las columnas combinadas deberían tener exactamente la mitad de la anchura
10559  de la celda multicolumna, así que deberías ajustar 1.25\InsetSpace \thinspace{}
10560 cm para la primera
10561  columna.
10562  La segunda columna tendrá entonces automáticamente 1.25\InsetSpace \thinspace{}
10563 cm de anchura.
10564  Para la tabla\InsetSpace ~
10565
10566 \begin_inset LatexCommand ref
10567 reference "tab:Tabla-sin-mitad"
10568
10569 \end_inset
10570
10571  se ha procedido de la siguiente manera:
10572 \end_layout
10573
10574 \begin_layout Standard
10575 \begin_inset Float table
10576 wide false
10577 sideways false
10578 status open
10579
10580 \begin_layout Standard
10581 \begin_inset Caption
10582
10583 \begin_layout Standard
10584 \begin_inset LatexCommand label
10585 name "tab:Tabla-sin-mitad"
10586
10587 \end_inset
10588
10589 Tabla en la que las columnas combinadas no tienen exactamente la mitad de
10590  anchura que la celda multicolumna
10591 \begin_inset OptArg
10592 status open
10593
10594 \begin_layout Standard
10595 Tabla multicolumna imperfecta
10596 \end_layout
10597
10598 \end_inset
10599
10600
10601 \end_layout
10602
10603 \end_inset
10604
10605
10606 \end_layout
10607
10608 \begin_layout Standard
10609 \align center
10610 \begin_inset Tabular
10611 <lyxtabular version="3" rows="3" columns="3">
10612 <features>
10613 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10614 <column alignment="center" valignment="top" leftline="true" width="0">
10615 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10616 <row topline="true" bottomline="true">
10617 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10618 \begin_inset Text
10619
10620 \begin_layout Standard
10621 multicolumna línea múltiple
10622 \end_layout
10623
10624 \end_inset
10625 </cell>
10626 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10627 \begin_inset Text
10628
10629 \begin_layout Standard
10630
10631 \end_layout
10632
10633 \end_inset
10634 </cell>
10635 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10636 \begin_inset Text
10637
10638 \begin_layout Standard
10639 c
10640 \end_layout
10641
10642 \end_inset
10643 </cell>
10644 </row>
10645 <row topline="true">
10646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10647 \begin_inset Text
10648
10649 \begin_layout Standard
10650 d
10651 \end_layout
10652
10653 \end_inset
10654 </cell>
10655 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10656 \begin_inset Text
10657
10658 \begin_layout Standard
10659 e
10660 \end_layout
10661
10662 \end_inset
10663 </cell>
10664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10665 \begin_inset Text
10666
10667 \begin_layout Standard
10668 f
10669 \end_layout
10670
10671 \end_inset
10672 </cell>
10673 </row>
10674 <row topline="true" bottomline="true">
10675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10676 \begin_inset Text
10677
10678 \begin_layout Standard
10679 g
10680 \end_layout
10681
10682 \end_inset
10683 </cell>
10684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10685 \begin_inset Text
10686
10687 \begin_layout Standard
10688 h
10689 \end_layout
10690
10691 \end_inset
10692 </cell>
10693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10694 \begin_inset Text
10695
10696 \begin_layout Standard
10697 i
10698 \end_layout
10699
10700 \end_inset
10701 </cell>
10702 </row>
10703 </lyxtabular>
10704
10705 \end_inset
10706
10707
10708 \end_layout
10709
10710 \end_inset
10711
10712
10713 \end_layout
10714
10715 \begin_layout Standard
10716 Se ve que la primera columna no tiene la mitad de ancho que la celda multicolumn
10717 a, es un poco mayor.
10718  La razón es que la anchura dada para una celda 
10719 \begin_inset Formula $W_{g}$
10720 \end_inset
10721
10722  no es su anchura total 
10723 \begin_inset Formula $W_{\mathrm{tot}}$
10724 \end_inset
10725
10726  porque una celda es siempre algo mayor que la anchura dada.
10727  El Apéndice\InsetSpace ~
10728
10729 \begin_inset LatexCommand eqref
10730 reference "cha:Explicación-de-la-Ecuación"
10731
10732 \end_inset
10733
10734  lo explica con detalle.
10735 \end_layout
10736
10737 \begin_layout Standard
10738 La anchura dada necesaria, 
10739 \begin_inset Formula $W_{g\, n}$
10740 \end_inset
10741
10742  para combinar 
10743 \emph on
10744 n
10745 \emph default
10746  columnas puede calcularse de manera que cada columna tenga una anchura
10747  total de 
10748 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10749 \end_inset
10750
10751 :
10752 \begin_inset Formula \begin{equation}
10753 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10754
10755 \end_inset
10756
10757
10758 \end_layout
10759
10760 \begin_layout Standard
10761 En nuestro caso tenemos 
10762 \begin_inset Formula $n=2$
10763 \end_inset
10764
10765
10766 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10767 \end_inset
10768
10769 \InsetSpace \thinspace{}
10770 cm y los valores predeterminados para longitudes, así la ecuación\InsetSpace ~
10771
10772 \begin_inset LatexCommand ref
10773 reference "eq:Wgn"
10774
10775 \end_inset
10776
10777  queda
10778 \begin_inset Formula \begin{equation}
10779 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10780
10781 \end_inset
10782
10783
10784 \end_layout
10785
10786 \begin_layout Standard
10787 Para habilitar cálculos en LaTeX, debe cargarse en el preámbulo el paquete
10788  
10789 \series bold
10790 calc
10791 \series default
10792  con la línea
10793 \begin_inset LatexCommand index
10794 name "LaTeX-paquetes ! calc"
10795
10796 \end_inset
10797
10798
10799 \end_layout
10800
10801 \begin_layout Standard
10802
10803 \series bold
10804
10805 \backslash
10806 usepackage{calc}
10807 \end_layout
10808
10809 \begin_layout Standard
10810 LyX no permite calcular longitudes en el campo Ancho del cuadro de diálogo.
10811  Por tanto hay que insertar un argumento LaTeX en el diálogo.
10812  He aquí un repaso de los argumentos:
10813 \end_layout
10814
10815 \begin_layout Itemize
10816
10817 \series bold
10818 p{ancho}
10819 \series default
10820  crea celdas con anchura fija, el texto alineado arriba
10821 \end_layout
10822
10823 \begin_layout Itemize
10824
10825 \series bold
10826 m{ancho}
10827 \series default
10828  crea celdas con anchura fija, el texto con alineación vertical centrada
10829  
10830 \end_layout
10831
10832 \begin_layout Itemize
10833
10834 \series bold
10835 b{ancho}
10836 \series default
10837  crea celdas con anchura fija, el texto alineado abajo
10838 \end_layout
10839
10840 \begin_layout Standard
10841 Al introducir un argumento LaTeX, todas las propiedades de celda puestas
10842  en el diálogo se ignoran.
10843  
10844 \begin_inset Note Greyedout
10845 status collapsed
10846
10847 \begin_layout Standard
10848
10849 \series bold
10850 Nota:
10851 \series default
10852  Debido a un error, LyX muestra de todas formas estas propiedades.
10853 \end_layout
10854
10855 \end_inset
10856
10857  El comando 
10858 \series bold
10859
10860 \backslash
10861 centering
10862 \series default
10863  centra horizontalmente el texto.
10864  Puedes entonces introducir el siguiente argumento de LaTeX para la primera
10865  columna extendida:
10866 \end_layout
10867
10868 \begin_layout Standard
10869
10870 \series bold
10871 |>{
10872 \backslash
10873 centering}m{1.25cm-6.2pt}
10874 \end_layout
10875
10876 \begin_layout Standard
10877 La barra "
10878 \series bold
10879 |
10880 \series default
10881 " al principio dibuja el borde y el comando 
10882 \series bold
10883 >{ }
10884 \series default
10885  significa que los comandos entre llaves se aplican antes de crear la celda.
10886 \end_layout
10887
10888 \begin_layout Standard
10889 Aunque hemos escogido alineación centrada para el texto de la celda multicolumna
10890 , aún está alineado a la izquierda.
10891  Esto se debe a que LyX solo aplica alineado a columnas simples.
10892  Así que para multicolumnas hemos de usar el argumento de LaTeX
10893 \end_layout
10894
10895 \begin_layout Standard
10896
10897 \series bold
10898 |>{
10899 \backslash
10900 centering}m{2.5cm}|
10901 \end_layout
10902
10903 \begin_layout Subsection
10904 Multifilas
10905 \begin_inset LatexCommand index
10906 name "Multifilas"
10907
10908 \end_inset
10909
10910
10911 \begin_inset LatexCommand index
10912 name "Tablas ! Multifilas"
10913
10914 \end_inset
10915
10916
10917 \begin_inset LatexCommand index
10918 name "LaTeX-paquetes ! multirow"
10919
10920 \end_inset
10921
10922
10923 \end_layout
10924
10925 \begin_layout Standard
10926 A diferencia de multicolumnas, LyX aún no soporta multifilas por lo que
10927  hace falta un poco de ERT.
10928  Hay que cargar el paquete de LaTeX 
10929 \series bold
10930 multirow
10931 \series default
10932  en el preámbulo del documento con el comando
10933 \end_layout
10934
10935 \begin_layout Standard
10936
10937 \series bold
10938
10939 \backslash
10940 usepackage{multirow}
10941 \end_layout
10942
10943 \begin_layout Standard
10944 Las multifilas se crean con el comando
10945 \end_layout
10946
10947 \begin_layout Standard
10948
10949 \series bold
10950
10951 \backslash
10952 multirow{número de filas}{ancho de celda}{entrada de celda}
10953 \end_layout
10954
10955 \begin_layout Standard
10956 Para crear la siguiente tabla:
10957 \end_layout
10958
10959 \begin_layout Standard
10960 \align center
10961 \begin_inset ERT
10962 status collapsed
10963
10964 \begin_layout Standard
10965
10966
10967 \backslash
10968 renewcommand{
10969 \backslash
10970 multirowsetup}{
10971 \backslash
10972 centering}
10973 \end_layout
10974
10975 \end_inset
10976
10977
10978 \begin_inset Tabular
10979 <lyxtabular version="3" rows="3" columns="3">
10980 <features>
10981 <column alignment="center" valignment="top" leftline="true" width="0">
10982 <column alignment="center" valignment="top" leftline="true" width="0">
10983 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10984 <row topline="true">
10985 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10986 \begin_inset Text
10987
10988 \begin_layout Standard
10989 a
10990 \end_layout
10991
10992 \end_inset
10993 </cell>
10994 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10995 \begin_inset Text
10996
10997 \begin_layout Standard
10998 b
10999 \end_layout
11000
11001 \end_inset
11002 </cell>
11003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11004 \begin_inset Text
11005
11006 \begin_layout Standard
11007 c
11008 \end_layout
11009
11010 \end_inset
11011 </cell>
11012 </row>
11013 <row topline="true">
11014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11015 \begin_inset Text
11016
11017 \begin_layout Standard
11018 \begin_inset ERT
11019 status collapsed
11020
11021 \begin_layout Standard
11022
11023
11024 \backslash
11025 multirow{2}{2.5cm}{
11026 \end_layout
11027
11028 \end_inset
11029
11030 entrada multifila
11031 \begin_inset ERT
11032 status collapsed
11033
11034 \begin_layout Standard
11035
11036 }
11037 \end_layout
11038
11039 \end_inset
11040
11041
11042 \end_layout
11043
11044 \end_inset
11045 </cell>
11046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11047 \begin_inset Text
11048
11049 \begin_layout Standard
11050 e
11051 \end_layout
11052
11053 \end_inset
11054 </cell>
11055 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11056 \begin_inset Text
11057
11058 \begin_layout Standard
11059 f
11060 \end_layout
11061
11062 \end_inset
11063 </cell>
11064 </row>
11065 <row topline="true" bottomline="true">
11066 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11067 \begin_inset Text
11068
11069 \begin_layout Standard
11070
11071 \end_layout
11072
11073 \end_inset
11074 </cell>
11075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11076 \begin_inset Text
11077
11078 \begin_layout Standard
11079 h
11080 \end_layout
11081
11082 \end_inset
11083 </cell>
11084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11085 \begin_inset Text
11086
11087 \begin_layout Standard
11088 i
11089 \end_layout
11090
11091 \end_inset
11092 </cell>
11093 </row>
11094 </lyxtabular>
11095
11096 \end_inset
11097
11098
11099 \begin_inset ERT
11100 status collapsed
11101
11102 \begin_layout Standard
11103
11104
11105 \backslash
11106 renewcommand{
11107 \backslash
11108 multirowsetup}{
11109 \backslash
11110 raggedright}
11111 \end_layout
11112
11113 \end_inset
11114
11115
11116 \end_layout
11117
11118 \begin_layout Standard
11119 crea una tabla 3×3.
11120  Para quitar la línea sobre la última celda en la primera columna, se marca
11121  la celda como multicolumna y se quita el borde superior.
11122  Ahora se crea la multifila en la segunda fila de la primera columna insertando
11123  ahí el comando
11124 \end_layout
11125
11126 \begin_layout Standard
11127
11128 \series bold
11129
11130 \backslash
11131 multirow{2}{2.5cm}{
11132 \end_layout
11133
11134 \begin_layout Standard
11135 como ERT.
11136  Según los parámetros del comando la multifila se expande a dos filas y
11137  tiene de ancho 2.5\InsetSpace \thinspace{}
11138 cm.
11139  El contenido de la celda multifila sigue fuera del cuadro ERT y el comando
11140  finaliza con llave derecha 
11141 \series bold
11142 }
11143 \series default
11144  en otro cuadro ERT tras el texto.
11145 \end_layout
11146
11147 \begin_layout Standard
11148
11149 \series bold
11150
11151 \backslash
11152 multirow
11153 \series default
11154  alinea su contenido a la izquierda por defecto.
11155  Para cambiarlo renombra el comando 
11156 \series bold
11157
11158 \backslash
11159 multirowsetup
11160 \series default
11161  con el comando
11162 \end_layout
11163
11164 \begin_layout Standard
11165
11166 \series bold
11167
11168 \backslash
11169 renewcommand{
11170 \backslash
11171 multirowsetup}{
11172 \backslash
11173 centering}
11174 \end_layout
11175
11176 \begin_layout Standard
11177 en ERT en el preámbulo del documento.
11178  Entonces se centran todas las entradas de celdas multifila en el documento.
11179  Si solo queremos centrar en algunas tablas, se puede renombrar el comando
11180  en ERT justo antes de la tabla en lugar de en el preámbulo.
11181  Si el texto debe estar alineado a la derecha, reemplaza 
11182 \series bold
11183
11184 \backslash
11185 centering
11186 \series default
11187  por 
11188 \series bold
11189
11190 \backslash
11191 raggedleft
11192 \series default
11193 .
11194  Para volver a alineado a la izquierda usa 
11195 \series bold
11196
11197 \backslash
11198 raggedright
11199 \series default
11200 .
11201 \end_layout
11202
11203 \begin_layout Section
11204 Tablas Formales
11205 \begin_inset LatexCommand label
11206 name "sec:Tablas-Formales"
11207
11208 \end_inset
11209
11210
11211 \begin_inset LatexCommand index
11212 name "Tablas Formales"
11213
11214 \end_inset
11215
11216
11217 \begin_inset LatexCommand index
11218 name "Tablas ! Estilo Formal"
11219
11220 \end_inset
11221
11222  
11223 \end_layout
11224
11225 \begin_layout Standard
11226 En los libros, las tablas se suelen presentar en un formato como el de la
11227  tabla \InsetSpace ~
11228
11229 \begin_inset LatexCommand ref
11230 reference "tab:Ejemplo-tabla-formal"
11231
11232 \end_inset
11233
11234 .
11235  Son tablas denominadas 
11236 \emph on
11237
11238 \begin_inset Quotes eld
11239 \end_inset
11240
11241 formales
11242 \emph default
11243
11244 \begin_inset Quotes erd
11245 \end_inset
11246
11247 .
11248  Para hacer tablas con este diseño, elige 
11249 \family sans
11250 Estilo
11251 \family default
11252 \InsetSpace ~
11253
11254 \family sans
11255 Formal
11256 \family default
11257  en la pestaña 
11258 \family sans
11259 Bordes
11260 \family default
11261  del cuadro de diálogo de tablas.
11262 \end_layout
11263
11264 \begin_layout Standard
11265 \begin_inset Float table
11266 placement h
11267 wide false
11268 sideways false
11269 status open
11270
11271 \begin_layout Standard
11272 \begin_inset Caption
11273
11274 \begin_layout Standard
11275 \begin_inset LatexCommand label
11276 name "tab:Ejemplo-tabla-formal"
11277
11278 \end_inset
11279
11280 Ejemplo de tabla formal
11281 \end_layout
11282
11283 \end_inset
11284
11285
11286 \end_layout
11287
11288 \begin_layout Standard
11289 \align center
11290 \begin_inset Tabular
11291 <lyxtabular version="3" rows="8" columns="4">
11292 <features booktabs="true">
11293 <column alignment="center" valignment="top" rightline="true" width="0">
11294 <column alignment="center" valignment="top" width="0">
11295 <column alignment="center" valignment="top" width="0">
11296 <column alignment="center" valignment="top" width="0">
11297 <row topline="true">
11298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11299 \begin_inset Text
11300
11301 \begin_layout Standard
11302 System
11303 \end_layout
11304
11305 \end_inset
11306 </cell>
11307 <cell alignment="center" valignment="top" topline="true" usebox="none">
11308 \begin_inset Text
11309
11310 \begin_layout Standard
11311 Medipix
11312 \begin_inset Formula $\,$
11313 \end_inset
11314
11315 1
11316 \end_layout
11317
11318 \end_inset
11319 </cell>
11320 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11321 \begin_inset Text
11322
11323 \begin_layout Standard
11324 Medipix
11325 \begin_inset Formula $\,$
11326 \end_inset
11327
11328 2
11329 \end_layout
11330
11331 \end_inset
11332 </cell>
11333 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11334 \begin_inset Text
11335
11336 \begin_layout Standard
11337
11338 \end_layout
11339
11340 \end_inset
11341 </cell>
11342 </row>
11343 <row>
11344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11345 \begin_inset Text
11346
11347 \begin_layout Standard
11348 \begin_inset ERT
11349 status collapsed
11350
11351 \begin_layout Standard
11352
11353
11354 \backslash
11355 cmidrule(r){2-2}
11356 \end_layout
11357
11358 \end_inset
11359
11360
11361 \begin_inset ERT
11362 status collapsed
11363
11364 \begin_layout Standard
11365
11366
11367 \backslash
11368 cmidrule(l){3-4}
11369 \end_layout
11370
11371 \end_inset
11372
11373 Detector thickness [µm]
11374 \end_layout
11375
11376 \end_inset
11377 </cell>
11378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11379 \begin_inset Text
11380
11381 \begin_layout Standard
11382 300
11383 \end_layout
11384
11385 \end_inset
11386 </cell>
11387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11388 \begin_inset Text
11389
11390 \begin_layout Standard
11391 300
11392 \end_layout
11393
11394 \end_inset
11395 </cell>
11396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11397 \begin_inset Text
11398
11399 \begin_layout Standard
11400 700
11401 \end_layout
11402
11403 \end_inset
11404 </cell>
11405 </row>
11406 <row topline="true">
11407 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11408 \begin_inset Text
11409
11410 \begin_layout Standard
11411 Edge angle [°]
11412 \end_layout
11413
11414 \end_inset
11415 </cell>
11416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11417 \begin_inset Text
11418
11419 \begin_layout Standard
11420 3.55
11421 \end_layout
11422
11423 \end_inset
11424 </cell>
11425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11426 \begin_inset Text
11427
11428 \begin_layout Standard
11429 2.71
11430 \end_layout
11431
11432 \end_inset
11433 </cell>
11434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11435 \begin_inset Text
11436
11437 \begin_layout Standard
11438 7.99
11439 \end_layout
11440
11441 \end_inset
11442 </cell>
11443 </row>
11444 <row topspace="default">
11445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11446 \begin_inset Text
11447
11448 \begin_layout Standard
11449 Spatial resolution [µm]
11450 \end_layout
11451
11452 \end_inset
11453 </cell>
11454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11455 \begin_inset Text
11456
11457 \begin_layout Standard
11458 4.26
11459 \end_layout
11460
11461 \end_inset
11462 </cell>
11463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11464 \begin_inset Text
11465
11466 \begin_layout Standard
11467 10.17
11468 \end_layout
11469
11470 \end_inset
11471 </cell>
11472 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11473 \begin_inset Text
11474
11475 \begin_layout Standard
11476 10.56
11477 \end_layout
11478
11479 \end_inset
11480 </cell>
11481 </row>
11482 <row topspace="default">
11483 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11484 \begin_inset Text
11485
11486 \begin_layout Standard
11487 MTF at 
11488 \begin_inset Formula $f_{\mathrm{max}}$
11489 \end_inset
11490
11491
11492 \end_layout
11493
11494 \end_inset
11495 </cell>
11496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11497 \begin_inset Text
11498
11499 \begin_layout Standard
11500 0.53
11501 \end_layout
11502
11503 \end_inset
11504 </cell>
11505 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11506 \begin_inset Text
11507
11508 \begin_layout Standard
11509 0.37
11510 \end_layout
11511
11512 \end_inset
11513 </cell>
11514 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11515 \begin_inset Text
11516
11517 \begin_layout Standard
11518 0.39
11519 \end_layout
11520
11521 \end_inset
11522 </cell>
11523 </row>
11524 <row topspace="default">
11525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11526 \begin_inset Text
11527
11528 \begin_layout Standard
11529 \begin_inset ERT
11530 status collapsed
11531
11532 \begin_layout Standard
11533
11534
11535 \backslash
11536 cmidrule(l{10pt}){1-1}
11537 \end_layout
11538
11539 \end_inset
11540
11541 LSF-spatial resolution
11542 \end_layout
11543
11544 \end_inset
11545 </cell>
11546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11547 \begin_inset Text
11548
11549 \begin_layout Standard
11550
11551 \end_layout
11552
11553 \end_inset
11554 </cell>
11555 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11556 \begin_inset Text
11557
11558 \begin_layout Standard
11559
11560 \end_layout
11561
11562 \end_inset
11563 </cell>
11564 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11565 \begin_inset Text
11566
11567 \begin_layout Standard
11568
11569 \end_layout
11570
11571 \end_inset
11572 </cell>
11573 </row>
11574 <row>
11575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11576 \begin_inset Text
11577
11578 \begin_layout Standard
11579 in µm
11580 \end_layout
11581
11582 \end_inset
11583 </cell>
11584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11585 \begin_inset Text
11586
11587 \begin_layout Standard
11588 129.7
11589 \end_layout
11590
11591 \end_inset
11592 </cell>
11593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11594 \begin_inset Text
11595
11596 \begin_layout Standard
11597 52.75
11598 \end_layout
11599
11600 \end_inset
11601 </cell>
11602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11603 \begin_inset Text
11604
11605 \begin_layout Standard
11606 50.78
11607 \end_layout
11608
11609 \end_inset
11610 </cell>
11611 </row>
11612 <row bottomline="true">
11613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11614 \begin_inset Text
11615
11616 \begin_layout Standard
11617 in % of pixel size
11618 \end_layout
11619
11620 \end_inset
11621 </cell>
11622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11623 \begin_inset Text
11624
11625 \begin_layout Standard
11626 76.3
11627 \end_layout
11628
11629 \end_inset
11630 </cell>
11631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11632 \begin_inset Text
11633
11634 \begin_layout Standard
11635 95.9
11636 \end_layout
11637
11638 \end_inset
11639 </cell>
11640 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11641 \begin_inset Text
11642
11643 \begin_layout Standard
11644 92.3
11645 \end_layout
11646
11647 \end_inset
11648 </cell>
11649 </row>
11650 </lyxtabular>
11651
11652 \end_inset
11653
11654
11655 \end_layout
11656
11657 \end_inset
11658
11659
11660 \end_layout
11661
11662 \begin_layout Standard
11663 Se puede añadir espacio adicional a las filas de la tabla mediante los botones
11664  correspondientes que se encuentran en la pestaña 
11665 \family sans
11666 Bordes 
11667 \family default
11668 del diálogo
11669 \family sans
11670  Configuración\InsetSpace ~
11671 de\InsetSpace ~
11672 la\InsetSpace ~
11673 tabla
11674 \family default
11675 , como se explica en la sección\InsetSpace ~
11676
11677 \begin_inset LatexCommand ref
11678 reference "sub:Espacio-adicional"
11679
11680 \end_inset
11681
11682
11683 \end_layout
11684
11685 \begin_layout Standard
11686 A diferencia de las tablas normales, las tablas formales no tienen líneas
11687  verticales.
11688  Las líneas horizontales se pueden poner o no como en las tablas normales,
11689  pero en la salida se mostrarán con distinto grosor:
11690 \newline
11691 Las líneas primera y
11692  última tienen un grosor predeterminado de 0.08\InsetSpace \thinspace{}
11693 em, las demás tienen un grosor
11694  predeterminado de 0.05\InsetSpace \thinspace{}
11695 em.
11696 \end_layout
11697
11698 \begin_layout Standard
11699 Estos valores predeterminados se pueden cambiar
11700 \lang english
11701  
11702 \lang spanish
11703 con las líneas de preámbulo:
11704 \end_layout
11705
11706 \begin_layout Standard
11707
11708 \series bold
11709
11710 \backslash
11711 let
11712 \backslash
11713 mytoprule
11714 \backslash
11715 toprule
11716 \newline
11717
11718 \backslash
11719 renewcommand{
11720 \backslash
11721 toprule}{
11722 \backslash
11723 mytoprule[grosor]}
11724 \end_layout
11725
11726 \begin_layout Standard
11727 Este ejemplo es para la primera línea, la denominada 
11728 \emph on
11729 toprule
11730 \emph default
11731 .
11732  Si quieres cambiar el grosor de la última línea, reemplaza 
11733 \series bold
11734 toprule
11735 \series default
11736  por 
11737 \series bold
11738 bottomrule
11739 \series default
11740 .
11741  Y para cambiar el grosor de las demás líneas cambia 
11742 \series bold
11743 toprule
11744 \series default
11745  por 
11746 \series bold
11747 midrule
11748 \series default
11749 .
11750  Puedes usar cualquiera de las unidades listadas en el apéndice\InsetSpace ~
11751
11752 \begin_inset LatexCommand ref
11753 reference "cha:Unidades-disponibles-en"
11754
11755 \end_inset
11756
11757
11758 \lang english
11759  
11760 \lang spanish
11761 para establecer el grosor.
11762 \end_layout
11763
11764 \begin_layout Standard
11765 Para dibujar líneas que no se extiendan a todas las columnas de la tabla,
11766  puedes marcarlas como celdas multicolumna y entonces ponerles borde.
11767  LyX empleará internamente el comando 
11768 \series bold
11769
11770 \backslash
11771 cmidrule
11772 \series default
11773  para dibujar la línea.
11774  El esquema completo es
11775 \end_layout
11776
11777 \begin_layout Standard
11778
11779 \series bold
11780
11781 \backslash
11782 cmidrule[grosor](recorte){inicol-fincol}
11783 \end_layout
11784
11785 \begin_layout Standard
11786 Por el momento, LyX no soporta las opciones de 
11787 \series bold
11788
11789 \backslash
11790 cmidrule
11791 \series default
11792 , así que para usarlas hay que emplear ERT.
11793  Las líneas 
11794 \series bold
11795
11796 \backslash
11797 cmidrule
11798 \series default
11799  se pueden insertar manualmente con el comando en ERT como primera entrada
11800  de la primera celda de una fila.
11801  En la salida se dibujará la línea sobre dicha fila.
11802 \end_layout
11803
11804 \begin_layout Standard
11805 El grosor predeterminado es 0.03\InsetSpace \thinspace{}
11806 em.
11807  Inicol es el número de la columna en la que comienza la línea y fincol
11808  es el número de la columna en la que acaba la línea.
11809  El valor fincol debe especificarse siempre, aunque la línea se extienda
11810  sobre una sola columna.
11811  El parámetro opcional recorte debe ser 
11812 \emph on
11813 l{recorte}
11814 \emph default
11815  o 
11816 \emph on
11817 r{recorte}
11818 \emph default
11819 , donde 
11820 \emph on
11821 recorte
11822 \emph default
11823  también es opcional.
11824  Por ejemplo, el parámetro 
11825 \emph on
11826 l{2pt}
11827 \emph default
11828  significa que la línea se recorta 2\InsetSpace \thinspace{}
11829 pt por su izquierda.
11830  Si no se especifica el tamaño del recorte, las líneas se recortan por defecto
11831  en 0.5\InsetSpace \thinspace{}
11832 em.
11833
11834 \series bold
11835 \lang english
11836  
11837 \end_layout
11838
11839 \begin_layout Standard
11840
11841 \end_layout
11842
11843 \begin_layout Standard
11844 \begin_inset VSpace bigskip
11845 \end_inset
11846
11847
11848 \end_layout
11849
11850 \begin_layout Standard
11851 La tabla\InsetSpace ~
11852
11853 \begin_inset LatexCommand ref
11854 reference "tab:Ejemplo-tabla-formal"
11855
11856 \end_inset
11857
11858  se ha creado con los comandos
11859 \end_layout
11860
11861 \begin_layout Standard
11862
11863 \series bold
11864
11865 \backslash
11866 cmidrule(r){2-2}
11867 \backslash
11868 cmidrule(l){3-4}
11869 \end_layout
11870
11871 \begin_layout Standard
11872 en la segunda fila, 
11873 \series bold
11874
11875 \backslash
11876 midrule
11877 \series default
11878  en la tercera, y
11879 \end_layout
11880
11881 \begin_layout Standard
11882
11883 \series bold
11884
11885 \backslash
11886 cmidrule(l{10pt}){1-1}
11887 \end_layout
11888
11889 \begin_layout Standard
11890 en la sexta fila.
11891 \end_layout
11892
11893 \begin_layout Standard
11894 \begin_inset VSpace bigskip
11895 \end_inset
11896
11897
11898 \end_layout
11899
11900 \begin_layout Standard
11901 Quizá quieras superponer líneas 
11902 \series bold
11903
11904 \backslash
11905 cmidrules
11906 \series default
11907  como en la tabla\InsetSpace ~
11908
11909 \begin_inset LatexCommand ref
11910 reference "tab:Tabla-formal-especial"
11911
11912 \end_inset
11913
11914 .
11915  Esto se consigue con el comando ERT
11916 \end_layout
11917
11918 \begin_layout Standard
11919
11920 \series bold
11921
11922 \backslash
11923 morecmidrules
11924 \end_layout
11925
11926 \begin_layout Standard
11927 El comando que se ha utilizado para la segunda fila de la tabla\InsetSpace ~
11928
11929 \begin_inset LatexCommand ref
11930 reference "tab:Tabla-formal-especial"
11931
11932 \end_inset
11933
11934  es
11935 \end_layout
11936
11937 \begin_layout Standard
11938
11939 \series bold
11940
11941 \backslash
11942 cmidrule(r){2-2}
11943 \backslash
11944 cmidrule(l){3-4}
11945 \backslash
11946 morecmidrules
11947 \backslash
11948 cmidrule{2-4}
11949 \end_layout
11950
11951 \begin_layout Standard
11952 El comando para la sexta fila es
11953 \end_layout
11954
11955 \begin_layout Standard
11956
11957 \series bold
11958
11959 \backslash
11960 midrule
11961 \backslash
11962 morecmidrules
11963 \backslash
11964 cmidrule{3-4}
11965 \series default
11966
11967 \begin_inset VSpace bigskip
11968 \end_inset
11969
11970
11971 \end_layout
11972
11973 \begin_layout Standard
11974 Si de todas formas no te satisface el espaciado de los bordes, puedes usar
11975  el siguiente comando para dibujar líneas que se extienden sobre todas las
11976  columnas
11977 \end_layout
11978
11979 \begin_layout Standard
11980
11981 \series bold
11982
11983 \backslash
11984 specialrule{anchura}{espacio superior}{espacio inferior}
11985 \end_layout
11986
11987 \begin_layout Standard
11988 Para más información sobre estas características especiales, acude al manual
11989  del paquete LaTeX 
11990 \series bold
11991 booktabs
11992 \series default
11993
11994 \begin_inset LatexCommand cite
11995 key "booktabs"
11996
11997 \end_inset
11998
11999 .
12000 \begin_inset LatexCommand index
12001 name "LaTeX-paquetes ! booktabs"
12002
12003 \end_inset
12004
12005  
12006 \begin_inset VSpace bigskip
12007 \end_inset
12008
12009
12010 \end_layout
12011
12012 \begin_layout Standard
12013 \begin_inset Float table
12014 placement h
12015 wide false
12016 sideways false
12017 status open
12018
12019 \begin_layout Standard
12020 \begin_inset Caption
12021
12022 \begin_layout Standard
12023 \begin_inset LatexCommand label
12024 name "tab:Tabla-formal-especial"
12025
12026 \end_inset
12027
12028 Tabla formal especial
12029 \end_layout
12030
12031 \end_inset
12032
12033
12034 \end_layout
12035
12036 \begin_layout Standard
12037 \align center
12038 \begin_inset Tabular
12039 <lyxtabular version="3" rows="8" columns="4">
12040 <features booktabs="true">
12041 <column alignment="center" valignment="top" width="0">
12042 <column alignment="center" valignment="top" width="0">
12043 <column alignment="center" valignment="top" width="0">
12044 <column alignment="center" valignment="top" width="0">
12045 <row topline="true">
12046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12047 \begin_inset Text
12048
12049 \begin_layout Standard
12050 System
12051 \end_layout
12052
12053 \end_inset
12054 </cell>
12055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12056 \begin_inset Text
12057
12058 \begin_layout Standard
12059 Medipix\InsetSpace \thinspace{}
12060 1
12061 \end_layout
12062
12063 \end_inset
12064 </cell>
12065 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12066 \begin_inset Text
12067
12068 \begin_layout Standard
12069 Medipix\InsetSpace \thinspace{}
12070 2
12071 \end_layout
12072
12073 \end_inset
12074 </cell>
12075 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12076 \begin_inset Text
12077
12078 \begin_layout Standard
12079
12080 \end_layout
12081
12082 \end_inset
12083 </cell>
12084 </row>
12085 <row>
12086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12087 \begin_inset Text
12088
12089 \begin_layout Standard
12090 \begin_inset ERT
12091 status collapsed
12092
12093 \begin_layout Standard
12094
12095
12096 \backslash
12097 cmidrule(r){2-2}
12098 \end_layout
12099
12100 \end_inset
12101
12102
12103 \begin_inset ERT
12104 status collapsed
12105
12106 \begin_layout Standard
12107
12108
12109 \backslash
12110 cmidrule(l){3-4}
12111 \end_layout
12112
12113 \end_inset
12114
12115
12116 \begin_inset ERT
12117 status collapsed
12118
12119 \begin_layout Standard
12120
12121
12122 \backslash
12123 morecmidrules 
12124 \end_layout
12125
12126 \end_inset
12127
12128
12129 \begin_inset ERT
12130 status collapsed
12131
12132 \begin_layout Standard
12133
12134
12135 \backslash
12136 cmidrule{2-4}
12137 \end_layout
12138
12139 \end_inset
12140
12141 Detector thickness [µm]
12142 \end_layout
12143
12144 \end_inset
12145 </cell>
12146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12147 \begin_inset Text
12148
12149 \begin_layout Standard
12150 300
12151 \end_layout
12152
12153 \end_inset
12154 </cell>
12155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12156 \begin_inset Text
12157
12158 \begin_layout Standard
12159 300
12160 \end_layout
12161
12162 \end_inset
12163 </cell>
12164 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12165 \begin_inset Text
12166
12167 \begin_layout Standard
12168 700
12169 \end_layout
12170
12171 \end_inset
12172 </cell>
12173 </row>
12174 <row topline="true">
12175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12176 \begin_inset Text
12177
12178 \begin_layout Standard
12179 Edge angle [°]
12180 \end_layout
12181
12182 \end_inset
12183 </cell>
12184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12185 \begin_inset Text
12186
12187 \begin_layout Standard
12188 3.55
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 2.71
12198 \end_layout
12199
12200 \end_inset
12201 </cell>
12202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12203 \begin_inset Text
12204
12205 \begin_layout Standard
12206 7.99
12207 \end_layout
12208
12209 \end_inset
12210 </cell>
12211 </row>
12212 <row topspace="default">
12213 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12214 \begin_inset Text
12215
12216 \begin_layout Standard
12217 Spatial resolution [µm]
12218 \end_layout
12219
12220 \end_inset
12221 </cell>
12222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12223 \begin_inset Text
12224
12225 \begin_layout Standard
12226 4.26
12227 \end_layout
12228
12229 \end_inset
12230 </cell>
12231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12232 \begin_inset Text
12233
12234 \begin_layout Standard
12235 10.17
12236 \end_layout
12237
12238 \end_inset
12239 </cell>
12240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12241 \begin_inset Text
12242
12243 \begin_layout Standard
12244 10.56
12245 \end_layout
12246
12247 \end_inset
12248 </cell>
12249 </row>
12250 <row topspace="default">
12251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12252 \begin_inset Text
12253
12254 \begin_layout Standard
12255 MTF at 
12256 \begin_inset Formula $f_{\mathrm{max}}$
12257 \end_inset
12258
12259
12260 \end_layout
12261
12262 \end_inset
12263 </cell>
12264 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12265 \begin_inset Text
12266
12267 \begin_layout Standard
12268 0.53
12269 \end_layout
12270
12271 \end_inset
12272 </cell>
12273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12274 \begin_inset Text
12275
12276 \begin_layout Standard
12277 0.37
12278 \end_layout
12279
12280 \end_inset
12281 </cell>
12282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12283 \begin_inset Text
12284
12285 \begin_layout Standard
12286 0.39
12287 \end_layout
12288
12289 \end_inset
12290 </cell>
12291 </row>
12292 <row topline="true">
12293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12294 \begin_inset Text
12295
12296 \begin_layout Standard
12297 \begin_inset ERT
12298 status collapsed
12299
12300 \begin_layout Standard
12301
12302
12303 \backslash
12304 morecmidrules 
12305 \end_layout
12306
12307 \end_inset
12308
12309
12310 \begin_inset ERT
12311 status collapsed
12312
12313 \begin_layout Standard
12314
12315
12316 \backslash
12317 cmidrule{3-4}
12318 \end_layout
12319
12320 \end_inset
12321
12322 LSF-spatial resolution
12323 \end_layout
12324
12325 \end_inset
12326 </cell>
12327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12328 \begin_inset Text
12329
12330 \begin_layout Standard
12331
12332 \end_layout
12333
12334 \end_inset
12335 </cell>
12336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12337 \begin_inset Text
12338
12339 \begin_layout Standard
12340
12341 \end_layout
12342
12343 \end_inset
12344 </cell>
12345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12346 \begin_inset Text
12347
12348 \begin_layout Standard
12349
12350 \end_layout
12351
12352 \end_inset
12353 </cell>
12354 </row>
12355 <row>
12356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12357 \begin_inset Text
12358
12359 \begin_layout Standard
12360 in µm
12361 \end_layout
12362
12363 \end_inset
12364 </cell>
12365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12366 \begin_inset Text
12367
12368 \begin_layout Standard
12369 129.7
12370 \end_layout
12371
12372 \end_inset
12373 </cell>
12374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12375 \begin_inset Text
12376
12377 \begin_layout Standard
12378 52.75
12379 \end_layout
12380
12381 \end_inset
12382 </cell>
12383 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12384 \begin_inset Text
12385
12386 \begin_layout Standard
12387 50.78
12388 \end_layout
12389
12390 \end_inset
12391 </cell>
12392 </row>
12393 <row bottomline="true">
12394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12395 \begin_inset Text
12396
12397 \begin_layout Standard
12398 in % of pixel size
12399 \end_layout
12400
12401 \end_inset
12402 </cell>
12403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12404 \begin_inset Text
12405
12406 \begin_layout Standard
12407 76.3
12408 \end_layout
12409
12410 \end_inset
12411 </cell>
12412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12413 \begin_inset Text
12414
12415 \begin_layout Standard
12416 95.9
12417 \end_layout
12418
12419 \end_inset
12420 </cell>
12421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12422 \begin_inset Text
12423
12424 \begin_layout Standard
12425 92.3
12426 \end_layout
12427
12428 \end_inset
12429 </cell>
12430 </row>
12431 </lyxtabular>
12432
12433 \end_inset
12434
12435
12436 \end_layout
12437
12438 \end_inset
12439
12440
12441 \end_layout
12442
12443 \begin_layout Section
12444 Alineación Vertical en Tablas
12445 \begin_inset LatexCommand index
12446 name "Tablas ! Alineación Vertical"
12447
12448 \end_inset
12449
12450
12451 \end_layout
12452
12453 \begin_layout Standard
12454 Para alinear tablas verticalmente en una línea de texto la tabla debe estar
12455  en un cuadro.
12456  Entonces el cuadro se puede alinear verticalmente como se describe en la
12457  sección\InsetSpace ~
12458
12459 \begin_inset LatexCommand ref
12460 reference "sec:Diálogo-Cuadros"
12461
12462 \end_inset
12463
12464 .
12465  
12466 \end_layout
12467
12468 \begin_layout Standard
12469 En el ejemplo siguiente las tablas están en un cuadro de minipágina
12470 \begin_inset Foot
12471 status collapsed
12472
12473 \begin_layout Standard
12474 Las minipáginas se describen en la sección\InsetSpace ~
12475
12476 \begin_inset LatexCommand ref
12477 reference "sec:Minipáginas"
12478
12479 \end_inset
12480
12481 .
12482 \end_layout
12483
12484 \end_inset
12485
12486  que tiene una anchura de 15\InsetSpace \thinspace{}
12487 col%:
12488 \end_layout
12489
12490 \begin_layout Itemize
12491 test 
12492 \begin_inset Box Frameless
12493 position "t"
12494 hor_pos "c"
12495 has_inner_box 1
12496 inner_pos "c"
12497 use_parbox 0
12498 width "15col%"
12499 special "none"
12500 height "1in"
12501 height_special "totalheight"
12502 status collapsed
12503
12504 \begin_layout Standard
12505 \begin_inset Tabular
12506 <lyxtabular version="3" rows="3" columns="3">
12507 <features>
12508 <column alignment="center" valignment="top" leftline="true" width="0">
12509 <column alignment="center" valignment="top" leftline="true" width="0">
12510 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12511 <row topline="true">
12512 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12513 \begin_inset Text
12514
12515 \begin_layout Standard
12516 a
12517 \end_layout
12518
12519 \end_inset
12520 </cell>
12521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12522 \begin_inset Text
12523
12524 \begin_layout Standard
12525 d
12526 \end_layout
12527
12528 \end_inset
12529 </cell>
12530 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12531 \begin_inset Text
12532
12533 \begin_layout Standard
12534 g
12535 \end_layout
12536
12537 \end_inset
12538 </cell>
12539 </row>
12540 <row topline="true">
12541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12542 \begin_inset Text
12543
12544 \begin_layout Standard
12545 b
12546 \end_layout
12547
12548 \end_inset
12549 </cell>
12550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12551 \begin_inset Text
12552
12553 \begin_layout Standard
12554 e
12555 \end_layout
12556
12557 \end_inset
12558 </cell>
12559 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12560 \begin_inset Text
12561
12562 \begin_layout Standard
12563 h
12564 \end_layout
12565
12566 \end_inset
12567 </cell>
12568 </row>
12569 <row topline="true" bottomline="true">
12570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12571 \begin_inset Text
12572
12573 \begin_layout Standard
12574 c
12575 \end_layout
12576
12577 \end_inset
12578 </cell>
12579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12580 \begin_inset Text
12581
12582 \begin_layout Standard
12583 f
12584 \end_layout
12585
12586 \end_inset
12587 </cell>
12588 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12589 \begin_inset Text
12590
12591 \begin_layout Standard
12592 i
12593 \end_layout
12594
12595 \end_inset
12596 </cell>
12597 </row>
12598 </lyxtabular>
12599
12600 \end_inset
12601
12602
12603 \end_layout
12604
12605 \end_inset
12606
12607  test 
12608 \begin_inset ERT
12609 status collapsed
12610
12611 \begin_layout Standard
12612
12613
12614 \backslash
12615 raisebox{0.85
12616 \backslash
12617 baselineskip}{
12618 \end_layout
12619
12620 \end_inset
12621
12622
12623 \begin_inset Box Frameless
12624 position "t"
12625 hor_pos "c"
12626 has_inner_box 1
12627 inner_pos "c"
12628 use_parbox 0
12629 width "15col%"
12630 special "none"
12631 height "1in"
12632 height_special "totalheight"
12633 status collapsed
12634
12635 \begin_layout Standard
12636 \begin_inset Tabular
12637 <lyxtabular version="3" rows="3" columns="3">
12638 <features>
12639 <column alignment="center" valignment="top" leftline="true" width="0">
12640 <column alignment="center" valignment="top" leftline="true" width="0">
12641 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12642 <row topline="true">
12643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12644 \begin_inset Text
12645
12646 \begin_layout Standard
12647 a
12648 \end_layout
12649
12650 \end_inset
12651 </cell>
12652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12653 \begin_inset Text
12654
12655 \begin_layout Standard
12656 d
12657 \end_layout
12658
12659 \end_inset
12660 </cell>
12661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12662 \begin_inset Text
12663
12664 \begin_layout Standard
12665 g
12666 \end_layout
12667
12668 \end_inset
12669 </cell>
12670 </row>
12671 <row topline="true">
12672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12673 \begin_inset Text
12674
12675 \begin_layout Standard
12676 b
12677 \end_layout
12678
12679 \end_inset
12680 </cell>
12681 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12682 \begin_inset Text
12683
12684 \begin_layout Standard
12685 e
12686 \end_layout
12687
12688 \end_inset
12689 </cell>
12690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12691 \begin_inset Text
12692
12693 \begin_layout Standard
12694 h
12695 \end_layout
12696
12697 \end_inset
12698 </cell>
12699 </row>
12700 <row topline="true" bottomline="true">
12701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12702 \begin_inset Text
12703
12704 \begin_layout Standard
12705 c
12706 \end_layout
12707
12708 \end_inset
12709 </cell>
12710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12711 \begin_inset Text
12712
12713 \begin_layout Standard
12714 f
12715 \end_layout
12716
12717 \end_inset
12718 </cell>
12719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12720 \begin_inset Text
12721
12722 \begin_layout Standard
12723 i
12724 \end_layout
12725
12726 \end_inset
12727 </cell>
12728 </row>
12729 </lyxtabular>
12730
12731 \end_inset
12732
12733
12734 \end_layout
12735
12736 \end_inset
12737
12738
12739 \begin_inset ERT
12740 status collapsed
12741
12742 \begin_layout Standard
12743
12744 }
12745 \end_layout
12746
12747 \end_inset
12748
12749
12750 \end_layout
12751
12752 \begin_layout Itemize
12753 test 
12754 \begin_inset Box Frameless
12755 position "c"
12756 hor_pos "c"
12757 has_inner_box 1
12758 inner_pos "c"
12759 use_parbox 0
12760 width "15col%"
12761 special "none"
12762 height "1in"
12763 height_special "totalheight"
12764 status collapsed
12765
12766 \begin_layout Standard
12767 \begin_inset Tabular
12768 <lyxtabular version="3" rows="3" columns="3">
12769 <features>
12770 <column alignment="center" valignment="top" leftline="true" width="0">
12771 <column alignment="center" valignment="top" leftline="true" width="0">
12772 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12773 <row topline="true">
12774 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12775 \begin_inset Text
12776
12777 \begin_layout Standard
12778 a
12779 \end_layout
12780
12781 \end_inset
12782 </cell>
12783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12784 \begin_inset Text
12785
12786 \begin_layout Standard
12787 d
12788 \end_layout
12789
12790 \end_inset
12791 </cell>
12792 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12793 \begin_inset Text
12794
12795 \begin_layout Standard
12796 g
12797 \end_layout
12798
12799 \end_inset
12800 </cell>
12801 </row>
12802 <row topline="true">
12803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12804 \begin_inset Text
12805
12806 \begin_layout Standard
12807 b
12808 \end_layout
12809
12810 \end_inset
12811 </cell>
12812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12813 \begin_inset Text
12814
12815 \begin_layout Standard
12816 e
12817 \end_layout
12818
12819 \end_inset
12820 </cell>
12821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12822 \begin_inset Text
12823
12824 \begin_layout Standard
12825 h
12826 \end_layout
12827
12828 \end_inset
12829 </cell>
12830 </row>
12831 <row topline="true" bottomline="true">
12832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12833 \begin_inset Text
12834
12835 \begin_layout Standard
12836 c
12837 \end_layout
12838
12839 \end_inset
12840 </cell>
12841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12842 \begin_inset Text
12843
12844 \begin_layout Standard
12845 f
12846 \end_layout
12847
12848 \end_inset
12849 </cell>
12850 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12851 \begin_inset Text
12852
12853 \begin_layout Standard
12854 i
12855 \end_layout
12856
12857 \end_inset
12858 </cell>
12859 </row>
12860 </lyxtabular>
12861
12862 \end_inset
12863
12864
12865 \end_layout
12866
12867 \end_inset
12868
12869
12870 \end_layout
12871
12872 \begin_layout Itemize
12873 test 
12874 \begin_inset Box Frameless
12875 position "b"
12876 hor_pos "c"
12877 has_inner_box 1
12878 inner_pos "c"
12879 use_parbox 0
12880 width "15col%"
12881 special "none"
12882 height "1in"
12883 height_special "totalheight"
12884 status collapsed
12885
12886 \begin_layout Standard
12887 \begin_inset Tabular
12888 <lyxtabular version="3" rows="3" columns="3">
12889 <features>
12890 <column alignment="center" valignment="top" leftline="true" width="0">
12891 <column alignment="center" valignment="top" leftline="true" width="0">
12892 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12893 <row topline="true">
12894 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12895 \begin_inset Text
12896
12897 \begin_layout Standard
12898 a
12899 \end_layout
12900
12901 \end_inset
12902 </cell>
12903 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12904 \begin_inset Text
12905
12906 \begin_layout Standard
12907 d
12908 \end_layout
12909
12910 \end_inset
12911 </cell>
12912 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12913 \begin_inset Text
12914
12915 \begin_layout Standard
12916 g
12917 \end_layout
12918
12919 \end_inset
12920 </cell>
12921 </row>
12922 <row topline="true">
12923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12924 \begin_inset Text
12925
12926 \begin_layout Standard
12927 b
12928 \end_layout
12929
12930 \end_inset
12931 </cell>
12932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12933 \begin_inset Text
12934
12935 \begin_layout Standard
12936 e
12937 \end_layout
12938
12939 \end_inset
12940 </cell>
12941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12942 \begin_inset Text
12943
12944 \begin_layout Standard
12945 h
12946 \end_layout
12947
12948 \end_inset
12949 </cell>
12950 </row>
12951 <row topline="true" bottomline="true">
12952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12953 \begin_inset Text
12954
12955 \begin_layout Standard
12956 c
12957 \end_layout
12958
12959 \end_inset
12960 </cell>
12961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12962 \begin_inset Text
12963
12964 \begin_layout Standard
12965 f
12966 \end_layout
12967
12968 \end_inset
12969 </cell>
12970 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12971 \begin_inset Text
12972
12973 \begin_layout Standard
12974 i
12975 \end_layout
12976
12977 \end_inset
12978 </cell>
12979 </row>
12980 </lyxtabular>
12981
12982 \end_inset
12983
12984
12985 \end_layout
12986
12987 \end_inset
12988
12989  test 
12990 \begin_inset ERT
12991 status collapsed
12992
12993 \begin_layout Standard
12994
12995
12996 \backslash
12997 raisebox{-0.32
12998 \backslash
12999 baselineskip}{
13000 \end_layout
13001
13002 \end_inset
13003
13004
13005 \begin_inset Box Frameless
13006 position "b"
13007 hor_pos "c"
13008 has_inner_box 1
13009 inner_pos "c"
13010 use_parbox 0
13011 width "15col%"
13012 special "none"
13013 height "1in"
13014 height_special "totalheight"
13015 status collapsed
13016
13017 \begin_layout Standard
13018 \begin_inset Tabular
13019 <lyxtabular version="3" rows="3" columns="3">
13020 <features>
13021 <column alignment="center" valignment="top" leftline="true" width="0">
13022 <column alignment="center" valignment="top" leftline="true" width="0">
13023 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13024 <row topline="true">
13025 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13026 \begin_inset Text
13027
13028 \begin_layout Standard
13029 a
13030 \end_layout
13031
13032 \end_inset
13033 </cell>
13034 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13035 \begin_inset Text
13036
13037 \begin_layout Standard
13038 d
13039 \end_layout
13040
13041 \end_inset
13042 </cell>
13043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13044 \begin_inset Text
13045
13046 \begin_layout Standard
13047 g
13048 \end_layout
13049
13050 \end_inset
13051 </cell>
13052 </row>
13053 <row topline="true">
13054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13055 \begin_inset Text
13056
13057 \begin_layout Standard
13058 b
13059 \end_layout
13060
13061 \end_inset
13062 </cell>
13063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13064 \begin_inset Text
13065
13066 \begin_layout Standard
13067 e
13068 \end_layout
13069
13070 \end_inset
13071 </cell>
13072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13073 \begin_inset Text
13074
13075 \begin_layout Standard
13076 h
13077 \end_layout
13078
13079 \end_inset
13080 </cell>
13081 </row>
13082 <row topline="true" bottomline="true">
13083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13084 \begin_inset Text
13085
13086 \begin_layout Standard
13087 c
13088 \end_layout
13089
13090 \end_inset
13091 </cell>
13092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13093 \begin_inset Text
13094
13095 \begin_layout Standard
13096 f
13097 \end_layout
13098
13099 \end_inset
13100 </cell>
13101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13102 \begin_inset Text
13103
13104 \begin_layout Standard
13105 i
13106 \end_layout
13107
13108 \end_inset
13109 </cell>
13110 </row>
13111 </lyxtabular>
13112
13113 \end_inset
13114
13115
13116 \end_layout
13117
13118 \end_inset
13119
13120
13121 \begin_inset ERT
13122 status collapsed
13123
13124 \begin_layout Standard
13125
13126 }
13127 \end_layout
13128
13129 \end_inset
13130
13131
13132 \end_layout
13133
13134 \begin_layout Standard
13135 Como ves, los contenidos de la primera y última filas no se alinean correctament
13136 e con la línea de texto donde está la tabla.
13137  Para conseguir esta alineación, el cuadro (minipágina) debe ponerse en
13138  un cuadro elevado (
13139 \begin_inset Quotes eld
13140 \end_inset
13141
13142 raisebox
13143 \begin_inset Quotes erd
13144 \end_inset
13145
13146 )
13147 \begin_inset Foot
13148 status collapsed
13149
13150 \begin_layout Standard
13151 El uso del comando 
13152 \series bold
13153
13154 \backslash
13155 raisebox
13156 \series default
13157  se explica en la sección\InsetSpace ~
13158
13159 \begin_inset LatexCommand ref
13160 reference "sub:Alineación-Vertical"
13161
13162 \end_inset
13163
13164 .
13165 \end_layout
13166
13167 \end_inset
13168
13169 .
13170  En el ejemplo anterior, la segunda tabla del primer ítem está alineada
13171  usando el comando en ERT
13172 \end_layout
13173
13174 \begin_layout Standard
13175
13176 \series bold
13177
13178 \backslash
13179 raisebox{0.85
13180 \backslash
13181 baselineskip}{
13182 \end_layout
13183
13184 \begin_layout Standard
13185 antes del cuadro.
13186  Tras él, se pone la llave de cierre 
13187 \series bold
13188 }
13189 \series default
13190  también como ERT.
13191  Para la segunda tabla en el tercer ítem se usa el comando 
13192 \end_layout
13193
13194 \begin_layout Standard
13195
13196 \series bold
13197
13198 \backslash
13199 raisebox{-0.32
13200 \backslash
13201 baselineskip}{
13202 \end_layout
13203
13204 \begin_layout Standard
13205 \begin_inset Note Greyedout
13206 status open
13207
13208 \begin_layout Standard
13209
13210 \series bold
13211 Not
13212 \series default
13213 a: La alineación del contenido de la fila con la línea del texto adyacente
13214  no es exacta.
13215  El factor necesario del comando 
13216 \series bold
13217
13218 \backslash
13219 raisebox
13220 \series default
13221  para este alineamiento depende de la fuente del documento, del tamaño de
13222  la fuente y del grosor de línea de la tabla.
13223 \end_layout
13224
13225 \end_inset
13226
13227
13228 \end_layout
13229
13230 \begin_layout Section
13231 Tablas Coloreadas
13232 \begin_inset LatexCommand label
13233 name "sec:Tablas-Coloreadas"
13234
13235 \end_inset
13236
13237
13238 \begin_inset LatexCommand index
13239 name "Tablas ! Coloreadas"
13240
13241 \end_inset
13242
13243
13244 \end_layout
13245
13246 \begin_layout Subsection
13247 Celdas Coloreadas
13248 \begin_inset LatexCommand index
13249 name "Tablas Coloreadas ! Celdas"
13250
13251 \end_inset
13252
13253
13254 \begin_inset LatexCommand index
13255 name "Color ! en Celdas de Tablas"
13256
13257 \end_inset
13258
13259
13260 \end_layout
13261
13262 \begin_layout Standard
13263 \begin_inset Float table
13264 placement h
13265 wide false
13266 sideways false
13267 status open
13268
13269 \begin_layout Standard
13270 \begin_inset Caption
13271
13272 \begin_layout Standard
13273 \begin_inset LatexCommand label
13274 name "tab:Tabla-coloreada-sin"
13275
13276 \end_inset
13277
13278 Tabla coloreada sin usar el paquete 
13279 \series bold
13280 colortbl
13281 \series default
13282
13283 \begin_inset OptArg
13284 status collapsed
13285
13286 \begin_layout Standard
13287 Tabla sin colortbl
13288 \end_layout
13289
13290 \end_inset
13291
13292
13293 \end_layout
13294
13295 \end_inset
13296
13297
13298 \end_layout
13299
13300 \begin_layout Standard
13301 \align center
13302 \begin_inset Tabular
13303 <lyxtabular version="3" rows="3" columns="3">
13304 <features>
13305 <column alignment="center" valignment="top" leftline="true" width="0">
13306 <column alignment="center" valignment="top" leftline="true" width="0">
13307 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13308 <row topline="true">
13309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13310 \begin_inset Text
13311
13312 \begin_layout Standard
13313
13314 \color green
13315 a
13316 \end_layout
13317
13318 \end_inset
13319 </cell>
13320 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13321 \begin_inset Text
13322
13323 \begin_layout Standard
13324
13325 \color red
13326 b
13327 \end_layout
13328
13329 \end_inset
13330 </cell>
13331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13332 \begin_inset Text
13333
13334 \begin_layout Standard
13335
13336 \color red
13337 c
13338 \end_layout
13339
13340 \end_inset
13341 </cell>
13342 </row>
13343 <row topline="true">
13344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13345 \begin_inset Text
13346
13347 \begin_layout Standard
13348
13349 \color green
13350 d
13351 \end_layout
13352
13353 \end_inset
13354 </cell>
13355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13356 \begin_inset Text
13357
13358 \begin_layout Standard
13359
13360 \color blue
13361 e
13362 \end_layout
13363
13364 \end_inset
13365 </cell>
13366 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13367 \begin_inset Text
13368
13369 \begin_layout Standard
13370
13371 \color blue
13372 f
13373 \end_layout
13374
13375 \end_inset
13376 </cell>
13377 </row>
13378 <row topline="true" bottomline="true">
13379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13380 \begin_inset Text
13381
13382 \begin_layout Standard
13383
13384 \color green
13385 g
13386 \end_layout
13387
13388 \end_inset
13389 </cell>
13390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13391 \begin_inset Text
13392
13393 \begin_layout Standard
13394
13395 \color blue
13396 h
13397 \end_layout
13398
13399 \end_inset
13400 </cell>
13401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13402 \begin_inset Text
13403
13404 \begin_layout Standard
13405
13406 \color blue
13407 i
13408 \end_layout
13409
13410 \end_inset
13411 </cell>
13412 </row>
13413 </lyxtabular>
13414
13415 \end_inset
13416
13417
13418 \end_layout
13419
13420 \end_inset
13421
13422
13423 \end_layout
13424
13425 \begin_layout Standard
13426 Si solo necesitas color en el texto, marca las celdas y elige un color en
13427  el menú 
13428 \family sans
13429 Editar\SpecialChar \menuseparator
13430 Estilo\InsetSpace ~
13431 del\InsetSpace ~
13432 Texto
13433 \family default
13434 .
13435  Esto se ha hecho en la tabla\InsetSpace ~
13436
13437 \begin_inset LatexCommand ref
13438 reference "tab:Tabla-coloreada-sin"
13439
13440 \end_inset
13441
13442 .
13443  En cualquier otro caso hay que usar el paquete LaTeX 
13444 \series bold
13445 colortbl
13446 \series default
13447 .
13448 \begin_inset LatexCommand index
13449 name "LaTeX-paquetes ! colortbl"
13450
13451 \end_inset
13452
13453
13454 \end_layout
13455
13456 \begin_layout Standard
13457 Para crear tablas coloreadas, 
13458 \series bold
13459 colortbl
13460 \series default
13461  debe cargarse en el preámbulo con la línea
13462 \end_layout
13463
13464 \begin_layout Standard
13465
13466 \series bold
13467
13468 \backslash
13469 usepackage{colortbl}
13470 \end_layout
13471
13472 \begin_layout Standard
13473 El color de una columna se define con el comando
13474 \end_layout
13475
13476 \begin_layout Standard
13477
13478 \series bold
13479
13480 \backslash
13481 columncolor{nombre del color}
13482 \end_layout
13483
13484 \begin_layout Standard
13485 dentro del comando 
13486 \series bold
13487 >{ }
13488 \series default
13489 .
13490  Más sobre el comando 
13491 \series bold
13492 >{}
13493 \series default
13494  se explica en la sección\InsetSpace ~
13495
13496 \begin_inset LatexCommand ref
13497 reference "sub:Cálculos-en-Multicolumnas"
13498
13499 \end_inset
13500
13501 .
13502 \end_layout
13503
13504 \begin_layout Standard
13505 Los siguientes nombres de color están predefinidos:
13506 \end_layout
13507
13508 \begin_layout Standard
13509
13510 \family sans
13511 red
13512 \family default
13513
13514 \family sans
13515 green
13516 \family default
13517
13518 \family sans
13519 yellow, blue
13520 \family default
13521
13522 \family sans
13523 cyan
13524 \family default
13525 \series bold
13526 ,
13527 \series default
13528  
13529 \family sans
13530 magenta, black
13531 \family default
13532
13533 \family sans
13534 white
13535 \end_layout
13536
13537 \begin_layout Standard
13538 \begin_inset VSpace medskip
13539 \end_inset
13540
13541
13542 \end_layout
13543
13544 \begin_layout Standard
13545 Puedes definir tus propios colores con el comando
13546 \end_layout
13547
13548 \begin_layout Standard
13549
13550 \series bold
13551
13552 \backslash
13553 def\SpecialChar \textcompwordmark{}
13554 inecolor{nombre del color}{modelo de color}{valores de color}
13555 \end_layout
13556
13557 \begin_layout Standard
13558 El modelo de color puede ser
13559 \end_layout
13560
13561 \begin_layout Labeling
13562 \labelwidthstring 00.00.0000
13563 cmyk: cyan, magenta, yellow, black
13564 \end_layout
13565
13566 \begin_layout Labeling
13567 \labelwidthstring 00.00.0000
13568 rgb: red, green, blue
13569 \end_layout
13570
13571 \begin_layout Labeling
13572 \labelwidthstring 00.00.0000
13573 gray gray
13574 \end_layout
13575
13576 \begin_layout Standard
13577 y los valores de color son números separados por comas entre 0 y 1 que describen
13578  el factor para el color correspondiente del modelo de color.
13579 \end_layout
13580
13581 \begin_layout Standard
13582 Por ejemplo, puedes definir el color
13583 \series bold
13584  
13585 \series default
13586
13587 \begin_inset Quotes eld
13588 \end_inset
13589
13590
13591 \emph on
13592 verde oscuro
13593 \emph default
13594
13595 \begin_inset Quotes erd
13596 \end_inset
13597
13598  en el preámbulo con
13599 \end_layout
13600
13601 \begin_layout Standard
13602
13603 \series bold
13604
13605 \backslash
13606 def\SpecialChar \textcompwordmark{}
13607 inecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
13608 \end_layout
13609
13610 \begin_layout Standard
13611 y el color 
13612 \begin_inset Quotes eld
13613 \end_inset
13614
13615
13616 \emph on
13617 gris claro
13618 \emph default
13619
13620 \begin_inset Quotes erd
13621 \end_inset
13622
13623  con
13624 \end_layout
13625
13626 \begin_layout Standard
13627
13628 \series bold
13629
13630 \backslash
13631 def\SpecialChar \textcompwordmark{}
13632 inecolor{grisclaro}{gray}{0.8}
13633 \end_layout
13634
13635 \begin_layout Standard
13636 \begin_inset VSpace medskip
13637 \end_inset
13638
13639
13640 \end_layout
13641
13642 \begin_layout Standard
13643 Las líneas se colorean con el comando
13644 \end_layout
13645
13646 \begin_layout Standard
13647
13648 \series bold
13649
13650 \backslash
13651 rowcolor{nombre del color}
13652 \end_layout
13653
13654 \begin_layout Standard
13655 y las celdas se colorean con el comando
13656 \end_layout
13657
13658 \begin_layout Standard
13659
13660 \series bold
13661
13662 \backslash
13663 cellcolor{nombre del color}
13664 \end_layout
13665
13666 \begin_layout Standard
13667 Ambos comandos se insertan al principio de una celda como ERT.
13668 \end_layout
13669
13670 \begin_layout Standard
13671 Para colorear caracteres en la tabla marca las celdas y usa el menú 
13672 \family sans
13673 Editar\SpecialChar \menuseparator
13674 Estilo\InsetSpace ~
13675 del\InsetSpace ~
13676 Texto
13677 \family default
13678 .
13679  Si una celda contiene ERT marca solo los caracteres, si no el ERT con color
13680  puede ocasionar errores de LaTeX.
13681 \end_layout
13682
13683 \begin_layout Standard
13684 \begin_inset VSpace bigskip
13685 \end_inset
13686
13687
13688 \end_layout
13689
13690 \begin_layout Standard
13691 Para crear la tabla\InsetSpace ~
13692
13693 \begin_inset LatexCommand ref
13694 reference "tab:Tabla-coloreada-con"
13695
13696 \end_inset
13697
13698  haz lo siguiente: El color de la primera columna debería ser 
13699 \emph on
13700 verde oscuro
13701 \emph default
13702 .
13703  Así pues
13704 \end_layout
13705
13706 \begin_layout Standard
13707
13708 \series bold
13709 >{
13710 \backslash
13711 columncolor{verdeoscuro}
13712 \backslash
13713 centering}c
13714 \end_layout
13715
13716 \begin_layout Standard
13717 como argumento LaTeX para esta columna.
13718  La primera fila debería ser azul, por tanto el comando ERT
13719 \end_layout
13720
13721 \begin_layout Standard
13722
13723 \series bold
13724
13725 \backslash
13726 rowcolow{cyan}
13727 \end_layout
13728
13729 \begin_layout Standard
13730 se inserta en la primera celda de esta fila.
13731  Observa que esto sobreescribe el color de la columna para la primera celda.
13732  La última celda de la última fila se colorea magenta insertando el comando
13733  ERT
13734 \end_layout
13735
13736 \begin_layout Standard
13737
13738 \series bold
13739
13740 \backslash
13741 cellcolor{magenta}
13742 \end_layout
13743
13744 \begin_layout Standard
13745 Ahora podrían colorearse los caracteres usando el menú 
13746 \family sans
13747 Editar\SpecialChar \menuseparator
13748 Estilo\InsetSpace ~
13749 del\InsetSpace ~
13750 Texto
13751 \family default
13752 .
13753 \end_layout
13754
13755 \begin_layout Standard
13756 \begin_inset Float table
13757 placement h
13758 wide false
13759 sideways false
13760 status open
13761
13762 \begin_layout Standard
13763 \begin_inset Caption
13764
13765 \begin_layout Standard
13766 \begin_inset LatexCommand label
13767 name "tab:Tabla-coloreada-con"
13768
13769 \end_inset
13770
13771 Tabla coloreada usando el paquete 
13772 \series bold
13773 colortbl
13774 \series default
13775
13776 \begin_inset OptArg
13777 status collapsed
13778
13779 \begin_layout Standard
13780 Tabla con colortbl
13781 \end_layout
13782
13783 \end_inset
13784
13785
13786 \end_layout
13787
13788 \end_inset
13789
13790
13791 \end_layout
13792
13793 \begin_layout Standard
13794 \align center
13795 \begin_inset Tabular
13796 <lyxtabular version="3" rows="3" columns="3">
13797 <features>
13798 <column alignment="center" valignment="top" leftline="true" width="0" special=">{\columncolor{verdeoscuro}\centering}c">
13799 <column alignment="center" valignment="top" width="0">
13800 <column alignment="center" valignment="top" width="0">
13801 <row>
13802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13803 \begin_inset Text
13804
13805 \begin_layout Standard
13806 \begin_inset ERT
13807 status collapsed
13808
13809 \begin_layout Standard
13810
13811
13812 \backslash
13813 rowcolor{cyan}
13814 \end_layout
13815
13816 \end_inset
13817
13818
13819 \color magenta
13820 a
13821 \end_layout
13822
13823 \end_inset
13824 </cell>
13825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13826 \begin_inset Text
13827
13828 \begin_layout Standard
13829
13830 \color red
13831 b
13832 \end_layout
13833
13834 \end_inset
13835 </cell>
13836 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13837 \begin_inset Text
13838
13839 \begin_layout Standard
13840
13841 \color red
13842 c
13843 \end_layout
13844
13845 \end_inset
13846 </cell>
13847 </row>
13848 <row>
13849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13850 \begin_inset Text
13851
13852 \begin_layout Standard
13853
13854 \color yellow
13855 d
13856 \end_layout
13857
13858 \end_inset
13859 </cell>
13860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13861 \begin_inset Text
13862
13863 \begin_layout Standard
13864
13865 \color blue
13866 e
13867 \end_layout
13868
13869 \end_inset
13870 </cell>
13871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13872 \begin_inset Text
13873
13874 \begin_layout Standard
13875
13876 \color blue
13877 f
13878 \end_layout
13879
13880 \end_inset
13881 </cell>
13882 </row>
13883 <row>
13884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13885 \begin_inset Text
13886
13887 \begin_layout Standard
13888
13889 \color yellow
13890 g
13891 \end_layout
13892
13893 \end_inset
13894 </cell>
13895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13896 \begin_inset Text
13897
13898 \begin_layout Standard
13899
13900 \color blue
13901 h
13902 \end_layout
13903
13904 \end_inset
13905 </cell>
13906 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13907 \begin_inset Text
13908
13909 \begin_layout Standard
13910 \begin_inset ERT
13911 status collapsed
13912
13913 \begin_layout Standard
13914
13915
13916 \backslash
13917 cellcolor{magenta}
13918 \end_layout
13919
13920 \end_inset
13921
13922
13923 \color green
13924 i
13925 \end_layout
13926
13927 \end_inset
13928 </cell>
13929 </row>
13930 </lyxtabular>
13931
13932 \end_inset
13933
13934
13935 \end_layout
13936
13937 \end_inset
13938
13939
13940 \end_layout
13941
13942 \begin_layout Subsection
13943 Líneas coloreadas
13944 \begin_inset LatexCommand index
13945 name "Tablas Coloreadas ! Líneas"
13946
13947 \end_inset
13948
13949
13950 \begin_inset LatexCommand index
13951 name "Color ! en Líneas de Tabla"
13952
13953 \end_inset
13954
13955
13956 \end_layout
13957
13958 \begin_layout Standard
13959 Como se describe en la sección\InsetSpace ~
13960
13961 \begin_inset LatexCommand ref
13962 reference "sub:Grosor-de-Líneas"
13963
13964 \end_inset
13965
13966 , el grosor para todas las líneas en una tabla puede ajustarse con el comando
13967  
13968 \series bold
13969
13970 \backslash
13971 arrayrulewidth
13972 \series default
13973 .
13974  Se ha puesto 1.5\InsetSpace \thinspace{}
13975 pt para todas las tablas de esta sección.
13976 \begin_inset ERT
13977 status collapsed
13978
13979 \begin_layout Standard
13980
13981
13982 \backslash
13983 setlength{
13984 \backslash
13985 arrayrulewidth}{1.5pt}
13986 \end_layout
13987
13988 \end_inset
13989
13990
13991 \end_layout
13992
13993 \begin_layout Standard
13994 Por ejemplo, para colorear todas las líneas verticales en verde, crea en
13995  el preámbulo del documento el siguiente formato de columna, de acuerdo
13996  a lo descrito en la sección\InsetSpace ~
13997
13998 \begin_inset LatexCommand ref
13999 reference "sub:Formato-Personalizado"
14000
14001 \end_inset
14002
14003 :
14004 \end_layout
14005
14006 \begin_layout Standard
14007
14008 \series bold
14009
14010 \backslash
14011 newcolumntype{W}{!{
14012 \backslash
14013 color{green}
14014 \backslash
14015 vline}}
14016 \end_layout
14017
14018 \begin_layout Standard
14019 Para la tabla\InsetSpace ~
14020
14021 \begin_inset LatexCommand ref
14022 reference "tab:Tabla-con-verticales-coloreadas"
14023
14024 \end_inset
14025
14026  se usó el argumento LaTeX
14027 \end_layout
14028
14029 \begin_layout Standard
14030
14031 \series bold
14032 WcW
14033 \end_layout
14034
14035 \begin_layout Standard
14036 para la última columna y
14037 \end_layout
14038
14039 \begin_layout Standard
14040
14041 \series bold
14042 Wc
14043 \end_layout
14044
14045 \begin_layout Standard
14046 para las demás.
14047 \end_layout
14048
14049 \begin_layout Standard
14050 Si quieres tener varios colores, define más formatos de columna.
14051 \end_layout
14052
14053 \begin_layout Standard
14054 \begin_inset Float table
14055 wide false
14056 sideways false
14057 status collapsed
14058
14059 \begin_layout Standard
14060 \begin_inset Caption
14061
14062 \begin_layout Standard
14063 \begin_inset LatexCommand label
14064 name "tab:Tabla-con-verticales-coloreadas"
14065
14066 \end_inset
14067
14068 Tabla con líneas verticales coloreadas
14069 \end_layout
14070
14071 \end_inset
14072
14073
14074 \end_layout
14075
14076 \begin_layout Standard
14077 \align center
14078 \begin_inset Tabular
14079 <lyxtabular version="3" rows="3" columns="3">
14080 <features>
14081 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14082 <column alignment="center" valignment="top" width="0" special="Wc">
14083 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14084 <row topline="true">
14085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14086 \begin_inset Text
14087
14088 \begin_layout Standard
14089 sd
14090 \end_layout
14091
14092 \end_inset
14093 </cell>
14094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14095 \begin_inset Text
14096
14097 \begin_layout Standard
14098
14099 \end_layout
14100
14101 \end_inset
14102 </cell>
14103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14104 \begin_inset Text
14105
14106 \begin_layout Standard
14107
14108 \end_layout
14109
14110 \end_inset
14111 </cell>
14112 </row>
14113 <row topline="true">
14114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14115 \begin_inset Text
14116
14117 \begin_layout Standard
14118
14119 \end_layout
14120
14121 \end_inset
14122 </cell>
14123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14124 \begin_inset Text
14125
14126 \begin_layout Standard
14127 sd
14128 \end_layout
14129
14130 \end_inset
14131 </cell>
14132 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14133 \begin_inset Text
14134
14135 \begin_layout Standard
14136
14137 \end_layout
14138
14139 \end_inset
14140 </cell>
14141 </row>
14142 <row topline="true" bottomline="true">
14143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14144 \begin_inset Text
14145
14146 \begin_layout Standard
14147
14148 \end_layout
14149
14150 \end_inset
14151 </cell>
14152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14153 \begin_inset Text
14154
14155 \begin_layout Standard
14156
14157 \end_layout
14158
14159 \end_inset
14160 </cell>
14161 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14162 \begin_inset Text
14163
14164 \begin_layout Standard
14165 sd
14166 \end_layout
14167
14168 \end_inset
14169 </cell>
14170 </row>
14171 </lyxtabular>
14172
14173 \end_inset
14174
14175
14176 \end_layout
14177
14178 \end_inset
14179
14180
14181 \end_layout
14182
14183 \begin_layout Standard
14184 \begin_inset VSpace bigskip
14185 \end_inset
14186
14187 Para colorear líneas horizontales, por ejemplo en rojo, como en la tabla\InsetSpace ~
14188
14189 \begin_inset LatexCommand ref
14190 reference "tab:Tabla-con-horizontales-coloreadas"
14191
14192 \end_inset
14193
14194 , inserta estos comandos en ERT antes de la tabla o del flotante:
14195 \end_layout
14196
14197 \begin_layout Standard
14198
14199 \series bold
14200
14201 \backslash
14202 let
14203 \backslash
14204 myHlineC
14205 \backslash
14206 hline
14207 \newline
14208
14209 \backslash
14210 renewcommand{
14211 \backslash
14212 hline}{
14213 \backslash
14214 arrayrulecolor{red}
14215 \backslash
14216 myHlineC
14217 \backslash
14218 arrayrulecolor{black}}
14219 \end_layout
14220
14221 \begin_layout Standard
14222 \begin_inset ERT
14223 status collapsed
14224
14225 \begin_layout Standard
14226
14227
14228 \backslash
14229 let
14230 \backslash
14231 myHlineC
14232 \backslash
14233 hline
14234 \end_layout
14235
14236 \begin_layout Standard
14237
14238
14239 \backslash
14240 renewcommand{
14241 \backslash
14242 hline}{
14243 \backslash
14244 arrayrulecolor{red}
14245 \backslash
14246 myHlineC
14247 \backslash
14248 arrayrulecolor{black}}
14249 \end_layout
14250
14251 \end_inset
14252
14253
14254 \begin_inset Float table
14255 wide false
14256 sideways false
14257 status open
14258
14259 \begin_layout Standard
14260 \begin_inset Caption
14261
14262 \begin_layout Standard
14263 \begin_inset LatexCommand label
14264 name "tab:Tabla-con-horizontales-coloreadas"
14265
14266 \end_inset
14267
14268 Tabla con líneas horizontales coloreadas
14269 \end_layout
14270
14271 \end_inset
14272
14273
14274 \end_layout
14275
14276 \begin_layout Standard
14277 \align center
14278 \begin_inset Tabular
14279 <lyxtabular version="3" rows="3" columns="3">
14280 <features>
14281 <column alignment="center" valignment="top" leftline="true" width="0">
14282 <column alignment="center" valignment="top" leftline="true" width="0">
14283 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14284 <row topline="true">
14285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14286 \begin_inset Text
14287
14288 \begin_layout Standard
14289 sd
14290 \end_layout
14291
14292 \end_inset
14293 </cell>
14294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14295 \begin_inset Text
14296
14297 \begin_layout Standard
14298
14299 \end_layout
14300
14301 \end_inset
14302 </cell>
14303 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14304 \begin_inset Text
14305
14306 \begin_layout Standard
14307
14308 \end_layout
14309
14310 \end_inset
14311 </cell>
14312 </row>
14313 <row topline="true">
14314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14315 \begin_inset Text
14316
14317 \begin_layout Standard
14318
14319 \end_layout
14320
14321 \end_inset
14322 </cell>
14323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14324 \begin_inset Text
14325
14326 \begin_layout Standard
14327 sd
14328 \end_layout
14329
14330 \end_inset
14331 </cell>
14332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14333 \begin_inset Text
14334
14335 \begin_layout Standard
14336
14337 \end_layout
14338
14339 \end_inset
14340 </cell>
14341 </row>
14342 <row topline="true" bottomline="true">
14343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14344 \begin_inset Text
14345
14346 \begin_layout Standard
14347
14348 \end_layout
14349
14350 \end_inset
14351 </cell>
14352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14353 \begin_inset Text
14354
14355 \begin_layout Standard
14356
14357 \end_layout
14358
14359 \end_inset
14360 </cell>
14361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14362 \begin_inset Text
14363
14364 \begin_layout Standard
14365 sd
14366 \end_layout
14367
14368 \end_inset
14369 </cell>
14370 </row>
14371 </lyxtabular>
14372
14373 \end_inset
14374
14375
14376 \end_layout
14377
14378 \end_inset
14379
14380
14381 \end_layout
14382
14383 \begin_layout Standard
14384 \begin_inset ERT
14385 status collapsed
14386
14387 \begin_layout Standard
14388
14389
14390 \backslash
14391 pagebreak 
14392 \end_layout
14393
14394 \end_inset
14395
14396
14397 \end_layout
14398
14399 \begin_layout Standard
14400 Para volver al color de línea negro predeterminado inserta este comando
14401  en ERT detrás de la tabla o el flotante:
14402 \end_layout
14403
14404 \begin_layout Standard
14405
14406 \series bold
14407
14408 \backslash
14409 renewcommand{
14410 \backslash
14411 hline}{
14412 \backslash
14413 myHlineC}
14414 \end_layout
14415
14416 \begin_layout Standard
14417 La tabla\InsetSpace ~
14418
14419 \begin_inset LatexCommand ref
14420 reference "tab:Tabla-con-líneas-coloreadas"
14421
14422 \end_inset
14423
14424  es un ejemplo con líneas verticales y horizontales coloreadas.
14425 \end_layout
14426
14427 \begin_layout Standard
14428 \begin_inset Float table
14429 wide false
14430 sideways false
14431 status open
14432
14433 \begin_layout Standard
14434 \begin_inset Caption
14435
14436 \begin_layout Standard
14437 \begin_inset LatexCommand label
14438 name "tab:Tabla-con-líneas-coloreadas"
14439
14440 \end_inset
14441
14442 Tabla con líneas coloreadas
14443 \end_layout
14444
14445 \end_inset
14446
14447
14448 \end_layout
14449
14450 \begin_layout Standard
14451 \align center
14452 \begin_inset Tabular
14453 <lyxtabular version="3" rows="3" columns="3">
14454 <features>
14455 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14456 <column alignment="center" valignment="top" width="0" special="Wc">
14457 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14458 <row topline="true">
14459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14460 \begin_inset Text
14461
14462 \begin_layout Standard
14463 sd
14464 \end_layout
14465
14466 \end_inset
14467 </cell>
14468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14469 \begin_inset Text
14470
14471 \begin_layout Standard
14472
14473 \end_layout
14474
14475 \end_inset
14476 </cell>
14477 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14478 \begin_inset Text
14479
14480 \begin_layout Standard
14481
14482 \end_layout
14483
14484 \end_inset
14485 </cell>
14486 </row>
14487 <row topline="true">
14488 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14489 \begin_inset Text
14490
14491 \begin_layout Standard
14492
14493 \end_layout
14494
14495 \end_inset
14496 </cell>
14497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14498 \begin_inset Text
14499
14500 \begin_layout Standard
14501 sd
14502 \end_layout
14503
14504 \end_inset
14505 </cell>
14506 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14507 \begin_inset Text
14508
14509 \begin_layout Standard
14510
14511 \end_layout
14512
14513 \end_inset
14514 </cell>
14515 </row>
14516 <row topline="true" bottomline="true">
14517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14518 \begin_inset Text
14519
14520 \begin_layout Standard
14521
14522 \end_layout
14523
14524 \end_inset
14525 </cell>
14526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14527 \begin_inset Text
14528
14529 \begin_layout Standard
14530
14531 \end_layout
14532
14533 \end_inset
14534 </cell>
14535 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14536 \begin_inset Text
14537
14538 \begin_layout Standard
14539 sd
14540 \end_layout
14541
14542 \end_inset
14543 </cell>
14544 </row>
14545 </lyxtabular>
14546
14547 \end_inset
14548
14549
14550 \end_layout
14551
14552 \end_inset
14553
14554
14555 \end_layout
14556
14557 \begin_layout Standard
14558 \begin_inset ERT
14559 status collapsed
14560
14561 \begin_layout Standard
14562
14563
14564 \backslash
14565 renewcommand{
14566 \backslash
14567 hline}{
14568 \backslash
14569 myHlineC}
14570 \end_layout
14571
14572 \end_inset
14573
14574
14575 \end_layout
14576
14577 \begin_layout Standard
14578 \begin_inset ERT
14579 status collapsed
14580
14581 \begin_layout Standard
14582
14583
14584 \backslash
14585 setlength{
14586 \backslash
14587 arrayrulewidth}{0.4pt}
14588 \end_layout
14589
14590 \end_inset
14591
14592
14593 \end_layout
14594
14595 \begin_layout Section
14596 Personalización de Tablas
14597 \begin_inset LatexCommand index
14598 name "Personalización de Tablas"
14599
14600 \end_inset
14601
14602
14603 \begin_inset LatexCommand index
14604 name "Tablas ! Personalización"
14605
14606 \end_inset
14607
14608
14609 \end_layout
14610
14611 \begin_layout Subsection
14612 Espacio Adicional en Filas
14613 \begin_inset LatexCommand label
14614 name "sub:Espacio-adicional"
14615
14616 \end_inset
14617
14618
14619 \begin_inset LatexCommand index
14620 name "Personalización de Tablas ! Espacio Adicional en Filas"
14621
14622 \end_inset
14623
14624
14625 \end_layout
14626
14627 \begin_layout Standard
14628 Es posible añadir espacio vertical a las filas de una tabla en la pestaña
14629  
14630 \family sans
14631 Bordes,
14632 \family default
14633  del diálogo de configuración de tablas.
14634  En el marco 
14635 \family sans
14636 Espacio\InsetSpace ~
14637 adicional
14638 \family default
14639  dispones de tres posibilidades:
14640 \end_layout
14641
14642 \begin_layout Description
14643 Superior\InsetSpace ~
14644 de\InsetSpace ~
14645 la\InsetSpace ~
14646 fila añade espacio sobre los caracteres de la fila.
14647  Si la tabla es de estilo formal
14648 \begin_inset Foot
14649 status collapsed
14650
14651 \begin_layout Standard
14652 Las tablas formales se explican en la sección\InsetSpace ~
14653
14654 \begin_inset LatexCommand ref
14655 reference "sec:Tablas-Formales"
14656
14657 \end_inset
14658
14659
14660 \end_layout
14661
14662 \end_inset
14663
14664  LyX insertará 0.5\InsetSpace \thinspace{}
14665 em por defecto.
14666  Si la tabla es de estilo normal el espacio adicional destruirá las líneas
14667  verticales, como se ve en la tabla siguiente: 
14668 \begin_inset Tabular
14669 <lyxtabular version="3" rows="3" columns="1">
14670 <features>
14671 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14672 <row topline="true">
14673 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14674 \begin_inset Text
14675
14676 \begin_layout Standard
14677 A
14678 \end_layout
14679
14680 \end_inset
14681 </cell>
14682 </row>
14683 <row topline="true" topspace="3mm">
14684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14685 \begin_inset Text
14686
14687 \begin_layout Standard
14688 3\InsetSpace \thinspace{}
14689 mm sobre la fila
14690 \end_layout
14691
14692 \end_inset
14693 </cell>
14694 </row>
14695 <row topline="true" bottomline="true">
14696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14697 \begin_inset Text
14698
14699 \begin_layout Standard
14700 C
14701 \end_layout
14702
14703 \end_inset
14704 </cell>
14705 </row>
14706 </lyxtabular>
14707
14708 \end_inset
14709
14710
14711 \newline
14712 Así pues, insertar espacio superior en tablas normales sólo es útil en tablas
14713  sin líneas verticales.
14714 \end_layout
14715
14716 \begin_layout Description
14717 Inferior\InsetSpace ~
14718 de\InsetSpace ~
14719 la\InsetSpace ~
14720 fila añade espacio bajo los caracteres de la fila.
14721  Si la tabla es formal LyX inserta por defecto 0.5\InsetSpace \thinspace{}
14722 em; si la tabla es normal
14723  inserta 2\InsetSpace \thinspace{}
14724 pt.
14725  
14726 \end_layout
14727
14728 \begin_layout Description
14729 Entre\InsetSpace ~
14730 las\InsetSpace ~
14731 filas sólo funciona si antes has seleccionado toda la fila.
14732  El espacio se añade entre la fila actual y la siguiente.
14733  Si la tabla es formal LyX inserta 0.5\InsetSpace \thinspace{}
14734 em por defecto.
14735  En tablas normales, el espacio adicional destruirá las líneas verticales
14736  de la tabla, como se ve en la siguiente: 
14737 \begin_inset Tabular
14738 <lyxtabular version="3" rows="3" columns="1">
14739 <features>
14740 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14741 <row topline="true">
14742 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14743 \begin_inset Text
14744
14745 \begin_layout Standard
14746 A
14747 \end_layout
14748
14749 \end_inset
14750 </cell>
14751 </row>
14752 <row topline="true" interlinespace="3mm">
14753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14754 \begin_inset Text
14755
14756 \begin_layout Standard
14757 \begin_inset Formula $\downarrow$
14758 \end_inset
14759
14760  3\InsetSpace \thinspace{}
14761 mm entre las filas
14762 \end_layout
14763
14764 \end_inset
14765 </cell>
14766 </row>
14767 <row topline="true" bottomline="true">
14768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14769 \begin_inset Text
14770
14771 \begin_layout Standard
14772 \begin_inset Formula $\uparrow$
14773 \end_inset
14774
14775  3\InsetSpace \thinspace{}
14776 mm entre las filas 
14777 \begin_inset Formula $\uparrow$
14778 \end_inset
14779
14780
14781 \end_layout
14782
14783 \end_inset
14784 </cell>
14785 </row>
14786 </lyxtabular>
14787
14788 \end_inset
14789
14790
14791 \newline
14792 Así pues, los espacios adicionales entre filas de tablas normales sólo sirven
14793  para tablas sin líneas verticales.
14794 \end_layout
14795
14796 \begin_layout Standard
14797 Para añadir altura vertical extra a todas las celdas de todas las tablas,
14798  utiliza el siguiente comando en el preámbulo:
14799 \end_layout
14800
14801 \begin_layout Standard
14802
14803 \series bold
14804
14805 \backslash
14806 setlength{
14807 \backslash
14808 extrarowheight}{altura}
14809 \end_layout
14810
14811 \begin_layout Standard
14812 Esto tiene el inconveniente de que el texto de las celdas no estará exactamente
14813  centrado en vertical.
14814 \end_layout
14815
14816 \begin_layout Standard
14817
14818 \end_layout
14819
14820 \begin_layout Subsection
14821 Alineación Especial de Celdas
14822 \begin_inset LatexCommand index
14823 name "Personalización de Tablas ! Alineación Especial de Celdas"
14824
14825 \end_inset
14826
14827
14828 \end_layout
14829
14830 \begin_layout Standard
14831 A veces mejora la presentación si las entradas en las celdas de una columna
14832  se alinean con un carácter determinado, p.\InsetSpace \thinspace{}
14833 e.\InsetSpace ~
14834 el separador decimal, como en
14835  la tabla\InsetSpace ~
14836
14837 \begin_inset LatexCommand ref
14838 reference "tab:Tabla-con-celdas-de"
14839
14840 \end_inset
14841
14842 .
14843 \end_layout
14844
14845 \begin_layout Standard
14846 \begin_inset Float table
14847 wide false
14848 sideways false
14849 status open
14850
14851 \begin_layout Standard
14852 \begin_inset Caption
14853
14854 \begin_layout Standard
14855 \begin_inset LatexCommand label
14856 name "tab:Tabla-con-celdas-de"
14857
14858 \end_inset
14859
14860 Tabla con celdas alineadas con el separador decimal.
14861 \end_layout
14862
14863 \end_inset
14864
14865
14866 \end_layout
14867
14868 \begin_layout Standard
14869 \align center
14870 \begin_inset Tabular
14871 <lyxtabular version="3" rows="4" columns="2">
14872 <features>
14873 <column alignment="right" valignment="top" width="0">
14874 <column alignment="left" valignment="top" width="0" special="@{}l">
14875 <row bottomline="true">
14876 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
14877 \begin_inset Text
14878
14879 \begin_layout Standard
14880 encabezado
14881 \end_layout
14882
14883 \end_inset
14884 </cell>
14885 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14886 \begin_inset Text
14887
14888 \begin_layout Standard
14889
14890 \end_layout
14891
14892 \end_inset
14893 </cell>
14894 </row>
14895 <row>
14896 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14897 \begin_inset Text
14898
14899 \begin_layout Standard
14900 12.
14901 \end_layout
14902
14903 \end_inset
14904 </cell>
14905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14906 \begin_inset Text
14907
14908 \begin_layout Standard
14909 6
14910 \end_layout
14911
14912 \end_inset
14913 </cell>
14914 </row>
14915 <row>
14916 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14917 \begin_inset Text
14918
14919 \begin_layout Standard
14920 0.
14921 \end_layout
14922
14923 \end_inset
14924 </cell>
14925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14926 \begin_inset Text
14927
14928 \begin_layout Standard
14929 68
14930 \end_layout
14931
14932 \end_inset
14933 </cell>
14934 </row>
14935 <row>
14936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14937 \begin_inset Text
14938
14939 \begin_layout Standard
14940 -123.
14941 \end_layout
14942
14943 \end_inset
14944 </cell>
14945 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14946 \begin_inset Text
14947
14948 \begin_layout Standard
14949 0
14950 \end_layout
14951
14952 \end_inset
14953 </cell>
14954 </row>
14955 </lyxtabular>
14956
14957 \end_inset
14958
14959
14960 \end_layout
14961
14962 \end_inset
14963
14964
14965 \end_layout
14966
14967 \begin_layout Standard
14968 Esta es una tabla 4×2.
14969  El encabezado es una multicolumna centrada.
14970  La primera columna está alineada a la derecha y contiene el punto decimal
14971  y los dígitos anteriores.
14972  La segunda columna está alineada a la izquierda y contiene los dígitos
14973  posteriores al punto decimal.
14974  Para omitir el espacio que hay normalmente entre dos columnas usa el siguiente
14975  argumento LaTeX para la segunda columna:
14976 \end_layout
14977
14978 \begin_layout Standard
14979
14980 \series bold
14981 @{}l
14982 \end_layout
14983
14984 \begin_layout Standard
14985 Si quieres una línea vertical a la derecha de la segunda columna, usa en
14986  su lugar el argumento LaTeX: 
14987 \series bold
14988 @{}l|
14989 \end_layout
14990
14991 \begin_layout Standard
14992 La tabla\InsetSpace ~
14993
14994 \begin_inset LatexCommand ref
14995 reference "tab:Varias-alineaciones"
14996
14997 \end_inset
14998
14999  muestra varios ejemplos de alineación.
15000  Para alinear con el signo de relación debes añadir el segundo espacio matemátic
15001 o más pequeño al comienzo de la última columna para conseguir el espacio
15002  adecuado alrededor del signo.
15003 \end_layout
15004
15005 \begin_layout Standard
15006 \begin_inset Float table
15007 wide false
15008 sideways false
15009 status open
15010
15011 \begin_layout Standard
15012 \begin_inset Caption
15013
15014 \begin_layout Standard
15015 \begin_inset LatexCommand label
15016 name "tab:Varias-alineaciones"
15017
15018 \end_inset
15019
15020 Tabla con varias alineaciones.
15021 \end_layout
15022
15023 \end_inset
15024
15025
15026 \end_layout
15027
15028 \begin_layout Standard
15029 \align center
15030 \begin_inset Tabular
15031 <lyxtabular version="3" rows="4" columns="6">
15032 <features>
15033 <column alignment="right" valignment="top" width="0">
15034 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15035 <column alignment="right" valignment="top" width="0">
15036 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15037 <column alignment="right" valignment="top" width="0">
15038 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15039 <row bottomline="true">
15040 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15041 \begin_inset Text
15042
15043 \begin_layout Standard
15044 unidades
15045 \end_layout
15046
15047 \end_inset
15048 </cell>
15049 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15050 \begin_inset Text
15051
15052 \begin_layout Standard
15053
15054 \end_layout
15055
15056 \end_inset
15057 </cell>
15058 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15059 \begin_inset Text
15060
15061 \begin_layout Standard
15062 exponentes
15063 \end_layout
15064
15065 \end_inset
15066 </cell>
15067 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15068 \begin_inset Text
15069
15070 \begin_layout Standard
15071
15072 \end_layout
15073
15074 \end_inset
15075 </cell>
15076 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15077 \begin_inset Text
15078
15079 \begin_layout Standard
15080 relaciones
15081 \end_layout
15082
15083 \end_inset
15084 </cell>
15085 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15086 \begin_inset Text
15087
15088 \begin_layout Standard
15089
15090 \end_layout
15091
15092 \end_inset
15093 </cell>
15094 </row>
15095 <row>
15096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15097 \begin_inset Text
15098
15099 \begin_layout Standard
15100 12×
15101 \end_layout
15102
15103 \end_inset
15104 </cell>
15105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15106 \begin_inset Text
15107
15108 \begin_layout Standard
15109 24\InsetSpace \thinspace{}
15110 bottles
15111 \end_layout
15112
15113 \end_inset
15114 </cell>
15115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15116 \begin_inset Text
15117
15118 \begin_layout Standard
15119 \begin_inset Formula $10\cdot$
15120 \end_inset
15121
15122
15123 \end_layout
15124
15125 \end_inset
15126 </cell>
15127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15128 \begin_inset Text
15129
15130 \begin_layout Standard
15131 \begin_inset Formula $10^{\mbox{-}17}$
15132 \end_inset
15133
15134
15135 \end_layout
15136
15137 \end_inset
15138 </cell>
15139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15140 \begin_inset Text
15141
15142 \begin_layout Standard
15143 \begin_inset Formula $\Gamma(t)\propto$
15144 \end_inset
15145
15146
15147 \end_layout
15148
15149 \end_inset
15150 </cell>
15151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15152 \begin_inset Text
15153
15154 \begin_layout Standard
15155 \begin_inset Formula $\:\Upsilon(t)$
15156 \end_inset
15157
15158
15159 \end_layout
15160
15161 \end_inset
15162 </cell>
15163 </row>
15164 <row>
15165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15166 \begin_inset Text
15167
15168 \begin_layout Standard
15169 1024×
15170 \end_layout
15171
15172 \end_inset
15173 </cell>
15174 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15175 \begin_inset Text
15176
15177 \begin_layout Standard
15178 768\InsetSpace \thinspace{}
15179 Pixels
15180 \end_layout
15181
15182 \end_inset
15183 </cell>
15184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15185 \begin_inset Text
15186
15187 \begin_layout Standard
15188 \begin_inset Formula $5.78\cdot$
15189 \end_inset
15190
15191
15192 \end_layout
15193
15194 \end_inset
15195 </cell>
15196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15197 \begin_inset Text
15198
15199 \begin_layout Standard
15200 \begin_inset Formula $10^{7}$
15201 \end_inset
15202
15203
15204 \end_layout
15205
15206 \end_inset
15207 </cell>
15208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15209 \begin_inset Text
15210
15211 \begin_layout Standard
15212 \begin_inset Formula $A\ne$
15213 \end_inset
15214
15215
15216 \end_layout
15217
15218 \end_inset
15219 </cell>
15220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15221 \begin_inset Text
15222
15223 \begin_layout Standard
15224 \begin_inset Formula $\: B_{\mathrm{red}}$
15225 \end_inset
15226
15227
15228 \end_layout
15229
15230 \end_inset
15231 </cell>
15232 </row>
15233 <row>
15234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15235 \begin_inset Text
15236
15237 \begin_layout Standard
15238 32×
15239 \end_layout
15240
15241 \end_inset
15242 </cell>
15243 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15244 \begin_inset Text
15245
15246 \begin_layout Standard
15247 6\InsetSpace \thinspace{}
15248 cm
15249 \end_layout
15250
15251 \end_inset
15252 </cell>
15253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15254 \begin_inset Text
15255
15256 \begin_layout Standard
15257 -
15258 \begin_inset Formula $33.5\cdot$
15259 \end_inset
15260
15261
15262 \end_layout
15263
15264 \end_inset
15265 </cell>
15266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15267 \begin_inset Text
15268
15269 \begin_layout Standard
15270 \begin_inset Formula $10^{4}$
15271 \end_inset
15272
15273
15274 \end_layout
15275
15276 \end_inset
15277 </cell>
15278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15279 \begin_inset Text
15280
15281 \begin_layout Standard
15282 \begin_inset Formula $\sin(\alpha)\ge$
15283 \end_inset
15284
15285
15286 \end_layout
15287
15288 \end_inset
15289 </cell>
15290 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15291 \begin_inset Text
15292
15293 \begin_layout Standard
15294 \begin_inset Formula $\:\sin(\beta)$
15295 \end_inset
15296
15297
15298 \end_layout
15299
15300 \end_inset
15301 </cell>
15302 </row>
15303 </lyxtabular>
15304
15305 \end_inset
15306
15307
15308 \end_layout
15309
15310 \end_inset
15311
15312
15313 \end_layout
15314
15315 \begin_layout Standard
15316 \begin_inset VSpace bigskip
15317 \end_inset
15318
15319 También hay un paquete LaTeX, 
15320 \series bold
15321 dcolumn
15322 \series default
15323
15324 \begin_inset LatexCommand index
15325 name "LaTeX-paquetes ! dcolumn"
15326
15327 \end_inset
15328
15329 , que provee alineación de celdas.
15330  Pero desgraciadamente trata las entradas de celda en modo matemático y
15331  no permite fórmulas en celdas: La primera columna de la tabla\InsetSpace ~
15332
15333 \begin_inset LatexCommand ref
15334 reference "tab:Varias-alineaciones"
15335
15336 \end_inset
15337
15338  se verá con 
15339 \series bold
15340 dcolumn
15341 \series default
15342  como la primera columna en la tabla\InsetSpace ~
15343
15344 \begin_inset LatexCommand ref
15345 reference "tab:Alineaciones-con-el"
15346
15347 \end_inset
15348
15349  y solo con algunos trucos se consigue lo que se espera.
15350  La lineación de la segunda y tercera columnas de la tabla\InsetSpace ~
15351
15352 \begin_inset LatexCommand ref
15353 reference "tab:Varias-alineaciones"
15354
15355 \end_inset
15356
15357  no es posible con 
15358 \series bold
15359 dcolumn
15360 \series default
15361 .
15362 \end_layout
15363
15364 \begin_layout Standard
15365 \begin_inset Float table
15366 placement h
15367 wide false
15368 sideways false
15369 status open
15370
15371 \begin_layout Standard
15372 \begin_inset Caption
15373
15374 \begin_layout Standard
15375 \begin_inset LatexCommand label
15376 name "tab:Alineaciones-con-el"
15377
15378 \end_inset
15379
15380 Alineaciones con el paquete LaTeX 
15381 \series bold
15382 dcolumn
15383 \series default
15384 .
15385  Para la segunda y tercera alineaciones se han hecho algunos trucos.
15386 \end_layout
15387
15388 \end_inset
15389
15390
15391 \end_layout
15392
15393 \begin_layout Standard
15394 \align center
15395 \begin_inset Tabular
15396 <lyxtabular version="3" rows="4" columns="3">
15397 <features>
15398 <column alignment="center" valignment="top" rightline="true" width="0" special="D{×}{\times}{-1}|">
15399 <column alignment="center" valignment="top" width="0" special="D{×}{\times}{4.9}|">
15400 <column alignment="center" valignment="top" rightline="true" width="0" special="D{~}{\,}{9.7}">
15401 <row bottomline="true">
15402 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15403 \begin_inset Text
15404
15405 \begin_layout Standard
15406 unidades
15407 \end_layout
15408
15409 \end_inset
15410 </cell>
15411 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15412 \begin_inset Text
15413
15414 \begin_layout Standard
15415 unidades
15416 \end_layout
15417
15418 \end_inset
15419 </cell>
15420 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15421 \begin_inset Text
15422
15423 \begin_layout Standard
15424 unidades
15425 \end_layout
15426
15427 \end_inset
15428 </cell>
15429 </row>
15430 <row>
15431 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15432 \begin_inset Text
15433
15434 \begin_layout Standard
15435 12×24\InsetSpace \thinspace{}
15436 bottles
15437 \end_layout
15438
15439 \end_inset
15440 </cell>
15441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15442 \begin_inset Text
15443
15444 \begin_layout Standard
15445 12×24\InsetSpace \thinspace{}
15446
15447 \begin_inset Formula $\mbox{bottles}$
15448 \end_inset
15449
15450
15451 \end_layout
15452
15453 \end_inset
15454 </cell>
15455 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15456 \begin_inset Text
15457
15458 \begin_layout Standard
15459 12×24~
15460 \begin_inset Formula $\mbox{bottles}$
15461 \end_inset
15462
15463
15464 \end_layout
15465
15466 \end_inset
15467 </cell>
15468 </row>
15469 <row>
15470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15471 \begin_inset Text
15472
15473 \begin_layout Standard
15474 1024×768\InsetSpace \thinspace{}
15475 Pixels
15476 \end_layout
15477
15478 \end_inset
15479 </cell>
15480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15481 \begin_inset Text
15482
15483 \begin_layout Standard
15484 1024×768\InsetSpace \thinspace{}
15485
15486 \begin_inset Formula $\mbox{Pixels}$
15487 \end_inset
15488
15489
15490 \end_layout
15491
15492 \end_inset
15493 </cell>
15494 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15495 \begin_inset Text
15496
15497 \begin_layout Standard
15498 1024×768~
15499 \begin_inset Formula $\mbox{Pixels}$
15500 \end_inset
15501
15502
15503 \end_layout
15504
15505 \end_inset
15506 </cell>
15507 </row>
15508 <row>
15509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15510 \begin_inset Text
15511
15512 \begin_layout Standard
15513 32×6\InsetSpace \thinspace{}
15514 cm
15515 \end_layout
15516
15517 \end_inset
15518 </cell>
15519 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15520 \begin_inset Text
15521
15522 \begin_layout Standard
15523 32×6\InsetSpace \thinspace{}
15524
15525 \begin_inset Formula $\mbox{cm}$
15526 \end_inset
15527
15528
15529 \end_layout
15530
15531 \end_inset
15532 </cell>
15533 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15534 \begin_inset Text
15535
15536 \begin_layout Standard
15537 32×6~
15538 \begin_inset Formula $\mbox{cm}$
15539 \end_inset
15540
15541
15542 \end_layout
15543
15544 \end_inset
15545 </cell>
15546 </row>
15547 </lyxtabular>
15548
15549 \end_inset
15550
15551
15552 \end_layout
15553
15554 \end_inset
15555
15556
15557 \end_layout
15558
15559 \begin_layout Subsection
15560 Formato Personalizado de Celda/Columna
15561 \begin_inset LatexCommand label
15562 name "sub:Formato-Personalizado"
15563
15564 \end_inset
15565
15566
15567 \begin_inset LatexCommand index
15568 name "Personalización de Tablas ! Formato de Celda/Columna"
15569
15570 \end_inset
15571
15572
15573 \end_layout
15574
15575 \begin_layout Standard
15576 El cálculo de la anchura nesesaria para columnas extendidas descrito en
15577  la sección\InsetSpace ~
15578
15579 \begin_inset LatexCommand ref
15580 reference "sub:Cálculos-en-Multicolumnas"
15581
15582 \end_inset
15583
15584  es muy pesado si tienes varias tablas con multicolumnas.
15585  Para hacerlo más fácil, puedes definir en el preámbulo un formato de celda/colu
15586 mna aplicable a todas las tablas del documento.
15587  El formato se define con el comando
15588 \end_layout
15589
15590 \begin_layout Standard
15591
15592 \series bold
15593
15594 \backslash
15595 newcolumntype{nombre del formato}[número de argumentos]{comandos}
15596 \end_layout
15597
15598 \begin_layout Standard
15599 El nombre de formato puede ser una sola letra.
15600  Las letras 
15601 \emph on
15602 b, c, l, m, p
15603 \emph default
15604  y 
15605 \emph on
15606 r
15607 \emph default
15608  están predefinidas y no pueden usarse.
15609  Pero se permiten todas las mayúsculas.
15610 \end_layout
15611
15612 \begin_layout Standard
15613 \begin_inset VSpace medskip
15614 \end_inset
15615
15616
15617 \end_layout
15618
15619 \begin_layout Standard
15620 Para celdas multicolumna vertical y horizontalmente centradas con una anchura
15621  fija puedes definir el formato de celda
15622 \end_layout
15623
15624 \begin_layout Standard
15625
15626 \series bold
15627
15628 \backslash
15629 newcolumntype{M}[1]{>{
15630 \backslash
15631 centering
15632 \backslash
15633 hspace{0pt}}m{#1}}
15634 \end_layout
15635
15636 \begin_layout Standard
15637 donde 
15638 \series bold
15639
15640 \backslash
15641 hspace{0pt}
15642 \series default
15643  evita el problema de partir con guión la primera palabra, como se describe
15644  en la sección\InsetSpace ~
15645
15646 \begin_inset LatexCommand ref
15647 reference "sub:Líneas-Múltiples-en"
15648
15649 \end_inset
15650
15651 .
15652  Ahora puedes introducir simplemente
15653 \end_layout
15654
15655 \begin_layout Standard
15656
15657 \series bold
15658 |M{ancho}
15659 \end_layout
15660
15661 \begin_layout Standard
15662 como argumento LaTeX en el diálogo de tabla para crear una multicolumna.
15663 \end_layout
15664
15665 \begin_layout Standard
15666 \begin_inset VSpace bigskip
15667 \end_inset
15668
15669
15670 \end_layout
15671
15672 \begin_layout Standard
15673 Para celdas extendidas en una celda multicolumna, puedes definir el formato
15674 \end_layout
15675
15676 \begin_layout Standard
15677
15678 \series bold
15679
15680 \backslash
15681 newcolumntype{S}[2]{>{
15682 \backslash
15683 centering
15684 \backslash
15685 hspace{0pt}}
15686 \newline
15687
15688 \begin_inset ERT
15689 status collapsed
15690
15691 \begin_layout Standard
15692
15693
15694 \backslash
15695 phantom{
15696 \end_layout
15697
15698 \end_inset
15699
15700
15701 \backslash
15702 newcolumntype{S}[2]
15703 \begin_inset ERT
15704 status collapsed
15705
15706 \begin_layout Standard
15707
15708 }
15709 \end_layout
15710
15711 \end_inset
15712
15713 m{(#1+(2
15714 \backslash
15715 tabcolsep+
15716 \backslash
15717 arrayrulewidth)*(1-#2))/#2}}
15718 \end_layout
15719
15720 \begin_layout Standard
15721 Este formato usa la ecuación 
15722 \begin_inset LatexCommand eqref
15723 reference "eq:Wgn"
15724
15725 \end_inset
15726
15727  para calcular la anchura necesaria para que cada celda extendida tenga
15728  la misma anchura.
15729 \end_layout
15730
15731 \begin_layout Standard
15732 Ahora puedes introducir
15733 \end_layout
15734
15735 \begin_layout Standard
15736
15737 \series bold
15738 |S{ancho de la celda multicolumna}{número de columnas extendidas}
15739 \end_layout
15740
15741 \begin_layout Standard
15742 como argumento LaTeX de la columna.
15743 \end_layout
15744
15745 \begin_layout Standard
15746 \begin_inset VSpace bigskip
15747 \end_inset
15748
15749
15750 \end_layout
15751
15752 \begin_layout Standard
15753 Para columnas coloreadas puedes definir
15754 \end_layout
15755
15756 \begin_layout Standard
15757
15758 \series bold
15759
15760 \backslash
15761 newcolumntype{K}[1]{>{
15762 \backslash
15763 columncolor{#1}
15764 \backslash
15765 hspace{0pt}}c}
15766 \end_layout
15767
15768 \begin_layout Standard
15769 La "c" al final crea una columna con anchura flexible cuyo texto está centrado
15770  horizontalmente.
15771  Ahora puedes introducir
15772 \end_layout
15773
15774 \begin_layout Standard
15775
15776 \series bold
15777 K{nombre del color}
15778 \end_layout
15779
15780 \begin_layout Standard
15781 como argumento LaTeX.
15782 \end_layout
15783
15784 \begin_layout Standard
15785 \begin_inset VSpace bigskip
15786 \end_inset
15787
15788
15789 \end_layout
15790
15791 \begin_layout Standard
15792 Para crear la tabla\InsetSpace ~
15793
15794 \begin_inset LatexCommand ref
15795 reference "tab:Tabla-con-formatos-definidos-por"
15796
15797 \end_inset
15798
15799  usa los argumentos LaTeX
15800 \end_layout
15801
15802 \begin_layout Standard
15803
15804 \series bold
15805 |M{2.5cm}
15806 \end_layout
15807
15808 \begin_layout Standard
15809 para la primera columna y la multicolumna,
15810 \end_layout
15811
15812 \begin_layout Standard
15813
15814 \series bold
15815 |K{red}|
15816 \end_layout
15817
15818 \begin_layout Standard
15819 para la última columna y
15820 \end_layout
15821
15822 \begin_layout Standard
15823
15824 \series bold
15825 |S{2.5cm}{2}
15826 \end_layout
15827
15828 \begin_layout Standard
15829 para las celdas en la segunda columna.
15830 \end_layout
15831
15832 \begin_layout Standard
15833 \begin_inset Float table
15834 placement h
15835 wide false
15836 sideways false
15837 status open
15838
15839 \begin_layout Standard
15840 \begin_inset Caption
15841
15842 \begin_layout Standard
15843 \begin_inset LatexCommand label
15844 name "tab:Tabla-con-formatos-definidos-por"
15845
15846 \end_inset
15847
15848 Tabla con formatos definidos por el usuario
15849 \end_layout
15850
15851 \end_inset
15852
15853
15854 \end_layout
15855
15856 \begin_layout Standard
15857 \align center
15858 \begin_inset Tabular
15859 <lyxtabular version="3" rows="3" columns="4">
15860 <features>
15861 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="|M{2.5cm}">
15862 <column alignment="center" valignment="middle" leftline="true" width="0" special="|S{2.5cm}{2}">
15863 <column alignment="center" valignment="middle" leftline="true" width="0">
15864 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="|K{red}|">
15865 <row topline="true">
15866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15867 \begin_inset Text
15868
15869 \begin_layout Standard
15870 palabramuylargaenceldadetabla
15871 \end_layout
15872
15873 \end_inset
15874 </cell>
15875 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}|">
15876 \begin_inset Text
15877
15878 \begin_layout Standard
15879 multicolumna línea múltiple
15880 \end_layout
15881
15882 \end_inset
15883 </cell>
15884 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15885 \begin_inset Text
15886
15887 \begin_layout Standard
15888
15889 \end_layout
15890
15891 \end_inset
15892 </cell>
15893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15894 \begin_inset Text
15895
15896 \begin_layout Standard
15897 c
15898 \end_layout
15899
15900 \end_inset
15901 </cell>
15902 </row>
15903 <row topline="true">
15904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15905 \begin_inset Text
15906
15907 \begin_layout Standard
15908 d
15909 \end_layout
15910
15911 \end_inset
15912 </cell>
15913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15914 \begin_inset Text
15915
15916 \begin_layout Standard
15917 e
15918 \end_layout
15919
15920 \end_inset
15921 </cell>
15922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15923 \begin_inset Text
15924
15925 \begin_layout Standard
15926 f
15927 \end_layout
15928
15929 \end_inset
15930 </cell>
15931 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15932 \begin_inset Text
15933
15934 \begin_layout Standard
15935 g
15936 \end_layout
15937
15938 \end_inset
15939 </cell>
15940 </row>
15941 <row topline="true" bottomline="true">
15942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15943 \begin_inset Text
15944
15945 \begin_layout Standard
15946 h
15947 \end_layout
15948
15949 \end_inset
15950 </cell>
15951 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15952 \begin_inset Text
15953
15954 \begin_layout Standard
15955 i
15956 \end_layout
15957
15958 \end_inset
15959 </cell>
15960 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15961 \begin_inset Text
15962
15963 \begin_layout Standard
15964 j
15965 \end_layout
15966
15967 \end_inset
15968 </cell>
15969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15970 \begin_inset Text
15971
15972 \begin_layout Standard
15973 k
15974 \end_layout
15975
15976 \end_inset
15977 </cell>
15978 </row>
15979 </lyxtabular>
15980
15981 \end_inset
15982
15983
15984 \end_layout
15985
15986 \end_inset
15987
15988
15989 \end_layout
15990
15991 \begin_layout Subsection
15992 Grosor de Líneas
15993 \begin_inset LatexCommand label
15994 name "sub:Grosor-de-Líneas"
15995
15996 \end_inset
15997
15998
15999 \begin_inset LatexCommand index
16000 name "Personalización de Tablas ! Grosor de Línea"
16001
16002 \end_inset
16003
16004
16005 \end_layout
16006
16007 \begin_layout Standard
16008 El grosor para todas las líneas de una tabla puede ajustarse con la longitud
16009  
16010 \series bold
16011
16012 \backslash
16013 arrayrulewidth
16014 \series default
16015 .
16016  Por ejemplo, para poner un grosor de línea de 1.5\InsetSpace \thinspace{}
16017 pt, como en la tabla\InsetSpace ~
16018
16019 \begin_inset LatexCommand ref
16020 reference "tab:Tabla-con-líneas"
16021
16022 \end_inset
16023
16024 , inserta el comando
16025 \end_layout
16026
16027 \begin_layout Standard
16028
16029 \series bold
16030
16031 \backslash
16032 setlength{
16033 \backslash
16034 arrayrulewidth}{1.5pt}
16035 \end_layout
16036
16037 \begin_layout Standard
16038 en ERT antes de la tabla o flotante.
16039  Este cambio es válido para todas las siguientes tablas.
16040  Para volver al valor predeterminado, define 
16041 \series bold
16042
16043 \backslash
16044 arrayrulewidth
16045 \series default
16046  a 0.4\InsetSpace \thinspace{}
16047 pt en ERT detrás de la tabla o flotante.
16048 \end_layout
16049
16050 \begin_layout Standard
16051 \begin_inset ERT
16052 status collapsed
16053
16054 \begin_layout Standard
16055
16056
16057 \backslash
16058 setlength{
16059 \backslash
16060 arrayrulewidth}{1.5pt}
16061 \end_layout
16062
16063 \end_inset
16064
16065
16066 \begin_inset Float table
16067 wide false
16068 sideways false
16069 status open
16070
16071 \begin_layout Standard
16072 \begin_inset Caption
16073
16074 \begin_layout Standard
16075 \begin_inset LatexCommand label
16076 name "tab:Tabla-con-líneas"
16077
16078 \end_inset
16079
16080 Tabla con líneas de grosor 1.5\InsetSpace \thinspace{}
16081 pt
16082 \end_layout
16083
16084 \end_inset
16085
16086
16087 \end_layout
16088
16089 \begin_layout Standard
16090 \align center
16091 \begin_inset Tabular
16092 <lyxtabular version="3" rows="3" columns="3">
16093 <features>
16094 <column alignment="center" valignment="top" leftline="true" width="0">
16095 <column alignment="center" valignment="top" leftline="true" width="0">
16096 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16097 <row topline="true">
16098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16099 \begin_inset Text
16100
16101 \begin_layout Standard
16102 sd
16103 \end_layout
16104
16105 \end_inset
16106 </cell>
16107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16108 \begin_inset Text
16109
16110 \begin_layout Standard
16111
16112 \end_layout
16113
16114 \end_inset
16115 </cell>
16116 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16117 \begin_inset Text
16118
16119 \begin_layout Standard
16120
16121 \end_layout
16122
16123 \end_inset
16124 </cell>
16125 </row>
16126 <row topline="true">
16127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16128 \begin_inset Text
16129
16130 \begin_layout Standard
16131
16132 \end_layout
16133
16134 \end_inset
16135 </cell>
16136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16137 \begin_inset Text
16138
16139 \begin_layout Standard
16140 sd
16141 \end_layout
16142
16143 \end_inset
16144 </cell>
16145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16146 \begin_inset Text
16147
16148 \begin_layout Standard
16149
16150 \end_layout
16151
16152 \end_inset
16153 </cell>
16154 </row>
16155 <row topline="true" bottomline="true">
16156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16157 \begin_inset Text
16158
16159 \begin_layout Standard
16160
16161 \end_layout
16162
16163 \end_inset
16164 </cell>
16165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16166 \begin_inset Text
16167
16168 \begin_layout Standard
16169
16170 \end_layout
16171
16172 \end_inset
16173 </cell>
16174 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16175 \begin_inset Text
16176
16177 \begin_layout Standard
16178 sd
16179 \end_layout
16180
16181 \end_inset
16182 </cell>
16183 </row>
16184 </lyxtabular>
16185
16186 \end_inset
16187
16188
16189 \end_layout
16190
16191 \end_inset
16192
16193
16194 \begin_inset ERT
16195 status collapsed
16196
16197 \begin_layout Standard
16198
16199
16200 \backslash
16201 setlength{
16202 \backslash
16203 arrayrulewidth}{0.4pt}
16204 \end_layout
16205
16206 \end_inset
16207
16208
16209 \end_layout
16210
16211 \begin_layout Standard
16212 \begin_inset VSpace bigskip
16213 \end_inset
16214
16215 Para definir un grosor de 1.5\InsetSpace \thinspace{}
16216 pt sólo para líneas horizontales, como en la
16217  tabla\InsetSpace ~
16218
16219 \begin_inset LatexCommand ref
16220 reference "tab:Tabla-con-horizontales"
16221
16222 \end_inset
16223
16224 , inserta estos comandos en ERT antes de la tabla o flotante:
16225 \end_layout
16226
16227 \begin_layout Standard
16228
16229 \series bold
16230
16231 \backslash
16232 let
16233 \backslash
16234 myHline
16235 \backslash
16236 hline
16237 \newline
16238
16239 \backslash
16240 renewcommand{
16241 \backslash
16242 hline}
16243 \newline
16244  {
16245 \backslash
16246 noalign{
16247 \backslash
16248 global
16249 \backslash
16250 arrayrulewidth 1.5pt}
16251 \newline
16252   
16253 \backslash
16254 myHline
16255 \backslash
16256 noalign{
16257 \backslash
16258 global
16259 \backslash
16260 arrayrulewidth 0.4pt}}
16261 \end_layout
16262
16263 \begin_layout Standard
16264 Para volver al grosor predeterminado, inserta este comando en ERT detrás
16265  de la tabla o flotante:
16266 \end_layout
16267
16268 \begin_layout Standard
16269
16270 \series bold
16271
16272 \backslash
16273 renewcommand{
16274 \backslash
16275 hline}{
16276 \backslash
16277 myHline}
16278 \end_layout
16279
16280 \begin_layout Standard
16281 \begin_inset ERT
16282 status collapsed
16283
16284 \begin_layout Standard
16285
16286
16287 \backslash
16288 let
16289 \backslash
16290 myHline
16291 \backslash
16292 hline
16293 \end_layout
16294
16295 \begin_layout Standard
16296
16297
16298 \backslash
16299 renewcommand{
16300 \backslash
16301 hline}
16302 \end_layout
16303
16304 \begin_layout Standard
16305
16306  {
16307 \backslash
16308 noalign{
16309 \backslash
16310 global
16311 \backslash
16312 arrayrulewidth 1.5pt}
16313 \end_layout
16314
16315 \begin_layout Standard
16316
16317   
16318 \backslash
16319 myHline
16320 \backslash
16321 noalign{
16322 \backslash
16323 global
16324 \backslash
16325 arrayrulewidth 0.4pt}}
16326 \end_layout
16327
16328 \end_inset
16329
16330
16331 \begin_inset Float table
16332 wide false
16333 sideways false
16334 status open
16335
16336 \begin_layout Standard
16337 \begin_inset Caption
16338
16339 \begin_layout Standard
16340 \begin_inset LatexCommand label
16341 name "tab:Tabla-con-horizontales"
16342
16343 \end_inset
16344
16345 Tabla con líneas horizontales de 1.5\InsetSpace \thinspace{}
16346 pt
16347 \end_layout
16348
16349 \end_inset
16350
16351
16352 \end_layout
16353
16354 \begin_layout Standard
16355 \align center
16356 \begin_inset Tabular
16357 <lyxtabular version="3" rows="3" columns="3">
16358 <features>
16359 <column alignment="center" valignment="top" leftline="true" width="0">
16360 <column alignment="center" valignment="top" leftline="true" width="0">
16361 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16362 <row topline="true">
16363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16364 \begin_inset Text
16365
16366 \begin_layout Standard
16367 sd
16368 \end_layout
16369
16370 \end_inset
16371 </cell>
16372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16373 \begin_inset Text
16374
16375 \begin_layout Standard
16376
16377 \end_layout
16378
16379 \end_inset
16380 </cell>
16381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16382 \begin_inset Text
16383
16384 \begin_layout Standard
16385
16386 \end_layout
16387
16388 \end_inset
16389 </cell>
16390 </row>
16391 <row topline="true">
16392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16393 \begin_inset Text
16394
16395 \begin_layout Standard
16396
16397 \end_layout
16398
16399 \end_inset
16400 </cell>
16401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16402 \begin_inset Text
16403
16404 \begin_layout Standard
16405 sd
16406 \end_layout
16407
16408 \end_inset
16409 </cell>
16410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16411 \begin_inset Text
16412
16413 \begin_layout Standard
16414
16415 \end_layout
16416
16417 \end_inset
16418 </cell>
16419 </row>
16420 <row topline="true" bottomline="true">
16421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16422 \begin_inset Text
16423
16424 \begin_layout Standard
16425
16426 \end_layout
16427
16428 \end_inset
16429 </cell>
16430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16431 \begin_inset Text
16432
16433 \begin_layout Standard
16434
16435 \end_layout
16436
16437 \end_inset
16438 </cell>
16439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16440 \begin_inset Text
16441
16442 \begin_layout Standard
16443 sd
16444 \end_layout
16445
16446 \end_inset
16447 </cell>
16448 </row>
16449 </lyxtabular>
16450
16451 \end_inset
16452
16453
16454 \end_layout
16455
16456 \end_inset
16457
16458
16459 \begin_inset ERT
16460 status collapsed
16461
16462 \begin_layout Standard
16463
16464
16465 \backslash
16466 renewcommand{
16467 \backslash
16468 hline}{
16469 \backslash
16470 myHline}
16471 \end_layout
16472
16473 \end_inset
16474
16475
16476 \end_layout
16477
16478 \begin_layout Standard
16479 \begin_inset VSpace bigskip
16480 \end_inset
16481
16482 Para establecer un grosor de 1.5 pt sólo para líneas verticales, crea el
16483  siguiente formato de columna en el preámbulo del documento, de acuerdo
16484  con lo descrito en la sección\InsetSpace ~
16485
16486 \begin_inset LatexCommand ref
16487 reference "sub:Formato-Personalizado"
16488
16489 \end_inset
16490
16491 :
16492 \end_layout
16493
16494 \begin_layout Standard
16495
16496 \series bold
16497
16498 \backslash
16499 newcolumntype{V}{!{
16500 \backslash
16501 vrule width 1.5pt}}
16502 \end_layout
16503
16504 \begin_layout Standard
16505 Para la tabla\InsetSpace ~
16506
16507 \begin_inset LatexCommand ref
16508 reference "tab:Tabla-con-verticales"
16509
16510 \end_inset
16511
16512  se usó el argumento LaTeX
16513 \end_layout
16514
16515 \begin_layout Standard
16516
16517 \series bold
16518 VcV
16519 \end_layout
16520
16521 \begin_layout Standard
16522 para la última columna y
16523 \end_layout
16524
16525 \begin_layout Standard
16526
16527 \series bold
16528 Vc
16529 \end_layout
16530
16531 \begin_layout Standard
16532 para las otras.
16533 \end_layout
16534
16535 \begin_layout Standard
16536 \begin_inset Float table
16537 wide false
16538 sideways false
16539 status open
16540
16541 \begin_layout Standard
16542 \begin_inset Caption
16543
16544 \begin_layout Standard
16545 \begin_inset LatexCommand label
16546 name "tab:Tabla-con-verticales"
16547
16548 \end_inset
16549
16550 Tabla con líneas verticales de 1.5\InsetSpace \thinspace{}
16551 pt de grosor
16552 \end_layout
16553
16554 \end_inset
16555
16556
16557 \end_layout
16558
16559 \begin_layout Standard
16560 \align center
16561 \begin_inset Tabular
16562 <lyxtabular version="3" rows="3" columns="3">
16563 <features>
16564 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16565 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16566 <column alignment="center" valignment="top" leftline="true" width="0" special="VcV">
16567 <row topline="true">
16568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16569 \begin_inset Text
16570
16571 \begin_layout Standard
16572 sd
16573 \end_layout
16574
16575 \end_inset
16576 </cell>
16577 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16578 \begin_inset Text
16579
16580 \begin_layout Standard
16581
16582 \end_layout
16583
16584 \end_inset
16585 </cell>
16586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16587 \begin_inset Text
16588
16589 \begin_layout Standard
16590
16591 \end_layout
16592
16593 \end_inset
16594 </cell>
16595 </row>
16596 <row topline="true">
16597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16598 \begin_inset Text
16599
16600 \begin_layout Standard
16601
16602 \end_layout
16603
16604 \end_inset
16605 </cell>
16606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16607 \begin_inset Text
16608
16609 \begin_layout Standard
16610 sd
16611 \end_layout
16612
16613 \end_inset
16614 </cell>
16615 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16616 \begin_inset Text
16617
16618 \begin_layout Standard
16619
16620 \end_layout
16621
16622 \end_inset
16623 </cell>
16624 </row>
16625 <row topline="true" bottomline="true">
16626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16627 \begin_inset Text
16628
16629 \begin_layout Standard
16630
16631 \end_layout
16632
16633 \end_inset
16634 </cell>
16635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16636 \begin_inset Text
16637
16638 \begin_layout Standard
16639
16640 \end_layout
16641
16642 \end_inset
16643 </cell>
16644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16645 \begin_inset Text
16646
16647 \begin_layout Standard
16648 sd
16649 \end_layout
16650
16651 \end_inset
16652 </cell>
16653 </row>
16654 </lyxtabular>
16655
16656 \end_inset
16657
16658
16659 \end_layout
16660
16661 \end_inset
16662
16663
16664 \end_layout
16665
16666 \begin_layout Subsection
16667 Líneas de Trazos
16668 \begin_inset LatexCommand index
16669 name "Personalización de Tablas ! Líneas de Trazos"
16670
16671 \end_inset
16672
16673
16674 \end_layout
16675
16676 \begin_layout Standard
16677 \begin_inset ERT
16678 status collapsed
16679
16680 \begin_layout Standard
16681
16682
16683 \backslash
16684 ifarydshln
16685 \end_layout
16686
16687 \end_inset
16688
16689
16690 \begin_inset Note Note
16691 status open
16692
16693 \begin_layout Standard
16694 La siguiente sección sólo se mostrará en pantalla si está instalado el paquete
16695  LaTeX 
16696 \series bold
16697 arydshln
16698 \series default
16699 .
16700 \end_layout
16701
16702 \end_inset
16703
16704
16705 \end_layout
16706
16707 \begin_layout Standard
16708 \begin_inset Float table
16709 placement H
16710 wide false
16711 sideways false
16712 status open
16713
16714 \begin_layout Standard
16715 \begin_inset Caption
16716
16717 \begin_layout Standard
16718 \begin_inset LatexCommand label
16719 name "tab:Tabla-con-trazos"
16720
16721 \end_inset
16722
16723 Tabla con líneas de trazos
16724 \end_layout
16725
16726 \end_inset
16727
16728
16729 \end_layout
16730
16731 \begin_layout Standard
16732 \align center
16733 \begin_inset Tabular
16734 <lyxtabular version="3" rows="5" columns="5">
16735 <features>
16736 <column alignment="center" valignment="top" leftline="true" width="0">
16737 <column alignment="center" valignment="top" leftline="true" width="0">
16738 <column alignment="center" valignment="top" width="0" special=":c">
16739 <column alignment="center" valignment="top" leftline="true" width="0">
16740 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16741 <row topline="true" bottomline="true">
16742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16743 \begin_inset Text
16744
16745 \begin_layout Standard
16746 a
16747 \end_layout
16748
16749 \end_inset
16750 </cell>
16751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16752 \begin_inset Text
16753
16754 \begin_layout Standard
16755 b
16756 \end_layout
16757
16758 \end_inset
16759 </cell>
16760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16761 \begin_inset Text
16762
16763 \begin_layout Standard
16764 c
16765 \end_layout
16766
16767 \end_inset
16768 </cell>
16769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16770 \begin_inset Text
16771
16772 \begin_layout Standard
16773 d
16774 \end_layout
16775
16776 \end_inset
16777 </cell>
16778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16779 \begin_inset Text
16780
16781 \begin_layout Standard
16782 e
16783 \end_layout
16784
16785 \end_inset
16786 </cell>
16787 </row>
16788 <row topline="true">
16789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16790 \begin_inset Text
16791
16792 \begin_layout Standard
16793 f
16794 \end_layout
16795
16796 \end_inset
16797 </cell>
16798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16799 \begin_inset Text
16800
16801 \begin_layout Standard
16802 g
16803 \end_layout
16804
16805 \end_inset
16806 </cell>
16807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16808 \begin_inset Text
16809
16810 \begin_layout Standard
16811 h
16812 \end_layout
16813
16814 \end_inset
16815 </cell>
16816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16817 \begin_inset Text
16818
16819 \begin_layout Standard
16820 i
16821 \end_layout
16822
16823 \end_inset
16824 </cell>
16825 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16826 \begin_inset Text
16827
16828 \begin_layout Standard
16829 j
16830 \end_layout
16831
16832 \end_inset
16833 </cell>
16834 </row>
16835 <row>
16836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16837 \begin_inset Text
16838
16839 \begin_layout Standard
16840 \begin_inset ERT
16841 status collapsed
16842
16843 \begin_layout Standard
16844
16845
16846 \backslash
16847 hdashline 
16848 \end_layout
16849
16850 \end_inset
16851
16852 k
16853 \end_layout
16854
16855 \end_inset
16856 </cell>
16857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16858 \begin_inset Text
16859
16860 \begin_layout Standard
16861 l
16862 \end_layout
16863
16864 \end_inset
16865 </cell>
16866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16867 \begin_inset Text
16868
16869 \begin_layout Standard
16870 m
16871 \end_layout
16872
16873 \end_inset
16874 </cell>
16875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16876 \begin_inset Text
16877
16878 \begin_layout Standard
16879 n
16880 \end_layout
16881
16882 \end_inset
16883 </cell>
16884 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16885 \begin_inset Text
16886
16887 \begin_layout Standard
16888 o
16889 \end_layout
16890
16891 \end_inset
16892 </cell>
16893 </row>
16894 <row topline="true">
16895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16896 \begin_inset Text
16897
16898 \begin_layout Standard
16899 \begin_inset ERT
16900 status collapsed
16901
16902 \begin_layout Standard
16903
16904
16905 \backslash
16906 cdashline{4-5}
16907 \end_layout
16908
16909 \end_inset
16910
16911 p
16912 \end_layout
16913
16914 \end_inset
16915 </cell>
16916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16917 \begin_inset Text
16918
16919 \begin_layout Standard
16920 q
16921 \end_layout
16922
16923 \end_inset
16924 </cell>
16925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
16926 \begin_inset Text
16927
16928 \begin_layout Standard
16929 r
16930 \end_layout
16931
16932 \end_inset
16933 </cell>
16934 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
16935 \begin_inset Text
16936
16937 \begin_layout Standard
16938 s
16939 \end_layout
16940
16941 \end_inset
16942 </cell>
16943 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16944 \begin_inset Text
16945
16946 \begin_layout Standard
16947
16948 \end_layout
16949
16950 \end_inset
16951 </cell>
16952 </row>
16953 <row topline="true" bottomline="true">
16954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16955 \begin_inset Text
16956
16957 \begin_layout Standard
16958 t
16959 \end_layout
16960
16961 \end_inset
16962 </cell>
16963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16964 \begin_inset Text
16965
16966 \begin_layout Standard
16967 u
16968 \end_layout
16969
16970 \end_inset
16971 </cell>
16972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16973 \begin_inset Text
16974
16975 \begin_layout Standard
16976 v
16977 \end_layout
16978
16979 \end_inset
16980 </cell>
16981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16982 \begin_inset Text
16983
16984 \begin_layout Standard
16985 w
16986 \end_layout
16987
16988 \end_inset
16989 </cell>
16990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16991 \begin_inset Text
16992
16993 \begin_layout Standard
16994 x
16995 \end_layout
16996
16997 \end_inset
16998 </cell>
16999 </row>
17000 </lyxtabular>
17001
17002 \end_inset
17003
17004
17005 \end_layout
17006
17007 \end_inset
17008
17009
17010 \end_layout
17011
17012 \begin_layout Standard
17013 En principio LyX no soporta líneas de trazos, hay que usar ERT.
17014  Hay que cargar antes en el preámbulo del documento el paquete LaTeX 
17015 \series bold
17016 arydshln
17017 \series default
17018
17019 \begin_inset LatexCommand index
17020 name "LaTeX-paquetes ! arydshln"
17021
17022 \end_inset
17023
17024  
17025 \end_layout
17026
17027 \begin_layout Standard
17028
17029 \series bold
17030
17031 \backslash
17032 usepackage{arydshln}
17033 \end_layout
17034
17035 \begin_layout Standard
17036 Para hacer una línea vertical a trazos, introduce dos puntos 
17037 \begin_inset Quotes eld
17038 \end_inset
17039
17040 :
17041 \begin_inset Quotes erd
17042 \end_inset
17043
17044  junto con el caracter para alineación horizontal como argumento LaTeX en
17045  el diálogo de celda de tabla.
17046 \end_layout
17047
17048 \begin_layout Standard
17049 Para una línea de trazos horizontal añade el comando
17050 \end_layout
17051
17052 \begin_layout Standard
17053
17054 \series bold
17055
17056 \backslash
17057 hdashline
17058 \end_layout
17059
17060 \begin_layout Standard
17061 en ERT como primer elemento de la primera celda en la fila.
17062 \end_layout
17063
17064 \begin_layout Standard
17065 Para líneas de trazos en multicolumna usa el comando
17066 \end_layout
17067
17068 \begin_layout Standard
17069
17070 \series bold
17071
17072 \backslash
17073 cdashline{line number
17074 \series default
17075 }
17076 \end_layout
17077
17078 \begin_layout Standard
17079 en ERT como primer elemento de la primera celda en la fila.
17080  Si por ejemplo tienes una multicolumna extendida sobre las columnas 2 a
17081  4 y quieres una línea de trazos por encima, añade el comando
17082 \end_layout
17083
17084 \begin_layout Standard
17085
17086 \series bold
17087
17088 \backslash
17089 cdashline{2-4}
17090 \end_layout
17091
17092 \begin_layout Standard
17093 como primer elemento de la primera celda en la fila de la multicolumna.
17094 \end_layout
17095
17096 \begin_layout Standard
17097 \begin_inset VSpace bigskip
17098 \end_inset
17099
17100
17101 \end_layout
17102
17103 \begin_layout Standard
17104 La tabla\InsetSpace ~
17105
17106 \begin_inset LatexCommand ref
17107 reference "tab:Tabla-con-trazos"
17108
17109 \end_inset
17110
17111  se ha hecho usando "
17112 \series bold
17113 :c
17114 \series default
17115 " como argumento LaTeX de la tercera columna.
17116  El comando ERT 
17117 \series bold
17118
17119 \backslash
17120 hdashline
17121 \series default
17122  se ha insertado en la primera celda de la tercera fila y el comando ERT
17123 \newline
17124
17125 \series bold
17126
17127 \backslash
17128 cdashline{4-5}
17129 \series default
17130  en la primera celda de la cuarta fila.
17131 \end_layout
17132
17133 \begin_layout Standard
17134 \begin_inset Note Greyedout
17135 status open
17136
17137 \begin_layout Standard
17138
17139 \series bold
17140 Nota:
17141 \series default
17142  Aparentemente el paquete LaTeX 
17143 \series bold
17144 arydshln
17145 \series default
17146  no es compatible con el paquete LaTeX 
17147 \series bold
17148 colortbl
17149 \series default
17150
17151 \begin_inset LatexCommand index
17152 name "LaTeX-paquetes ! colortbl"
17153
17154 \end_inset
17155
17156  que se usa para tablas coloreadas en la sección\InsetSpace ~
17157
17158 \begin_inset LatexCommand ref
17159 reference "sec:Tablas-Coloreadas"
17160
17161 \end_inset
17162
17163 .
17164  Esto implica que las tablas coloreadas no pueden tener líneas de trazos.
17165 \end_layout
17166
17167 \end_inset
17168
17169
17170 \end_layout
17171
17172 \begin_layout Standard
17173 \begin_inset ERT
17174 status collapsed
17175
17176 \begin_layout Standard
17177
17178
17179 \backslash
17180 else
17181 \end_layout
17182
17183 \end_inset
17184
17185
17186 \begin_inset Note Note
17187 status open
17188
17189 \begin_layout Standard
17190 Lo siguiente se mostrará en pantalla si no está instalado el paquete LaTeX
17191  
17192 \series bold
17193 arydshln
17194 \series default
17195 .
17196 \end_layout
17197
17198 \end_inset
17199
17200
17201 \end_layout
17202
17203 \begin_layout Standard
17204 Debes instalar el paquete LaTeX 
17205 \series bold
17206 arydshln
17207 \series default
17208  para ver la parte siguiente en la salida.
17209 \end_layout
17210
17211 \begin_layout Standard
17212 \begin_inset ERT
17213 status collapsed
17214
17215 \begin_layout Standard
17216
17217
17218 \backslash
17219 fi
17220 \end_layout
17221
17222 \end_inset
17223
17224
17225 \end_layout
17226
17227 \begin_layout Chapter
17228 Flotantes
17229 \begin_inset LatexCommand label
17230 name "cha:Flotantes"
17231
17232 \end_inset
17233
17234
17235 \begin_inset LatexCommand index
17236 name "Flotantes"
17237
17238 \end_inset
17239
17240
17241 \end_layout
17242
17243 \begin_layout Section
17244 Introducción
17245 \begin_inset LatexCommand label
17246 name "sec:IntroducciónFlotantes"
17247
17248 \end_inset
17249
17250
17251 \begin_inset LatexCommand index
17252 name "Flotantes ! Introducción"
17253
17254 \end_inset
17255
17256
17257 \end_layout
17258
17259 \begin_layout Standard
17260 Un flotante es un bloque de texto asociado con alguna especie de etiqueta
17261  que no tiene posición fija.
17262  Puede 
17263 \begin_inset Quotes eld
17264 \end_inset
17265
17266 flotar
17267 \begin_inset Quotes erd
17268 \end_inset
17269
17270  adelante o atrás una o dos páginas, donde encaje mejor.
17271  Las 
17272 \family sans
17273 Notas\InsetSpace ~
17274 al\InsetSpace ~
17275 pie
17276 \family default
17277  y 
17278 \family sans
17279 Notas\InsetSpace ~
17280 al\InsetSpace ~
17281 margen
17282 \family default
17283  también son flotantes, porque pueden flotar a la página siguiente cuando
17284  hay demasiadas notas en la página.
17285 \end_layout
17286
17287 \begin_layout Standard
17288 Los flotantes hacen posible composiciones de alta calidad.
17289  Imágenes y tablas se pueden distribuir equitativamente en las páginas para
17290  impedir espacios en blanco y páginas sin texto.
17291  Como el flotante destruye a menudo el contexto entre texto e imagen/tabla,
17292  cada flotante puede estar referido en el texto.
17293  Por lo tanto los flotantes están numerados.
17294  Las referencias se describen en la sección\InsetSpace ~
17295
17296 \begin_inset LatexCommand ref
17297 reference "sec:Referencias-a-Flotantes"
17298
17299 \end_inset
17300
17301  .
17302 \end_layout
17303
17304 \begin_layout Standard
17305 Para insertar un flotante, usa el menú 
17306 \family sans
17307 Insertar\SpecialChar \menuseparator
17308 Flotante
17309 \family default
17310 .
17311  En el documento se inserta un cuadro con etiqueta en el entorno 
17312 \family sans
17313 Encabezado
17314 \begin_inset Foot
17315 status collapsed
17316
17317 \begin_layout Standard
17318 El entorno 
17319 \family sans
17320 Encabezado
17321 \family default
17322  se describe en 
17323 \emph on
17324 Guía\InsetSpace ~
17325 del\InsetSpace ~
17326 Usuario
17327 \emph default
17328  de LyX.
17329 \end_layout
17330
17331 \end_inset
17332
17333 .
17334
17335 \family default
17336  Cada etiqueta acaba con el carácter 
17337 \begin_inset Quotes eld
17338 \end_inset
17339
17340 #
17341 \begin_inset Quotes erd
17342 \end_inset
17343
17344  como receptáculo para el número de flotante en la salida.
17345  La etiqueta será traducida automáticamente al lenguaje del documento.
17346  Tras la etiqueta se puede insertar el texto de encabezado.
17347  La imagen o tabla se inserta encima o debajo del encabezado en un párrafo
17348  separado dentro del flotante.
17349  Más sobre colocación de encabezados se describe en la sección\InsetSpace ~
17350
17351 \begin_inset LatexCommand ref
17352 reference "sec:Colocación-de-Encabezados"
17353
17354 \end_inset
17355
17356 .
17357  Para mantener legible el documento LyX, puedes abrir y cerrar el cuadro
17358  del flotante haciendo click-izquierda sobre él.
17359  Un cuadro cerrado se muestra así: 
17360 \begin_inset Graphics
17361         filename clipart/flotanteQt4.png
17362         scale 70
17363
17364 \end_inset
17365
17366  -- un cuadro gris con etiqueta en rojo.
17367 \end_layout
17368
17369 \begin_layout Standard
17370 Se recomienda insertar flotantes como párrafos separados para evitar posibles
17371  errores de LaTeX si el texto circundante se formatea de modo especial.
17372 \end_layout
17373
17374 \begin_layout Standard
17375 Figuras o tablas ya existentes pueden ponerse en un flotante marcándolas
17376  y pinchando el botón correspondiente de la barra de herramientas para un
17377  flotante nuevo.
17378 \end_layout
17379
17380 \begin_layout Section
17381 Tipos de Flotantes
17382 \end_layout
17383
17384 \begin_layout Standard
17385 Además de los flotantes de imagen y de tabla que se describen en la sección\InsetSpace ~
17386
17387 \begin_inset LatexCommand ref
17388 reference "sec:Figuras-Flotantes"
17389
17390 \end_inset
17391
17392  y 
17393 \begin_inset LatexCommand ref
17394 reference "sec:Tablas-Flotantes"
17395
17396 \end_inset
17397
17398 , respectivamente, LyX ofrece los tipos 
17399 \series bold
17400 Algoritmo
17401 \series default
17402  y 
17403 \series bold
17404 Ajustado\InsetSpace ~
17405 al\InsetSpace ~
17406 Texto
17407 \series default
17408 .
17409 \end_layout
17410
17411 \begin_layout Subsection
17412 Algoritmos Flotantes
17413 \begin_inset LatexCommand index
17414 name "Flotantes ! Algoritmos Flotantes"
17415
17416 \end_inset
17417
17418
17419 \end_layout
17420
17421 \begin_layout Standard
17422 \begin_inset Float algorithm
17423 placement h
17424 wide false
17425 sideways false
17426 status open
17427
17428 \begin_layout Standard
17429 \begin_inset Caption
17430
17431 \begin_layout Standard
17432 \begin_inset LatexCommand label
17433 name "alg:Ejemplo-de-Algoritmo-flotante"
17434
17435 \end_inset
17436
17437 Ejemplo de Algoritmo flotante
17438 \end_layout
17439
17440 \end_inset
17441
17442
17443 \end_layout
17444
17445 \begin_layout LyX-Code
17446 for I in 1..N loop
17447 \newline
17448  Sum:= Sum + A(I); /*senseless comment*/
17449 \newline
17450 end loop
17451 \begin_inset VSpace -4mm
17452 \end_inset
17453
17454
17455 \end_layout
17456
17457 \end_inset
17458
17459
17460 \end_layout
17461
17462 \begin_layout Standard
17463 Este tipo de flotante se inserta con el menú 
17464 \family sans
17465 Insertar\SpecialChar \menuseparator
17466 Flotante\SpecialChar \menuseparator
17467 Algoritmo
17468 \family default
17469 .
17470  Se usa para códigos y descripciones de algoritmos.
17471  Un posible entorno para algoritmos es 
17472 \family sans
17473 Código-LyX
17474 \family default
17475 , descrito en 
17476 \emph on
17477 Guía del Usuario
17478 \emph default
17479  de LyX.
17480  El algoritmo\InsetSpace ~
17481
17482 \begin_inset LatexCommand ref
17483 reference "alg:Ejemplo-de-Algoritmo-flotante"
17484
17485 \end_inset
17486
17487  es un ejemplo de algoritmo flotante en el que se ha añadido un espacio
17488  vertical de -4\InsetSpace \thinspace{}
17489 mm al final para tener la línea inferior exactamente bajo
17490  la última línea de texto.
17491 \end_layout
17492
17493 \begin_layout Standard
17494 La etiqueta de flotante no se traduce automáticamente al lenguaje del documento.
17495  Si tu documento no es en Inglés, tienes que hacerlo manualmente añadiendo
17496  la siguiente línea al preámbulo del documento
17497 \series bold
17498 :
17499 \end_layout
17500
17501 \begin_layout Standard
17502
17503 \series bold
17504
17505 \backslash
17506 floatname{algorithm}{nombre}
17507 \end_layout
17508
17509 \begin_layout Standard
17510
17511 \family sans
17512 nombre
17513 \family default
17514  es la palabra 
17515 \begin_inset Quotes eld
17516 \end_inset
17517
17518
17519 \emph on
17520 algorithm
17521 \emph default
17522
17523 \begin_inset Quotes erd
17524 \end_inset
17525
17526  en el lenguaje deseado.
17527 \end_layout
17528
17529 \begin_layout Description
17530
17531 \series bold
17532 Nota:
17533 \series default
17534  Si se emplea el paquete LaTeX 
17535 \series bold
17536 hyperref
17537 \series default
17538
17539 \begin_inset LatexCommand index
17540 name "LaTeX-paquetes ! hyperref"
17541
17542 \end_inset
17543
17544  para enlazar referencias cruzadas a flotantes en la salida PDF, debe cargarse
17545  en el preámbulo LaTeX antes de la definición de flotantes para poder referirse
17546  a ellos.
17547  LyX establece la definición de algoritmos flotantes automáticamente antes
17548  de la parte del preámbulo editable por el usuario, así que hay que insertar
17549  las siguientes líneas 
17550 \emph on
17551 después
17552 \emph default
17553  de cargar el comando 
17554 \series bold
17555 hyperref:
17556 \begin_inset VSpace defskip
17557 \end_inset
17558
17559
17560 \newline
17561
17562 \backslash
17563 newfloat{Xalgorithm}{tbp}{loa}
17564 \newline
17565
17566 \backslash
17567 floatname{Xalgorithm}{nombre}
17568 \newline
17569
17570 \backslash
17571 newcommand{
17572 \backslash
17573 theHalgorithm}{
17574 \backslash
17575 theHXalgorithm}
17576 \newline
17577
17578 \backslash
17579 renewenvironment{algorithm}[1][tbp]
17580 \newline
17581
17582 \begin_inset ERT
17583 status collapsed
17584
17585 \begin_layout Standard
17586
17587
17588 \backslash
17589 hphantom{ }
17590 \end_layout
17591
17592 \end_inset
17593
17594 {
17595 \backslash
17596 begin{Xalgorithm}[#1]}{
17597 \backslash
17598 end{Xalgorithm}}
17599 \begin_inset VSpace defskip
17600 \end_inset
17601
17602
17603 \series default
17604
17605 \newline
17606 Donde 
17607 \family sans
17608 nombre
17609 \family default
17610  es la palabra 
17611 \begin_inset Quotes eld
17612 \end_inset
17613
17614
17615 \emph on
17616 algorithm
17617 \emph default
17618
17619 \begin_inset Quotes erd
17620 \end_inset
17621
17622  en el lenguaje deseado.
17623 \end_layout
17624
17625 \begin_layout Standard
17626 Los algoritmos flotantes no se numeran por defecto según el esquema 
17627 \begin_inset Quotes eld
17628 \end_inset
17629
17630 capítulo.algoritmo
17631 \begin_inset Quotes erd
17632 \end_inset
17633
17634  como es el caso para tablas e imágenes flotantes en muchas clases de documento.
17635  Para numerar algoritmos flotantes según ese mismo esquema, añade este comando
17636  en el preámbulo del documento:
17637 \end_layout
17638
17639 \begin_layout Standard
17640
17641 \series bold
17642
17643 \backslash
17644 numberwithin{algorithm}{chapter}
17645 \end_layout
17646
17647 \begin_layout Standard
17648 Si usas el paquete LaTeX 
17649 \series bold
17650 hyperref
17651 \series default
17652 , añade en su lugar esta línea 
17653 \emph on
17654 después
17655 \emph default
17656  de la definición de 
17657 \family sans
17658 Xalgorithm
17659 \family default
17660  (los comandos anteriores) en el preámbulo:
17661 \end_layout
17662
17663 \begin_layout Standard
17664
17665 \series bold
17666
17667 \backslash
17668 numberwithin{Xalgorithm}{chapter}
17669 \end_layout
17670
17671 \begin_layout Standard
17672 Para poder usar el comando 
17673 \series bold
17674
17675 \backslash
17676 numberwithin
17677 \series default
17678 , marca la opción 
17679 \family sans
17680 Usar\InsetSpace ~
17681 el\InsetSpace ~
17682 paquete\InsetSpace ~
17683 AMS
17684 \family default
17685  en el menú 
17686 \family sans
17687 Documento\SpecialChar \menuseparator
17688 Configuración\SpecialChar \menuseparator
17689 Ecuaciones
17690 \family default
17691 .
17692 \end_layout
17693
17694 \begin_layout Subsection
17695 Flotantes Ajustados a Texto
17696 \begin_inset LatexCommand index
17697 name "Flotantes ! Ajustados a Texto"
17698
17699 \end_inset
17700
17701
17702 \begin_inset LatexCommand label
17703 name "sub:floatflt-flotante-ajustado"
17704
17705 \end_inset
17706
17707
17708 \end_layout
17709
17710 \begin_layout Standard
17711 Este tipo de flotante se usa cuando quieres envolver una figura en el texto,
17712  de manera que ocupe solo una parte del ancho de columna.
17713  Puede insertarse usando el menú 
17714 \begin_inset Wrap figure
17715 placement l
17716 width "40col%"
17717 status open
17718
17719 \begin_layout Standard
17720 \begin_inset Graphics
17721         filename ../clipart/mobius.eps
17722         display color
17723         width 40col%
17724         rotateOrigin center
17725
17726 \end_inset
17727
17728
17729 \end_layout
17730
17731 \begin_layout Standard
17732 \begin_inset Caption
17733
17734 \begin_layout Standard
17735 \begin_inset LatexCommand label
17736 name "fig:Esto-es-una"
17737
17738 \end_inset
17739
17740 Esto es una figura envuelta, y esto la genial cabecera que la describe.
17741 \begin_inset VSpace medskip
17742 \end_inset
17743
17744
17745 \end_layout
17746
17747 \end_inset
17748
17749
17750 \end_layout
17751
17752 \end_inset
17753
17754  
17755 \family sans
17756 Insertar\SpecialChar \menuseparator
17757 Flotante\SpecialChar \menuseparator
17758 Flotante\InsetSpace ~
17759 de\InsetSpace ~
17760 ajuste\InsetSpace ~
17761 de\InsetSpace ~
17762 texto
17763 \family default
17764  si está instalado el paquete LaTeX 
17765 \series bold
17766 floatflt
17767 \series default
17768
17769 \begin_inset LatexCommand index
17770 name "LaTeX-paquetes ! floatflt"
17771
17772 \end_inset
17773
17774 .
17775 \begin_inset Foot
17776 status collapsed
17777
17778 \begin_layout Standard
17779 La instalación de paquetes LaTeX se explica en el manual 
17780 \emph on
17781 Configuration de LaTeX
17782 \emph default
17783 .
17784 \end_layout
17785
17786 \end_inset
17787
17788  La anchura y posición del flotante se ajusta con click-derecha sobre el
17789  cuadro del flotante.
17790  La figura\InsetSpace ~
17791
17792 \begin_inset LatexCommand ref
17793 reference "fig:Esto-es-una"
17794
17795 \end_inset
17796
17797  es un ejemplo de flotante ajustado a texto con una anchura del 40\InsetSpace \thinspace{}
17798 col%.
17799 \begin_inset Foot
17800 status collapsed
17801
17802 \begin_layout Standard
17803 Ver unidades disponibles en\InsetSpace ~
17804
17805 \begin_inset LatexCommand ref
17806 reference "cha:Unidades-disponibles-en"
17807
17808 \end_inset
17809
17810 .
17811 \end_layout
17812
17813 \end_inset
17814
17815  Se ha añadido algún espacio bajo el encabezado para separarlo mejor del
17816  texto envolvente.
17817 \end_layout
17818
17819 \begin_layout Standard
17820 El paquete LaTeX 
17821 \series bold
17822 floatflt
17823 \series default
17824  también soporta tablas ajustadas a texto pero aún no es soportado por LyX.
17825  Si lo necesitas, consulta la documentoación de 
17826 \series bold
17827 floatflt
17828 \series default
17829  
17830 \begin_inset LatexCommand cite
17831 key "floatflt"
17832
17833 \end_inset
17834
17835 .
17836 \end_layout
17837
17838 \begin_layout Standard
17839 \begin_inset Note Greyedout
17840 status open
17841
17842 \begin_layout Standard
17843
17844 \series bold
17845 Nota:
17846 \series default
17847  ¡Los flotantes ajustados a texto son frágiles! P.\InsetSpace \thinspace{}
17848 e.\InsetSpace ~
17849 si una figura está demasiado
17850  cerca de la parte inferior de la página se pueden perder cosas en el camino
17851  de salida, el flotante puede no aparecer o situarse junto a otro texto.
17852 \begin_inset Foot
17853 status open
17854
17855 \begin_layout Standard
17856 La mejor solución es usar el paquete LaTeX 
17857 \series bold
17858 wrapf\SpecialChar \textcompwordmark{}
17859 ig
17860 \series default
17861
17862 \begin_inset LatexCommand index
17863 name "LaTeX-paquetes ! wrapfig\\vspace{4mm}"
17864
17865 \end_inset
17866
17867  en vez de 
17868 \series bold
17869 floatf\SpecialChar \textcompwordmark{}
17870 lt
17871 \series default
17872  pero actualmente no es soportado por LyX.
17873 \end_layout
17874
17875 \end_inset
17876
17877
17878 \end_layout
17879
17880 \end_inset
17881
17882
17883 \end_layout
17884
17885 \begin_layout Standard
17886 En general:
17887 \end_layout
17888
17889 \begin_layout Itemize
17890 Los flotantes ajustados no deberían situarse en párrafos que van sobre un
17891  salto de página.
17892  Esto implica que lo mejor es insertarlos en el sitio exacto cuando el documento
17893  esté casi listo y puedas prever los saltos de página.
17894 \end_layout
17895
17896 \begin_layout Itemize
17897 Los flotantes ajustados deberían situarse, bien en un párrafo propio antes
17898  del párrafo donde deben ajustarse, o bien dentro de un párrafo.
17899 \end_layout
17900
17901 \begin_layout Itemize
17902 Los flotantes ajustados en párrafos consecutivos pueden dar problemas, así
17903  que asegura que hay un párrafo de texto entre ellos.
17904 \end_layout
17905
17906 \begin_layout Itemize
17907 Los flotantes ajustados no están permitidos en cabeceras de sección o tablas.
17908 \end_layout
17909
17910 \begin_layout Section
17911 Referencias a Flotantes
17912 \begin_inset LatexCommand label
17913 name "sec:Referencias-a-Flotantes"
17914
17915 \end_inset
17916
17917
17918 \begin_inset LatexCommand index
17919 name "Flotantes ! Referencias"
17920
17921 \end_inset
17922
17923
17924 \begin_inset LatexCommand index
17925 name "Referencias"
17926
17927 \end_inset
17928
17929
17930 \end_layout
17931
17932 \begin_layout Standard
17933 Para referirse a un flotante, inserta una etiqueta en su encabezado con
17934  el menú 
17935 \family sans
17936 Insertar\SpecialChar \menuseparator
17937 Etiqueta
17938 \family default
17939  o el botón 
17940 \begin_inset Graphics
17941         filename ../../images/label-insert.xpm
17942         scale 85
17943
17944 \end_inset
17945
17946 .
17947  Aparece una ventana esperando la introducción del texto de la etiqueta
17948  y se inserta un cuadro gris como este: 
17949 \begin_inset Graphics
17950         filename clipart/etiquetaQt4.png
17951         scale 85
17952
17953 \end_inset
17954
17955 .
17956  LyX ofrece como texto las primeras palabras del encabezado con un prefijo.
17957  El prefijo depende del tipo de flotante, p.\InsetSpace \thinspace{}
17958 e.\InsetSpace ~
17959 para figuras el prefijo será
17960  
17961 \begin_inset Quotes eld
17962 \end_inset
17963
17964
17965 \family sans
17966 fig:
17967 \family default
17968
17969 \begin_inset Quotes erd
17970 \end_inset
17971
17972 .
17973 \end_layout
17974
17975 \begin_layout Standard
17976 La etiqueta se usa como ancla y el nombre para la referencia.
17977  Puedes referir a la etiqueta usando el menú 
17978 \family sans
17979 Insertar\SpecialChar \menuseparator
17980 Referencia
17981 \family default
17982 \InsetSpace ~
17983
17984 \family sans
17985 cruzada
17986 \family default
17987  o el botón 
17988 \begin_inset Graphics
17989         filename ../../images/dialog-show-new-inset_ref.xpm
17990         scale 85
17991
17992 \end_inset
17993
17994 .
17995  Aparece una ventana de referencia cruzada con todas las etiquetas del documento.
17996  Si tienes abiertos varios documentos LyX, escoge el que estás trabajando
17997  de la lista desplegable de la parte superior del diálogo.
17998  Puedes ordenar las etiquetas alfabéticamente y elegir una.
17999  Se inserta un cuadro gris como este: 
18000 \begin_inset Graphics
18001         filename clipart/referenciaQt4.png
18002         scale 85
18003
18004 \end_inset
18005
18006 .
18007  En la salida, en lugar de este cuadro aparecerá el número de la referencia.
18008 \end_layout
18009
18010 \begin_layout Standard
18011 Se recomienda poner un espacio protegido entre el nombre de la referencia
18012  cruzada y su número para evitar saltos de línea entre ellos.
18013  Si una referencia cruzada corresponde a una etiqueta inexistente verás
18014  dos interrogaciones en la salida.
18015 \end_layout
18016
18017 \begin_layout Standard
18018 En cualquier momento puedes cambiar etiquetas haciendo click sobre el cuadro.
18019  Las referencias a las etiquetas cambiadas cambian automáticamente su enlace
18020  al texto de la etiqueta nueva, no te ocupes por eso.
18021 \end_layout
18022
18023 \begin_layout Standard
18024 El botón 
18025 \family sans
18026 Ir\InsetSpace ~
18027 a\InsetSpace ~
18028 la\InsetSpace ~
18029 etiqueta
18030 \family default
18031  en la ventana de referencia cruzada lleva el cursor hasta dicha etiqueta,
18032  y el texto del botón cambia a 
18033 \family sans
18034 Volver
18035 \family default
18036  con el que se puede retornar a la referencia.
18037  Click-derecha sobre el cuadro de la referencia también lleva el cursor
18038  hasta la etiqueta pero sin opción de volver.
18039 \end_layout
18040
18041 \begin_layout Subsection
18042 Formatos de Referencia Cruzada
18043 \begin_inset LatexCommand label
18044 name "sub:Formatos-referencia-cruzada"
18045
18046 \end_inset
18047
18048
18049 \begin_inset LatexCommand index
18050 name "Referencias ! Formatos"
18051
18052 \end_inset
18053
18054
18055 \end_layout
18056
18057 \begin_layout Standard
18058 Hay seis variedades de referencias cruzadas:
18059 \end_layout
18060
18061 \begin_layout Description
18062 <referencia>: imprime el número flotante, esta es la opción predeterminada:
18063  
18064 \begin_inset LatexCommand ref
18065 reference "fig:Dos-imágenes-distorsionadas"
18066
18067 \end_inset
18068
18069
18070 \end_layout
18071
18072 \begin_layout Description
18073 (<referencia>): imprime el número flotante entre paréntesis, es el estilo
18074  habitual para referirse a fórmulas, especialmente si se omite el nombre
18075  
18076 \begin_inset Quotes eld
18077 \end_inset
18078
18079 Ecuación
18080 \begin_inset Quotes erd
18081 \end_inset
18082
18083
18084 \begin_inset LatexCommand eqref
18085 reference "eq:Wgn"
18086
18087 \end_inset
18088
18089
18090 \end_layout
18091
18092 \begin_layout Description
18093 <página>: imprime el número de página: Página\InsetSpace ~
18094
18095 \begin_inset LatexCommand pageref
18096 reference "fig:Dos-imágenes-distorsionadas"
18097
18098 \end_inset
18099
18100
18101 \end_layout
18102
18103 \begin_layout Description
18104 en\InsetSpace ~
18105 página\InsetSpace ~
18106 <página>: imprime el texto 
18107 \begin_inset Quotes eld
18108 \end_inset
18109
18110 en la página
18111 \begin_inset Quotes erd
18112 \end_inset
18113
18114  y el número de página: 
18115 \begin_inset LatexCommand vpageref
18116 reference "fig:Dos-imágenes-distorsionadas"
18117
18118 \end_inset
18119
18120
18121 \end_layout
18122
18123 \begin_layout Description
18124 <referencia>\InsetSpace ~
18125 en\InsetSpace ~
18126 página\InsetSpace ~
18127 <página>: imprime el número flotante, el texto 
18128 \begin_inset Quotes eld
18129 \end_inset
18130
18131 en la página
18132 \begin_inset Quotes erd
18133 \end_inset
18134
18135  y el número de página: 
18136 \begin_inset LatexCommand vref
18137 reference "fig:Dos-imágenes-distorsionadas"
18138
18139 \end_inset
18140
18141
18142 \end_layout
18143
18144 \begin_layout Description
18145 Referencia\InsetSpace ~
18146 con\InsetSpace ~
18147 formato: imprime un formato autodefinido.
18148  
18149 \begin_inset Note Greyedout
18150 status open
18151
18152 \begin_layout Standard
18153
18154 \series bold
18155 Nota:
18156 \series default
18157  Esta característica sólo está disponible si está instalado el paquete LaTeX
18158  
18159 \series bold
18160 prettyref
18161 \series default
18162 .
18163 \end_layout
18164
18165 \end_inset
18166
18167
18168 \end_layout
18169
18170 \begin_layout Standard
18171 Ten en cuenta que el estilo <página> no imprime el número si la etiqueta
18172  está en la misma página, en la anterior o en la siguiente.
18173  En su lugar verás p.\InsetSpace \thinspace{}
18174 e.\InsetSpace ~
18175 el texto 
18176 \begin_inset Quotes eld
18177 \end_inset
18178
18179
18180 \family sans
18181 en esta página
18182 \family default
18183
18184 \begin_inset Quotes erd
18185 \end_inset
18186
18187 .
18188 \end_layout
18189
18190 \begin_layout Standard
18191 El número y página actual de la parte del documento referida es automáticamente
18192  calculado por LaTeX en la salida.
18193  Las variedades se ajustan en el campo 
18194 \family sans
18195 Formato
18196 \family default
18197  de la ventana de referencia cruzada, que aparece al pinchar sobre el cuadro.
18198 \end_layout
18199
18200 \begin_layout Subsection
18201 Referencias a Subfiguras 
18202 \begin_inset LatexCommand label
18203 name "sub:Referencias-a-Subfiguras"
18204
18205 \end_inset
18206
18207
18208 \begin_inset LatexCommand index
18209 name "Referencias ! a Subfiguras"
18210
18211 \end_inset
18212
18213
18214 \end_layout
18215
18216 \begin_layout Standard
18217 Por el momento LyX no soporta las referencias a subfiguras, de modo que
18218  hay que emplear comandos LaTeX.
18219  La etiqueta se crea con el comando
18220 \end_layout
18221
18222 \begin_layout Standard
18223
18224 \series bold
18225
18226 \backslash
18227 label{fig:NombreEtiqueta}
18228 \end_layout
18229
18230 \begin_layout Standard
18231 que se inserta directamente en el campo de encabezado de la subfigura.
18232  Para referenciar la etiqueta añade el siguiente comando en ERT
18233 \end_layout
18234
18235 \begin_layout Standard
18236
18237 \series bold
18238
18239 \backslash
18240 ref{fig:NombreEtiqueta}
18241 \end_layout
18242
18243 \begin_layout Standard
18244 en la posición del documento en la que quieras que aparezca la referencia.
18245  Aquí hay una referencia a una subfigura: Subfigura\InsetSpace ~
18246
18247 \begin_inset ERT
18248 status collapsed
18249
18250 \begin_layout Standard
18251
18252
18253 \backslash
18254 ref{fig:Platypus}
18255 \end_layout
18256
18257 \end_inset
18258
18259
18260 \end_layout
18261
18262 \begin_layout Standard
18263
18264 \end_layout
18265
18266 \begin_layout Subsection
18267 Designación Automática de Referencias
18268 \begin_inset LatexCommand index
18269 name "Referencias ! Designación Automática"
18270
18271 \end_inset
18272
18273
18274 \end_layout
18275
18276 \begin_layout Standard
18277 El paquete LaTeX 
18278 \series bold
18279 hyperref
18280 \series default
18281  dispone de una característica muy útil que permite incluir automáticamente
18282  en las referencias cruzadas el nombre de los flotantes referidos (o partes
18283  de texto como secciones).
18284  Quieres p.\InsetSpace \thinspace{}
18285 e.\InsetSpace ~
18286 escribir la palabra 
18287 \begin_inset Quotes eld
18288 \end_inset
18289
18290 Figura
18291 \begin_inset Quotes erd
18292 \end_inset
18293
18294  antes de cada cuadro de referencia.
18295  Para conseguirlo debes cargar el paquete LaTeX 
18296 \series bold
18297 hyperref
18298 \series default
18299
18300 \begin_inset LatexCommand index
18301 name "LaTeX-paquetes ! hyperref"
18302
18303 \end_inset
18304
18305  en el preámbulo del documento con
18306 \end_layout
18307
18308 \begin_layout Standard
18309
18310 \series bold
18311
18312 \backslash
18313 usepackage[pdfborder={0 0 0}]{hyperref}
18314 \newline
18315
18316 \backslash
18317 AtBeginDocument{
18318 \backslash
18319 renewcommand{
18320 \backslash
18321 ref}[1]{
18322 \backslash
18323 mbox{
18324 \backslash
18325 autoref{#1}}}}
18326 \end_layout
18327
18328 \begin_layout Standard
18329
18330 \series bold
18331 hyperref
18332 \series default
18333  se utiliza para enlazar referencias cruzadas en las salidas DVI y PDF,
18334  esto significa que el lector del documento podrá pinchar sobre una entrada
18335  de Índice o una referencia y será inmediatamente dirigido a esa parte del
18336  documento.
18337  
18338 \series bold
18339 hyperref
18340 \series default
18341  también crea marcadores PDF para cada sección para facilitar al lector
18342  la navegación por el documento.
18343  Esto también se ha usado en este documento pero si echas una ojeada al
18344  preámbulo encontrarás varias opciones en la carga de 
18345 \series bold
18346 hyperref
18347 \series default
18348 .
18349  Para aprender más sobre ello acude a la documentoación del paquete 
18350 \begin_inset LatexCommand cite
18351 key "hyperref"
18352
18353 \end_inset
18354
18355 .
18356 \end_layout
18357
18358 \begin_layout Standard
18359 \begin_inset Note Greyedout
18360 status open
18361
18362 \begin_layout Standard
18363
18364 \series bold
18365 Nota:
18366 \series default
18367  La designación automática de referencias no puede usarse en el estilo 
18368 \family sans
18369 Referencia\InsetSpace ~
18370 con\InsetSpace ~
18371 formato
18372 \family default
18373 , descrita en la sección\InsetSpace ~
18374
18375 \begin_inset LatexCommand ref
18376 reference "sub:Formatos-referencia-cruzada"
18377
18378 \end_inset
18379
18380 .
18381 \end_layout
18382
18383 \end_inset
18384
18385
18386 \end_layout
18387
18388 \begin_layout Subsection
18389 Colocación de Referencias
18390 \begin_inset LatexCommand label
18391 name "sub:Colocación-de-Referencias"
18392
18393 \end_inset
18394
18395
18396 \begin_inset LatexCommand index
18397 name "Referencias ! Colocación"
18398
18399 \end_inset
18400
18401
18402 \end_layout
18403
18404 \begin_layout Standard
18405 Si usas 
18406 \series bold
18407 hyperref
18408 \series default
18409
18410 \begin_inset LatexCommand index
18411 name "LaTeX-paquetes ! hyperref"
18412
18413 \end_inset
18414
18415  para enlazar referencias cruzadas en la salida, verás que al pinchar sobre
18416  la referencia de una imagen flotante te lleva hasta la etiqueta de la imagen.
18417  El encabezado será la primera parte de texto en pantalla, de forma que
18418  para ver la imagen debes deslizar.
18419  Se debe a que el ancla de enlace de la referencia se sitúa en la etiqueta.
18420  Usando el paquete 
18421 \series bold
18422 hypcap
18423 \series default
18424
18425 \begin_inset LatexCommand index
18426 name "LaTeX-paquetes ! hypcap"
18427
18428 \end_inset
18429
18430 , que forma parte del paquete LaTeX 
18431 \series bold
18432 oberdiek
18433 \series default
18434
18435 \begin_inset LatexCommand index
18436 name "LaTeX-paquetes ! oberdiek"
18437
18438 \end_inset
18439
18440 , el ancla de enlace se sitúa al comienzo de un flotante.
18441  Para usar esta característica para figuras flotantes carga 
18442 \series bold
18443 hypcap
18444 \series default
18445  en el preámbulo con
18446 \end_layout
18447
18448 \begin_layout Standard
18449
18450 \series bold
18451
18452 \backslash
18453 usepackage[f\SpecialChar \textcompwordmark{}
18454 igure]{hypcap}
18455 \end_layout
18456
18457 \begin_layout Standard
18458 Puedes usar 
18459 \series bold
18460 hypcap
18461 \series default
18462  para todos los flotantes aunque no se recomienda por razones de estabilidad.
18463  Más información en el manual de 
18464 \series bold
18465 hypcap
18466 \series default
18467  
18468 \begin_inset LatexCommand cite
18469 key "hypcap"
18470
18471 \end_inset
18472
18473 .
18474 \end_layout
18475
18476 \begin_layout Standard
18477 \begin_inset Note Greyedout
18478 status open
18479
18480 \begin_layout Standard
18481
18482 \series bold
18483 Nota: hypcap
18484 \series default
18485  debe cargarse después de 
18486 \series bold
18487 hyperref
18488 \series default
18489  en el preámbulo
18490 \series bold
18491 .
18492 \end_layout
18493
18494 \end_inset
18495
18496
18497 \end_layout
18498
18499 \begin_layout Standard
18500 \begin_inset Note Greyedout
18501 status open
18502
18503 \begin_layout Standard
18504
18505 \series bold
18506 Nota:
18507 \series default
18508  La colocación de referencias no afecta a las referencias a subfiguras.
18509 \end_layout
18510
18511 \end_inset
18512
18513
18514 \end_layout
18515
18516 \begin_layout Section
18517 Colocación de Flotantes
18518 \begin_inset LatexCommand label
18519 name "sec:Colocación-de-Flotantes"
18520
18521 \end_inset
18522
18523
18524 \begin_inset LatexCommand index
18525 name "Flotantes ! Colocación"
18526
18527 \end_inset
18528
18529
18530 \end_layout
18531
18532 \begin_layout Standard
18533 Click-derecha sobre un cuadro de flotante abre un diálogo en el que pueden
18534  cambiarse las opciones de LaTeX para situar los flotantes.
18535 \newline
18536 La opción 
18537 \family sans
18538 Extender\InsetSpace ~
18539 columnas
18540 \family default
18541  solo es aplicable a documentoos de dos columnas: Si lo seleccionas, el
18542  flotante abarcará ambas columnas en lugar de una sola.
18543 \newline
18544 La opción 
18545 \family sans
18546 Girar\InsetSpace ~
18547 a\InsetSpace ~
18548 un\InsetSpace ~
18549 lado
18550 \family default
18551  sirve para girar flotantes, ver sección\InsetSpace ~
18552
18553 \begin_inset LatexCommand ref
18554 reference "sec:Rotación-de-Flotantes"
18555
18556 \end_inset
18557
18558 .
18559  
18560 \end_layout
18561
18562 \begin_layout Standard
18563 Puedes usar una o más de las siguientes opciones en el diálogo para establecer
18564  la posición de un flotante si desmarcas la opción 
18565 \family sans
18566 Usar\InsetSpace ~
18567 ubicación\InsetSpace ~
18568 predeterminada
18569 \family default
18570 :
18571 \end_layout
18572
18573 \begin_layout Description
18574
18575 \family sans
18576 \series bold
18577 Aquí\InsetSpace ~
18578 si\InsetSpace ~
18579 es\InsetSpace ~
18580 posible:
18581 \family default
18582 \series default
18583  intenta situar el flotante en la posición en la que se inserta
18584 \end_layout
18585
18586 \begin_layout Description
18587
18588 \family sans
18589 \series bold
18590 Principio\InsetSpace ~
18591 de\InsetSpace ~
18592 página:
18593 \family default
18594 \series default
18595  intenta situar el flotante al principio de la página actual
18596 \end_layout
18597
18598 \begin_layout Description
18599
18600 \family sans
18601 \series bold
18602 Fin\InsetSpace ~
18603 de\InsetSpace ~
18604 página:
18605 \family default
18606 \series default
18607  intenta situar el flotante al final de la página actual
18608 \end_layout
18609
18610 \begin_layout Description
18611
18612 \family sans
18613 \series bold
18614 Página\InsetSpace ~
18615 de\InsetSpace ~
18616 flotantes:
18617 \family default
18618 \series default
18619  intenta situar el flotante en una página propia 
18620 \end_layout
18621
18622 \begin_layout Standard
18623 LaTeX usa 
18624 \emph on
18625 siempre
18626 \emph default
18627  ese orden de opciones.
18628  Significa que si usas la colocación predeterminada, LaTeX probará en primer
18629  lugar 
18630 \family sans
18631 Aquí\InsetSpace ~
18632 si\InsetSpace ~
18633 es\InsetSpace ~
18634 posible
18635 \family default
18636 , luego 
18637 \family sans
18638 Principio\InsetSpace ~
18639 de\InsetSpace ~
18640 página
18641 \family default
18642 , y después las otras.
18643  Si no usas la predeterminada, LaTeX solo probará las opciones marcadas
18644  pero en dicho orden.
18645  Si no es posible ninguna de las 4 ubicaciones el proceso se repite internamente
18646  pero intenta poner el flotante en la página siguiente.
18647 \end_layout
18648
18649 \begin_layout Standard
18650 De forma predeterminada cada una de las opciones tiene sus propias reglas:
18651 \end_layout
18652
18653 \begin_layout Labeling
18654 \labelwidthstring 00.00.0000
18655
18656 \family sans
18657 Principio\InsetSpace ~
18658 de\InsetSpace ~
18659 página:
18660 \family default
18661  solo si el flotante ocupa menos del 70\InsetSpace \thinspace{}
18662 % de la página puede ubicarse al
18663  principio de página (
18664 \series bold
18665
18666 \backslash
18667 topfraction
18668 \series default
18669 )
18670 \end_layout
18671
18672 \begin_layout Labeling
18673 \labelwidthstring 00.00.0000
18674
18675 \family sans
18676 Fin\InsetSpace ~
18677 de\InsetSpace ~
18678 página:
18679 \family default
18680  solo si el flotante ocupa menos del 30\InsetSpace \thinspace{}
18681 % de la página puede ubicarse al
18682  fin de página.
18683  (
18684 \series bold
18685
18686 \backslash
18687 bottomfraction
18688 \series default
18689 )
18690 \end_layout
18691
18692 \begin_layout Labeling
18693 \labelwidthstring 00.00.0000
18694
18695 \family sans
18696 Página\InsetSpace ~
18697 de\InsetSpace ~
18698 flotantes:
18699 \family default
18700  solo si más del 50\InsetSpace \thinspace{}
18701 % de la página se ocupa por flotantes puede haber varios
18702  juntos en la misma página.
18703  (
18704 \series bold
18705
18706 \backslash
18707 floatpagefraction
18708 \series default
18709 )
18710 \end_layout
18711
18712 \begin_layout Standard
18713 Si no te agradan estas reglas puedes ignorarlas marcando la opción adicional
18714  
18715 \family sans
18716 Ignorar\InsetSpace ~
18717 reglas\InsetSpace ~
18718 de\InsetSpace ~
18719 LaTeX
18720 \family default
18721 .
18722 \newline
18723 También puedes redefinir las reglas con los comandos LaTeX que van entre
18724  paréntesis tras la descripción de las reglas anteriores.
18725  Por ejemplo, para aumentar el valor predeterminado, quizás pequeño, de
18726  la regla 
18727 \family sans
18728 Fin
18729 \family default
18730 \InsetSpace ~
18731
18732 \family sans
18733 de
18734 \family default
18735 \InsetSpace ~
18736
18737 \family sans
18738 página
18739 \family default
18740  al 50\InsetSpace \thinspace{}
18741 %, añade esta línea en el preámbulo:
18742 \end_layout
18743
18744 \begin_layout Standard
18745
18746 \series bold
18747
18748 \backslash
18749 renewcommand{
18750 \backslash
18751 bottomfraction}{0.5}
18752 \end_layout
18753
18754 \begin_layout Standard
18755 En determinados casos podrías necesitar ubicar un flotante exactamente en
18756  la posición en la que se inserta.
18757  Para esto puedes usar la opción 
18758 \family sans
18759 Aquí\InsetSpace ~
18760 definitivamente
18761 \family default
18762 .
18763  Usa esta opción esporádicamente y solo cuando el documento esté casi listo,
18764  porque el flotante ya no podrá "flotar" y si haces cambios al documento
18765  se podría estropear el diseño de la página.
18766 \end_layout
18767
18768 \begin_layout Standard
18769 No hay opciones de ubicación para flotantes ajustados a texto porque siempre
18770  están rodeados por texto de un párrafo determinado.
18771 \begin_inset VSpace bigskip
18772 \end_inset
18773
18774
18775 \end_layout
18776
18777 \begin_layout Standard
18778 A veces surge el problema de que un flotante se sitúa al principio de la
18779  página mientras que su sección correspondiente empieza en mitad de la página,
18780  así que el lector podría creer que el flotante forma parte de la sección
18781  anterior.
18782  Para evitarlo puede emplearse el comando LaTeX 
18783 \series bold
18784
18785 \backslash
18786 suppressf\SpecialChar \textcompwordmark{}
18787 loats
18788 \series default
18789 , que suprime la ubicación de un flotante dado en la página donde se inserta
18790  y además puede servir para evitar que el flotante se coloque antes del
18791  inicio de sección.
18792  Para ello, añade estos comandos al préambulo:
18793 \end_layout
18794
18795 \begin_layout Standard
18796
18797 \series bold
18798
18799 \backslash
18800 let
18801 \backslash
18802 mySection
18803 \backslash
18804 section
18805 \newline
18806
18807 \backslash
18808 renewcommand{
18809 \backslash
18810 section}{
18811 \backslash
18812 suppressf\SpecialChar \textcompwordmark{}
18813 loats[t]
18814 \backslash
18815 mySection}
18816 \end_layout
18817
18818 \begin_layout Standard
18819 Se puede hacer lo mismo para todas las cabeceras de sección, capítulos y
18820  subsecciones.
18821  No es recomendable para partes pequeñas de texto como subsubsecciones porque
18822  LaTeX podría tener problemas para encontrar una ubicación adecuada.
18823 \end_layout
18824
18825 \begin_layout Standard
18826 \begin_inset VSpace bigskip
18827 \end_inset
18828
18829 En ciertos casos se quieren tener todas las figuras/tablas al final del
18830  documento.
18831  Para estos casos está el paquete LaTeX 
18832 \series bold
18833 endf\SpecialChar \textcompwordmark{}
18834 loat
18835 \series default
18836
18837 \begin_inset LatexCommand index
18838 name "LaTeX-paquetes ! endfloat"
18839
18840 \end_inset
18841
18842 .
18843  Pone todas las figuras y tablas flotantes al final del documento en secciones
18844  propias.
18845  En la posición original del flotante se inserta una indicación como 
18846 \begin_inset Quotes eld
18847 \end_inset
18848
18849
18850 \family sans
18851 [Figura\InsetSpace ~
18852 3.2 por aquí.]
18853 \family default
18854
18855 \begin_inset Quotes erd
18856 \end_inset
18857
18858 .
18859  El paquete 
18860 \series bold
18861 endf\SpecialChar \textcompwordmark{}
18862 loat
18863 \series default
18864  se carga en el preámbulo con la línea
18865 \end_layout
18866
18867 \begin_layout Standard
18868
18869 \series bold
18870
18871 \backslash
18872 usepackage[options]{endf\SpecialChar \textcompwordmark{}
18873 loat}
18874 \end_layout
18875
18876 \begin_layout Standard
18877 Hay varias opciones para diseñar las secciones figura/tabla creadas.
18878  Para más información ver la documentación de 
18879 \begin_inset LatexCommand cite
18880 key "endfloat"
18881
18882 \end_inset
18883
18884 .
18885 \newline
18886
18887 \begin_inset Note Greyedout
18888 status open
18889
18890 \begin_layout Standard
18891
18892 \series bold
18893 Nota: endf\SpecialChar \textcompwordmark{}
18894 loat
18895 \series default
18896  no traduce automáticamente la indicación, hay que hacerlo manualmente,
18897  ver sección\InsetSpace ~
18898 4 en 
18899 \begin_inset LatexCommand cite
18900 key "endfloat"
18901
18902 \end_inset
18903
18904 .
18905 \end_layout
18906
18907 \end_inset
18908
18909
18910 \newline
18911
18912 \begin_inset Note Greyedout
18913 status open
18914
18915 \begin_layout Standard
18916
18917 \series bold
18918 Nota:
18919 \series default
18920  Actualmente hay un error en 
18921 \series bold
18922 endf\SpecialChar \textcompwordmark{}
18923 loat
18924 \series default
18925  cuando el encabezado contiene el caracter alemán 
18926 \begin_inset Quotes eld
18927 \end_inset
18928
18929 ß
18930 \begin_inset Quotes erd
18931 \end_inset
18932
18933 .
18934  Usa en ese caso el comando 
18935 \begin_inset Quotes eld
18936 \end_inset
18937
18938
18939 \series bold
18940
18941 \backslash
18942 ss
18943 \series default
18944
18945 \begin_inset Quotes erd
18946 \end_inset
18947
18948  en ERT en vez de 
18949 \begin_inset Quotes eld
18950 \end_inset
18951
18952 ß
18953 \begin_inset Quotes erd
18954 \end_inset
18955
18956 .
18957 \end_layout
18958
18959 \end_inset
18960
18961
18962 \end_layout
18963
18964 \begin_layout Standard
18965 \begin_inset VSpace bigskip
18966 \end_inset
18967
18968 Más detalles sobre ubicación de flotantes en libros sobre LaTeX como 
18969 \begin_inset LatexCommand cite
18970 key "latexcompanion,latexguide,latexbook"
18971
18972 \end_inset
18973
18974 .
18975 \end_layout
18976
18977 \begin_layout Section
18978 Rotación de Flotantes
18979 \begin_inset LatexCommand label
18980 name "sec:Rotación-de-Flotantes"
18981
18982 \end_inset
18983
18984
18985 \begin_inset LatexCommand index
18986 name "Flotantes ! Rotación"
18987
18988 \end_inset
18989
18990
18991 \end_layout
18992
18993 \begin_layout Standard
18994 Podrías necesitar girar flotantes, especialmente con tablas grandes.
18995  Para girar todo el flotante y su encabezado, pincha sobre su cuadro y marca
18996  la opción 
18997 \family sans
18998 Girar\InsetSpace ~
18999 a\InsetSpace ~
19000 un\InsetSpace ~
19001 lado
19002 \family default
19003 .
19004 \end_layout
19005
19006 \begin_layout Standard
19007 Los flotantes girados son puestos siempre en su propia página (o columna
19008  si el documento es de dos columnas).
19009  Normalmente se rotan de forma que puedes leerlos desde el margen externo
19010  -- a la izquierda en páginas pares, a la derecha en impares.
19011 \end_layout
19012
19013 \begin_layout Standard
19014 Los flotantes girados se refieren igual que los normales, y el formato de
19015  encabezado también es el mismo: Un ejemplo es la tabla\InsetSpace ~
19016
19017 \begin_inset LatexCommand ref
19018 reference "tab:Tabla-girada"
19019
19020 \end_inset
19021
19022 .
19023 \end_layout
19024
19025 \begin_layout Standard
19026 \begin_inset Note Greyedout
19027 status open
19028
19029 \begin_layout Standard
19030
19031 \series bold
19032 Nota:
19033 \series default
19034  No todos los visores DVI pueden mostrar tablas giradas.
19035 \end_layout
19036
19037 \end_inset
19038
19039
19040 \end_layout
19041
19042 \begin_layout Standard
19043 \begin_inset Float table
19044 wide false
19045 sideways true
19046 status open
19047
19048 \begin_layout Standard
19049 \begin_inset Caption
19050
19051 \begin_layout Standard
19052 \begin_inset LatexCommand label
19053 name "tab:Tabla-girada"
19054
19055 \end_inset
19056
19057  Tabla girada
19058 \end_layout
19059
19060 \end_inset
19061
19062
19063 \end_layout
19064
19065 \begin_layout Standard
19066 \align center
19067 \begin_inset Tabular
19068 <lyxtabular version="3" rows="1" columns="5">
19069 <features>
19070 <column alignment="center" valignment="top" leftline="true" width="0">
19071 <column alignment="center" valignment="top" leftline="true" width="0">
19072 <column alignment="center" valignment="top" leftline="true" width="0">
19073 <column alignment="center" valignment="top" leftline="true" width="0">
19074 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19075 <row topline="true" bottomline="true">
19076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19077 \begin_inset Text
19078
19079 \begin_layout Standard
19080 test
19081 \end_layout
19082
19083 \end_inset
19084 </cell>
19085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19086 \begin_inset Text
19087
19088 \begin_layout Standard
19089 b
19090 \end_layout
19091
19092 \end_inset
19093 </cell>
19094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19095 \begin_inset Text
19096
19097 \begin_layout Standard
19098 c
19099 \end_layout
19100
19101 \end_inset
19102 </cell>
19103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19104 \begin_inset Text
19105
19106 \begin_layout Standard
19107 d
19108 \end_layout
19109
19110 \end_inset
19111 </cell>
19112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19113 \begin_inset Text
19114
19115 \begin_layout Standard
19116 e
19117 \end_layout
19118
19119 \end_inset
19120 </cell>
19121 </row>
19122 </lyxtabular>
19123
19124 \end_inset
19125
19126
19127 \end_layout
19128
19129 \end_inset
19130
19131
19132 \end_layout
19133
19134 \begin_layout Section
19135 Formato de Encabezados
19136 \begin_inset LatexCommand index
19137 name "Encabezados ! Formato"
19138
19139 \end_inset
19140
19141
19142 \begin_inset LatexCommand index
19143 name "Flotantes ! Formato de Encabezados"
19144
19145 \end_inset
19146
19147
19148 \begin_inset LatexCommand index
19149 name "LaTeX-paquetes ! caption"
19150
19151 \end_inset
19152
19153
19154 \begin_inset LatexCommand label
19155 name "sec:Formato-de-Encabezados"
19156
19157 \end_inset
19158
19159
19160 \end_layout
19161
19162 \begin_layout Standard
19163 El entorno 
19164 \family sans
19165 Encabezado
19166 \family default
19167  es el predeterminado para los 
19168 \family sans
19169 Flotantes
19170 \family default
19171 .
19172  En LyX los encabezados se muestran como etiqueta, p.\InsetSpace \thinspace{}
19173 e.\InsetSpace ~
19174
19175 \begin_inset Quotes eld
19176 \end_inset
19177
19178
19179 \family sans
19180 Figura #
19181 \family default
19182 :
19183 \begin_inset Quotes erd
19184 \end_inset
19185
19186  seguida por el texto.
19187  El símbolo de número 
19188 \begin_inset Quotes eld
19189 \end_inset
19190
19191 #
19192 \begin_inset Quotes erd
19193 \end_inset
19194
19195  es sustituido en la salida impresa por el número de referencia real.
19196  Por defecto la etiqueta y el número usan la misma fuente que el texto del
19197  encabezado y el signo dos puntos sigue al número para separar la etiqueta
19198  del texto.
19199  El formato de encabezado no es apropiado para todos los formatos de documento.
19200  
19201 \end_layout
19202
19203 \begin_layout Standard
19204 Para cambiar el formato predeterminado carga el paquete LaTeX 
19205 \series bold
19206 caption
19207 \series default
19208
19209 \begin_inset LatexCommand index
19210 name "LaTeX-paquetes ! caption"
19211
19212 \end_inset
19213
19214  en el preámbulo del documento con la línea:
19215 \end_layout
19216
19217 \begin_layout Standard
19218
19219 \series bold
19220
19221 \backslash
19222 usepackage[definición de formato]{caption}
19223 \end_layout
19224
19225 \begin_layout Standard
19226 Para poner, por ejemplo, la etiqueta y el número en sans-serif negrita y
19227  los encabezados de tabla siempre sobre ella como en este documento, usa
19228  el comando:
19229 \end_layout
19230
19231 \begin_layout Standard
19232
19233 \series bold
19234
19235 \backslash
19236 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19237 \end_layout
19238
19239 \begin_layout Standard
19240 También puedes definir distintos formatos de encabezado para los distintos
19241  tipos de flotantes.
19242  En ese caso carga el paquete 
19243 \series bold
19244 caption
19245 \series default
19246  sin opciones específicas y define los distintos formatos con ayuda del
19247  comando
19248 \end_layout
19249
19250 \begin_layout Standard
19251
19252 \series bold
19253
19254 \backslash
19255 captionsetup[tipo de flotante]{definición de formato}
19256 \end_layout
19257
19258 \begin_layout Standard
19259 en el preámbulo del documento.
19260  Por ejemplo los encabezados de la Figura\InsetSpace ~
19261
19262 \begin_inset LatexCommand ref
19263 reference "fig:Esto-es-una-fig"
19264
19265 \end_inset
19266
19267  y la tabla\InsetSpace ~
19268
19269 \begin_inset LatexCommand ref
19270 reference "tab:Esto-es-una-tab"
19271
19272 \end_inset
19273
19274  pueden crearse usando los siguientes comandos en el preámbulo:
19275 \end_layout
19276
19277 \begin_layout Standard
19278
19279 \series bold
19280
19281 \backslash
19282 usepackage[tableposition=top]{caption}
19283 \series default
19284
19285 \newline
19286
19287 \series bold
19288
19289 \backslash
19290 captionsetup[f\SpecialChar \textcompwordmark{}
19291 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19292 \newline
19293
19294 \begin_inset ERT
19295 status collapsed
19296
19297 \begin_layout Standard
19298
19299
19300 \backslash
19301 hphantom{
19302 \backslash
19303
19304 \backslash
19305 captionsetup[figure]
19306 \backslash
19307 {}
19308 \end_layout
19309
19310 \end_inset
19311
19312  labelsep=period}
19313 \newline
19314
19315 \backslash
19316 captionsetup[table]{labelfont={bf,sf}}
19317 \end_layout
19318
19319 \begin_layout Standard
19320 \begin_inset Note Greyedout
19321 status open
19322
19323 \begin_layout Standard
19324
19325 \series bold
19326 \lang english
19327 Note:
19328 \series default
19329  The option 
19330 \series bold
19331 tableposition=top
19332 \series default
19333  has no effect when a 
19334 \series bold
19335 koma-script
19336 \series default
19337 \lang spanish
19338
19339 \begin_inset LatexCommand index
19340 name "LaTeX-paquetes ! koma-script"
19341
19342 \end_inset
19343
19344
19345 \lang english
19346  document class is used.
19347  In this case the document class option 
19348 \series bold
19349 tablecaptionabove
19350 \series default
19351  must be used.
19352 \end_layout
19353
19354 \end_inset
19355
19356
19357 \end_layout
19358
19359 \begin_layout Standard
19360 Para más información sobre el paquete 
19361 \series bold
19362 caption
19363 \series default
19364  acude a su documentación 
19365 \begin_inset LatexCommand cite
19366 key "caption,caption-de"
19367
19368 \end_inset
19369
19370 .
19371 \end_layout
19372
19373 \begin_layout Standard
19374
19375 \lang english
19376 To change the label name from e.g.
19377  
19378 \begin_inset Quotes eld
19379 \end_inset
19380
19381 Figure
19382 \begin_inset Quotes erd
19383 \end_inset
19384
19385  to 
19386 \begin_inset Quotes eld
19387 \end_inset
19388
19389 Image
19390 \begin_inset Quotes erd
19391 \end_inset
19392
19393  use this preamble command:
19394 \end_layout
19395
19396 \begin_layout Standard
19397
19398 \series bold
19399 \lang english
19400
19401 \backslash
19402 renewcommand{
19403 \backslash
19404 fnum@figure}{Image~
19405 \backslash
19406 thefigure}
19407 \end_layout
19408
19409 \begin_layout Standard
19410
19411 \lang english
19412 where 
19413 \series bold
19414
19415 \backslash
19416 thefigure
19417 \series default
19418  inserts the figure number and
19419 \series bold
19420  
19421 \begin_inset Quotes eld
19422 \end_inset
19423
19424 ~
19425 \series default
19426
19427 \begin_inset Quotes erd
19428 \end_inset
19429
19430  creates a protected space.
19431 \end_layout
19432
19433 \begin_layout Standard
19434 \begin_inset VSpace bigskip
19435 \end_inset
19436
19437 Si estás usando la clase de documento 
19438 \series bold
19439 koma-script
19440 \series default
19441
19442 \begin_inset LatexCommand index
19443 name "LaTeX-paquetes ! koma-script"
19444
19445 \end_inset
19446
19447  (
19448 \family sans
19449 article (koma-script)
19450 \family default
19451
19452 \family sans
19453 book (koma-script)
19454 \family default
19455
19456 \family sans
19457 letter (koma-script)
19458 \family default
19459 , o 
19460 \family sans
19461 report (koma-script)
19462 \family default
19463 \InsetSpace \thinspace{}
19464 ), puedes emplear en vez del paquete 
19465 \series bold
19466 caption
19467 \series default
19468  el comando 
19469 \series bold
19470
19471 \backslash
19472 setkomafont
19473 \series default
19474  incluido en 
19475 \series bold
19476 koma-script
19477 \series default
19478 .
19479  Por ejemplo, para poner en negrita la etiqueta del encabezado añade este
19480  comando en el preámbulo del documento:
19481 \end_layout
19482
19483 \begin_layout Standard
19484
19485 \series bold
19486
19487 \backslash
19488 setkomafont{captionlabel}{
19489 \backslash
19490 bfseries}
19491 \end_layout
19492
19493 \begin_layout Standard
19494 Más información sobre 
19495 \series bold
19496
19497 \backslash
19498 setkomafont
19499 \series default
19500  en la documentación de 
19501 \series bold
19502 koma-script
19503 \series default
19504  
19505 \begin_inset LatexCommand cite
19506 key "koma-script,koma-script-de"
19507
19508 \end_inset
19509
19510 .
19511 \end_layout
19512
19513 \begin_layout Standard
19514 \begin_inset ERT
19515 status collapsed
19516
19517 \begin_layout Standard
19518
19519
19520 \backslash
19521 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19522 }
19523 \end_layout
19524
19525 \end_inset
19526
19527
19528 \begin_inset Note Note
19529 status open
19530
19531 \begin_layout Standard
19532 El formato de encabezado se ha cambiado sólo para este ejemplo.
19533 \end_layout
19534
19535 \end_inset
19536
19537
19538 \end_layout
19539
19540 \begin_layout Standard
19541 \begin_inset Float figure
19542 placement !p
19543 wide false
19544 sideways false
19545 status open
19546
19547 \begin_layout Standard
19548 \align center
19549 \begin_inset Graphics
19550         filename ../clipart/mobius.eps
19551         lyxscale 50
19552         scale 50
19553
19554 \end_inset
19555
19556
19557 \end_layout
19558
19559 \begin_layout Standard
19560 \begin_inset Caption
19561
19562 \begin_layout Standard
19563 \begin_inset LatexCommand label
19564 name "fig:Esto-es-una-fig"
19565
19566 \end_inset
19567
19568 Este es un ejemplo de encabezado de figura que es mayor de una línea para
19569  mostrar el formato diferente.
19570  Aquí se usa un encabezado autodefinido.
19571 \end_layout
19572
19573 \end_inset
19574
19575
19576 \end_layout
19577
19578 \end_inset
19579
19580
19581 \end_layout
19582
19583 \begin_layout Standard
19584 \begin_inset ERT
19585 status collapsed
19586
19587 \begin_layout Standard
19588
19589
19590 \backslash
19591 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19592 on}
19593 \end_layout
19594
19595 \end_inset
19596
19597
19598 \end_layout
19599
19600 \begin_layout Standard
19601 \begin_inset Float table
19602 placement !p
19603 wide false
19604 sideways false
19605 status open
19606
19607 \begin_layout Standard
19608 \begin_inset Caption
19609
19610 \begin_layout Standard
19611 \begin_inset LatexCommand label
19612 name "tab:Esto-es-una-tab"
19613
19614 \end_inset
19615
19616 Este es un ejemplo de encabezado de tabla mayor que una línea para mostrar
19617  el formato diferente.
19618  Aquí se usa el formato de encabezado standard para tablas de este documento.
19619 \end_layout
19620
19621 \end_inset
19622
19623
19624 \end_layout
19625
19626 \begin_layout Standard
19627 \align center
19628 \begin_inset Tabular
19629 <lyxtabular version="3" rows="1" columns="5">
19630 <features>
19631 <column alignment="center" valignment="top" leftline="true" width="0">
19632 <column alignment="center" valignment="top" leftline="true" width="0">
19633 <column alignment="center" valignment="top" leftline="true" width="0">
19634 <column alignment="center" valignment="top" leftline="true" width="0">
19635 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19636 <row topline="true" bottomline="true">
19637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19638 \begin_inset Text
19639
19640 \begin_layout Standard
19641 a
19642 \end_layout
19643
19644 \end_inset
19645 </cell>
19646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19647 \begin_inset Text
19648
19649 \begin_layout Standard
19650 b
19651 \end_layout
19652
19653 \end_inset
19654 </cell>
19655 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19656 \begin_inset Text
19657
19658 \begin_layout Standard
19659 c
19660 \end_layout
19661
19662 \end_inset
19663 </cell>
19664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19665 \begin_inset Text
19666
19667 \begin_layout Standard
19668 d
19669 \end_layout
19670
19671 \end_inset
19672 </cell>
19673 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19674 \begin_inset Text
19675
19676 \begin_layout Standard
19677 e
19678 \end_layout
19679
19680 \end_inset
19681 </cell>
19682 </row>
19683 </lyxtabular>
19684
19685 \end_inset
19686
19687
19688 \end_layout
19689
19690 \end_inset
19691
19692
19693 \end_layout
19694
19695 \begin_layout Section
19696 Colocación de Encabezados
19697 \begin_inset LatexCommand index
19698 name "Encabezados ! Colocación"
19699
19700 \end_inset
19701
19702
19703 \begin_inset LatexCommand index
19704 name "Flotantes ! Colocación de Encabezados"
19705
19706 \end_inset
19707
19708
19709 \begin_inset LatexCommand label
19710 name "sec:Colocación-de-Encabezados"
19711
19712 \end_inset
19713
19714
19715 \end_layout
19716
19717 \begin_layout Standard
19718 La norma habitual para colocar encabezados es:
19719 \end_layout
19720
19721 \begin_layout Description
19722 Figura: El encabezado bajo la figura
19723 \end_layout
19724
19725 \begin_layout Description
19726 Tabla: El encabezado sobre la tabla
19727 \end_layout
19728
19729 \begin_layout Standard
19730 Desafortunadamente, las clases standard de LaTeX no soportan encabezados
19731  sobre la tabla.
19732  Esto implica que si usas las clases de documento 
19733 \family sans
19734 article
19735 \family default
19736
19737 \family sans
19738 book
19739 \family default
19740
19741 \family sans
19742 letter
19743 \family default
19744 , o 
19745 \family sans
19746 report
19747 \family default
19748  no habrá espacio entre el encabezado y la tabla.
19749  Para insertar el espacio adecuado añade la siguiente opción al comando
19750  del paquete LaTeX 
19751 \series bold
19752 caption
19753 \series default
19754  en el preámbulo del documento
19755 \begin_inset Foot
19756 status collapsed
19757
19758 \begin_layout Standard
19759 Ver la sección\InsetSpace ~
19760
19761 \begin_inset LatexCommand ref
19762 reference "sec:Formato-de-Encabezados"
19763
19764 \end_inset
19765
19766  para más información sobre el paquete 
19767 \series bold
19768 caption
19769 \series default
19770 .
19771 \end_layout
19772
19773 \end_inset
19774
19775 :
19776 \end_layout
19777
19778 \begin_layout Standard
19779
19780 \series bold
19781 tableposition=top
19782 \end_layout
19783
19784 \begin_layout Standard
19785 Si estás usando la clase 
19786 \series bold
19787 koma-script
19788 \series default
19789
19790 \begin_inset LatexCommand index
19791 name "LaTeX-paquetes ! koma-script"
19792
19793 \end_inset
19794
19795  (
19796 \family sans
19797 article (koma-script)
19798 \family default
19799
19800 \family sans
19801 book (koma-script)
19802 \family default
19803
19804 \family sans
19805 letter (koma-script)
19806 \family default
19807 , o 
19808 \family sans
19809 report (koma-script)
19810 \family default
19811 \InsetSpace \thinspace{}
19812 ), en vez de 
19813 \series bold
19814 caption
19815 \series default
19816  puedes poner la opción 
19817 \series bold
19818 tablecaptionabove
19819 \series default
19820  de la clase de documento, o usar el entorno 
19821 \family sans
19822 Encabezado
19823 \family default
19824 \InsetSpace ~
19825
19826 \family sans
19827 Arriba
19828 \family default
19829  en vez del entorno 
19830 \family sans
19831 Encabezado
19832 \family default
19833 .
19834 \end_layout
19835
19836 \begin_layout Standard
19837 \begin_inset VSpace bigskip
19838 \end_inset
19839
19840 También es posible poner el encabezado junto a una figura o tabla.
19841  Para conseguirlo hay que cargar el paquete LaTeX 
19842 \series bold
19843 sidecap
19844 \series default
19845
19846 \begin_inset LatexCommand index
19847 name "LaTeX-paquetes ! sidecap"
19848
19849 \end_inset
19850
19851  añadiendo en el preámbulo del documento la línea
19852 \end_layout
19853
19854 \begin_layout Standard
19855
19856 \series bold
19857
19858 \backslash
19859 usepackage[option]{sidecap}
19860 \end_layout
19861
19862 \begin_layout Standard
19863 Si no se especifica opción, el encabezado se ubica del lado del margen externo
19864  de la página -- a la derecha en páginas impares, a la izquierda en las
19865  pares.
19866  Puedes cambiar la colocación al margen interno con la opción 
19867 \series bold
19868 innercaption
19869 \series default
19870 .
19871  Para forzar la ubicación siempre a la derecha o a la izquierda, usa las
19872  opciones 
19873 \series bold
19874 rightcaption
19875 \series default
19876  o 
19877 \series bold
19878 leftcaption
19879 \series default
19880 , respectivamente.
19881 \end_layout
19882
19883 \begin_layout Standard
19884 Para situar en LyX el encabezado de un flotante al lado, es necesario añadir
19885  estos comandos al preámbulo del documento:
19886 \end_layout
19887
19888 \begin_layout Standard
19889
19890 \lyxline
19891
19892 \end_layout
19893
19894 \begin_layout Standard
19895
19896 \series bold
19897
19898 \backslash
19899 newcommand{
19900 \backslash
19901 TabBesBeg}{%
19902 \newline
19903
19904 \begin_inset ERT
19905 status collapsed
19906
19907 \begin_layout Standard
19908
19909
19910 \backslash
19911 hphantom{ }
19912 \end_layout
19913
19914 \end_inset
19915
19916
19917 \backslash
19918 let
19919 \backslash
19920 MyTable
19921 \backslash
19922 table
19923 \newline
19924
19925 \begin_inset ERT
19926 status collapsed
19927
19928 \begin_layout Standard
19929
19930
19931 \backslash
19932 hphantom{ }
19933 \end_layout
19934
19935 \end_inset
19936
19937
19938 \backslash
19939 let
19940 \backslash
19941 MyEndtable
19942 \backslash
19943 endtable
19944 \newline
19945
19946 \begin_inset ERT
19947 status collapsed
19948
19949 \begin_layout Standard
19950
19951
19952 \backslash
19953 hphantom{ }
19954 \end_layout
19955
19956 \end_inset
19957
19958
19959 \backslash
19960 renewenvironment{table}{
19961 \backslash
19962 begin{SCtable}}{
19963 \backslash
19964 end{SCtable}}}
19965 \end_layout
19966
19967 \begin_layout Standard
19968
19969 \series bold
19970
19971 \backslash
19972 newcommand{
19973 \backslash
19974 TabBesEnd}{%
19975 \newline
19976
19977 \begin_inset ERT
19978 status collapsed
19979
19980 \begin_layout Standard
19981
19982
19983 \backslash
19984 hphantom{ }
19985 \end_layout
19986
19987 \end_inset
19988
19989
19990 \backslash
19991 let
19992 \backslash
19993 table
19994 \backslash
19995 MyTable
19996 \newline
19997
19998 \begin_inset ERT
19999 status collapsed
20000
20001 \begin_layout Standard
20002
20003
20004 \backslash
20005 hphantom{ }
20006 \end_layout
20007
20008 \end_inset
20009
20010
20011 \backslash
20012 let
20013 \backslash
20014 endtable
20015 \backslash
20016 MyEndtable
20017 \end_layout
20018
20019 \begin_layout Standard
20020
20021 \series bold
20022
20023 \backslash
20024 newcommand{
20025 \backslash
20026 FigBesBeg}{%
20027 \newline
20028
20029 \begin_inset ERT
20030 status collapsed
20031
20032 \begin_layout Standard
20033
20034
20035 \backslash
20036 hphantom{ }
20037 \end_layout
20038
20039 \end_inset
20040
20041
20042 \backslash
20043 let
20044 \backslash
20045 MyFigure
20046 \backslash
20047 f\SpecialChar \textcompwordmark{}
20048 igure
20049 \newline
20050
20051 \begin_inset ERT
20052 status collapsed
20053
20054 \begin_layout Standard
20055
20056
20057 \backslash
20058 hphantom{ }
20059 \end_layout
20060
20061 \end_inset
20062
20063
20064 \backslash
20065 let
20066 \backslash
20067 MyEndf\SpecialChar \textcompwordmark{}
20068 igure
20069 \backslash
20070 endf\SpecialChar \textcompwordmark{}
20071 igure
20072 \newline
20073
20074 \begin_inset ERT
20075 status collapsed
20076
20077 \begin_layout Standard
20078
20079
20080 \backslash
20081 hphantom{ }
20082 \end_layout
20083
20084 \end_inset
20085
20086
20087 \backslash
20088 renewenvironment{f\SpecialChar \textcompwordmark{}
20089 igure}{
20090 \backslash
20091 begin{SCf\SpecialChar \textcompwordmark{}
20092 igure}}{
20093 \backslash
20094 end{SCf\SpecialChar \textcompwordmark{}
20095 igure}}}
20096 \end_layout
20097
20098 \begin_layout Standard
20099
20100 \series bold
20101
20102 \backslash
20103 newcommand{
20104 \backslash
20105 FigBesEnd}{%
20106 \newline
20107
20108 \begin_inset ERT
20109 status collapsed
20110
20111 \begin_layout Standard
20112
20113
20114 \backslash
20115 hphantom{ }
20116 \end_layout
20117
20118 \end_inset
20119
20120
20121 \backslash
20122 let
20123 \backslash
20124 f\SpecialChar \textcompwordmark{}
20125 igure
20126 \backslash
20127 MyFigure
20128 \newline
20129
20130 \begin_inset ERT
20131 status collapsed
20132
20133 \begin_layout Standard
20134
20135
20136 \backslash
20137 hphantom{ }
20138 \end_layout
20139
20140 \end_inset
20141
20142
20143 \backslash
20144 let
20145 \backslash
20146 endf\SpecialChar \textcompwordmark{}
20147 igure
20148 \backslash
20149 MyEndf\SpecialChar \textcompwordmark{}
20150 igure}
20151 \end_layout
20152
20153 \begin_layout Standard
20154
20155 \lyxline
20156
20157 \end_layout
20158
20159 \begin_layout Standard
20160 Estos comandos permiten redefinir los flotantes de modo que el encabezado
20161  aparezca en un lado.
20162  Para figuras flotantes usa el comando
20163 \end_layout
20164
20165 \begin_layout Standard
20166
20167 \series bold
20168
20169 \backslash
20170 FigBesBeg
20171 \end_layout
20172
20173 \begin_layout Standard
20174 en ERT antes del flotante.
20175  Detrás del flotante inserta
20176 \end_layout
20177
20178 \begin_layout Standard
20179
20180 \series bold
20181
20182 \backslash
20183 FigBesEnd
20184 \end_layout
20185
20186 \begin_layout Standard
20187 en ERT para volver a la definición original de flotantes.
20188 \end_layout
20189
20190 \begin_layout Standard
20191 Para tablas flotantes usa los comandos correspondientes
20192 \end_layout
20193
20194 \begin_layout Standard
20195
20196 \series bold
20197
20198 \backslash
20199 TabBesBeg
20200 \series default
20201  y 
20202 \series bold
20203
20204 \backslash
20205 TabBesEnd
20206 \end_layout
20207
20208 \begin_layout Standard
20209 La figura\InsetSpace ~
20210
20211 \begin_inset LatexCommand ref
20212 reference "fig:encab-al-lado"
20213
20214 \end_inset
20215
20216  y la tabla\InsetSpace ~
20217
20218 \begin_inset LatexCommand ref
20219 reference "tab:encab-al-lado"
20220
20221 \end_inset
20222
20223  son ejemplos en los que el encabezado se sitúa al lado.
20224 \end_layout
20225
20226 \begin_layout Standard
20227 En los ejemplos puedes ver que el texto del encabezado aparece encima del
20228  flotante en tablas flotantes y debajo en las figuras flotantes.
20229  Para cambiarlo, puedes usar el comando
20230 \end_layout
20231
20232 \begin_layout Standard
20233
20234 \series bold
20235
20236 \backslash
20237 sidecaptionvpos{tipo de flotante}{colocación}
20238 \end_layout
20239
20240 \begin_layout Standard
20241 en el preámbulo o en ERT antes del flotante.
20242  El tipo de flotante es 
20243 \family sans
20244 figure
20245 \family default
20246  o 
20247 \family sans
20248 table
20249 \family default
20250 , la colocación puede ser 
20251 \begin_inset Quotes eld
20252 \end_inset
20253
20254
20255 \family sans
20256 t
20257 \family default
20258
20259 \begin_inset Quotes erd
20260 \end_inset
20261
20262  por 
20263 \begin_inset Quotes eld
20264 \end_inset
20265
20266 top
20267 \begin_inset Quotes erd
20268 \end_inset
20269
20270  (arriba), 
20271 \begin_inset Quotes eld
20272 \end_inset
20273
20274
20275 \family sans
20276 c
20277 \family default
20278
20279 \begin_inset Quotes erd
20280 \end_inset
20281
20282  por 
20283 \begin_inset Quotes eld
20284 \end_inset
20285
20286 center
20287 \begin_inset Quotes erd
20288 \end_inset
20289
20290  (centro), o 
20291 \begin_inset Quotes eld
20292 \end_inset
20293
20294
20295 \family sans
20296 b
20297 \family default
20298
20299 \begin_inset Quotes erd
20300 \end_inset
20301
20302  por 
20303 \begin_inset Quotes eld
20304 \end_inset
20305
20306 bottom
20307 \begin_inset Quotes erd
20308 \end_inset
20309
20310  (abajo).
20311  Para tener, por ejemplo, el encabezado de figuras flotantes verticalmente
20312  centrado, usa el comando
20313 \end_layout
20314
20315 \begin_layout Standard
20316
20317 \series bold
20318
20319 \backslash
20320 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20321 igure}{c}
20322 \end_layout
20323
20324 \begin_layout Standard
20325 Esto se ha hecho en la figura\InsetSpace ~
20326
20327 \begin_inset LatexCommand ref
20328 reference "fig:encab-al-lado-de-fig"
20329
20330 \end_inset
20331
20332 .
20333 \end_layout
20334
20335 \begin_layout Standard
20336 \begin_inset VSpace defskip
20337 \end_inset
20338
20339 Más información sobre el paquete 
20340 \series bold
20341 sidecap
20342 \series default
20343  en su documentación 
20344 \begin_inset LatexCommand cite
20345 key "sidecap"
20346
20347 \end_inset
20348
20349 .
20350 \end_layout
20351
20352 \begin_layout Standard
20353 \begin_inset Note Greyedout
20354 status open
20355
20356 \begin_layout Standard
20357
20358 \series bold
20359 Nota:
20360 \series default
20361  El paquete LaTeX 
20362 \series bold
20363 hypcap
20364 \series default
20365
20366 \begin_inset LatexCommand index
20367 name "LaTeX-paquetes ! hypcap"
20368
20369 \end_inset
20370
20371 , descrito en la sección\InsetSpace ~
20372
20373 \begin_inset LatexCommand ref
20374 reference "sub:Colocación-de-Referencias"
20375
20376 \end_inset
20377
20378 , no afecta a flotantes con el encabezado al lado.
20379 \end_layout
20380
20381 \end_inset
20382
20383
20384 \end_layout
20385
20386 \begin_layout Standard
20387 \begin_inset ERT
20388 status collapsed
20389
20390 \begin_layout Standard
20391
20392
20393 \backslash
20394 FigBesBeg 
20395 \end_layout
20396
20397 \end_inset
20398
20399
20400 \end_layout
20401
20402 \begin_layout Standard
20403 \begin_inset Float figure
20404 wide false
20405 sideways false
20406 status open
20407
20408 \begin_layout Standard
20409 \begin_inset Graphics
20410         filename ../clipart/escher-lsd.eps
20411         scale 75
20412
20413 \end_inset
20414
20415
20416 \end_layout
20417
20418 \begin_layout Standard
20419 \begin_inset Caption
20420
20421 \begin_layout Standard
20422 \begin_inset LatexCommand label
20423 name "fig:encab-al-lado"
20424
20425 \end_inset
20426
20427 Encabezado al lado de una figura.
20428 \end_layout
20429
20430 \end_inset
20431
20432
20433 \end_layout
20434
20435 \end_inset
20436
20437
20438 \end_layout
20439
20440 \begin_layout Standard
20441 \begin_inset ERT
20442 status collapsed
20443
20444 \begin_layout Standard
20445
20446
20447 \backslash
20448 TabBesBeg 
20449 \end_layout
20450
20451 \end_inset
20452
20453
20454 \end_layout
20455
20456 \begin_layout Standard
20457 \begin_inset Float table
20458 wide false
20459 sideways false
20460 status open
20461
20462 \begin_layout Standard
20463 \begin_inset Caption
20464
20465 \begin_layout Standard
20466 \begin_inset LatexCommand label
20467 name "tab:encab-al-lado"
20468
20469 \end_inset
20470
20471 Esto es un encabezado al lado de una tabla.
20472 \end_layout
20473
20474 \end_inset
20475
20476
20477 \end_layout
20478
20479 \begin_layout Standard
20480 \begin_inset Tabular
20481 <lyxtabular version="3" rows="4" columns="5">
20482 <features>
20483 <column alignment="center" valignment="top" leftline="true" width="0">
20484 <column alignment="center" valignment="top" leftline="true" width="0">
20485 <column alignment="center" valignment="top" leftline="true" width="0">
20486 <column alignment="center" valignment="top" leftline="true" width="0">
20487 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20488 <row topline="true">
20489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20490 \begin_inset Text
20491
20492 \begin_layout Standard
20493 a
20494 \end_layout
20495
20496 \end_inset
20497 </cell>
20498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20499 \begin_inset Text
20500
20501 \begin_layout Standard
20502
20503 \end_layout
20504
20505 \end_inset
20506 </cell>
20507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20508 \begin_inset Text
20509
20510 \begin_layout Standard
20511 b
20512 \end_layout
20513
20514 \end_inset
20515 </cell>
20516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20517 \begin_inset Text
20518
20519 \begin_layout Standard
20520
20521 \end_layout
20522
20523 \end_inset
20524 </cell>
20525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20526 \begin_inset Text
20527
20528 \begin_layout Standard
20529 c
20530 \end_layout
20531
20532 \end_inset
20533 </cell>
20534 </row>
20535 <row topline="true">
20536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20537 \begin_inset Text
20538
20539 \begin_layout Standard
20540
20541 \end_layout
20542
20543 \end_inset
20544 </cell>
20545 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20546 \begin_inset Text
20547
20548 \begin_layout Standard
20549 d
20550 \end_layout
20551
20552 \end_inset
20553 </cell>
20554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20555 \begin_inset Text
20556
20557 \begin_layout Standard
20558
20559 \end_layout
20560
20561 \end_inset
20562 </cell>
20563 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20564 \begin_inset Text
20565
20566 \begin_layout Standard
20567 e
20568 \end_layout
20569
20570 \end_inset
20571 </cell>
20572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20573 \begin_inset Text
20574
20575 \begin_layout Standard
20576
20577 \end_layout
20578
20579 \end_inset
20580 </cell>
20581 </row>
20582 <row topline="true">
20583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20584 \begin_inset Text
20585
20586 \begin_layout Standard
20587 f
20588 \end_layout
20589
20590 \end_inset
20591 </cell>
20592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20593 \begin_inset Text
20594
20595 \begin_layout Standard
20596
20597 \end_layout
20598
20599 \end_inset
20600 </cell>
20601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20602 \begin_inset Text
20603
20604 \begin_layout Standard
20605 g
20606 \end_layout
20607
20608 \end_inset
20609 </cell>
20610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20611 \begin_inset Text
20612
20613 \begin_layout Standard
20614
20615 \end_layout
20616
20617 \end_inset
20618 </cell>
20619 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20620 \begin_inset Text
20621
20622 \begin_layout Standard
20623 h
20624 \end_layout
20625
20626 \end_inset
20627 </cell>
20628 </row>
20629 <row topline="true" bottomline="true">
20630 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20631 \begin_inset Text
20632
20633 \begin_layout Standard
20634
20635 \end_layout
20636
20637 \end_inset
20638 </cell>
20639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20640 \begin_inset Text
20641
20642 \begin_layout Standard
20643 i
20644 \end_layout
20645
20646 \end_inset
20647 </cell>
20648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20649 \begin_inset Text
20650
20651 \begin_layout Standard
20652
20653 \end_layout
20654
20655 \end_inset
20656 </cell>
20657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20658 \begin_inset Text
20659
20660 \begin_layout Standard
20661 j
20662 \end_layout
20663
20664 \end_inset
20665 </cell>
20666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20667 \begin_inset Text
20668
20669 \begin_layout Standard
20670
20671 \end_layout
20672
20673 \end_inset
20674 </cell>
20675 </row>
20676 </lyxtabular>
20677
20678 \end_inset
20679
20680
20681 \end_layout
20682
20683 \end_inset
20684
20685
20686 \end_layout
20687
20688 \begin_layout Standard
20689 \begin_inset ERT
20690 status collapsed
20691
20692 \begin_layout Standard
20693
20694
20695 \backslash
20696 TabBesEnd
20697 \end_layout
20698
20699 \end_inset
20700
20701
20702 \end_layout
20703
20704 \begin_layout Standard
20705 \begin_inset ERT
20706 status collapsed
20707
20708 \begin_layout Standard
20709
20710
20711 \backslash
20712 sidecaptionvpos{figure}{c}
20713 \end_layout
20714
20715 \end_inset
20716
20717
20718 \begin_inset Float figure
20719 wide false
20720 sideways false
20721 status open
20722
20723 \begin_layout Standard
20724 \begin_inset Graphics
20725         filename ../clipart/escher-lsd.eps
20726         scale 75
20727
20728 \end_inset
20729
20730
20731 \end_layout
20732
20733 \begin_layout Standard
20734 \begin_inset Caption
20735
20736 \begin_layout Standard
20737 \begin_inset LatexCommand label
20738 name "fig:encab-al-lado-de-fig"
20739
20740 \end_inset
20741
20742 Encabezado junto a una figura centrado verticalmente.
20743 \end_layout
20744
20745 \end_inset
20746
20747
20748 \end_layout
20749
20750 \end_inset
20751
20752
20753 \end_layout
20754
20755 \begin_layout Standard
20756 \begin_inset ERT
20757 status collapsed
20758
20759 \begin_layout Standard
20760
20761
20762 \backslash
20763 FigBesEnd
20764 \end_layout
20765
20766 \end_inset
20767
20768
20769 \end_layout
20770
20771 \begin_layout Section
20772 Lista de Flotantes
20773 \begin_inset LatexCommand label
20774 name "sec:Lista-de-Flotantes"
20775
20776 \end_inset
20777
20778
20779 \begin_inset LatexCommand index
20780 name "Flotantes ! Lista"
20781
20782 \end_inset
20783
20784
20785 \end_layout
20786
20787 \begin_layout Standard
20788 Igual que en el índice general se listan las secciones del documento, hay
20789  listas para todos los tipos de flotantes, como las figuras.
20790  Se pueden insertar mediante los submenús 
20791 \family sans
20792 Insertar\SpecialChar \menuseparator
20793 Lista / IG
20794 \family default
20795 .
20796 \end_layout
20797
20798 \begin_layout Standard
20799 Las entradas de la lista son los encabezados del flotante o su título corto,
20800  el número de flotante, y el número de la página del documento en la que
20801  aparecen.
20802 \end_layout
20803
20804 \begin_layout Standard
20805 Puedes encontrar las listas de figuras y tablas al final de este documento.
20806 \end_layout
20807
20808 \begin_layout Chapter
20809 Notas
20810 \end_layout
20811
20812 \begin_layout Section
20813 Notas en 
20814 \begin_inset ERT
20815 status collapsed
20816
20817 \begin_layout Standard
20818
20819
20820 \backslash
20821 texorpdfstring{
20822 \end_layout
20823
20824 \end_inset
20825
20826 LyX
20827 \begin_inset ERT
20828 status collapsed
20829
20830 \begin_layout Standard
20831
20832 }{LyX}
20833 \end_layout
20834
20835 \end_inset
20836
20837  
20838 \begin_inset LatexCommand label
20839 name "sec:Notas-en-LyX"
20840
20841 \end_inset
20842
20843
20844 \begin_inset LatexCommand index
20845 name "Notas ! Notas en LyX"
20846
20847 \end_inset
20848
20849
20850 \begin_inset Note Note
20851 status collapsed
20852
20853 \begin_layout Standard
20854 El comando 
20855 \backslash
20856 texorpdfstring es suministrado por el paquete LaTeX hyperref para evitar
20857  que los enlaces se muestren erróneamente en los marcadores PDF.
20858  Para más información sobre esto mira en 
20859 \begin_inset LatexCommand cite
20860 key "hyperref"
20861
20862 \end_inset
20863
20864 .
20865 \end_layout
20866
20867 \end_inset
20868
20869
20870 \end_layout
20871
20872 \begin_layout Standard
20873 Las notas se insertan con el botón 
20874 \begin_inset Graphics
20875         filename ../../images/note-insert.xpm
20876         scale 85
20877
20878 \end_inset
20879
20880  o el menú 
20881 \family sans
20882 Insertar\SpecialChar \menuseparator
20883 Nota
20884 \family default
20885 .
20886  Hay tres tipos de notas:
20887 \end_layout
20888
20889 \begin_layout Description
20890 Nota\InsetSpace ~
20891 LyX Este tipo es para notas internas que no han de aparecer en la salida.
20892  Su cuadro se muestra como este:
20893 \newline
20894
20895 \newline
20896
20897 \begin_inset Graphics
20898         filename clipart/NotaLyXImagenQt4.png
20899         display none
20900         scale 85
20901
20902 \end_inset
20903
20904  
20905 \begin_inset Note Note
20906 status collapsed
20907
20908 \begin_layout Standard
20909 Este es un texto en un recuadro que no se muestra en la salida.
20910 \end_layout
20911
20912 \end_inset
20913
20914
20915 \end_layout
20916
20917 \begin_layout Description
20918 Comentario Esta nota tampoco se muestra en la salida pero aparece como un
20919  comentario de LaTeX, cuando exportas el documento a LaTeX via el menú 
20920 \family sans
20921 Archivo\SpecialChar \menuseparator
20922 Exportar\SpecialChar \menuseparator
20923 LaTeX (pdflatex) / LaTeX (plain)
20924 \family default
20925 .
20926  Su recuadro se ve así:
20927 \newline
20928
20929 \newline
20930
20931 \begin_inset Graphics
20932         filename clipart/ComentNotaImagenQt4.png
20933         display none
20934         scale 85
20935
20936 \end_inset
20937
20938  
20939 \begin_inset Note Comment
20940 status collapsed
20941
20942 \begin_layout Standard
20943 Una nota comentario que solo aparece como comentario en archivos LaTeX.
20944 \end_layout
20945
20946 \end_inset
20947
20948
20949 \end_layout
20950
20951 \begin_layout Description
20952 Resaltado\InsetSpace ~
20953 en\InsetSpace ~
20954 gris Esta nota aparece en la salida como texto resaltado en gris.
20955  Su recuadro se parece a este:
20956 \newline
20957
20958 \newline
20959
20960 \begin_inset Graphics
20961         filename clipart/GrisNotaImagenQt4.png
20962         display none
20963         scale 85
20964
20965 \end_inset
20966
20967
20968 \newline
20969
20970 \begin_inset ERT
20971 status collapsed
20972
20973 \begin_layout Standard
20974
20975
20976 \backslash
20977 renewenvironment{lyxgreyedout}
20978 \end_layout
20979
20980 \begin_layout Standard
20981
20982 {
20983 \backslash
20984 textcolor[gray]{0.8}
20985 \backslash
20986 bgroup}{
20987 \backslash
20988 egroup}
20989 \end_layout
20990
20991 \end_inset
20992
20993
20994 \begin_inset Note Greyedout
20995 status open
20996
20997 \begin_layout Standard
20998 Este es el texto
20999 \begin_inset Foot
21000 status open
21001
21002 \begin_layout Standard
21003 Esto es un ejemplo de nota al pie en una nota resaltada en gris.
21004 \end_layout
21005
21006 \end_inset
21007
21008  de un comentario que se muestra resaltado en gris.
21009 \end_layout
21010
21011 \end_inset
21012
21013
21014 \begin_inset ERT
21015 status collapsed
21016
21017 \begin_layout Standard
21018
21019
21020 \backslash
21021 renewenvironment{lyxgreyedout}
21022 \end_layout
21023
21024 \begin_layout Standard
21025
21026 {
21027 \backslash
21028 textcolor{blue}
21029 \backslash
21030 bgroup}{
21031 \backslash
21032 egroup}
21033 \end_layout
21034
21035 \end_inset
21036
21037
21038 \begin_inset Note Note
21039 status collapsed
21040
21041 \begin_layout Standard
21042 La nota resaltada en gris se ha redefinido aquí para mostrarla con la definición
21043  original de LyX, ya que en el preámbulo de este documento se han redefinido
21044  estas notas para que salgan en azul, como se indica más adelante.
21045 \end_layout
21046
21047 \end_inset
21048
21049
21050 \newline
21051
21052 \newline
21053 Como se ve en el ejemplo, la primera línea de las notas resaltadas en gris
21054  está un poco sangrada, y por otra parte pueden tener notas al pie.
21055 \end_layout
21056
21057 \begin_layout Description
21058 Enmarcado Este tipo de notas aparecerá en la salida como un texto enmarcado.
21059  Su recuadro se verá como este:
21060 \newline
21061
21062 \newline
21063
21064 \family roman
21065 \series medium
21066
21067 \begin_inset Graphics
21068         filename clipart/NotaEnmarcadaImg.png
21069         display none
21070
21071 \end_inset
21072
21073
21074 \family default
21075 \series default
21076  
21077 \family roman
21078 \series medium
21079
21080 \begin_inset Note Framed
21081 status open
21082
21083 \begin_layout Standard
21084
21085 \family roman
21086 Este texto en un cuadro de nota se verá enmarcado en la salida.
21087 \end_layout
21088
21089 \end_inset
21090
21091
21092 \family default
21093 \series default
21094  
21095 \family roman
21096 \series medium
21097
21098 \family default
21099 \series default
21100 diferencia de los cuadros enmarcados
21101 \begin_inset Foot
21102 status collapsed
21103
21104 \begin_layout Standard
21105 Los cuadros enmarcados se describen en la sección\InsetSpace ~
21106
21107 \begin_inset LatexCommand ref
21108 reference "sec:Cuadros-Enmarcados"
21109
21110 \end_inset
21111
21112
21113 \end_layout
21114
21115 \end_inset
21116
21117 , este marco emplea siempre la anchura total de página y la nota va en su
21118  propio párrafo.
21119 \end_layout
21120
21121 \begin_layout Description
21122 Sombreado Este tipo de nota se verá en la salida con un fondo de color rojo.
21123  Su recuadro se verá como este:
21124 \newline
21125
21126 \newline
21127
21128 \family roman
21129 \series medium
21130
21131 \begin_inset Graphics
21132         filename clipart/NotaSombreadaImg.png
21133         display none
21134
21135 \end_inset
21136
21137  
21138 \begin_inset Note Shaded
21139 status open
21140
21141 \begin_layout Standard
21142
21143 \family roman
21144 Este texto en un cuadro de nota se verá en la salida sobre fondo en rojo.
21145 \end_layout
21146
21147 \end_inset
21148
21149  A diferencia de los cuadros coloreados
21150 \family default
21151 \series default
21152
21153 \begin_inset Foot
21154 status collapsed
21155
21156 \begin_layout Standard
21157 Los cuadros coloreados se describen en la sección\InsetSpace ~
21158
21159 \begin_inset LatexCommand ref
21160 reference "sec:Cuadros-Coloreados"
21161
21162 \end_inset
21163
21164 .
21165 \end_layout
21166
21167 \end_inset
21168
21169 , este cuadro de nota siempre usa toda la anchura de página y va en su propio
21170  párrafo.
21171 \end_layout
21172
21173 \begin_layout Standard
21174 \begin_inset VSpace bigskip
21175 \end_inset
21176
21177 Si usas el botón de la barra de herramientas para insertar notas, se inserta
21178  una 
21179 \family sans
21180 Nota\InsetSpace ~
21181 LyX
21182 \family default
21183 .
21184  Puedes cambiar entre los tres tipos de nota con click-derecha sobre el
21185  recuadro.
21186  
21187 \family roman
21188 \series medium
21189 \bar no
21190 Si quieres convertir un texto presente a nota, márcalo y pincha sobre el
21191  botón de herramienta nota
21192 \family default
21193 \series default
21194 \bar default
21195 .
21196 \end_layout
21197
21198 \begin_layout Standard
21199 \begin_inset VSpace bigskip
21200 \end_inset
21201
21202 Se puede cambiar el color del resaltado en gris poniendo en el preámbulo
21203  el comando:
21204 \end_layout
21205
21206 \begin_layout Standard
21207
21208 \series bold
21209
21210 \backslash
21211 renewenvironment{lyxgreyedout}
21212 \newline
21213
21214 \begin_inset ERT
21215 status collapsed
21216
21217 \begin_layout Standard
21218
21219
21220 \backslash
21221 hphantom{ }
21222 \end_layout
21223
21224 \end_inset
21225
21226 {
21227 \backslash
21228 textcolor{color}
21229 \backslash
21230 bgroup}{
21231 \backslash
21232 egroup}
21233 \end_layout
21234
21235 \begin_layout Standard
21236 Los colores disponibles y el método para definir nuestros propios colores
21237  se explica en la sección\InsetSpace ~
21238
21239 \begin_inset LatexCommand ref
21240 reference "sec:Tablas-Coloreadas"
21241
21242 \end_inset
21243
21244 .
21245 \end_layout
21246
21247 \begin_layout Standard
21248 Las notas en azul en este documento se han hecho con notas resaltado en
21249  gris definiendo el color del texto en azul.
21250 \end_layout
21251
21252 \begin_layout Standard
21253 \begin_inset VSpace bigskip
21254 \end_inset
21255
21256
21257 \end_layout
21258
21259 \begin_layout Standard
21260 El estilo de texto en las notas de tipo 
21261 \family sans
21262 Enmarcado
21263 \family default
21264  y 
21265 \family sans
21266 Sombreado
21267 \family default
21268  se puede establecer en el diálogo 
21269 \family sans
21270 Estilo del texto.
21271 \end_layout
21272
21273 \begin_layout Standard
21274 El grosor predeterminado del marco en las notas 
21275 \family sans
21276 Enmarcadas
21277 \family default
21278  es 0.4\InsetSpace \thinspace{}
21279 pt; se puede cambiar con el comando 
21280 \backslash
21281
21282 \series bold
21283 FrameRule
21284 \series default
21285 .
21286  El espacio entre el contenido y el marco es 9
21287 \series bold
21288 \InsetSpace \thinspace{}
21289
21290 \series default
21291 pt por defecto; se puede cambiar con 
21292 \series bold
21293
21294 \backslash
21295 FrameSep
21296 \series default
21297 .
21298  Por ejemplo, el marco de la siguiente nota 
21299 \family sans
21300 Enmarcada
21301 \family default
21302  está hecho con los comandos ERT
21303 \series bold
21304  
21305 \end_layout
21306
21307 \begin_layout Standard
21308
21309 \series bold
21310
21311 \backslash
21312 FrameRule 5pt 
21313 \backslash
21314 FrameSep 0.5cm
21315 \end_layout
21316
21317 \begin_layout Standard
21318 \begin_inset ERT
21319 status collapsed
21320
21321 \begin_layout Standard
21322
21323
21324 \backslash
21325 FrameRule 5pt 
21326 \backslash
21327 FrameSep 0.5cm
21328 \end_layout
21329
21330 \end_inset
21331
21332
21333 \begin_inset Note Framed
21334 status open
21335
21336 \begin_layout Standard
21337 Texto en una nota 
21338 \family sans
21339 Enmarcada
21340 \family default
21341 .
21342 \end_layout
21343
21344 \end_inset
21345
21346
21347 \begin_inset ERT
21348 status collapsed
21349
21350 \begin_layout Standard
21351
21352
21353 \backslash
21354 FrameRule 0.4pt 
21355 \backslash
21356 FrameSep 9pt
21357 \end_layout
21358
21359 \end_inset
21360
21361
21362 \end_layout
21363
21364 \begin_layout Standard
21365 \begin_inset VSpace bigskip
21366 \end_inset
21367
21368
21369 \end_layout
21370
21371 \begin_layout Standard
21372 Para las notas 
21373 \family sans
21374 Sombreadas
21375 \family default
21376  el espacio entre el contenido y el borde es 3\InsetSpace \thinspace{}
21377 pt por defecto; se puede cambiar
21378  con 
21379 \series bold
21380
21381 \backslash
21382 fboxsep
21383 \series default
21384 .
21385 \newline
21386 El color rojo predeterminado se puede cambiar con el comando 
21387 \series bold
21388
21389 \backslash
21390 def\SpecialChar \textcompwordmark{}
21391 inecolor{shadebox}
21392 \series default
21393 .
21394  El esquema del comando
21395 \lang english
21396  
21397 \series bold
21398 \lang spanish
21399
21400 \backslash
21401 def\SpecialChar \textcompwordmark{}
21402 inecolor
21403 \series default
21404  se explica en la sección\InsetSpace ~
21405
21406 \begin_inset LatexCommand ref
21407 reference "sec:Tablas-Coloreadas"
21408
21409 \end_inset
21410
21411
21412 \begin_inset Foot
21413 status collapsed
21414
21415 \begin_layout Standard
21416 Observa que 
21417 \series bold
21418
21419 \backslash
21420 def\SpecialChar \textcompwordmark{}
21421 inecolor 
21422 \series default
21423 requiere el paquete LaTeX 
21424 \series bold
21425 color
21426 \series default
21427  en el preámbulo,  véase la sección
21428 \series bold
21429 \InsetSpace ~
21430
21431 \begin_inset LatexCommand ref
21432 reference "sec:Cuadros-Coloreados"
21433
21434 \end_inset
21435
21436
21437 \series default
21438 .
21439
21440 \series bold
21441  
21442 \end_layout
21443
21444 \end_inset
21445
21446 .
21447 \end_layout
21448
21449 \begin_layout Standard
21450 Por ejemplo, la siguiente nota 
21451 \family sans
21452 Sombreada
21453 \family default
21454  se ha hecho con los comandos ERT
21455 \end_layout
21456
21457 \begin_layout Standard
21458
21459 \series bold
21460
21461 \backslash
21462 fboxsep 0.5cm
21463 \lang english
21464
21465 \newline
21466
21467 \lang spanish
21468
21469 \backslash
21470 def\SpecialChar \textcompwordmark{}
21471 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21472 \end_layout
21473
21474 \begin_layout Standard
21475 \begin_inset ERT
21476 status open
21477
21478 \begin_layout Standard
21479
21480
21481 \backslash
21482 fboxsep 0.5cm
21483 \end_layout
21484
21485 \end_inset
21486
21487
21488 \begin_inset ERT
21489 status open
21490
21491 \begin_layout Standard
21492
21493
21494 \backslash
21495 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21496 \end_layout
21497
21498 \end_inset
21499
21500
21501 \begin_inset Note Shaded
21502 status open
21503
21504 \begin_layout Standard
21505
21506 \color yellow
21507 Texto amarillo en una nota 
21508 \family sans
21509 Sombreada
21510 \family default
21511  \InsetSpace ~
21512 con fondo verde oscuro.
21513 \end_layout
21514
21515 \end_inset
21516
21517
21518 \begin_inset ERT
21519 status collapsed
21520
21521 \begin_layout Standard
21522
21523
21524 \backslash
21525 fboxsep 3pt
21526 \end_layout
21527
21528 \end_inset
21529
21530
21531 \begin_inset ERT
21532 status collapsed
21533
21534 \begin_layout Standard
21535
21536
21537 \backslash
21538 definecolor{shadecolor}{rgb}{1,0,0}
21539 \end_layout
21540
21541 \end_inset
21542
21543
21544 \end_layout
21545
21546 \begin_layout Section
21547 Notas al pie
21548 \begin_inset LatexCommand label
21549 name "sec:Notas-al-pie"
21550
21551 \end_inset
21552
21553
21554 \begin_inset LatexCommand index
21555 name "Notas ! al Pie"
21556
21557 \end_inset
21558
21559
21560 \begin_inset LatexCommand index
21561 name "Notas al Pie"
21562
21563 \end_inset
21564
21565
21566 \end_layout
21567
21568 \begin_layout Standard
21569 Las notas al pie se insertan con el botón 
21570 \begin_inset Graphics
21571         filename ../../images/footnote-insert.xpm
21572         scale 85
21573
21574 \end_inset
21575
21576  o el menú 
21577 \family sans
21578 Insertar\SpecialChar \menuseparator
21579 Nota\InsetSpace ~
21580 al\InsetSpace ~
21581 pie
21582 \family default
21583 .
21584  
21585 \family roman
21586 \series medium
21587 \bar no
21588 Aparece un recuadro como este:
21589 \family default
21590 \series default
21591 \bar default
21592  
21593 \begin_inset Graphics
21594         filename clipart/notapieQt4.png
21595         scale 80
21596
21597 \end_inset
21598
21599  
21600 \family roman
21601 \series medium
21602 \bar no
21603 donde puedes introducir el texto.
21604  Si quieres convertir un texto existente en nota al pie, márcalo y pincha
21605  sobre el
21606 \family default
21607 \series default
21608 \bar default
21609  
21610 \family roman
21611 \series medium
21612 \bar no
21613 botón
21614 \family default
21615 \series default
21616 \bar default
21617 .
21618 \end_layout
21619
21620 \begin_layout Standard
21621 Aquí hay un ejemplo de nota al pie:
21622 \family roman
21623 \series medium
21624 \bar no
21625
21626 \begin_inset Foot
21627 status open
21628
21629 \begin_layout Standard
21630 \begin_inset LatexCommand label
21631 name "pie:Esto-es-una"
21632
21633 \end_inset
21634
21635 Ejemplo de nota al pie.
21636 \end_layout
21637
21638 \end_inset
21639
21640
21641 \family default
21642 \series default
21643 \bar default
21644
21645 \begin_inset ERT
21646 status collapsed
21647
21648 \begin_layout Standard
21649
21650
21651 \backslash
21652 newcounter{MyRepeatFoot}
21653 \end_layout
21654
21655 \begin_layout Standard
21656
21657
21658 \backslash
21659 setcounter{MyRepeatFoot}{
21660 \backslash
21661 thefootnote}
21662 \end_layout
21663
21664 \end_inset
21665
21666
21667 \end_layout
21668
21669 \begin_layout Standard
21670 En la salida, el pie se muestra como número exponente en el lugar del texto
21671  donde se coloca el recuadro.
21672  El texto se coloca al final de la página actual.
21673  Los números de las notas son calculados por LaTeX, y son consecutivos.
21674  Si comienza o no el recuento en cada capítulo depende de la clase de documento.
21675 \end_layout
21676
21677 \begin_layout Standard
21678 Las notas al pie pueden referenciarse como flotantes: Inserta una etiqueta
21679  en la nota y pon una referencia cruzada a esta etiqueta en el texto como
21680  se describe en la sección\InsetSpace ~
21681
21682 \begin_inset LatexCommand ref
21683 reference "sec:Referencias-a-Flotantes"
21684
21685 \end_inset
21686
21687 .
21688 \newline
21689 Esto es una referencia cruzada a la Nota al pie\InsetSpace ~
21690
21691 \begin_inset LatexCommand ref
21692 reference "pie:Esto-es-una"
21693
21694 \end_inset
21695
21696 .
21697 \newline
21698
21699 \begin_inset Note Greyedout
21700 status collapsed
21701
21702 \begin_layout Standard
21703
21704 \series bold
21705 Nota:
21706 \series default
21707  LyX no suministra prefijos para etiquetas en notas al pie, así que has
21708  de insertar un prefijo, p.\InsetSpace \thinspace{}
21709 e.\InsetSpace ~
21710
21711 \family sans
21712
21713 \begin_inset Quotes eld
21714 \end_inset
21715
21716 pie:
21717 \family default
21718
21719 \begin_inset Quotes erd
21720 \end_inset
21721
21722  manualmente cuando quieras usar el estilo 
21723 \family sans
21724 Referencia\InsetSpace ~
21725 con\InsetSpace ~
21726 formato
21727 \family default
21728 .
21729 \end_layout
21730
21731 \end_inset
21732
21733
21734 \end_layout
21735
21736 \begin_layout Standard
21737 \begin_inset VSpace defskip
21738 \end_inset
21739
21740 Para poner notas al pie en tablas, tienes que usar minipáginas, ver sección\InsetSpace ~
21741
21742 \begin_inset LatexCommand ref
21743 reference "sec:Minipáginas"
21744
21745 \end_inset
21746
21747 .
21748  Los pies en tablas largas en la sección\InsetSpace ~
21749
21750 \begin_inset LatexCommand ref
21751 reference "sub:Notas-al-pie-en-Tablas-Largas"
21752
21753 \end_inset
21754
21755 .
21756 \end_layout
21757
21758 \begin_layout Standard
21759 \begin_inset VSpace defskip
21760 \end_inset
21761
21762 Para crear solo una marca para una nota al pie, puedes usar el comando 
21763 \series bold
21764
21765 \backslash
21766 footnotemark[número]
21767 \series default
21768  en ERT.
21769  Esto se emplea si tienes la misma anotación varias veces en el texto pero
21770  no quieres imprimir el pie cada vez.
21771 \newline
21772 Como no sabes el número del pie que
21773  se repite mientras escribes el texto, tienes que guardarlo.
21774  Para el siguiente ejemplo de marca de pie, se han insertado estos comandos
21775  en ERT detrás de Nota\InsetSpace ~
21776 al\InsetSpace ~
21777 pie\InsetSpace ~
21778
21779 \begin_inset LatexCommand ref
21780 reference "pie:Esto-es-una"
21781
21782 \end_inset
21783
21784  para guardar el número de pie:
21785 \end_layout
21786
21787 \begin_layout Standard
21788
21789 \series bold
21790
21791 \backslash
21792 newcounter{MyRepeatFoot}
21793 \newline
21794
21795 \backslash
21796 setcounter{MyRepeatFoot}{
21797 \backslash
21798 thefootnote}
21799 \end_layout
21800
21801 \begin_layout Standard
21802 La marca de pie se crea entonces con el comando:
21803 \end_layout
21804
21805 \begin_layout Standard
21806
21807 \series bold
21808
21809 \backslash
21810 footnotemark[
21811 \backslash
21812 theMyRepeatFoot]
21813 \end_layout
21814
21815 \begin_layout Standard
21816 Aquí hay un ejemplo de marca de pie:
21817 \family roman
21818 \series medium
21819 \bar no
21820
21821 \begin_inset ERT
21822 status collapsed
21823
21824 \begin_layout Standard
21825
21826
21827 \backslash
21828 footnotemark[
21829 \backslash
21830 theMyRepeatFoot]
21831 \end_layout
21832
21833 \end_inset
21834
21835
21836 \end_layout
21837
21838 \begin_layout Subsection
21839 Numeración de Notas al Pie
21840 \begin_inset LatexCommand label
21841 name "sub:Numeración-de-Notas-al-Pie"
21842
21843 \end_inset
21844
21845
21846 \begin_inset LatexCommand index
21847 name "Notas al Pie ! Numeración"
21848
21849 \end_inset
21850
21851
21852 \end_layout
21853
21854 \begin_layout Standard
21855 Si quieres numerar notas al pie en el esquema 
21856 \begin_inset Quotes eld
21857 \end_inset
21858
21859 capítulo.nota
21860 \begin_inset Quotes erd
21861 \end_inset
21862
21863 , añade el siguiente comando al preámbulo del documento:
21864 \end_layout
21865
21866 \begin_layout Standard
21867
21868 \series bold
21869
21870 \backslash
21871 numberwithin{footnote}{chapter}
21872 \end_layout
21873
21874 \begin_layout Standard
21875 Para poder usar el comando 
21876 \series bold
21877
21878 \backslash
21879 numberwithin
21880 \series default
21881 , marca la opción 
21882 \family sans
21883 Usar
21884 \family default
21885 \InsetSpace ~
21886
21887 \family sans
21888 el
21889 \family default
21890 \InsetSpace ~
21891
21892 \family sans
21893 paquete
21894 \family default
21895 \InsetSpace ~
21896
21897 \family sans
21898 AMS
21899 \family default
21900  en la pestaña 
21901 \family sans
21902 Ecuaciones
21903 \family default
21904  de la configuración del documento.
21905 \end_layout
21906
21907 \begin_layout Standard
21908 \begin_inset ERT
21909 status collapsed
21910
21911 \begin_layout Standard
21912
21913
21914 \backslash
21915 numberwithin{footnote}{chapter}
21916 \end_layout
21917
21918 \end_inset
21919
21920 Esto es otro ejemplo de nota al pie:
21921 \series bold
21922
21923 \begin_inset Foot
21924 status open
21925
21926 \begin_layout Standard
21927 Nota al pie numerada en el esquema 
21928 \begin_inset Quotes eld
21929 \end_inset
21930
21931 capítulo.nota
21932 \begin_inset Quotes erd
21933 \end_inset
21934
21935 .
21936 \end_layout
21937
21938 \end_inset
21939
21940
21941 \series default
21942
21943 \begin_inset ERT
21944 status collapsed
21945
21946 \begin_layout Standard
21947
21948
21949 \backslash
21950 numberwithin{footnote}{part}
21951 \end_layout
21952
21953 \end_inset
21954
21955
21956 \end_layout
21957
21958 \begin_layout Standard
21959 \begin_inset VSpace bigskip
21960 \end_inset
21961
21962
21963 \end_layout
21964
21965 \begin_layout Standard
21966 Para reestablecer el número de pie a 1 en cada sección añade este 
21967 \family roman
21968 comando en el preámbulo:
21969 \end_layout
21970
21971 \begin_layout Standard
21972
21973 \series bold
21974
21975 \backslash
21976 @addtoreset{footnote}{section}
21977 \end_layout
21978
21979 \begin_layout Standard
21980 \begin_inset VSpace bigskip
21981 \end_inset
21982
21983 El siguiente comando en el preámbulo cambia el estilo de numeración del
21984  pie a números romanos pequeños:
21985 \end_layout
21986
21987 \begin_layout Standard
21988
21989 \series bold
21990
21991 \backslash
21992 renewcommand{
21993 \backslash
21994 thefootnote}{
21995 \backslash
21996 roman{footnote}}
21997 \end_layout
21998
21999 \begin_layout Standard
22000 \begin_inset ERT
22001 status collapsed
22002
22003 \begin_layout Standard
22004
22005
22006 \backslash
22007 renewcommand{
22008 \backslash
22009 thefootnote}{
22010 \backslash
22011 roman{footnote}}
22012 \end_layout
22013
22014 \end_inset
22015
22016  Nota al pie en números romanos:
22017 \begin_inset Foot
22018 status open
22019
22020 \begin_layout Standard
22021 Ejemplo de nota al pie en números romanos.
22022 \end_layout
22023
22024 \end_inset
22025
22026
22027 \begin_inset ERT
22028 status collapsed
22029
22030 \begin_layout Standard
22031
22032
22033 \backslash
22034 renewcommand{
22035 \backslash
22036 thefootnote}{
22037 \backslash
22038 arabic{footnote}}
22039 \end_layout
22040
22041 \end_inset
22042
22043
22044 \end_layout
22045
22046 \begin_layout Standard
22047 Para cambiar el estilo de número a romanos en mayúscula cambia el comando
22048  
22049 \series bold
22050
22051 \backslash
22052 roman
22053 \series default
22054  por 
22055 \series bold
22056
22057 \backslash
22058 Roman
22059 \series default
22060 .
22061  Para 
22062 \begin_inset Quotes eld
22063 \end_inset
22064
22065 numerar
22066 \begin_inset Quotes erd
22067 \end_inset
22068
22069  las notas al pie con letras mayúsculas o minúsculas usa 
22070 \series bold
22071
22072 \backslash
22073 Alph
22074 \series default
22075  o 
22076 \series bold
22077
22078 \backslash
22079 alph
22080 \series default
22081 , respectivamente.
22082  Para 
22083 \begin_inset Quotes eld
22084 \end_inset
22085
22086 numerar
22087 \begin_inset Quotes erd
22088 \end_inset
22089
22090  las notas al pie con símbolos usa 
22091 \series bold
22092
22093 \backslash
22094 fnsymbol
22095 \series default
22096 .
22097 \end_layout
22098
22099 \begin_layout Standard
22100 \begin_inset Note Greyedout
22101 status open
22102
22103 \begin_layout Standard
22104
22105 \series bold
22106 Nota:
22107 \series default
22108  Sólo puedes numerar hasta 26 pies con letras, porque esta numeración está
22109  limitada a letras simples.
22110 \end_layout
22111
22112 \end_inset
22113
22114
22115 \newline
22116
22117 \begin_inset Note Greyedout
22118 status open
22119
22120 \begin_layout Standard
22121
22122 \series bold
22123 Nota:
22124 \series default
22125  Sólo puedes numerar 9 pies con símbolos.
22126 \end_layout
22127
22128 \end_inset
22129
22130
22131 \end_layout
22132
22133 \begin_layout Standard
22134 Para volver al estilo de numeración predeterminado cuando has cambiado a
22135  otro estilo, usa 
22136 \series bold
22137
22138 \backslash
22139 arabic
22140 \series default
22141  en vez de 
22142 \series bold
22143
22144 \backslash
22145 roman
22146 \series default
22147  en el comando anterior.
22148 \end_layout
22149
22150 \begin_layout Subsection
22151 Colocación de Notas al Pie
22152 \begin_inset LatexCommand index
22153 name "Notas al Pie ! Colocación"
22154
22155 \end_inset
22156
22157
22158 \end_layout
22159
22160 \begin_layout Standard
22161 Si tienes varias notas al pie de una página, se muestran sin espacio vertical
22162  entre ellas al final de la página.
22163  Para hacerlas más legibles puedes añadir p.\InsetSpace \thinspace{}
22164 e.\InsetSpace ~
22165 1.5\InsetSpace \thinspace{}
22166 mm con el comando siguiente
22167  en el preámbulo:
22168 \end_layout
22169
22170 \begin_layout Standard
22171
22172 \series bold
22173
22174 \backslash
22175 let
22176 \backslash
22177 myFoot
22178 \backslash
22179 footnote
22180 \newline
22181
22182 \backslash
22183 renewcommand{
22184 \backslash
22185 footnote}[1]{
22186 \backslash
22187 myFoot{#1
22188 \backslash
22189 vspace{1.5mm}}}
22190 \end_layout
22191
22192 \begin_layout Standard
22193 \begin_inset VSpace bigskip
22194 \end_inset
22195
22196 En documentos a dos columnas la nota al pie aparece al final de cada columna,
22197  ver la figura\InsetSpace ~
22198
22199 \begin_inset LatexCommand ref
22200 reference "fig:Colocación-standard-del-pie"
22201
22202 \end_inset
22203
22204 .
22205  Si las notas debieran mostrarse sólo al final de la columna derecha, como
22206  en la figura\InsetSpace ~
22207
22208 \begin_inset LatexCommand ref
22209 reference "fig:Colocación-del-pie-en"
22210
22211 \end_inset
22212
22213 , usa el paquete LaTeX 
22214 \series bold
22215 ftnright
22216 \series default
22217
22218 \begin_inset LatexCommand index
22219 name "LaTeX-paquetes ! ftnright"
22220
22221 \end_inset
22222
22223  con este comando en el preámbulo:
22224 \end_layout
22225
22226 \begin_layout Standard
22227
22228 \series bold
22229
22230 \backslash
22231 usepackage{ftnright}
22232 \end_layout
22233
22234 \begin_layout Standard
22235 \begin_inset Float figure
22236 placement !h
22237 wide false
22238 sideways false
22239 status open
22240
22241 \begin_layout Standard
22242 \begin_inset ERT
22243 status collapsed
22244
22245 \begin_layout Standard
22246
22247
22248 \backslash
22249 framebox{
22250 \end_layout
22251
22252 \end_inset
22253
22254
22255 \begin_inset Graphics
22256         filename ../clipart/without_fntright.pdf
22257         width 100col%
22258
22259 \end_inset
22260
22261
22262 \begin_inset ERT
22263 status collapsed
22264
22265 \begin_layout Standard
22266
22267 }
22268 \end_layout
22269
22270 \end_inset
22271
22272
22273 \end_layout
22274
22275 \begin_layout Standard
22276 \begin_inset Caption
22277
22278 \begin_layout Standard
22279 \begin_inset LatexCommand label
22280 name "fig:Colocación-standard-del-pie"
22281
22282 \end_inset
22283
22284 Colocación standard de notas al pie en documentos a dos columnas.
22285 \end_layout
22286
22287 \end_inset
22288
22289
22290 \end_layout
22291
22292 \end_inset
22293
22294
22295 \end_layout
22296
22297 \begin_layout Standard
22298 \begin_inset Float figure
22299 placement !h
22300 wide false
22301 sideways false
22302 status open
22303
22304 \begin_layout Standard
22305 \begin_inset ERT
22306 status collapsed
22307
22308 \begin_layout Standard
22309
22310
22311 \backslash
22312 framebox{
22313 \end_layout
22314
22315 \end_inset
22316
22317
22318 \begin_inset Graphics
22319         filename ../clipart/with_fntright.pdf
22320         width 100col%
22321
22322 \end_inset
22323
22324
22325 \begin_inset ERT
22326 status collapsed
22327
22328 \begin_layout Standard
22329
22330 }
22331 \end_layout
22332
22333 \end_inset
22334
22335
22336 \end_layout
22337
22338 \begin_layout Standard
22339 \begin_inset Caption
22340
22341 \begin_layout Standard
22342 \begin_inset LatexCommand label
22343 name "fig:Colocación-del-pie-en"
22344
22345 \end_inset
22346
22347 Colocación del pie en documentos a dos columnas cuando se usa el paquete
22348  LaTeX 
22349 \series bold
22350 ftnright
22351 \series default
22352 .
22353 \end_layout
22354
22355 \end_inset
22356
22357
22358 \end_layout
22359
22360 \end_inset
22361
22362
22363 \end_layout
22364
22365 \begin_layout Standard
22366 \begin_inset VSpace bigskip
22367 \end_inset
22368
22369 En alguna literatura científica se acostumbra reunir las notas e imprimirlas
22370  en un párrafo separado al final de la sección, como en la figura\InsetSpace ~
22371
22372 \begin_inset LatexCommand ref
22373 reference "fig:Notas-al-final----notas-al-pie"
22374
22375 \end_inset
22376
22377 .
22378  Para usar notas finales en vez de notas al pie , carga el paquete LaTeX
22379  
22380 \series bold
22381 endnotes
22382 \series default
22383
22384 \begin_inset LatexCommand index
22385 name "LaTeX-paquetes ! endnotes"
22386
22387 \end_inset
22388
22389  con las siguientes líneas en el preámbulo de tu documento:
22390 \end_layout
22391
22392 \begin_layout Standard
22393
22394 \series bold
22395
22396 \backslash
22397 usepackage{endnotes}
22398 \newline
22399
22400 \backslash
22401 let
22402 \backslash
22403 footnote
22404 \backslash
22405 endnote
22406 \end_layout
22407
22408 \begin_layout Standard
22409 Para insertar la colección de notas, escribe el comando
22410 \end_layout
22411
22412 \begin_layout Standard
22413
22414 \series bold
22415
22416 \backslash
22417 theendnotes
22418 \end_layout
22419
22420 \begin_layout Standard
22421 en ERT al final de una sección o capítulo.
22422 \end_layout
22423
22424 \begin_layout Standard
22425 \begin_inset Float figure
22426 wide false
22427 sideways false
22428 status open
22429
22430 \begin_layout Standard
22431 \align center
22432 \begin_inset ERT
22433 status collapsed
22434
22435 \begin_layout Standard
22436
22437
22438 \backslash
22439 framebox{
22440 \end_layout
22441
22442 \end_inset
22443
22444
22445 \begin_inset Graphics
22446         filename ../clipart/endnotes.pdf
22447
22448 \end_inset
22449
22450
22451 \begin_inset ERT
22452 status collapsed
22453
22454 \begin_layout Standard
22455
22456 }
22457 \end_layout
22458
22459 \end_inset
22460
22461
22462 \end_layout
22463
22464 \begin_layout Standard
22465 \begin_inset Caption
22466
22467 \begin_layout Standard
22468 \begin_inset LatexCommand label
22469 name "fig:Notas-al-final----notas-al-pie"
22470
22471 \end_inset
22472
22473 Notas al final ---notas al pie impresas en párrafo separado al final de
22474  la sección o del capítulo.
22475 \end_layout
22476
22477 \end_inset
22478
22479
22480 \end_layout
22481
22482 \end_inset
22483
22484
22485 \end_layout
22486
22487 \begin_layout Standard
22488 \begin_inset VSpace defskip
22489 \end_inset
22490
22491 La cabecera de párrafo para las notas finales no se traduce automáticamente
22492  al lenguaje del documento, hay que hacerlo manualmente.
22493   El siguiente comando de preámbulo traduce el nombre en inglés 
22494 \begin_inset Quotes eld
22495 \end_inset
22496
22497 Notes
22498 \begin_inset Quotes erd
22499 \end_inset
22500
22501  al español 
22502 \begin_inset Quotes eld
22503 \end_inset
22504
22505 Notas
22506 \begin_inset Quotes erd
22507 \end_inset
22508
22509 :
22510 \end_layout
22511
22512 \begin_layout Standard
22513
22514 \series bold
22515
22516 \backslash
22517 renewcommand{
22518 \backslash
22519 notesname}{Notas}
22520 \end_layout
22521
22522 \begin_layout Standard
22523 \begin_inset VSpace defskip
22524 \end_inset
22525
22526 La numeración de notas finales puede cambiarse como la de las notas al pie,
22527  como se describe en la sección\InsetSpace ~
22528
22529 \begin_inset LatexCommand ref
22530 reference "sub:Numeración-de-Notas-al-Pie"
22531
22532 \end_inset
22533
22534 ; sólo hay que reemplazar el comando 
22535 \series bold
22536
22537 \backslash
22538 thefootnote
22539 \series default
22540  por 
22541 \series bold
22542
22543 \backslash
22544 theendnote
22545 \series default
22546 .
22547  Para restablecer la numeración usa el comando 
22548 \series bold
22549
22550 \backslash
22551 @addtoreset
22552 \series default
22553  como se describe en la sección\InsetSpace ~
22554
22555 \begin_inset LatexCommand ref
22556 reference "sub:Numeración-de-Notas-al-Pie"
22557
22558 \end_inset
22559
22560  y sustituye el parámetro de comando 
22561 \series bold
22562 footnote
22563 \series default
22564  por 
22565 \series bold
22566 endnote
22567 \series default
22568 .
22569 \end_layout
22570
22571 \begin_layout Standard
22572 Para crear solo una marca para una nota final, usa el comando 
22573 \series bold
22574
22575 \backslash
22576 endnotemark[número]
22577 \series default
22578  similar al comando 
22579 \series bold
22580
22581 \backslash
22582 footnotemark
22583 \series default
22584 , descrito en la sección\InsetSpace ~
22585
22586 \begin_inset LatexCommand ref
22587 reference "sec:Notas-al-pie"
22588
22589 \end_inset
22590
22591 .
22592 \end_layout
22593
22594 \begin_layout Standard
22595 \begin_inset VSpace bigskip
22596 \end_inset
22597
22598 Las notas al pie también pueden colocarse al margen de la página y la alineación
22599  del texto del pie también puede cambiarse, ver el paquete LaTeX 
22600 \series bold
22601 footmisc
22602 \series default
22603
22604 \begin_inset LatexCommand index
22605 name "LaTeX-paquetes ! footmisc"
22606
22607 \end_inset
22608
22609
22610 \begin_inset LatexCommand cite
22611 key "footmisc"
22612
22613 \end_inset
22614
22615  para más información.
22616 \end_layout
22617
22618 \begin_layout Standard
22619 Para otras posibilidades de diseño de notas al pie mira en libros de LaTeX,
22620  
22621 \begin_inset LatexCommand cite
22622 key "latexcompanion,latexguide,latexbook"
22623
22624 \end_inset
22625
22626 .
22627 \end_layout
22628
22629 \begin_layout Section
22630 Notas al Margen
22631 \begin_inset LatexCommand index
22632 name "Notas ! al Margen"
22633
22634 \end_inset
22635
22636
22637 \end_layout
22638
22639 \begin_layout Standard
22640 Las notas al margen se ven y se comportan en LyX como notas al pie.
22641  Se insertan con el menú 
22642 \family sans
22643 Insertar\SpecialChar \menuseparator
22644 Nota\InsetSpace ~
22645 al\InsetSpace ~
22646 margen
22647 \family default
22648  o el botón 
22649 \begin_inset Graphics
22650         filename ../../images/marginalnote-insert.xpm
22651         scale 85
22652
22653 \end_inset
22654
22655 .
22656  Aparece un cuadro gris con la etiqueta en rojo 
22657 \family roman
22658 \series medium
22659
22660 \begin_inset Quotes eld
22661 \end_inset
22662
22663 margen
22664 \begin_inset Quotes erd
22665 \end_inset
22666
22667  en el que puedes escribir el texto de la nota.
22668 \end_layout
22669
22670 \begin_layout Standard
22671 Al lado hay un ejemplo de nota al margen.
22672 \family roman
22673 \series medium
22674
22675 \begin_inset Marginal
22676 status open
22677
22678 \begin_layout Standard
22679 Esto es una nota al margen.
22680 \end_layout
22681
22682 \end_inset
22683
22684
22685 \end_layout
22686
22687 \begin_layout Standard
22688 Estas notas salen en el margen derecho en documentos a una cara.
22689  En documentos a doble cara se muestran en el margen externo -- izquierdo
22690  en páginas pares, derecho en páginas impares.
22691  El texto de las notas se alinea en la parte opuesta al margen -- se alinea
22692  a la derecha si la nota aparece en el margen izquierdo.
22693  La primera línea de la nota se sitúa en la posición de la línea del texto
22694  en la que se inserta en el documento.
22695 \end_layout
22696
22697 \begin_layout Standard
22698 \begin_inset VSpace bigskip
22699 \end_inset
22700
22701 Para colocar la nota en el margen interno añade el comando
22702 \end_layout
22703
22704 \begin_layout Standard
22705
22706 \series bold
22707
22708 \backslash
22709 reversemarginpar
22710 \end_layout
22711
22712 \begin_layout Standard
22713 en ERT antes de la nota.
22714  La nueva colocación es válida para todas las siguientes notas al margen.
22715 \begin_inset ERT
22716 status collapsed
22717
22718 \begin_layout Standard
22719
22720
22721 \backslash
22722 reversemarginpar 
22723 \end_layout
22724
22725 \end_inset
22726
22727
22728 \begin_inset Marginal
22729 status open
22730
22731 \begin_layout Standard
22732 Esto es una nota en el margen interno.
22733 \end_layout
22734
22735 \end_inset
22736
22737
22738 \series bold
22739
22740 \newline
22741
22742 \series default
22743
22744 \begin_inset Note Greyedout
22745 status open
22746
22747 \begin_layout Standard
22748
22749 \series bold
22750 Nota:
22751 \series default
22752  A veces no hay espacio suficiente en el margen interno, por lo que la nota
22753  no se mostrará correctamente en la salida.
22754 \end_layout
22755
22756 \end_inset
22757
22758
22759 \end_layout
22760
22761 \begin_layout Standard
22762 \begin_inset ERT
22763 status collapsed
22764
22765 \begin_layout Standard
22766
22767
22768 \backslash
22769 normalmarginpar 
22770 \end_layout
22771
22772 \end_inset
22773
22774 Para volver a la ubicación predeterminada inserta el comando
22775 \end_layout
22776
22777 \begin_layout Standard
22778
22779 \series bold
22780
22781 \backslash
22782 normalmarginpar
22783 \end_layout
22784
22785 \begin_layout Standard
22786 en ERT.
22787 \newline
22788  
22789 \begin_inset Note Greyedout
22790 status open
22791
22792 \begin_layout Standard
22793
22794 \series bold
22795 Nota:
22796 \series default
22797  El comando se ignora si en el mismo párrafo está también presente el comando
22798  
22799 \series bold
22800
22801 \backslash
22802 reversemarginpar
22803 \series default
22804 .
22805 \end_layout
22806
22807 \end_inset
22808
22809
22810 \end_layout
22811
22812 \begin_layout Standard
22813 \begin_inset VSpace bigskip
22814 \end_inset
22815
22816
22817 \family roman
22818 \series medium
22819
22820 \begin_inset Marginal
22821 status open
22822
22823 \begin_layout Standard
22824 PalabraMuyLargaAlMargen no partida con guión.
22825 \end_layout
22826
22827 \end_inset
22828
22829
22830 \family default
22831 \series default
22832 Como en el caso descrito en la sección\InsetSpace ~
22833
22834 \begin_inset LatexCommand ref
22835 reference "sub:Líneas-Múltiples-en"
22836
22837 \end_inset
22838
22839 , una palabra larga no puede partirse con guión cuando es la primera en
22840  la nota al margen.
22841  Para evitar esto, inserta el comando
22842 \end_layout
22843
22844 \begin_layout Standard
22845
22846 \series bold
22847
22848 \backslash
22849 hspace{0pt}
22850 \end_layout
22851
22852 \begin_layout Standard
22853 en ERT antes de la palabra
22854 \family roman
22855 \series medium
22856 .
22857 \begin_inset Marginal
22858 status open
22859
22860 \begin_layout Standard
22861 \begin_inset ERT
22862 status collapsed
22863
22864 \begin_layout Standard
22865
22866
22867 \backslash
22868 hspace{0pt}
22869 \end_layout
22870
22871 \end_inset
22872
22873 PalabraMuyLargaAlMargen partida con guión.
22874 \end_layout
22875
22876 \end_inset
22877
22878
22879 \end_layout
22880
22881 \begin_layout Standard
22882 \begin_inset VSpace bigskip
22883 \end_inset
22884
22885
22886 \end_layout
22887
22888 \begin_layout Standard
22889 \begin_inset Note Greyedout
22890 status open
22891
22892 \begin_layout Standard
22893
22894 \series bold
22895 Nota:
22896 \series default
22897  Normalmente no pueden utilizarse notas al margen en tablas, flotantes,
22898  y notas al pie.
22899 \end_layout
22900
22901 \end_inset
22902
22903
22904 \end_layout
22905
22906 \begin_layout Standard
22907 \begin_inset VSpace bigskip
22908 \end_inset
22909
22910
22911 \end_layout
22912
22913 \begin_layout Standard
22914 \begin_inset ERT
22915 status collapsed
22916
22917 \begin_layout Standard
22918
22919
22920 \backslash
22921 ifmarginnote
22922 \end_layout
22923
22924 \end_inset
22925
22926
22927 \begin_inset Note Note
22928 status open
22929
22930 \begin_layout Standard
22931 La siguiente sección sólo se mostrará en pantalla si está instalado el paquete
22932  LaTeX 
22933 \series bold
22934 marginnote
22935 \series default
22936 .
22937 \end_layout
22938
22939 \end_inset
22940
22941
22942 \end_layout
22943
22944 \begin_layout Standard
22945 Esta restricción se puede salvar con el paquete LaTeX 
22946 \series bold
22947 marginnote
22948 \series default
22949
22950 \begin_inset LatexCommand index
22951 name "LaTeX-paquetes ! marginnote"
22952
22953 \end_inset
22954
22955 .
22956  Poniendo estas dos líneas en el preámbulo, el comando usado por LyX para
22957  notas al margen es redefinido para usar el comando provisto por el paquete
22958  
22959 \series bold
22960 marginnote
22961 \series default
22962 :
22963 \end_layout
22964
22965 \begin_layout Standard
22966
22967 \series bold
22968
22969 \backslash
22970 usepackage{marginnote}
22971 \newline
22972
22973 \backslash
22974 let
22975 \backslash
22976 marginpar
22977 \backslash
22978 marginnote
22979 \end_layout
22980
22981 \begin_layout Standard
22982 Esto se ha utilizado en el presente documento porque 
22983 \series bold
22984 marginnote
22985 \series default
22986  tiene una característica adicional útil: Puedes imponer un offset vertical
22987  a la nota.
22988  A veces esto hace falta si hay demasiadas notas juntas o para mejorar el
22989  diseño de la página.
22990  El offset se determina en LyX como ERT directamente tras la nota al margen
22991  en el esquema
22992 \end_layout
22993
22994 \begin_layout Standard
22995
22996 \series bold
22997 [offset]
22998 \end_layout
22999
23000 \begin_layout Standard
23001 donde offset es una longitud en una de las unidades listadas en la tabla\InsetSpace ~
23002
23003 \begin_inset LatexCommand ref
23004 reference "tab:Unidades"
23005
23006 \end_inset
23007
23008 .
23009  Un valor negativo desplaza la nota hacia arriba, un valor positivo hacia
23010  abajo.
23011  
23012 \family roman
23013 \series medium
23014 Por ejemplo la nota adjunta a esta línea de texto está desplazada 1.5\InsetSpace \thinspace{}
23015 cm arriba
23016  con el comando ERT 
23017 \begin_inset Quotes eld
23018 \end_inset
23019
23020
23021 \family default
23022 \series bold
23023 [-1.5cm]
23024 \family roman
23025 \series medium
23026
23027 \begin_inset Quotes erd
23028 \end_inset
23029
23030
23031 \begin_inset Marginal
23032 status open
23033
23034 \begin_layout Standard
23035 Esta nota está 1.5\InsetSpace \thinspace{}
23036 cm por encima de su posición original.
23037 \end_layout
23038
23039 \end_inset
23040
23041
23042 \family default
23043 \series default
23044
23045 \begin_inset ERT
23046 status collapsed
23047
23048 \begin_layout Standard
23049
23050 [-1.5cm]
23051 \end_layout
23052
23053 \end_inset
23054
23055
23056 \end_layout
23057
23058 \begin_layout Standard
23059 \begin_inset VSpace defskip
23060 \end_inset
23061
23062 Con 
23063 \series bold
23064 marginnote
23065 \series default
23066  también puedes cambiar la alineación del texto en el margen.
23067  Por ejemplo los comandos
23068 \end_layout
23069
23070 \begin_layout Standard
23071
23072 \series bold
23073
23074 \backslash
23075 renewcommand*{
23076 \backslash
23077 raggedleftmarginnote}{
23078 \backslash
23079 centering}
23080 \newline
23081
23082 \backslash
23083 renewcommand*{
23084 \backslash
23085 raggedrightmarginnote}{
23086 \backslash
23087 centering}
23088 \end_layout
23089
23090 \begin_layout Standard
23091 producen alineación centrada.
23092  
23093 \series bold
23094
23095 \backslash
23096 raggedleftmarginnote
23097 \series default
23098  identifica las notas que aparecen al lado izquierdo.
23099 \family roman
23100 \series medium
23101
23102 \begin_inset ERT
23103 status collapsed
23104
23105 \begin_layout Standard
23106
23107
23108 \backslash
23109 renewcommand*{
23110 \backslash
23111 raggedleftmarginnote}{
23112 \backslash
23113 centering}
23114 \end_layout
23115
23116 \begin_layout Standard
23117
23118
23119 \backslash
23120 renewcommand*{
23121 \backslash
23122 raggedrightmarginnote}{
23123 \backslash
23124 centering}
23125 \end_layout
23126
23127 \end_inset
23128
23129
23130 \begin_inset Marginal
23131 status open
23132
23133 \begin_layout Standard
23134 El texto de esta nota está centrado.
23135 \end_layout
23136
23137 \end_inset
23138
23139
23140 \family default
23141 \series default
23142  El valor predeterminado es 
23143 \end_layout
23144
23145 \begin_layout Standard
23146
23147 \series bold
23148
23149 \backslash
23150 renewcommand*{
23151 \backslash
23152 raggedleftmarginnote}{
23153 \backslash
23154 raggedleft}
23155 \newline
23156
23157 \backslash
23158 renewcommand*{
23159 \backslash
23160 raggedrightmarginnote}{
23161 \backslash
23162 raggedright}
23163 \family roman
23164 \series medium
23165
23166 \begin_inset ERT
23167 status collapsed
23168
23169 \begin_layout Standard
23170
23171
23172 \backslash
23173 renewcommand*{
23174 \backslash
23175 raggedleftmarginnote}{
23176 \backslash
23177 raggedleft}
23178 \end_layout
23179
23180 \begin_layout Standard
23181
23182
23183 \backslash
23184 renewcommand*{
23185 \backslash
23186 raggedrightmarginnote}{
23187 \backslash
23188 raggedright}
23189 \end_layout
23190
23191 \end_inset
23192
23193
23194 \end_layout
23195
23196 \begin_layout Standard
23197 \begin_inset VSpace defskip
23198 \end_inset
23199
23200 Para otras características de 
23201 \series bold
23202 marginnote
23203 \series default
23204  mira en su documentación 
23205 \begin_inset LatexCommand cite
23206 key "marginnote"
23207
23208 \end_inset
23209
23210 .
23211 \end_layout
23212
23213 \begin_layout Standard
23214 \begin_inset VSpace bigskip
23215 \end_inset
23216
23217 El diseño de las notas al margen puede ser redefinido.
23218  Por ejemplo, para crear una cabecera para todas las notas con el texto
23219  
23220 \begin_inset Quotes eld
23221 \end_inset
23222
23223
23224 \series bold
23225 \bar under
23226 ¡
23227 \family sans
23228 Atención
23229 \family default
23230 !
23231 \series default
23232 \bar default
23233
23234 \begin_inset Quotes erd
23235 \end_inset
23236
23237 , subrayado, sans-serif en negrita, añade lo siguiente en el preámbulo:
23238 \end_layout
23239
23240 \begin_layout Standard
23241
23242 \series bold
23243
23244 \backslash
23245 let
23246 \backslash
23247 myMarginpar
23248 \backslash
23249 marginpar
23250 \newline
23251
23252 \backslash
23253 renewcommand{
23254 \backslash
23255 marginpar}[1]{
23256 \backslash
23257 myMarginpar{%
23258 \newline
23259
23260 \begin_inset ERT
23261 status collapsed
23262
23263 \begin_layout Standard
23264
23265
23266 \backslash
23267 hphantom{ }
23268 \end_layout
23269
23270 \end_inset
23271
23272
23273 \backslash
23274 hspace{0pt}
23275 \backslash
23276 textsf{
23277 \backslash
23278 textbf{
23279 \backslash
23280 underbar{¡Atención!}}}%
23281 \newline
23282
23283 \begin_inset ERT
23284 status collapsed
23285
23286 \begin_layout Standard
23287
23288
23289 \backslash
23290 hphantom{ }
23291 \end_layout
23292
23293 \end_inset
23294
23295
23296 \backslash
23297 vspace{1.5mm}
23298 \backslash
23299
23300 \backslash
23301 #1}}
23302 \end_layout
23303
23304 \begin_layout Standard
23305
23306 \family roman
23307 \series medium
23308 \begin_inset ERT
23309 status collapsed
23310
23311 \begin_layout Standard
23312
23313
23314 \backslash
23315 let
23316 \backslash
23317 myMarginpar
23318 \backslash
23319 marginpar
23320 \end_layout
23321
23322 \begin_layout Standard
23323
23324
23325 \backslash
23326 renewcommand{
23327 \backslash
23328 marginpar}[1]{
23329 \backslash
23330 myMarginpar{%
23331 \end_layout
23332
23333 \begin_layout Standard
23334
23335    
23336 \backslash
23337 textsf{
23338 \backslash
23339 textbf{
23340 \backslash
23341 underbar{¡Atención!}}}%
23342 \end_layout
23343
23344 \begin_layout Standard
23345
23346    
23347 \backslash
23348 vspace{1.5mm}
23349 \backslash
23350
23351 \backslash
23352 #1}}
23353 \end_layout
23354
23355 \end_inset
23356
23357
23358 \begin_inset Marginal
23359 status open
23360
23361 \begin_layout Standard
23362 Esta es una nota con una cabecera definida.
23363 \end_layout
23364
23365 \end_inset
23366
23367
23368 \family default
23369 \series default
23370
23371 \begin_inset ERT
23372 status collapsed
23373
23374 \begin_layout Standard
23375
23376 [-1.5cm]
23377 \end_layout
23378
23379 \end_inset
23380
23381
23382 \family roman
23383 \series medium
23384
23385 \begin_inset ERT
23386 status collapsed
23387
23388 \begin_layout Standard
23389
23390
23391 \backslash
23392 renewcommand{
23393 \backslash
23394 marginpar}[1]{
23395 \backslash
23396 myMarginpar{#1}}
23397 \end_layout
23398
23399 \end_inset
23400
23401
23402 \family default
23403 \series default
23404
23405 \begin_inset Note Note
23406 status collapsed
23407
23408 \begin_layout Standard
23409 El formato de la nota al margen se ha cambiado solo para este ejemplo.
23410 \end_layout
23411
23412 \end_inset
23413
23414
23415 \end_layout
23416
23417 \begin_layout Standard
23418 \begin_inset ERT
23419 status collapsed
23420
23421 \begin_layout Standard
23422
23423
23424 \backslash
23425 else
23426 \end_layout
23427
23428 \end_inset
23429
23430
23431 \begin_inset Note Note
23432 status open
23433
23434 \begin_layout Standard
23435 Lo siguiente se mostrará en pantalla si no está instalado el paquete LaTeX
23436  
23437 \series bold
23438 marginnote
23439 \series default
23440 .
23441 \end_layout
23442
23443 \end_inset
23444
23445
23446 \end_layout
23447
23448 \begin_layout Standard
23449 Debes instalar el paquete LaTeX 
23450 \series bold
23451 marginnote
23452 \series default
23453  para ver la parte siguiente en la salida.
23454 \end_layout
23455
23456 \begin_layout Standard
23457 \begin_inset ERT
23458 status collapsed
23459
23460 \begin_layout Standard
23461
23462
23463 \backslash
23464 fi
23465 \end_layout
23466
23467 \end_inset
23468
23469
23470 \end_layout
23471
23472 \begin_layout Chapter
23473 Cuadros
23474 \end_layout
23475
23476 \begin_layout Section
23477 Introducción
23478 \begin_inset LatexCommand index
23479 name "Cuadros ! Introducción"
23480
23481 \end_inset
23482
23483
23484 \end_layout
23485
23486 \begin_layout Standard
23487 Los cuadros se emplean para dar formato a bloques de texto.
23488  Se pueden usar para escribir documentos con varios lenguajes, ver sección\InsetSpace ~
23489
23490 \begin_inset LatexCommand ref
23491 reference "sec:Minipáginas"
23492
23493 \end_inset
23494
23495 , enmarcar textos, ver sección\InsetSpace ~
23496
23497 \begin_inset LatexCommand ref
23498 reference "sec:Cuadros-Enmarcados"
23499
23500 \end_inset
23501
23502 , evitar la división de palabras, ver sección\InsetSpace ~
23503
23504 \begin_inset LatexCommand ref
23505 reference "sec:Evitar-la-Partición-con-Guiones"
23506
23507 \end_inset
23508
23509 , alinear texto, ver sección\InsetSpace ~
23510
23511 \begin_inset LatexCommand ref
23512 reference "sub:Alineación-Vertical"
23513
23514 \end_inset
23515
23516 , o para poner color de fondo a un texto, ver sección\InsetSpace ~
23517
23518 \begin_inset LatexCommand ref
23519 reference "sec:Cuadros-Coloreados"
23520
23521 \end_inset
23522
23523 .
23524 \end_layout
23525
23526 \begin_layout Standard
23527 Se insertan con el menú 
23528 \family sans
23529 Insertar\SpecialChar \menuseparator
23530 Cuadro
23531 \family default
23532 .
23533  Surge un recuadro gris con la etiqueta 
23534 \family sans
23535 Cuadro (Minipágina)
23536 \family default
23537
23538 \begin_inset Graphics
23539         filename clipart/CuadroMinipagQt4.png
23540         scale 75
23541         keepAspectRatio
23542
23543 \end_inset
23544
23545 .
23546  El tipo de cuadro se puede elegir al hacer click-derecho sobre él.
23547  Sale un diálogo en el que 
23548 \family sans
23549 Cuadro
23550 \family default
23551 \InsetSpace ~
23552
23553 \family sans
23554 interior
23555 \family default
23556  permite escoger los tipos 
23557 \family sans
23558 Parbox (
23559 \family default
23560
23561 \begin_inset Quotes eld
23562 \end_inset
23563
23564
23565 \family sans
23566 Párrafo
23567 \family default
23568
23569 \begin_inset Quotes erd
23570 \end_inset
23571
23572
23573 \family sans
23574 )
23575 \family default
23576  y 
23577 \family sans
23578 Minipágina
23579 \family default
23580 .
23581  
23582 \family sans
23583 Minipágina
23584 \family default
23585  es el predeterminado para nuevos cuadros y se explica en la sección\InsetSpace ~
23586
23587 \begin_inset LatexCommand ref
23588 reference "sec:Minipáginas"
23589
23590 \end_inset
23591
23592 ; el tipo 
23593 \family sans
23594 Parbox
23595 \family default
23596  se describe en la sección\InsetSpace ~
23597
23598 \begin_inset LatexCommand ref
23599 reference "sec:Cuadros-de-Párrafo"
23600
23601 \end_inset
23602
23603 .
23604 \end_layout
23605
23606 \begin_layout Standard
23607 Los cuadros no se numeran y por tanto no se pueden referenciar como los
23608  flotantes o las notas al pie.
23609 \end_layout
23610
23611 \begin_layout Standard
23612 \begin_inset Note Greyedout
23613 status open
23614
23615 \begin_layout Standard
23616
23617 \series bold
23618 Nota:
23619 \series default
23620  Debido a un error en LyX hay que insertar un espacio protegido detrás de
23621  un cuadro si se desea separar con un espacio el cuadro y el texto siguiente.
23622 \end_layout
23623
23624 \end_inset
23625
23626
23627 \end_layout
23628
23629 \begin_layout Standard
23630 \begin_inset Note Greyedout
23631 status open
23632
23633 \begin_layout Standard
23634
23635 \series bold
23636 Nota:
23637 \series default
23638  Los cuadros no deben ser el item en un entorno 
23639 \family sans
23640 Enumeración
23641 \family default
23642  o 
23643 \family sans
23644 Descripción
23645 \family default
23646 .
23647 \end_layout
23648
23649 \end_inset
23650
23651
23652 \end_layout
23653
23654 \begin_layout Standard
23655 \begin_inset Note Greyedout
23656 status open
23657
23658 \begin_layout Standard
23659
23660 \series bold
23661 Nota:
23662 \series default
23663  Por razones desconocidas sólo se puede poner el tipo 
23664 \family sans
23665 Cuadro\InsetSpace ~
23666 interior
23667 \family default
23668  en 
23669 \family sans
23670 Ninguno
23671 \family default
23672  cuando se emplea un cuadro enmarcado.
23673  Los cuadros sin ningún tipo de 
23674 \family sans
23675 Cuadro\InsetSpace ~
23676 interior
23677 \family default
23678  y sin marcos se explican en la sección\InsetSpace ~
23679
23680 \begin_inset LatexCommand ref
23681 reference "sec:Evitar-la-Partición-con-Guiones"
23682
23683 \end_inset
23684
23685 .
23686 \end_layout
23687
23688 \end_inset
23689
23690
23691 \end_layout
23692
23693 \begin_layout Section
23694 Diálogo Cuadros
23695 \begin_inset LatexCommand label
23696 name "sec:Diálogo-Cuadros"
23697
23698 \end_inset
23699
23700
23701 \begin_inset LatexCommand index
23702 name "Cuadros ! Diálogo"
23703
23704 \end_inset
23705
23706
23707 \begin_inset LatexCommand index
23708 name "Cuadros ! Alineación"
23709
23710 \end_inset
23711
23712
23713 \end_layout
23714
23715 \begin_layout Standard
23716 En el diálogo puedes ajustar la geometría del cuadro en los campos 
23717 \family sans
23718 Ancho
23719 \family default
23720  y 
23721 \family sans
23722 Alto
23723 \family default
23724 .
23725  Las unidades disponibles para la geometría se explican en la tabla\InsetSpace ~
23726
23727 \begin_inset LatexCommand ref
23728 reference "tab:Unidades"
23729
23730 \end_inset
23731
23732 .
23733  El campo 
23734 \family sans
23735 Alto
23736 \family default
23737  ofrece los siguientes tamaños adicionales:
23738 \end_layout
23739
23740 \begin_layout Description
23741 Profundidad Este es el texto plano 
23742 \begin_inset Quotes eld
23743 \end_inset
23744
23745 alto
23746 \begin_inset Quotes erd
23747 \end_inset
23748
23749 .
23750  Ignora la profundidad total cuando hay mútiples líneas de texto en el cuadro:
23751 \newline
23752
23753 \newline
23754
23755 \newline
23756
23757 \begin_inset Box Boxed
23758 position "c"
23759 hor_pos "c"
23760 has_inner_box 1
23761 inner_pos "c"
23762 use_parbox 0
23763 width "12col%"
23764 special "none"
23765 height "1in"
23766 height_special "depth"
23767 status open
23768
23769 \begin_layout Standard
23770 \align center
23771 Cuadro con altura establecida en 1\InsetSpace \thinspace{}
23772 Profundidad
23773 \end_layout
23774
23775 \end_inset
23776
23777
23778 \newline
23779
23780 \newline
23781
23782 \end_layout
23783
23784 \begin_layout Description
23785 Alto Es la altura del texto que está dentro del cuadro.
23786  Un valor de, p.\InsetSpace \thinspace{}
23787 e.\InsetSpace ~
23788 2 para este tamaño fijará la altura del cuadro a 2 veces
23789  la altura del texto: 
23790 \begin_inset Box Boxed
23791 position "c"
23792 hor_pos "c"
23793 has_inner_box 1
23794 inner_pos "c"
23795 use_parbox 0
23796 width "20col%"
23797 special "none"
23798 height "2in"
23799 height_special "height"
23800 status open
23801
23802 \begin_layout Standard
23803 \align center
23804 Cuadro con altura puesta en 2\InsetSpace \thinspace{}
23805 Alto
23806 \end_layout
23807
23808 \end_inset
23809
23810
23811 \end_layout
23812
23813 \begin_layout Description
23814 Alto\InsetSpace ~
23815 Total Esto es el Alto\InsetSpace \thinspace{}
23816 +\InsetSpace \thinspace{}
23817 Profundidad: 
23818 \begin_inset Box Boxed
23819 position "c"
23820 hor_pos "c"
23821 has_inner_box 1
23822 inner_pos "c"
23823 use_parbox 0
23824 width "20col%"
23825 special "none"
23826 height "1in"
23827 height_special "totalheight"
23828 status open
23829
23830 \begin_layout Standard
23831 \align center
23832 Cuadro con altura puesta a 1\InsetSpace \thinspace{}
23833 Alto\InsetSpace ~
23834 total
23835 \end_layout
23836
23837 \end_inset
23838
23839
23840 \end_layout
23841
23842 \begin_layout Description
23843 Ancho Esto determina al ancho del cuadro como altura: 
23844 \begin_inset Box Boxed
23845 position "c"
23846 hor_pos "c"
23847 has_inner_box 1
23848 inner_pos "c"
23849 use_parbox 0
23850 width "12col%"
23851 special "none"
23852 height "1in"
23853 height_special "width"
23854 status open
23855
23856 \begin_layout Standard
23857 \align center
23858 Cuadro con altura puesta en 1\InsetSpace \thinspace{}
23859 Ancho
23860 \end_layout
23861
23862 \end_inset
23863
23864
23865 \end_layout
23866
23867 \begin_layout Standard
23868 \begin_inset VSpace bigskip
23869 \end_inset
23870
23871 Si has elegido un 
23872 \family sans
23873 Cuadro\InsetSpace ~
23874 interior
23875 \family default
23876 , la alineación vertical del cuadro puede ser:
23877 \end_layout
23878
23879 \begin_layout Description
23880 Superior Ejemplo de línea de texto.
23881  
23882 \begin_inset Box Boxed
23883 position "t"
23884 hor_pos "c"
23885 has_inner_box 1
23886 inner_pos "c"
23887 use_parbox 0
23888 width "12col%"
23889 special "none"
23890 height "1in"
23891 height_special "totalheight"
23892 status open
23893
23894 \begin_layout Standard
23895 \align center
23896 Cuadro alineado arriba.
23897 \end_layout
23898
23899 \end_inset
23900
23901 \InsetSpace ~
23902 Ejemplo de línea de texto.
23903 \end_layout
23904
23905 \begin_layout Description
23906 Medio Ejemplo de línea de texto.
23907  
23908 \begin_inset Box Boxed
23909 position "c"
23910 hor_pos "c"
23911 has_inner_box 1
23912 inner_pos "c"
23913 use_parbox 0
23914 width "12col%"
23915 special "none"
23916 height "1in"
23917 height_special "totalheight"
23918 status open
23919
23920 \begin_layout Standard
23921 \align center
23922 Cuadro alineado enmedio.
23923 \end_layout
23924
23925 \end_inset
23926
23927 \InsetSpace ~
23928 Ejemplo de línea de texto.
23929 \end_layout
23930
23931 \begin_layout Description
23932 Inferior Ejemplo de línea de texto.
23933  
23934 \begin_inset Box Boxed
23935 position "b"
23936 hor_pos "c"
23937 has_inner_box 1
23938 inner_pos "c"
23939 use_parbox 0
23940 width "12col%"
23941 special "none"
23942 height "1in"
23943 height_special "totalheight"
23944 status open
23945
23946 \begin_layout Standard
23947 \align center
23948 Cuadro alineado abajo.
23949 \end_layout
23950
23951 \end_inset
23952
23953 \InsetSpace ~
23954 Ejemplo de línea de texto.
23955 \end_layout
23956
23957 \begin_layout Standard
23958 La alineación horizontal del cuadro puede establecerse en el diálogo de
23959  configuración de párrafo de LyX si colocas el cuadro en su propio párrafo.
23960 \end_layout
23961
23962 \begin_layout Standard
23963 \begin_inset VSpace bigskip
23964 \end_inset
23965
23966 Si has escogido un 
23967 \family sans
23968 Cuadro\InsetSpace ~
23969 interior
23970 \family default
23971 , el contenido puede alinearse verticalmente a:
23972 \end_layout
23973
23974 \begin_layout Description
23975 Superior Ejemplo de línea de texto.
23976  
23977 \begin_inset Box Boxed
23978 position "c"
23979 hor_pos "c"
23980 has_inner_box 1
23981 inner_pos "t"
23982 use_parbox 0
23983 width "12col%"
23984 special "none"
23985 height "1.5in"
23986 height_special "totalheight"
23987 status open
23988
23989 \begin_layout Standard
23990 \align center
23991 Cuadro con texto alineado arriba.
23992 \end_layout
23993
23994 \end_inset
23995
23996 \InsetSpace ~
23997 Ejemplo de línea de texto.
23998 \end_layout
23999
24000 \begin_layout Description
24001 Medio Ejemplo de línea de texto.
24002  
24003 \begin_inset Box Boxed
24004 position "c"
24005 hor_pos "c"
24006 has_inner_box 1
24007 inner_pos "c"
24008 use_parbox 0
24009 width "12col%"
24010 special "none"
24011 height "1.5in"
24012 height_special "totalheight"
24013 status open
24014
24015 \begin_layout Standard
24016 \align center
24017 Cuadro con texto alineado enmedio.
24018 \end_layout
24019
24020 \end_inset
24021
24022 \InsetSpace ~
24023 Ejemplo de línea de texto.
24024 \end_layout
24025
24026 \begin_layout Description
24027 Inferior Ejemplo de línea de texto.
24028  
24029 \begin_inset Box Boxed
24030 position "c"
24031 hor_pos "c"
24032 has_inner_box 1
24033 inner_pos "b"
24034 use_parbox 0
24035 width "12col%"
24036 special "none"
24037 height "1.5in"
24038 height_special "totalheight"
24039 status open
24040
24041 \begin_layout Standard
24042 \align center
24043 Cuadro con texto alineado abajo.
24044 \end_layout
24045
24046 \end_inset
24047
24048 \InsetSpace ~
24049 Ejemplo de línea de texto.
24050 \end_layout
24051
24052 \begin_layout Description
24053 Estirado Ejemplo de línea de texto.
24054  
24055 \begin_inset Box Boxed
24056 position "c"
24057 hor_pos "c"
24058 has_inner_box 1
24059 inner_pos "s"
24060 use_parbox 0
24061 width "12col%"
24062 special "none"
24063 height "1.5in"
24064 height_special "totalheight"
24065 status open
24066
24067 \begin_layout Standard
24068 \align center
24069 Este texto
24070 \end_layout
24071
24072 \begin_layout Standard
24073 \align center
24074 está
24075 \end_layout
24076
24077 \begin_layout Standard
24078 \align center
24079 estirado.
24080 \end_layout
24081
24082 \end_inset
24083
24084 \InsetSpace ~
24085 Ejemplo de línea de texto.
24086 \end_layout
24087
24088 \begin_layout Standard
24089 Para estirar el contenido debe tener más de un párrafo.
24090  En el ejemplo anterior cada línea de texto está en un párrafo propio.
24091 \end_layout
24092
24093 \begin_layout Standard
24094 \begin_inset VSpace bigskip
24095 \end_inset
24096
24097 Para estirar horizontalmente el contenido usa el diálogo de párrafos de
24098  LyX cuando hayas escogido un 
24099 \family sans
24100 Cuadro\InsetSpace ~
24101 interior
24102 \family default
24103 .
24104 \end_layout
24105
24106 \begin_layout Standard
24107 \align center
24108 \begin_inset Box Boxed
24109 position "c"
24110 hor_pos "c"
24111 has_inner_box 1
24112 inner_pos "s"
24113 use_parbox 0
24114 width "15col%"
24115 special "none"
24116 height "1.25in"
24117 height_special "totalheight"
24118 status open
24119
24120 \begin_layout Standard
24121 \align left
24122 Cuadro
24123 \end_layout
24124
24125 \begin_layout Standard
24126 \align center
24127 con texto
24128 \end_layout
24129
24130 \begin_layout Standard
24131 \align right
24132 estirado
24133 \end_layout
24134
24135 \end_inset
24136
24137
24138 \end_layout
24139
24140 \begin_layout Standard
24141 Si no has estabecido un 
24142 \family sans
24143 Cuadro\InsetSpace ~
24144 interior
24145 \family default
24146 , puedes alinear horizontalmente el contenido del cuadro en el diálogo de
24147  cuadro.
24148 \end_layout
24149
24150 \begin_layout Standard
24151 \align center
24152 \begin_inset Box Boxed
24153 position "c"
24154 hor_pos "s"
24155 has_inner_box 0
24156 inner_pos "s"
24157 use_parbox 0
24158 width "90col%"
24159 special "none"
24160 height "1.25in"
24161 height_special "totalheight"
24162 status open
24163
24164 \begin_layout Standard
24165 \align left
24166 Texto estirado horizontalmente.
24167 \end_layout
24168
24169 \end_inset
24170
24171
24172 \end_layout
24173
24174 \begin_layout Section
24175 Cuadros Enmarcados
24176 \begin_inset LatexCommand label
24177 name "sec:Cuadros-Enmarcados"
24178
24179 \end_inset
24180
24181
24182 \begin_inset LatexCommand index
24183 name "Cuadros ! Marcos"
24184
24185 \end_inset
24186
24187
24188 \end_layout
24189
24190 \begin_layout Standard
24191 El estilo de marco del cuadro se puede determinar en la lista desplegable
24192  
24193 \family sans
24194 Tipo
24195 \family default
24196  del diálogo de cuadros.
24197  Son posibles los siguientes marcos:
24198 \end_layout
24199
24200 \begin_layout Description
24201 Marco\InsetSpace ~
24202 rectangular Dibuja un marco rectangular alrededor del cuadro.
24203  El grosor del marco depende de 
24204 \series bold
24205
24206 \backslash
24207 fboxrule
24208 \series default
24209 .
24210  
24211 \begin_inset Box Boxed
24212 position "c"
24213 hor_pos "c"
24214 has_inner_box 1
24215 inner_pos "c"
24216 use_parbox 0
24217 width "25col%"
24218 special "none"
24219 height "1in"
24220 height_special "totalheight"
24221 status open
24222
24223 \begin_layout Standard
24224 \align center
24225 Cuadro rectangular
24226 \end_layout
24227
24228 \end_inset
24229
24230
24231 \end_layout
24232
24233 \begin_layout Description
24234 Marco\InsetSpace ~
24235 ovalado,\InsetSpace ~
24236 fino Dibuja un marco ovalado cuya línea tiene un grosor de
24237  0.4\InsetSpace \thinspace{}
24238 pt.
24239  
24240 \begin_inset Box ovalbox
24241 position "c"
24242 hor_pos "c"
24243 has_inner_box 1
24244 inner_pos "c"
24245 use_parbox 0
24246 width "25col%"
24247 special "none"
24248 height "1in"
24249 height_special "totalheight"
24250 status open
24251
24252 \begin_layout Standard
24253 \align center
24254 Marco ovalado, fino
24255 \end_layout
24256
24257 \end_inset
24258
24259
24260 \end_layout
24261
24262 \begin_layout Description
24263 Marco\InsetSpace ~
24264 ovalado,\InsetSpace ~
24265 grueso Dibuja un marco ovalado cuya línea tiene un grosor de
24266  0.8\InsetSpace \thinspace{}
24267 pt.
24268  
24269 \begin_inset Box Ovalbox
24270 position "c"
24271 hor_pos "c"
24272 has_inner_box 1
24273 inner_pos "c"
24274 use_parbox 0
24275 width "30col%"
24276 special "none"
24277 height "1in"
24278 height_special "totalheight"
24279 status open
24280
24281 \begin_layout Standard
24282 \align center
24283 Cuadro ovalado, grueso
24284 \end_layout
24285
24286 \end_inset
24287
24288
24289 \end_layout
24290
24291 \begin_layout Description
24292 Marco\InsetSpace ~
24293 con\InsetSpace ~
24294 sombra Dibuja un cuadro rectangular con sombra alrededor del cuadro.
24295  El grosor de la línea tiene el tamaño dado por 
24296 \series bold
24297
24298 \backslash
24299 fboxrule
24300 \series default
24301 , la sombra tiene una anchura de 4\InsetSpace \thinspace{}
24302 pt.
24303  
24304 \begin_inset Box Shadowbox
24305 position "c"
24306 hor_pos "c"
24307 has_inner_box 1
24308 inner_pos "c"
24309 use_parbox 0
24310 width "20col%"
24311 special "none"
24312 height "1in"
24313 height_special "totalheight"
24314 status open
24315
24316 \begin_layout Standard
24317 \align center
24318 Marco sombrado
24319 \end_layout
24320
24321 \end_inset
24322
24323
24324 \end_layout
24325
24326 \begin_layout Description
24327 Marco\InsetSpace ~
24328 doble Dibuja un rectángulo de línea doble alrededor del cuadro.
24329  El grosor de la línea interior es 0.75\InsetSpace \thinspace{}
24330
24331 \series bold
24332
24333 \backslash
24334 fboxrule
24335 \series default
24336 , el de la línea exterior es 1.5\InsetSpace \thinspace{}
24337
24338 \series bold
24339
24340 \backslash
24341 fboxrule
24342 \series default
24343 .
24344  La distancia entre líneas es 1.5\InsetSpace \thinspace{}
24345
24346 \series bold
24347
24348 \backslash
24349 fboxrule
24350 \series default
24351 \InsetSpace \thinspace{}
24352 +\InsetSpace \thinspace{}
24353 0.5\InsetSpace \thinspace{}
24354 pt.
24355  
24356 \begin_inset Box Doublebox
24357 position "c"
24358 hor_pos "c"
24359 has_inner_box 1
24360 inner_pos "c"
24361 use_parbox 0
24362 width "20col%"
24363 special "none"
24364 height "1in"
24365 height_special "totalheight"
24366 status open
24367
24368 \begin_layout Standard
24369 \align center
24370 Marco doble
24371 \end_layout
24372
24373 \end_inset
24374
24375
24376 \end_layout
24377
24378 \begin_layout Standard
24379 \begin_inset VSpace bigskip
24380 \end_inset
24381
24382 La etiqueta del recuadro en LyX cambiará según el estilo de marco elegido.
24383  Para poder utilizar los distintos marcos, debe estar instalado el paquete
24384  LaTeX 
24385 \series bold
24386 fancybox
24387 \series default
24388
24389 \begin_inset LatexCommand index
24390 name "LaTeX-paquetes ! fancybox"
24391
24392 \end_inset
24393
24394 .
24395 \end_layout
24396
24397 \begin_layout Standard
24398 \begin_inset VSpace bigskip
24399 \end_inset
24400
24401 El valor predeterminado por 
24402 \series bold
24403
24404 \backslash
24405 fboxrule
24406 \series default
24407  es 0.4\InsetSpace \thinspace{}
24408 pt.
24409  Puede cambiarse con el siguiente comando en ERT, p.\InsetSpace \thinspace{}
24410 e.\InsetSpace ~
24411 a\InsetSpace ~
24412 2\InsetSpace \thinspace{}
24413 pt:
24414 \end_layout
24415
24416 \begin_layout Standard
24417
24418 \series bold
24419
24420 \backslash
24421 setlength{
24422 \backslash
24423 fboxrule}{2pt}
24424 \end_layout
24425
24426 \begin_layout Standard
24427 \begin_inset ERT
24428 status collapsed
24429
24430 \begin_layout Standard
24431
24432
24433 \backslash
24434 setlength{
24435 \backslash
24436 fboxrule}{2pt}
24437 \end_layout
24438
24439 \end_inset
24440
24441
24442 \begin_inset Box Boxed
24443 position "c"
24444 hor_pos "c"
24445 has_inner_box 1
24446 inner_pos "c"
24447 use_parbox 0
24448 width "25col%"
24449 special "none"
24450 height "1in"
24451 height_special "totalheight"
24452 status open
24453
24454 \begin_layout Standard
24455 \align center
24456 Cuadro rectangular con 
24457 \series bold
24458
24459 \backslash
24460 fboxrule
24461 \series default
24462 \InsetSpace \thinspace{}
24463 =\InsetSpace \thinspace{}
24464 2\InsetSpace \thinspace{}
24465 pt
24466 \end_layout
24467
24468 \end_inset
24469
24470
24471 \begin_inset ERT
24472 status collapsed
24473
24474 \begin_layout Standard
24475
24476
24477 \backslash
24478 setlength{
24479 \backslash
24480 fboxrule}{0.4pt}
24481 \end_layout
24482
24483 \end_inset
24484
24485
24486 \end_layout
24487
24488 \begin_layout Standard
24489 \begin_inset VSpace bigskip
24490 \end_inset
24491
24492 El espacio entre el marco y el contenido del cuadro es 3\InsetSpace \thinspace{}
24493 pt por defecto para
24494  todos los estilos.
24495  Se puede cambiar mediante la longitud 
24496 \series bold
24497
24498 \backslash
24499 fboxsep
24500 \series default
24501 .
24502  Por ejemplo el comando
24503 \end_layout
24504
24505 \begin_layout Standard
24506
24507 \series bold
24508
24509 \backslash
24510 setlength{
24511 \backslash
24512 fboxsep}{10pt}
24513 \end_layout
24514
24515 \begin_layout Standard
24516 determina un valor de 10\InsetSpace \thinspace{}
24517 pt, como en el siguiente cuadro:
24518 \end_layout
24519
24520 \begin_layout Standard
24521 \begin_inset ERT
24522 status collapsed
24523
24524 \begin_layout Standard
24525
24526
24527 \backslash
24528 setlength{
24529 \backslash
24530 fboxsep}{10pt}
24531 \end_layout
24532
24533 \end_inset
24534
24535
24536 \begin_inset Box Boxed
24537 position "c"
24538 hor_pos "c"
24539 has_inner_box 1
24540 inner_pos "c"
24541 use_parbox 0
24542 width "25col%"
24543 special "none"
24544 height "1in"
24545 height_special "totalheight"
24546 status open
24547
24548 \begin_layout Standard
24549 \align center
24550 Cuadro rectangular con 
24551 \series bold
24552
24553 \backslash
24554 fboxsep
24555 \series default
24556 \InsetSpace \thinspace{}
24557 =\InsetSpace \thinspace{}
24558 10\InsetSpace \thinspace{}
24559 pt
24560 \end_layout
24561
24562 \end_inset
24563
24564
24565 \begin_inset ERT
24566 status collapsed
24567
24568 \begin_layout Standard
24569
24570
24571 \backslash
24572 setlength{
24573 \backslash
24574 fboxsep}{3pt}
24575 \end_layout
24576
24577 \end_inset
24578
24579
24580 \end_layout
24581
24582 \begin_layout Standard
24583 \begin_inset VSpace bigskip
24584 \end_inset
24585
24586 El diámetro de las esquinas de los cuadros ovalados se puede modificar con
24587  el comando 
24588 \series bold
24589
24590 \backslash
24591 cornersize
24592 \series default
24593 .
24594  El comando
24595 \end_layout
24596
24597 \begin_layout Standard
24598
24599 \series bold
24600
24601 \backslash
24602 cornersize*{1cm}
24603 \end_layout
24604
24605 \begin_layout Standard
24606 establece un diámetro de 1\InsetSpace \thinspace{}
24607 cm.
24608  El comando
24609 \end_layout
24610
24611 \begin_layout Standard
24612
24613 \series bold
24614
24615 \backslash
24616 cornersize{num}
24617 \end_layout
24618
24619 \begin_layout Standard
24620 fija el diámetro en 
24621 \family sans
24622 num\InsetSpace \thinspace{}
24623 ×\InsetSpace \thinspace{}
24624 minimo(ancho y alto del cuadro)
24625 \family default
24626 .
24627  Por defecto es 
24628 \series bold
24629
24630 \backslash
24631 cornersize{0.5}
24632 \series default
24633 .
24634 \end_layout
24635
24636 \begin_layout Standard
24637 \begin_inset ERT
24638 status collapsed
24639
24640 \begin_layout Standard
24641
24642
24643 \backslash
24644 cornersize*{1.5cm}
24645 \end_layout
24646
24647 \end_inset
24648
24649
24650 \begin_inset Box Ovalbox
24651 position "c"
24652 hor_pos "c"
24653 has_inner_box 1
24654 inner_pos "c"
24655 use_parbox 0
24656 width "28col%"
24657 special "none"
24658 height "1in"
24659 height_special "totalheight"
24660 status open
24661
24662 \begin_layout Standard
24663 \align center
24664 Cuadro ovalado con 
24665 \series bold
24666
24667 \backslash
24668 cornersize
24669 \series default
24670 \InsetSpace \thinspace{}
24671 =\InsetSpace \thinspace{}
24672 1.5\InsetSpace \thinspace{}
24673 cm
24674 \end_layout
24675
24676 \end_inset
24677
24678
24679 \begin_inset ERT
24680 status collapsed
24681
24682 \begin_layout Standard
24683
24684
24685 \backslash
24686 cornersize{0.5}
24687 \end_layout
24688
24689 \end_inset
24690
24691
24692 \end_layout
24693
24694 \begin_layout Standard
24695 \begin_inset VSpace bigskip
24696 \end_inset
24697
24698 El tamaño de la sombra se puede ajustar cambiando la longitud 
24699 \series bold
24700
24701 \backslash
24702 shadowsize
24703 \series default
24704 .
24705  Este comando la ajusta a 2\InsetSpace \thinspace{}
24706 pt en el cuadro siguiente:
24707 \end_layout
24708
24709 \begin_layout Standard
24710
24711 \series bold
24712
24713 \backslash
24714 setlength{
24715 \backslash
24716 shadowsize}{2pt}
24717 \end_layout
24718
24719 \begin_layout Standard
24720 \begin_inset ERT
24721 status collapsed
24722
24723 \begin_layout Standard
24724
24725
24726 \backslash
24727 setlength{
24728 \backslash
24729 shadowsize}{2pt}
24730 \end_layout
24731
24732 \end_inset
24733
24734
24735 \begin_inset Box Shadowbox
24736 position "c"
24737 hor_pos "c"
24738 has_inner_box 1
24739 inner_pos "c"
24740 use_parbox 0
24741 width "28col%"
24742 special "none"
24743 height "1in"
24744 height_special "totalheight"
24745 status open
24746
24747 \begin_layout Standard
24748 \align center
24749 Cuadro sombreado con 
24750 \series bold
24751
24752 \backslash
24753 shadowsize
24754 \series default
24755 \InsetSpace \thinspace{}
24756 =\InsetSpace \thinspace{}
24757 2\InsetSpace \thinspace{}
24758 pt
24759 \end_layout
24760
24761 \end_inset
24762
24763
24764 \begin_inset ERT
24765 status collapsed
24766
24767 \begin_layout Standard
24768
24769
24770 \backslash
24771 setlength{
24772 \backslash
24773 shadowsize}{4pt}
24774 \end_layout
24775
24776 \end_inset
24777
24778
24779 \end_layout
24780
24781 \begin_layout Standard
24782 \begin_inset VSpace bigskip
24783 \end_inset
24784
24785 Los cambios en las dimensiones son válidos para todos los cuadros que siguen
24786  a los comandos.
24787 \end_layout
24788
24789 \begin_layout Section
24790 Minipáginas
24791 \begin_inset LatexCommand label
24792 name "sec:Minipáginas"
24793
24794 \end_inset
24795
24796
24797 \begin_inset LatexCommand index
24798 name "Cuadros ! Minipáginas"
24799
24800 \end_inset
24801
24802
24803 \end_layout
24804
24805 \begin_layout Standard
24806 Las minipáginas son tratadas por LaTeX como páginas dentro de páginas y
24807  por tanto pueden tener, por ejemplo, sus propias notas al pie.
24808 \end_layout
24809
24810 \begin_layout Standard
24811 Las minipáginas son útiles para escribir documentos con distintos lenguajes.
24812 \end_layout
24813
24814 \begin_layout Standard
24815 A continuación hay dos ejemplos de minipáginas adosadas.
24816  Su anchura está puesta en 45\InsetSpace \thinspace{}
24817 col% y separadas por un relleno horizontal,
24818  insertado via el menú 
24819 \family sans
24820 Insertar\SpecialChar \menuseparator
24821 Formato\InsetSpace ~
24822
24823 \family default
24824 es
24825 \family sans
24826 pecial\InsetSpace ~
24827 \SpecialChar \menuseparator
24828 Relleno\InsetSpace ~
24829 horizontal
24830 \family default
24831 .
24832 \end_layout
24833
24834 \begin_layout Standard
24835 \begin_inset Box Frameless
24836 position "t"
24837 hor_pos "c"
24838 has_inner_box 1
24839 inner_pos "c"
24840 use_parbox 0
24841 width "45col%"
24842 special "none"
24843 height "1in"
24844 height_special "totalheight"
24845 status open
24846
24847 \begin_layout Standard
24848
24849 \lang german
24850 Dies ist ein deutscher Text.
24851  Dies ist ein deutscher Text.
24852  Dies ist ein deutscher Text.
24853  Dies ist ein deutscher Text.
24854  Dies ist ein deutscher Text.
24855  Dies ist ein deutscher Text.
24856  Dies ist ein deutscher Text.
24857  Dies ist ein deutscher Text.
24858  Dies ist ein deutscher Text.
24859  Dies ist ein deutscher Text.
24860  Dies ist ein deutscher Text.
24861  Dies ist ein deutscher Text.
24862  Dies ist ein deutscher Text
24863 \begin_inset Foot
24864 status collapsed
24865
24866 \begin_layout Standard
24867
24868 \lang german
24869 Dies ist eine deutsche Fußnote.
24870 \end_layout
24871
24872 \end_inset
24873
24874 .
24875  Dies ist ein deutscher Text.
24876  Dies ist ein deutscher Text.
24877 \end_layout
24878
24879 \end_inset
24880
24881
24882 \hfill
24883
24884 \begin_inset Box Frameless
24885 position "t"
24886 hor_pos "c"
24887 has_inner_box 1
24888 inner_pos "c"
24889 use_parbox 0
24890 width "45col%"
24891 special "none"
24892 height "1in"
24893 height_special "totalheight"
24894 status open
24895
24896 \begin_layout Standard
24897 This is an English Text.
24898  This is an English Text.
24899  This is an English Text.
24900  This is an English Text.
24901  This is an English Text.
24902  This is an English Text.
24903  This is an English Text.
24904  This is an English Text.
24905  This is an English Text.
24906  This is an English Text.
24907  This is an English Text.
24908  This is an English Text.
24909  This is an English Text.
24910  This is an English Text.
24911  This is an English Text.
24912  This is an English Text.
24913 \begin_inset Foot
24914 status collapsed
24915
24916 \begin_layout Standard
24917 This is an English footnote.
24918 \end_layout
24919
24920 \end_inset
24921
24922  This is an English Text.
24923  
24924 \end_layout
24925
24926 \end_inset
24927
24928
24929 \end_layout
24930
24931 \begin_layout Standard
24932 \begin_inset VSpace bigskip
24933 \end_inset
24934
24935 Otra aplicación de los cuadros son las notas a pie en tablas.
24936  Debido a una restricción de LaTeX las notas a pie en tablas no aparecen
24937  al final de la página actual.
24938  Pero si pones la tabla con notas al pie en una minipágina, las notas aparecen
24939  en la parte inferior, ordenadas con letras.
24940  La ordenación de las notas al pie se restablece en cada minipágina pero
24941  no fuera de las minipáginas.
24942 \end_layout
24943
24944 \begin_layout Standard
24945 La nota al pie en esta tabla no aparece: 
24946 \begin_inset Tabular
24947 <lyxtabular version="3" rows="3" columns="4">
24948 <features>
24949 <column alignment="center" valignment="top" leftline="true" width="0pt">
24950 <column alignment="center" valignment="top" leftline="true" width="0pt">
24951 <column alignment="center" valignment="top" leftline="true" width="0pt">
24952 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24953 <row topline="true">
24954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24955 \begin_inset Text
24956
24957 \begin_layout Standard
24958 1
24959 \end_layout
24960
24961 \end_inset
24962 </cell>
24963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24964 \begin_inset Text
24965
24966 \begin_layout Standard
24967 2
24968 \end_layout
24969
24970 \end_inset
24971 </cell>
24972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24973 \begin_inset Text
24974
24975 \begin_layout Standard
24976 3
24977 \begin_inset Foot
24978 status open
24979
24980 \begin_layout Standard
24981 Nota al pie en una tabla.
24982 \end_layout
24983
24984 \end_inset
24985
24986
24987 \end_layout
24988
24989 \end_inset
24990 </cell>
24991 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24992 \begin_inset Text
24993
24994 \begin_layout Standard
24995 4
24996 \end_layout
24997
24998 \end_inset
24999 </cell>
25000 </row>
25001 <row topline="true">
25002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25003 \begin_inset Text
25004
25005 \begin_layout Standard
25006 a
25007 \end_layout
25008
25009 \end_inset
25010 </cell>
25011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25012 \begin_inset Text
25013
25014 \begin_layout Standard
25015 b
25016 \end_layout
25017
25018 \end_inset
25019 </cell>
25020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25021 \begin_inset Text
25022
25023 \begin_layout Standard
25024 c
25025 \end_layout
25026
25027 \end_inset
25028 </cell>
25029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25030 \begin_inset Text
25031
25032 \begin_layout Standard
25033 d
25034 \end_layout
25035
25036 \end_inset
25037 </cell>
25038 </row>
25039 <row topline="true" bottomline="true">
25040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25041 \begin_inset Text
25042
25043 \begin_layout Standard
25044 e
25045 \end_layout
25046
25047 \end_inset
25048 </cell>
25049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25050 \begin_inset Text
25051
25052 \begin_layout Standard
25053 f
25054 \end_layout
25055
25056 \end_inset
25057 </cell>
25058 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25059 \begin_inset Text
25060
25061 \begin_layout Standard
25062 g
25063 \end_layout
25064
25065 \end_inset
25066 </cell>
25067 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25068 \begin_inset Text
25069
25070 \begin_layout Standard
25071 h
25072 \end_layout
25073
25074 \end_inset
25075 </cell>
25076 </row>
25077 </lyxtabular>
25078
25079 \end_inset
25080
25081
25082 \end_layout
25083
25084 \begin_layout Standard
25085 \align center
25086 \begin_inset Box Frameless
25087 position "t"
25088 hor_pos "c"
25089 has_inner_box 1
25090 inner_pos "c"
25091 use_parbox 0
25092 width "30col%"
25093 special "none"
25094 height "1in"
25095 height_special "totalheight"
25096 status open
25097
25098 \begin_layout Standard
25099 \align center
25100 \begin_inset Tabular
25101 <lyxtabular version="3" rows="3" columns="4">
25102 <features>
25103 <column alignment="center" valignment="top" leftline="true" width="0pt">
25104 <column alignment="center" valignment="top" leftline="true" width="0pt">
25105 <column alignment="center" valignment="top" leftline="true" width="0pt">
25106 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25107 <row topline="true">
25108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25109 \begin_inset Text
25110
25111 \begin_layout Standard
25112 1
25113 \end_layout
25114
25115 \end_inset
25116 </cell>
25117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25118 \begin_inset Text
25119
25120 \begin_layout Standard
25121 2
25122 \end_layout
25123
25124 \end_inset
25125 </cell>
25126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25127 \begin_inset Text
25128
25129 \begin_layout Standard
25130 3
25131 \begin_inset Foot
25132 status open
25133
25134 \begin_layout Standard
25135 Nota al pie en una tabla..
25136 \end_layout
25137
25138 \end_inset
25139
25140
25141 \end_layout
25142
25143 \end_inset
25144 </cell>
25145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25146 \begin_inset Text
25147
25148 \begin_layout Standard
25149 4
25150 \end_layout
25151
25152 \end_inset
25153 </cell>
25154 </row>
25155 <row topline="true">
25156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25157 \begin_inset Text
25158
25159 \begin_layout Standard
25160 a
25161 \end_layout
25162
25163 \end_inset
25164 </cell>
25165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25166 \begin_inset Text
25167
25168 \begin_layout Standard
25169 b
25170 \end_layout
25171
25172 \end_inset
25173 </cell>
25174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25175 \begin_inset Text
25176
25177 \begin_layout Standard
25178 c
25179 \end_layout
25180
25181 \end_inset
25182 </cell>
25183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25184 \begin_inset Text
25185
25186 \begin_layout Standard
25187 d
25188 \end_layout
25189
25190 \end_inset
25191 </cell>
25192 </row>
25193 <row topline="true" bottomline="true">
25194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25195 \begin_inset Text
25196
25197 \begin_layout Standard
25198 e
25199 \end_layout
25200
25201 \end_inset
25202 </cell>
25203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25204 \begin_inset Text
25205
25206 \begin_layout Standard
25207 f
25208 \end_layout
25209
25210 \end_inset
25211 </cell>
25212 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25213 \begin_inset Text
25214
25215 \begin_layout Standard
25216 g
25217 \end_layout
25218
25219 \end_inset
25220 </cell>
25221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25222 \begin_inset Text
25223
25224 \begin_layout Standard
25225 h
25226 \end_layout
25227
25228 \end_inset
25229 </cell>
25230 </row>
25231 </lyxtabular>
25232
25233 \end_inset
25234
25235
25236 \end_layout
25237
25238 \end_inset
25239
25240
25241 \end_layout
25242
25243 \begin_layout Standard
25244 \begin_inset VSpace bigskip
25245 \end_inset
25246
25247 La configuración global de párrafos se ignora en las minipáginas.
25248  Esto significa que en las mismas no habrá espacio entre párrafos aunque
25249  pongas p.\InsetSpace \thinspace{}
25250 e.\InsetSpace ~
25251
25252 \family sans
25253 Salto\InsetSpace ~
25254 medio
25255 \family default
25256  en la configuración del documento.
25257 \end_layout
25258
25259 \begin_layout Standard
25260 Las minipáginas también sirven para poner un color de fondo para partes
25261  de texto, ver sección\InsetSpace ~
25262
25263 \begin_inset LatexCommand ref
25264 reference "sub:Color-en-Párrafos"
25265
25266 \end_inset
25267
25268 .
25269 \end_layout
25270
25271 \begin_layout Standard
25272 \begin_inset Note Greyedout
25273 status open
25274
25275 \begin_layout Standard
25276
25277 \series bold
25278 Nota:
25279 \series default
25280  No puedes tener flotantes o notas al margen en minipáginas pero sí puedes
25281  tener minipáginas en tablas, flotantes, y otros cuadros.
25282 \end_layout
25283
25284 \end_inset
25285
25286
25287 \end_layout
25288
25289 \begin_layout Section
25290 Cuadros de Párrafo
25291 \begin_inset LatexCommand label
25292 name "sec:Cuadros-de-Párrafo"
25293
25294 \end_inset
25295
25296
25297 \begin_inset LatexCommand index
25298 name "Cuadros ! de Párrafo"
25299
25300 \end_inset
25301
25302
25303 \end_layout
25304
25305 \begin_layout Standard
25306 Los cuadros de párrafo son similares a las minipáginas con la diferencia
25307  de que no pueden contener notas al pie.
25308   La diferencia principal es que las minipáginas no son verdaderos cuadros
25309  sino entornos de LaTeX.
25310 \end_layout
25311
25312 \begin_layout Standard
25313 \align center
25314 \begin_inset Box Frameless
25315 position "t"
25316 hor_pos "c"
25317 has_inner_box 1
25318 inner_pos "t"
25319 use_parbox 1
25320 width "33col%"
25321 special "none"
25322 height "1in"
25323 height_special "totalheight"
25324 status collapsed
25325
25326 \begin_layout Standard
25327 Texto en un cuadro de párrafo.
25328  Texto en un cuadro de párrafo.
25329  Esta nota no aparece:
25330 \begin_inset Foot
25331 status open
25332
25333 \begin_layout Standard
25334 Esta es una nota en cuadro de párrafo y por eso no aparecerá.
25335 \end_layout
25336
25337 \end_inset
25338
25339
25340 \end_layout
25341
25342 \end_inset
25343
25344
25345 \end_layout
25346
25347 \begin_layout Section
25348 Cuadros para Palabras y Caracteres
25349 \begin_inset LatexCommand index
25350 name "Cuadros ! para Palabras y Caracteres"
25351
25352 \end_inset
25353
25354
25355 \end_layout
25356
25357 \begin_layout Subsection
25358 Evitar la Partición con Guiones
25359 \begin_inset LatexCommand label
25360 name "sec:Evitar-la-Partición-con-Guiones"
25361
25362 \end_inset
25363
25364
25365 \begin_inset LatexCommand index
25366 name "Cuadros ! Prevenir Partición con Guiones"
25367
25368 \end_inset
25369
25370
25371 \end_layout
25372
25373 \begin_layout Standard
25374 Hay un tipo especial de cuadro para impedir que una palabra sea partida
25375  con guión.
25376 \newline
25377 He aquí un ejemplo:
25378 \end_layout
25379
25380 \begin_layout Standard
25381 Esta línea es un ejemplo para mostrar cómo evitar la división de p.\InsetSpace \thinspace{}
25382 e.\InsetSpace ~
25383 estalarguísim
25384 apalabra.
25385 \end_layout
25386
25387 \begin_layout Standard
25388 Para evitar su división usa el comando
25389 \end_layout
25390
25391 \begin_layout Standard
25392
25393 \series bold
25394
25395 \backslash
25396 mbox{
25397 \end_layout
25398
25399 \begin_layout Standard
25400 en ERT antes de la palabra.
25401  Tras ella inserta una llave de cierre 
25402 \begin_inset Quotes eld
25403 \end_inset
25404
25405
25406 \series bold
25407 }
25408 \series default
25409
25410 \begin_inset Quotes erd
25411 \end_inset
25412
25413  en ERT.
25414 \begin_inset ERT
25415 status collapsed
25416
25417 \begin_layout Standard
25418
25419
25420 \backslash
25421 pagebreak 
25422 \end_layout
25423
25424 \end_inset
25425
25426
25427 \end_layout
25428
25429 \begin_layout Standard
25430 Este es el resultado:
25431 \end_layout
25432
25433 \begin_layout Standard
25434 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
25435 e.\InsetSpace ~
25436
25437 \begin_inset ERT
25438 status collapsed
25439
25440 \begin_layout Standard
25441
25442
25443 \backslash
25444 mbox{
25445 \end_layout
25446
25447 \end_inset
25448
25449 estalarguísimapalabra.
25450 \begin_inset ERT
25451 status collapsed
25452
25453 \begin_layout Standard
25454
25455 }
25456 \end_layout
25457
25458 \end_inset
25459
25460
25461 \end_layout
25462
25463 \begin_layout Standard
25464 Por supuesto, la palabra sobresale del margen.
25465  Para evitarlo añade, con el menú 
25466 \family sans
25467 Insertar\SpecialChar \menuseparator
25468 Formato\InsetSpace ~
25469 especial\InsetSpace ~
25470 \SpecialChar \menuseparator
25471 Salto\InsetSpace ~
25472 de\InsetSpace ~
25473
25474 \family default
25475 línea (atajo 
25476 \series bold
25477 Ctrl-Return
25478 \series default
25479 ), un salto de línea antes de la palabra:
25480 \end_layout
25481
25482 \begin_layout Standard
25483 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
25484 e.\InsetSpace ~
25485
25486 \newline
25487
25488 \begin_inset ERT
25489 status collapsed
25490
25491 \begin_layout Standard
25492
25493
25494 \backslash
25495 mbox{
25496 \end_layout
25497
25498 \end_inset
25499
25500 estalarguísimapalabra.
25501 \begin_inset ERT
25502 status collapsed
25503
25504 \begin_layout Standard
25505
25506 }
25507 \end_layout
25508
25509 \end_inset
25510
25511
25512 \end_layout
25513
25514 \begin_layout Subsection
25515 Alineación Vertical
25516 \begin_inset LatexCommand label
25517 name "sub:Alineación-Vertical"
25518
25519 \end_inset
25520
25521
25522 \begin_inset LatexCommand index
25523 name "Cuadros ! para Alineación Vertical"
25524
25525 \end_inset
25526
25527
25528 \end_layout
25529
25530 \begin_layout Standard
25531 Con ayuda del comando 
25532 \series bold
25533
25534 \backslash
25535 raisebox
25536 \series default
25537  puedes alinear verticalmente con el texto circundante palabras o caracteres.
25538  
25539 \series bold
25540
25541 \backslash
25542 raisebox
25543 \series default
25544  se utiliza según el esquema:
25545 \end_layout
25546
25547 \begin_layout Standard
25548
25549 \series bold
25550
25551 \backslash
25552 raisebox{elevación}[altura][profundidad]{contenido del cuadro}
25553 \end_layout
25554
25555 \begin_layout Standard
25556 La elevación puede ser un valor positivo para subir el cuadro o negativo
25557  para bajarlo.
25558 \end_layout
25559
25560 \begin_layout Standard
25561 Para alinear una palabra, p.\InsetSpace \thinspace{}
25562 e\InsetSpace ~
25563
25564 \begin_inset Quotes eld
25565 \end_inset
25566
25567 prevención
25568 \begin_inset Quotes erd
25569 \end_inset
25570
25571  para que la parte inferior de la letra más 
25572 \begin_inset Quotes eld
25573 \end_inset
25574
25575 profunda
25576 \begin_inset Quotes erd
25577 \end_inset
25578
25579  
25580 \begin_inset Quotes eld
25581 \end_inset
25582
25583 p
25584 \begin_inset Quotes erd
25585 \end_inset
25586
25587  esté en la línea de base, inserta el comando
25588 \end_layout
25589
25590 \begin_layout Standard
25591
25592 \series bold
25593
25594 \backslash
25595 raisebox{
25596 \backslash
25597 depth}{
25598 \end_layout
25599
25600 \begin_layout Standard
25601 en ERT antes de la palabra.
25602  Detrás de la palabra inserta una llave de cierre 
25603 \begin_inset Quotes eld
25604 \end_inset
25605
25606
25607 \series bold
25608 }
25609 \series default
25610
25611 \begin_inset Quotes erd
25612 \end_inset
25613
25614  en ERT.
25615 \newline
25616 Este es el resultado:
25617 \end_layout
25618
25619 \begin_layout Standard
25620 Esto es una línea de texto con la palabra 
25621 \begin_inset ERT
25622 status collapsed
25623
25624 \begin_layout Standard
25625
25626
25627 \backslash
25628 raisebox{
25629 \backslash
25630 depth}{
25631 \end_layout
25632
25633 \end_inset
25634
25635
25636 \begin_inset Quotes eld
25637 \end_inset
25638
25639 prevención
25640 \begin_inset Quotes erd
25641 \end_inset
25642
25643
25644 \begin_inset ERT
25645 status collapsed
25646
25647 \begin_layout Standard
25648
25649 }
25650 \end_layout
25651
25652 \end_inset
25653
25654  elevada.
25655 \end_layout
25656
25657 \begin_layout Standard
25658 \begin_inset VSpace bigskip
25659 \end_inset
25660
25661 Al subir o bajar caracteres en una línea, se modifica el espacio entre líneas:
25662 \end_layout
25663
25664 \begin_layout Standard
25665 Esto es una línea de texto con la palabra 
25666 \begin_inset ERT
25667 status collapsed
25668
25669 \begin_layout Standard
25670
25671
25672 \backslash
25673 raisebox{-
25674 \backslash
25675 depth}{
25676 \end_layout
25677
25678 \end_inset
25679
25680
25681 \begin_inset Quotes eld
25682 \end_inset
25683
25684 prevención
25685 \begin_inset Quotes erd
25686 \end_inset
25687
25688
25689 \begin_inset ERT
25690 status collapsed
25691
25692 \begin_layout Standard
25693
25694 }
25695 \end_layout
25696
25697 \end_inset
25698
25699  como palabra más baja.
25700 \newline
25701 Esto es una línea de texto con la palabra 
25702 \begin_inset ERT
25703 status collapsed
25704
25705 \begin_layout Standard
25706
25707
25708 \backslash
25709 raisebox{0.5cm}{
25710 \end_layout
25711
25712 \end_inset
25713
25714
25715 \begin_inset Quotes eld
25716 \end_inset
25717
25718 testigo
25719 \begin_inset Quotes erd
25720 \end_inset
25721
25722
25723 \begin_inset ERT
25724 status collapsed
25725
25726 \begin_layout Standard
25727
25728 }
25729 \end_layout
25730
25731 \end_inset
25732
25733  como palabra más alta.
25734 \end_layout
25735
25736 \begin_layout Standard
25737 Si por alguna razón quieres impedir esto, pon la altura de cuadro a cero.
25738  Por ejemplo
25739 \end_layout
25740
25741 \begin_layout Standard
25742
25743 \series bold
25744
25745 \backslash
25746 raisebox{-
25747 \backslash
25748 depth}[0pt]{
25749 \end_layout
25750
25751 \begin_layout Standard
25752 Esto es una línea de texto con la palabra 
25753 \begin_inset ERT
25754 status collapsed
25755
25756 \begin_layout Standard
25757
25758
25759 \backslash
25760 raisebox{-
25761 \backslash
25762 depth}[0pt]{
25763 \end_layout
25764
25765 \end_inset
25766
25767
25768 \begin_inset Quotes eld
25769 \end_inset
25770
25771 prevención
25772 \begin_inset Quotes erd
25773 \end_inset
25774
25775
25776 \begin_inset ERT
25777 status collapsed
25778
25779 \begin_layout Standard
25780
25781 }
25782 \end_layout
25783
25784 \end_inset
25785
25786  como palabra más baja.
25787 \newline
25788 Esto es una línea de texto con la palabra 
25789 \begin_inset ERT
25790 status collapsed
25791
25792 \begin_layout Standard
25793
25794
25795 \backslash
25796 raisebox{0.5cm}[0pt]{
25797 \end_layout
25798
25799 \end_inset
25800
25801
25802 \begin_inset Quotes eld
25803 \end_inset
25804
25805 testigo
25806 \begin_inset Quotes erd
25807 \end_inset
25808
25809
25810 \begin_inset ERT
25811 status collapsed
25812
25813 \begin_layout Standard
25814
25815 }
25816 \end_layout
25817
25818 \end_inset
25819
25820  como palabra más alta.
25821 \end_layout
25822
25823 \begin_layout Section
25824 Cuadros Coloreados
25825 \begin_inset LatexCommand label
25826 name "sec:Cuadros-Coloreados"
25827
25828 \end_inset
25829
25830
25831 \begin_inset LatexCommand index
25832 name "Cuadros ! Color"
25833
25834 \end_inset
25835
25836
25837 \end_layout
25838
25839 \begin_layout Subsection
25840 Color en Texto
25841 \begin_inset LatexCommand index
25842 name "Color ! en Texto"
25843
25844 \end_inset
25845
25846
25847 \end_layout
25848
25849 \begin_layout Standard
25850 Para colorear el fondo de un texto, éste debe ponerse en un cuadro coloreado.
25851  Esto requiere cargar el paquete LaTeX 
25852 \series bold
25853 color
25854 \series default
25855
25856 \begin_inset LatexCommand index
25857 name "LaTeX-paquetes ! color"
25858
25859 \end_inset
25860
25861  en el preámbulo del documento con
25862 \end_layout
25863
25864 \begin_layout Standard
25865
25866 \series bold
25867
25868 \backslash
25869 @ifundef\SpecialChar \textcompwordmark{}
25870 ined{textcolor}
25871 \newline
25872
25873 \begin_inset ERT
25874 status collapsed
25875
25876 \begin_layout Standard
25877
25878
25879 \backslash
25880 hphantom{ }
25881 \end_layout
25882
25883 \end_inset
25884
25885 {
25886 \backslash
25887 usepackage{color}}{}
25888 \end_layout
25889
25890 \begin_layout Standard
25891 LyX cargará automáticamente el paquete 
25892 \series bold
25893 color
25894 \series default
25895  cuando colorees texto
25896 \begin_inset Foot
25897 status collapsed
25898
25899 \begin_layout Standard
25900 Para evitar cargarlo dos veces se usa el comando 
25901 \series bold
25902
25903 \backslash
25904 @ifundef\SpecialChar \textcompwordmark{}
25905 ined
25906 \series default
25907 .
25908 \end_layout
25909
25910 \end_inset
25911
25912 .
25913 \end_layout
25914
25915 \begin_layout Standard
25916 \begin_inset VSpace medskip
25917 \end_inset
25918
25919 Los cuadros coloreados se crean con el comando 
25920 \series bold
25921
25922 \backslash
25923 colorbox
25924 \series default
25925 , de acuerdo con el siguiente esquema:
25926 \end_layout
25927
25928 \begin_layout Standard
25929
25930 \series bold
25931
25932 \backslash
25933 colorbox{color}{contenido del cuadro}
25934 \end_layout
25935
25936 \begin_layout Standard
25937 El contenido también puede ser un cuadro y los cuadros coloreados también
25938  pueden estar en otros cuadros.
25939 \end_layout
25940
25941 \begin_layout Standard
25942 Los siguientes colores están predefinidos:
25943 \newline
25944
25945 \family sans
25946 negro
25947 \family default
25948
25949 \family sans
25950 azul
25951 \family default
25952
25953 \family sans
25954 cyan
25955 \family default
25956 \series bold
25957 ,
25958 \series default
25959  
25960 \family sans
25961 verde
25962 \family default
25963
25964 \family sans
25965 magenta
25966 \family default
25967
25968 \family sans
25969 rojo
25970 \family default
25971
25972 \family sans
25973 blanco
25974 \family default
25975
25976 \family sans
25977 amarillo
25978 \family default
25979 .
25980 \newline
25981 También puedes definir tus propios colores según se explica en la sección\InsetSpace ~
25982
25983 \begin_inset LatexCommand ref
25984 reference "sec:Tablas-Coloreadas"
25985
25986 \end_inset
25987
25988 .
25989 \end_layout
25990
25991 \begin_layout Standard
25992 Por ejemplo, para poner fondo rojo a una palabra, inserta el comando
25993 \end_layout
25994
25995 \begin_layout Standard
25996
25997 \series bold
25998
25999 \backslash
26000 colorbox{red}{
26001 \end_layout
26002
26003 \begin_layout Standard
26004 en ERT antes de la palabra.
26005  Tras la palabra inserta una llave de cierre 
26006 \begin_inset Quotes eld
26007 \end_inset
26008
26009
26010 \series bold
26011 }
26012 \series default
26013
26014 \begin_inset Quotes erd
26015 \end_inset
26016
26017  en ERT.
26018 \newline
26019 Este es el resultado:
26020 \end_layout
26021
26022 \begin_layout Standard
26023 Línea en la que la palabra 
26024 \begin_inset ERT
26025 status collapsed
26026
26027 \begin_layout Standard
26028
26029
26030 \backslash
26031 colorbox{red}{
26032 \end_layout
26033
26034 \end_inset
26035
26036
26037 \begin_inset Quotes eld
26038 \end_inset
26039
26040 ¡Atención!
26041 \begin_inset Quotes erd
26042 \end_inset
26043
26044
26045 \begin_inset ERT
26046 status collapsed
26047
26048 \begin_layout Standard
26049
26050 }
26051 \end_layout
26052
26053 \end_inset
26054
26055  tiene fondo rojo.
26056 \end_layout
26057
26058 \begin_layout Standard
26059 \begin_inset VSpace bigskip
26060 \end_inset
26061
26062 Si quieres un marco de distinto color, puedes emplear el comando 
26063 \series bold
26064
26065 \backslash
26066 fcolorbox
26067 \series default
26068  con el esquema siguiente:
26069 \end_layout
26070
26071 \begin_layout Standard
26072
26073 \series bold
26074
26075 \backslash
26076 fcolorbox{color del marco}{color del cuadro}{contenido del cuadro}
26077 \end_layout
26078
26079 \begin_layout Standard
26080
26081 \series bold
26082
26083 \backslash
26084 fcolorbox
26085 \series default
26086  es una extensión de 
26087 \series bold
26088
26089 \backslash
26090 colorbox
26091 \series default
26092 .
26093  El grosor del marco y el espacio entre él y el contenido se puede ajustar
26094  con las longitudes 
26095 \series bold
26096
26097 \backslash
26098 fboxrule
26099 \series default
26100  y 
26101 \series bold
26102
26103 \backslash
26104 fboxsep
26105 \series default
26106 , respectivamente, como se describe en la sección\InsetSpace ~
26107
26108 \begin_inset LatexCommand ref
26109 reference "sec:Cuadros-Enmarcados"
26110
26111 \end_inset
26112
26113 .
26114 \end_layout
26115
26116 \begin_layout Standard
26117 Para el ejemplo siguiente se ha utilizado el comando
26118 \end_layout
26119
26120 \begin_layout Standard
26121
26122 \series bold
26123
26124 \backslash
26125 fcolorbox{cyan}{magenta}{
26126 \end_layout
26127
26128 \begin_layout Standard
26129 Este es un ejemplo en el que se ha puesto un grosor de 1\InsetSpace \thinspace{}
26130 mm para la línea
26131  del marco:
26132 \newline
26133
26134 \begin_inset ERT
26135 status collapsed
26136
26137 \begin_layout Standard
26138
26139
26140 \backslash
26141 fboxrule 1mm 
26142 \backslash
26143 fboxsep 1mm
26144 \end_layout
26145
26146 \end_inset
26147
26148
26149 \begin_inset ERT
26150 status collapsed
26151
26152 \begin_layout Standard
26153
26154
26155 \backslash
26156 fcolorbox{cyan}{magenta}{
26157 \end_layout
26158
26159 \end_inset
26160
26161 Texto en un marco coloreado y enmarcado.
26162 \begin_inset ERT
26163 status collapsed
26164
26165 \begin_layout Standard
26166
26167 }
26168 \end_layout
26169
26170 \end_inset
26171
26172
26173 \end_layout
26174
26175 \begin_layout Standard
26176 \begin_inset VSpace bigskip
26177 \end_inset
26178
26179 Por supuesto también puedes colorear el texto en un marco coloreado:
26180 \newline
26181
26182 \begin_inset ERT
26183 status collapsed
26184
26185 \begin_layout Standard
26186
26187
26188 \backslash
26189 fcolorbox{cyan}{magenta}{
26190 \end_layout
26191
26192 \end_inset
26193
26194
26195 \color yellow
26196 Texto coloreado en un marco sombreado y coloreado.
26197 \color none
26198
26199 \begin_inset ERT
26200 status collapsed
26201
26202 \begin_layout Standard
26203
26204 }
26205 \end_layout
26206
26207 \end_inset
26208
26209
26210 \begin_inset ERT
26211 status collapsed
26212
26213 \begin_layout Standard
26214
26215
26216 \backslash
26217 fboxrule 0.4pt 
26218 \backslash
26219 fboxsep 3pt
26220 \end_layout
26221
26222 \end_inset
26223
26224
26225 \end_layout
26226
26227 \begin_layout Standard
26228
26229 \series bold
26230 \begin_inset VSpace medskip
26231 \end_inset
26232
26233
26234 \end_layout
26235
26236 \begin_layout Standard
26237 \begin_inset Note Greyedout
26238 status open
26239
26240 \begin_layout Standard
26241
26242 \series bold
26243 Nota:
26244 \series default
26245  El texto en cuadros coloreados no puede tener saltos de línea.
26246  Para colorear líneas o párrafos múltiples, usa un cuadro dentro de un cuadro
26247  coloreado como se describe a continuación.
26248 \end_layout
26249
26250 \end_inset
26251
26252
26253 \end_layout
26254
26255 \begin_layout Subsection
26256 Color en Párrafos
26257 \begin_inset LatexCommand label
26258 name "sub:Color-en-Párrafos"
26259
26260 \end_inset
26261
26262
26263 \begin_inset LatexCommand index
26264 name "Color ! en Párrafos"
26265
26266 \end_inset
26267
26268
26269 \end_layout
26270
26271 \begin_layout Standard
26272 Para poner color de fondo en más de una línea, pon el texto en una minipágina.
26273  Antes de la minipágina inserta el comando 
26274 \series bold
26275
26276 \backslash
26277 colorbox
26278 \end_layout
26279
26280 \begin_layout Standard
26281
26282 \series bold
26283
26284 \backslash
26285 colorbox{color}{
26286 \end_layout
26287
26288 \begin_layout Standard
26289 en ERT.
26290  Detrás de la minipágina inserta una llave de cierre 
26291 \begin_inset Quotes eld
26292 \end_inset
26293
26294
26295 \series bold
26296 }
26297 \series default
26298
26299 \begin_inset Quotes erd
26300 \end_inset
26301
26302  en ERT.
26303 \end_layout
26304
26305 \begin_layout Standard
26306 \begin_inset ERT
26307 status collapsed
26308
26309 \begin_layout Standard
26310
26311
26312 \backslash
26313 colorbox{grisclaro}{
26314 \end_layout
26315
26316 \end_inset
26317
26318
26319 \begin_inset Box Frameless
26320 position "t"
26321 hor_pos "c"
26322 has_inner_box 1
26323 inner_pos "t"
26324 use_parbox 0
26325 width "100col%"
26326 special "none"
26327 height "1in"
26328 height_special "totalheight"
26329 status open
26330
26331 \begin_layout Standard
26332 Texto con color de fondo.
26333  Texto con color de fondo.
26334 \end_layout
26335
26336 \begin_layout Standard
26337 \begin_inset VSpace defskip
26338 \end_inset
26339
26340 El texto puede tener notas al pie
26341 \begin_inset Foot
26342 status open
26343
26344 \begin_layout Standard
26345 Otro ejemplo de nota
26346 \end_layout
26347
26348 \end_inset
26349
26350  y puede incluir tablas y figuras.
26351 \end_layout
26352
26353 \begin_layout Standard
26354 \align center
26355 \begin_inset Tabular
26356 <lyxtabular version="3" rows="3" columns="3">
26357 <features>
26358 <column alignment="center" valignment="top" leftline="true" width="0">
26359 <column alignment="center" valignment="top" leftline="true" width="0">
26360 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26361 <row topline="true">
26362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26363 \begin_inset Text
26364
26365 \begin_layout Standard
26366 a
26367 \end_layout
26368
26369 \end_inset
26370 </cell>
26371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26372 \begin_inset Text
26373
26374 \begin_layout Standard
26375 !
26376 \end_layout
26377
26378 \end_inset
26379 </cell>
26380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26381 \begin_inset Text
26382
26383 \begin_layout Standard
26384 3
26385 \end_layout
26386
26387 \end_inset
26388 </cell>
26389 </row>
26390 <row topline="true">
26391 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26392 \begin_inset Text
26393
26394 \begin_layout Standard
26395 <
26396 \end_layout
26397
26398 \end_inset
26399 </cell>
26400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26401 \begin_inset Text
26402
26403 \begin_layout Standard
26404 b2
26405 \begin_inset Quotes erd
26406 \end_inset
26407
26408 |
26409 \end_layout
26410
26411 \end_inset
26412 </cell>
26413 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26414 \begin_inset Text
26415
26416 \begin_layout Standard
26417 >
26418 \end_layout
26419
26420 \end_inset
26421 </cell>
26422 </row>
26423 <row topline="true" bottomline="true">
26424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26425 \begin_inset Text
26426
26427 \begin_layout Standard
26428 1
26429 \end_layout
26430
26431 \end_inset
26432 </cell>
26433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26434 \begin_inset Text
26435
26436 \begin_layout Standard
26437 §
26438 \end_layout
26439
26440 \end_inset
26441 </cell>
26442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26443 \begin_inset Text
26444
26445 \begin_layout Standard
26446 c
26447 \end_layout
26448
26449 \end_inset
26450 </cell>
26451 </row>
26452 </lyxtabular>
26453
26454 \end_inset
26455
26456
26457 \end_layout
26458
26459 \end_inset
26460
26461
26462 \begin_inset ERT
26463 status collapsed
26464
26465 \begin_layout Standard
26466
26467 }
26468 \end_layout
26469
26470 \end_inset
26471
26472
26473 \end_layout
26474
26475 \begin_layout Section
26476 URLs (Localizador Uniforme de Recursos)
26477 \begin_inset LatexCommand index
26478 name "URLs"
26479
26480 \end_inset
26481
26482
26483 \end_layout
26484
26485 \begin_layout Standard
26486 Los enlaces a páginas web o direcciones de correo se insertan con el menú
26487  
26488 \family sans
26489 Insertar\SpecialChar \menuseparator
26490 URL
26491 \family default
26492 .
26493  Surge un diálogo con dos campos; el campo 
26494 \family sans
26495 URL
26496 \family default
26497  y el campo 
26498 \family sans
26499 Nombre
26500 \family default
26501  para la descripción del URL, que saldrá impreso como texto normal inmediatament
26502 e antes del URL.
26503 \end_layout
26504
26505 \begin_layout Standard
26506 He aquí un ejemplo de URL: 
26507 \begin_inset LatexCommand url
26508 name "Página de LyX"
26509 target "http://www.lyx.org"
26510
26511 \end_inset
26512
26513
26514 \end_layout
26515
26516 \begin_layout Standard
26517 La opción 
26518 \family sans
26519 Generar\InsetSpace ~
26520 hiperenlace
26521 \family default
26522  en el diálogo URL sólo tiene efecto al exportar el documento al formato
26523  
26524 \begin_inset Quotes eld
26525 \end_inset
26526
26527
26528 \family sans
26529 LinuxDoc
26530 \family default
26531
26532 \begin_inset Quotes erd
26533 \end_inset
26534
26535 .
26536 \end_layout
26537
26538 \begin_layout Standard
26539 No se puede cambiar el estilo del texto del enlace.
26540  El texto del campo 
26541 \family sans
26542 Nombre
26543 \family default
26544  tendrá el estilo de texto predeterminado para el documento mientras que
26545  el texto del campo 
26546 \family sans
26547 URL
26548 \family default
26549  tendrá el estilo 
26550 \begin_inset Quotes eld
26551 \end_inset
26552
26553
26554 \family sans
26555 Typewriter
26556 \family default
26557
26558 \begin_inset Quotes erd
26559 \end_inset
26560
26561 .
26562 \end_layout
26563
26564 \begin_layout Standard
26565 Cuando usas el paquete LaTeX 
26566 \series bold
26567 hyperref
26568 \series default
26569
26570 \begin_inset LatexCommand index
26571 name "LaTeX-paquetes ! hyperref"
26572
26573 \end_inset
26574
26575  para enlazar referencias cruzadas, en las salidas DVI y PDF los URLs se
26576  convierten automáticamente en hiperenlaces disponibles.
26577 \end_layout
26578
26579 \begin_layout Standard
26580 \begin_inset Note Greyedout
26581 status open
26582
26583 \begin_layout Standard
26584
26585 \series bold
26586 Nota:
26587 \series default
26588  Cuando utilices los caracteres: "%", "#", "^", debes escribirlos precedidos
26589  por una barra invertida, p.\InsetSpace \thinspace{}
26590 e.\InsetSpace ~
26591
26592 \begin_inset Quotes eld
26593 \end_inset
26594
26595
26596 \backslash
26597 #
26598 \begin_inset Quotes erd
26599 \end_inset
26600
26601 .
26602  Los URLs no deben finalizar con una barra invertida.
26603 \end_layout
26604
26605 \end_inset
26606
26607
26608 \end_layout
26609
26610 \begin_layout Standard
26611 \begin_inset VSpace bigskip
26612 \end_inset
26613
26614 Para crear hiperenlaces reales sin tener que escribir la dirección del enlace
26615  en el texto, puedes usar el comando
26616 \end_layout
26617
26618 \begin_layout Standard
26619
26620 \series bold
26621
26622 \backslash
26623 href{dirección del enlace}{texto del enlace}
26624 \end_layout
26625
26626 \begin_layout Standard
26627 en ERT.
26628  Por ejemplo, para conseguir un enlace a la página web de LyX, escribe el
26629  comando
26630 \end_layout
26631
26632 \begin_layout Standard
26633
26634 \series bold
26635
26636 \backslash
26637 href{http://www.lyx.org}{
26638 \end_layout
26639
26640 \begin_layout Standard
26641 en ERT.
26642  Inserta después del comando el texto del enlace 
26643 \begin_inset Quotes eld
26644 \end_inset
26645
26646 Página de LyX
26647 \begin_inset Quotes erd
26648 \end_inset
26649
26650  seguido por una llave en ERT.
26651  Este es el resultado: 
26652 \begin_inset ERT
26653 status collapsed
26654
26655 \begin_layout Standard
26656
26657
26658 \backslash
26659 href{http://www.lyx.org}{
26660 \end_layout
26661
26662 \end_inset
26663
26664 Página de LyX
26665 \begin_inset ERT
26666 status collapsed
26667
26668 \begin_layout Standard
26669
26670 }
26671 \end_layout
26672
26673 \end_inset
26674
26675
26676 \end_layout
26677
26678 \begin_layout Standard
26679 Para enlazar a direcciones de correo, añade el prefijo 
26680 \begin_inset Quotes eld
26681 \end_inset
26682
26683
26684 \family sans
26685 mailto:
26686 \family default
26687
26688 \begin_inset Quotes erd
26689 \end_inset
26690
26691  a la dirección del enlace:
26692 \newline
26693 Correo para 
26694 \begin_inset ERT
26695 status collapsed
26696
26697 \begin_layout Standard
26698
26699
26700 \backslash
26701 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26702 \end_layout
26703
26704 \end_inset
26705
26706 la lista de correo de documentación de LyX (lyx-docs)
26707 \begin_inset ERT
26708 status collapsed
26709
26710 \begin_layout Standard
26711
26712 }
26713 \end_layout
26714
26715 \end_inset
26716
26717 .
26718 \end_layout
26719
26720 \begin_layout Standard
26721 Emplear 
26722 \series bold
26723
26724 \backslash
26725 href
26726 \series default
26727  en vez del cuadro URL de LyX tiene la ventaja de que puedes especificar
26728  el estilo de texto del enlace como en las demás partes del texto.
26729  Puedes poner guiones y saltos de línea forzados para dividir textos extensos
26730  de enlaces en el margen de página.
26731  También puedes cambiar el estilo de texto para todos los URLs en el documento
26732  con una opción en el comando de carga de 
26733 \series bold
26734 hyperref
26735 \series default
26736 .
26737  Además las restricciones mencionadas antes no se aplican a 
26738 \series bold
26739
26740 \backslash
26741 href
26742 \series default
26743 .
26744  
26745 \end_layout
26746
26747 \begin_layout Chapter
26748
26749 \lang english
26750 External Stuff
26751 \begin_inset LatexCommand index
26752 name "External Stuff"
26753
26754 \end_inset
26755
26756
26757 \end_layout
26758
26759 \begin_layout Standard
26760
26761 \lang english
26762 With the menu 
26763 \family sans
26764 Insert\SpecialChar \menuseparator
26765 File
26766 \family default
26767  you can insert external material to your document.
26768  This can be:
26769 \end_layout
26770
26771 \begin_layout Description
26772
26773 \lang english
26774 LyX\InsetSpace ~
26775 Document Another LyX document; its content is directly inserted to your
26776  document.
26777 \end_layout
26778
26779 \begin_layout Description
26780
26781 \lang english
26782 Plain\InsetSpace ~
26783 Text A text document; every of its text lines is inserted to your document
26784  as own paragraph.
26785 \end_layout
26786
26787 \begin_layout Description
26788
26789 \lang english
26790 Plain\InsetSpace ~
26791 Text,\InsetSpace ~
26792 Join\InsetSpace ~
26793 Lines A text document; its text lines are inserted as they
26794  are.
26795  Empty text lines creates a new paragraph in your document.
26796 \end_layout
26797
26798 \begin_layout Description
26799
26800 \lang english
26801 External\InsetSpace ~
26802 Material Files in various formats.
26803 \end_layout
26804
26805 \begin_layout Description
26806
26807 \lang english
26808 Child\InsetSpace ~
26809 Document LyX or LaTeX-documents.
26810 \end_layout
26811
26812 \begin_layout Section
26813
26814 \lang english
26815 External Material
26816 \begin_inset LatexCommand index
26817 name "External Stuff ! External Material"
26818
26819 \end_inset
26820
26821
26822 \end_layout
26823
26824 \begin_layout Standard
26825
26826 \lang english
26827 The external material feature allows you to insert files to your document
26828  without converting them previously to a format that can be read by the
26829  document output format because LyX takes care of needed conversions.
26830  This is similar to images that can be inserted in various image formats
26831  to LyX documents.
26832 \end_layout
26833
26834 \begin_layout Standard
26835
26836 \lang english
26837 External material can be inserted via the 
26838 \family sans
26839 External Material
26840 \family default
26841  dialog that is accessible with the menu 
26842 \family sans
26843 Insert\SpecialChar \menuseparator
26844 File\SpecialChar \menuseparator
26845 External\InsetSpace ~
26846 Material
26847 \family default
26848 .
26849  Currently the following file types (
26850 \family sans
26851 Templates
26852 \family default
26853 ) are allowed:
26854 \end_layout
26855
26856 \begin_layout Description
26857
26858 \lang english
26859 ChessDiagram This template supports chess position diagrams made with the
26860  program 
26861 \begin_inset ERT
26862 status collapsed
26863
26864 \begin_layout Standard
26865
26866
26867 \backslash
26868 href{http://en.wikipedia.org/wiki/XBoard}{
26869 \end_layout
26870
26871 \end_inset
26872
26873
26874 \series bold
26875 XBoard
26876 \series default
26877
26878 \begin_inset ERT
26879 status collapsed
26880
26881 \begin_layout Standard
26882
26883 }
26884 \end_layout
26885
26886 \end_inset
26887
26888 .
26889 \end_layout
26890
26891 \begin_layout Description
26892
26893 \lang english
26894 Date This inserts the date in the form 
26895 \emph on
26896 Date-Month-Year
26897 \emph default
26898 .
26899  This is a date inserted as external material: 
26900 \begin_inset External
26901         template Date
26902         filename ..
26903
26904 \end_inset
26905
26906
26907 \newline
26908 The date is not shown within LyX, only in the output.
26909  There are two other methods of inserting a date, via menu 
26910 \family sans
26911 Insert\SpecialChar \menuseparator
26912 Date
26913 \family default
26914  and with the LaTeX command 
26915 \series bold
26916
26917 \backslash
26918 today
26919 \series default
26920  as ERT.
26921  The different methods are compared in Table\InsetSpace ~
26922
26923 \begin_inset LatexCommand ref
26924 reference "tab:Comparison-of-the"
26925
26926 \end_inset
26927
26928 .
26929 \end_layout
26930
26931 \begin_layout Description
26932
26933 \lang english
26934 LilyPond This template is used for music notation typeset with the program
26935 \begin_inset ERT
26936 status collapsed
26937
26938 \begin_layout Standard
26939
26940
26941 \backslash
26942 linebreak 
26943 \end_layout
26944
26945 \end_inset
26946
26947
26948 \begin_inset ERT
26949 status collapsed
26950
26951 \begin_layout Standard
26952
26953
26954 \backslash
26955 href{http://en.wikipedia.org/wiki/LilyPond}{
26956 \end_layout
26957
26958 \end_inset
26959
26960
26961 \series bold
26962 LilyPond
26963 \series default
26964
26965 \begin_inset ERT
26966 status collapsed
26967
26968 \begin_layout Standard
26969
26970 }
26971 \end_layout
26972
26973 \end_inset
26974
26975 .
26976 \begin_inset Note Note
26977 status collapsed
26978
26979 \begin_layout Standard
26980
26981 \lang english
26982 The command 
26983 \series bold
26984
26985 \backslash
26986 linebreak
26987 \series default
26988  breaks the line while the remaining text in the line is stretched to the
26989  page margin.
26990 \end_layout
26991
26992 \end_inset
26993
26994
26995 \end_layout
26996
26997 \begin_layout Description
26998
26999 \lang english
27000 RasterImage This can be used for bitmap images.
27001  Nearly all popular image formats are supported.
27002  The image can be treated in the 
27003 \family sans
27004 External material
27005 \family default
27006  dialog like the images that are usually included via the 
27007 \family sans
27008 Graphics
27009 \family default
27010  dialog as described in section\InsetSpace ~
27011
27012 \begin_inset LatexCommand ref
27013 reference "sec:Graphics-Dialog"
27014
27015 \end_inset
27016
27017 .
27018  The difference is that only raster images are allowed, that means that
27019  PDF and EPS-images are not supported.
27020 \end_layout
27021
27022 \begin_layout Description
27023
27024 \lang english
27025 XFig This template supports images created with the program 
27026 \begin_inset ERT
27027 status collapsed
27028
27029 \begin_layout Standard
27030
27031
27032 \backslash
27033 href{http://en.wikipedia.org/wiki/Xfig}{
27034 \end_layout
27035
27036 \end_inset
27037
27038
27039 \series bold
27040 Xfig
27041 \series default
27042
27043 \begin_inset ERT
27044 status collapsed
27045
27046 \begin_layout Standard
27047
27048 }
27049 \end_layout
27050
27051 \end_inset
27052
27053 .
27054 \end_layout
27055
27056 \begin_layout Standard
27057 \begin_inset Float table
27058 placement h
27059 wide false
27060 sideways false
27061 status open
27062
27063 \begin_layout Standard
27064 \begin_inset Caption
27065
27066 \begin_layout Standard
27067 \begin_inset LatexCommand label
27068 name "tab:Comparison-of-the"
27069
27070 \end_inset
27071
27072
27073 \lang english
27074 Comparison of the date input methods.
27075 \end_layout
27076
27077 \end_inset
27078
27079
27080 \end_layout
27081
27082 \begin_layout Standard
27083 \align center
27084 \begin_inset Tabular
27085 <lyxtabular version="3" rows="4" columns="4">
27086 <features>
27087 <column alignment="center" valignment="top" leftline="true" width="0">
27088 <column alignment="center" valignment="top" leftline="true" width="0">
27089 <column alignment="center" valignment="top" leftline="true" width="0">
27090 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27091 <row topline="true">
27092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27093 \begin_inset Text
27094
27095 \begin_layout Standard
27096 Document format
27097 \end_layout
27098
27099 \end_inset
27100 </cell>
27101 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27102 \begin_inset Text
27103
27104 \begin_layout Standard
27105
27106 \family sans
27107 External Material\SpecialChar \menuseparator
27108 Date
27109 \end_layout
27110
27111 \end_inset
27112 </cell>
27113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27114 \begin_inset Text
27115
27116 \begin_layout Standard
27117
27118 \family sans
27119 Insert\SpecialChar \menuseparator
27120 Date
27121 \end_layout
27122
27123 \end_inset
27124 </cell>
27125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27126 \begin_inset Text
27127
27128 \begin_layout Standard
27129 command 
27130 \series bold
27131
27132 \backslash
27133 today
27134 \end_layout
27135
27136 \end_inset
27137 </cell>
27138 </row>
27139 <row topline="true">
27140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27141 \begin_inset Text
27142
27143 \begin_layout Standard
27144 LyX
27145 \end_layout
27146
27147 \end_inset
27148 </cell>
27149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27150 \begin_inset Text
27151
27152 \begin_layout Standard
27153 as inset box
27154 \end_layout
27155
27156 \end_inset
27157 </cell>
27158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27159 \begin_inset Text
27160
27161 \begin_layout Standard
27162 as date
27163 \end_layout
27164
27165 \end_inset
27166 </cell>
27167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27168 \begin_inset Text
27169
27170 \begin_layout Standard
27171 as ERT inset box
27172 \end_layout
27173
27174 \end_inset
27175 </cell>
27176 </row>
27177 <row topline="true">
27178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27179 \begin_inset Text
27180
27181 \begin_layout Standard
27182 LaTeX
27183 \end_layout
27184
27185 \end_inset
27186 </cell>
27187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27188 \begin_inset Text
27189
27190 \begin_layout Standard
27191 as date
27192 \end_layout
27193
27194 \end_inset
27195 </cell>
27196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27197 \begin_inset Text
27198
27199 \begin_layout Standard
27200 as date
27201 \end_layout
27202
27203 \end_inset
27204 </cell>
27205 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27206 \begin_inset Text
27207
27208 \begin_layout Standard
27209 as command
27210 \end_layout
27211
27212 \end_inset
27213 </cell>
27214 </row>
27215 <row topline="true" bottomline="true">
27216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27217 \begin_inset Text
27218
27219 \begin_layout Standard
27220 DVI, PDF, PS
27221 \end_layout
27222
27223 \end_inset
27224 </cell>
27225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27226 \begin_inset Text
27227
27228 \begin_layout Standard
27229 as date
27230 \end_layout
27231
27232 \end_inset
27233 </cell>
27234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27235 \begin_inset Text
27236
27237 \begin_layout Standard
27238 as date
27239 \end_layout
27240
27241 \end_inset
27242 </cell>
27243 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27244 \begin_inset Text
27245
27246 \begin_layout Standard
27247 as date
27248 \end_layout
27249
27250 \end_inset
27251 </cell>
27252 </row>
27253 </lyxtabular>
27254
27255 \end_inset
27256
27257
27258 \end_layout
27259
27260 \end_inset
27261
27262
27263 \end_layout
27264
27265 \begin_layout Standard
27266
27267 \lang english
27268 When you use the option 
27269 \family sans
27270 Draft
27271 \family default
27272  in the 
27273 \family sans
27274 File
27275 \family default
27276  tab of the 
27277 \family sans
27278 External Material
27279 \family default
27280  dialog, only the path to the inserted file is shown in the output.
27281 \newline
27282 External
27283  material is displayed in LyX either as box like this: 
27284 \begin_inset Graphics
27285         filename ../clipart/ExternalMaterialQt4.png
27286         scale 85
27287
27288 \end_inset
27289
27290  or as image, depending on the setting in the 
27291 \family sans
27292 LyX\InsetSpace ~
27293 View
27294 \family default
27295  tab of the 
27296 \family sans
27297 External Material
27298 \family default
27299  dialog.
27300 \end_layout
27301
27302 \begin_layout Standard
27303
27304 \lang english
27305 The 
27306 \family sans
27307 \emph on
27308 Customization
27309 \family default
27310 \emph default
27311  manual explains how you can define your own templates.
27312 \end_layout
27313
27314 \begin_layout Section
27315
27316 \lang english
27317 Child Documents
27318 \begin_inset LatexCommand index
27319 name "External Stuff ! Child Documents"
27320
27321 \end_inset
27322
27323
27324 \begin_inset LatexCommand index
27325 name "Files ! Include"
27326
27327 \end_inset
27328
27329
27330 \end_layout
27331
27332 \begin_layout Standard
27333
27334 \lang english
27335 Child documents are used when you have a long document consisting of several
27336  larger parts or sections.
27337  For maintenance it is often useful and sometimes even required to split
27338  the document in several files that can be revised separately.
27339  The different documents are then the so called child documents and a master
27340  document connects them to print the full document or parts of it.
27341 \end_layout
27342
27343 \begin_layout Standard
27344
27345 \lang english
27346 Included documents are displayed in LyX as a box like this: 
27347 \begin_inset Graphics
27348         filename ../clipart/ChildDocumentQt4.png
27349         scale 85
27350
27351 \end_inset
27352
27353  To include child documents to a master document use the menu 
27354 \family sans
27355 Insert\SpecialChar \menuseparator
27356 File\SpecialChar \menuseparator
27357 Child\InsetSpace ~
27358 Documents
27359 \family default
27360 .
27361  A dialog pops up where you can choose between three include methods:
27362 \end_layout
27363
27364 \begin_layout Description
27365
27366 \lang english
27367 Include You can include LyX and LaTeX-documents.
27368  When you press the 
27369 \family sans
27370 Load
27371 \family default
27372  button in the 
27373 \family sans
27374 Child Document
27375 \family default
27376  dialog, the included documents will be opened in LyX in a new file tab
27377  so that you can modify it.
27378 \newline
27379
27380 \end_layout
27381
27382 \begin_layout Standard
27383
27384 \lang english
27385 Here is a child document inserted using 
27386 \family sans
27387 Include
27388 \family default
27389
27390 \begin_inset Include \include{DummyDocument1.lyx}
27391 preview false
27392
27393 \end_inset
27394
27395
27396 \end_layout
27397
27398 \begin_layout Standard
27399
27400 \lang english
27401 The section numbering includes the sections of the included files in the
27402  order they are inserted in the master document.
27403  The included example document has for example a subsection that is numbered
27404  as subsection of this section.
27405  Labels of included documents can be referenced: Subsection\InsetSpace ~
27406
27407 \begin_inset LatexCommand ref
27408 reference "sub:External-Subsection-1"
27409
27410 \end_inset
27411
27412
27413 \end_layout
27414
27415 \begin_layout Standard
27416
27417 \lang english
27418 The preamble of the child document is ignored, only the preamble of the
27419  master document is used.
27420  Included documents are inserted starting on a new page and end with a pagebreak.
27421 \end_layout
27422
27423 \begin_layout Standard
27424
27425 \lang english
27426 With the LaTeX-command 
27427 \series bold
27428
27429 \backslash
27430 includeonly 
27431 \series default
27432 you can specify which included child documents are processed when the output
27433  is generated.
27434  This is useful when you are perhaps only working on a certain chapter of
27435  your large document as this saves compiling time.
27436  
27437 \series bold
27438
27439 \backslash
27440 includeonly
27441 \series default
27442  is inserted to the master document preamble.
27443  It takes a comma-separated list of the filenames as argument, e.g.
27444 \end_layout
27445
27446 \begin_layout Standard
27447
27448 \series bold
27449 \lang english
27450
27451 \backslash
27452 includeonly{chapter1,chapter5}
27453 \end_layout
27454
27455 \begin_layout Standard
27456
27457 \lang english
27458 will only process the included files named 
27459 \begin_inset Quotes eld
27460 \end_inset
27461
27462 chapter1.lyx
27463 \begin_inset Quotes erd
27464 \end_inset
27465
27466  (or 
27467 \begin_inset Quotes eld
27468 \end_inset
27469
27470 chapter1.tex
27471 \begin_inset Quotes erd
27472 \end_inset
27473
27474 ) and 
27475 \begin_inset Quotes eld
27476 \end_inset
27477
27478 chapter5.lyx
27479 \begin_inset Quotes erd
27480 \end_inset
27481
27482  .
27483 \end_layout
27484
27485 \begin_layout Standard
27486
27487 \lang english
27488 \begin_inset Note Greyedout
27489 status open
27490
27491 \begin_layout Standard
27492
27493 \series bold
27494 \lang english
27495 Note:
27496 \series default
27497  When you have included a LyX- or LaTeX-file, you are warned when you export/vie
27498 w the document in case that the child document uses another document class
27499  than the master document as this will lead to unexpected outputs.
27500 \end_layout
27501
27502 \end_inset
27503
27504
27505 \end_layout
27506
27507 \begin_layout Description
27508
27509 \lang english
27510 Input This method is very similar to the Include method.
27511  The differences are:
27512 \end_layout
27513
27514 \begin_deeper
27515 \begin_layout Itemize
27516
27517 \lang english
27518 Input files don't start with a new page and don't end with a pagebreak.
27519 \end_layout
27520
27521 \begin_layout Itemize
27522
27523 \lang english
27524 Input files can be previewed in LyX when 
27525 \family sans
27526 Instant\InsetSpace ~
27527 Preview
27528 \family default
27529  is enabled in LyX's preferences under 
27530 \family sans
27531 Look\InsetSpace ~
27532 and\InsetSpace ~
27533 feel\SpecialChar \menuseparator
27534 Graphics
27535 \family default
27536 .
27537 \end_layout
27538
27539 \begin_layout Itemize
27540
27541 \lang english
27542 The LaTeX-command 
27543 \series bold
27544
27545 \backslash
27546 includeonly
27547 \series default
27548  cannot be used.
27549 \end_layout
27550
27551 \end_deeper
27552 \begin_layout Standard
27553
27554 \lang english
27555 Here is a child document inserted using 
27556 \family sans
27557 Input
27558 \family default
27559
27560 \begin_inset Include \input{DummyDocument2.lyx}
27561 preview true
27562
27563 \end_inset
27564
27565
27566 \end_layout
27567
27568 \begin_layout Description
27569
27570 \lang english
27571 Verbatim With this method every text file can be included.
27572  The file is shown in the output with its source code, no command used in
27573  the text is invoked.
27574  You can use the option 
27575 \family sans
27576 Mark spaces in output
27577 \family default
27578  that displays the character 
27579 \begin_inset Quotes eld
27580 \end_inset
27581
27582
27583 \begin_inset ERT
27584 status collapsed
27585
27586 \begin_layout Standard
27587
27588
27589 \backslash
27590 textvisiblespace 
27591 \end_layout
27592
27593 \end_inset
27594
27595
27596 \begin_inset Quotes erd
27597 \end_inset
27598
27599  for every space character in the source code.
27600  The difference to the method via the menu 
27601 \family sans
27602 Insert\SpecialChar \menuseparator
27603 File\SpecialChar \menuseparator
27604 Plain\InsetSpace ~
27605 Text
27606 \family default
27607  is that the document content is not shown in LyX.
27608 \end_layout
27609
27610 \begin_layout Standard
27611
27612 \lang english
27613 Here is a child document inserted as Verbatim: 
27614 \begin_inset Include \verbatiminput{DummyTextDocument.txt}
27615 preview false
27616
27617 \end_inset
27618
27619
27620 \begin_inset VSpace bigskip
27621 \end_inset
27622
27623 Here is a child document inserted as Verbatim using the 
27624 \family sans
27625 Mark spaces in output
27626 \family default
27627  option: 
27628 \begin_inset Include \verbatiminput*{DummyTextDocument.txt}
27629 preview false
27630
27631 \end_inset
27632
27633
27634 \end_layout
27635
27636 \begin_layout Standard
27637
27638 \lang english
27639 \begin_inset VSpace bigskip
27640 \end_inset
27641
27642
27643 \end_layout
27644
27645 \begin_layout Standard
27646
27647 \lang english
27648 \begin_inset Note Greyedout
27649 status open
27650
27651 \begin_layout Standard
27652
27653 \series bold
27654 \lang english
27655 Note:
27656 \series default
27657  As you can see in the examples above, the text of the documents included
27658  as verbatim is not broken at the end of the document lines.
27659 \end_layout
27660
27661 \end_inset
27662
27663
27664 \end_layout
27665
27666 \begin_layout Standard
27667
27668 \lang english
27669 \begin_inset Note Greyedout
27670 status open
27671
27672 \begin_layout Standard
27673
27674 \series bold
27675 \lang english
27676 Note:
27677 \series default
27678  Including the same document twice in a document using different methods
27679  could cause LaTeX-problems.
27680 \end_layout
27681
27682 \end_inset
27683
27684
27685 \end_layout
27686
27687 \begin_layout Standard
27688
27689 \newpage
27690
27691 \end_layout
27692
27693 \begin_layout Chapter
27694 \start_of_appendix
27695 Unidades disponibles en 
27696 \begin_inset ERT
27697 status collapsed
27698
27699 \begin_layout Standard
27700
27701
27702 \backslash
27703 texorpdfstring{
27704 \end_layout
27705
27706 \end_inset
27707
27708 LyX
27709 \begin_inset ERT
27710 status collapsed
27711
27712 \begin_layout Standard
27713
27714 }{LyX}
27715 \end_layout
27716
27717 \end_inset
27718
27719
27720 \begin_inset LatexCommand index
27721 name "Unidades"
27722
27723 \end_inset
27724
27725
27726 \begin_inset LatexCommand label
27727 name "cha:Unidades-disponibles-en"
27728
27729 \end_inset
27730
27731
27732 \begin_inset Note Note
27733 status collapsed
27734
27735 \begin_layout Standard
27736 El comando 
27737 \backslash
27738 texorpdfstring suministrado por el paquete LaTeX hyperref impide que los
27739  enlaces se muestren erróneamente en los marcadores PDF.
27740  Más información en 
27741 \begin_inset LatexCommand cite
27742 key "hyperref"
27743
27744 \end_inset
27745
27746 .
27747 \end_layout
27748
27749 \end_inset
27750
27751
27752 \end_layout
27753
27754 \begin_layout Standard
27755 Para comprender las unidades utilizadas en este manual, el cuadro\InsetSpace ~
27756
27757 \begin_inset LatexCommand ref
27758 reference "tab:Unidades"
27759
27760 \end_inset
27761
27762  describe todas las unidades disponibles en LyX.
27763 \end_layout
27764
27765 \begin_layout Standard
27766 \begin_inset Float table
27767 placement h
27768 wide false
27769 sideways false
27770 status open
27771
27772 \begin_layout Standard
27773 \begin_inset Caption
27774
27775 \begin_layout Standard
27776 \begin_inset LatexCommand label
27777 name "tab:Unidades"
27778
27779 \end_inset
27780
27781 Unidades
27782 \end_layout
27783
27784 \end_inset
27785
27786
27787 \end_layout
27788
27789 \begin_layout Standard
27790 \begin_inset VSpace medskip
27791 \end_inset
27792
27793
27794 \end_layout
27795
27796 \begin_layout Standard
27797 \align center
27798 \begin_inset Tabular
27799 <lyxtabular version="3" rows="20" columns="2">
27800 <features>
27801 <column alignment="center" valignment="top" leftline="true" width="0">
27802 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27803 <row topline="true" bottomline="true">
27804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27805 \begin_inset Text
27806
27807 \begin_layout Standard
27808 unidad
27809 \end_layout
27810
27811 \end_inset
27812 </cell>
27813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27814 \begin_inset Text
27815
27816 \begin_layout Standard
27817 nombre/descripción
27818 \end_layout
27819
27820 \end_inset
27821 </cell>
27822 </row>
27823 <row topline="true">
27824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27825 \begin_inset Text
27826
27827 \begin_layout Standard
27828 mm
27829 \end_layout
27830
27831 \end_inset
27832 </cell>
27833 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27834 \begin_inset Text
27835
27836 \begin_layout Standard
27837 milímetro
27838 \end_layout
27839
27840 \end_inset
27841 </cell>
27842 </row>
27843 <row topline="true">
27844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27845 \begin_inset Text
27846
27847 \begin_layout Standard
27848 cm
27849 \end_layout
27850
27851 \end_inset
27852 </cell>
27853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27854 \begin_inset Text
27855
27856 \begin_layout Standard
27857 centímetro
27858 \end_layout
27859
27860 \end_inset
27861 </cell>
27862 </row>
27863 <row topline="true">
27864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27865 \begin_inset Text
27866
27867 \begin_layout Standard
27868 in
27869 \end_layout
27870
27871 \end_inset
27872 </cell>
27873 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27874 \begin_inset Text
27875
27876 \begin_layout Standard
27877 pulgada
27878 \end_layout
27879
27880 \end_inset
27881 </cell>
27882 </row>
27883 <row topline="true">
27884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27885 \begin_inset Text
27886
27887 \begin_layout Standard
27888 pt
27889 \end_layout
27890
27891 \end_inset
27892 </cell>
27893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27894 \begin_inset Text
27895
27896 \begin_layout Standard
27897 punto (72.27\InsetSpace \thinspace{}
27898 pt = 1\InsetSpace \thinspace{}
27899 in)
27900 \end_layout
27901
27902 \end_inset
27903 </cell>
27904 </row>
27905 <row topline="true">
27906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27907 \begin_inset Text
27908
27909 \begin_layout Standard
27910 pc
27911 \end_layout
27912
27913 \end_inset
27914 </cell>
27915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27916 \begin_inset Text
27917
27918 \begin_layout Standard
27919 pica (1\InsetSpace \thinspace{}
27920 pc = 12\InsetSpace \thinspace{}
27921 pt)
27922 \end_layout
27923
27924 \end_inset
27925 </cell>
27926 </row>
27927 <row topline="true">
27928 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27929 \begin_inset Text
27930
27931 \begin_layout Standard
27932 sp
27933 \end_layout
27934
27935 \end_inset
27936 </cell>
27937 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27938 \begin_inset Text
27939
27940 \begin_layout Standard
27941 punto escalado (65536\InsetSpace \thinspace{}
27942 sp = 1\InsetSpace \thinspace{}
27943 pt)
27944 \end_layout
27945
27946 \end_inset
27947 </cell>
27948 </row>
27949 <row topline="true">
27950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27951 \begin_inset Text
27952
27953 \begin_layout Standard
27954 bp
27955 \end_layout
27956
27957 \end_inset
27958 </cell>
27959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27960 \begin_inset Text
27961
27962 \begin_layout Standard
27963 punto grande (72\InsetSpace \thinspace{}
27964 bp = 1\InsetSpace \thinspace{}
27965 in)
27966 \end_layout
27967
27968 \end_inset
27969 </cell>
27970 </row>
27971 <row topline="true">
27972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27973 \begin_inset Text
27974
27975 \begin_layout Standard
27976 dd
27977 \end_layout
27978
27979 \end_inset
27980 </cell>
27981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27982 \begin_inset Text
27983
27984 \begin_layout Standard
27985 didot (72\InsetSpace \thinspace{}
27986 dd 
27987 \begin_inset Formula $\approx$
27988 \end_inset
27989
27990  37.6\InsetSpace \thinspace{}
27991 mm)
27992 \end_layout
27993
27994 \end_inset
27995 </cell>
27996 </row>
27997 <row topline="true">
27998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27999 \begin_inset Text
28000
28001 \begin_layout Standard
28002 cc
28003 \end_layout
28004
28005 \end_inset
28006 </cell>
28007 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28008 \begin_inset Text
28009
28010 \begin_layout Standard
28011 cicero (1\InsetSpace \thinspace{}
28012 cc = 12\InsetSpace \thinspace{}
28013 dd)
28014 \end_layout
28015
28016 \end_inset
28017 </cell>
28018 </row>
28019 <row topline="true">
28020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28021 \begin_inset Text
28022
28023 \begin_layout Standard
28024 Scale%
28025 \end_layout
28026
28027 \end_inset
28028 </cell>
28029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28030 \begin_inset Text
28031
28032 \begin_layout Standard
28033 % de anchura original de la imagen
28034 \end_layout
28035
28036 \end_inset
28037 </cell>
28038 </row>
28039 <row topline="true">
28040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28041 \begin_inset Text
28042
28043 \begin_layout Standard
28044 text%
28045 \end_layout
28046
28047 \end_inset
28048 </cell>
28049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28050 \begin_inset Text
28051
28052 \begin_layout Standard
28053 % de anchura de texto
28054 \end_layout
28055
28056 \end_inset
28057 </cell>
28058 </row>
28059 <row topline="true">
28060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28061 \begin_inset Text
28062
28063 \begin_layout Standard
28064 col%
28065 \end_layout
28066
28067 \end_inset
28068 </cell>
28069 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28070 \begin_inset Text
28071
28072 \begin_layout Standard
28073 % de anchura de columna
28074 \end_layout
28075
28076 \end_inset
28077 </cell>
28078 </row>
28079 <row topline="true">
28080 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28081 \begin_inset Text
28082
28083 \begin_layout Standard
28084 page%
28085 \end_layout
28086
28087 \end_inset
28088 </cell>
28089 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28090 \begin_inset Text
28091
28092 \begin_layout Standard
28093 % de anchura de página
28094 \end_layout
28095
28096 \end_inset
28097 </cell>
28098 </row>
28099 <row topline="true">
28100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28101 \begin_inset Text
28102
28103 \begin_layout Standard
28104 line%
28105 \end_layout
28106
28107 \end_inset
28108 </cell>
28109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28110 \begin_inset Text
28111
28112 \begin_layout Standard
28113 % de anchura de línea
28114 \end_layout
28115
28116 \end_inset
28117 </cell>
28118 </row>
28119 <row topline="true">
28120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28121 \begin_inset Text
28122
28123 \begin_layout Standard
28124 theight%
28125 \end_layout
28126
28127 \end_inset
28128 </cell>
28129 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28130 \begin_inset Text
28131
28132 \begin_layout Standard
28133 % de altura de texto
28134 \end_layout
28135
28136 \end_inset
28137 </cell>
28138 </row>
28139 <row topline="true">
28140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28141 \begin_inset Text
28142
28143 \begin_layout Standard
28144 pheight%
28145 \end_layout
28146
28147 \end_inset
28148 </cell>
28149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28150 \begin_inset Text
28151
28152 \begin_layout Standard
28153 % de altura de página
28154 \end_layout
28155
28156 \end_inset
28157 </cell>
28158 </row>
28159 <row topline="true">
28160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28161 \begin_inset Text
28162
28163 \begin_layout Standard
28164 ex
28165 \end_layout
28166
28167 \end_inset
28168 </cell>
28169 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28170 \begin_inset Text
28171
28172 \begin_layout Standard
28173 altura de la letra 
28174 \emph on
28175 x
28176 \emph default
28177  en la fuente actual
28178 \end_layout
28179
28180 \end_inset
28181 </cell>
28182 </row>
28183 <row topline="true">
28184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28185 \begin_inset Text
28186
28187 \begin_layout Standard
28188 em
28189 \end_layout
28190
28191 \end_inset
28192 </cell>
28193 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28194 \begin_inset Text
28195
28196 \begin_layout Standard
28197 anchura de la letra 
28198 \emph on
28199 M
28200 \emph default
28201  en la fuente actual
28202 \end_layout
28203
28204 \end_inset
28205 </cell>
28206 </row>
28207 <row topline="true" bottomline="true">
28208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28209 \begin_inset Text
28210
28211 \begin_layout Standard
28212 mu
28213 \end_layout
28214
28215 \end_inset
28216 </cell>
28217 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28218 \begin_inset Text
28219
28220 \begin_layout Standard
28221 unidad matemática (1\InsetSpace \thinspace{}
28222 mu = 1/18\InsetSpace \thinspace{}
28223 em)
28224 \end_layout
28225
28226 \end_inset
28227 </cell>
28228 </row>
28229 </lyxtabular>
28230
28231 \end_inset
28232
28233
28234 \end_layout
28235
28236 \end_inset
28237
28238
28239 \end_layout
28240
28241 \begin_layout Chapter
28242 Formatos de Archivos de Salida con Gráficos
28243 \begin_inset LatexCommand label
28244 name "cha:Formatos-de-Archivos-de-Salida"
28245
28246 \end_inset
28247
28248
28249 \end_layout
28250
28251 \begin_layout Section
28252 DVI
28253 \begin_inset LatexCommand index
28254 name "Formatos de Archivo ! DVI"
28255
28256 \end_inset
28257
28258
28259 \begin_inset LatexCommand index
28260 name "DVI|see{Formatos de Archivo}"
28261
28262 \end_inset
28263
28264
28265 \end_layout
28266
28267 \begin_layout Standard
28268 Este tipo de archivo tiene la extensión 
28269 \begin_inset Quotes eld
28270 \end_inset
28271
28272
28273 \family typewriter
28274 .dvi
28275 \family default
28276
28277 \begin_inset Quotes erd
28278 \end_inset
28279
28280 .
28281  Se denomina 
28282 \begin_inset Quotes eld
28283 \end_inset
28284
28285 device-independent
28286 \begin_inset Quotes erd
28287 \end_inset
28288
28289  (DVI), porque es completamente portable; se pueden mover de una máquina
28290  a otra sin necesidad de conversión alguna.
28291  En la época en que se desarrolló este formato, esto no era un asunto baladí.
28292  Los DVIs se usan para previsualizaciones rápidas y como preparación para
28293  otros formatos de salida como PostScript.
28294 \end_layout
28295
28296 \begin_layout Standard
28297 \begin_inset Note Greyedout
28298 status open
28299
28300 \begin_layout Standard
28301
28302 \series bold
28303 Nota:
28304 \series default
28305  Los archivos DVI no contienen imágenes, sino enlaces a ellas.
28306 \end_layout
28307
28308 \end_inset
28309
28310  Por tanto no debes olvidar esto si mueves archivos 
28311 \family typewriter
28312 .dvi
28313 \family default
28314  a otro ordenador.
28315  Esta característica también puede retardar la visualización del archivo,
28316  porque el visor DVI tiene que convertir la imagen en segundo plano para
28317  hacerla visible al deslizar el visor.
28318  Así pues recomendamos usar PDF para archivos con muchas imágenes.
28319 \end_layout
28320
28321 \begin_layout Standard
28322 Un documento se exporta a DVI con el menú 
28323 \family sans
28324 Archivo\SpecialChar \menuseparator
28325 Exportar\SpecialChar \menuseparator
28326 DVI
28327 \family default
28328 .
28329  Puedes ver la salida del documento en DVI con el menú 
28330 \family sans
28331 Ver\SpecialChar \menuseparator
28332 DVI 
28333 \family default
28334 o con el botón\InsetSpace ~
28335
28336 \begin_inset Graphics
28337         filename ../../images/buffer-view_dvi.xpm
28338         scale 85
28339
28340 \end_inset
28341
28342 .
28343 \end_layout
28344
28345 \begin_layout Section
28346 PostScript
28347 \begin_inset LatexCommand label
28348 name "sec:PostScript"
28349
28350 \end_inset
28351
28352
28353 \begin_inset LatexCommand index
28354 name "Formatos de Archivo ! PostScript"
28355
28356 \end_inset
28357
28358
28359 \begin_inset LatexCommand index
28360 name "PostScript|see{Formatos de Archivo}"
28361
28362 \end_inset
28363
28364
28365 \end_layout
28366
28367 \begin_layout Standard
28368 Este tipo de archivo tiene la extensión 
28369 \begin_inset Quotes eld
28370 \end_inset
28371
28372
28373 \family typewriter
28374 .ps
28375 \family default
28376
28377 \begin_inset Quotes erd
28378 \end_inset
28379
28380 .
28381  PostScript fue desarrollado por la compañía 
28382 \family typewriter
28383 Adobe
28384 \family default
28385  como lenguaje para impresoras.
28386  Por eso estos archivos contienen comandos que usa la impresora para imprimirlos.
28387  PostScript puede considerarse como un 
28388 \begin_inset Quotes eld
28389 \end_inset
28390
28391 lenguaje de programación
28392 \begin_inset Quotes erd
28393 \end_inset
28394
28395 ; con él puedes calcular y dibujar imágenes y diagramas
28396 \begin_inset Foot
28397 status collapsed
28398
28399 \begin_layout Standard
28400 Si estás interesado en este tema acude al paquete LaTeX 
28401 \series bold
28402 PSTricks
28403 \series default
28404  
28405 \begin_inset LatexCommand cite
28406 key "pstricks"
28407
28408 \end_inset
28409
28410 .
28411 \end_layout
28412
28413 \end_inset
28414
28415 .
28416  Por esto los archivos suelen ser más grandes que los PDFs.
28417 \end_layout
28418
28419 \begin_layout Standard
28420 Los archivos PostScript solo pueden contener imágenes en el formato 
28421 \begin_inset Quotes eld
28422 \end_inset
28423
28424 Encapsulated PostScript
28425 \begin_inset Quotes erd
28426 \end_inset
28427
28428  (EPS, extensión 
28429 \begin_inset Quotes eld
28430 \end_inset
28431
28432
28433 \family typewriter
28434 .eps
28435 \family default
28436
28437 \begin_inset Quotes erd
28438 \end_inset
28439
28440 ).
28441  Como LyX permite usar cualquier formato de imagen conocido, tiene que trabajar
28442  en segundo plano para convertir las imágenes a EPS.
28443  Si por ejemplo, el documento tiene 50 imágenes, LyX ha de hacer 50 conversiones
28444  cada vez que veas o exportes el documento.
28445  Esto ralentizará mucho el trabajo, así que si piensas usar PostScript,
28446  puedes evitar el problema insertando las imágenes directamente en EPS.
28447 \end_layout
28448
28449 \begin_layout Standard
28450 El documento se puede exportar a PostScript con el menú 
28451 \family sans
28452 Archivo\SpecialChar \menuseparator
28453 Exportar\SpecialChar \menuseparator
28454 Postscript
28455 \family default
28456 .
28457  Se puede ver la salida en PostScript con el menú 
28458 \family sans
28459 Ver\SpecialChar \menuseparator
28460 Postscript 
28461 \family default
28462 o con el botón\InsetSpace ~
28463
28464 \begin_inset Graphics
28465         filename ../../images/buffer-view_ps.xpm
28466
28467 \end_inset
28468
28469 .
28470 \end_layout
28471
28472 \begin_layout Section
28473 PDF
28474 \begin_inset LatexCommand label
28475 name "sec:PDF"
28476
28477 \end_inset
28478
28479
28480 \begin_inset LatexCommand index
28481 name "Formatos de Archivo ! PDF"
28482
28483 \end_inset
28484
28485
28486 \begin_inset LatexCommand index
28487 name "PDF"
28488
28489 \end_inset
28490
28491
28492 \end_layout
28493
28494 \begin_layout Standard
28495 Este tipo de archivo tiene la extensión 
28496 \begin_inset Quotes eld
28497 \end_inset
28498
28499
28500 \family typewriter
28501 .pdf
28502 \family default
28503
28504 \begin_inset Quotes erd
28505 \end_inset
28506
28507 .
28508  El formato 
28509 \begin_inset Quotes eld
28510 \end_inset
28511
28512 Portable Document Format
28513 \begin_inset Quotes erd
28514 \end_inset
28515
28516  (PDF) fue desarrollado por 
28517 \family typewriter
28518 Adobe
28519 \family default
28520  como derivado de PostScript.
28521  Es más comprimido y utiliza muchos menos comandos que PostScript.
28522  Como su nombre 
28523 \begin_inset Quotes eld
28524 \end_inset
28525
28526 portable
28527 \begin_inset Quotes erd
28528 \end_inset
28529
28530  indica, puede ser procesado por cualquier sistema operativo y la salida
28531  impresa se muestra exactamente igual.
28532 \end_layout
28533
28534 \begin_layout Standard
28535 PDF puede contener imágenes en su propio formato PDF, en el formato 
28536 \begin_inset Quotes eld
28537 \end_inset
28538
28539 Joint Photographic Experts Group
28540 \begin_inset Quotes erd
28541 \end_inset
28542
28543  (JPG, extensión 
28544 \begin_inset Quotes eld
28545 \end_inset
28546
28547
28548 \family typewriter
28549 .jpg
28550 \family default
28551
28552 \begin_inset Quotes erd
28553 \end_inset
28554
28555  o 
28556 \begin_inset Quotes eld
28557 \end_inset
28558
28559
28560 \family typewriter
28561 .jpeg
28562 \family default
28563
28564 \begin_inset Quotes erd
28565 \end_inset
28566
28567 ), y en el formato 
28568 \begin_inset Quotes eld
28569 \end_inset
28570
28571 Portable Network Graphics
28572 \begin_inset Quotes erd
28573 \end_inset
28574
28575  (PNG, extensión 
28576 \begin_inset Quotes eld
28577 \end_inset
28578
28579
28580 \family typewriter
28581 .png
28582 \family default
28583
28584 \begin_inset Quotes erd
28585 \end_inset
28586
28587 ).
28588  Aunque puedes poner cualquier otro formato de imagen, porque LyX los convierte
28589  en segundo plano a alguno de los anteriores.
28590  Pero como se ha comentado en la sección sobre PostScript, la conversión
28591  de gráficos ralentiza el trabajo.
28592  Por tanto se recomienda utilizar alguno de los tres formatos de imagen
28593  mencionados.
28594 \end_layout
28595
28596 \begin_layout Standard
28597 Un documento se puede exportar a PDF con el menú 
28598 \family sans
28599 Archivo\SpecialChar \menuseparator
28600 Exportar
28601 \family default
28602  en tres modos diferentes:
28603 \end_layout
28604
28605 \begin_layout Description
28606 PDF Este utiliza el programa 
28607 \family typewriter
28608 ps2pdf
28609 \family default
28610  que crea un PDF a partir de una versión PostScript del archivo.
28611  La versión PostScript es producida por el programa 
28612 \family typewriter
28613 dvips
28614 \family default
28615  que usa una versión DVI como paso intermedio.
28616  Así que este modo de exportación consta de tres conversiones.
28617 \end_layout
28618
28619 \begin_layout Description
28620 PDF\InsetSpace ~
28621 (dvipdfm) Este utiliza el programa 
28622 \family typewriter
28623 dvipdfm
28624 \family default
28625  que convierte el archivo a DVI en segundo plano y en un segundo paso a
28626  PDF.
28627 \end_layout
28628
28629 \begin_layout Description
28630 PDF\InsetSpace ~
28631 (pdflatex) Este utiliza el programa 
28632 \family typewriter
28633 pdftex
28634 \family default
28635  que convierte directamente el archivo a PDF.
28636 \end_layout
28637
28638 \begin_layout Standard
28639 Se recomienda usar 
28640 \family sans
28641 PDF\InsetSpace ~
28642 (pdflatex)
28643 \family default
28644  porque 
28645 \family typewriter
28646 pdftex
28647 \family default
28648  soporta todas las características de las versiones actuales de PDF, es
28649  rápido y estable.
28650  El programa 
28651 \family typewriter
28652 dvipdfm
28653 \family default
28654  ya no se desarrolla y está un poco obsoleto.
28655 \end_layout
28656
28657 \begin_layout Standard
28658 La salida en formato PDF se puede ver con el menú 
28659 \family sans
28660 Ver 
28661 \family default
28662 o con el botón\InsetSpace ~
28663
28664 \begin_inset Graphics
28665         filename ../../images/buffer-view_pdf2.xpm
28666         scale 85
28667
28668 \end_inset
28669
28670  (que usa 
28671 \family sans
28672 PDF\InsetSpace ~
28673 (pdflatex)
28674 \family default
28675 ).
28676 \end_layout
28677
28678 \begin_layout Chapter
28679 Explicación de la Ecuación\InsetSpace ~
28680
28681 \begin_inset LatexCommand eqref
28682 reference "eq:Wgn"
28683
28684 \end_inset
28685
28686
28687 \begin_inset LatexCommand label
28688 name "cha:Explicación-de-la-Ecuación"
28689
28690 \end_inset
28691
28692
28693 \end_layout
28694
28695 \begin_layout Standard
28696 La anchura total de 
28697 \emph on
28698 n
28699 \emph default
28700  celdas de una tabla 
28701 \begin_inset Formula $W_{\mathrm{tot\, n}}$
28702 \end_inset
28703
28704  puede calcularse con
28705 \end_layout
28706
28707 \begin_layout Standard
28708 \begin_inset Formula \begin{equation}
28709 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
28710
28711 \end_inset
28712
28713
28714 \end_layout
28715
28716 \begin_layout Standard
28717 donde 
28718 \begin_inset Formula $W_{g\, n}$
28719 \end_inset
28720
28721  es el ancho dado de todas las celdas.
28722  
28723 \series bold
28724
28725 \backslash
28726 tabcolsep
28727 \series default
28728  es la longitud LaTeX entre el texto y el borde de la celda, 6\InsetSpace \thinspace{}
28729 pt por defecto.
28730  
28731 \series bold
28732
28733 \backslash
28734 arrayrulewidth
28735 \series default
28736  es el grosor de línea del borde, 0.4\InsetSpace \thinspace{}
28737 pt por defecto.
28738 \end_layout
28739
28740 \begin_layout Standard
28741 Procediendo como en la ecuación\InsetSpace ~
28742
28743 \begin_inset LatexCommand eqref
28744 reference "eq:Wtot_n"
28745
28746 \end_inset
28747
28748 , el ancho total de una multicolumna, 
28749 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
28750 \end_inset
28751
28752  es
28753 \end_layout
28754
28755 \begin_layout Standard
28756 \begin_inset Formula \begin{equation}
28757 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
28758
28759 \end_inset
28760
28761
28762 \end_layout
28763
28764 \begin_layout Standard
28765 Igualando las ecuaciones\InsetSpace ~
28766
28767 \begin_inset LatexCommand eqref
28768 reference "eq:Wtot_n"
28769
28770 \end_inset
28771
28772  y 
28773 \begin_inset LatexCommand eqref
28774 reference "eq:Wtot_mult"
28775
28776 \end_inset
28777
28778  podemos calcular el ancho dado necesario 
28779 \begin_inset Formula $W_{g\, n}$
28780 \end_inset
28781
28782  cuando se expanden 
28783 \emph on
28784 n
28785 \emph default
28786  columnas, de forma que cada una de ellas tiene una anchura total  
28787 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
28788 \end_inset
28789
28790 :
28791 \end_layout
28792
28793 \begin_layout Standard
28794 \begin_inset Formula \begin{equation}
28795 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
28796
28797 \end_inset
28798
28799
28800 \end_layout
28801
28802 \begin_layout Bibliography
28803 \begin_inset LatexCommand bibitem
28804 key "latexcompanion"
28805
28806 \end_inset
28807
28808 Frank Mittelbach and Michel Goossens: 
28809 \emph on
28810 The LaTeX Companion Second Edition.
28811
28812 \emph default
28813  Addison-Wesley, 2004
28814 \end_layout
28815
28816 \begin_layout Bibliography
28817 \begin_inset LatexCommand bibitem
28818 key "latexguide"
28819
28820 \end_inset
28821
28822 Helmut Kopka and Patrick W.
28823  Daly: 
28824 \emph on
28825 A Guide to LaTeX Fourth Edition.
28826
28827 \emph default
28828  Addison-Wesley, 2003
28829 \end_layout
28830
28831 \begin_layout Bibliography
28832 \begin_inset LatexCommand bibitem
28833 key "latexbook"
28834
28835 \end_inset
28836
28837 Leslie Lamport: 
28838 \emph on
28839 LaTeX: A Document Preparation System.
28840
28841 \emph default
28842  Addison-Wesley, second edition, 1994
28843 \end_layout
28844
28845 \begin_layout Bibliography
28846 \begin_inset LatexCommand bibitem
28847 key "booktabs"
28848
28849 \end_inset
28850
28851
28852 \begin_inset ERT
28853 status collapsed
28854
28855 \begin_layout Standard
28856
28857
28858 \backslash
28859 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
28860 {
28861 \end_layout
28862
28863 \end_inset
28864
28865 Documentación
28866 \begin_inset ERT
28867 status collapsed
28868
28869 \begin_layout Standard
28870
28871 }
28872 \end_layout
28873
28874 \end_inset
28875
28876  del paquete LaTeX 
28877 \series bold
28878 booktabs
28879 \series default
28880
28881 \begin_inset LatexCommand index
28882 name "LaTeX-paquetes ! booktabs"
28883
28884 \end_inset
28885
28886
28887 \end_layout
28888
28889 \begin_layout Bibliography
28890 \begin_inset LatexCommand bibitem
28891 key "caption"
28892
28893 \end_inset
28894
28895
28896 \begin_inset ERT
28897 status collapsed
28898
28899 \begin_layout Standard
28900
28901
28902 \backslash
28903 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
28904 \end_layout
28905
28906 \end_inset
28907
28908 Documentación
28909 \begin_inset ERT
28910 status collapsed
28911
28912 \begin_layout Standard
28913
28914 }
28915 \end_layout
28916
28917 \end_inset
28918
28919  del paquete LaTeX 
28920 \series bold
28921 caption
28922 \series default
28923
28924 \begin_inset LatexCommand index
28925 name "LaTeX-paquetes ! caption"
28926
28927 \end_inset
28928
28929
28930 \end_layout
28931
28932 \begin_layout Bibliography
28933 \begin_inset LatexCommand bibitem
28934 key "caption-de"
28935
28936 \end_inset
28937
28938
28939 \begin_inset ERT
28940 status collapsed
28941
28942 \begin_layout Standard
28943
28944
28945 \backslash
28946 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
28947 {
28948 \end_layout
28949
28950 \end_inset
28951
28952 Documentación
28953 \begin_inset ERT
28954 status collapsed
28955
28956 \begin_layout Standard
28957
28958 }
28959 \end_layout
28960
28961 \end_inset
28962
28963  en alemán del paquete LaTeX 
28964 \series bold
28965 caption
28966 \end_layout
28967
28968 \begin_layout Bibliography
28969 \begin_inset LatexCommand bibitem
28970 key "endfloat"
28971
28972 \end_inset
28973
28974
28975 \begin_inset ERT
28976 status collapsed
28977
28978 \begin_layout Standard
28979
28980
28981 \backslash
28982 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
28983 {
28984 \end_layout
28985
28986 \end_inset
28987
28988 Documentación
28989 \begin_inset ERT
28990 status collapsed
28991
28992 \begin_layout Standard
28993
28994 }
28995 \end_layout
28996
28997 \end_inset
28998
28999  del paquete LaTeX 
29000 \series bold
29001 endf\SpecialChar \textcompwordmark{}
29002 loat
29003 \series default
29004
29005 \begin_inset LatexCommand index
29006 name "LaTeX-paquetes ! endfloat"
29007
29008 \end_inset
29009
29010
29011 \end_layout
29012
29013 \begin_layout Bibliography
29014 \begin_inset LatexCommand bibitem
29015 key "floatflt"
29016
29017 \end_inset
29018
29019
29020 \begin_inset ERT
29021 status collapsed
29022
29023 \begin_layout Standard
29024
29025
29026 \backslash
29027 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
29028 {
29029 \end_layout
29030
29031 \end_inset
29032
29033 Documentación
29034 \begin_inset ERT
29035 status collapsed
29036
29037 \begin_layout Standard
29038
29039 }
29040 \end_layout
29041
29042 \end_inset
29043
29044  del paquete LaTeX 
29045 \series bold
29046 floatf\SpecialChar \textcompwordmark{}
29047 lt
29048 \series default
29049
29050 \begin_inset LatexCommand index
29051 name "LaTeX-paquetes ! floatflt"
29052
29053 \end_inset
29054
29055
29056 \end_layout
29057
29058 \begin_layout Bibliography
29059 \begin_inset LatexCommand bibitem
29060 key "footmisc"
29061
29062 \end_inset
29063
29064
29065 \begin_inset ERT
29066 status collapsed
29067
29068 \begin_layout Standard
29069
29070
29071 \backslash
29072 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
29073 {
29074 \end_layout
29075
29076 \end_inset
29077
29078 Documentación
29079 \begin_inset ERT
29080 status collapsed
29081
29082 \begin_layout Standard
29083
29084 }
29085 \end_layout
29086
29087 \end_inset
29088
29089  del paquete LaTeX 
29090 \series bold
29091 footmisc
29092 \series default
29093
29094 \begin_inset LatexCommand index
29095 name "LaTeX-paquetes ! footmisc"
29096
29097 \end_inset
29098
29099
29100 \end_layout
29101
29102 \begin_layout Bibliography
29103 \begin_inset LatexCommand bibitem
29104 key "hypcap"
29105
29106 \end_inset
29107
29108
29109 \begin_inset ERT
29110 status collapsed
29111
29112 \begin_layout Standard
29113
29114
29115 \backslash
29116 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
29117 \end_layout
29118
29119 \end_inset
29120
29121 Documentación
29122 \begin_inset ERT
29123 status collapsed
29124
29125 \begin_layout Standard
29126
29127 }
29128 \end_layout
29129
29130 \end_inset
29131
29132  del paquete LaTeX 
29133 \series bold
29134 hypcap
29135 \series default
29136
29137 \begin_inset LatexCommand index
29138 name "LaTeX-paquetes ! hyperref"
29139
29140 \end_inset
29141
29142
29143 \end_layout
29144
29145 \begin_layout Bibliography
29146 \begin_inset LatexCommand bibitem
29147 key "hyperref"
29148
29149 \end_inset
29150
29151
29152 \begin_inset ERT
29153 status collapsed
29154
29155 \begin_layout Standard
29156
29157
29158 \backslash
29159 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
29160 {
29161 \end_layout
29162
29163 \end_inset
29164
29165 Documentación
29166 \begin_inset ERT
29167 status collapsed
29168
29169 \begin_layout Standard
29170
29171 }
29172 \end_layout
29173
29174 \end_inset
29175
29176  del paquete LaTeX 
29177 \series bold
29178 hyperref
29179 \series default
29180
29181 \begin_inset LatexCommand index
29182 name "LaTeX-paquetes ! hyperref"
29183
29184 \end_inset
29185
29186
29187 \end_layout
29188
29189 \begin_layout Bibliography
29190 \begin_inset LatexCommand bibitem
29191 key "koma-script"
29192
29193 \end_inset
29194
29195
29196 \begin_inset ERT
29197 status collapsed
29198
29199 \begin_layout Standard
29200
29201
29202 \backslash
29203 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
29204 df}{
29205 \end_layout
29206
29207 \end_inset
29208
29209 Documentación
29210 \begin_inset ERT
29211 status collapsed
29212
29213 \begin_layout Standard
29214
29215 }
29216 \end_layout
29217
29218 \end_inset
29219
29220  del paquete LaTeX 
29221 \series bold
29222 koma-script
29223 \series default
29224
29225 \begin_inset LatexCommand index
29226 name "LaTeX-paquetes ! koma-script"
29227
29228 \end_inset
29229
29230
29231 \end_layout
29232
29233 \begin_layout Bibliography
29234 \begin_inset LatexCommand bibitem
29235 key "koma-script-de"
29236
29237 \end_inset
29238
29239
29240 \begin_inset ERT
29241 status collapsed
29242
29243 \begin_layout Standard
29244
29245
29246 \backslash
29247 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
29248 df}{
29249 \end_layout
29250
29251 \end_inset
29252
29253 Documentación
29254 \begin_inset ERT
29255 status collapsed
29256
29257 \begin_layout Standard
29258
29259 }
29260 \end_layout
29261
29262 \end_inset
29263
29264  en alemán del paquete LaTeX 
29265 \series bold
29266 koma-script
29267 \series default
29268
29269 \begin_inset LatexCommand index
29270 name "LaTeX-paquetes ! koma-script"
29271
29272 \end_inset
29273
29274
29275 \end_layout
29276
29277 \begin_layout Bibliography
29278 \begin_inset LatexCommand bibitem
29279 key "marginnote"
29280
29281 \end_inset
29282
29283
29284 \begin_inset ERT
29285 status collapsed
29286
29287 \begin_layout Standard
29288
29289
29290 \backslash
29291 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
29292 pdf}{
29293 \end_layout
29294
29295 \end_inset
29296
29297 Documentación
29298 \begin_inset ERT
29299 status collapsed
29300
29301 \begin_layout Standard
29302
29303 }
29304 \end_layout
29305
29306 \end_inset
29307
29308  del paquete LaTeX 
29309 \series bold
29310 marginnote
29311 \series default
29312
29313 \begin_inset LatexCommand index
29314 name "LaTeX-paquetes ! marginnote"
29315
29316 \end_inset
29317
29318
29319 \end_layout
29320
29321 \begin_layout Bibliography
29322 \begin_inset LatexCommand bibitem
29323 key "pstricks"
29324
29325 \end_inset
29326
29327
29328 \begin_inset ERT
29329 status collapsed
29330
29331 \begin_layout Standard
29332
29333
29334 \backslash
29335 href{http://tug.org/PSTricks/main.cgi/}{
29336 \end_layout
29337
29338 \end_inset
29339
29340 Página Web
29341 \begin_inset ERT
29342 status collapsed
29343
29344 \begin_layout Standard
29345
29346 }
29347 \end_layout
29348
29349 \end_inset
29350
29351  del paquete LaTeX 
29352 \series bold
29353 PSTricks
29354 \series default
29355
29356 \begin_inset LatexCommand index
29357 name "LaTeX-paquetes ! PSTricks"
29358
29359 \end_inset
29360
29361
29362 \end_layout
29363
29364 \begin_layout Bibliography
29365 \begin_inset LatexCommand bibitem
29366 key "sidecap"
29367
29368 \end_inset
29369
29370
29371 \begin_inset ERT
29372 status collapsed
29373
29374 \begin_layout Standard
29375
29376
29377 \backslash
29378 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
29379 \end_layout
29380
29381 \end_inset
29382
29383 Documentación
29384 \begin_inset ERT
29385 status collapsed
29386
29387 \begin_layout Standard
29388
29389 }
29390 \end_layout
29391
29392 \end_inset
29393
29394  del paquete LaTeX 
29395 \series bold
29396 sidecap
29397 \series default
29398
29399 \begin_inset LatexCommand index
29400 name "LaTeX-paquetes ! sidecap"
29401
29402 \end_inset
29403
29404
29405 \end_layout
29406
29407 \begin_layout Bibliography
29408 \begin_inset LatexCommand bibitem
29409 key "NewInLyX15"
29410
29411 \end_inset
29412
29413
29414 \begin_inset ERT
29415 status collapsed
29416
29417 \begin_layout Standard
29418
29419
29420 \backslash
29421 href{http://wiki.lyx.org/LyX/NewInLyX15}{
29422 \end_layout
29423
29424 \end_inset
29425
29426 Página Wiki
29427 \begin_inset ERT
29428 status collapsed
29429
29430 \begin_layout Standard
29431
29432 }
29433 \end_layout
29434
29435 \end_inset
29436
29437  sobre características nuevas previstas para la versión 
29438 \family sans
29439 LyX\InsetSpace ~
29440 1.5
29441 \family default
29442 .
29443 \end_layout
29444
29445 \begin_layout Standard
29446 \begin_inset LatexCommand printindex
29447
29448 \end_inset
29449
29450
29451 \end_layout
29452
29453 \begin_layout Standard
29454 \begin_inset FloatList figure
29455
29456 \end_inset
29457
29458
29459 \end_layout
29460
29461 \begin_layout Standard
29462 \begin_inset FloatList table
29463
29464 \end_inset
29465
29466
29467 \end_layout
29468
29469 \end_body
29470 \end_document