]> git.lyx.org Git - lyx.git/blob - lib/doc/es/EmbeddedObjects.lyx
EmbeddedObjects: small updates
[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]{Índice General}{}
128  \myTOC
129  \cleardoublepage
130  \pagenumbering{arabic}}
131
132 % insert additional vertical space of
133 % 1.5 mm between footnotes
134 \let\myFoot\footnote
135 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
136
137 % enable algorithm floats to be referenced
138 \newfloat{Xalgorithm}{tbp}{loa}
139 \floatname{Xalgorithm}{Algoritmo}
140 \newcommand{\theHalgorithm}{\theHXalgorithm}
141 \renewenvironment{algorithm}[1][tbp]
142  {\begin{Xalgorithm}[#1]}{\end{Xalgorithm}}
143
144 % number algorithm floats within chapters
145 \numberwithin{Xalgorithm}{chapter}
146
147 % redefine the greyed out note
148 \renewenvironment{lyxgreyedout}
149  {\textcolor{blue}\bgroup}{\egroup}
150
151 % ------------------------------------
152 % used to check for needed LaTeX packages
153 \usepackage{ifthen}
154
155 % check for package arydshln
156 % used for tables with dashed lines
157 \newboolean{arydshln}
158 \IfFileExists{arydshln.sty}
159  {\usepackage{arydshln}
160   \setboolean{arydshln}{true}}
161  {\setboolean{arydshln}{false}}
162
163 % check for package marginnote
164 % used for margin notes
165 \newboolean{marginnote}
166 \IfFileExists{marginnote.sty}
167  {\usepackage{marginnote}
168   \let\marginpar\marginnote
169   \setboolean{marginnote}{true}}
170  {\setboolean{marginnote}{false}}
171 \end_preamble
172 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
173 \language spanish
174 \inputencoding auto
175 \font_roman default
176 \font_sans default
177 \font_typewriter default
178 \font_default_family default
179 \font_sc false
180 \font_osf false
181 \font_sf_scale 100
182 \font_tt_scale 100
183 \graphics default
184 \paperfontsize 12
185 \spacing single
186 \papersize default
187 \use_geometry false
188 \use_amsmath 2
189 \use_esint 0
190 \cite_engine basic
191 \use_bibtopic false
192 \paperorientation portrait
193 \secnumdepth 3
194 \tocdepth 3
195 \paragraph_separation skip
196 \defskip medskip
197 \quotes_language english
198 \papercolumns 1
199 \papersides 2
200 \paperpagestyle default
201 \bullet 1 1 34 -1
202 \bullet 2 2 35 -1
203 \bullet 3 2 7 -1
204 \tracking_changes false
205 \output_changes false
206 \author "usti" 
207 \author "IG" 
208 \author "Uwe Stöhr" 
209 \end_header
210
211 \begin_body
212
213 \begin_layout Title
214 Manual detallado de Figuras, Tablas, Flotantes, Notas, Cuadros y Archivos
215  en LyX
216 \end_layout
217
218 \begin_layout Author
219 por el Equipo LyX
220 \begin_inset Foot
221 status collapsed
222
223 \begin_layout Standard
224 \noindent
225 Si tienes comentarios o correcciones, por favor, envíalo a la lista de correo
226  de Documentación de LyX: 
227 \family typewriter
228
229 \begin_inset ERT
230 status collapsed
231
232 \begin_layout Standard
233
234
235 \backslash
236 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's es-ExtendedInsets manual}{
237 \end_layout
238
239 \end_inset
240
241 lyx-docs@lists.lyx.org
242 \begin_inset ERT
243 status collapsed
244
245 \begin_layout Standard
246
247 }
248 \end_layout
249
250 \end_inset
251
252
253 \end_layout
254
255 \end_inset
256
257
258 \begin_inset Note Note
259 status collapsed
260
261 \begin_layout Standard
262 autor original: Uwe Stöhr
263 \end_layout
264
265 \end_inset
266
267
268 \begin_inset Note Note
269 status collapsed
270
271 \begin_layout Standard
272 Traducción de: Ignacio García
273 \end_layout
274
275 \end_inset
276
277
278 \newline
279
280 \newline
281
282 \family sans
283 Versión 1.5.0-1
284 \end_layout
285
286 \begin_layout Standard
287 \begin_inset LatexCommand tableofcontents
288
289 \end_inset
290
291
292 \end_layout
293
294 \begin_layout Standard
295 \begin_inset Note Note
296 status open
297
298 \begin_layout Standard
299 Para exportar todas las partes de este documento a PDF, PS, o DVI, deben
300  estar instalados los paquetes LaTeX 
301 \series bold
302 arydshln
303 \series default
304  y 
305 \series bold
306 marginnote
307 \series default
308 .
309  Si no están instalados, también podrás exportar el documento, pero las
310  secciones en que dichos paquetes son necesarios no aparecen en la salida.
311 \end_layout
312
313 \begin_layout Standard
314 La última versión en PDF de este documento puede encontrarse aquí:
315 \series bold
316
317 \newline
318 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
319 \end_layout
320
321 \end_inset
322
323
324 \end_layout
325
326 \begin_layout Chapter
327 Figuras
328 \begin_inset LatexCommand label
329 name "cha:Figuras"
330
331 \end_inset
332
333
334 \begin_inset LatexCommand index
335 name "Figuras"
336
337 \end_inset
338
339
340 \begin_inset LatexCommand index
341 name "Gráficos|see{Figuras}"
342
343 \end_inset
344
345
346 \end_layout
347
348 \begin_layout Section
349 Diálogo Gráficos
350 \begin_inset LatexCommand label
351 name "sec:Diálogo-Gráficos"
352
353 \end_inset
354
355
356 \begin_inset LatexCommand index
357 name "Figuras ! Diálogo Gráficos"
358
359 \end_inset
360
361
362 \end_layout
363
364 \begin_layout Standard
365 Para insertar una imagen en un documento, sitúa el cursor en el lugar del
366  texto que desees y haz click en el icono 
367 \begin_inset Graphics
368         filename ../../images/dialog-show-new-inset_graphics.xpm
369         scale 85
370
371 \end_inset
372
373  o en el menú 
374 \family sans
375 Insertar\SpecialChar \menuseparator
376 Imagen\SpecialChar \ldots{}
377
378 \family default
379  Aparecerá un diálogo para escoger el archivo a cargar.
380  La imagen aparecerá en el archivo de salida exactamente en la misma posición
381  en la que la has colocado.
382 \end_layout
383
384 \begin_layout Standard
385 El diálogo Gráficos puede lanzarse en cualquier momento haciendo clic-derecha
386  sobre una imagen.
387  Este diálogo tiene tres pestañas:
388 \end_layout
389
390 \begin_layout Description
391 Gráficos Aquí puedes elegir tu archivo gráfico y ajustar separadamente su
392  presentación en LyX y en la salida.
393  En el apéndice\InsetSpace ~
394
395 \begin_inset LatexCommand ref
396 reference "cha:Unidades-disponibles-en"
397
398 \end_inset
399
400  se detallan las unidades disponibles para el tamaño del gráfico.
401 \newline
402 Puedes girar
403  los gráficos en el sentido de las agujas de reloj estableciendo un ángulo
404  y un origen de rotación.
405  La imagen también gira en LyX.
406 \newline
407 Las imágenes se pueden escalar mediante un
408  porcentaje o fijando explícitamente la altura y la anchura.
409  Si fijas solo la anchura o solo la altura, la otra dimensión se establece
410  automáticamente.
411  Si fijas ambas dimensiones
412 \family sans
413 ,
414 \family default
415  la imagen se adaptará a ellas, posiblemente distorsionada.
416  Para evitar distorsión en la imagen marca la opción 
417 \family sans
418 Mantener\InsetSpace ~
419 proporción
420 \family default
421 .
422  En ese caso la imagen será escalada de forma que su anchura y su altura
423  no excedan de las dimensiones especificadas.
424 \newline
425 Las imágenes se pueden abrir
426  con un programa de tu elección pulsando el botón 
427 \family sans
428 Editar
429 \family default
430 .
431  Los programas visor y editor para cada formato de imagen se pueden establecer
432  en la configuración de los formatos de archivo de las preferencias de LyX.
433 \end_layout
434
435 \begin_layout Description
436 Recorte Alternativamente al escalado, es posible establecer las coordenadas
437  de la imagen para ajustar su altura y anchura en la salida.
438  Además, las coordenadas se pueden calcular automáticamente pinchando el
439  botón 
440 \family sans
441 Obtener\InsetSpace ~
442 de\InsetSpace ~
443 archivo
444 \family default
445 .
446  El botón 
447 \family sans
448 Recortar\InsetSpace ~
449 al\InsetSpace ~
450 cuadro\InsetSpace ~
451 delimitador
452 \family default
453  imprimirá sólo la región de la imagen comprendida en las coordenadas introducid
454 as.
455  Normalmente no necesitarás preocuparte por esto y puedes ignorar esta solapa.
456 \end_layout
457
458 \begin_layout Description
459 Opciones\InsetSpace ~
460 extra En esta solapa puedes modificar la apariencia de la imagen
461  en LyX, y poner la imagen como subfigura de una figura flotante con su
462  propio título.Las subfiguras se explican en la sección\InsetSpace ~
463
464 \begin_inset LatexCommand ref
465 reference "sec:Figuras-Flotantes"
466
467 \end_inset
468
469 .
470 \newline
471 Los expertos en LaTeX pueden especificar aquí opciones LaTeX adicionales.
472 \newline
473 La
474  opción 
475 \family sans
476 Modo\InsetSpace ~
477 borrador
478 \family default
479  hace que en la salida se muestre sólo un marco con el tamaño de la imagen.
480 \newline
481 La
482  opción 
483 \family sans
484 No\InsetSpace ~
485 descomprimir\InsetSpace ~
486 al\InsetSpace ~
487 exportar
488 \family default
489  sólo afecta a los gráficos EPS comprimidos, p.\InsetSpace \thinspace{}
490 e.\InsetSpace ~
491
492 \emph on
493 x.eps.gz
494 \emph default
495 .
496  Si se usa esta opción, las imágenes no serán descomprimidas al exportar,
497  puesto que LaTeX puede manejarlas como están.
498 \newline
499 Los gráficos EPS comprimidos
500  sirven para ahorrar espacio de disco si se utiliza PostScript como formato
501  de salida, ver apéndice\InsetSpace ~
502
503 \begin_inset LatexCommand ref
504 reference "sec:PostScript"
505
506 \end_inset
507
508 .
509  Para comprimir gráficos EPS, usa los siguientes comandos en un UNIX-shell
510  o en consola de Windows:
511 \newline
512
513 \series bold
514 gzip x.eps
515 \series default
516
517 \newline
518
519 \series bold
520 zgrep %%Bounding x.eps.gz > x.eps.bb
521 \series default
522
523 \newline
524 El segundo comando crea un archivo de cuadro delimitador 
525 \begin_inset Quotes eld
526 \end_inset
527
528 x.eps.bb
529 \begin_inset Quotes erd
530 \end_inset
531
532  que necesita LaTeX para gráficos comprimidos.
533 \end_layout
534
535 \begin_layout Standard
536 \begin_inset VSpace bigskip
537 \end_inset
538
539
540 \end_layout
541
542 \begin_layout Standard
543 Esto es un ejemplo de imagen en formato EPS
544 \begin_inset Foot
545 status collapsed
546
547 \begin_layout Standard
548 Los formatos de imagen se explica en el sección\InsetSpace ~
549
550 \begin_inset LatexCommand ref
551 reference "sec:Formatos-de-imagen"
552
553 \end_inset
554
555 .
556 \end_layout
557
558 \end_inset
559
560  en un párrafo separado centrado horizontalmente:
561 \end_layout
562
563 \begin_layout Standard
564 \align center
565 \begin_inset Graphics
566         filename ../clipart/mobius.eps
567         display color
568         scale 70
569         rotateOrigin center
570
571 \end_inset
572
573
574 \end_layout
575
576 \begin_layout Standard
577 Esta es la misma imagen pero en modo borrador:
578 \end_layout
579
580 \begin_layout Standard
581 \align center
582 \begin_inset Graphics
583         filename ../clipart/mobius.eps
584         display color
585         scale 70
586         draft
587         rotateOrigin center
588
589 \end_inset
590
591
592 \end_layout
593
594 \begin_layout Section
595 Figuras Flotantes
596 \begin_inset LatexCommand label
597 name "sec:Figuras-Flotantes"
598
599 \end_inset
600
601
602 \begin_inset LatexCommand index
603 name "Flotantes ! Figuras Flotantes"
604
605 \end_inset
606
607
608 \begin_inset LatexCommand index
609 name "Figuras ! Flotantes"
610
611 \end_inset
612
613
614 \end_layout
615
616 \begin_layout Standard
617 Para información general sobre flotantes, echa una ojeada a la sección\InsetSpace ~
618
619 \begin_inset LatexCommand ref
620 reference "sec:IntroducciónFlotantes"
621
622 \end_inset
623
624 .
625 \end_layout
626
627 \begin_layout Standard
628 El botón 
629 \begin_inset Graphics
630         filename ../../images/float-insert_figure.xpm
631         scale 85
632
633 \end_inset
634
635  y el menú 
636 \family sans
637 Insertar\SpecialChar \menuseparator
638 Flotante\SpecialChar \menuseparator
639 Figura
640 \family default
641  insertan un flotante con la etiqueta 
642 \begin_inset Quotes eld
643 \end_inset
644
645 Figura #:
646 \begin_inset Quotes erd
647 \end_inset
648
649  (# es el número actual).
650  La imagen se puede insertar sobre el título, como en la figura\InsetSpace ~
651
652 \begin_inset LatexCommand ref
653 reference "fig:kill-plat"
654
655 \end_inset
656
657 , o bajo el título, como en la figura\InsetSpace ~
658
659 \begin_inset LatexCommand ref
660 reference "fig:escher"
661
662 \end_inset
663
664 .
665  Más información sobre ubicación de títulos en la sección\InsetSpace ~
666
667 \begin_inset LatexCommand ref
668 reference "sec:Colocación-de-Encabezados"
669
670 \end_inset
671
672 .
673 \end_layout
674
675 \begin_layout Standard
676 \begin_inset Float figure
677 wide false
678 sideways false
679 status collapsed
680
681 \begin_layout Standard
682 \align center
683 \begin_inset Graphics
684         filename ../clipart/platypus.eps
685         display color
686         width 50col%
687         rotateOrigin center
688
689 \end_inset
690
691
692 \end_layout
693
694 \begin_layout Standard
695 \begin_inset Caption
696
697 \begin_layout Standard
698 \begin_inset LatexCommand label
699 name "fig:kill-plat"
700
701 \end_inset
702
703 Un platypus muy distorsionado en un flotante.
704 \end_layout
705
706 \end_inset
707
708
709 \end_layout
710
711 \end_inset
712
713
714 \end_layout
715
716 \begin_layout Standard
717 \begin_inset Float figure
718 wide false
719 sideways false
720 status collapsed
721
722 \begin_layout Standard
723 \begin_inset Caption
724
725 \begin_layout Standard
726 \begin_inset LatexCommand label
727 name "fig:escher"
728
729 \end_inset
730
731 M.C.
732  Escher en ácido.
733 \end_layout
734
735 \end_inset
736
737
738 \end_layout
739
740 \begin_layout Standard
741 \align center
742 \begin_inset Graphics
743         filename ../clipart/escher-lsd.eps
744         display color
745         scale 80
746         rotateOrigin center
747
748 \end_inset
749
750
751 \end_layout
752
753 \end_inset
754
755
756 \end_layout
757
758 \begin_layout Standard
759 \begin_inset LatexCommand index
760 name "Referencias ! a Figuras"
761
762 \end_inset
763
764 Las figuras\InsetSpace ~
765
766 \begin_inset LatexCommand ref
767 reference "fig:kill-plat"
768
769 \end_inset
770
771  y 
772 \begin_inset LatexCommand ref
773 reference "fig:escher"
774
775 \end_inset
776
777  son ejemplos de figuras con referencias cruzadas.
778  Las figuras pueden tener referencias cruzadas en el documento mediante
779  referencia a su etiqueta.
780  Para hacerlo inserta una etiqueta en el encabezado usando el menú 
781 \family sans
782 Insertar\SpecialChar \menuseparator
783 Etiqueta
784 \family default
785  o el botón 
786 \begin_inset Graphics
787         filename ../../images/label-insert.xpm
788         scale 85
789
790 \end_inset
791
792 .
793  Ahora puedes referirte a la etiqueta usando el menú 
794 \family sans
795 Insertar\SpecialChar \menuseparator
796 Referencia\InsetSpace ~
797 cruzada
798 \family default
799  o el botón 
800 \begin_inset Graphics
801         filename ../../images/dialog-show-new-inset_ref.xpm
802         scale 85
803
804 \end_inset
805
806 .
807  Es importante emplear referencias a flotantes, mejor que alusiones vagas
808  como 
809 \begin_inset Quotes eld
810 \end_inset
811
812 la figura de arriba
813 \begin_inset Quotes erd
814 \end_inset
815
816 , porque como LaTeX recolocará los flotantes en el documento final, podría
817  no quedar 
818 \begin_inset Quotes eld
819 \end_inset
820
821 arriba
822 \begin_inset Quotes erd
823 \end_inset
824
825  precisamente.
826 \newline
827 Las referencias se explican con detalle en la sección\InsetSpace ~
828
829 \begin_inset LatexCommand ref
830 reference "sec:Referencias-a-Flotantes"
831
832 \end_inset
833
834 .
835 \end_layout
836
837 \begin_layout Standard
838 Normalmente solo se inserta una imagen en un flotante, pero es posible que
839  en alguna ocasión queramos poner dos imágenes cada una con su subtítulo.
840  Esto es posible mediante la solapa 
841 \family sans
842 Opciones\InsetSpace ~
843 extra
844 \family default
845  del diálogo gráficos.
846  Elige la opción 
847 \family sans
848 Subfigura
849 \family default
850  e introduce el subtítulo en la casilla 
851 \family sans
852 Descripción
853 \family default
854 .
855  Ten en cuenta que solo el título principal  del flotante se añade a la
856  Lista de Figuras.
857 \newline
858 Las referencias a las subfiguras se explican en la sección\InsetSpace ~
859
860 \begin_inset LatexCommand ref
861 reference "sub:Referencias-a-Subfiguras"
862
863 \end_inset
864
865 .
866 \end_layout
867
868 \begin_layout Standard
869 La figura\InsetSpace ~
870
871 \begin_inset LatexCommand ref
872 reference "fig:Dos-imágenes-distorsionadas"
873
874 \end_inset
875
876  es un ejemplo de figura flotante con dos imágenes una junto a otra.
877  También se pueden poner una sobre otra.
878 \end_layout
879
880 \begin_layout Standard
881 \begin_inset Float figure
882 wide false
883 sideways false
884 status collapsed
885
886 \begin_layout Standard
887
888 \hfill
889
890 \begin_inset Graphics
891         filename ../clipart/escher-lsd.eps
892         width 45col%
893         subcaption
894         subcaptionText "Estructura indefinible"
895
896 \end_inset
897
898
899 \hfill
900
901 \begin_inset Graphics
902         filename ../clipart/platypus.eps
903         lyxscale 60
904         width 45col%
905         subcaption
906         subcaptionText "\label{fig:Platypus} Platypus"
907
908 \end_inset
909
910
911 \hfill
912
913 \end_layout
914
915 \begin_layout Standard
916 \begin_inset Caption
917
918 \begin_layout Standard
919 \begin_inset LatexCommand label
920 name "fig:Dos-imágenes-distorsionadas"
921
922 \end_inset
923
924 Dos imágenes distorsionadas.
925 \end_layout
926
927 \end_inset
928
929
930 \end_layout
931
932 \end_inset
933
934
935 \end_layout
936
937 \begin_layout Section
938 Formatos de Imagen
939 \begin_inset LatexCommand label
940 name "sec:Formatos-de-imagen"
941
942 \end_inset
943
944
945 \begin_inset LatexCommand index
946 name "Formatos de Imagen"
947
948 \end_inset
949
950
951 \begin_inset LatexCommand index
952 name "Figuras ! Formatos de Imagen"
953
954 \end_inset
955
956
957 \end_layout
958
959 \begin_layout Standard
960 Puedes insertar imágenes en cualquier formato.
961  Pero como se explica en el apéndice\InsetSpace ~
962
963 \begin_inset LatexCommand ref
964 reference "cha:Formatos-de-Archivos-de-Salida"
965
966 \end_inset
967
968 , cada formato de archivo del documento de salida permite solo ciertos formatos
969  de archivo de imagen.
970  Por eso LyX usa el programa 
971 \family sans
972 Imagemagick
973 \family default
974  en segundo plano para convertir imágenes al formato adecuado.
975  Para aumentar el rendimiento evitando estas conversiones, puedes usar sólo
976  los formatos de imagen admitidos en el formato de archivo de salida.
977  Los formatos de salida se explican en el apéndice\InsetSpace ~
978
979 \begin_inset LatexCommand ref
980 reference "cha:Formatos-de-Archivos-de-Salida"
981
982 \end_inset
983
984 .
985 \end_layout
986
987 \begin_layout Standard
988 Como en el caso de las fuentes, hay dos tipos de formatos de imagen:
989 \end_layout
990
991 \begin_layout Description
992 Imágenes\InsetSpace ~
993 Mapa\InsetSpace ~
994 de\InsetSpace ~
995 bits\InsetSpace ~
996 (Bitmap) formadas por mapas de puntos (píxeles), generalmente
997  comprimidos.
998  Por tanto no son totalmente escalables y se ven pixeladas a valores altos
999  de zoom.
1000  Formatos de imágenes en bitmap bien conocidos son 
1001 \begin_inset Quotes eld
1002 \end_inset
1003
1004 Graphics Interchange Format
1005 \begin_inset Quotes erd
1006 \end_inset
1007
1008  (GIF, extensión 
1009 \begin_inset Quotes eld
1010 \end_inset
1011
1012 .gif
1013 \begin_inset Quotes erd
1014 \end_inset
1015
1016 )
1017 \begin_inset LatexCommand index
1018 name "GIF|see{Formatos de Imagen}"
1019
1020 \end_inset
1021
1022
1023 \begin_inset Quotes eld
1024 \end_inset
1025
1026 Portable Network Graphics
1027 \begin_inset Quotes erd
1028 \end_inset
1029
1030  (PNG, extensión 
1031 \begin_inset Quotes eld
1032 \end_inset
1033
1034 .png
1035 \begin_inset Quotes erd
1036 \end_inset
1037
1038 )
1039 \begin_inset LatexCommand index
1040 name "PNG|see{Formatos de Imagen}"
1041
1042 \end_inset
1043
1044 , y 
1045 \begin_inset Quotes eld
1046 \end_inset
1047
1048 Joint Photographic Experts Group
1049 \begin_inset Quotes erd
1050 \end_inset
1051
1052  (JPG, extensión 
1053 \begin_inset Quotes eld
1054 \end_inset
1055
1056 .jpg
1057 \begin_inset Quotes erd
1058 \end_inset
1059
1060  o 
1061 \begin_inset Quotes eld
1062 \end_inset
1063
1064 .jpeg
1065 \begin_inset Quotes erd
1066 \end_inset
1067
1068 )
1069 \begin_inset LatexCommand index
1070 name "JPG|see{Formatos de Imagen}"
1071
1072 \end_inset
1073
1074 .
1075 \end_layout
1076
1077 \begin_layout Description
1078 Imágenes\InsetSpace ~
1079 vectoriales se generan mediante una descripción de una serie de
1080  trazos (vectores) y por tanto pueden escalarse a cualquier tamaño sin pérdidas.
1081  La posibilidad de escalado hace falta para crear presentaciones, porque
1082  éstas siempre son escaladas por el proyector.
1083  El escalado también es útil en los documentoos en línea para permitir el
1084  zoom en diagramas.
1085 \newline
1086 Formatos de imagen escalables pueden ser 
1087 \begin_inset Quotes eld
1088 \end_inset
1089
1090 Scalable Vector Graphics
1091 \begin_inset Quotes erd
1092 \end_inset
1093
1094  (SVG, extensión 
1095 \begin_inset Quotes eld
1096 \end_inset
1097
1098 .svg
1099 \begin_inset Quotes erd
1100 \end_inset
1101
1102 )
1103 \begin_inset LatexCommand index
1104 name "SVG|see{Formatos de Imagen}"
1105
1106 \end_inset
1107
1108
1109 \begin_inset Quotes eld
1110 \end_inset
1111
1112 Encapsulated PostScript
1113 \begin_inset Quotes erd
1114 \end_inset
1115
1116  (EPS, extensión 
1117 \begin_inset Quotes eld
1118 \end_inset
1119
1120 .eps
1121 \begin_inset Quotes erd
1122 \end_inset
1123
1124 )
1125 \begin_inset LatexCommand index
1126 name "EPS|see{Formatos de Imagen}"
1127
1128 \end_inset
1129
1130
1131 \begin_inset Quotes eld
1132 \end_inset
1133
1134 Portable Document Format
1135 \begin_inset Quotes erd
1136 \end_inset
1137
1138  (PDF, extensión 
1139 \begin_inset Quotes eld
1140 \end_inset
1141
1142 .pdf
1143 \begin_inset Quotes erd
1144 \end_inset
1145
1146 )
1147 \begin_inset LatexCommand index
1148 name "PDF|see{Formatos de Imagen}"
1149
1150 \end_inset
1151
1152 , y 
1153 \begin_inset Quotes eld
1154 \end_inset
1155
1156 Windows Metafile
1157 \begin_inset Quotes erd
1158 \end_inset
1159
1160  (WMF, extensión 
1161 \begin_inset Quotes eld
1162 \end_inset
1163
1164 .wmf
1165 \begin_inset Quotes erd
1166 \end_inset
1167
1168 )
1169 \begin_inset LatexCommand index
1170 name "WMF|see{Formatos de Imagen}"
1171
1172 \end_inset
1173
1174 .
1175  Escribimos 
1176 \begin_inset Quotes eld
1177 \end_inset
1178
1179 pueden ser
1180 \begin_inset Quotes erd
1181 \end_inset
1182
1183 , porque se puede convertir cualquier imagen bitmap a PDF o EPS y el resultado
1184  será todavía una imagen bitmap.
1185  En estos casos sólo se añade una cabecera con las propiedades de la imagen
1186  a la imagen original
1187 \begin_inset Foot
1188 status collapsed
1189
1190 \begin_layout Standard
1191 En el caso de PDF, además se comprime la imagen original.
1192 \end_layout
1193
1194 \end_inset
1195
1196 .
1197  Por ejemplo, los archivos PDF generados por 
1198 \family sans
1199 Adobe Photoshop
1200 \family default
1201  son imágenes bitmap.
1202 \end_layout
1203
1204 \begin_layout Standard
1205 Normalmente no es posible convertir una imagen bitmap a escalable, solo
1206  viceversa.
1207  Solo los formatos de imagen PDF y EPS pueden empotrarse directamente en
1208  archivos de salida PDF y PostScript, respectivamente.
1209  Las imágenes SVG y WMF son recalculadas a bitmaps cuando se genera el archivo
1210  de salida porque actualmente no hay convertidores adecuados WMF/SVG 
1211 \begin_inset Formula $\to$
1212 \end_inset
1213
1214  PDF/EPS.
1215 \end_layout
1216
1217 \begin_layout Chapter
1218 Tablas
1219 \begin_inset LatexCommand label
1220 name "cha:Tablas"
1221
1222 \end_inset
1223
1224
1225 \begin_inset LatexCommand index
1226 name "Tablas"
1227
1228 \end_inset
1229
1230
1231 \end_layout
1232
1233 \begin_layout Section
1234 Introducción
1235 \begin_inset LatexCommand index
1236 name "Tablas ! Introducción"
1237
1238 \end_inset
1239
1240
1241 \end_layout
1242
1243 \begin_layout Standard
1244 Puede insertarse una tabla mediante el botón
1245 \begin_inset Graphics
1246         filename ../../images/tabular-insert.xpm
1247         scale 85
1248
1249 \end_inset
1250
1251  o el menú 
1252 \family sans
1253 Insertar\SpecialChar \menuseparator
1254 Tabla
1255 \family default
1256 .
1257  Aparece un diálogo en el que se pide el número de filas y columnas.
1258  Por defecto, la tabla tiene líneas que enmarcan cada celda y la primera
1259  fila aparece separada por una línea doble: la línea inferior de la primera
1260  fila y la línea superior de la segunda fila.
1261  Ejemplo de tabla:
1262 \end_layout
1263
1264 \begin_layout Standard
1265 \align center
1266 \begin_inset Tabular
1267 <lyxtabular version="3" rows="4" columns="4">
1268 <features>
1269 <column alignment="center" valignment="top" leftline="true" width="0">
1270 <column alignment="center" valignment="top" leftline="true" width="0pt">
1271 <column alignment="center" valignment="top" leftline="true" width="0in">
1272 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1273 <row topline="true" bottomline="true">
1274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1275 \begin_inset Text
1276
1277 \begin_layout Standard
1278
1279 \end_layout
1280
1281 \end_inset
1282 </cell>
1283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1284 \begin_inset Text
1285
1286 \begin_layout Standard
1287
1288 \family roman
1289 \series medium
1290 \shape up
1291 \size normal
1292 \emph off
1293 \bar no
1294 \noun off
1295 \color none
1296 1
1297 \end_layout
1298
1299 \end_inset
1300 </cell>
1301 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1302 \begin_inset Text
1303
1304 \begin_layout Standard
1305 2
1306 \end_layout
1307
1308 \end_inset
1309 </cell>
1310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1311 \begin_inset Text
1312
1313 \begin_layout Standard
1314 3
1315 \end_layout
1316
1317 \end_inset
1318 </cell>
1319 </row>
1320 <row topline="true">
1321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1322 \begin_inset Text
1323
1324 \begin_layout Standard
1325
1326 \family roman
1327 \series medium
1328 \shape up
1329 \size normal
1330 \emph off
1331 \bar no
1332 \noun off
1333 \color none
1334 A
1335 \end_layout
1336
1337 \end_inset
1338 </cell>
1339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1340 \begin_inset Text
1341
1342 \begin_layout Standard
1343
1344 \end_layout
1345
1346 \end_inset
1347 </cell>
1348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1349 \begin_inset Text
1350
1351 \begin_layout Standard
1352
1353 \end_layout
1354
1355 \end_inset
1356 </cell>
1357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1358 \begin_inset Text
1359
1360 \begin_layout Standard
1361
1362 \end_layout
1363
1364 \end_inset
1365 </cell>
1366 </row>
1367 <row topline="true">
1368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1369 \begin_inset Text
1370
1371 \begin_layout Standard
1372
1373 \family roman
1374 \series medium
1375 \shape up
1376 \size normal
1377 \emph off
1378 \bar no
1379 \noun off
1380 \color none
1381 B
1382 \end_layout
1383
1384 \end_inset
1385 </cell>
1386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1387 \begin_inset Text
1388
1389 \begin_layout Standard
1390
1391 \end_layout
1392
1393 \end_inset
1394 </cell>
1395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1396 \begin_inset Text
1397
1398 \begin_layout Standard
1399
1400 \size normal
1401 \noun off
1402 \color none
1403  
1404 \end_layout
1405
1406 \end_inset
1407 </cell>
1408 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1409 \begin_inset Text
1410
1411 \begin_layout Standard
1412
1413 \end_layout
1414
1415 \end_inset
1416 </cell>
1417 </row>
1418 <row topline="true" bottomline="true">
1419 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1420 \begin_inset Text
1421
1422 \begin_layout Standard
1423
1424 \family roman
1425 \series medium
1426 \shape up
1427 \size normal
1428 \emph off
1429 \bar no
1430 \noun off
1431 \color none
1432 C
1433 \end_layout
1434
1435 \end_inset
1436 </cell>
1437 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1438 \begin_inset Text
1439
1440 \begin_layout Standard
1441
1442 \end_layout
1443
1444 \end_inset
1445 </cell>
1446 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1447 \begin_inset Text
1448
1449 \begin_layout Standard
1450
1451 \end_layout
1452
1453 \end_inset
1454 </cell>
1455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1456 \begin_inset Text
1457
1458 \begin_layout Standard
1459
1460 \end_layout
1461
1462 \end_inset
1463 </cell>
1464 </row>
1465 </lyxtabular>
1466
1467 \end_inset
1468
1469
1470 \end_layout
1471
1472 \begin_layout Section
1473 Diálogo Tablas
1474 \begin_inset LatexCommand index
1475 name "Tablas ! Diálogo"
1476
1477 \end_inset
1478
1479
1480 \end_layout
1481
1482 \begin_layout Standard
1483 Una tabla se puede cambiar mediante el cuadro de diálogo que aparece al
1484  pinchar sobre ella con el botón derecho del ratón.
1485  Se pueden ajustar los parámetros de la celda y fila/columna en la que se
1486  encuentra el cursor.
1487  La mayoría de opciones también trabajan sobre una selección de celdas,
1488  de filas o de columnas.
1489  Observa que hay que diferenciar entre seleccionar una celda o seleccionar
1490  su 
1491 \emph on
1492 contenido
1493 \emph default
1494 .
1495  En el cuadro de diálogo aparecen las siguientes solapas:
1496 \end_layout
1497
1498 \begin_layout Description
1499
1500 \family sans
1501 Configuración\InsetSpace ~
1502 de\InsetSpace ~
1503 Tabla
1504 \family default
1505  Aquí puedes establecer la alineación horizontal para la fila actual y la
1506  anchura de la columna actual.
1507  Una vez puesta la anchura puedes ajustar también el alineamiento vertical.
1508  Una anchura determinada permite tener saltos de línea y distintos párrafos
1509  de texto, ver sección \InsetSpace ~
1510
1511 \begin_inset LatexCommand ref
1512 reference "sub:Líneas-Múltiples-en"
1513
1514 \end_inset
1515
1516 .
1517  Si no estableces anchura, la columna será tan ancha como el contenido de
1518  la celda más ancha.
1519 \newline
1520 Además, puedes marcar una o más celdas de una fila como
1521  una celda multicolumna, ver sección\InsetSpace ~
1522
1523 \begin_inset LatexCommand ref
1524 reference "sub:Multicolumnas"
1525
1526 \end_inset
1527
1528 .
1529 \newline
1530 Las casillas de giro rotan la celda actual, una selección o toda la tabla
1531  90º en el sentido de las agujas del reloj.
1532  La rotación no se ve en LyX, sí en la salida.
1533 \newline
1534
1535 \begin_inset Note Greyedout
1536 status open
1537
1538 \begin_layout Standard
1539
1540 \series bold
1541 Nota:
1542 \series default
1543  no todos los visores DVI pueden mostrar rotaciones.
1544 \end_layout
1545
1546 \end_inset
1547
1548
1549 \newline
1550 También es posible introducir argumentos LaTeX necesarios para formatos
1551  especiales, ver sección\InsetSpace ~
1552
1553 \begin_inset LatexCommand ref
1554 reference "sub:Cálculos-en-Multicolumnas"
1555
1556 \end_inset
1557
1558  y 
1559 \begin_inset LatexCommand ref
1560 reference "sec:Tablas-Coloreadas"
1561
1562 \end_inset
1563
1564 .
1565 \end_layout
1566
1567 \begin_layout Description
1568
1569 \family sans
1570 Bordes
1571 \family default
1572  En esta solapa puedes añadir y quitar bordes para la fila/columna actual.
1573 \end_layout
1574
1575 \begin_layout Description
1576
1577 \family sans
1578 Tabla\InsetSpace ~
1579 Larga
1580 \family default
1581  Para hacer 
1582 \emph on
1583 tablas largas
1584 \emph default
1585  que pueden extenderse por varias páginas.
1586  La sección\InsetSpace ~
1587
1588 \begin_inset LatexCommand ref
1589 reference "sec:Tablas-Largas"
1590
1591 \end_inset
1592
1593  describe su uso en detalle.
1594 \end_layout
1595
1596 \begin_layout Standard
1597 Si la barra de herramientas de tabla está abierta, puedes mover el cursor
1598  con las teclas de flecha de celda en celda y la propiedad de la celda actual
1599  aparecerá inmediatamente en el diálogo.
1600 \end_layout
1601
1602 \begin_layout Section
1603 Barra de Herramientas de Tablas
1604 \begin_inset LatexCommand index
1605 name "Tablas ! Barra de Herramientas"
1606
1607 \end_inset
1608
1609
1610 \end_layout
1611
1612 \begin_layout Standard
1613 La barra de herramientas de tabla es una alternativa al cuadro de diálogo
1614  para cambiar las tablas de manera más rápida.
1615  Normalmente debería aparecer en la parte inferior de la ventana principal
1616  de LyX cuando el cursor está dentro de una tabla.
1617  En cualquier momento se puede presentar esta barra pinchando con el botón
1618  derecho del ratón en cualquier punto de la barra principal de menú.
1619 \end_layout
1620
1621 \begin_layout Standard
1622 La barra de herramientas tiene los siguientes iconos:
1623 \end_layout
1624
1625 \begin_layout Labeling
1626 \labelwidthstring 00.00.0000
1627 \begin_inset Graphics
1628         filename ../../images/tabular-feature_append-row.xpm
1629
1630 \end_inset
1631
1632  añade una fila bajo la celda actual o selección
1633 \end_layout
1634
1635 \begin_layout Labeling
1636 \labelwidthstring 00.00.0000
1637 \begin_inset Graphics
1638         filename ../../images/tabular-feature_append-column.xpm
1639
1640 \end_inset
1641
1642  añade una columna a la derecha de la celda actual o selección
1643 \end_layout
1644
1645 \begin_layout Labeling
1646 \labelwidthstring 00.00.0000
1647 \begin_inset Graphics
1648         filename ../../images/tabular-feature_delete-row.xpm
1649
1650 \end_inset
1651
1652  borra la fila actual o selección
1653 \end_layout
1654
1655 \begin_layout Labeling
1656 \labelwidthstring 00.00.0000
1657 \begin_inset Graphics
1658         filename ../../images/tabular-feature_delete-column.xpm
1659
1660 \end_inset
1661
1662  borra la columna actual o selección
1663 \end_layout
1664
1665 \begin_layout Labeling
1666 \labelwidthstring 00.00.0000
1667 \begin_inset Graphics
1668         filename ../../images/tabular-feature_toggle-line-top.xpm
1669
1670 \end_inset
1671
1672  añade una línea sobre la celda/fila actual o la selección
1673 \end_layout
1674
1675 \begin_layout Labeling
1676 \labelwidthstring 00.00.0000
1677 \begin_inset Graphics
1678         filename ../../images/tabular-feature_toggle-line-bottom.xpm
1679
1680 \end_inset
1681
1682  añade una línea bajo la celda/fila actual o la selección
1683 \end_layout
1684
1685 \begin_layout Labeling
1686 \labelwidthstring 00.00.0000
1687 \begin_inset Graphics
1688         filename ../../images/tabular-feature_toggle-line-left.xpm
1689
1690 \end_inset
1691
1692  añade una línea a la izquierda de la celda/fila actual o la selección
1693 \end_layout
1694
1695 \begin_layout Labeling
1696 \labelwidthstring 00.00.0000
1697 \begin_inset Graphics
1698         filename ../../images/tabular-feature_toggle-line-right.xpm
1699
1700 \end_inset
1701
1702  añade una línea a la derecha de la celda/fila actual o la selección
1703 \end_layout
1704
1705 \begin_layout Labeling
1706 \labelwidthstring 00.00.0000
1707 \begin_inset Graphics
1708         filename ../../images/tabular-feature_set-all-lines.xpm
1709
1710 \end_inset
1711
1712  añade líneas alrededor de la celda actual o seleccionadas (si la celda
1713  actual no es multicolumna esto afecta también a la fila y a la columna)
1714 \end_layout
1715
1716 \begin_layout Labeling
1717 \labelwidthstring 00.00.0000
1718 \begin_inset Graphics
1719         filename ../../images/tabular-feature_unset-all-lines.xpm
1720
1721 \end_inset
1722
1723  borra todas las líneas de la celda o celdas seleccionadas (si la celda
1724  actual no es multicolumna esto afecta también a la fila y a la columna)
1725 \end_layout
1726
1727 \begin_layout Labeling
1728 \labelwidthstring 00.00.0000
1729 \begin_inset Graphics
1730         filename ../../images/tabular-feature_align-left.xpm
1731
1732 \end_inset
1733
1734  alinea a la izquierda el contenido de la celda/columna
1735 \end_layout
1736
1737 \begin_layout Labeling
1738 \labelwidthstring 00.00.0000
1739 \begin_inset Graphics
1740         filename ../../images/tabular-feature_align-center.xpm
1741
1742 \end_inset
1743
1744  centra el contenido de la celda/columna horizontalmente
1745 \end_layout
1746
1747 \begin_layout Labeling
1748 \labelwidthstring 00.00.0000
1749 \begin_inset Graphics
1750         filename ../../images/tabular-feature_align-right.xpm
1751
1752 \end_inset
1753
1754  alinea a la derecha el contenido de la celda/columna
1755 \end_layout
1756
1757 \begin_layout Labeling
1758 \labelwidthstring 00.00.0000
1759 \begin_inset Graphics
1760         filename ../../images/tabular-feature_valign-top.xpm
1761
1762 \end_inset
1763
1764  alinea arriba el contenido de la celda
1765 \end_layout
1766
1767 \begin_layout Labeling
1768 \labelwidthstring 00.00.0000
1769 \begin_inset Graphics
1770         filename ../../images/tabular-feature_valign-middle.xpm
1771
1772 \end_inset
1773
1774  centra verticalmente el contenido de la celda
1775 \end_layout
1776
1777 \begin_layout Labeling
1778 \labelwidthstring 00.00.0000
1779 \begin_inset Graphics
1780         filename ../../images/tabular-feature_valign-bottom.xpm
1781
1782 \end_inset
1783
1784  alinea abajo el contenido de la celda
1785 \end_layout
1786
1787 \begin_layout Labeling
1788 \labelwidthstring 00.00.0000
1789 \begin_inset Graphics
1790         filename ../../images/tabular-feature_set-rotate-cell.xpm
1791
1792 \end_inset
1793
1794  gira la celda o selección 90° como las agujas de reloj
1795 \end_layout
1796
1797 \begin_layout Labeling
1798 \labelwidthstring 00.00.0000
1799 \begin_inset Graphics
1800         filename ../../images/tabular-feature_set-rotate-tabular.xpm
1801
1802 \end_inset
1803
1804  gira toda la tabla 90° como agujas del reloj
1805 \end_layout
1806
1807 \begin_layout Labeling
1808 \labelwidthstring 00.00.0000
1809 \begin_inset Graphics
1810         filename ../../images/tabular-feature_multicolumn.xpm
1811
1812 \end_inset
1813
1814  establece la celda actual o selección como multicolumna
1815 \end_layout
1816
1817 \begin_layout Section
1818 Menú Editar Tabla
1819 \begin_inset LatexCommand index
1820 name "Tablas ! Menú Editar"
1821
1822 \end_inset
1823
1824
1825 \end_layout
1826
1827 \begin_layout Standard
1828 Además del diálogo y la barra de herramientas, el menú 
1829 \family sans
1830 Editar\SpecialChar \menuseparator
1831 Tabla
1832 \family default
1833  permite añadir y borrar bordes para la fila/columna actual y establecer
1834  la selección como multicolumna.
1835  El menú sólo está disponible si el cursor está en la tabla.
1836 \end_layout
1837
1838 \begin_layout Section
1839 Tablas Flotantes
1840 \begin_inset LatexCommand label
1841 name "sec:Tablas-Flotantes"
1842
1843 \end_inset
1844
1845
1846 \begin_inset LatexCommand index
1847 name "Flotantes ! Tablas"
1848
1849 \end_inset
1850
1851
1852 \begin_inset LatexCommand index
1853 name "Tablas ! Flotantes"
1854
1855 \end_inset
1856
1857
1858 \end_layout
1859
1860 \begin_layout Standard
1861 Para una explicación general sobre flotantes, echa un vistazo a la sección\InsetSpace ~
1862
1863 \begin_inset LatexCommand ref
1864 reference "sec:IntroducciónFlotantes"
1865
1866 \end_inset
1867
1868 .
1869 \end_layout
1870
1871 \begin_layout Standard
1872 \begin_inset Float table
1873 placement h
1874 wide false
1875 sideways false
1876 status open
1877
1878 \begin_layout Standard
1879 \begin_inset Caption
1880
1881 \begin_layout Standard
1882 \begin_inset LatexCommand label
1883 name "tab:una tabla flotante"
1884
1885 \end_inset
1886
1887 Una tabla flotante.
1888 \end_layout
1889
1890 \end_inset
1891
1892
1893 \end_layout
1894
1895 \begin_layout Standard
1896 \align center
1897 \begin_inset Tabular
1898 <lyxtabular version="3" rows="3" columns="3">
1899 <features>
1900 <column alignment="center" valignment="top" leftline="true" width="0pt">
1901 <column alignment="center" valignment="top" leftline="true" width="0pt">
1902 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1903 <row topline="true" bottomline="true">
1904 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1905 \begin_inset Text
1906
1907 \begin_layout Standard
1908
1909 \family roman
1910 \series medium
1911 \shape up
1912 \size normal
1913 \emph off
1914 \bar no
1915 \noun off
1916 \color none
1917 1
1918 \end_layout
1919
1920 \end_inset
1921 </cell>
1922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1923 \begin_inset Text
1924
1925 \begin_layout Standard
1926
1927 \family roman
1928 \series medium
1929 \shape up
1930 \size normal
1931 \emph off
1932 \bar no
1933 \noun off
1934 \color none
1935 2
1936 \end_layout
1937
1938 \end_inset
1939 </cell>
1940 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1941 \begin_inset Text
1942
1943 \begin_layout Standard
1944
1945 \family roman
1946 \series medium
1947 \shape up
1948 \size normal
1949 \emph off
1950 \bar no
1951 \noun off
1952 \color none
1953 3
1954 \end_layout
1955
1956 \end_inset
1957 </cell>
1958 </row>
1959 <row topline="true">
1960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1961 \begin_inset Text
1962
1963 \begin_layout Standard
1964
1965 \family roman
1966 \series medium
1967 \shape up
1968 \size normal
1969 \emph off
1970 \bar no
1971 \noun off
1972 \color none
1973 Pepe
1974 \end_layout
1975
1976 \end_inset
1977 </cell>
1978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1979 \begin_inset Text
1980
1981 \begin_layout Standard
1982
1983 \family roman
1984 \series medium
1985 \shape up
1986 \size normal
1987 \emph off
1988 \bar no
1989 \noun off
1990 \color none
1991 Mari
1992 \end_layout
1993
1994 \end_inset
1995 </cell>
1996 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1997 \begin_inset Text
1998
1999 \begin_layout Standard
2000
2001 \family roman
2002 \series medium
2003 \shape up
2004 \size normal
2005 \emph off
2006 \bar no
2007 \noun off
2008 \color none
2009 Teo
2010 \end_layout
2011
2012 \end_inset
2013 </cell>
2014 </row>
2015 <row topline="true" bottomline="true">
2016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2017 \begin_inset Text
2018
2019 \begin_layout Standard
2020
2021 \family roman
2022 \series medium
2023 \shape up
2024 \size normal
2025 \emph off
2026 \bar no
2027 \noun off
2028 \color none
2029 \begin_inset Formula $\int x^{2}dx$
2030 \end_inset
2031
2032
2033 \end_layout
2034
2035 \end_inset
2036 </cell>
2037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2038 \begin_inset Text
2039
2040 \begin_layout Standard
2041
2042 \family roman
2043 \series medium
2044 \shape up
2045 \size normal
2046 \emph off
2047 \bar no
2048 \noun off
2049 \color none
2050 \begin_inset Formula $\left[\begin{array}{cc}
2051 a & b\\
2052 c & d\end{array}\right]$
2053 \end_inset
2054
2055
2056 \end_layout
2057
2058 \end_inset
2059 </cell>
2060 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2061 \begin_inset Text
2062
2063 \begin_layout Standard
2064
2065 \family roman
2066 \series medium
2067 \shape up
2068 \size normal
2069 \emph off
2070 \bar no
2071 \noun off
2072 \color none
2073 \begin_inset Formula $1+1=2$
2074 \end_inset
2075
2076
2077 \end_layout
2078
2079 \end_inset
2080 </cell>
2081 </row>
2082 </lyxtabular>
2083
2084 \end_inset
2085
2086
2087 \end_layout
2088
2089 \end_inset
2090
2091
2092 \end_layout
2093
2094 \begin_layout Standard
2095 Las tablas flotantes pueden insertarse con el menú 
2096 \family sans
2097 Insertar\SpecialChar \menuseparator
2098 Flotante\SpecialChar \menuseparator
2099 Tabla
2100 \family default
2101  o con el botón 
2102 \begin_inset Graphics
2103         filename ../../images/float-insert_table.xpm
2104         scale 85
2105
2106 \end_inset
2107
2108 .
2109 \end_layout
2110
2111 \begin_layout Standard
2112 El flotante se muestra como un cuadro desplegable con la etiqueta 
2113 \begin_inset Quotes eld
2114 \end_inset
2115
2116 Tabla\InsetSpace ~
2117 #:
2118 \begin_inset Quotes erd
2119 \end_inset
2120
2121  (# es el número actual).
2122  El texto que sigue a dicha etiqueta es el encabezado de tabla.
2123  Para insertar una tabla en el flotante se sitúa el cursor al final del
2124  texto del encabezado y se pulsa Enter.
2125  El encabezado se imprime encima de la tabla.
2126 \end_layout
2127
2128 \begin_layout Standard
2129 La tabla\InsetSpace ~
2130
2131 \begin_inset LatexCommand ref
2132 reference "tab:una tabla flotante"
2133
2134 \end_inset
2135
2136  es un ejemplo de tabla flotante.
2137 \end_layout
2138
2139 \begin_layout Standard
2140 Lo habitual es poner el encabezado sobre la tabla, lo que desafortunadamente
2141  no es soportado en las clases estándar de LaTeX.
2142  Esto significa que si estás usando las clases de documento 
2143 \family sans
2144 article
2145 \family default
2146
2147 \family sans
2148 book
2149 \family default
2150
2151 \family sans
2152 letter
2153 \family default
2154 , o 
2155 \family sans
2156 report
2157 \family default
2158  no habrá espacio entre el encabezado y la tabla.
2159  Para añadir un espacio entre ellos hay que poner en el preámbulo LaTeX
2160  del documento la siguiente opción al comando del paquete de LaTeX 
2161 \series bold
2162 caption
2163 \series default
2164
2165 \begin_inset LatexCommand index
2166 name "LaTeX-paquetes ! caption"
2167
2168 \end_inset
2169
2170
2171 \begin_inset Foot
2172 status open
2173
2174 \begin_layout Standard
2175 Para más información ve a la sección\InsetSpace ~
2176
2177 \begin_inset LatexCommand ref
2178 reference "sec:Colocación-de-Encabezados"
2179
2180 \end_inset
2181
2182 .
2183 \end_layout
2184
2185 \end_inset
2186
2187 :
2188 \end_layout
2189
2190 \begin_layout Standard
2191
2192 \series bold
2193 tableposition=top
2194 \end_layout
2195
2196 \begin_layout Standard
2197 El formato del encabezado se puede controlar mediante el paquete de LaTeX
2198  
2199 \series bold
2200 caption
2201 \series default
2202  como se describe en la sección\InsetSpace ~
2203
2204 \begin_inset LatexCommand ref
2205 reference "sec:Formato-de-Encabezados"
2206
2207 \end_inset
2208
2209 .
2210  
2211 \end_layout
2212
2213 \begin_layout Standard
2214 \begin_inset LatexCommand index
2215 name "Referencias ! a Tablas"
2216
2217 \end_inset
2218
2219 Las tablas pueden tener referencias cruzadas en el texto referenciando su
2220  etiqueta.
2221  Para hacerlo inserta una etiqueta en el encabezado con el menú 
2222 \family sans
2223 Insertar\SpecialChar \menuseparator
2224 Etiqueta
2225 \family default
2226  o con el botón 
2227 \begin_inset Graphics
2228         filename ../../images/label-insert.xpm
2229         scale 85
2230
2231 \end_inset
2232
2233 .
2234  Ahora puedes referenciar la etiqueta con el menú 
2235 \family sans
2236 Insertar\SpecialChar \menuseparator
2237 Referencia\InsetSpace ~
2238 cruzada
2239 \family default
2240  o con el botón 
2241 \begin_inset Graphics
2242         filename ../../images/dialog-show-new-inset_ref.xpm
2243         scale 85
2244
2245 \end_inset
2246
2247 .
2248 \newline
2249 Las referencias se explican con detalle en la sección\InsetSpace ~
2250
2251 \begin_inset LatexCommand ref
2252 reference "sec:Referencias-a-Flotantes"
2253
2254 \end_inset
2255
2256 .
2257 \end_layout
2258
2259 \begin_layout Section
2260 Tablas Largas
2261 \begin_inset LatexCommand label
2262 name "sec:Tablas-Largas"
2263
2264 \end_inset
2265
2266
2267 \begin_inset LatexCommand index
2268 name "Tablas Largas"
2269
2270 \end_inset
2271
2272
2273 \begin_inset LatexCommand index
2274 name "Tablas ! Largas"
2275
2276 \end_inset
2277
2278
2279 \end_layout
2280
2281 \begin_layout Standard
2282 Si la tabla es demasiado larga para una página, puedes usar la opción 
2283 \family sans
2284 Usar\InsetSpace ~
2285 tabla\InsetSpace ~
2286 larga
2287 \family default
2288  en la solapa 
2289 \family sans
2290 Tabla\InsetSpace ~
2291 larga
2292 \family default
2293  del diálogo de tablas, para repartir automáticamente la tabla en varias
2294  páginas.
2295  Al hacerlo se habilitan diversos botones opcionales en los que puedes definir:
2296 \end_layout
2297
2298 \begin_layout Description
2299
2300 \family sans
2301 Encabezado:
2302 \family default
2303  La fila actual y todas las de arriba, que no tienen ninguna opción especial
2304  definida, se definen como filas de encabezado para todas las páginas de
2305  la tabla, excepto para la primera página si 
2306 \family sans
2307 Primer\InsetSpace ~
2308 encabezado
2309 \family default
2310  está definido.
2311  Este se denomina encabezado principal.
2312 \end_layout
2313
2314 \begin_layout Description
2315
2316 \family sans
2317 Primer\InsetSpace ~
2318 encabezado:
2319 \family default
2320  La fila actual y superiores, que no tienen ninguna opción especial definida,
2321  se definen como filas cabeceras de la primera página de la tabla.
2322 \end_layout
2323
2324 \begin_layout Description
2325
2326 \family sans
2327 Pie:
2328 \family default
2329  La fila actual y todas las siguientes, que no tienen ninguna opción especial
2330  definida, se definen como filas de pie de todas las páginas de la tabla,
2331  excepto para la última página si se define 
2332 \family sans
2333 Último\InsetSpace ~
2334 pie.
2335 \end_layout
2336
2337 \begin_layout Description
2338
2339 \family sans
2340 Último\InsetSpace ~
2341 pie: L
2342 \family default
2343 a fila actual y siguientes, que no tienen ninguna opción especial definida,
2344  se definen como filas de pie de la última página de la tabla.
2345 \end_layout
2346
2347 \begin_layout Standard
2348 También se puede especificar en qué fila se ha de cortar la tabla.
2349  Si se establece más de una opción en la misma fila, habría que tener en
2350  cuenta que solo la primera de ellas se usa en la fila dada.
2351  Las otras quedarán definidas como 
2352 \emph on
2353 vacías
2354 \emph default
2355 .
2356  En este contexto, primera significa primero en este orden: 
2357 \family sans
2358 Pie, Último\InsetSpace ~
2359 pie, Encabezado, Primer\InsetSpace ~
2360 encabezado
2361 \family default
2362 .
2363  La siguiente tabla muestra cómo funciona:
2364 \end_layout
2365
2366 \begin_layout Standard
2367
2368 \end_layout
2369
2370 \begin_layout Standard
2371 \align center
2372 \begin_inset Tabular
2373 <lyxtabular version="3" rows="69" columns="3">
2374 <features islongtable="true">
2375 <column alignment="left" valignment="top" leftline="true" width="0cm">
2376 <column alignment="left" valignment="top" width="0pt">
2377 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2378 <row topline="true" bottomline="true" endfirsthead="true">
2379 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2380 \begin_inset Text
2381
2382 \begin_layout Standard
2383
2384 \series bold
2385 Ejemplo de lista telefónica (ignore los nombres)
2386 \end_layout
2387
2388 \end_inset
2389 </cell>
2390 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2391 \begin_inset Text
2392
2393 \begin_layout Standard
2394
2395 \end_layout
2396
2397 \end_inset
2398 </cell>
2399 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2400 \begin_inset Text
2401
2402 \begin_layout Standard
2403
2404 \end_layout
2405
2406 \end_inset
2407 </cell>
2408 </row>
2409 <row topline="true" bottomline="true" endfirsthead="true">
2410 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2411 \begin_inset Text
2412
2413 \begin_layout Standard
2414
2415 \series bold
2416 NOMBRE
2417 \end_layout
2418
2419 \end_inset
2420 </cell>
2421 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2422 \begin_inset Text
2423
2424 \begin_layout Standard
2425
2426 \end_layout
2427
2428 \end_inset
2429 </cell>
2430 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2431 \begin_inset Text
2432
2433 \begin_layout Standard
2434
2435 \series bold
2436 TEL.
2437 \end_layout
2438
2439 \end_inset
2440 </cell>
2441 </row>
2442 <row topline="true" bottomline="true" endhead="true">
2443 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2444 \begin_inset Text
2445
2446 \begin_layout Standard
2447
2448 \series bold
2449 Ejemplo de lista telefónica
2450 \end_layout
2451
2452 \end_inset
2453 </cell>
2454 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2455 \begin_inset Text
2456
2457 \begin_layout Standard
2458
2459 \end_layout
2460
2461 \end_inset
2462 </cell>
2463 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2464 \begin_inset Text
2465
2466 \begin_layout Standard
2467
2468 \end_layout
2469
2470 \end_inset
2471 </cell>
2472 </row>
2473 <row topline="true" bottomline="true" endhead="true">
2474 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2475 \begin_inset Text
2476
2477 \begin_layout Standard
2478
2479 \series bold
2480 NOMBRE
2481 \end_layout
2482
2483 \end_inset
2484 </cell>
2485 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2486 \begin_inset Text
2487
2488 \begin_layout Standard
2489
2490 \end_layout
2491
2492 \end_inset
2493 </cell>
2494 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2495 \begin_inset Text
2496
2497 \begin_layout Standard
2498
2499 \series bold
2500 TEL.
2501 \end_layout
2502
2503 \end_inset
2504 </cell>
2505 </row>
2506 <row topline="true" bottomline="true" endfoot="true">
2507 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2508 \begin_inset Text
2509
2510 \begin_layout Standard
2511  continúa en la página siguiente
2512 \end_layout
2513
2514 \end_inset
2515 </cell>
2516 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2517 \begin_inset Text
2518
2519 \begin_layout Standard
2520
2521 \end_layout
2522
2523 \end_inset
2524 </cell>
2525 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2526 \begin_inset Text
2527
2528 \begin_layout Standard
2529
2530 \end_layout
2531
2532 \end_inset
2533 </cell>
2534 </row>
2535 <row>
2536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2537 \begin_inset Text
2538
2539 \begin_layout Standard
2540
2541 \series bold
2542 Annovi
2543 \end_layout
2544
2545 \end_inset
2546 </cell>
2547 <cell alignment="center" valignment="top" topline="true" usebox="none">
2548 \begin_inset Text
2549
2550 \begin_layout Standard
2551 Silvia
2552 \end_layout
2553
2554 \end_inset
2555 </cell>
2556 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2557 \begin_inset Text
2558
2559 \begin_layout Standard
2560 111
2561 \end_layout
2562
2563 \end_inset
2564 </cell>
2565 </row>
2566 <row>
2567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2568 \begin_inset Text
2569
2570 \begin_layout Standard
2571
2572 \series bold
2573 Bertoli
2574 \end_layout
2575
2576 \end_inset
2577 </cell>
2578 <cell alignment="center" valignment="top" topline="true" usebox="none">
2579 \begin_inset Text
2580
2581 \begin_layout Standard
2582 Stefano
2583 \end_layout
2584
2585 \end_inset
2586 </cell>
2587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2588 \begin_inset Text
2589
2590 \begin_layout Standard
2591 111
2592 \end_layout
2593
2594 \end_inset
2595 </cell>
2596 </row>
2597 <row>
2598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2599 \begin_inset Text
2600
2601 \begin_layout Standard
2602
2603 \series bold
2604 Bozzi
2605 \end_layout
2606
2607 \end_inset
2608 </cell>
2609 <cell alignment="center" valignment="top" topline="true" usebox="none">
2610 \begin_inset Text
2611
2612 \begin_layout Standard
2613 Walter
2614 \end_layout
2615
2616 \end_inset
2617 </cell>
2618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2619 \begin_inset Text
2620
2621 \begin_layout Standard
2622 111
2623 \end_layout
2624
2625 \end_inset
2626 </cell>
2627 </row>
2628 <row>
2629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2630 \begin_inset Text
2631
2632 \begin_layout Standard
2633
2634 \series bold
2635 Cachia
2636 \end_layout
2637
2638 \end_inset
2639 </cell>
2640 <cell alignment="center" valignment="top" topline="true" usebox="none">
2641 \begin_inset Text
2642
2643 \begin_layout Standard
2644 Maria
2645 \end_layout
2646
2647 \end_inset
2648 </cell>
2649 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2650 \begin_inset Text
2651
2652 \begin_layout Standard
2653 111
2654 \end_layout
2655
2656 \end_inset
2657 </cell>
2658 </row>
2659 <row>
2660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2661 \begin_inset Text
2662
2663 \begin_layout Standard
2664
2665 \series bold
2666 Cachia
2667 \end_layout
2668
2669 \end_inset
2670 </cell>
2671 <cell alignment="center" valignment="top" topline="true" usebox="none">
2672 \begin_inset Text
2673
2674 \begin_layout Standard
2675 Maurizio
2676 \end_layout
2677
2678 \end_inset
2679 </cell>
2680 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2681 \begin_inset Text
2682
2683 \begin_layout Standard
2684 111
2685 \end_layout
2686
2687 \end_inset
2688 </cell>
2689 </row>
2690 <row>
2691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2692 \begin_inset Text
2693
2694 \begin_layout Standard
2695
2696 \series bold
2697 Cinquemani
2698 \end_layout
2699
2700 \end_inset
2701 </cell>
2702 <cell alignment="center" valignment="top" topline="true" usebox="none">
2703 \begin_inset Text
2704
2705 \begin_layout Standard
2706 Giusi
2707 \end_layout
2708
2709 \end_inset
2710 </cell>
2711 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2712 \begin_inset Text
2713
2714 \begin_layout Standard
2715 111
2716 \end_layout
2717
2718 \end_inset
2719 </cell>
2720 </row>
2721 <row>
2722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2723 \begin_inset Text
2724
2725 \begin_layout Standard
2726
2727 \series bold
2728 Colin
2729 \end_layout
2730
2731 \end_inset
2732 </cell>
2733 <cell alignment="center" valignment="top" topline="true" usebox="none">
2734 \begin_inset Text
2735
2736 \begin_layout Standard
2737 Bernard
2738 \end_layout
2739
2740 \end_inset
2741 </cell>
2742 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2743 \begin_inset Text
2744
2745 \begin_layout Standard
2746 111
2747 \end_layout
2748
2749 \end_inset
2750 </cell>
2751 </row>
2752 <row>
2753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2754 \begin_inset Text
2755
2756 \begin_layout Standard
2757
2758 \series bold
2759 Concli
2760 \end_layout
2761
2762 \end_inset
2763 </cell>
2764 <cell alignment="center" valignment="top" topline="true" usebox="none">
2765 \begin_inset Text
2766
2767 \begin_layout Standard
2768 Gianfranco
2769 \end_layout
2770
2771 \end_inset
2772 </cell>
2773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2774 \begin_inset Text
2775
2776 \begin_layout Standard
2777 111
2778 \end_layout
2779
2780 \end_inset
2781 </cell>
2782 </row>
2783 <row>
2784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2785 \begin_inset Text
2786
2787 \begin_layout Standard
2788
2789 \series bold
2790 Dal Bosco
2791 \end_layout
2792
2793 \end_inset
2794 </cell>
2795 <cell alignment="center" valignment="top" topline="true" usebox="none">
2796 \begin_inset Text
2797
2798 \begin_layout Standard
2799 Carolina
2800 \end_layout
2801
2802 \end_inset
2803 </cell>
2804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2805 \begin_inset Text
2806
2807 \begin_layout Standard
2808 111
2809 \end_layout
2810
2811 \end_inset
2812 </cell>
2813 </row>
2814 <row>
2815 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2816 \begin_inset Text
2817
2818 \begin_layout Standard
2819
2820 \series bold
2821 Dalpiaz
2822 \end_layout
2823
2824 \end_inset
2825 </cell>
2826 <cell alignment="center" valignment="top" topline="true" usebox="none">
2827 \begin_inset Text
2828
2829 \begin_layout Standard
2830 Annamaria
2831 \end_layout
2832
2833 \end_inset
2834 </cell>
2835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2836 \begin_inset Text
2837
2838 \begin_layout Standard
2839 111
2840 \end_layout
2841
2842 \end_inset
2843 </cell>
2844 </row>
2845 <row>
2846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2847 \begin_inset Text
2848
2849 \begin_layout Standard
2850
2851 \series bold
2852 Feliciello
2853 \end_layout
2854
2855 \end_inset
2856 </cell>
2857 <cell alignment="center" valignment="top" topline="true" usebox="none">
2858 \begin_inset Text
2859
2860 \begin_layout Standard
2861 Domenico
2862 \end_layout
2863
2864 \end_inset
2865 </cell>
2866 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2867 \begin_inset Text
2868
2869 \begin_layout Standard
2870 111
2871 \end_layout
2872
2873 \end_inset
2874 </cell>
2875 </row>
2876 <row>
2877 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2878 \begin_inset Text
2879
2880 \begin_layout Standard
2881
2882 \series bold
2883 Focarelli
2884 \end_layout
2885
2886 \end_inset
2887 </cell>
2888 <cell alignment="center" valignment="top" topline="true" usebox="none">
2889 \begin_inset Text
2890
2891 \begin_layout Standard
2892 Paola
2893 \end_layout
2894
2895 \end_inset
2896 </cell>
2897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2898 \begin_inset Text
2899
2900 \begin_layout Standard
2901 111
2902 \end_layout
2903
2904 \end_inset
2905 </cell>
2906 </row>
2907 <row>
2908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2909 \begin_inset Text
2910
2911 \begin_layout Standard
2912
2913 \series bold
2914 Galletti
2915 \end_layout
2916
2917 \end_inset
2918 </cell>
2919 <cell alignment="center" valignment="top" topline="true" usebox="none">
2920 \begin_inset Text
2921
2922 \begin_layout Standard
2923 Oreste
2924 \end_layout
2925
2926 \end_inset
2927 </cell>
2928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2929 \begin_inset Text
2930
2931 \begin_layout Standard
2932 111
2933 \end_layout
2934
2935 \end_inset
2936 </cell>
2937 </row>
2938 <row>
2939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2940 \begin_inset Text
2941
2942 \begin_layout Standard
2943
2944 \series bold
2945 Gasparini
2946 \end_layout
2947
2948 \end_inset
2949 </cell>
2950 <cell alignment="center" valignment="top" topline="true" usebox="none">
2951 \begin_inset Text
2952
2953 \begin_layout Standard
2954 Franca
2955 \end_layout
2956
2957 \end_inset
2958 </cell>
2959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2960 \begin_inset Text
2961
2962 \begin_layout Standard
2963 111
2964 \end_layout
2965
2966 \end_inset
2967 </cell>
2968 </row>
2969 <row>
2970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2971 \begin_inset Text
2972
2973 \begin_layout Standard
2974
2975 \series bold
2976 Rizzardi
2977 \end_layout
2978
2979 \end_inset
2980 </cell>
2981 <cell alignment="center" valignment="top" topline="true" usebox="none">
2982 \begin_inset Text
2983
2984 \begin_layout Standard
2985 Paola
2986 \end_layout
2987
2988 \end_inset
2989 </cell>
2990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2991 \begin_inset Text
2992
2993 \begin_layout Standard
2994 111
2995 \end_layout
2996
2997 \end_inset
2998 </cell>
2999 </row>
3000 <row>
3001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3002 \begin_inset Text
3003
3004 \begin_layout Standard
3005
3006 \series bold
3007 Lassini
3008 \end_layout
3009
3010 \end_inset
3011 </cell>
3012 <cell alignment="center" valignment="top" topline="true" usebox="none">
3013 \begin_inset Text
3014
3015 \begin_layout Standard
3016 Giancarlo
3017 \end_layout
3018
3019 \end_inset
3020 </cell>
3021 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3022 \begin_inset Text
3023
3024 \begin_layout Standard
3025 111
3026 \end_layout
3027
3028 \end_inset
3029 </cell>
3030 </row>
3031 <row>
3032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3033 \begin_inset Text
3034
3035 \begin_layout Standard
3036
3037 \series bold
3038 Malfatti
3039 \end_layout
3040
3041 \end_inset
3042 </cell>
3043 <cell alignment="center" valignment="top" topline="true" usebox="none">
3044 \begin_inset Text
3045
3046 \begin_layout Standard
3047 Luciano
3048 \end_layout
3049
3050 \end_inset
3051 </cell>
3052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3053 \begin_inset Text
3054
3055 \begin_layout Standard
3056 111
3057 \end_layout
3058
3059 \end_inset
3060 </cell>
3061 </row>
3062 <row>
3063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3064 \begin_inset Text
3065
3066 \begin_layout Standard
3067
3068 \series bold
3069 Malfatti
3070 \end_layout
3071
3072 \end_inset
3073 </cell>
3074 <cell alignment="center" valignment="top" topline="true" usebox="none">
3075 \begin_inset Text
3076
3077 \begin_layout Standard
3078 Valeriano
3079 \end_layout
3080
3081 \end_inset
3082 </cell>
3083 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3084 \begin_inset Text
3085
3086 \begin_layout Standard
3087 111
3088 \end_layout
3089
3090 \end_inset
3091 </cell>
3092 </row>
3093 <row>
3094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3095 \begin_inset Text
3096
3097 \begin_layout Standard
3098
3099 \series bold
3100 Meneguzzo
3101 \end_layout
3102
3103 \end_inset
3104 </cell>
3105 <cell alignment="center" valignment="top" topline="true" usebox="none">
3106 \begin_inset Text
3107
3108 \begin_layout Standard
3109 Roberto
3110 \end_layout
3111
3112 \end_inset
3113 </cell>
3114 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3115 \begin_inset Text
3116
3117 \begin_layout Standard
3118 111
3119 \end_layout
3120
3121 \end_inset
3122 </cell>
3123 </row>
3124 <row>
3125 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3126 \begin_inset Text
3127
3128 \begin_layout Standard
3129
3130 \series bold
3131 Mezzadra
3132 \end_layout
3133
3134 \end_inset
3135 </cell>
3136 <cell alignment="center" valignment="top" topline="true" usebox="none">
3137 \begin_inset Text
3138
3139 \begin_layout Standard
3140 Roberto
3141 \end_layout
3142
3143 \end_inset
3144 </cell>
3145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3146 \begin_inset Text
3147
3148 \begin_layout Standard
3149 111
3150 \end_layout
3151
3152 \end_inset
3153 </cell>
3154 </row>
3155 <row>
3156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3157 \begin_inset Text
3158
3159 \begin_layout Standard
3160
3161 \series bold
3162 Pirpamer
3163 \end_layout
3164
3165 \end_inset
3166 </cell>
3167 <cell alignment="center" valignment="top" topline="true" usebox="none">
3168 \begin_inset Text
3169
3170 \begin_layout Standard
3171 Erich
3172 \end_layout
3173
3174 \end_inset
3175 </cell>
3176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3177 \begin_inset Text
3178
3179 \begin_layout Standard
3180 111
3181 \end_layout
3182
3183 \end_inset
3184 </cell>
3185 </row>
3186 <row>
3187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3188 \begin_inset Text
3189
3190 \begin_layout Standard
3191
3192 \series bold
3193 Pochiesa
3194 \end_layout
3195
3196 \end_inset
3197 </cell>
3198 <cell alignment="center" valignment="top" topline="true" usebox="none">
3199 \begin_inset Text
3200
3201 \begin_layout Standard
3202 Paolo
3203 \end_layout
3204
3205 \end_inset
3206 </cell>
3207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3208 \begin_inset Text
3209
3210 \begin_layout Standard
3211 111, 222
3212 \end_layout
3213
3214 \end_inset
3215 </cell>
3216 </row>
3217 <row>
3218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3219 \begin_inset Text
3220
3221 \begin_layout Standard
3222
3223 \series bold
3224 Radina
3225 \end_layout
3226
3227 \end_inset
3228 </cell>
3229 <cell alignment="center" valignment="top" topline="true" usebox="none">
3230 \begin_inset Text
3231
3232 \begin_layout Standard
3233 Claudio
3234 \end_layout
3235
3236 \end_inset
3237 </cell>
3238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3239 \begin_inset Text
3240
3241 \begin_layout Standard
3242 111
3243 \end_layout
3244
3245 \end_inset
3246 </cell>
3247 </row>
3248 <row>
3249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3250 \begin_inset Text
3251
3252 \begin_layout Standard
3253
3254 \series bold
3255 Stuffer
3256 \end_layout
3257
3258 \end_inset
3259 </cell>
3260 <cell alignment="center" valignment="top" topline="true" usebox="none">
3261 \begin_inset Text
3262
3263 \begin_layout Standard
3264 Oskar
3265 \end_layout
3266
3267 \end_inset
3268 </cell>
3269 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3270 \begin_inset Text
3271
3272 \begin_layout Standard
3273 111
3274 \end_layout
3275
3276 \end_inset
3277 </cell>
3278 </row>
3279 <row>
3280 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3281 \begin_inset Text
3282
3283 \begin_layout Standard
3284
3285 \series bold
3286 Tacchelli
3287 \end_layout
3288
3289 \end_inset
3290 </cell>
3291 <cell alignment="center" valignment="top" topline="true" usebox="none">
3292 \begin_inset Text
3293
3294 \begin_layout Standard
3295 Ugo
3296 \end_layout
3297
3298 \end_inset
3299 </cell>
3300 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3301 \begin_inset Text
3302
3303 \begin_layout Standard
3304 111
3305 \end_layout
3306
3307 \end_inset
3308 </cell>
3309 </row>
3310 <row>
3311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3312 \begin_inset Text
3313
3314 \begin_layout Standard
3315
3316 \series bold
3317 Tezzele
3318 \end_layout
3319
3320 \end_inset
3321 </cell>
3322 <cell alignment="center" valignment="top" topline="true" usebox="none">
3323 \begin_inset Text
3324
3325 \begin_layout Standard
3326 Margit
3327 \end_layout
3328
3329 \end_inset
3330 </cell>
3331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3332 \begin_inset Text
3333
3334 \begin_layout Standard
3335 111
3336 \end_layout
3337
3338 \end_inset
3339 </cell>
3340 </row>
3341 <row>
3342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3343 \begin_inset Text
3344
3345 \begin_layout Standard
3346
3347 \series bold
3348 Unterkalmsteiner
3349 \end_layout
3350
3351 \end_inset
3352 </cell>
3353 <cell alignment="center" valignment="top" topline="true" usebox="none">
3354 \begin_inset Text
3355
3356 \begin_layout Standard
3357 Frieda
3358 \end_layout
3359
3360 \end_inset
3361 </cell>
3362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3363 \begin_inset Text
3364
3365 \begin_layout Standard
3366 111
3367 \end_layout
3368
3369 \end_inset
3370 </cell>
3371 </row>
3372 <row>
3373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3374 \begin_inset Text
3375
3376 \begin_layout Standard
3377
3378 \series bold
3379 Vieider
3380 \end_layout
3381
3382 \end_inset
3383 </cell>
3384 <cell alignment="center" valignment="top" topline="true" usebox="none">
3385 \begin_inset Text
3386
3387 \begin_layout Standard
3388 Hilde
3389 \end_layout
3390
3391 \end_inset
3392 </cell>
3393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3394 \begin_inset Text
3395
3396 \begin_layout Standard
3397 111
3398 \end_layout
3399
3400 \end_inset
3401 </cell>
3402 </row>
3403 <row>
3404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3405 \begin_inset Text
3406
3407 \begin_layout Standard
3408
3409 \series bold
3410 Vigna
3411 \end_layout
3412
3413 \end_inset
3414 </cell>
3415 <cell alignment="center" valignment="top" topline="true" usebox="none">
3416 \begin_inset Text
3417
3418 \begin_layout Standard
3419 Jürgen
3420 \end_layout
3421
3422 \end_inset
3423 </cell>
3424 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3425 \begin_inset Text
3426
3427 \begin_layout Standard
3428 111
3429 \end_layout
3430
3431 \end_inset
3432 </cell>
3433 </row>
3434 <row>
3435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3436 \begin_inset Text
3437
3438 \begin_layout Standard
3439
3440 \series bold
3441 Weber
3442 \end_layout
3443
3444 \end_inset
3445 </cell>
3446 <cell alignment="center" valignment="top" topline="true" usebox="none">
3447 \begin_inset Text
3448
3449 \begin_layout Standard
3450 Maurizio
3451 \end_layout
3452
3453 \end_inset
3454 </cell>
3455 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3456 \begin_inset Text
3457
3458 \begin_layout Standard
3459 111
3460 \end_layout
3461
3462 \end_inset
3463 </cell>
3464 </row>
3465 <row bottomline="true">
3466 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3467 \begin_inset Text
3468
3469 \begin_layout Standard
3470
3471 \series bold
3472 Winkler
3473 \end_layout
3474
3475 \end_inset
3476 </cell>
3477 <cell alignment="center" valignment="top" topline="true" usebox="none">
3478 \begin_inset Text
3479
3480 \begin_layout Standard
3481 Franz
3482 \end_layout
3483
3484 \end_inset
3485 </cell>
3486 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3487 \begin_inset Text
3488
3489 \begin_layout Standard
3490 111
3491 \end_layout
3492
3493 \end_inset
3494 </cell>
3495 </row>
3496 <row bottomline="true">
3497 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3498 \begin_inset Text
3499
3500 \begin_layout Standard
3501  
3502 \end_layout
3503
3504 \end_inset
3505 </cell>
3506 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3507 \begin_inset Text
3508
3509 \begin_layout Standard
3510
3511 \end_layout
3512
3513 \end_inset
3514 </cell>
3515 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3516 \begin_inset Text
3517
3518 \begin_layout Standard
3519
3520 \end_layout
3521
3522 \end_inset
3523 </cell>
3524 </row>
3525 <row>
3526 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3527 \begin_inset Text
3528
3529 \begin_layout Standard
3530
3531 \series bold
3532 Annovi
3533 \end_layout
3534
3535 \end_inset
3536 </cell>
3537 <cell alignment="center" valignment="top" topline="true" usebox="none">
3538 \begin_inset Text
3539
3540 \begin_layout Standard
3541 Silvia
3542 \end_layout
3543
3544 \end_inset
3545 </cell>
3546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3547 \begin_inset Text
3548
3549 \begin_layout Standard
3550 555
3551 \end_layout
3552
3553 \end_inset
3554 </cell>
3555 </row>
3556 <row>
3557 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3558 \begin_inset Text
3559
3560 \begin_layout Standard
3561
3562 \series bold
3563 Bertoli
3564 \end_layout
3565
3566 \end_inset
3567 </cell>
3568 <cell alignment="center" valignment="top" topline="true" usebox="none">
3569 \begin_inset Text
3570
3571 \begin_layout Standard
3572 Stefano
3573 \end_layout
3574
3575 \end_inset
3576 </cell>
3577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3578 \begin_inset Text
3579
3580 \begin_layout Standard
3581 555
3582 \end_layout
3583
3584 \end_inset
3585 </cell>
3586 </row>
3587 <row>
3588 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3589 \begin_inset Text
3590
3591 \begin_layout Standard
3592
3593 \series bold
3594 Bozzi
3595 \end_layout
3596
3597 \end_inset
3598 </cell>
3599 <cell alignment="center" valignment="top" topline="true" usebox="none">
3600 \begin_inset Text
3601
3602 \begin_layout Standard
3603 Walter
3604 \end_layout
3605
3606 \end_inset
3607 </cell>
3608 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3609 \begin_inset Text
3610
3611 \begin_layout Standard
3612 555
3613 \end_layout
3614
3615 \end_inset
3616 </cell>
3617 </row>
3618 <row>
3619 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3620 \begin_inset Text
3621
3622 \begin_layout Standard
3623
3624 \series bold
3625 Cachia
3626 \end_layout
3627
3628 \end_inset
3629 </cell>
3630 <cell alignment="center" valignment="top" topline="true" usebox="none">
3631 \begin_inset Text
3632
3633 \begin_layout Standard
3634 Maria
3635 \end_layout
3636
3637 \end_inset
3638 </cell>
3639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3640 \begin_inset Text
3641
3642 \begin_layout Standard
3643 555
3644 \end_layout
3645
3646 \end_inset
3647 </cell>
3648 </row>
3649 <row>
3650 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3651 \begin_inset Text
3652
3653 \begin_layout Standard
3654
3655 \series bold
3656 Cachia
3657 \end_layout
3658
3659 \end_inset
3660 </cell>
3661 <cell alignment="center" valignment="top" topline="true" usebox="none">
3662 \begin_inset Text
3663
3664 \begin_layout Standard
3665 Maurizio
3666 \end_layout
3667
3668 \end_inset
3669 </cell>
3670 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3671 \begin_inset Text
3672
3673 \begin_layout Standard
3674 555
3675 \end_layout
3676
3677 \end_inset
3678 </cell>
3679 </row>
3680 <row>
3681 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3682 \begin_inset Text
3683
3684 \begin_layout Standard
3685
3686 \series bold
3687 Cinquemani
3688 \end_layout
3689
3690 \end_inset
3691 </cell>
3692 <cell alignment="center" valignment="top" topline="true" usebox="none">
3693 \begin_inset Text
3694
3695 \begin_layout Standard
3696 Giusi
3697 \end_layout
3698
3699 \end_inset
3700 </cell>
3701 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3702 \begin_inset Text
3703
3704 \begin_layout Standard
3705 555
3706 \end_layout
3707
3708 \end_inset
3709 </cell>
3710 </row>
3711 <row>
3712 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3713 \begin_inset Text
3714
3715 \begin_layout Standard
3716
3717 \series bold
3718 Colin
3719 \end_layout
3720
3721 \end_inset
3722 </cell>
3723 <cell alignment="center" valignment="top" topline="true" usebox="none">
3724 \begin_inset Text
3725
3726 \begin_layout Standard
3727 Bernard
3728 \end_layout
3729
3730 \end_inset
3731 </cell>
3732 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3733 \begin_inset Text
3734
3735 \begin_layout Standard
3736 555
3737 \end_layout
3738
3739 \end_inset
3740 </cell>
3741 </row>
3742 <row>
3743 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3744 \begin_inset Text
3745
3746 \begin_layout Standard
3747
3748 \series bold
3749 Concli
3750 \end_layout
3751
3752 \end_inset
3753 </cell>
3754 <cell alignment="center" valignment="top" topline="true" usebox="none">
3755 \begin_inset Text
3756
3757 \begin_layout Standard
3758 Gianfranco
3759 \end_layout
3760
3761 \end_inset
3762 </cell>
3763 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3764 \begin_inset Text
3765
3766 \begin_layout Standard
3767 555
3768 \end_layout
3769
3770 \end_inset
3771 </cell>
3772 </row>
3773 <row>
3774 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3775 \begin_inset Text
3776
3777 \begin_layout Standard
3778
3779 \series bold
3780 Dal Bosco
3781 \end_layout
3782
3783 \end_inset
3784 </cell>
3785 <cell alignment="center" valignment="top" topline="true" usebox="none">
3786 \begin_inset Text
3787
3788 \begin_layout Standard
3789 Carolina
3790 \end_layout
3791
3792 \end_inset
3793 </cell>
3794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3795 \begin_inset Text
3796
3797 \begin_layout Standard
3798 555
3799 \end_layout
3800
3801 \end_inset
3802 </cell>
3803 </row>
3804 <row>
3805 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3806 \begin_inset Text
3807
3808 \begin_layout Standard
3809
3810 \series bold
3811 Dalpiaz
3812 \end_layout
3813
3814 \end_inset
3815 </cell>
3816 <cell alignment="center" valignment="top" topline="true" usebox="none">
3817 \begin_inset Text
3818
3819 \begin_layout Standard
3820 Annamaria
3821 \end_layout
3822
3823 \end_inset
3824 </cell>
3825 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3826 \begin_inset Text
3827
3828 \begin_layout Standard
3829 555
3830 \end_layout
3831
3832 \end_inset
3833 </cell>
3834 </row>
3835 <row>
3836 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3837 \begin_inset Text
3838
3839 \begin_layout Standard
3840
3841 \series bold
3842 Feliciello
3843 \end_layout
3844
3845 \end_inset
3846 </cell>
3847 <cell alignment="center" valignment="top" topline="true" usebox="none">
3848 \begin_inset Text
3849
3850 \begin_layout Standard
3851 Domenico
3852 \end_layout
3853
3854 \end_inset
3855 </cell>
3856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3857 \begin_inset Text
3858
3859 \begin_layout Standard
3860 555
3861 \end_layout
3862
3863 \end_inset
3864 </cell>
3865 </row>
3866 <row>
3867 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3868 \begin_inset Text
3869
3870 \begin_layout Standard
3871
3872 \series bold
3873 Focarelli
3874 \end_layout
3875
3876 \end_inset
3877 </cell>
3878 <cell alignment="center" valignment="top" topline="true" usebox="none">
3879 \begin_inset Text
3880
3881 \begin_layout Standard
3882 Paola
3883 \end_layout
3884
3885 \end_inset
3886 </cell>
3887 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3888 \begin_inset Text
3889
3890 \begin_layout Standard
3891 555
3892 \end_layout
3893
3894 \end_inset
3895 </cell>
3896 </row>
3897 <row>
3898 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3899 \begin_inset Text
3900
3901 \begin_layout Standard
3902
3903 \series bold
3904 Galletti
3905 \end_layout
3906
3907 \end_inset
3908 </cell>
3909 <cell alignment="center" valignment="top" topline="true" usebox="none">
3910 \begin_inset Text
3911
3912 \begin_layout Standard
3913 Oreste
3914 \end_layout
3915
3916 \end_inset
3917 </cell>
3918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3919 \begin_inset Text
3920
3921 \begin_layout Standard
3922 555
3923 \end_layout
3924
3925 \end_inset
3926 </cell>
3927 </row>
3928 <row>
3929 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3930 \begin_inset Text
3931
3932 \begin_layout Standard
3933
3934 \series bold
3935 Gasparini
3936 \end_layout
3937
3938 \end_inset
3939 </cell>
3940 <cell alignment="center" valignment="top" topline="true" usebox="none">
3941 \begin_inset Text
3942
3943 \begin_layout Standard
3944 Franca
3945 \end_layout
3946
3947 \end_inset
3948 </cell>
3949 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3950 \begin_inset Text
3951
3952 \begin_layout Standard
3953 555
3954 \end_layout
3955
3956 \end_inset
3957 </cell>
3958 </row>
3959 <row>
3960 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3961 \begin_inset Text
3962
3963 \begin_layout Standard
3964
3965 \series bold
3966 Rizzardi
3967 \end_layout
3968
3969 \end_inset
3970 </cell>
3971 <cell alignment="center" valignment="top" topline="true" usebox="none">
3972 \begin_inset Text
3973
3974 \begin_layout Standard
3975 Paola
3976 \end_layout
3977
3978 \end_inset
3979 </cell>
3980 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3981 \begin_inset Text
3982
3983 \begin_layout Standard
3984 555
3985 \end_layout
3986
3987 \end_inset
3988 </cell>
3989 </row>
3990 <row>
3991 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3992 \begin_inset Text
3993
3994 \begin_layout Standard
3995
3996 \series bold
3997 Lassini
3998 \end_layout
3999
4000 \end_inset
4001 </cell>
4002 <cell alignment="center" valignment="top" topline="true" usebox="none">
4003 \begin_inset Text
4004
4005 \begin_layout Standard
4006 Giancarlo
4007 \end_layout
4008
4009 \end_inset
4010 </cell>
4011 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4012 \begin_inset Text
4013
4014 \begin_layout Standard
4015 555
4016 \end_layout
4017
4018 \end_inset
4019 </cell>
4020 </row>
4021 <row>
4022 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4023 \begin_inset Text
4024
4025 \begin_layout Standard
4026
4027 \series bold
4028 Malfatti
4029 \end_layout
4030
4031 \end_inset
4032 </cell>
4033 <cell alignment="center" valignment="top" topline="true" usebox="none">
4034 \begin_inset Text
4035
4036 \begin_layout Standard
4037 Luciano
4038 \end_layout
4039
4040 \end_inset
4041 </cell>
4042 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4043 \begin_inset Text
4044
4045 \begin_layout Standard
4046 555
4047 \end_layout
4048
4049 \end_inset
4050 </cell>
4051 </row>
4052 <row>
4053 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4054 \begin_inset Text
4055
4056 \begin_layout Standard
4057
4058 \series bold
4059 Malfatti
4060 \end_layout
4061
4062 \end_inset
4063 </cell>
4064 <cell alignment="center" valignment="top" topline="true" usebox="none">
4065 \begin_inset Text
4066
4067 \begin_layout Standard
4068 Valeriano
4069 \end_layout
4070
4071 \end_inset
4072 </cell>
4073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4074 \begin_inset Text
4075
4076 \begin_layout Standard
4077 555
4078 \end_layout
4079
4080 \end_inset
4081 </cell>
4082 </row>
4083 <row>
4084 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4085 \begin_inset Text
4086
4087 \begin_layout Standard
4088
4089 \series bold
4090 Meneguzzo
4091 \end_layout
4092
4093 \end_inset
4094 </cell>
4095 <cell alignment="center" valignment="top" topline="true" usebox="none">
4096 \begin_inset Text
4097
4098 \begin_layout Standard
4099 Roberto
4100 \end_layout
4101
4102 \end_inset
4103 </cell>
4104 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4105 \begin_inset Text
4106
4107 \begin_layout Standard
4108 555
4109 \end_layout
4110
4111 \end_inset
4112 </cell>
4113 </row>
4114 <row>
4115 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4116 \begin_inset Text
4117
4118 \begin_layout Standard
4119
4120 \series bold
4121 Mezzadra
4122 \end_layout
4123
4124 \end_inset
4125 </cell>
4126 <cell alignment="center" valignment="top" topline="true" usebox="none">
4127 \begin_inset Text
4128
4129 \begin_layout Standard
4130 Roberto
4131 \end_layout
4132
4133 \end_inset
4134 </cell>
4135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4136 \begin_inset Text
4137
4138 \begin_layout Standard
4139 555
4140 \end_layout
4141
4142 \end_inset
4143 </cell>
4144 </row>
4145 <row>
4146 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4147 \begin_inset Text
4148
4149 \begin_layout Standard
4150
4151 \series bold
4152 Pirpamer
4153 \end_layout
4154
4155 \end_inset
4156 </cell>
4157 <cell alignment="center" valignment="top" topline="true" usebox="none">
4158 \begin_inset Text
4159
4160 \begin_layout Standard
4161 Erich
4162 \end_layout
4163
4164 \end_inset
4165 </cell>
4166 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4167 \begin_inset Text
4168
4169 \begin_layout Standard
4170 555
4171 \end_layout
4172
4173 \end_inset
4174 </cell>
4175 </row>
4176 <row>
4177 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4178 \begin_inset Text
4179
4180 \begin_layout Standard
4181
4182 \series bold
4183 Pochiesa
4184 \end_layout
4185
4186 \end_inset
4187 </cell>
4188 <cell alignment="center" valignment="top" topline="true" usebox="none">
4189 \begin_inset Text
4190
4191 \begin_layout Standard
4192 Paolo
4193 \end_layout
4194
4195 \end_inset
4196 </cell>
4197 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4198 \begin_inset Text
4199
4200 \begin_layout Standard
4201 555, 222
4202 \end_layout
4203
4204 \end_inset
4205 </cell>
4206 </row>
4207 <row>
4208 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4209 \begin_inset Text
4210
4211 \begin_layout Standard
4212
4213 \series bold
4214 Radina
4215 \end_layout
4216
4217 \end_inset
4218 </cell>
4219 <cell alignment="center" valignment="top" topline="true" usebox="none">
4220 \begin_inset Text
4221
4222 \begin_layout Standard
4223 Claudio
4224 \end_layout
4225
4226 \end_inset
4227 </cell>
4228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4229 \begin_inset Text
4230
4231 \begin_layout Standard
4232 555
4233 \end_layout
4234
4235 \end_inset
4236 </cell>
4237 </row>
4238 <row>
4239 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4240 \begin_inset Text
4241
4242 \begin_layout Standard
4243
4244 \series bold
4245 Stuffer
4246 \end_layout
4247
4248 \end_inset
4249 </cell>
4250 <cell alignment="center" valignment="top" topline="true" usebox="none">
4251 \begin_inset Text
4252
4253 \begin_layout Standard
4254 Oskar
4255 \end_layout
4256
4257 \end_inset
4258 </cell>
4259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4260 \begin_inset Text
4261
4262 \begin_layout Standard
4263 555
4264 \end_layout
4265
4266 \end_inset
4267 </cell>
4268 </row>
4269 <row>
4270 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4271 \begin_inset Text
4272
4273 \begin_layout Standard
4274
4275 \series bold
4276 Tacchelli
4277 \end_layout
4278
4279 \end_inset
4280 </cell>
4281 <cell alignment="center" valignment="top" topline="true" usebox="none">
4282 \begin_inset Text
4283
4284 \begin_layout Standard
4285 Ugo
4286 \end_layout
4287
4288 \end_inset
4289 </cell>
4290 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4291 \begin_inset Text
4292
4293 \begin_layout Standard
4294 555
4295 \end_layout
4296
4297 \end_inset
4298 </cell>
4299 </row>
4300 <row>
4301 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4302 \begin_inset Text
4303
4304 \begin_layout Standard
4305
4306 \series bold
4307 Tezzele
4308 \end_layout
4309
4310 \end_inset
4311 </cell>
4312 <cell alignment="center" valignment="top" topline="true" usebox="none">
4313 \begin_inset Text
4314
4315 \begin_layout Standard
4316 Margit
4317 \end_layout
4318
4319 \end_inset
4320 </cell>
4321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4322 \begin_inset Text
4323
4324 \begin_layout Standard
4325 555
4326 \end_layout
4327
4328 \end_inset
4329 </cell>
4330 </row>
4331 <row>
4332 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4333 \begin_inset Text
4334
4335 \begin_layout Standard
4336
4337 \series bold
4338 Unterkalmsteiner
4339 \end_layout
4340
4341 \end_inset
4342 </cell>
4343 <cell alignment="center" valignment="top" topline="true" usebox="none">
4344 \begin_inset Text
4345
4346 \begin_layout Standard
4347 Frieda
4348 \end_layout
4349
4350 \end_inset
4351 </cell>
4352 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4353 \begin_inset Text
4354
4355 \begin_layout Standard
4356 555
4357 \end_layout
4358
4359 \end_inset
4360 </cell>
4361 </row>
4362 <row>
4363 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4364 \begin_inset Text
4365
4366 \begin_layout Standard
4367
4368 \series bold
4369 Vieider
4370 \end_layout
4371
4372 \end_inset
4373 </cell>
4374 <cell alignment="center" valignment="top" topline="true" usebox="none">
4375 \begin_inset Text
4376
4377 \begin_layout Standard
4378 Hilde
4379 \end_layout
4380
4381 \end_inset
4382 </cell>
4383 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4384 \begin_inset Text
4385
4386 \begin_layout Standard
4387 555
4388 \end_layout
4389
4390 \end_inset
4391 </cell>
4392 </row>
4393 <row>
4394 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4395 \begin_inset Text
4396
4397 \begin_layout Standard
4398
4399 \series bold
4400 Vigna
4401 \end_layout
4402
4403 \end_inset
4404 </cell>
4405 <cell alignment="center" valignment="top" topline="true" usebox="none">
4406 \begin_inset Text
4407
4408 \begin_layout Standard
4409 Jürgen
4410 \end_layout
4411
4412 \end_inset
4413 </cell>
4414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4415 \begin_inset Text
4416
4417 \begin_layout Standard
4418 999
4419 \end_layout
4420
4421 \end_inset
4422 </cell>
4423 </row>
4424 <row>
4425 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4426 \begin_inset Text
4427
4428 \begin_layout Standard
4429
4430 \series bold
4431 Weber
4432 \end_layout
4433
4434 \end_inset
4435 </cell>
4436 <cell alignment="center" valignment="top" topline="true" usebox="none">
4437 \begin_inset Text
4438
4439 \begin_layout Standard
4440 Maurizio
4441 \end_layout
4442
4443 \end_inset
4444 </cell>
4445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4446 \begin_inset Text
4447
4448 \begin_layout Standard
4449 555
4450 \end_layout
4451
4452 \end_inset
4453 </cell>
4454 </row>
4455 <row bottomline="true">
4456 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4457 \begin_inset Text
4458
4459 \begin_layout Standard
4460
4461 \series bold
4462 Winkler
4463 \end_layout
4464
4465 \end_inset
4466 </cell>
4467 <cell alignment="center" valignment="top" topline="true" usebox="none">
4468 \begin_inset Text
4469
4470 \begin_layout Standard
4471 Franz
4472 \end_layout
4473
4474 \end_inset
4475 </cell>
4476 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4477 \begin_inset Text
4478
4479 \begin_layout Standard
4480 555
4481 \end_layout
4482
4483 \end_inset
4484 </cell>
4485 </row>
4486 <row bottomline="true" endlastfoot="true">
4487 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4488 \begin_inset Text
4489
4490 \begin_layout Standard
4491 fin
4492 \end_layout
4493
4494 \end_inset
4495 </cell>
4496 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4497 \begin_inset Text
4498
4499 \begin_layout Standard
4500
4501 \end_layout
4502
4503 \end_inset
4504 </cell>
4505 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4506 \begin_inset Text
4507
4508 \begin_layout Standard
4509
4510 \end_layout
4511
4512 \end_inset
4513 </cell>
4514 </row>
4515 </lyxtabular>
4516
4517 \end_inset
4518
4519
4520 \begin_inset ERT
4521 status collapsed
4522
4523 \begin_layout Standard
4524
4525
4526 \backslash
4527 addtocounter{table}{-1}
4528 \end_layout
4529
4530 \end_inset
4531
4532
4533 \begin_inset Note Note
4534 status open
4535
4536 \begin_layout Standard
4537 Para comprender el uso de este comando, lee al final de la sección\InsetSpace ~
4538 2.6.2 la
4539  primera nota resaltada en gris.
4540  
4541 \end_layout
4542
4543 \end_inset
4544
4545
4546 \end_layout
4547
4548 \begin_layout Subsection
4549 Notas al pie en Tablas Largas
4550 \begin_inset LatexCommand label
4551 name "sub:Notas-al-pie-en-Tablas-Largas"
4552
4553 \end_inset
4554
4555
4556 \begin_inset LatexCommand index
4557 name "Tablas Largas ! Notas al pie"
4558
4559 \end_inset
4560
4561
4562 \end_layout
4563
4564 \begin_layout Standard
4565 Se pueden insertar notas al pie en cada celda de una tabla larga.
4566  Aparecen abajo en la página donde esté la celda con la nota.
4567  La tabla\InsetSpace ~
4568
4569 \begin_inset LatexCommand ref
4570 reference "tab:DifEncabezados"
4571
4572 \end_inset
4573
4574  tiene un ejemplo de nota al pie.
4575 \end_layout
4576
4577 \begin_layout Subsection
4578 Encabezados en Tablas Largas
4579 \begin_inset LatexCommand index
4580 name "Tablas Largas ! Encabezados"
4581
4582 \end_inset
4583
4584
4585 \end_layout
4586
4587 \begin_layout Standard
4588 Una tabla larga no se puede poner flotante porque los flotantes solo pueden
4589  estar en una página, aunque el entorno 
4590 \family sans
4591 encabezado
4592 \family default
4593  de flotantes sí puede usarse para tablas largas.
4594 \end_layout
4595
4596 \begin_layout Standard
4597 LyX todavía no soporta totalmente encabezados en tablas largas, de modo
4598  que hay que crearlos de la sigiente forma:
4599 \end_layout
4600
4601 \begin_layout Enumerate
4602 Crea una tabla larga.
4603 \end_layout
4604
4605 \begin_layout Enumerate
4606 Marca la primera fila y deshabilita su línea superior.
4607 \end_layout
4608
4609 \begin_layout Enumerate
4610 Inserta un encabezado mediante el menú 
4611 \family sans
4612 Insertar\SpecialChar \menuseparator
4613 Encabezado
4614 \family default
4615  en la primera celda.
4616 \newline
4617 También puedes añadir un 
4618 \family sans
4619 título breve
4620 \family default
4621  para el encabezado.
4622 \end_layout
4623
4624 \begin_layout Enumerate
4625 Inserta un 
4626 \begin_inset Quotes eld
4627 \end_inset
4628
4629
4630 \series bold
4631
4632 \backslash
4633
4634 \backslash
4635 %
4636 \series default
4637
4638 \begin_inset Quotes erd
4639 \end_inset
4640
4641  como ERT detrás del encabezado.
4642 \end_layout
4643
4644 \begin_layout Standard
4645 En la Lista de Tablas aparecerá el título breve en vez del título completo.
4646  El 
4647 \series bold
4648
4649 \begin_inset Quotes eld
4650 \end_inset
4651
4652
4653 \backslash
4654
4655 \backslash
4656 %
4657 \series default
4658
4659 \begin_inset Quotes erd
4660 \end_inset
4661
4662  detrás del encabezado elimina las líneas verticales entre las siguientes
4663  celdas de la fila.
4664  Ahora, la primera fila de la tabla es solo una fila postiza para el encabezado,
4665  la tabla real comienza en la segunda fila.
4666 \end_layout
4667
4668 \begin_layout Standard
4669 He aquí una pequeña tabla larga para mostrar cómo funciona:
4670 \end_layout
4671
4672 \begin_layout Standard
4673 \begin_inset Tabular
4674 <lyxtabular version="3" rows="6" columns="5">
4675 <features islongtable="true">
4676 <column alignment="center" valignment="top" leftline="true" width="0">
4677 <column alignment="center" valignment="top" leftline="true" width="0">
4678 <column alignment="center" valignment="top" leftline="true" width="0">
4679 <column alignment="center" valignment="top" leftline="true" width="0">
4680 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4681 <row>
4682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4683 \begin_inset Text
4684
4685 \begin_layout Standard
4686 \begin_inset Caption
4687
4688 \begin_layout Standard
4689 Tabla larga con encabezado
4690 \begin_inset OptArg
4691 status collapsed
4692
4693 \begin_layout Standard
4694 Tabla larga con encabezado
4695 \end_layout
4696
4697 \end_inset
4698
4699
4700 \end_layout
4701
4702 \end_inset
4703
4704
4705 \begin_inset ERT
4706 status collapsed
4707
4708 \begin_layout Standard
4709
4710
4711 \backslash
4712
4713 \backslash
4714 %
4715 \end_layout
4716
4717 \end_inset
4718
4719
4720 \end_layout
4721
4722 \end_inset
4723 </cell>
4724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4725 \begin_inset Text
4726
4727 \begin_layout Standard
4728
4729 \end_layout
4730
4731 \end_inset
4732 </cell>
4733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4734 \begin_inset Text
4735
4736 \begin_layout Standard
4737
4738 \end_layout
4739
4740 \end_inset
4741 </cell>
4742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4743 \begin_inset Text
4744
4745 \begin_layout Standard
4746
4747 \end_layout
4748
4749 \end_inset
4750 </cell>
4751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4752 \begin_inset Text
4753
4754 \begin_layout Standard
4755
4756 \end_layout
4757
4758 \end_inset
4759 </cell>
4760 </row>
4761 <row topline="true">
4762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4763 \begin_inset Text
4764
4765 \begin_layout Standard
4766 1
4767 \end_layout
4768
4769 \end_inset
4770 </cell>
4771 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4772 \begin_inset Text
4773
4774 \begin_layout Standard
4775 2
4776 \end_layout
4777
4778 \end_inset
4779 </cell>
4780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4781 \begin_inset Text
4782
4783 \begin_layout Standard
4784 3
4785 \end_layout
4786
4787 \end_inset
4788 </cell>
4789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4790 \begin_inset Text
4791
4792 \begin_layout Standard
4793 4
4794 \end_layout
4795
4796 \end_inset
4797 </cell>
4798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4799 \begin_inset Text
4800
4801 \begin_layout Standard
4802 5
4803 \end_layout
4804
4805 \end_inset
4806 </cell>
4807 </row>
4808 <row topline="true">
4809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4810 \begin_inset Text
4811
4812 \begin_layout Standard
4813 asd
4814 \end_layout
4815
4816 \end_inset
4817 </cell>
4818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4819 \begin_inset Text
4820
4821 \begin_layout Standard
4822 s
4823 \end_layout
4824
4825 \end_inset
4826 </cell>
4827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4828 \begin_inset Text
4829
4830 \begin_layout Standard
4831 s
4832 \end_layout
4833
4834 \end_inset
4835 </cell>
4836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4837 \begin_inset Text
4838
4839 \begin_layout Standard
4840 s
4841 \end_layout
4842
4843 \end_inset
4844 </cell>
4845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4846 \begin_inset Text
4847
4848 \begin_layout Standard
4849 asd
4850 \end_layout
4851
4852 \end_inset
4853 </cell>
4854 </row>
4855 <row topline="true">
4856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4857 \begin_inset Text
4858
4859 \begin_layout Standard
4860 asd
4861 \end_layout
4862
4863 \end_inset
4864 </cell>
4865 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4866 \begin_inset Text
4867
4868 \begin_layout Standard
4869 s
4870 \end_layout
4871
4872 \end_inset
4873 </cell>
4874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4875 \begin_inset Text
4876
4877 \begin_layout Standard
4878 s
4879 \end_layout
4880
4881 \end_inset
4882 </cell>
4883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4884 \begin_inset Text
4885
4886 \begin_layout Standard
4887 s
4888 \end_layout
4889
4890 \end_inset
4891 </cell>
4892 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4893 \begin_inset Text
4894
4895 \begin_layout Standard
4896 asd
4897 \end_layout
4898
4899 \end_inset
4900 </cell>
4901 </row>
4902 <row topline="true">
4903 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4904 \begin_inset Text
4905
4906 \begin_layout Standard
4907 asd
4908 \end_layout
4909
4910 \end_inset
4911 </cell>
4912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4913 \begin_inset Text
4914
4915 \begin_layout Standard
4916 s
4917 \end_layout
4918
4919 \end_inset
4920 </cell>
4921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4922 \begin_inset Text
4923
4924 \begin_layout Standard
4925 s
4926 \end_layout
4927
4928 \end_inset
4929 </cell>
4930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4931 \begin_inset Text
4932
4933 \begin_layout Standard
4934 s
4935 \end_layout
4936
4937 \end_inset
4938 </cell>
4939 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4940 \begin_inset Text
4941
4942 \begin_layout Standard
4943 asd
4944 \end_layout
4945
4946 \end_inset
4947 </cell>
4948 </row>
4949 <row topline="true" bottomline="true">
4950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4951 \begin_inset Text
4952
4953 \begin_layout Standard
4954 asd
4955 \end_layout
4956
4957 \end_inset
4958 </cell>
4959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4960 \begin_inset Text
4961
4962 \begin_layout Standard
4963 asd
4964 \end_layout
4965
4966 \end_inset
4967 </cell>
4968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4969 \begin_inset Text
4970
4971 \begin_layout Standard
4972 asd
4973 \end_layout
4974
4975 \end_inset
4976 </cell>
4977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4978 \begin_inset Text
4979
4980 \begin_layout Standard
4981 asd
4982 \end_layout
4983
4984 \end_inset
4985 </cell>
4986 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4987 \begin_inset Text
4988
4989 \begin_layout Standard
4990 asd
4991 \end_layout
4992
4993 \end_inset
4994 </cell>
4995 </row>
4996 </lyxtabular>
4997
4998 \end_inset
4999
5000
5001 \end_layout
5002
5003 \begin_layout Standard
5004 \begin_inset VSpace medskip
5005 \end_inset
5006
5007
5008 \begin_inset Note Greyedout
5009 status open
5010
5011 \begin_layout Standard
5012
5013 \series bold
5014 Nota
5015 \series default
5016 : El número de la tabla es incrementado para cada tabla larga, aunque no
5017  pongas encabezado en alguna de ellas.
5018  Por esto podría suceder que, p.\InsetSpace \thinspace{}
5019 e., la tabla\InsetSpace ~
5020 2.4 siga a la tabla\InsetSpace ~
5021 2.1 en la lista
5022  de tablas debido a que hay dos tablas largas sin encabezado.
5023  Para evitarlo, puedes añadir el siguiente comando en ERT detrás de cada
5024  tabla larga sin encabezado:
5025 \end_layout
5026
5027 \begin_layout Standard
5028
5029 \series bold
5030
5031 \backslash
5032 addtocounter{table}{-1}
5033 \end_layout
5034
5035 \end_inset
5036
5037
5038 \end_layout
5039
5040 \begin_layout Standard
5041 \begin_inset Note Greyedout
5042 status open
5043
5044 \begin_layout Standard
5045
5046 \series bold
5047 Nota:
5048 \series default
5049  Si utilizas el paquete de LaTeX 
5050 \series bold
5051 hyperref
5052 \series default
5053
5054 \begin_inset LatexCommand index
5055 name "LaTeX-paquetes ! hyperref"
5056
5057 \end_inset
5058
5059  para enlazar referencias cruzadas en la salida, el enlace a una tabla larga
5060  te llevará siempre al principio del documento.
5061 \end_layout
5062
5063 \end_inset
5064
5065
5066 \end_layout
5067
5068 \begin_layout Subsubsection
5069 Referencias a Tablas Largas
5070 \begin_inset LatexCommand index
5071 name "Tablas Largas ! Referencias a"
5072
5073 \end_inset
5074
5075
5076 \end_layout
5077
5078 \begin_layout Standard
5079 \begin_inset Tabular
5080 <lyxtabular version="3" rows="6" columns="5">
5081 <features islongtable="true">
5082 <column alignment="center" valignment="top" leftline="true" width="0">
5083 <column alignment="center" valignment="top" leftline="true" width="0">
5084 <column alignment="center" valignment="top" leftline="true" width="0">
5085 <column alignment="center" valignment="top" leftline="true" width="0">
5086 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5087 <row>
5088 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5089 \begin_inset Text
5090
5091 \begin_layout Standard
5092 \begin_inset Caption
5093
5094 \begin_layout Standard
5095 Tabla larga referenciada
5096 \begin_inset LatexCommand label
5097 name "tab:RefEjemplo"
5098
5099 \end_inset
5100
5101
5102 \end_layout
5103
5104 \end_inset
5105
5106
5107 \begin_inset ERT
5108 status collapsed
5109
5110 \begin_layout Standard
5111
5112
5113 \backslash
5114
5115 \backslash
5116 %
5117 \end_layout
5118
5119 \end_inset
5120
5121
5122 \end_layout
5123
5124 \end_inset
5125 </cell>
5126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5127 \begin_inset Text
5128
5129 \begin_layout Standard
5130
5131 \end_layout
5132
5133 \end_inset
5134 </cell>
5135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5136 \begin_inset Text
5137
5138 \begin_layout Standard
5139
5140 \end_layout
5141
5142 \end_inset
5143 </cell>
5144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5145 \begin_inset Text
5146
5147 \begin_layout Standard
5148
5149 \end_layout
5150
5151 \end_inset
5152 </cell>
5153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5154 \begin_inset Text
5155
5156 \begin_layout Standard
5157
5158 \end_layout
5159
5160 \end_inset
5161 </cell>
5162 </row>
5163 <row topline="true">
5164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5165 \begin_inset Text
5166
5167 \begin_layout Standard
5168 1
5169 \end_layout
5170
5171 \end_inset
5172 </cell>
5173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5174 \begin_inset Text
5175
5176 \begin_layout Standard
5177 2
5178 \end_layout
5179
5180 \end_inset
5181 </cell>
5182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5183 \begin_inset Text
5184
5185 \begin_layout Standard
5186 3
5187 \end_layout
5188
5189 \end_inset
5190 </cell>
5191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5192 \begin_inset Text
5193
5194 \begin_layout Standard
5195 4
5196 \end_layout
5197
5198 \end_inset
5199 </cell>
5200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5201 \begin_inset Text
5202
5203 \begin_layout Standard
5204 5
5205 \end_layout
5206
5207 \end_inset
5208 </cell>
5209 </row>
5210 <row topline="true">
5211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5212 \begin_inset Text
5213
5214 \begin_layout Standard
5215 asd
5216 \end_layout
5217
5218 \end_inset
5219 </cell>
5220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5221 \begin_inset Text
5222
5223 \begin_layout Standard
5224 s
5225 \end_layout
5226
5227 \end_inset
5228 </cell>
5229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5230 \begin_inset Text
5231
5232 \begin_layout Standard
5233 s
5234 \end_layout
5235
5236 \end_inset
5237 </cell>
5238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5239 \begin_inset Text
5240
5241 \begin_layout Standard
5242 s
5243 \end_layout
5244
5245 \end_inset
5246 </cell>
5247 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5248 \begin_inset Text
5249
5250 \begin_layout Standard
5251 asd
5252 \end_layout
5253
5254 \end_inset
5255 </cell>
5256 </row>
5257 <row topline="true">
5258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5259 \begin_inset Text
5260
5261 \begin_layout Standard
5262 asd
5263 \end_layout
5264
5265 \end_inset
5266 </cell>
5267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5268 \begin_inset Text
5269
5270 \begin_layout Standard
5271 s
5272 \end_layout
5273
5274 \end_inset
5275 </cell>
5276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5277 \begin_inset Text
5278
5279 \begin_layout Standard
5280 s
5281 \end_layout
5282
5283 \end_inset
5284 </cell>
5285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5286 \begin_inset Text
5287
5288 \begin_layout Standard
5289 s
5290 \end_layout
5291
5292 \end_inset
5293 </cell>
5294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5295 \begin_inset Text
5296
5297 \begin_layout Standard
5298 asd
5299 \end_layout
5300
5301 \end_inset
5302 </cell>
5303 </row>
5304 <row topline="true">
5305 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5306 \begin_inset Text
5307
5308 \begin_layout Standard
5309 asd
5310 \end_layout
5311
5312 \end_inset
5313 </cell>
5314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5315 \begin_inset Text
5316
5317 \begin_layout Standard
5318 s
5319 \end_layout
5320
5321 \end_inset
5322 </cell>
5323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5324 \begin_inset Text
5325
5326 \begin_layout Standard
5327 s
5328 \end_layout
5329
5330 \end_inset
5331 </cell>
5332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5333 \begin_inset Text
5334
5335 \begin_layout Standard
5336 s
5337 \end_layout
5338
5339 \end_inset
5340 </cell>
5341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5342 \begin_inset Text
5343
5344 \begin_layout Standard
5345 asd
5346 \end_layout
5347
5348 \end_inset
5349 </cell>
5350 </row>
5351 <row topline="true" bottomline="true">
5352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5353 \begin_inset Text
5354
5355 \begin_layout Standard
5356 asd
5357 \end_layout
5358
5359 \end_inset
5360 </cell>
5361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5362 \begin_inset Text
5363
5364 \begin_layout Standard
5365 sad
5366 \end_layout
5367
5368 \end_inset
5369 </cell>
5370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5371 \begin_inset Text
5372
5373 \begin_layout Standard
5374 asd
5375 \end_layout
5376
5377 \end_inset
5378 </cell>
5379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5380 \begin_inset Text
5381
5382 \begin_layout Standard
5383 asd
5384 \end_layout
5385
5386 \end_inset
5387 </cell>
5388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5389 \begin_inset Text
5390
5391 \begin_layout Standard
5392 asd
5393 \end_layout
5394
5395 \end_inset
5396 </cell>
5397 </row>
5398 </lyxtabular>
5399
5400 \end_inset
5401
5402
5403 \end_layout
5404
5405 \begin_layout Standard
5406 Para referenciar una tabla larga, inserta una etiqueta en el encabezado.Observa
5407  que tienes que añadir el prefijo 
5408 \begin_inset Quotes eld
5409 \end_inset
5410
5411
5412 \emph on
5413 tab
5414 \emph default
5415 :
5416 \begin_inset Quotes erd
5417 \end_inset
5418
5419  manualmente en el campo de etiqueta.
5420  
5421 \end_layout
5422
5423 \begin_layout Standard
5424 Esto es una referencia a la tabla\InsetSpace ~
5425
5426 \begin_inset LatexCommand ref
5427 reference "tab:RefEjemplo"
5428
5429 \end_inset
5430
5431 .
5432 \end_layout
5433
5434 \begin_layout Standard
5435 El formato del encabezado puede configurarse junto con todos los demás encabezad
5436 os del documento mediante el paquete LaTeX 
5437 \series bold
5438 caption
5439 \series default
5440
5441 \begin_inset LatexCommand index
5442 name "LaTeX-paquetes ! caption"
5443
5444 \end_inset
5445
5446 , ver sección\InsetSpace ~
5447  
5448 \begin_inset LatexCommand ref
5449 reference "sec:Formato-de-Encabezados"
5450
5451 \end_inset
5452
5453 .
5454 \end_layout
5455
5456 \begin_layout Subsubsection
5457 Anchura de Encabezado
5458 \begin_inset LatexCommand index
5459 name "Tablas Largas ! Anchura de Encabezados"
5460
5461 \end_inset
5462
5463
5464 \end_layout
5465
5466 \begin_layout Standard
5467 La anchura máxima se define por la longitud 
5468 \series bold
5469
5470 \backslash
5471 LTcapwidth
5472 \series default
5473 .
5474  Por defecto es 4\InsetSpace \thinspace{}
5475 in (4\InsetSpace ~
5476 pulgadas).
5477  Para cambiarla añade el siguiente comando al preámbulo o como ERT en el
5478  documento antes de la tabla larga a la que afecta
5479 \end_layout
5480
5481 \begin_layout Standard
5482
5483 \series bold
5484
5485 \backslash
5486 setlength{
5487 \backslash
5488 LTcapwidth}{ancho}
5489 \end_layout
5490
5491 \begin_layout Standard
5492 donde el ancho puede ser una de las unidades listadas en el apéndice\InsetSpace ~
5493
5494 \begin_inset LatexCommand ref
5495 reference "cha:Unidades-disponibles-en"
5496
5497 \end_inset
5498
5499 .
5500 \end_layout
5501
5502 \begin_layout Standard
5503 Las tablas siguientes muestran la diferencia:
5504 \end_layout
5505
5506 \begin_layout Standard
5507 \begin_inset Tabular
5508 <lyxtabular version="3" rows="6" columns="5">
5509 <features islongtable="true">
5510 <column alignment="center" valignment="top" leftline="true" width="0">
5511 <column alignment="center" valignment="top" leftline="true" width="0">
5512 <column alignment="center" valignment="top" leftline="true" width="0">
5513 <column alignment="center" valignment="top" leftline="true" width="0">
5514 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5515 <row>
5516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5517 \begin_inset Text
5518
5519 \begin_layout Standard
5520 \begin_inset Caption
5521
5522 \begin_layout Standard
5523 Encabezado completo con ancho predeterminado encabezado completo con ancho
5524  predeterminado encabezado completo con ancho predeterminado
5525 \begin_inset OptArg
5526 status collapsed
5527
5528 \begin_layout Standard
5529 Encabezado con ancho predeterminado
5530 \end_layout
5531
5532 \end_inset
5533
5534
5535 \end_layout
5536
5537 \end_inset
5538
5539
5540 \begin_inset ERT
5541 status collapsed
5542
5543 \begin_layout Standard
5544
5545
5546 \backslash
5547
5548 \backslash
5549 %
5550 \end_layout
5551
5552 \end_inset
5553
5554
5555 \end_layout
5556
5557 \end_inset
5558 </cell>
5559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5560 \begin_inset Text
5561
5562 \begin_layout Standard
5563
5564 \end_layout
5565
5566 \end_inset
5567 </cell>
5568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5569 \begin_inset Text
5570
5571 \begin_layout Standard
5572
5573 \end_layout
5574
5575 \end_inset
5576 </cell>
5577 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5578 \begin_inset Text
5579
5580 \begin_layout Standard
5581
5582 \end_layout
5583
5584 \end_inset
5585 </cell>
5586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5587 \begin_inset Text
5588
5589 \begin_layout Standard
5590
5591 \end_layout
5592
5593 \end_inset
5594 </cell>
5595 </row>
5596 <row topline="true">
5597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5598 \begin_inset Text
5599
5600 \begin_layout Standard
5601 1
5602 \end_layout
5603
5604 \end_inset
5605 </cell>
5606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5607 \begin_inset Text
5608
5609 \begin_layout Standard
5610 2
5611 \end_layout
5612
5613 \end_inset
5614 </cell>
5615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5616 \begin_inset Text
5617
5618 \begin_layout Standard
5619 3
5620 \end_layout
5621
5622 \end_inset
5623 </cell>
5624 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5625 \begin_inset Text
5626
5627 \begin_layout Standard
5628 4
5629 \end_layout
5630
5631 \end_inset
5632 </cell>
5633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5634 \begin_inset Text
5635
5636 \begin_layout Standard
5637 5
5638 \end_layout
5639
5640 \end_inset
5641 </cell>
5642 </row>
5643 <row topline="true">
5644 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5645 \begin_inset Text
5646
5647 \begin_layout Standard
5648 asd
5649 \end_layout
5650
5651 \end_inset
5652 </cell>
5653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5654 \begin_inset Text
5655
5656 \begin_layout Standard
5657 s
5658 \end_layout
5659
5660 \end_inset
5661 </cell>
5662 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5663 \begin_inset Text
5664
5665 \begin_layout Standard
5666 s
5667 \end_layout
5668
5669 \end_inset
5670 </cell>
5671 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5672 \begin_inset Text
5673
5674 \begin_layout Standard
5675 s
5676 \end_layout
5677
5678 \end_inset
5679 </cell>
5680 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5681 \begin_inset Text
5682
5683 \begin_layout Standard
5684 asd
5685 \end_layout
5686
5687 \end_inset
5688 </cell>
5689 </row>
5690 <row topline="true">
5691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5692 \begin_inset Text
5693
5694 \begin_layout Standard
5695 asd
5696 \end_layout
5697
5698 \end_inset
5699 </cell>
5700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5701 \begin_inset Text
5702
5703 \begin_layout Standard
5704 s
5705 \end_layout
5706
5707 \end_inset
5708 </cell>
5709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5710 \begin_inset Text
5711
5712 \begin_layout Standard
5713 s
5714 \end_layout
5715
5716 \end_inset
5717 </cell>
5718 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5719 \begin_inset Text
5720
5721 \begin_layout Standard
5722 s
5723 \end_layout
5724
5725 \end_inset
5726 </cell>
5727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5728 \begin_inset Text
5729
5730 \begin_layout Standard
5731 asd
5732 \end_layout
5733
5734 \end_inset
5735 </cell>
5736 </row>
5737 <row topline="true">
5738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5739 \begin_inset Text
5740
5741 \begin_layout Standard
5742 asd
5743 \end_layout
5744
5745 \end_inset
5746 </cell>
5747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5748 \begin_inset Text
5749
5750 \begin_layout Standard
5751 s
5752 \end_layout
5753
5754 \end_inset
5755 </cell>
5756 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5757 \begin_inset Text
5758
5759 \begin_layout Standard
5760 s
5761 \end_layout
5762
5763 \end_inset
5764 </cell>
5765 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5766 \begin_inset Text
5767
5768 \begin_layout Standard
5769 s
5770 \end_layout
5771
5772 \end_inset
5773 </cell>
5774 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5775 \begin_inset Text
5776
5777 \begin_layout Standard
5778 asd
5779 \end_layout
5780
5781 \end_inset
5782 </cell>
5783 </row>
5784 <row topline="true" bottomline="true">
5785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5786 \begin_inset Text
5787
5788 \begin_layout Standard
5789 asd
5790 \end_layout
5791
5792 \end_inset
5793 </cell>
5794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5795 \begin_inset Text
5796
5797 \begin_layout Standard
5798 sad
5799 \end_layout
5800
5801 \end_inset
5802 </cell>
5803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5804 \begin_inset Text
5805
5806 \begin_layout Standard
5807 asd
5808 \end_layout
5809
5810 \end_inset
5811 </cell>
5812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5813 \begin_inset Text
5814
5815 \begin_layout Standard
5816 asd
5817 \end_layout
5818
5819 \end_inset
5820 </cell>
5821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5822 \begin_inset Text
5823
5824 \begin_layout Standard
5825 asd
5826 \end_layout
5827
5828 \end_inset
5829 </cell>
5830 </row>
5831 </lyxtabular>
5832
5833 \end_inset
5834
5835
5836 \end_layout
5837
5838 \begin_layout Standard
5839 \begin_inset ERT
5840 status collapsed
5841
5842 \begin_layout Standard
5843
5844
5845 \backslash
5846 setlength{
5847 \backslash
5848 LTcapwidth}{5cm}
5849 \end_layout
5850
5851 \end_inset
5852
5853
5854 \begin_inset Tabular
5855 <lyxtabular version="3" rows="6" columns="5">
5856 <features islongtable="true">
5857 <column alignment="center" valignment="top" leftline="true" width="0">
5858 <column alignment="center" valignment="top" leftline="true" width="0">
5859 <column alignment="center" valignment="top" leftline="true" width="0">
5860 <column alignment="center" valignment="top" leftline="true" width="0">
5861 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5862 <row>
5863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5864 \begin_inset Text
5865
5866 \begin_layout Standard
5867 \begin_inset Caption
5868
5869 \begin_layout Standard
5870 Encabezado completo con ancho de  5\InsetSpace \thinspace{}
5871 cm encabezado completo con ancho de 5\InsetSpace \thinspace{}
5872 cm
5873  encabezado completo con ancho de 5\InsetSpace \thinspace{}
5874 cm
5875 \begin_inset OptArg
5876 status collapsed
5877
5878 \begin_layout Standard
5879 Encabezado con anchura\InsetSpace \thinspace{}
5880 =\InsetSpace \thinspace{}
5881 5\InsetSpace \thinspace{}
5882 cm
5883 \end_layout
5884
5885 \end_inset
5886
5887
5888 \end_layout
5889
5890 \end_inset
5891
5892
5893 \begin_inset ERT
5894 status collapsed
5895
5896 \begin_layout Standard
5897
5898
5899 \backslash
5900
5901 \backslash
5902 %
5903 \end_layout
5904
5905 \end_inset
5906
5907
5908 \end_layout
5909
5910 \end_inset
5911 </cell>
5912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5913 \begin_inset Text
5914
5915 \begin_layout Standard
5916
5917 \end_layout
5918
5919 \end_inset
5920 </cell>
5921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5922 \begin_inset Text
5923
5924 \begin_layout Standard
5925
5926 \end_layout
5927
5928 \end_inset
5929 </cell>
5930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5931 \begin_inset Text
5932
5933 \begin_layout Standard
5934
5935 \end_layout
5936
5937 \end_inset
5938 </cell>
5939 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5940 \begin_inset Text
5941
5942 \begin_layout Standard
5943
5944 \end_layout
5945
5946 \end_inset
5947 </cell>
5948 </row>
5949 <row topline="true">
5950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5951 \begin_inset Text
5952
5953 \begin_layout Standard
5954 1
5955 \end_layout
5956
5957 \end_inset
5958 </cell>
5959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5960 \begin_inset Text
5961
5962 \begin_layout Standard
5963 2
5964 \end_layout
5965
5966 \end_inset
5967 </cell>
5968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5969 \begin_inset Text
5970
5971 \begin_layout Standard
5972 3
5973 \end_layout
5974
5975 \end_inset
5976 </cell>
5977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5978 \begin_inset Text
5979
5980 \begin_layout Standard
5981 4
5982 \end_layout
5983
5984 \end_inset
5985 </cell>
5986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5987 \begin_inset Text
5988
5989 \begin_layout Standard
5990 5
5991 \end_layout
5992
5993 \end_inset
5994 </cell>
5995 </row>
5996 <row topline="true">
5997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5998 \begin_inset Text
5999
6000 \begin_layout Standard
6001 asd
6002 \end_layout
6003
6004 \end_inset
6005 </cell>
6006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6007 \begin_inset Text
6008
6009 \begin_layout Standard
6010 s
6011 \end_layout
6012
6013 \end_inset
6014 </cell>
6015 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6016 \begin_inset Text
6017
6018 \begin_layout Standard
6019 s
6020 \end_layout
6021
6022 \end_inset
6023 </cell>
6024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6025 \begin_inset Text
6026
6027 \begin_layout Standard
6028 s
6029 \end_layout
6030
6031 \end_inset
6032 </cell>
6033 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6034 \begin_inset Text
6035
6036 \begin_layout Standard
6037 asd
6038 \end_layout
6039
6040 \end_inset
6041 </cell>
6042 </row>
6043 <row topline="true">
6044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6045 \begin_inset Text
6046
6047 \begin_layout Standard
6048 asd
6049 \end_layout
6050
6051 \end_inset
6052 </cell>
6053 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6054 \begin_inset Text
6055
6056 \begin_layout Standard
6057 s
6058 \end_layout
6059
6060 \end_inset
6061 </cell>
6062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6063 \begin_inset Text
6064
6065 \begin_layout Standard
6066 s
6067 \end_layout
6068
6069 \end_inset
6070 </cell>
6071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6072 \begin_inset Text
6073
6074 \begin_layout Standard
6075 s
6076 \end_layout
6077
6078 \end_inset
6079 </cell>
6080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6081 \begin_inset Text
6082
6083 \begin_layout Standard
6084 asd
6085 \end_layout
6086
6087 \end_inset
6088 </cell>
6089 </row>
6090 <row topline="true">
6091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6092 \begin_inset Text
6093
6094 \begin_layout Standard
6095 asd
6096 \end_layout
6097
6098 \end_inset
6099 </cell>
6100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6101 \begin_inset Text
6102
6103 \begin_layout Standard
6104 s
6105 \end_layout
6106
6107 \end_inset
6108 </cell>
6109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6110 \begin_inset Text
6111
6112 \begin_layout Standard
6113 s
6114 \end_layout
6115
6116 \end_inset
6117 </cell>
6118 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6119 \begin_inset Text
6120
6121 \begin_layout Standard
6122 s
6123 \end_layout
6124
6125 \end_inset
6126 </cell>
6127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6128 \begin_inset Text
6129
6130 \begin_layout Standard
6131 asd
6132 \end_layout
6133
6134 \end_inset
6135 </cell>
6136 </row>
6137 <row topline="true" bottomline="true">
6138 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6139 \begin_inset Text
6140
6141 \begin_layout Standard
6142 asd
6143 \end_layout
6144
6145 \end_inset
6146 </cell>
6147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6148 \begin_inset Text
6149
6150 \begin_layout Standard
6151 sad
6152 \end_layout
6153
6154 \end_inset
6155 </cell>
6156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6157 \begin_inset Text
6158
6159 \begin_layout Standard
6160 asd
6161 \end_layout
6162
6163 \end_inset
6164 </cell>
6165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6166 \begin_inset Text
6167
6168 \begin_layout Standard
6169 asd
6170 \end_layout
6171
6172 \end_inset
6173 </cell>
6174 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6175 \begin_inset Text
6176
6177 \begin_layout Standard
6178 asd
6179 \end_layout
6180
6181 \end_inset
6182 </cell>
6183 </row>
6184 </lyxtabular>
6185
6186 \end_inset
6187
6188
6189 \begin_inset ERT
6190 status collapsed
6191
6192 \begin_layout Standard
6193
6194
6195 \backslash
6196 setlength{
6197 \backslash
6198 LTcapwidth}{4in}
6199 \end_layout
6200
6201 \end_inset
6202
6203
6204 \end_layout
6205
6206 \begin_layout Subsubsection
6207 Encabezados Distintos para cada Página
6208 \begin_inset LatexCommand index
6209 name "Tablas Largas ! Encabezados Diferentes para cada Página"
6210
6211 \end_inset
6212
6213
6214 \end_layout
6215
6216 \begin_layout Standard
6217 Si los otros encabezados debieran ser diferentes del de la primera página,
6218  inserta un encabezado con un título breve no vacío en una fila postiza
6219  de encabezado marcado como primer encabezado.
6220  El encabezado para las restantes páginas se inserta como encabezado sin
6221  título breve en una fila postiza de encabezado marcado como primer encabezado.
6222  Si este encabezado no ha de incluir el número de tabla, usa el comando
6223 \end_layout
6224
6225 \begin_layout Standard
6226
6227 \series bold
6228
6229 \backslash
6230 caption*{texto del encabezado}
6231 \end_layout
6232
6233 \begin_layout Standard
6234 en vez del recuadro de encabezados de LyX.
6235  La etiqueta para referenciar la tabla se inserta en el primer encabezado.
6236  La tabla\InsetSpace ~
6237
6238 \begin_inset LatexCommand ref
6239 reference "tab:DifEncabezados"
6240
6241 \end_inset
6242
6243  es un ejemplo de tabla larga con encabezados distintos donde el segundo
6244  no incluye número de tabla.
6245 \end_layout
6246
6247 \begin_layout Standard
6248 \align center
6249 \begin_inset Tabular
6250 <lyxtabular version="3" rows="60" columns="3">
6251 <features islongtable="true">
6252 <column alignment="left" valignment="top" leftline="true" width="0cm">
6253 <column alignment="left" valignment="top" rightline="true" width="0pt">
6254 <column alignment="right" valignment="top" rightline="true" width="0pt">
6255 <row endfirsthead="true">
6256 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6257 \begin_inset Text
6258
6259 \begin_layout Standard
6260 \begin_inset Caption
6261
6262 \begin_layout Standard
6263 Ejemplo de lista telefónica
6264 \begin_inset LatexCommand label
6265 name "tab:DifEncabezados"
6266
6267 \end_inset
6268
6269
6270 \begin_inset OptArg
6271 status collapsed
6272
6273 \begin_layout Standard
6274 Ejemplo de lista telefónica
6275 \end_layout
6276
6277 \end_inset
6278
6279
6280 \end_layout
6281
6282 \end_inset
6283
6284
6285 \begin_inset ERT
6286 status collapsed
6287
6288 \begin_layout Standard
6289
6290
6291 \backslash
6292
6293 \backslash
6294 %
6295 \end_layout
6296
6297 \end_inset
6298
6299
6300 \end_layout
6301
6302 \end_inset
6303 </cell>
6304 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6305 \begin_inset Text
6306
6307 \begin_layout Standard
6308
6309 \end_layout
6310
6311 \end_inset
6312 </cell>
6313 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6314 \begin_inset Text
6315
6316 \begin_layout Standard
6317
6318 \end_layout
6319
6320 \end_inset
6321 </cell>
6322 </row>
6323 <row topline="true" bottomline="true" endfirsthead="true">
6324 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6325 \begin_inset Text
6326
6327 \begin_layout Standard
6328
6329 \series bold
6330 Ejemplo de lista telefónica (ignore los nombres)
6331 \end_layout
6332
6333 \end_inset
6334 </cell>
6335 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6336 \begin_inset Text
6337
6338 \begin_layout Standard
6339
6340 \end_layout
6341
6342 \end_inset
6343 </cell>
6344 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6345 \begin_inset Text
6346
6347 \begin_layout Standard
6348
6349 \end_layout
6350
6351 \end_inset
6352 </cell>
6353 </row>
6354 <row topline="true" bottomline="true" endfirsthead="true">
6355 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6356 \begin_inset Text
6357
6358 \begin_layout Standard
6359
6360 \series bold
6361 NOMBRE
6362 \end_layout
6363
6364 \end_inset
6365 </cell>
6366 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6367 \begin_inset Text
6368
6369 \begin_layout Standard
6370
6371 \end_layout
6372
6373 \end_inset
6374 </cell>
6375 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6376 \begin_inset Text
6377
6378 \begin_layout Standard
6379
6380 \series bold
6381 TEL.
6382 \end_layout
6383
6384 \end_inset
6385 </cell>
6386 </row>
6387 <row bottomline="true" endhead="true">
6388 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6389 \begin_inset Text
6390
6391 \begin_layout Standard
6392 \begin_inset ERT
6393 status collapsed
6394
6395 \begin_layout Standard
6396
6397
6398 \backslash
6399 caption*{Continúa Ejemplo de lista telefónica}
6400 \backslash
6401
6402 \backslash
6403 %
6404 \end_layout
6405
6406 \end_inset
6407
6408
6409 \end_layout
6410
6411 \end_inset
6412 </cell>
6413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6414 \begin_inset Text
6415
6416 \begin_layout Standard
6417
6418 \end_layout
6419
6420 \end_inset
6421 </cell>
6422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6423 \begin_inset Text
6424
6425 \begin_layout Standard
6426
6427 \end_layout
6428
6429 \end_inset
6430 </cell>
6431 </row>
6432 <row topline="true" bottomline="true" endhead="true">
6433 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6434 \begin_inset Text
6435
6436 \begin_layout Standard
6437
6438 \series bold
6439 Ejemplo de lista telefónica
6440 \end_layout
6441
6442 \end_inset
6443 </cell>
6444 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6445 \begin_inset Text
6446
6447 \begin_layout Standard
6448
6449 \end_layout
6450
6451 \end_inset
6452 </cell>
6453 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6454 \begin_inset Text
6455
6456 \begin_layout Standard
6457
6458 \end_layout
6459
6460 \end_inset
6461 </cell>
6462 </row>
6463 <row topline="true" bottomline="true" endhead="true">
6464 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6465 \begin_inset Text
6466
6467 \begin_layout Standard
6468
6469 \series bold
6470 NOMBRE
6471 \end_layout
6472
6473 \end_inset
6474 </cell>
6475 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6476 \begin_inset Text
6477
6478 \begin_layout Standard
6479
6480 \end_layout
6481
6482 \end_inset
6483 </cell>
6484 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6485 \begin_inset Text
6486
6487 \begin_layout Standard
6488
6489 \series bold
6490 TEL.
6491 \end_layout
6492
6493 \end_inset
6494 </cell>
6495 </row>
6496 <row topline="true" bottomline="true" endfoot="true">
6497 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6498 \begin_inset Text
6499
6500 \begin_layout Standard
6501 continúa en página siguiente
6502 \end_layout
6503
6504 \end_inset
6505 </cell>
6506 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6507 \begin_inset Text
6508
6509 \begin_layout Standard
6510
6511 \end_layout
6512
6513 \end_inset
6514 </cell>
6515 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6516 \begin_inset Text
6517
6518 \begin_layout Standard
6519
6520 \end_layout
6521
6522 \end_inset
6523 </cell>
6524 </row>
6525 <row>
6526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6527 \begin_inset Text
6528
6529 \begin_layout Standard
6530
6531 \series bold
6532 Annovi
6533 \end_layout
6534
6535 \end_inset
6536 </cell>
6537 <cell alignment="center" valignment="top" topline="true" usebox="none">
6538 \begin_inset Text
6539
6540 \begin_layout Standard
6541 Silvia
6542 \end_layout
6543
6544 \end_inset
6545 </cell>
6546 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6547 \begin_inset Text
6548
6549 \begin_layout Standard
6550 111
6551 \end_layout
6552
6553 \end_inset
6554 </cell>
6555 </row>
6556 <row>
6557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6558 \begin_inset Text
6559
6560 \begin_layout Standard
6561
6562 \series bold
6563 Bertoli
6564 \end_layout
6565
6566 \end_inset
6567 </cell>
6568 <cell alignment="center" valignment="top" topline="true" usebox="none">
6569 \begin_inset Text
6570
6571 \begin_layout Standard
6572 Stefano
6573 \end_layout
6574
6575 \end_inset
6576 </cell>
6577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6578 \begin_inset Text
6579
6580 \begin_layout Standard
6581 111
6582 \end_layout
6583
6584 \end_inset
6585 </cell>
6586 </row>
6587 <row>
6588 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6589 \begin_inset Text
6590
6591 \begin_layout Standard
6592
6593 \series bold
6594 Bozzi
6595 \end_layout
6596
6597 \end_inset
6598 </cell>
6599 <cell alignment="center" valignment="top" topline="true" usebox="none">
6600 \begin_inset Text
6601
6602 \begin_layout Standard
6603 Walter
6604 \end_layout
6605
6606 \end_inset
6607 </cell>
6608 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6609 \begin_inset Text
6610
6611 \begin_layout Standard
6612 111
6613 \end_layout
6614
6615 \end_inset
6616 </cell>
6617 </row>
6618 <row>
6619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6620 \begin_inset Text
6621
6622 \begin_layout Standard
6623
6624 \series bold
6625 Cachia
6626 \end_layout
6627
6628 \end_inset
6629 </cell>
6630 <cell alignment="center" valignment="top" topline="true" usebox="none">
6631 \begin_inset Text
6632
6633 \begin_layout Standard
6634 Maria
6635 \end_layout
6636
6637 \end_inset
6638 </cell>
6639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6640 \begin_inset Text
6641
6642 \begin_layout Standard
6643 111
6644 \end_layout
6645
6646 \end_inset
6647 </cell>
6648 </row>
6649 <row>
6650 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6651 \begin_inset Text
6652
6653 \begin_layout Standard
6654
6655 \series bold
6656 Cachia
6657 \end_layout
6658
6659 \end_inset
6660 </cell>
6661 <cell alignment="center" valignment="top" topline="true" usebox="none">
6662 \begin_inset Text
6663
6664 \begin_layout Standard
6665 Maurizio
6666 \end_layout
6667
6668 \end_inset
6669 </cell>
6670 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6671 \begin_inset Text
6672
6673 \begin_layout Standard
6674 111
6675 \end_layout
6676
6677 \end_inset
6678 </cell>
6679 </row>
6680 <row>
6681 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6682 \begin_inset Text
6683
6684 \begin_layout Standard
6685
6686 \series bold
6687 Cinquemani
6688 \end_layout
6689
6690 \end_inset
6691 </cell>
6692 <cell alignment="center" valignment="top" topline="true" usebox="none">
6693 \begin_inset Text
6694
6695 \begin_layout Standard
6696 Giusi
6697 \end_layout
6698
6699 \end_inset
6700 </cell>
6701 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6702 \begin_inset Text
6703
6704 \begin_layout Standard
6705 111
6706 \end_layout
6707
6708 \end_inset
6709 </cell>
6710 </row>
6711 <row>
6712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6713 \begin_inset Text
6714
6715 \begin_layout Standard
6716
6717 \series bold
6718 Colin
6719 \end_layout
6720
6721 \end_inset
6722 </cell>
6723 <cell alignment="center" valignment="top" topline="true" usebox="none">
6724 \begin_inset Text
6725
6726 \begin_layout Standard
6727 Bernard
6728 \end_layout
6729
6730 \end_inset
6731 </cell>
6732 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6733 \begin_inset Text
6734
6735 \begin_layout Standard
6736 111
6737 \end_layout
6738
6739 \end_inset
6740 </cell>
6741 </row>
6742 <row>
6743 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6744 \begin_inset Text
6745
6746 \begin_layout Standard
6747
6748 \series bold
6749 Concli
6750 \end_layout
6751
6752 \end_inset
6753 </cell>
6754 <cell alignment="center" valignment="top" topline="true" usebox="none">
6755 \begin_inset Text
6756
6757 \begin_layout Standard
6758 Gianfranco
6759 \end_layout
6760
6761 \end_inset
6762 </cell>
6763 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6764 \begin_inset Text
6765
6766 \begin_layout Standard
6767 111
6768 \end_layout
6769
6770 \end_inset
6771 </cell>
6772 </row>
6773 <row>
6774 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6775 \begin_inset Text
6776
6777 \begin_layout Standard
6778
6779 \series bold
6780 Dal Bosco
6781 \end_layout
6782
6783 \end_inset
6784 </cell>
6785 <cell alignment="center" valignment="top" topline="true" usebox="none">
6786 \begin_inset Text
6787
6788 \begin_layout Standard
6789 Carolina
6790 \end_layout
6791
6792 \end_inset
6793 </cell>
6794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6795 \begin_inset Text
6796
6797 \begin_layout Standard
6798 111
6799 \end_layout
6800
6801 \end_inset
6802 </cell>
6803 </row>
6804 <row>
6805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6806 \begin_inset Text
6807
6808 \begin_layout Standard
6809
6810 \series bold
6811 Dalpiaz
6812 \end_layout
6813
6814 \end_inset
6815 </cell>
6816 <cell alignment="center" valignment="top" topline="true" usebox="none">
6817 \begin_inset Text
6818
6819 \begin_layout Standard
6820 Annamaria
6821 \end_layout
6822
6823 \end_inset
6824 </cell>
6825 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6826 \begin_inset Text
6827
6828 \begin_layout Standard
6829 111
6830 \end_layout
6831
6832 \end_inset
6833 </cell>
6834 </row>
6835 <row>
6836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6837 \begin_inset Text
6838
6839 \begin_layout Standard
6840
6841 \series bold
6842 Feliciello
6843 \end_layout
6844
6845 \end_inset
6846 </cell>
6847 <cell alignment="center" valignment="top" topline="true" usebox="none">
6848 \begin_inset Text
6849
6850 \begin_layout Standard
6851 Domenico
6852 \end_layout
6853
6854 \end_inset
6855 </cell>
6856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6857 \begin_inset Text
6858
6859 \begin_layout Standard
6860 111
6861 \end_layout
6862
6863 \end_inset
6864 </cell>
6865 </row>
6866 <row>
6867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6868 \begin_inset Text
6869
6870 \begin_layout Standard
6871
6872 \series bold
6873 Focarelli
6874 \end_layout
6875
6876 \end_inset
6877 </cell>
6878 <cell alignment="center" valignment="top" topline="true" usebox="none">
6879 \begin_inset Text
6880
6881 \begin_layout Standard
6882 Paola
6883 \end_layout
6884
6885 \end_inset
6886 </cell>
6887 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6888 \begin_inset Text
6889
6890 \begin_layout Standard
6891 111
6892 \end_layout
6893
6894 \end_inset
6895 </cell>
6896 </row>
6897 <row>
6898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6899 \begin_inset Text
6900
6901 \begin_layout Standard
6902
6903 \series bold
6904 Galletti
6905 \end_layout
6906
6907 \end_inset
6908 </cell>
6909 <cell alignment="center" valignment="top" topline="true" usebox="none">
6910 \begin_inset Text
6911
6912 \begin_layout Standard
6913 Oreste
6914 \end_layout
6915
6916 \end_inset
6917 </cell>
6918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6919 \begin_inset Text
6920
6921 \begin_layout Standard
6922 111
6923 \end_layout
6924
6925 \end_inset
6926 </cell>
6927 </row>
6928 <row>
6929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6930 \begin_inset Text
6931
6932 \begin_layout Standard
6933
6934 \series bold
6935 Gasparini
6936 \end_layout
6937
6938 \end_inset
6939 </cell>
6940 <cell alignment="center" valignment="top" topline="true" usebox="none">
6941 \begin_inset Text
6942
6943 \begin_layout Standard
6944 Franca
6945 \end_layout
6946
6947 \end_inset
6948 </cell>
6949 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6950 \begin_inset Text
6951
6952 \begin_layout Standard
6953 111
6954 \end_layout
6955
6956 \end_inset
6957 </cell>
6958 </row>
6959 <row>
6960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6961 \begin_inset Text
6962
6963 \begin_layout Standard
6964
6965 \series bold
6966 Rizzardi
6967 \series default
6968
6969 \begin_inset Foot
6970 status open
6971
6972 \begin_layout Standard
6973 Ejemplo de nota al pie
6974 \end_layout
6975
6976 \end_inset
6977
6978
6979 \end_layout
6980
6981 \end_inset
6982 </cell>
6983 <cell alignment="center" valignment="top" topline="true" usebox="none">
6984 \begin_inset Text
6985
6986 \begin_layout Standard
6987 Paola
6988 \end_layout
6989
6990 \end_inset
6991 </cell>
6992 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6993 \begin_inset Text
6994
6995 \begin_layout Standard
6996 111
6997 \end_layout
6998
6999 \end_inset
7000 </cell>
7001 </row>
7002 <row>
7003 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7004 \begin_inset Text
7005
7006 \begin_layout Standard
7007
7008 \series bold
7009 Lassini
7010 \end_layout
7011
7012 \end_inset
7013 </cell>
7014 <cell alignment="center" valignment="top" topline="true" usebox="none">
7015 \begin_inset Text
7016
7017 \begin_layout Standard
7018 Giancarlo
7019 \end_layout
7020
7021 \end_inset
7022 </cell>
7023 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7024 \begin_inset Text
7025
7026 \begin_layout Standard
7027 111
7028 \end_layout
7029
7030 \end_inset
7031 </cell>
7032 </row>
7033 <row>
7034 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7035 \begin_inset Text
7036
7037 \begin_layout Standard
7038
7039 \series bold
7040 Malfatti
7041 \end_layout
7042
7043 \end_inset
7044 </cell>
7045 <cell alignment="center" valignment="top" topline="true" usebox="none">
7046 \begin_inset Text
7047
7048 \begin_layout Standard
7049 Luciano
7050 \end_layout
7051
7052 \end_inset
7053 </cell>
7054 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7055 \begin_inset Text
7056
7057 \begin_layout Standard
7058 111
7059 \end_layout
7060
7061 \end_inset
7062 </cell>
7063 </row>
7064 <row>
7065 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7066 \begin_inset Text
7067
7068 \begin_layout Standard
7069
7070 \series bold
7071 Malfatti
7072 \end_layout
7073
7074 \end_inset
7075 </cell>
7076 <cell alignment="center" valignment="top" topline="true" usebox="none">
7077 \begin_inset Text
7078
7079 \begin_layout Standard
7080 Valeriano
7081 \end_layout
7082
7083 \end_inset
7084 </cell>
7085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7086 \begin_inset Text
7087
7088 \begin_layout Standard
7089 111
7090 \end_layout
7091
7092 \end_inset
7093 </cell>
7094 </row>
7095 <row>
7096 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7097 \begin_inset Text
7098
7099 \begin_layout Standard
7100
7101 \series bold
7102 Meneguzzo
7103 \end_layout
7104
7105 \end_inset
7106 </cell>
7107 <cell alignment="center" valignment="top" topline="true" usebox="none">
7108 \begin_inset Text
7109
7110 \begin_layout Standard
7111 Roberto
7112 \end_layout
7113
7114 \end_inset
7115 </cell>
7116 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7117 \begin_inset Text
7118
7119 \begin_layout Standard
7120 111
7121 \end_layout
7122
7123 \end_inset
7124 </cell>
7125 </row>
7126 <row>
7127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7128 \begin_inset Text
7129
7130 \begin_layout Standard
7131
7132 \series bold
7133 Mezzadra
7134 \end_layout
7135
7136 \end_inset
7137 </cell>
7138 <cell alignment="center" valignment="top" topline="true" usebox="none">
7139 \begin_inset Text
7140
7141 \begin_layout Standard
7142 Roberto
7143 \end_layout
7144
7145 \end_inset
7146 </cell>
7147 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7148 \begin_inset Text
7149
7150 \begin_layout Standard
7151 111
7152 \end_layout
7153
7154 \end_inset
7155 </cell>
7156 </row>
7157 <row>
7158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7159 \begin_inset Text
7160
7161 \begin_layout Standard
7162
7163 \series bold
7164 Pirpamer
7165 \end_layout
7166
7167 \end_inset
7168 </cell>
7169 <cell alignment="center" valignment="top" topline="true" usebox="none">
7170 \begin_inset Text
7171
7172 \begin_layout Standard
7173 Erich
7174 \end_layout
7175
7176 \end_inset
7177 </cell>
7178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7179 \begin_inset Text
7180
7181 \begin_layout Standard
7182 111
7183 \end_layout
7184
7185 \end_inset
7186 </cell>
7187 </row>
7188 <row>
7189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7190 \begin_inset Text
7191
7192 \begin_layout Standard
7193
7194 \series bold
7195 Pochiesa
7196 \end_layout
7197
7198 \end_inset
7199 </cell>
7200 <cell alignment="center" valignment="top" topline="true" usebox="none">
7201 \begin_inset Text
7202
7203 \begin_layout Standard
7204 Paolo
7205 \end_layout
7206
7207 \end_inset
7208 </cell>
7209 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7210 \begin_inset Text
7211
7212 \begin_layout Standard
7213 111, 222
7214 \end_layout
7215
7216 \end_inset
7217 </cell>
7218 </row>
7219 <row>
7220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7221 \begin_inset Text
7222
7223 \begin_layout Standard
7224
7225 \series bold
7226 Radina
7227 \end_layout
7228
7229 \end_inset
7230 </cell>
7231 <cell alignment="center" valignment="top" topline="true" usebox="none">
7232 \begin_inset Text
7233
7234 \begin_layout Standard
7235 Claudio
7236 \end_layout
7237
7238 \end_inset
7239 </cell>
7240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7241 \begin_inset Text
7242
7243 \begin_layout Standard
7244 111
7245 \end_layout
7246
7247 \end_inset
7248 </cell>
7249 </row>
7250 <row>
7251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7252 \begin_inset Text
7253
7254 \begin_layout Standard
7255
7256 \series bold
7257 Stuffer
7258 \end_layout
7259
7260 \end_inset
7261 </cell>
7262 <cell alignment="center" valignment="top" topline="true" usebox="none">
7263 \begin_inset Text
7264
7265 \begin_layout Standard
7266 Oskar
7267 \end_layout
7268
7269 \end_inset
7270 </cell>
7271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7272 \begin_inset Text
7273
7274 \begin_layout Standard
7275 111
7276 \end_layout
7277
7278 \end_inset
7279 </cell>
7280 </row>
7281 <row>
7282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7283 \begin_inset Text
7284
7285 \begin_layout Standard
7286
7287 \series bold
7288 Tacchelli
7289 \end_layout
7290
7291 \end_inset
7292 </cell>
7293 <cell alignment="center" valignment="top" topline="true" usebox="none">
7294 \begin_inset Text
7295
7296 \begin_layout Standard
7297 Ugo
7298 \end_layout
7299
7300 \end_inset
7301 </cell>
7302 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7303 \begin_inset Text
7304
7305 \begin_layout Standard
7306 111
7307 \end_layout
7308
7309 \end_inset
7310 </cell>
7311 </row>
7312 <row>
7313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7314 \begin_inset Text
7315
7316 \begin_layout Standard
7317
7318 \series bold
7319 Tezzele
7320 \end_layout
7321
7322 \end_inset
7323 </cell>
7324 <cell alignment="center" valignment="top" topline="true" usebox="none">
7325 \begin_inset Text
7326
7327 \begin_layout Standard
7328 Margit
7329 \end_layout
7330
7331 \end_inset
7332 </cell>
7333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7334 \begin_inset Text
7335
7336 \begin_layout Standard
7337 111
7338 \end_layout
7339
7340 \end_inset
7341 </cell>
7342 </row>
7343 <row>
7344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7345 \begin_inset Text
7346
7347 \begin_layout Standard
7348
7349 \series bold
7350 Unterkalmsteiner
7351 \end_layout
7352
7353 \end_inset
7354 </cell>
7355 <cell alignment="center" valignment="top" topline="true" usebox="none">
7356 \begin_inset Text
7357
7358 \begin_layout Standard
7359 Frieda
7360 \end_layout
7361
7362 \end_inset
7363 </cell>
7364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7365 \begin_inset Text
7366
7367 \begin_layout Standard
7368 111
7369 \end_layout
7370
7371 \end_inset
7372 </cell>
7373 </row>
7374 <row>
7375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7376 \begin_inset Text
7377
7378 \begin_layout Standard
7379
7380 \series bold
7381 Vieider
7382 \end_layout
7383
7384 \end_inset
7385 </cell>
7386 <cell alignment="center" valignment="top" topline="true" usebox="none">
7387 \begin_inset Text
7388
7389 \begin_layout Standard
7390 Hilde
7391 \end_layout
7392
7393 \end_inset
7394 </cell>
7395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7396 \begin_inset Text
7397
7398 \begin_layout Standard
7399 111
7400 \end_layout
7401
7402 \end_inset
7403 </cell>
7404 </row>
7405 <row>
7406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7407 \begin_inset Text
7408
7409 \begin_layout Standard
7410
7411 \series bold
7412 Vigna
7413 \end_layout
7414
7415 \end_inset
7416 </cell>
7417 <cell alignment="center" valignment="top" topline="true" usebox="none">
7418 \begin_inset Text
7419
7420 \begin_layout Standard
7421 Jürgen
7422 \end_layout
7423
7424 \end_inset
7425 </cell>
7426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7427 \begin_inset Text
7428
7429 \begin_layout Standard
7430 111
7431 \end_layout
7432
7433 \end_inset
7434 </cell>
7435 </row>
7436 <row>
7437 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7438 \begin_inset Text
7439
7440 \begin_layout Standard
7441
7442 \series bold
7443 Weber
7444 \end_layout
7445
7446 \end_inset
7447 </cell>
7448 <cell alignment="center" valignment="top" topline="true" usebox="none">
7449 \begin_inset Text
7450
7451 \begin_layout Standard
7452 Maurizio
7453 \end_layout
7454
7455 \end_inset
7456 </cell>
7457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7458 \begin_inset Text
7459
7460 \begin_layout Standard
7461 111
7462 \end_layout
7463
7464 \end_inset
7465 </cell>
7466 </row>
7467 <row bottomline="true">
7468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7469 \begin_inset Text
7470
7471 \begin_layout Standard
7472
7473 \series bold
7474 Winkler
7475 \end_layout
7476
7477 \end_inset
7478 </cell>
7479 <cell alignment="center" valignment="top" topline="true" usebox="none">
7480 \begin_inset Text
7481
7482 \begin_layout Standard
7483 Franz
7484 \end_layout
7485
7486 \end_inset
7487 </cell>
7488 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7489 \begin_inset Text
7490
7491 \begin_layout Standard
7492 111
7493 \end_layout
7494
7495 \end_inset
7496 </cell>
7497 </row>
7498 <row bottomline="true">
7499 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7500 \begin_inset Text
7501
7502 \begin_layout Standard
7503  
7504 \end_layout
7505
7506 \end_inset
7507 </cell>
7508 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7509 \begin_inset Text
7510
7511 \begin_layout Standard
7512
7513 \end_layout
7514
7515 \end_inset
7516 </cell>
7517 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7518 \begin_inset Text
7519
7520 \begin_layout Standard
7521
7522 \end_layout
7523
7524 \end_inset
7525 </cell>
7526 </row>
7527 <row>
7528 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7529 \begin_inset Text
7530
7531 \begin_layout Standard
7532
7533 \series bold
7534 Annovi
7535 \end_layout
7536
7537 \end_inset
7538 </cell>
7539 <cell alignment="center" valignment="top" topline="true" usebox="none">
7540 \begin_inset Text
7541
7542 \begin_layout Standard
7543 Silvia
7544 \end_layout
7545
7546 \end_inset
7547 </cell>
7548 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7549 \begin_inset Text
7550
7551 \begin_layout Standard
7552 555
7553 \end_layout
7554
7555 \end_inset
7556 </cell>
7557 </row>
7558 <row>
7559 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7560 \begin_inset Text
7561
7562 \begin_layout Standard
7563
7564 \series bold
7565 Bertoli
7566 \end_layout
7567
7568 \end_inset
7569 </cell>
7570 <cell alignment="center" valignment="top" topline="true" usebox="none">
7571 \begin_inset Text
7572
7573 \begin_layout Standard
7574 Stefano
7575 \end_layout
7576
7577 \end_inset
7578 </cell>
7579 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7580 \begin_inset Text
7581
7582 \begin_layout Standard
7583 555
7584 \end_layout
7585
7586 \end_inset
7587 </cell>
7588 </row>
7589 <row>
7590 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7591 \begin_inset Text
7592
7593 \begin_layout Standard
7594
7595 \series bold
7596 Bozzi
7597 \end_layout
7598
7599 \end_inset
7600 </cell>
7601 <cell alignment="center" valignment="top" topline="true" usebox="none">
7602 \begin_inset Text
7603
7604 \begin_layout Standard
7605 Walter
7606 \end_layout
7607
7608 \end_inset
7609 </cell>
7610 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7611 \begin_inset Text
7612
7613 \begin_layout Standard
7614 555
7615 \end_layout
7616
7617 \end_inset
7618 </cell>
7619 </row>
7620 <row>
7621 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7622 \begin_inset Text
7623
7624 \begin_layout Standard
7625
7626 \series bold
7627 Cachia
7628 \end_layout
7629
7630 \end_inset
7631 </cell>
7632 <cell alignment="center" valignment="top" topline="true" usebox="none">
7633 \begin_inset Text
7634
7635 \begin_layout Standard
7636 Maria
7637 \end_layout
7638
7639 \end_inset
7640 </cell>
7641 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7642 \begin_inset Text
7643
7644 \begin_layout Standard
7645 555
7646 \end_layout
7647
7648 \end_inset
7649 </cell>
7650 </row>
7651 <row>
7652 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7653 \begin_inset Text
7654
7655 \begin_layout Standard
7656
7657 \series bold
7658 Cachia
7659 \end_layout
7660
7661 \end_inset
7662 </cell>
7663 <cell alignment="center" valignment="top" topline="true" usebox="none">
7664 \begin_inset Text
7665
7666 \begin_layout Standard
7667 Maurizio
7668 \end_layout
7669
7670 \end_inset
7671 </cell>
7672 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7673 \begin_inset Text
7674
7675 \begin_layout Standard
7676 555
7677 \end_layout
7678
7679 \end_inset
7680 </cell>
7681 </row>
7682 <row>
7683 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7684 \begin_inset Text
7685
7686 \begin_layout Standard
7687
7688 \series bold
7689 Cinquemani
7690 \end_layout
7691
7692 \end_inset
7693 </cell>
7694 <cell alignment="center" valignment="top" topline="true" usebox="none">
7695 \begin_inset Text
7696
7697 \begin_layout Standard
7698 Giusi
7699 \end_layout
7700
7701 \end_inset
7702 </cell>
7703 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7704 \begin_inset Text
7705
7706 \begin_layout Standard
7707 555
7708 \end_layout
7709
7710 \end_inset
7711 </cell>
7712 </row>
7713 <row>
7714 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7715 \begin_inset Text
7716
7717 \begin_layout Standard
7718
7719 \series bold
7720 Colin
7721 \end_layout
7722
7723 \end_inset
7724 </cell>
7725 <cell alignment="center" valignment="top" topline="true" usebox="none">
7726 \begin_inset Text
7727
7728 \begin_layout Standard
7729 Bernard
7730 \end_layout
7731
7732 \end_inset
7733 </cell>
7734 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7735 \begin_inset Text
7736
7737 \begin_layout Standard
7738 555
7739 \end_layout
7740
7741 \end_inset
7742 </cell>
7743 </row>
7744 <row>
7745 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7746 \begin_inset Text
7747
7748 \begin_layout Standard
7749
7750 \series bold
7751 Concli
7752 \end_layout
7753
7754 \end_inset
7755 </cell>
7756 <cell alignment="center" valignment="top" topline="true" usebox="none">
7757 \begin_inset Text
7758
7759 \begin_layout Standard
7760 Gianfranco
7761 \end_layout
7762
7763 \end_inset
7764 </cell>
7765 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7766 \begin_inset Text
7767
7768 \begin_layout Standard
7769 555
7770 \end_layout
7771
7772 \end_inset
7773 </cell>
7774 </row>
7775 <row>
7776 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7777 \begin_inset Text
7778
7779 \begin_layout Standard
7780
7781 \series bold
7782 Dal Bosco
7783 \end_layout
7784
7785 \end_inset
7786 </cell>
7787 <cell alignment="center" valignment="top" topline="true" usebox="none">
7788 \begin_inset Text
7789
7790 \begin_layout Standard
7791 Carolina
7792 \end_layout
7793
7794 \end_inset
7795 </cell>
7796 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7797 \begin_inset Text
7798
7799 \begin_layout Standard
7800 555
7801 \end_layout
7802
7803 \end_inset
7804 </cell>
7805 </row>
7806 <row>
7807 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7808 \begin_inset Text
7809
7810 \begin_layout Standard
7811
7812 \series bold
7813 Dalpiaz
7814 \end_layout
7815
7816 \end_inset
7817 </cell>
7818 <cell alignment="center" valignment="top" topline="true" usebox="none">
7819 \begin_inset Text
7820
7821 \begin_layout Standard
7822 Annamaria
7823 \end_layout
7824
7825 \end_inset
7826 </cell>
7827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7828 \begin_inset Text
7829
7830 \begin_layout Standard
7831 555
7832 \end_layout
7833
7834 \end_inset
7835 </cell>
7836 </row>
7837 <row>
7838 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7839 \begin_inset Text
7840
7841 \begin_layout Standard
7842
7843 \series bold
7844 Feliciello
7845 \end_layout
7846
7847 \end_inset
7848 </cell>
7849 <cell alignment="center" valignment="top" topline="true" usebox="none">
7850 \begin_inset Text
7851
7852 \begin_layout Standard
7853 Domenico
7854 \end_layout
7855
7856 \end_inset
7857 </cell>
7858 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7859 \begin_inset Text
7860
7861 \begin_layout Standard
7862 555
7863 \end_layout
7864
7865 \end_inset
7866 </cell>
7867 </row>
7868 <row>
7869 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7870 \begin_inset Text
7871
7872 \begin_layout Standard
7873
7874 \series bold
7875 Focarelli
7876 \end_layout
7877
7878 \end_inset
7879 </cell>
7880 <cell alignment="center" valignment="top" topline="true" usebox="none">
7881 \begin_inset Text
7882
7883 \begin_layout Standard
7884 Paola
7885 \end_layout
7886
7887 \end_inset
7888 </cell>
7889 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7890 \begin_inset Text
7891
7892 \begin_layout Standard
7893 555
7894 \end_layout
7895
7896 \end_inset
7897 </cell>
7898 </row>
7899 <row>
7900 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7901 \begin_inset Text
7902
7903 \begin_layout Standard
7904
7905 \series bold
7906 Galletti
7907 \end_layout
7908
7909 \end_inset
7910 </cell>
7911 <cell alignment="center" valignment="top" topline="true" usebox="none">
7912 \begin_inset Text
7913
7914 \begin_layout Standard
7915 Oreste
7916 \end_layout
7917
7918 \end_inset
7919 </cell>
7920 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7921 \begin_inset Text
7922
7923 \begin_layout Standard
7924 555
7925 \end_layout
7926
7927 \end_inset
7928 </cell>
7929 </row>
7930 <row>
7931 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7932 \begin_inset Text
7933
7934 \begin_layout Standard
7935
7936 \series bold
7937 Gasparini
7938 \end_layout
7939
7940 \end_inset
7941 </cell>
7942 <cell alignment="center" valignment="top" topline="true" usebox="none">
7943 \begin_inset Text
7944
7945 \begin_layout Standard
7946 Franca
7947 \end_layout
7948
7949 \end_inset
7950 </cell>
7951 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7952 \begin_inset Text
7953
7954 \begin_layout Standard
7955 555
7956 \end_layout
7957
7958 \end_inset
7959 </cell>
7960 </row>
7961 <row>
7962 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7963 \begin_inset Text
7964
7965 \begin_layout Standard
7966
7967 \series bold
7968 Rizzardi
7969 \end_layout
7970
7971 \end_inset
7972 </cell>
7973 <cell alignment="center" valignment="top" topline="true" usebox="none">
7974 \begin_inset Text
7975
7976 \begin_layout Standard
7977 Paola
7978 \end_layout
7979
7980 \end_inset
7981 </cell>
7982 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7983 \begin_inset Text
7984
7985 \begin_layout Standard
7986 555
7987 \end_layout
7988
7989 \end_inset
7990 </cell>
7991 </row>
7992 <row>
7993 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7994 \begin_inset Text
7995
7996 \begin_layout Standard
7997
7998 \series bold
7999 Lassini
8000 \end_layout
8001
8002 \end_inset
8003 </cell>
8004 <cell alignment="center" valignment="top" topline="true" usebox="none">
8005 \begin_inset Text
8006
8007 \begin_layout Standard
8008 Giancarlo
8009 \end_layout
8010
8011 \end_inset
8012 </cell>
8013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8014 \begin_inset Text
8015
8016 \begin_layout Standard
8017 555
8018 \end_layout
8019
8020 \end_inset
8021 </cell>
8022 </row>
8023 <row>
8024 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8025 \begin_inset Text
8026
8027 \begin_layout Standard
8028
8029 \series bold
8030 Malfatti
8031 \end_layout
8032
8033 \end_inset
8034 </cell>
8035 <cell alignment="center" valignment="top" topline="true" usebox="none">
8036 \begin_inset Text
8037
8038 \begin_layout Standard
8039 Luciano
8040 \end_layout
8041
8042 \end_inset
8043 </cell>
8044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8045 \begin_inset Text
8046
8047 \begin_layout Standard
8048 555
8049 \end_layout
8050
8051 \end_inset
8052 </cell>
8053 </row>
8054 <row>
8055 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8056 \begin_inset Text
8057
8058 \begin_layout Standard
8059
8060 \series bold
8061 Malfatti
8062 \end_layout
8063
8064 \end_inset
8065 </cell>
8066 <cell alignment="center" valignment="top" topline="true" usebox="none">
8067 \begin_inset Text
8068
8069 \begin_layout Standard
8070 Valeriano
8071 \end_layout
8072
8073 \end_inset
8074 </cell>
8075 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8076 \begin_inset Text
8077
8078 \begin_layout Standard
8079 555
8080 \end_layout
8081
8082 \end_inset
8083 </cell>
8084 </row>
8085 <row>
8086 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8087 \begin_inset Text
8088
8089 \begin_layout Standard
8090
8091 \series bold
8092 Meneguzzo
8093 \end_layout
8094
8095 \end_inset
8096 </cell>
8097 <cell alignment="center" valignment="top" topline="true" usebox="none">
8098 \begin_inset Text
8099
8100 \begin_layout Standard
8101 Roberto
8102 \end_layout
8103
8104 \end_inset
8105 </cell>
8106 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8107 \begin_inset Text
8108
8109 \begin_layout Standard
8110 555
8111 \end_layout
8112
8113 \end_inset
8114 </cell>
8115 </row>
8116 <row bottomline="true">
8117 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8118 \begin_inset Text
8119
8120 \begin_layout Standard
8121
8122 \series bold
8123 Mezzadra
8124 \end_layout
8125
8126 \end_inset
8127 </cell>
8128 <cell alignment="center" valignment="top" topline="true" usebox="none">
8129 \begin_inset Text
8130
8131 \begin_layout Standard
8132 Roberto
8133 \end_layout
8134
8135 \end_inset
8136 </cell>
8137 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8138 \begin_inset Text
8139
8140 \begin_layout Standard
8141 555
8142 \end_layout
8143
8144 \end_inset
8145 </cell>
8146 </row>
8147 <row bottomline="true" endlastfoot="true">
8148 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8149 \begin_inset Text
8150
8151 \begin_layout Standard
8152
8153 \end_layout
8154
8155 \end_inset
8156 </cell>
8157 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8158 \begin_inset Text
8159
8160 \begin_layout Standard
8161
8162 \end_layout
8163
8164 \end_inset
8165 </cell>
8166 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8167 \begin_inset Text
8168
8169 \begin_layout Standard
8170
8171 \end_layout
8172
8173 \end_inset
8174 </cell>
8175 </row>
8176 </lyxtabular>
8177
8178 \end_inset
8179
8180
8181 \end_layout
8182
8183 \begin_layout Section
8184 Particularidades de las Tablas Largas
8185 \end_layout
8186
8187 \begin_layout Subsection
8188 Cálculos
8189 \begin_inset LatexCommand index
8190 name "Tablas Largas ! Cálculos"
8191
8192 \end_inset
8193
8194
8195 \end_layout
8196
8197 \begin_layout Standard
8198 LaTeX calcula la altura de las páginas con tabla y sus saltos de página
8199  utilizando los denominados 
8200 \begin_inset Quotes eld
8201 \end_inset
8202
8203 trozos
8204 \begin_inset Quotes erd
8205 \end_inset
8206
8207 , que son partes de la tabla presentes en la memoria de LaTeX.
8208  El valor predeterminado está establecido a solo 20 filas.
8209  Si estás usando tablas largas con muchas páginas, la generación del documento
8210  puede hacerse muy lenta.
8211  No hay problema en aumentar el tamaño de los trozos hasta 100-1000 añadiendo
8212  el siguiente comando en el preámbulo del documento:
8213 \end_layout
8214
8215 \begin_layout Standard
8216
8217 \series bold
8218
8219 \backslash
8220 setcounter{LTchunksize}{100}
8221 \end_layout
8222
8223 \begin_layout Subsection
8224 Flotantes y Tablas Largas
8225 \begin_inset LatexCommand index
8226 name "Tablas Largas ! Flotantes"
8227
8228 \end_inset
8229
8230
8231 \end_layout
8232
8233 \begin_layout Standard
8234 Podría haber problemas si un flotante aparece en la misma página donde comienza
8235  una tabla larga.
8236  Para evitarlo, añade el comando 
8237 \series bold
8238
8239 \backslash
8240 clearpage
8241 \series default
8242  como ERT antes de la tabla.
8243 \end_layout
8244
8245 \begin_layout Subsection
8246 Saltos de Página Forzados
8247 \begin_inset LatexCommand index
8248 name "Tablas Largas ! Saltos de Página Forzados"
8249
8250 \end_inset
8251
8252
8253 \end_layout
8254
8255 \begin_layout Standard
8256 Por defecto, las tablas solo se cortan entre filas.
8257  Si tienes una celda con líneas múltiples y necesitas un salto de página
8258  dentro de la celda, inserta el comando de nueva línea 
8259 \begin_inset Quotes eld
8260 \end_inset
8261
8262
8263 \series bold
8264
8265 \backslash
8266
8267 \backslash
8268
8269 \series default
8270
8271 \begin_inset Quotes erd
8272 \end_inset
8273
8274  como ERT en el punto en que quieras cortar.
8275  Antes del comando 
8276 \begin_inset Quotes eld
8277 \end_inset
8278
8279
8280 \series bold
8281
8282 \backslash
8283
8284 \backslash
8285
8286 \series default
8287
8288 \begin_inset Quotes erd
8289 \end_inset
8290
8291  debes insertar en ERT tantos caracteres 
8292 \begin_inset Quotes eld
8293 \end_inset
8294
8295
8296 \series bold
8297 &
8298 \series default
8299
8300 \begin_inset Quotes erd
8301 \end_inset
8302
8303  como columnas siguientes de la tabla.
8304  
8305 \series bold
8306 &
8307 \series default
8308  es el caracter para separar celdas.
8309  Escribe en ERT después de cada 
8310 \series bold
8311 &
8312 \series default
8313  el contenido de la celda siguiente correspondiente y borra el contenido
8314  de esas celdas.
8315 \newline
8316 Detrás del comando 
8317 \series bold
8318
8319 \backslash
8320
8321 \backslash
8322
8323 \series default
8324 , inserta tantos 
8325 \series bold
8326 &
8327 \series default
8328  como columnas haya delante de la actual.
8329  En la tabla\InsetSpace ~
8330
8331 \begin_inset LatexCommand ref
8332 reference "tab:Saltos de Página Forzados"
8333
8334 \end_inset
8335
8336  la celda que debería cortarse está en la segunda columna seguida de otra
8337  columna.
8338  Por eso el siguiente comando se inserta en la celda como ERT detrás de
8339  
8340 \begin_inset Quotes eld
8341 \end_inset
8342
8343
8344 \emph on
8345 Castelchiodato,
8346 \emph default
8347
8348 \begin_inset Quotes erd
8349 \end_inset
8350
8351 :
8352 \end_layout
8353
8354 \begin_layout Standard
8355
8356 \series bold
8357 & 111
8358 \backslash
8359
8360 \backslash
8361
8362 \newline
8363 &
8364 \end_layout
8365
8366 \begin_layout Standard
8367 El 
8368 \begin_inset Quotes eld
8369 \end_inset
8370
8371 111
8372 \begin_inset Quotes erd
8373 \end_inset
8374
8375  en la tercera columna de la fila se ha borrado.
8376  Si la fila más baja de la tabla larga no tiene, por alguna razón, línea
8377  superior pero quisieras una línea horizontal donde se corta la celda, usa
8378  este comando alternativo:
8379 \end_layout
8380
8381 \begin_layout Standard
8382
8383 \series bold
8384 & 111
8385 \backslash
8386
8387 \backslash
8388
8389 \newline
8390
8391 \backslash
8392 hline &
8393 \end_layout
8394
8395 \begin_layout Standard
8396 Cuando la celda a cortar está en la última columna, el comando
8397 \end_layout
8398
8399 \begin_layout Standard
8400
8401 \series bold
8402
8403 \backslash
8404 setlength{
8405 \backslash
8406 parf\SpecialChar \textcompwordmark{}
8407 illskip}{0pt}
8408 \end_layout
8409
8410 \begin_layout Standard
8411 debe insertarse como ERT al principio de la celda.
8412  Esto garantiza que la parte de la celda que será mostrada en la nueva página
8413  aparecerá con toda su anchura.
8414 \end_layout
8415
8416 \begin_layout Standard
8417 \align center
8418 \begin_inset Tabular
8419 <lyxtabular version="3" rows="39" columns="3">
8420 <features islongtable="true">
8421 <column alignment="left" valignment="top" leftline="true" width="0cm">
8422 <column alignment="left" valignment="top" rightline="true" width="3cm">
8423 <column alignment="right" valignment="top" rightline="true" width="0pt">
8424 <row endfirsthead="true">
8425 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8426 \begin_inset Text
8427
8428 \begin_layout Standard
8429 \begin_inset Caption
8430
8431 \begin_layout Standard
8432 Tabla con salto de página forzado en celda
8433 \begin_inset LatexCommand label
8434 name "tab:Saltos de Página Forzados"
8435
8436 \end_inset
8437
8438
8439 \begin_inset OptArg
8440 status collapsed
8441
8442 \begin_layout Standard
8443 Tabla con salto de página forzado en celda
8444 \end_layout
8445
8446 \end_inset
8447
8448
8449 \end_layout
8450
8451 \end_inset
8452
8453
8454 \begin_inset ERT
8455 status collapsed
8456
8457 \begin_layout Standard
8458
8459
8460 \backslash
8461
8462 \backslash
8463 %
8464 \end_layout
8465
8466 \end_inset
8467
8468
8469 \end_layout
8470
8471 \end_inset
8472 </cell>
8473 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8474 \begin_inset Text
8475
8476 \begin_layout Standard
8477
8478 \end_layout
8479
8480 \end_inset
8481 </cell>
8482 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8483 \begin_inset Text
8484
8485 \begin_layout Standard
8486
8487 \end_layout
8488
8489 \end_inset
8490 </cell>
8491 </row>
8492 <row topline="true" bottomline="true" endfirsthead="true">
8493 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8494 \begin_inset Text
8495
8496 \begin_layout Standard
8497
8498 \series bold
8499 Ejemplo de lista telefónica (ignore los nombres)
8500 \end_layout
8501
8502 \end_inset
8503 </cell>
8504 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8505 \begin_inset Text
8506
8507 \begin_layout Standard
8508
8509 \end_layout
8510
8511 \end_inset
8512 </cell>
8513 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8514 \begin_inset Text
8515
8516 \begin_layout Standard
8517
8518 \end_layout
8519
8520 \end_inset
8521 </cell>
8522 </row>
8523 <row topline="true" bottomline="true" endfirsthead="true">
8524 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8525 \begin_inset Text
8526
8527 \begin_layout Standard
8528
8529 \series bold
8530 NOMBRE
8531 \end_layout
8532
8533 \end_inset
8534 </cell>
8535 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8536 \begin_inset Text
8537
8538 \begin_layout Standard
8539
8540 \end_layout
8541
8542 \end_inset
8543 </cell>
8544 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8545 \begin_inset Text
8546
8547 \begin_layout Standard
8548
8549 \series bold
8550 TEL.
8551 \end_layout
8552
8553 \end_inset
8554 </cell>
8555 </row>
8556 <row bottomline="true" endhead="true">
8557 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8558 \begin_inset Text
8559
8560 \begin_layout Standard
8561 \begin_inset ERT
8562 status collapsed
8563
8564 \begin_layout Standard
8565
8566
8567 \backslash
8568 caption*{Continúa tabla con salto de página forzado en celda}
8569 \backslash
8570
8571 \backslash
8572 %
8573 \end_layout
8574
8575 \end_inset
8576
8577
8578 \end_layout
8579
8580 \end_inset
8581 </cell>
8582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8583 \begin_inset Text
8584
8585 \begin_layout Standard
8586
8587 \end_layout
8588
8589 \end_inset
8590 </cell>
8591 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8592 \begin_inset Text
8593
8594 \begin_layout Standard
8595
8596 \end_layout
8597
8598 \end_inset
8599 </cell>
8600 </row>
8601 <row topline="true" bottomline="true" endhead="true">
8602 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8603 \begin_inset Text
8604
8605 \begin_layout Standard
8606  
8607 \series bold
8608 Ejemplo de lista telefónica
8609 \end_layout
8610
8611 \end_inset
8612 </cell>
8613 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8614 \begin_inset Text
8615
8616 \begin_layout Standard
8617
8618 \end_layout
8619
8620 \end_inset
8621 </cell>
8622 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8623 \begin_inset Text
8624
8625 \begin_layout Standard
8626
8627 \end_layout
8628
8629 \end_inset
8630 </cell>
8631 </row>
8632 <row topline="true" bottomline="true" endhead="true">
8633 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8634 \begin_inset Text
8635
8636 \begin_layout Standard
8637
8638 \series bold
8639 NOMBRE
8640 \end_layout
8641
8642 \end_inset
8643 </cell>
8644 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8645 \begin_inset Text
8646
8647 \begin_layout Standard
8648
8649 \end_layout
8650
8651 \end_inset
8652 </cell>
8653 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8654 \begin_inset Text
8655
8656 \begin_layout Standard
8657
8658 \series bold
8659 TEL.
8660 \end_layout
8661
8662 \end_inset
8663 </cell>
8664 </row>
8665 <row topline="true" bottomline="true" endfoot="true">
8666 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8667 \begin_inset Text
8668
8669 \begin_layout Standard
8670 continúa en página siguiente
8671 \end_layout
8672
8673 \end_inset
8674 </cell>
8675 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8676 \begin_inset Text
8677
8678 \begin_layout Standard
8679
8680 \end_layout
8681
8682 \end_inset
8683 </cell>
8684 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8685 \begin_inset Text
8686
8687 \begin_layout Standard
8688
8689 \end_layout
8690
8691 \end_inset
8692 </cell>
8693 </row>
8694 <row>
8695 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8696 \begin_inset Text
8697
8698 \begin_layout Standard
8699
8700 \series bold
8701 Annovi
8702 \end_layout
8703
8704 \end_inset
8705 </cell>
8706 <cell alignment="center" valignment="top" topline="true" usebox="none">
8707 \begin_inset Text
8708
8709 \begin_layout Standard
8710 Silvia
8711 \end_layout
8712
8713 \end_inset
8714 </cell>
8715 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8716 \begin_inset Text
8717
8718 \begin_layout Standard
8719 111
8720 \end_layout
8721
8722 \end_inset
8723 </cell>
8724 </row>
8725 <row>
8726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8727 \begin_inset Text
8728
8729 \begin_layout Standard
8730
8731 \series bold
8732 Bertoli
8733 \end_layout
8734
8735 \end_inset
8736 </cell>
8737 <cell alignment="center" valignment="top" topline="true" usebox="none">
8738 \begin_inset Text
8739
8740 \begin_layout Standard
8741 Stefano
8742 \end_layout
8743
8744 \end_inset
8745 </cell>
8746 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8747 \begin_inset Text
8748
8749 \begin_layout Standard
8750 111
8751 \end_layout
8752
8753 \end_inset
8754 </cell>
8755 </row>
8756 <row>
8757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8758 \begin_inset Text
8759
8760 \begin_layout Standard
8761
8762 \series bold
8763 Bozzi
8764 \end_layout
8765
8766 \end_inset
8767 </cell>
8768 <cell alignment="center" valignment="top" topline="true" usebox="none">
8769 \begin_inset Text
8770
8771 \begin_layout Standard
8772 Walter
8773 \end_layout
8774
8775 \end_inset
8776 </cell>
8777 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8778 \begin_inset Text
8779
8780 \begin_layout Standard
8781 111
8782 \end_layout
8783
8784 \end_inset
8785 </cell>
8786 </row>
8787 <row>
8788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8789 \begin_inset Text
8790
8791 \begin_layout Standard
8792
8793 \series bold
8794 Cachia
8795 \end_layout
8796
8797 \end_inset
8798 </cell>
8799 <cell alignment="center" valignment="top" topline="true" usebox="none">
8800 \begin_inset Text
8801
8802 \begin_layout Standard
8803 Maria
8804 \end_layout
8805
8806 \end_inset
8807 </cell>
8808 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8809 \begin_inset Text
8810
8811 \begin_layout Standard
8812 111
8813 \end_layout
8814
8815 \end_inset
8816 </cell>
8817 </row>
8818 <row>
8819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8820 \begin_inset Text
8821
8822 \begin_layout Standard
8823
8824 \series bold
8825 Cachia
8826 \end_layout
8827
8828 \end_inset
8829 </cell>
8830 <cell alignment="center" valignment="top" topline="true" usebox="none">
8831 \begin_inset Text
8832
8833 \begin_layout Standard
8834 Maurizio
8835 \end_layout
8836
8837 \end_inset
8838 </cell>
8839 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8840 \begin_inset Text
8841
8842 \begin_layout Standard
8843 111
8844 \end_layout
8845
8846 \end_inset
8847 </cell>
8848 </row>
8849 <row>
8850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8851 \begin_inset Text
8852
8853 \begin_layout Standard
8854
8855 \series bold
8856 Cinquemani
8857 \end_layout
8858
8859 \end_inset
8860 </cell>
8861 <cell alignment="center" valignment="top" topline="true" usebox="none">
8862 \begin_inset Text
8863
8864 \begin_layout Standard
8865 Giusi
8866 \end_layout
8867
8868 \end_inset
8869 </cell>
8870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8871 \begin_inset Text
8872
8873 \begin_layout Standard
8874 111
8875 \end_layout
8876
8877 \end_inset
8878 </cell>
8879 </row>
8880 <row>
8881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8882 \begin_inset Text
8883
8884 \begin_layout Standard
8885
8886 \series bold
8887 Colin
8888 \end_layout
8889
8890 \end_inset
8891 </cell>
8892 <cell alignment="center" valignment="top" topline="true" usebox="none">
8893 \begin_inset Text
8894
8895 \begin_layout Standard
8896 Bernard
8897 \end_layout
8898
8899 \end_inset
8900 </cell>
8901 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8902 \begin_inset Text
8903
8904 \begin_layout Standard
8905 111
8906 \end_layout
8907
8908 \end_inset
8909 </cell>
8910 </row>
8911 <row>
8912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8913 \begin_inset Text
8914
8915 \begin_layout Standard
8916
8917 \series bold
8918 Concli
8919 \end_layout
8920
8921 \end_inset
8922 </cell>
8923 <cell alignment="center" valignment="top" topline="true" usebox="none">
8924 \begin_inset Text
8925
8926 \begin_layout Standard
8927 Gianfranco
8928 \end_layout
8929
8930 \end_inset
8931 </cell>
8932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8933 \begin_inset Text
8934
8935 \begin_layout Standard
8936 111
8937 \end_layout
8938
8939 \end_inset
8940 </cell>
8941 </row>
8942 <row>
8943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8944 \begin_inset Text
8945
8946 \begin_layout Standard
8947
8948 \series bold
8949 Dal Bosco
8950 \end_layout
8951
8952 \end_inset
8953 </cell>
8954 <cell alignment="center" valignment="top" topline="true" usebox="none">
8955 \begin_inset Text
8956
8957 \begin_layout Standard
8958 Carolina
8959 \end_layout
8960
8961 \end_inset
8962 </cell>
8963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8964 \begin_inset Text
8965
8966 \begin_layout Standard
8967 111
8968 \end_layout
8969
8970 \end_inset
8971 </cell>
8972 </row>
8973 <row>
8974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8975 \begin_inset Text
8976
8977 \begin_layout Standard
8978
8979 \series bold
8980 Dalpiaz
8981 \end_layout
8982
8983 \end_inset
8984 </cell>
8985 <cell alignment="center" valignment="top" topline="true" usebox="none">
8986 \begin_inset Text
8987
8988 \begin_layout Standard
8989 Annamaria
8990 \end_layout
8991
8992 \end_inset
8993 </cell>
8994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8995 \begin_inset Text
8996
8997 \begin_layout Standard
8998 111
8999 \end_layout
9000
9001 \end_inset
9002 </cell>
9003 </row>
9004 <row>
9005 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9006 \begin_inset Text
9007
9008 \begin_layout Standard
9009
9010 \series bold
9011 Feliciello
9012 \end_layout
9013
9014 \end_inset
9015 </cell>
9016 <cell alignment="center" valignment="top" topline="true" usebox="none">
9017 \begin_inset Text
9018
9019 \begin_layout Standard
9020 Domenico
9021 \end_layout
9022
9023 \end_inset
9024 </cell>
9025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9026 \begin_inset Text
9027
9028 \begin_layout Standard
9029 111
9030 \end_layout
9031
9032 \end_inset
9033 </cell>
9034 </row>
9035 <row>
9036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9037 \begin_inset Text
9038
9039 \begin_layout Standard
9040
9041 \series bold
9042 Focarelli
9043 \end_layout
9044
9045 \end_inset
9046 </cell>
9047 <cell alignment="center" valignment="top" topline="true" usebox="none">
9048 \begin_inset Text
9049
9050 \begin_layout Standard
9051 Paola
9052 \end_layout
9053
9054 \end_inset
9055 </cell>
9056 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9057 \begin_inset Text
9058
9059 \begin_layout Standard
9060 111
9061 \end_layout
9062
9063 \end_inset
9064 </cell>
9065 </row>
9066 <row>
9067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9068 \begin_inset Text
9069
9070 \begin_layout Standard
9071
9072 \series bold
9073 Galletti
9074 \end_layout
9075
9076 \end_inset
9077 </cell>
9078 <cell alignment="center" valignment="top" topline="true" usebox="none">
9079 \begin_inset Text
9080
9081 \begin_layout Standard
9082 Oreste
9083 \end_layout
9084
9085 \end_inset
9086 </cell>
9087 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9088 \begin_inset Text
9089
9090 \begin_layout Standard
9091 111
9092 \end_layout
9093
9094 \end_inset
9095 </cell>
9096 </row>
9097 <row>
9098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9099 \begin_inset Text
9100
9101 \begin_layout Standard
9102
9103 \series bold
9104 Gasparini
9105 \end_layout
9106
9107 \end_inset
9108 </cell>
9109 <cell alignment="center" valignment="top" topline="true" usebox="none">
9110 \begin_inset Text
9111
9112 \begin_layout Standard
9113 Franca
9114 \end_layout
9115
9116 \end_inset
9117 </cell>
9118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9119 \begin_inset Text
9120
9121 \begin_layout Standard
9122 111
9123 \end_layout
9124
9125 \end_inset
9126 </cell>
9127 </row>
9128 <row>
9129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9130 \begin_inset Text
9131
9132 \begin_layout Standard
9133
9134 \series bold
9135 Lassini
9136 \end_layout
9137
9138 \end_inset
9139 </cell>
9140 <cell alignment="center" valignment="top" topline="true" usebox="none">
9141 \begin_inset Text
9142
9143 \begin_layout Standard
9144 Giancarlo
9145 \end_layout
9146
9147 \end_inset
9148 </cell>
9149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9150 \begin_inset Text
9151
9152 \begin_layout Standard
9153 111
9154 \end_layout
9155
9156 \end_inset
9157 </cell>
9158 </row>
9159 <row>
9160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9161 \begin_inset Text
9162
9163 \begin_layout Standard
9164
9165 \series bold
9166 Malfatti
9167 \end_layout
9168
9169 \end_inset
9170 </cell>
9171 <cell alignment="center" valignment="top" topline="true" usebox="none">
9172 \begin_inset Text
9173
9174 \begin_layout Standard
9175 Luciano
9176 \end_layout
9177
9178 \end_inset
9179 </cell>
9180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9181 \begin_inset Text
9182
9183 \begin_layout Standard
9184 111
9185 \end_layout
9186
9187 \end_inset
9188 </cell>
9189 </row>
9190 <row>
9191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9192 \begin_inset Text
9193
9194 \begin_layout Standard
9195
9196 \series bold
9197 Malfatti
9198 \end_layout
9199
9200 \end_inset
9201 </cell>
9202 <cell alignment="center" valignment="top" topline="true" usebox="none">
9203 \begin_inset Text
9204
9205 \begin_layout Standard
9206 Valeriano
9207 \end_layout
9208
9209 \end_inset
9210 </cell>
9211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9212 \begin_inset Text
9213
9214 \begin_layout Standard
9215 111
9216 \end_layout
9217
9218 \end_inset
9219 </cell>
9220 </row>
9221 <row>
9222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9223 \begin_inset Text
9224
9225 \begin_layout Standard
9226
9227 \series bold
9228 Meneguzzo
9229 \end_layout
9230
9231 \end_inset
9232 </cell>
9233 <cell alignment="center" valignment="top" topline="true" usebox="none">
9234 \begin_inset Text
9235
9236 \begin_layout Standard
9237 Roberto
9238 \end_layout
9239
9240 \end_inset
9241 </cell>
9242 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9243 \begin_inset Text
9244
9245 \begin_layout Standard
9246 111
9247 \end_layout
9248
9249 \end_inset
9250 </cell>
9251 </row>
9252 <row>
9253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9254 \begin_inset Text
9255
9256 \begin_layout Standard
9257
9258 \series bold
9259 Mezzadra
9260 \end_layout
9261
9262 \end_inset
9263 </cell>
9264 <cell alignment="center" valignment="top" topline="true" usebox="none">
9265 \begin_inset Text
9266
9267 \begin_layout Standard
9268 Roberto
9269 \end_layout
9270
9271 \end_inset
9272 </cell>
9273 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9274 \begin_inset Text
9275
9276 \begin_layout Standard
9277 111
9278 \end_layout
9279
9280 \end_inset
9281 </cell>
9282 </row>
9283 <row>
9284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9285 \begin_inset Text
9286
9287 \begin_layout Standard
9288
9289 \series bold
9290 Pirpamer
9291 \end_layout
9292
9293 \end_inset
9294 </cell>
9295 <cell alignment="center" valignment="top" topline="true" usebox="none">
9296 \begin_inset Text
9297
9298 \begin_layout Standard
9299 Erich
9300 \end_layout
9301
9302 \end_inset
9303 </cell>
9304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9305 \begin_inset Text
9306
9307 \begin_layout Standard
9308 111
9309 \end_layout
9310
9311 \end_inset
9312 </cell>
9313 </row>
9314 <row>
9315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9316 \begin_inset Text
9317
9318 \begin_layout Standard
9319
9320 \series bold
9321 Pochiesa
9322 \end_layout
9323
9324 \end_inset
9325 </cell>
9326 <cell alignment="center" valignment="top" topline="true" usebox="none">
9327 \begin_inset Text
9328
9329 \begin_layout Standard
9330 Paolo
9331 \end_layout
9332
9333 \end_inset
9334 </cell>
9335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9336 \begin_inset Text
9337
9338 \begin_layout Standard
9339 111, 222
9340 \end_layout
9341
9342 \end_inset
9343 </cell>
9344 </row>
9345 <row>
9346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9347 \begin_inset Text
9348
9349 \begin_layout Standard
9350
9351 \series bold
9352 Radina
9353 \end_layout
9354
9355 \end_inset
9356 </cell>
9357 <cell alignment="center" valignment="top" topline="true" usebox="none">
9358 \begin_inset Text
9359
9360 \begin_layout Standard
9361 Claudio
9362 \end_layout
9363
9364 \end_inset
9365 </cell>
9366 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9367 \begin_inset Text
9368
9369 \begin_layout Standard
9370 111
9371 \end_layout
9372
9373 \end_inset
9374 </cell>
9375 </row>
9376 <row>
9377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9378 \begin_inset Text
9379
9380 \begin_layout Standard
9381
9382 \series bold
9383 Rizzardi
9384 \end_layout
9385
9386 \end_inset
9387 </cell>
9388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9389 \begin_inset Text
9390
9391 \begin_layout Standard
9392 Paolo, 11.
9393  Fürst von Montecompatri, 11.
9394  Fürst von Sulmona und Vivaro, 10.
9395  Fürst von Rossano, 5.
9396  Herzog von Canemorte, 11.
9397  Herzog von Palombara, 5.
9398  Herzog von Castelchiodato,
9399 \begin_inset ERT
9400 status collapsed
9401
9402 \begin_layout Standard
9403
9404 & 111
9405 \backslash
9406
9407 \backslash
9408
9409 \end_layout
9410
9411 \begin_layout Standard
9412
9413 &
9414 \end_layout
9415
9416 \end_inset
9417
9418  11.
9419  Herzog von Poggionativo, 11.
9420  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9421  Graf von Valinfreda, 11.
9422  Baron von Cropalati, 11.
9423  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9424 \end_layout
9425
9426 \end_inset
9427 </cell>
9428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9429 \begin_inset Text
9430
9431 \begin_layout Standard
9432
9433 \end_layout
9434
9435 \end_inset
9436 </cell>
9437 </row>
9438 <row>
9439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9440 \begin_inset Text
9441
9442 \begin_layout Standard
9443
9444 \series bold
9445 Stuffer
9446 \end_layout
9447
9448 \end_inset
9449 </cell>
9450 <cell alignment="center" valignment="top" topline="true" usebox="none">
9451 \begin_inset Text
9452
9453 \begin_layout Standard
9454 Oskar
9455 \end_layout
9456
9457 \end_inset
9458 </cell>
9459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9460 \begin_inset Text
9461
9462 \begin_layout Standard
9463 111
9464 \end_layout
9465
9466 \end_inset
9467 </cell>
9468 </row>
9469 <row>
9470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9471 \begin_inset Text
9472
9473 \begin_layout Standard
9474
9475 \series bold
9476 Tacchelli
9477 \end_layout
9478
9479 \end_inset
9480 </cell>
9481 <cell alignment="center" valignment="top" topline="true" usebox="none">
9482 \begin_inset Text
9483
9484 \begin_layout Standard
9485 Ugo
9486 \end_layout
9487
9488 \end_inset
9489 </cell>
9490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9491 \begin_inset Text
9492
9493 \begin_layout Standard
9494 111
9495 \end_layout
9496
9497 \end_inset
9498 </cell>
9499 </row>
9500 <row>
9501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9502 \begin_inset Text
9503
9504 \begin_layout Standard
9505
9506 \series bold
9507 Tezzele
9508 \end_layout
9509
9510 \end_inset
9511 </cell>
9512 <cell alignment="center" valignment="top" topline="true" usebox="none">
9513 \begin_inset Text
9514
9515 \begin_layout Standard
9516 Margit
9517 \end_layout
9518
9519 \end_inset
9520 </cell>
9521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9522 \begin_inset Text
9523
9524 \begin_layout Standard
9525 111
9526 \end_layout
9527
9528 \end_inset
9529 </cell>
9530 </row>
9531 <row>
9532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9533 \begin_inset Text
9534
9535 \begin_layout Standard
9536
9537 \series bold
9538 Unterkalmsteiner
9539 \end_layout
9540
9541 \end_inset
9542 </cell>
9543 <cell alignment="center" valignment="top" topline="true" usebox="none">
9544 \begin_inset Text
9545
9546 \begin_layout Standard
9547 Frieda
9548 \end_layout
9549
9550 \end_inset
9551 </cell>
9552 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9553 \begin_inset Text
9554
9555 \begin_layout Standard
9556 111
9557 \end_layout
9558
9559 \end_inset
9560 </cell>
9561 </row>
9562 <row>
9563 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9564 \begin_inset Text
9565
9566 \begin_layout Standard
9567
9568 \series bold
9569 Vieider
9570 \end_layout
9571
9572 \end_inset
9573 </cell>
9574 <cell alignment="center" valignment="top" topline="true" usebox="none">
9575 \begin_inset Text
9576
9577 \begin_layout Standard
9578 Hilde
9579 \end_layout
9580
9581 \end_inset
9582 </cell>
9583 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9584 \begin_inset Text
9585
9586 \begin_layout Standard
9587 111
9588 \end_layout
9589
9590 \end_inset
9591 </cell>
9592 </row>
9593 <row>
9594 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9595 \begin_inset Text
9596
9597 \begin_layout Standard
9598
9599 \series bold
9600 Vigna
9601 \end_layout
9602
9603 \end_inset
9604 </cell>
9605 <cell alignment="center" valignment="top" topline="true" usebox="none">
9606 \begin_inset Text
9607
9608 \begin_layout Standard
9609 Jürgen
9610 \end_layout
9611
9612 \end_inset
9613 </cell>
9614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9615 \begin_inset Text
9616
9617 \begin_layout Standard
9618 111
9619 \end_layout
9620
9621 \end_inset
9622 </cell>
9623 </row>
9624 <row>
9625 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9626 \begin_inset Text
9627
9628 \begin_layout Standard
9629
9630 \series bold
9631 Weber
9632 \end_layout
9633
9634 \end_inset
9635 </cell>
9636 <cell alignment="center" valignment="top" topline="true" usebox="none">
9637 \begin_inset Text
9638
9639 \begin_layout Standard
9640 Maurizio
9641 \end_layout
9642
9643 \end_inset
9644 </cell>
9645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9646 \begin_inset Text
9647
9648 \begin_layout Standard
9649 111
9650 \end_layout
9651
9652 \end_inset
9653 </cell>
9654 </row>
9655 <row bottomline="true">
9656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9657 \begin_inset Text
9658
9659 \begin_layout Standard
9660
9661 \series bold
9662 Winkler
9663 \end_layout
9664
9665 \end_inset
9666 </cell>
9667 <cell alignment="center" valignment="top" topline="true" usebox="none">
9668 \begin_inset Text
9669
9670 \begin_layout Standard
9671 Franz
9672 \end_layout
9673
9674 \end_inset
9675 </cell>
9676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9677 \begin_inset Text
9678
9679 \begin_layout Standard
9680 111
9681 \end_layout
9682
9683 \end_inset
9684 </cell>
9685 </row>
9686 <row endlastfoot="true">
9687 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9688 \begin_inset Text
9689
9690 \begin_layout Standard
9691
9692 \end_layout
9693
9694 \end_inset
9695 </cell>
9696 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9697 \begin_inset Text
9698
9699 \begin_layout Standard
9700
9701 \end_layout
9702
9703 \end_inset
9704 </cell>
9705 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9706 \begin_inset Text
9707
9708 \begin_layout Standard
9709
9710 \end_layout
9711
9712 \end_inset
9713 </cell>
9714 </row>
9715 </lyxtabular>
9716
9717 \end_inset
9718
9719
9720 \end_layout
9721
9722 \begin_layout Section
9723 Líneas Múltiples en Columnas y Filas
9724 \end_layout
9725
9726 \begin_layout Subsection
9727 Líneas Múltiples en Celdas
9728 \begin_inset LatexCommand label
9729 name "sub:Líneas-Múltiples-en"
9730
9731 \end_inset
9732
9733
9734 \begin_inset LatexCommand index
9735 name "Líneas Múltiples en Celdas"
9736
9737 \end_inset
9738
9739
9740 \begin_inset LatexCommand index
9741 name "Tablas ! Saltos de Línea"
9742
9743 \end_inset
9744
9745
9746 \end_layout
9747
9748 \begin_layout Standard
9749 \align center
9750 \begin_inset Float table
9751 placement H
9752 wide false
9753 sideways false
9754 status open
9755
9756 \begin_layout Standard
9757 \begin_inset Caption
9758
9759 \begin_layout Standard
9760 \begin_inset LatexCommand label
9761 name "tab:Tabla-con-múltiples"
9762
9763 \end_inset
9764
9765 Tabla con líneas múltiples en celda
9766 \end_layout
9767
9768 \end_inset
9769
9770
9771 \end_layout
9772
9773 \begin_layout Standard
9774 \align center
9775 \begin_inset Tabular
9776 <lyxtabular version="3" rows="3" columns="3">
9777 <features>
9778 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9779 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9780 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9781 <row topline="true">
9782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9783 \begin_inset Text
9784
9785 \begin_layout Standard
9786 líneas
9787 \begin_inset ERT
9788 status collapsed
9789
9790 \begin_layout Standard
9791
9792
9793 \backslash
9794 linebreak 
9795 \end_layout
9796
9797 \end_inset
9798
9799 múltiples
9800 \end_layout
9801
9802 \end_inset
9803 </cell>
9804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9805 \begin_inset Text
9806
9807 \begin_layout Standard
9808 b
9809 \end_layout
9810
9811 \end_inset
9812 </cell>
9813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9814 \begin_inset Text
9815
9816 \begin_layout Standard
9817 c
9818 \end_layout
9819
9820 \end_inset
9821 </cell>
9822 </row>
9823 <row topline="true">
9824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9825 \begin_inset Text
9826
9827 \begin_layout Standard
9828 d
9829 \end_layout
9830
9831 \end_inset
9832 </cell>
9833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9834 \begin_inset Text
9835
9836 \begin_layout Standard
9837 e
9838 \end_layout
9839
9840 \end_inset
9841 </cell>
9842 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9843 \begin_inset Text
9844
9845 \begin_layout Standard
9846 f
9847 \end_layout
9848
9849 \end_inset
9850 </cell>
9851 </row>
9852 <row topline="true" bottomline="true">
9853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9854 \begin_inset Text
9855
9856 \begin_layout Standard
9857 g
9858 \end_layout
9859
9860 \end_inset
9861 </cell>
9862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9863 \begin_inset Text
9864
9865 \begin_layout Standard
9866 h
9867 \end_layout
9868
9869 \end_inset
9870 </cell>
9871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9872 \begin_inset Text
9873
9874 \begin_layout Standard
9875 i
9876 \end_layout
9877
9878 \end_inset
9879 </cell>
9880 </row>
9881 </lyxtabular>
9882
9883 \end_inset
9884
9885
9886 \end_layout
9887
9888 \end_inset
9889
9890
9891 \end_layout
9892
9893 \begin_layout Standard
9894 Al ajustar anchura fija en una columna se habilita la entrada de texto como
9895  párrafos con varias líneas y guionado.
9896 \end_layout
9897
9898 \begin_layout Standard
9899 Para generar la tabla\InsetSpace ~
9900
9901 \begin_inset LatexCommand ref
9902 reference "tab:Tabla-con-múltiples"
9903
9904 \end_inset
9905
9906 , crea una tabla 3×3, marca la primera celda y clic-derecha sobre ella.
9907  En el diálogo que surge establece una anchura de 2.5\InsetSpace \thinspace{}
9908 cm y escoge centro en
9909  alineación vertical y horizontal.
9910  Como nuestro texto es menor de 2.5\InsetSpace \thinspace{}
9911 cm, sólo aparece una línea.
9912  Para poner dos añadimos un salto de línea con el comando en ERT
9913 \end_layout
9914
9915 \begin_layout Standard
9916
9917 \series bold
9918
9919 \backslash
9920 linebreak
9921 \end_layout
9922
9923 \begin_layout Standard
9924 Si el texto es más ancho que la celda será automáticamente dividido en líneas.
9925 \end_layout
9926
9927 \begin_layout Standard
9928 Para centrar verticalmente el texto en las otras dos celdas de la primera
9929  fila, haz clic-derecha en la segunda celda, ajusta una anchura de 0.5\InsetSpace \thinspace{}
9930 cm
9931  y marca alineaciones centrales.
9932  Haz lo mismo con la tercera celda de la fila.
9933 \end_layout
9934
9935 \begin_layout Standard
9936 Si hay una palabra larga en una celda con anchura fija, LaTeX no puede cortarla
9937  con guión si es la primera entrada.
9938  Por eso hay que insertar algo para que dicha palabra no sea la primera
9939  entrada: añade el comando
9940 \end_layout
9941
9942 \begin_layout Standard
9943
9944 \series bold
9945
9946 \backslash
9947 hspace{0pt}
9948 \end_layout
9949
9950 \begin_layout Standard
9951 en ERT antes de la palabra.
9952  Como el espacio es 0 la salida no cambia.
9953  La tabla\InsetSpace ~
9954
9955 \begin_inset LatexCommand ref
9956 reference "tab:Tabla-con-y"
9957
9958 \end_inset
9959
9960  muestra el efecto.
9961 \end_layout
9962
9963 \begin_layout Standard
9964 \begin_inset Float table
9965 placement b
9966 wide false
9967 sideways false
9968 status open
9969
9970 \begin_layout Standard
9971 \begin_inset Caption
9972
9973 \begin_layout Standard
9974 \begin_inset LatexCommand label
9975 name "tab:Tabla-con-y"
9976
9977 \end_inset
9978
9979 Tablas con y sin guión
9980 \end_layout
9981
9982 \end_inset
9983
9984
9985 \end_layout
9986
9987 \begin_layout Standard
9988
9989 \hfill
9990
9991 \begin_inset Tabular
9992 <lyxtabular version="3" rows="3" columns="3">
9993 <features>
9994 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9995 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9996 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9997 <row topline="true">
9998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9999 \begin_inset Text
10000
10001 \begin_layout Standard
10002 celdaconpalabramuylarga
10003 \end_layout
10004
10005 \end_inset
10006 </cell>
10007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10008 \begin_inset Text
10009
10010 \begin_layout Standard
10011 b
10012 \end_layout
10013
10014 \end_inset
10015 </cell>
10016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10017 \begin_inset Text
10018
10019 \begin_layout Standard
10020 c
10021 \end_layout
10022
10023 \end_inset
10024 </cell>
10025 </row>
10026 <row topline="true">
10027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10028 \begin_inset Text
10029
10030 \begin_layout Standard
10031 d
10032 \end_layout
10033
10034 \end_inset
10035 </cell>
10036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10037 \begin_inset Text
10038
10039 \begin_layout Standard
10040 e
10041 \end_layout
10042
10043 \end_inset
10044 </cell>
10045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10046 \begin_inset Text
10047
10048 \begin_layout Standard
10049 f
10050 \end_layout
10051
10052 \end_inset
10053 </cell>
10054 </row>
10055 <row topline="true" bottomline="true">
10056 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10057 \begin_inset Text
10058
10059 \begin_layout Standard
10060 g
10061 \end_layout
10062
10063 \end_inset
10064 </cell>
10065 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10066 \begin_inset Text
10067
10068 \begin_layout Standard
10069 h
10070 \end_layout
10071
10072 \end_inset
10073 </cell>
10074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10075 \begin_inset Text
10076
10077 \begin_layout Standard
10078 i
10079 \end_layout
10080
10081 \end_inset
10082 </cell>
10083 </row>
10084 </lyxtabular>
10085
10086 \end_inset
10087
10088
10089 \hfill
10090
10091 \begin_inset Tabular
10092 <lyxtabular version="3" rows="3" columns="3">
10093 <features>
10094 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10095 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10096 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10097 <row topline="true">
10098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10099 \begin_inset Text
10100
10101 \begin_layout Standard
10102 \begin_inset ERT
10103 status collapsed
10104
10105 \begin_layout Standard
10106
10107
10108 \backslash
10109 hspace{0pt}
10110 \end_layout
10111
10112 \end_inset
10113
10114 celdaconpalabramuylarga
10115 \end_layout
10116
10117 \end_inset
10118 </cell>
10119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10120 \begin_inset Text
10121
10122 \begin_layout Standard
10123 b
10124 \end_layout
10125
10126 \end_inset
10127 </cell>
10128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10129 \begin_inset Text
10130
10131 \begin_layout Standard
10132 c
10133 \end_layout
10134
10135 \end_inset
10136 </cell>
10137 </row>
10138 <row topline="true">
10139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10140 \begin_inset Text
10141
10142 \begin_layout Standard
10143 d
10144 \end_layout
10145
10146 \end_inset
10147 </cell>
10148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10149 \begin_inset Text
10150
10151 \begin_layout Standard
10152 e
10153 \end_layout
10154
10155 \end_inset
10156 </cell>
10157 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10158 \begin_inset Text
10159
10160 \begin_layout Standard
10161 f
10162 \end_layout
10163
10164 \end_inset
10165 </cell>
10166 </row>
10167 <row topline="true" bottomline="true">
10168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10169 \begin_inset Text
10170
10171 \begin_layout Standard
10172 g
10173 \end_layout
10174
10175 \end_inset
10176 </cell>
10177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10178 \begin_inset Text
10179
10180 \begin_layout Standard
10181 h
10182 \end_layout
10183
10184 \end_inset
10185 </cell>
10186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10187 \begin_inset Text
10188
10189 \begin_layout Standard
10190 i
10191 \end_layout
10192
10193 \end_inset
10194 </cell>
10195 </row>
10196 </lyxtabular>
10197
10198 \end_inset
10199
10200
10201 \hfill
10202
10203 \end_layout
10204
10205 \end_inset
10206
10207
10208 \end_layout
10209
10210 \begin_layout Standard
10211
10212 \end_layout
10213
10214 \begin_layout Subsection
10215 Multicolumnas
10216 \begin_inset LatexCommand label
10217 name "sub:Multicolumnas"
10218
10219 \end_inset
10220
10221
10222 \begin_inset LatexCommand index
10223 name "Multicolumnas"
10224
10225 \end_inset
10226
10227
10228 \begin_inset LatexCommand index
10229 name "Tablas ! Multicolumnas"
10230
10231 \end_inset
10232
10233
10234 \end_layout
10235
10236 \begin_layout Subsubsection
10237 Fundamentos de Multicolumna
10238 \end_layout
10239
10240 \begin_layout Standard
10241 Para extender una celda sobre varias columnas, se marcan las celdas que
10242  se desee combinar y se usa el botón 
10243 \begin_inset Graphics
10244         filename ../../images/tabular-feature_multicolumn.xpm
10245         scale 85
10246
10247 \end_inset
10248
10249 , el menú 
10250 \family sans
10251 Editar\SpecialChar \menuseparator
10252 Tabla\SpecialChar \menuseparator
10253 Multicolumna
10254 \family default
10255 , o clic-derecha sobre las celdas marcadas y se selecciona en el diálogo,
10256  bajo la solapa 
10257 \family sans
10258 Configuración
10259 \family default
10260 , la casilla Multicolumna.
10261 \end_layout
10262
10263 \begin_layout Standard
10264 Las multicolumnas tienen su propia configuración de celdas.
10265  Esto es, los cambios de bordes, alineación y anchura sólo afectan a la
10266  multicolumna.
10267  Aquí hay un ejemplo de tabla con una multicolumna en la primera fila y
10268  otra en la última fila sin borde superior:
10269 \end_layout
10270
10271 \begin_layout Standard
10272 \align center
10273 \begin_inset Tabular
10274 <lyxtabular version="3" rows="3" columns="4">
10275 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10276 <column alignment="center" valignment="top" leftline="true" width="0pt">
10277 <column alignment="center" valignment="middle" leftline="true" width="0">
10278 <column alignment="center" valignment="top" leftline="true" width="0in">
10279 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10280 <row topline="true" bottomline="true">
10281 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10282 \begin_inset Text
10283
10284 \begin_layout Standard
10285 abc
10286 \end_layout
10287
10288 \end_inset
10289 </cell>
10290 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10291 \begin_inset Text
10292
10293 \begin_layout Standard
10294 def ghi
10295 \end_layout
10296
10297 \end_inset
10298 </cell>
10299 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10300 \begin_inset Text
10301
10302 \begin_layout Standard
10303
10304 \end_layout
10305
10306 \end_inset
10307 </cell>
10308 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10309 \begin_inset Text
10310
10311 \begin_layout Standard
10312 jkl
10313 \end_layout
10314
10315 \end_inset
10316 </cell>
10317 </row>
10318 <row topline="true">
10319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10320 \begin_inset Text
10321
10322 \begin_layout Standard
10323
10324 \family roman
10325 \series medium
10326 \shape up
10327 \size normal
10328 \emph off
10329 \bar no
10330 \noun off
10331 \color none
10332 A
10333 \end_layout
10334
10335 \end_inset
10336 </cell>
10337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10338 \begin_inset Text
10339
10340 \begin_layout Standard
10341 B
10342 \end_layout
10343
10344 \end_inset
10345 </cell>
10346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10347 \begin_inset Text
10348
10349 \begin_layout Standard
10350 C
10351 \end_layout
10352
10353 \end_inset
10354 </cell>
10355 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10356 \begin_inset Text
10357
10358 \begin_layout Standard
10359 D
10360 \end_layout
10361
10362 \end_inset
10363 </cell>
10364 </row>
10365 <row topline="true" bottomline="true">
10366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10367 \begin_inset Text
10368
10369 \begin_layout Standard
10370 1
10371 \end_layout
10372
10373 \end_inset
10374 </cell>
10375 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10376 \begin_inset Text
10377
10378 \begin_layout Standard
10379 2
10380 \end_layout
10381
10382 \end_inset
10383 </cell>
10384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10385 \begin_inset Text
10386
10387 \begin_layout Standard
10388 3
10389 \end_layout
10390
10391 \end_inset
10392 </cell>
10393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10394 \begin_inset Text
10395
10396 \begin_layout Standard
10397 4
10398 \end_layout
10399
10400 \end_inset
10401 </cell>
10402 </row>
10403 </lyxtabular>
10404
10405 \end_inset
10406
10407
10408 \end_layout
10409
10410 \begin_layout Subsubsection
10411 Cálculos en Multicolumnas
10412 \begin_inset LatexCommand label
10413 name "sub:Cálculos-en-Multicolumnas"
10414
10415 \end_inset
10416
10417
10418 \begin_inset LatexCommand index
10419 name "Multicolumnas ! Cálculos"
10420
10421 \end_inset
10422
10423
10424 \end_layout
10425
10426 \begin_layout Standard
10427 LyX soporta multicolumnas directamente, pero hay que prestar atención a
10428  la anchura de celda de las columnas combinadas en la celda multicolumna.
10429 \end_layout
10430
10431 \begin_layout Standard
10432 \begin_inset Float table
10433 wide false
10434 sideways false
10435 status open
10436
10437 \begin_layout Standard
10438 \begin_inset Caption
10439
10440 \begin_layout Standard
10441 \begin_inset LatexCommand label
10442 name "tab:Tabla-con-centrado"
10443
10444 \end_inset
10445
10446 Tabla con texto centrado en multicolumna sobre dos columnas que tienen exactamen
10447 te la mitad de anchura que la celda multicolumna
10448 \begin_inset OptArg
10449 status collapsed
10450
10451 \begin_layout Standard
10452 Tabla multicolumna perfecta
10453 \end_layout
10454
10455 \end_inset
10456
10457
10458 \end_layout
10459
10460 \end_inset
10461
10462
10463 \end_layout
10464
10465 \begin_layout Standard
10466 \align center
10467 \begin_inset Tabular
10468 <lyxtabular version="3" rows="3" columns="3">
10469 <features>
10470 <column alignment="center" valignment="middle" leftline="true" width="0" special="|>{\centering}m{1.25cm-6.2pt}">
10471 <column alignment="center" valignment="middle" leftline="true" width="0">
10472 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10473 <row topline="true">
10474 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special="|>{\centering}m{2.5cm}|">
10475 \begin_inset Text
10476
10477 \begin_layout Standard
10478 multicolumna línea múltiple
10479 \end_layout
10480
10481 \end_inset
10482 </cell>
10483 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10484 \begin_inset Text
10485
10486 \begin_layout Standard
10487
10488 \end_layout
10489
10490 \end_inset
10491 </cell>
10492 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10493 \begin_inset Text
10494
10495 \begin_layout Standard
10496 c
10497 \end_layout
10498
10499 \end_inset
10500 </cell>
10501 </row>
10502 <row topline="true">
10503 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10504 \begin_inset Text
10505
10506 \begin_layout Standard
10507 d
10508 \end_layout
10509
10510 \end_inset
10511 </cell>
10512 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10513 \begin_inset Text
10514
10515 \begin_layout Standard
10516 e
10517 \end_layout
10518
10519 \end_inset
10520 </cell>
10521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10522 \begin_inset Text
10523
10524 \begin_layout Standard
10525 f
10526 \end_layout
10527
10528 \end_inset
10529 </cell>
10530 </row>
10531 <row topline="true" bottomline="true">
10532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10533 \begin_inset Text
10534
10535 \begin_layout Standard
10536 g
10537 \end_layout
10538
10539 \end_inset
10540 </cell>
10541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10542 \begin_inset Text
10543
10544 \begin_layout Standard
10545 h
10546 \end_layout
10547
10548 \end_inset
10549 </cell>
10550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10551 \begin_inset Text
10552
10553 \begin_layout Standard
10554 i
10555 \end_layout
10556
10557 \end_inset
10558 </cell>
10559 </row>
10560 </lyxtabular>
10561
10562 \end_inset
10563
10564
10565 \end_layout
10566
10567 \end_inset
10568
10569
10570 \end_layout
10571
10572 \begin_layout Standard
10573 Por ejemplo, para crear la tabla\InsetSpace ~
10574
10575 \begin_inset LatexCommand ref
10576 reference "tab:Tabla-con-centrado"
10577
10578 \end_inset
10579
10580 , marca las dos primeras celdas en la primera fila de una tabla 3×3 y haz
10581  clic-derecha.
10582  En el diálogo marca 
10583 \emph on
10584 multicolumna
10585 \emph default
10586
10587 \emph on
10588 alineación centro
10589 \emph default
10590  y una anchura de 2.5\InsetSpace \thinspace{}
10591 cm.
10592  Las columnas combinadas deberían tener exactamente la mitad de la anchura
10593  de la celda multicolumna, así que deberías ajustar 1.25\InsetSpace \thinspace{}
10594 cm para la primera
10595  columna.
10596  La segunda columna tendrá entonces automáticamente 1.25\InsetSpace \thinspace{}
10597 cm de anchura.
10598  Para la tabla\InsetSpace ~
10599
10600 \begin_inset LatexCommand ref
10601 reference "tab:Tabla-sin-mitad"
10602
10603 \end_inset
10604
10605  se ha procedido de la siguiente manera:
10606 \end_layout
10607
10608 \begin_layout Standard
10609 \begin_inset Float table
10610 wide false
10611 sideways false
10612 status open
10613
10614 \begin_layout Standard
10615 \begin_inset Caption
10616
10617 \begin_layout Standard
10618 \begin_inset LatexCommand label
10619 name "tab:Tabla-sin-mitad"
10620
10621 \end_inset
10622
10623 Tabla en la que las columnas combinadas no tienen exactamente la mitad de
10624  anchura que la celda multicolumna
10625 \begin_inset OptArg
10626 status open
10627
10628 \begin_layout Standard
10629 Tabla multicolumna imperfecta
10630 \end_layout
10631
10632 \end_inset
10633
10634
10635 \end_layout
10636
10637 \end_inset
10638
10639
10640 \end_layout
10641
10642 \begin_layout Standard
10643 \align center
10644 \begin_inset Tabular
10645 <lyxtabular version="3" rows="3" columns="3">
10646 <features>
10647 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10648 <column alignment="center" valignment="top" leftline="true" width="0">
10649 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10650 <row topline="true" bottomline="true">
10651 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10652 \begin_inset Text
10653
10654 \begin_layout Standard
10655 multicolumna línea múltiple
10656 \end_layout
10657
10658 \end_inset
10659 </cell>
10660 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10661 \begin_inset Text
10662
10663 \begin_layout Standard
10664
10665 \end_layout
10666
10667 \end_inset
10668 </cell>
10669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10670 \begin_inset Text
10671
10672 \begin_layout Standard
10673 c
10674 \end_layout
10675
10676 \end_inset
10677 </cell>
10678 </row>
10679 <row topline="true">
10680 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10681 \begin_inset Text
10682
10683 \begin_layout Standard
10684 d
10685 \end_layout
10686
10687 \end_inset
10688 </cell>
10689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10690 \begin_inset Text
10691
10692 \begin_layout Standard
10693 e
10694 \end_layout
10695
10696 \end_inset
10697 </cell>
10698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10699 \begin_inset Text
10700
10701 \begin_layout Standard
10702 f
10703 \end_layout
10704
10705 \end_inset
10706 </cell>
10707 </row>
10708 <row topline="true" bottomline="true">
10709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10710 \begin_inset Text
10711
10712 \begin_layout Standard
10713 g
10714 \end_layout
10715
10716 \end_inset
10717 </cell>
10718 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10719 \begin_inset Text
10720
10721 \begin_layout Standard
10722 h
10723 \end_layout
10724
10725 \end_inset
10726 </cell>
10727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10728 \begin_inset Text
10729
10730 \begin_layout Standard
10731 i
10732 \end_layout
10733
10734 \end_inset
10735 </cell>
10736 </row>
10737 </lyxtabular>
10738
10739 \end_inset
10740
10741
10742 \end_layout
10743
10744 \end_inset
10745
10746
10747 \end_layout
10748
10749 \begin_layout Standard
10750 Se ve que la primera columna no tiene la mitad de ancho que la celda multicolumn
10751 a, es un poco mayor.
10752  La razón es que la anchura dada para una celda 
10753 \begin_inset Formula $W_{g}$
10754 \end_inset
10755
10756  no es su anchura total 
10757 \begin_inset Formula $W_{\mathrm{tot}}$
10758 \end_inset
10759
10760  porque una celda es siempre algo mayor que la anchura dada.
10761  El Apéndice\InsetSpace ~
10762
10763 \begin_inset LatexCommand eqref
10764 reference "cha:Explicación-de-la-Ecuación"
10765
10766 \end_inset
10767
10768  lo explica con detalle.
10769 \end_layout
10770
10771 \begin_layout Standard
10772 La anchura dada necesaria, 
10773 \begin_inset Formula $W_{g\, n}$
10774 \end_inset
10775
10776  para combinar 
10777 \emph on
10778 n
10779 \emph default
10780  columnas puede calcularse de manera que cada columna tenga una anchura
10781  total de 
10782 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10783 \end_inset
10784
10785 :
10786 \begin_inset Formula \begin{equation}
10787 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10788
10789 \end_inset
10790
10791
10792 \end_layout
10793
10794 \begin_layout Standard
10795 En nuestro caso tenemos 
10796 \begin_inset Formula $n=2$
10797 \end_inset
10798
10799
10800 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10801 \end_inset
10802
10803 \InsetSpace \thinspace{}
10804 cm y los valores predeterminados para longitudes, así la ecuación\InsetSpace ~
10805
10806 \begin_inset LatexCommand ref
10807 reference "eq:Wgn"
10808
10809 \end_inset
10810
10811  queda
10812 \begin_inset Formula \begin{equation}
10813 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10814
10815 \end_inset
10816
10817
10818 \end_layout
10819
10820 \begin_layout Standard
10821 Para habilitar cálculos en LaTeX, debe cargarse en el preámbulo el paquete
10822  
10823 \series bold
10824 calc
10825 \series default
10826  con la línea
10827 \begin_inset LatexCommand index
10828 name "LaTeX-paquetes ! calc"
10829
10830 \end_inset
10831
10832
10833 \end_layout
10834
10835 \begin_layout Standard
10836
10837 \series bold
10838
10839 \backslash
10840 usepackage{calc}
10841 \end_layout
10842
10843 \begin_layout Standard
10844 LyX no permite calcular longitudes en el campo Ancho del cuadro de diálogo.
10845  Por tanto hay que insertar un argumento LaTeX en el diálogo.
10846  He aquí un repaso de los argumentos:
10847 \end_layout
10848
10849 \begin_layout Itemize
10850
10851 \series bold
10852 p{ancho}
10853 \series default
10854  crea celdas con anchura fija, el texto alineado arriba
10855 \end_layout
10856
10857 \begin_layout Itemize
10858
10859 \series bold
10860 m{ancho}
10861 \series default
10862  crea celdas con anchura fija, el texto con alineación vertical centrada
10863  
10864 \end_layout
10865
10866 \begin_layout Itemize
10867
10868 \series bold
10869 b{ancho}
10870 \series default
10871  crea celdas con anchura fija, el texto alineado abajo
10872 \end_layout
10873
10874 \begin_layout Standard
10875 Al introducir un argumento LaTeX, todas las propiedades de celda puestas
10876  en el diálogo se ignoran.
10877  
10878 \begin_inset Note Greyedout
10879 status collapsed
10880
10881 \begin_layout Standard
10882
10883 \series bold
10884 Nota:
10885 \series default
10886  Debido a un error, LyX muestra de todas formas estas propiedades.
10887 \end_layout
10888
10889 \end_inset
10890
10891  El comando 
10892 \series bold
10893
10894 \backslash
10895 centering
10896 \series default
10897  centra horizontalmente el texto.
10898  Puedes entonces introducir el siguiente argumento de LaTeX para la primera
10899  columna extendida:
10900 \end_layout
10901
10902 \begin_layout Standard
10903
10904 \series bold
10905 |>{
10906 \backslash
10907 centering}m{1.25cm-6.2pt}
10908 \end_layout
10909
10910 \begin_layout Standard
10911 La barra "
10912 \series bold
10913 |
10914 \series default
10915 " al principio dibuja el borde y el comando 
10916 \series bold
10917 >{ }
10918 \series default
10919  significa que los comandos entre llaves se aplican antes de crear la celda.
10920 \end_layout
10921
10922 \begin_layout Standard
10923 Aunque hemos escogido alineación centrada para el texto de la celda multicolumna
10924 , aún está alineado a la izquierda.
10925  Esto se debe a que LyX solo aplica alineado a columnas simples.
10926  Así que para multicolumnas hemos de usar el argumento de LaTeX
10927 \end_layout
10928
10929 \begin_layout Standard
10930
10931 \series bold
10932 |>{
10933 \backslash
10934 centering}m{2.5cm}|
10935 \end_layout
10936
10937 \begin_layout Subsection
10938 Multifilas
10939 \begin_inset LatexCommand index
10940 name "Multifilas"
10941
10942 \end_inset
10943
10944
10945 \begin_inset LatexCommand index
10946 name "Tablas ! Multifilas"
10947
10948 \end_inset
10949
10950
10951 \begin_inset LatexCommand index
10952 name "LaTeX-paquetes ! multirow"
10953
10954 \end_inset
10955
10956
10957 \end_layout
10958
10959 \begin_layout Standard
10960 A diferencia de multicolumnas, LyX aún no soporta multifilas por lo que
10961  hace falta un poco de ERT.
10962  Hay que cargar el paquete de LaTeX 
10963 \series bold
10964 multirow
10965 \series default
10966  en el preámbulo del documento con el comando
10967 \end_layout
10968
10969 \begin_layout Standard
10970
10971 \series bold
10972
10973 \backslash
10974 usepackage{multirow}
10975 \end_layout
10976
10977 \begin_layout Standard
10978 Las multifilas se crean con el comando
10979 \end_layout
10980
10981 \begin_layout Standard
10982
10983 \series bold
10984
10985 \backslash
10986 multirow{número de filas}{ancho de celda}{entrada de celda}
10987 \end_layout
10988
10989 \begin_layout Standard
10990 Para crear la siguiente tabla:
10991 \end_layout
10992
10993 \begin_layout Standard
10994 \align center
10995 \begin_inset ERT
10996 status collapsed
10997
10998 \begin_layout Standard
10999
11000
11001 \backslash
11002 renewcommand{
11003 \backslash
11004 multirowsetup}{
11005 \backslash
11006 centering}
11007 \end_layout
11008
11009 \end_inset
11010
11011
11012 \begin_inset Tabular
11013 <lyxtabular version="3" rows="3" columns="3">
11014 <features>
11015 <column alignment="center" valignment="top" leftline="true" width="0">
11016 <column alignment="center" valignment="top" leftline="true" width="0">
11017 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11018 <row topline="true">
11019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11020 \begin_inset Text
11021
11022 \begin_layout Standard
11023 a
11024 \end_layout
11025
11026 \end_inset
11027 </cell>
11028 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11029 \begin_inset Text
11030
11031 \begin_layout Standard
11032 b
11033 \end_layout
11034
11035 \end_inset
11036 </cell>
11037 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11038 \begin_inset Text
11039
11040 \begin_layout Standard
11041 c
11042 \end_layout
11043
11044 \end_inset
11045 </cell>
11046 </row>
11047 <row topline="true">
11048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11049 \begin_inset Text
11050
11051 \begin_layout Standard
11052 \begin_inset ERT
11053 status collapsed
11054
11055 \begin_layout Standard
11056
11057
11058 \backslash
11059 multirow{2}{2.5cm}{
11060 \end_layout
11061
11062 \end_inset
11063
11064 entrada multifila
11065 \begin_inset ERT
11066 status collapsed
11067
11068 \begin_layout Standard
11069
11070 }
11071 \end_layout
11072
11073 \end_inset
11074
11075
11076 \end_layout
11077
11078 \end_inset
11079 </cell>
11080 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11081 \begin_inset Text
11082
11083 \begin_layout Standard
11084 e
11085 \end_layout
11086
11087 \end_inset
11088 </cell>
11089 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11090 \begin_inset Text
11091
11092 \begin_layout Standard
11093 f
11094 \end_layout
11095
11096 \end_inset
11097 </cell>
11098 </row>
11099 <row topline="true" bottomline="true">
11100 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11101 \begin_inset Text
11102
11103 \begin_layout Standard
11104
11105 \end_layout
11106
11107 \end_inset
11108 </cell>
11109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11110 \begin_inset Text
11111
11112 \begin_layout Standard
11113 h
11114 \end_layout
11115
11116 \end_inset
11117 </cell>
11118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11119 \begin_inset Text
11120
11121 \begin_layout Standard
11122 i
11123 \end_layout
11124
11125 \end_inset
11126 </cell>
11127 </row>
11128 </lyxtabular>
11129
11130 \end_inset
11131
11132
11133 \begin_inset ERT
11134 status collapsed
11135
11136 \begin_layout Standard
11137
11138
11139 \backslash
11140 renewcommand{
11141 \backslash
11142 multirowsetup}{
11143 \backslash
11144 raggedright}
11145 \end_layout
11146
11147 \end_inset
11148
11149
11150 \end_layout
11151
11152 \begin_layout Standard
11153 crea una tabla 3×3.
11154  Para quitar la línea sobre la última celda en la primera columna, se marca
11155  la celda como multicolumna y se quita el borde superior.
11156  Ahora se crea la multifila en la segunda fila de la primera columna insertando
11157  ahí el comando
11158 \end_layout
11159
11160 \begin_layout Standard
11161
11162 \series bold
11163
11164 \backslash
11165 multirow{2}{2.5cm}{
11166 \end_layout
11167
11168 \begin_layout Standard
11169 como ERT.
11170  Según los parámetros del comando la multifila se expande a dos filas y
11171  tiene de ancho 2.5\InsetSpace \thinspace{}
11172 cm.
11173  El contenido de la celda multifila sigue fuera del cuadro ERT y el comando
11174  finaliza con llave derecha 
11175 \series bold
11176 }
11177 \series default
11178  en otro cuadro ERT tras el texto.
11179 \end_layout
11180
11181 \begin_layout Standard
11182
11183 \series bold
11184
11185 \backslash
11186 multirow
11187 \series default
11188  alinea su contenido a la izquierda por defecto.
11189  Para cambiarlo renombra el comando 
11190 \series bold
11191
11192 \backslash
11193 multirowsetup
11194 \series default
11195  con el comando
11196 \end_layout
11197
11198 \begin_layout Standard
11199
11200 \series bold
11201
11202 \backslash
11203 renewcommand{
11204 \backslash
11205 multirowsetup}{
11206 \backslash
11207 centering}
11208 \end_layout
11209
11210 \begin_layout Standard
11211 en ERT en el preámbulo del documento.
11212  Entonces se centran todas las entradas de celdas multifila en el documento.
11213  Si solo queremos centrar en algunas tablas, se puede renombrar el comando
11214  en ERT justo antes de la tabla en lugar de en el preámbulo.
11215  Si el texto debe estar alineado a la derecha, reemplaza 
11216 \series bold
11217
11218 \backslash
11219 centering
11220 \series default
11221  por 
11222 \series bold
11223
11224 \backslash
11225 raggedleft
11226 \series default
11227 .
11228  Para volver a alineado a la izquierda usa 
11229 \series bold
11230
11231 \backslash
11232 raggedright
11233 \series default
11234 .
11235 \end_layout
11236
11237 \begin_layout Section
11238 Tablas Formales
11239 \begin_inset LatexCommand label
11240 name "sec:Tablas-Formales"
11241
11242 \end_inset
11243
11244
11245 \begin_inset LatexCommand index
11246 name "Tablas Formales"
11247
11248 \end_inset
11249
11250
11251 \begin_inset LatexCommand index
11252 name "Tablas ! Estilo Formal"
11253
11254 \end_inset
11255
11256  
11257 \end_layout
11258
11259 \begin_layout Standard
11260 En los libros, las tablas se suelen presentar en un formato como el de la
11261  tabla \InsetSpace ~
11262
11263 \begin_inset LatexCommand ref
11264 reference "tab:Ejemplo-tabla-formal"
11265
11266 \end_inset
11267
11268 .
11269  Se denominan tablas 
11270 \emph on
11271 formales
11272 \emph default
11273 .
11274  Para hacer tablas con este diseño, elige 
11275 \family sans
11276 Estilo
11277 \family default
11278 \InsetSpace ~
11279
11280 \family sans
11281 Formal
11282 \family default
11283  en la solapa 
11284 \family sans
11285 Bordes
11286 \family default
11287  del cuadro de diálogo de tablas.
11288 \end_layout
11289
11290 \begin_layout Standard
11291 \begin_inset Float table
11292 placement h
11293 wide false
11294 sideways false
11295 status open
11296
11297 \begin_layout Standard
11298 \begin_inset Caption
11299
11300 \begin_layout Standard
11301 \begin_inset LatexCommand label
11302 name "tab:Ejemplo-tabla-formal"
11303
11304 \end_inset
11305
11306 Ejemplo de tabla formal
11307 \end_layout
11308
11309 \end_inset
11310
11311
11312 \end_layout
11313
11314 \begin_layout Standard
11315 \align center
11316 \begin_inset Tabular
11317 <lyxtabular version="3" rows="8" columns="4">
11318 <features booktabs="true">
11319 <column alignment="center" valignment="top" rightline="true" width="0">
11320 <column alignment="center" valignment="top" width="0">
11321 <column alignment="center" valignment="top" width="0">
11322 <column alignment="center" valignment="top" width="0">
11323 <row topline="true">
11324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11325 \begin_inset Text
11326
11327 \begin_layout Standard
11328 System
11329 \end_layout
11330
11331 \end_inset
11332 </cell>
11333 <cell alignment="center" valignment="top" topline="true" usebox="none">
11334 \begin_inset Text
11335
11336 \begin_layout Standard
11337 Medipix
11338 \begin_inset Formula $\,$
11339 \end_inset
11340
11341 1
11342 \end_layout
11343
11344 \end_inset
11345 </cell>
11346 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11347 \begin_inset Text
11348
11349 \begin_layout Standard
11350 Medipix
11351 \begin_inset Formula $\,$
11352 \end_inset
11353
11354 2
11355 \end_layout
11356
11357 \end_inset
11358 </cell>
11359 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11360 \begin_inset Text
11361
11362 \begin_layout Standard
11363
11364 \end_layout
11365
11366 \end_inset
11367 </cell>
11368 </row>
11369 <row>
11370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11371 \begin_inset Text
11372
11373 \begin_layout Standard
11374 \begin_inset ERT
11375 status collapsed
11376
11377 \begin_layout Standard
11378
11379
11380 \backslash
11381 cmidrule(r){2-2}
11382 \end_layout
11383
11384 \end_inset
11385
11386
11387 \begin_inset ERT
11388 status collapsed
11389
11390 \begin_layout Standard
11391
11392
11393 \backslash
11394 cmidrule(l){3-4}
11395 \end_layout
11396
11397 \end_inset
11398
11399 Detector thickness [µm]
11400 \end_layout
11401
11402 \end_inset
11403 </cell>
11404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11405 \begin_inset Text
11406
11407 \begin_layout Standard
11408 300
11409 \end_layout
11410
11411 \end_inset
11412 </cell>
11413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11414 \begin_inset Text
11415
11416 \begin_layout Standard
11417 300
11418 \end_layout
11419
11420 \end_inset
11421 </cell>
11422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11423 \begin_inset Text
11424
11425 \begin_layout Standard
11426 700
11427 \end_layout
11428
11429 \end_inset
11430 </cell>
11431 </row>
11432 <row topline="true">
11433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11434 \begin_inset Text
11435
11436 \begin_layout Standard
11437 Edge angle [°]
11438 \end_layout
11439
11440 \end_inset
11441 </cell>
11442 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11443 \begin_inset Text
11444
11445 \begin_layout Standard
11446 3.55
11447 \end_layout
11448
11449 \end_inset
11450 </cell>
11451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11452 \begin_inset Text
11453
11454 \begin_layout Standard
11455 2.71
11456 \end_layout
11457
11458 \end_inset
11459 </cell>
11460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11461 \begin_inset Text
11462
11463 \begin_layout Standard
11464 7.99
11465 \end_layout
11466
11467 \end_inset
11468 </cell>
11469 </row>
11470 <row topspace="default">
11471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11472 \begin_inset Text
11473
11474 \begin_layout Standard
11475 Spatial resolution [µm]
11476 \end_layout
11477
11478 \end_inset
11479 </cell>
11480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11481 \begin_inset Text
11482
11483 \begin_layout Standard
11484 4.26
11485 \end_layout
11486
11487 \end_inset
11488 </cell>
11489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11490 \begin_inset Text
11491
11492 \begin_layout Standard
11493 10.17
11494 \end_layout
11495
11496 \end_inset
11497 </cell>
11498 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11499 \begin_inset Text
11500
11501 \begin_layout Standard
11502 10.56
11503 \end_layout
11504
11505 \end_inset
11506 </cell>
11507 </row>
11508 <row topspace="default">
11509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11510 \begin_inset Text
11511
11512 \begin_layout Standard
11513 MTF at 
11514 \begin_inset Formula $f_{\mathrm{max}}$
11515 \end_inset
11516
11517
11518 \end_layout
11519
11520 \end_inset
11521 </cell>
11522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11523 \begin_inset Text
11524
11525 \begin_layout Standard
11526 0.53
11527 \end_layout
11528
11529 \end_inset
11530 </cell>
11531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11532 \begin_inset Text
11533
11534 \begin_layout Standard
11535 0.37
11536 \end_layout
11537
11538 \end_inset
11539 </cell>
11540 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11541 \begin_inset Text
11542
11543 \begin_layout Standard
11544 0.39
11545 \end_layout
11546
11547 \end_inset
11548 </cell>
11549 </row>
11550 <row topspace="default">
11551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11552 \begin_inset Text
11553
11554 \begin_layout Standard
11555 \begin_inset ERT
11556 status collapsed
11557
11558 \begin_layout Standard
11559
11560
11561 \backslash
11562 cmidrule(l{10pt}){1-1}
11563 \end_layout
11564
11565 \end_inset
11566
11567 LSF-spatial resolution
11568 \end_layout
11569
11570 \end_inset
11571 </cell>
11572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11573 \begin_inset Text
11574
11575 \begin_layout Standard
11576
11577 \end_layout
11578
11579 \end_inset
11580 </cell>
11581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11582 \begin_inset Text
11583
11584 \begin_layout Standard
11585
11586 \end_layout
11587
11588 \end_inset
11589 </cell>
11590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11591 \begin_inset Text
11592
11593 \begin_layout Standard
11594
11595 \end_layout
11596
11597 \end_inset
11598 </cell>
11599 </row>
11600 <row>
11601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11602 \begin_inset Text
11603
11604 \begin_layout Standard
11605 in µm
11606 \end_layout
11607
11608 \end_inset
11609 </cell>
11610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11611 \begin_inset Text
11612
11613 \begin_layout Standard
11614 129.7
11615 \end_layout
11616
11617 \end_inset
11618 </cell>
11619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11620 \begin_inset Text
11621
11622 \begin_layout Standard
11623 52.75
11624 \end_layout
11625
11626 \end_inset
11627 </cell>
11628 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11629 \begin_inset Text
11630
11631 \begin_layout Standard
11632 50.78
11633 \end_layout
11634
11635 \end_inset
11636 </cell>
11637 </row>
11638 <row bottomline="true">
11639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11640 \begin_inset Text
11641
11642 \begin_layout Standard
11643 in % of pixel size
11644 \end_layout
11645
11646 \end_inset
11647 </cell>
11648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11649 \begin_inset Text
11650
11651 \begin_layout Standard
11652 76.3
11653 \end_layout
11654
11655 \end_inset
11656 </cell>
11657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11658 \begin_inset Text
11659
11660 \begin_layout Standard
11661 95.9
11662 \end_layout
11663
11664 \end_inset
11665 </cell>
11666 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11667 \begin_inset Text
11668
11669 \begin_layout Standard
11670 92.3
11671 \end_layout
11672
11673 \end_inset
11674 </cell>
11675 </row>
11676 </lyxtabular>
11677
11678 \end_inset
11679
11680
11681 \end_layout
11682
11683 \end_inset
11684
11685
11686 \end_layout
11687
11688 \begin_layout Standard
11689 Se puede añadir espacio adicional a las filas de la tabla mediante los botones
11690  correspondientes que se encuentran en la solapa 
11691 \family sans
11692 Bordes 
11693 \family default
11694 del diálogo
11695 \family sans
11696  Configuración\InsetSpace ~
11697 de\InsetSpace ~
11698 la\InsetSpace ~
11699 tabla
11700 \family default
11701 , como se explica en la sección\InsetSpace ~
11702
11703 \begin_inset LatexCommand ref
11704 reference "sub:Espacio-adicional"
11705
11706 \end_inset
11707
11708
11709 \end_layout
11710
11711 \begin_layout Standard
11712 A diferencia de las tablas normales, las tablas formales no tienen líneas
11713  verticales.
11714  Las líneas horizontales se pueden poner o no como en las tablas normales,
11715  pero en la salida se mostrarán con distinto grosor:
11716 \newline
11717 Las líneas primera y
11718  última tienen un grosor predeterminado de 0.08\InsetSpace \thinspace{}
11719 em, las demás tienen un grosor
11720  predeterminado de 0.05\InsetSpace \thinspace{}
11721 em.
11722 \end_layout
11723
11724 \begin_layout Standard
11725 Estos valores predeterminados se pueden cambiar
11726 \series bold
11727  
11728 \series default
11729 con las líneas de preámbulo:
11730 \end_layout
11731
11732 \begin_layout Standard
11733
11734 \series bold
11735
11736 \backslash
11737 let
11738 \backslash
11739 mytoprule
11740 \backslash
11741 toprule
11742 \newline
11743
11744 \backslash
11745 renewcommand{
11746 \backslash
11747 toprule}{
11748 \backslash
11749 mytoprule[grosor]}
11750 \end_layout
11751
11752 \begin_layout Standard
11753 Este ejemplo es para la primera línea, la denominada 
11754 \emph on
11755 toprule
11756 \emph default
11757 .
11758  Si quieres cambiar el grosor de la última línea, reemplaza 
11759 \series bold
11760 toprule
11761 \series default
11762  por 
11763 \series bold
11764 bottomrule
11765 \series default
11766 .
11767  Y para cambiar el grosor de las demás líneas cambia 
11768 \series bold
11769 toprule
11770 \series default
11771  por 
11772 \series bold
11773 midrule
11774 \series default
11775 .
11776  Puedes usar cualquiera de las unidades listadas en el apéndice\InsetSpace ~
11777
11778 \begin_inset LatexCommand ref
11779 reference "cha:Unidades-disponibles-en"
11780
11781 \end_inset
11782
11783 para establecer el grosor.
11784 \end_layout
11785
11786 \begin_layout Standard
11787 Para dibujar líneas que no se extiendan a todas las columnas de la tabla,
11788  puedes marcarlas como celdas multicolumna y entonces ponerles borde.
11789  LyX empleará internamente el comando 
11790 \series bold
11791
11792 \backslash
11793 cmidrule
11794 \series default
11795  para dibujar la línea.
11796  El esquema completo es
11797 \end_layout
11798
11799 \begin_layout Standard
11800
11801 \series bold
11802
11803 \backslash
11804 cmidrule[grosor](recorte){inicol-fincol}
11805 \end_layout
11806
11807 \begin_layout Standard
11808 Por el momento, LyX no soporta las opciones de 
11809 \series bold
11810
11811 \backslash
11812 cmidrule
11813 \series default
11814 , así que para usarlas hay que emplear ERT.
11815  Las líneas 
11816 \series bold
11817
11818 \backslash
11819 cmidrule
11820 \series default
11821  se pueden insertar manualmente con el comando en ERT como primera entrada
11822  de la primera celda de una fila.
11823  En la salida se dibujará la línea sobre dicha fila.
11824 \end_layout
11825
11826 \begin_layout Standard
11827 El grosor predeterminado es 0.03\InsetSpace \thinspace{}
11828 em.
11829  
11830 \series bold
11831 inicol
11832 \series default
11833  es el número de la columna en la que comienza la línea y 
11834 \series bold
11835 fincol
11836 \series default
11837  es el número de la columna en la que acaba la línea.
11838  El valor 
11839 \series bold
11840 fincol
11841 \series default
11842  debe especificarse siempre, aunque la línea se extienda sobre una sola
11843  columna.
11844  El parámetro opcional 
11845 \series bold
11846 recorte
11847 \series default
11848  debe ser 
11849 \emph on
11850 l{recorte}
11851 \emph default
11852  o 
11853 \emph on
11854 r{recorte}
11855 \emph default
11856 , donde 
11857 \emph on
11858 recorte
11859 \emph default
11860  también es opcional.
11861  Por ejemplo, el parámetro 
11862 \emph on
11863 l{2pt}
11864 \emph default
11865  significa que la línea se recorta 2\InsetSpace \thinspace{}
11866 pt por su izquierda.
11867  Si no se especifica el tamaño  las líneas se recortan por defecto en 0.5\InsetSpace \thinspace{}
11868 em.
11869
11870 \series bold
11871  
11872 \end_layout
11873
11874 \begin_layout Standard
11875
11876 \end_layout
11877
11878 \begin_layout Standard
11879 \begin_inset VSpace bigskip
11880 \end_inset
11881
11882
11883 \end_layout
11884
11885 \begin_layout Standard
11886 La tabla\InsetSpace ~
11887
11888 \begin_inset LatexCommand ref
11889 reference "tab:Ejemplo-tabla-formal"
11890
11891 \end_inset
11892
11893  se ha creado con los comandos
11894 \end_layout
11895
11896 \begin_layout Standard
11897
11898 \series bold
11899
11900 \backslash
11901 cmidrule(r){2-2}
11902 \backslash
11903 cmidrule(l){3-4}
11904 \end_layout
11905
11906 \begin_layout Standard
11907 en la segunda fila, 
11908 \series bold
11909
11910 \backslash
11911 midrule
11912 \series default
11913  en la tercera, y
11914 \end_layout
11915
11916 \begin_layout Standard
11917
11918 \series bold
11919
11920 \backslash
11921 cmidrule(l{10pt}){1-1}
11922 \end_layout
11923
11924 \begin_layout Standard
11925 en la sexta fila.
11926 \end_layout
11927
11928 \begin_layout Standard
11929 \begin_inset VSpace bigskip
11930 \end_inset
11931
11932
11933 \end_layout
11934
11935 \begin_layout Standard
11936 Quizá quieras superponer líneas 
11937 \series bold
11938
11939 \backslash
11940 cmidrules
11941 \series default
11942  como en la tabla\InsetSpace ~
11943
11944 \begin_inset LatexCommand ref
11945 reference "tab:Tabla-formal-especial"
11946
11947 \end_inset
11948
11949 .
11950  Esto se consigue con el comando ERT
11951 \end_layout
11952
11953 \begin_layout Standard
11954
11955 \series bold
11956
11957 \backslash
11958 morecmidrules
11959 \end_layout
11960
11961 \begin_layout Standard
11962 El comando que se ha utilizado para la segunda fila de la tabla\InsetSpace ~
11963
11964 \begin_inset LatexCommand ref
11965 reference "tab:Tabla-formal-especial"
11966
11967 \end_inset
11968
11969  es
11970 \end_layout
11971
11972 \begin_layout Standard
11973
11974 \series bold
11975
11976 \backslash
11977 cmidrule(r){2-2}
11978 \backslash
11979 cmidrule(l){3-4}
11980 \backslash
11981 morecmidrules
11982 \backslash
11983 cmidrule{2-4}
11984 \end_layout
11985
11986 \begin_layout Standard
11987 El comando para la sexta fila es
11988 \end_layout
11989
11990 \begin_layout Standard
11991
11992 \series bold
11993
11994 \backslash
11995 midrule
11996 \backslash
11997 morecmidrules
11998 \backslash
11999 cmidrule{3-4}
12000 \series default
12001
12002 \begin_inset VSpace bigskip
12003 \end_inset
12004
12005
12006 \end_layout
12007
12008 \begin_layout Standard
12009 Si de todas formas no te satisface el espaciado de los bordes, puedes usar
12010  el siguiente comando para dibujar líneas que se extienden sobre todas las
12011  columnas
12012 \end_layout
12013
12014 \begin_layout Standard
12015
12016 \series bold
12017
12018 \backslash
12019 specialrule{anchura}{espacio superior}{espacio inferior}
12020 \end_layout
12021
12022 \begin_layout Standard
12023 Para más información sobre estas características especiales, acude al manual
12024  del paquete LaTeX 
12025 \series bold
12026 booktabs
12027 \series default
12028
12029 \begin_inset LatexCommand cite
12030 key "booktabs"
12031
12032 \end_inset
12033
12034 .
12035 \begin_inset LatexCommand index
12036 name "LaTeX-paquetes ! booktabs"
12037
12038 \end_inset
12039
12040  
12041 \begin_inset VSpace bigskip
12042 \end_inset
12043
12044
12045 \end_layout
12046
12047 \begin_layout Standard
12048 \begin_inset Float table
12049 placement h
12050 wide false
12051 sideways false
12052 status open
12053
12054 \begin_layout Standard
12055 \begin_inset Caption
12056
12057 \begin_layout Standard
12058 \begin_inset LatexCommand label
12059 name "tab:Tabla-formal-especial"
12060
12061 \end_inset
12062
12063 Tabla formal especial
12064 \end_layout
12065
12066 \end_inset
12067
12068
12069 \end_layout
12070
12071 \begin_layout Standard
12072 \align center
12073 \begin_inset Tabular
12074 <lyxtabular version="3" rows="8" columns="4">
12075 <features booktabs="true">
12076 <column alignment="center" valignment="top" width="0">
12077 <column alignment="center" valignment="top" width="0">
12078 <column alignment="center" valignment="top" width="0">
12079 <column alignment="center" valignment="top" width="0">
12080 <row topline="true">
12081 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12082 \begin_inset Text
12083
12084 \begin_layout Standard
12085 System
12086 \end_layout
12087
12088 \end_inset
12089 </cell>
12090 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12091 \begin_inset Text
12092
12093 \begin_layout Standard
12094 Medipix\InsetSpace \thinspace{}
12095 1
12096 \end_layout
12097
12098 \end_inset
12099 </cell>
12100 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12101 \begin_inset Text
12102
12103 \begin_layout Standard
12104 Medipix\InsetSpace \thinspace{}
12105 2
12106 \end_layout
12107
12108 \end_inset
12109 </cell>
12110 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12111 \begin_inset Text
12112
12113 \begin_layout Standard
12114
12115 \end_layout
12116
12117 \end_inset
12118 </cell>
12119 </row>
12120 <row>
12121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12122 \begin_inset Text
12123
12124 \begin_layout Standard
12125 \begin_inset ERT
12126 status collapsed
12127
12128 \begin_layout Standard
12129
12130
12131 \backslash
12132 cmidrule(r){2-2}
12133 \end_layout
12134
12135 \end_inset
12136
12137
12138 \begin_inset ERT
12139 status collapsed
12140
12141 \begin_layout Standard
12142
12143
12144 \backslash
12145 cmidrule(l){3-4}
12146 \end_layout
12147
12148 \end_inset
12149
12150
12151 \begin_inset ERT
12152 status collapsed
12153
12154 \begin_layout Standard
12155
12156
12157 \backslash
12158 morecmidrules 
12159 \end_layout
12160
12161 \end_inset
12162
12163
12164 \begin_inset ERT
12165 status collapsed
12166
12167 \begin_layout Standard
12168
12169
12170 \backslash
12171 cmidrule{2-4}
12172 \end_layout
12173
12174 \end_inset
12175
12176 Detector thickness [µm]
12177 \end_layout
12178
12179 \end_inset
12180 </cell>
12181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12182 \begin_inset Text
12183
12184 \begin_layout Standard
12185 300
12186 \end_layout
12187
12188 \end_inset
12189 </cell>
12190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12191 \begin_inset Text
12192
12193 \begin_layout Standard
12194 300
12195 \end_layout
12196
12197 \end_inset
12198 </cell>
12199 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12200 \begin_inset Text
12201
12202 \begin_layout Standard
12203 700
12204 \end_layout
12205
12206 \end_inset
12207 </cell>
12208 </row>
12209 <row topline="true">
12210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12211 \begin_inset Text
12212
12213 \begin_layout Standard
12214 Edge angle [°]
12215 \end_layout
12216
12217 \end_inset
12218 </cell>
12219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12220 \begin_inset Text
12221
12222 \begin_layout Standard
12223 3.55
12224 \end_layout
12225
12226 \end_inset
12227 </cell>
12228 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12229 \begin_inset Text
12230
12231 \begin_layout Standard
12232 2.71
12233 \end_layout
12234
12235 \end_inset
12236 </cell>
12237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12238 \begin_inset Text
12239
12240 \begin_layout Standard
12241 7.99
12242 \end_layout
12243
12244 \end_inset
12245 </cell>
12246 </row>
12247 <row topspace="default">
12248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12249 \begin_inset Text
12250
12251 \begin_layout Standard
12252 Spatial resolution [µm]
12253 \end_layout
12254
12255 \end_inset
12256 </cell>
12257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12258 \begin_inset Text
12259
12260 \begin_layout Standard
12261 4.26
12262 \end_layout
12263
12264 \end_inset
12265 </cell>
12266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12267 \begin_inset Text
12268
12269 \begin_layout Standard
12270 10.17
12271 \end_layout
12272
12273 \end_inset
12274 </cell>
12275 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12276 \begin_inset Text
12277
12278 \begin_layout Standard
12279 10.56
12280 \end_layout
12281
12282 \end_inset
12283 </cell>
12284 </row>
12285 <row topspace="default">
12286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12287 \begin_inset Text
12288
12289 \begin_layout Standard
12290 MTF at 
12291 \begin_inset Formula $f_{\mathrm{max}}$
12292 \end_inset
12293
12294
12295 \end_layout
12296
12297 \end_inset
12298 </cell>
12299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12300 \begin_inset Text
12301
12302 \begin_layout Standard
12303 0.53
12304 \end_layout
12305
12306 \end_inset
12307 </cell>
12308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12309 \begin_inset Text
12310
12311 \begin_layout Standard
12312 0.37
12313 \end_layout
12314
12315 \end_inset
12316 </cell>
12317 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12318 \begin_inset Text
12319
12320 \begin_layout Standard
12321 0.39
12322 \end_layout
12323
12324 \end_inset
12325 </cell>
12326 </row>
12327 <row topline="true">
12328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12329 \begin_inset Text
12330
12331 \begin_layout Standard
12332 \begin_inset ERT
12333 status collapsed
12334
12335 \begin_layout Standard
12336
12337
12338 \backslash
12339 morecmidrules 
12340 \end_layout
12341
12342 \end_inset
12343
12344
12345 \begin_inset ERT
12346 status collapsed
12347
12348 \begin_layout Standard
12349
12350
12351 \backslash
12352 cmidrule{3-4}
12353 \end_layout
12354
12355 \end_inset
12356
12357 LSF-spatial resolution
12358 \end_layout
12359
12360 \end_inset
12361 </cell>
12362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12363 \begin_inset Text
12364
12365 \begin_layout Standard
12366
12367 \end_layout
12368
12369 \end_inset
12370 </cell>
12371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12372 \begin_inset Text
12373
12374 \begin_layout Standard
12375
12376 \end_layout
12377
12378 \end_inset
12379 </cell>
12380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12381 \begin_inset Text
12382
12383 \begin_layout Standard
12384
12385 \end_layout
12386
12387 \end_inset
12388 </cell>
12389 </row>
12390 <row>
12391 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12392 \begin_inset Text
12393
12394 \begin_layout Standard
12395 in µm
12396 \end_layout
12397
12398 \end_inset
12399 </cell>
12400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12401 \begin_inset Text
12402
12403 \begin_layout Standard
12404 129.7
12405 \end_layout
12406
12407 \end_inset
12408 </cell>
12409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12410 \begin_inset Text
12411
12412 \begin_layout Standard
12413 52.75
12414 \end_layout
12415
12416 \end_inset
12417 </cell>
12418 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12419 \begin_inset Text
12420
12421 \begin_layout Standard
12422 50.78
12423 \end_layout
12424
12425 \end_inset
12426 </cell>
12427 </row>
12428 <row bottomline="true">
12429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12430 \begin_inset Text
12431
12432 \begin_layout Standard
12433 in % of pixel size
12434 \end_layout
12435
12436 \end_inset
12437 </cell>
12438 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12439 \begin_inset Text
12440
12441 \begin_layout Standard
12442 76.3
12443 \end_layout
12444
12445 \end_inset
12446 </cell>
12447 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12448 \begin_inset Text
12449
12450 \begin_layout Standard
12451 95.9
12452 \end_layout
12453
12454 \end_inset
12455 </cell>
12456 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12457 \begin_inset Text
12458
12459 \begin_layout Standard
12460 92.3
12461 \end_layout
12462
12463 \end_inset
12464 </cell>
12465 </row>
12466 </lyxtabular>
12467
12468 \end_inset
12469
12470
12471 \end_layout
12472
12473 \end_inset
12474
12475
12476 \end_layout
12477
12478 \begin_layout Section
12479 Alineación Vertical en Tablas
12480 \begin_inset LatexCommand index
12481 name "Tablas ! Alineación Vertical"
12482
12483 \end_inset
12484
12485
12486 \end_layout
12487
12488 \begin_layout Standard
12489 Para alinear tablas verticalmente en una línea de texto la tabla debe estar
12490  en un cuadro.
12491  Entonces el cuadro se puede alinear verticalmente como se describe en la
12492  sección\InsetSpace ~
12493
12494 \begin_inset LatexCommand ref
12495 reference "sec:Diálogo-Cuadros"
12496
12497 \end_inset
12498
12499 .
12500  
12501 \end_layout
12502
12503 \begin_layout Standard
12504 En el ejemplo siguiente las tablas están en un cuadro de minipágina
12505 \begin_inset Foot
12506 status collapsed
12507
12508 \begin_layout Standard
12509 Las minipáginas se describen en la sección\InsetSpace ~
12510
12511 \begin_inset LatexCommand ref
12512 reference "sec:Minipáginas"
12513
12514 \end_inset
12515
12516 .
12517 \end_layout
12518
12519 \end_inset
12520
12521  que tiene una anchura de 15\InsetSpace \thinspace{}
12522 col%:
12523 \end_layout
12524
12525 \begin_layout Itemize
12526 test 
12527 \begin_inset Box Frameless
12528 position "t"
12529 hor_pos "c"
12530 has_inner_box 1
12531 inner_pos "c"
12532 use_parbox 0
12533 width "15col%"
12534 special "none"
12535 height "1in"
12536 height_special "totalheight"
12537 status collapsed
12538
12539 \begin_layout Standard
12540 \begin_inset Tabular
12541 <lyxtabular version="3" rows="3" columns="3">
12542 <features>
12543 <column alignment="center" valignment="top" leftline="true" width="0">
12544 <column alignment="center" valignment="top" leftline="true" width="0">
12545 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12546 <row topline="true">
12547 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12548 \begin_inset Text
12549
12550 \begin_layout Standard
12551 a
12552 \end_layout
12553
12554 \end_inset
12555 </cell>
12556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12557 \begin_inset Text
12558
12559 \begin_layout Standard
12560 d
12561 \end_layout
12562
12563 \end_inset
12564 </cell>
12565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12566 \begin_inset Text
12567
12568 \begin_layout Standard
12569 g
12570 \end_layout
12571
12572 \end_inset
12573 </cell>
12574 </row>
12575 <row topline="true">
12576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12577 \begin_inset Text
12578
12579 \begin_layout Standard
12580 b
12581 \end_layout
12582
12583 \end_inset
12584 </cell>
12585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12586 \begin_inset Text
12587
12588 \begin_layout Standard
12589 e
12590 \end_layout
12591
12592 \end_inset
12593 </cell>
12594 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12595 \begin_inset Text
12596
12597 \begin_layout Standard
12598 h
12599 \end_layout
12600
12601 \end_inset
12602 </cell>
12603 </row>
12604 <row topline="true" bottomline="true">
12605 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12606 \begin_inset Text
12607
12608 \begin_layout Standard
12609 c
12610 \end_layout
12611
12612 \end_inset
12613 </cell>
12614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12615 \begin_inset Text
12616
12617 \begin_layout Standard
12618 f
12619 \end_layout
12620
12621 \end_inset
12622 </cell>
12623 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12624 \begin_inset Text
12625
12626 \begin_layout Standard
12627 i
12628 \end_layout
12629
12630 \end_inset
12631 </cell>
12632 </row>
12633 </lyxtabular>
12634
12635 \end_inset
12636
12637
12638 \end_layout
12639
12640 \end_inset
12641
12642  test 
12643 \begin_inset ERT
12644 status collapsed
12645
12646 \begin_layout Standard
12647
12648
12649 \backslash
12650 raisebox{0.85
12651 \backslash
12652 baselineskip}{
12653 \end_layout
12654
12655 \end_inset
12656
12657
12658 \begin_inset Box Frameless
12659 position "t"
12660 hor_pos "c"
12661 has_inner_box 1
12662 inner_pos "c"
12663 use_parbox 0
12664 width "15col%"
12665 special "none"
12666 height "1in"
12667 height_special "totalheight"
12668 status collapsed
12669
12670 \begin_layout Standard
12671 \begin_inset Tabular
12672 <lyxtabular version="3" rows="3" columns="3">
12673 <features>
12674 <column alignment="center" valignment="top" leftline="true" width="0">
12675 <column alignment="center" valignment="top" leftline="true" width="0">
12676 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12677 <row topline="true">
12678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12679 \begin_inset Text
12680
12681 \begin_layout Standard
12682 a
12683 \end_layout
12684
12685 \end_inset
12686 </cell>
12687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12688 \begin_inset Text
12689
12690 \begin_layout Standard
12691 d
12692 \end_layout
12693
12694 \end_inset
12695 </cell>
12696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12697 \begin_inset Text
12698
12699 \begin_layout Standard
12700 g
12701 \end_layout
12702
12703 \end_inset
12704 </cell>
12705 </row>
12706 <row topline="true">
12707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12708 \begin_inset Text
12709
12710 \begin_layout Standard
12711 b
12712 \end_layout
12713
12714 \end_inset
12715 </cell>
12716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12717 \begin_inset Text
12718
12719 \begin_layout Standard
12720 e
12721 \end_layout
12722
12723 \end_inset
12724 </cell>
12725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12726 \begin_inset Text
12727
12728 \begin_layout Standard
12729 h
12730 \end_layout
12731
12732 \end_inset
12733 </cell>
12734 </row>
12735 <row topline="true" bottomline="true">
12736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12737 \begin_inset Text
12738
12739 \begin_layout Standard
12740 c
12741 \end_layout
12742
12743 \end_inset
12744 </cell>
12745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12746 \begin_inset Text
12747
12748 \begin_layout Standard
12749 f
12750 \end_layout
12751
12752 \end_inset
12753 </cell>
12754 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12755 \begin_inset Text
12756
12757 \begin_layout Standard
12758 i
12759 \end_layout
12760
12761 \end_inset
12762 </cell>
12763 </row>
12764 </lyxtabular>
12765
12766 \end_inset
12767
12768
12769 \end_layout
12770
12771 \end_inset
12772
12773
12774 \begin_inset ERT
12775 status collapsed
12776
12777 \begin_layout Standard
12778
12779 }
12780 \end_layout
12781
12782 \end_inset
12783
12784
12785 \end_layout
12786
12787 \begin_layout Itemize
12788 test 
12789 \begin_inset Box Frameless
12790 position "c"
12791 hor_pos "c"
12792 has_inner_box 1
12793 inner_pos "c"
12794 use_parbox 0
12795 width "15col%"
12796 special "none"
12797 height "1in"
12798 height_special "totalheight"
12799 status collapsed
12800
12801 \begin_layout Standard
12802 \begin_inset Tabular
12803 <lyxtabular version="3" rows="3" columns="3">
12804 <features>
12805 <column alignment="center" valignment="top" leftline="true" width="0">
12806 <column alignment="center" valignment="top" leftline="true" width="0">
12807 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12808 <row topline="true">
12809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12810 \begin_inset Text
12811
12812 \begin_layout Standard
12813 a
12814 \end_layout
12815
12816 \end_inset
12817 </cell>
12818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12819 \begin_inset Text
12820
12821 \begin_layout Standard
12822 d
12823 \end_layout
12824
12825 \end_inset
12826 </cell>
12827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12828 \begin_inset Text
12829
12830 \begin_layout Standard
12831 g
12832 \end_layout
12833
12834 \end_inset
12835 </cell>
12836 </row>
12837 <row topline="true">
12838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12839 \begin_inset Text
12840
12841 \begin_layout Standard
12842 b
12843 \end_layout
12844
12845 \end_inset
12846 </cell>
12847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12848 \begin_inset Text
12849
12850 \begin_layout Standard
12851 e
12852 \end_layout
12853
12854 \end_inset
12855 </cell>
12856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12857 \begin_inset Text
12858
12859 \begin_layout Standard
12860 h
12861 \end_layout
12862
12863 \end_inset
12864 </cell>
12865 </row>
12866 <row topline="true" bottomline="true">
12867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12868 \begin_inset Text
12869
12870 \begin_layout Standard
12871 c
12872 \end_layout
12873
12874 \end_inset
12875 </cell>
12876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12877 \begin_inset Text
12878
12879 \begin_layout Standard
12880 f
12881 \end_layout
12882
12883 \end_inset
12884 </cell>
12885 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12886 \begin_inset Text
12887
12888 \begin_layout Standard
12889 i
12890 \end_layout
12891
12892 \end_inset
12893 </cell>
12894 </row>
12895 </lyxtabular>
12896
12897 \end_inset
12898
12899
12900 \end_layout
12901
12902 \end_inset
12903
12904
12905 \end_layout
12906
12907 \begin_layout Itemize
12908 test 
12909 \begin_inset Box Frameless
12910 position "b"
12911 hor_pos "c"
12912 has_inner_box 1
12913 inner_pos "c"
12914 use_parbox 0
12915 width "15col%"
12916 special "none"
12917 height "1in"
12918 height_special "totalheight"
12919 status collapsed
12920
12921 \begin_layout Standard
12922 \begin_inset Tabular
12923 <lyxtabular version="3" rows="3" columns="3">
12924 <features>
12925 <column alignment="center" valignment="top" leftline="true" width="0">
12926 <column alignment="center" valignment="top" leftline="true" width="0">
12927 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12928 <row topline="true">
12929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12930 \begin_inset Text
12931
12932 \begin_layout Standard
12933 a
12934 \end_layout
12935
12936 \end_inset
12937 </cell>
12938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12939 \begin_inset Text
12940
12941 \begin_layout Standard
12942 d
12943 \end_layout
12944
12945 \end_inset
12946 </cell>
12947 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12948 \begin_inset Text
12949
12950 \begin_layout Standard
12951 g
12952 \end_layout
12953
12954 \end_inset
12955 </cell>
12956 </row>
12957 <row topline="true">
12958 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12959 \begin_inset Text
12960
12961 \begin_layout Standard
12962 b
12963 \end_layout
12964
12965 \end_inset
12966 </cell>
12967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12968 \begin_inset Text
12969
12970 \begin_layout Standard
12971 e
12972 \end_layout
12973
12974 \end_inset
12975 </cell>
12976 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12977 \begin_inset Text
12978
12979 \begin_layout Standard
12980 h
12981 \end_layout
12982
12983 \end_inset
12984 </cell>
12985 </row>
12986 <row topline="true" bottomline="true">
12987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12988 \begin_inset Text
12989
12990 \begin_layout Standard
12991 c
12992 \end_layout
12993
12994 \end_inset
12995 </cell>
12996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12997 \begin_inset Text
12998
12999 \begin_layout Standard
13000 f
13001 \end_layout
13002
13003 \end_inset
13004 </cell>
13005 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13006 \begin_inset Text
13007
13008 \begin_layout Standard
13009 i
13010 \end_layout
13011
13012 \end_inset
13013 </cell>
13014 </row>
13015 </lyxtabular>
13016
13017 \end_inset
13018
13019
13020 \end_layout
13021
13022 \end_inset
13023
13024  test 
13025 \begin_inset ERT
13026 status collapsed
13027
13028 \begin_layout Standard
13029
13030
13031 \backslash
13032 raisebox{-0.32
13033 \backslash
13034 baselineskip}{
13035 \end_layout
13036
13037 \end_inset
13038
13039
13040 \begin_inset Box Frameless
13041 position "b"
13042 hor_pos "c"
13043 has_inner_box 1
13044 inner_pos "c"
13045 use_parbox 0
13046 width "15col%"
13047 special "none"
13048 height "1in"
13049 height_special "totalheight"
13050 status collapsed
13051
13052 \begin_layout Standard
13053 \begin_inset Tabular
13054 <lyxtabular version="3" rows="3" columns="3">
13055 <features>
13056 <column alignment="center" valignment="top" leftline="true" width="0">
13057 <column alignment="center" valignment="top" leftline="true" width="0">
13058 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13059 <row topline="true">
13060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13061 \begin_inset Text
13062
13063 \begin_layout Standard
13064 a
13065 \end_layout
13066
13067 \end_inset
13068 </cell>
13069 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13070 \begin_inset Text
13071
13072 \begin_layout Standard
13073 d
13074 \end_layout
13075
13076 \end_inset
13077 </cell>
13078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13079 \begin_inset Text
13080
13081 \begin_layout Standard
13082 g
13083 \end_layout
13084
13085 \end_inset
13086 </cell>
13087 </row>
13088 <row topline="true">
13089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13090 \begin_inset Text
13091
13092 \begin_layout Standard
13093 b
13094 \end_layout
13095
13096 \end_inset
13097 </cell>
13098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13099 \begin_inset Text
13100
13101 \begin_layout Standard
13102 e
13103 \end_layout
13104
13105 \end_inset
13106 </cell>
13107 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13108 \begin_inset Text
13109
13110 \begin_layout Standard
13111 h
13112 \end_layout
13113
13114 \end_inset
13115 </cell>
13116 </row>
13117 <row topline="true" bottomline="true">
13118 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13119 \begin_inset Text
13120
13121 \begin_layout Standard
13122 c
13123 \end_layout
13124
13125 \end_inset
13126 </cell>
13127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13128 \begin_inset Text
13129
13130 \begin_layout Standard
13131 f
13132 \end_layout
13133
13134 \end_inset
13135 </cell>
13136 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13137 \begin_inset Text
13138
13139 \begin_layout Standard
13140 i
13141 \end_layout
13142
13143 \end_inset
13144 </cell>
13145 </row>
13146 </lyxtabular>
13147
13148 \end_inset
13149
13150
13151 \end_layout
13152
13153 \end_inset
13154
13155
13156 \begin_inset ERT
13157 status collapsed
13158
13159 \begin_layout Standard
13160
13161 }
13162 \end_layout
13163
13164 \end_inset
13165
13166
13167 \end_layout
13168
13169 \begin_layout Standard
13170 Como ves, los contenidos de la primera y última filas no se alinean correctament
13171 e con la línea de texto donde está la tabla.
13172  Para conseguir esta alineación, el cuadro (minipágina) debe ponerse en
13173  un cuadro elevado (
13174 \begin_inset Quotes eld
13175 \end_inset
13176
13177 raisebox
13178 \begin_inset Quotes erd
13179 \end_inset
13180
13181 )
13182 \begin_inset Foot
13183 status collapsed
13184
13185 \begin_layout Standard
13186 El uso del comando 
13187 \series bold
13188
13189 \backslash
13190 raisebox
13191 \series default
13192  se explica en la sección\InsetSpace ~
13193
13194 \begin_inset LatexCommand ref
13195 reference "sub:Alineación-Vertical"
13196
13197 \end_inset
13198
13199 .
13200 \end_layout
13201
13202 \end_inset
13203
13204 .
13205  En el ejemplo anterior, la segunda tabla del primer ítem está alineada
13206  usando el comando en ERT
13207 \end_layout
13208
13209 \begin_layout Standard
13210
13211 \series bold
13212
13213 \backslash
13214 raisebox{0.85
13215 \backslash
13216 baselineskip}{
13217 \end_layout
13218
13219 \begin_layout Standard
13220 antes del cuadro.
13221  Tras él, se pone la llave de cierre 
13222 \series bold
13223 }
13224 \series default
13225  también como ERT.
13226  Para la segunda tabla en el tercer ítem se usa el comando 
13227 \end_layout
13228
13229 \begin_layout Standard
13230
13231 \series bold
13232
13233 \backslash
13234 raisebox{-0.32
13235 \backslash
13236 baselineskip}{
13237 \end_layout
13238
13239 \begin_layout Standard
13240 \begin_inset Note Greyedout
13241 status open
13242
13243 \begin_layout Standard
13244
13245 \series bold
13246 Not
13247 \series default
13248 a: La alineación del contenido de la fila con la línea del texto adyacente
13249  no es exacta.
13250  El factor necesario del comando 
13251 \series bold
13252
13253 \backslash
13254 raisebox
13255 \series default
13256  para este alineamiento depende de la fuente del documento, del tamaño de
13257  la fuente y del grosor de línea de la tabla.
13258 \end_layout
13259
13260 \end_inset
13261
13262
13263 \end_layout
13264
13265 \begin_layout Section
13266 Tablas Coloreadas
13267 \begin_inset LatexCommand label
13268 name "sec:Tablas-Coloreadas"
13269
13270 \end_inset
13271
13272
13273 \begin_inset LatexCommand index
13274 name "Tablas ! Coloreadas"
13275
13276 \end_inset
13277
13278
13279 \end_layout
13280
13281 \begin_layout Subsection
13282 Celdas Coloreadas
13283 \begin_inset LatexCommand index
13284 name "Tablas Coloreadas ! Celdas"
13285
13286 \end_inset
13287
13288
13289 \begin_inset LatexCommand index
13290 name "Color ! en Celdas de Tablas"
13291
13292 \end_inset
13293
13294
13295 \end_layout
13296
13297 \begin_layout Standard
13298 \begin_inset Float table
13299 placement h
13300 wide false
13301 sideways false
13302 status open
13303
13304 \begin_layout Standard
13305 \begin_inset Caption
13306
13307 \begin_layout Standard
13308 \begin_inset LatexCommand label
13309 name "tab:Tabla-coloreada-sin"
13310
13311 \end_inset
13312
13313 Tabla coloreada sin usar el paquete 
13314 \series bold
13315 colortbl
13316 \series default
13317
13318 \begin_inset OptArg
13319 status collapsed
13320
13321 \begin_layout Standard
13322 Tabla sin colortbl
13323 \end_layout
13324
13325 \end_inset
13326
13327
13328 \end_layout
13329
13330 \end_inset
13331
13332
13333 \end_layout
13334
13335 \begin_layout Standard
13336 \align center
13337 \begin_inset Tabular
13338 <lyxtabular version="3" rows="3" columns="3">
13339 <features>
13340 <column alignment="center" valignment="top" leftline="true" width="0">
13341 <column alignment="center" valignment="top" leftline="true" width="0">
13342 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
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 a
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 red
13361 b
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 red
13372 c
13373 \end_layout
13374
13375 \end_inset
13376 </cell>
13377 </row>
13378 <row topline="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 d
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 e
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 f
13408 \end_layout
13409
13410 \end_inset
13411 </cell>
13412 </row>
13413 <row topline="true" bottomline="true">
13414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13415 \begin_inset Text
13416
13417 \begin_layout Standard
13418
13419 \color green
13420 g
13421 \end_layout
13422
13423 \end_inset
13424 </cell>
13425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13426 \begin_inset Text
13427
13428 \begin_layout Standard
13429
13430 \color blue
13431 h
13432 \end_layout
13433
13434 \end_inset
13435 </cell>
13436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13437 \begin_inset Text
13438
13439 \begin_layout Standard
13440
13441 \color blue
13442 i
13443 \end_layout
13444
13445 \end_inset
13446 </cell>
13447 </row>
13448 </lyxtabular>
13449
13450 \end_inset
13451
13452
13453 \end_layout
13454
13455 \end_inset
13456
13457
13458 \end_layout
13459
13460 \begin_layout Standard
13461 Si solo necesitas color en el texto, marca las celdas y elige un color en
13462  el menú 
13463 \family sans
13464 Editar\SpecialChar \menuseparator
13465 Estilo\InsetSpace ~
13466 del\InsetSpace ~
13467 Texto
13468 \family default
13469 .
13470  Esto se ha hecho en la tabla\InsetSpace ~
13471
13472 \begin_inset LatexCommand ref
13473 reference "tab:Tabla-coloreada-sin"
13474
13475 \end_inset
13476
13477 .
13478  En cualquier otro caso hay que usar el paquete LaTeX 
13479 \series bold
13480 colortbl
13481 \series default
13482 .
13483 \begin_inset LatexCommand index
13484 name "LaTeX-paquetes ! colortbl"
13485
13486 \end_inset
13487
13488
13489 \end_layout
13490
13491 \begin_layout Standard
13492 Para crear tablas coloreadas, 
13493 \series bold
13494 colortbl
13495 \series default
13496  debe cargarse en el preámbulo con la línea
13497 \end_layout
13498
13499 \begin_layout Standard
13500
13501 \series bold
13502
13503 \backslash
13504 usepackage{colortbl}
13505 \end_layout
13506
13507 \begin_layout Standard
13508 El color de una columna se define con el comando
13509 \end_layout
13510
13511 \begin_layout Standard
13512
13513 \series bold
13514
13515 \backslash
13516 columncolor{nombre del color}
13517 \end_layout
13518
13519 \begin_layout Standard
13520 dentro del comando 
13521 \series bold
13522 >{ }
13523 \series default
13524 .
13525  Más sobre el comando 
13526 \series bold
13527 >{}
13528 \series default
13529  se explica en la sección\InsetSpace ~
13530
13531 \begin_inset LatexCommand ref
13532 reference "sub:Cálculos-en-Multicolumnas"
13533
13534 \end_inset
13535
13536 .
13537 \end_layout
13538
13539 \begin_layout Standard
13540 Los siguientes nombres de color están predefinidos:
13541 \end_layout
13542
13543 \begin_layout Standard
13544
13545 \family sans
13546 red
13547 \family default
13548
13549 \family sans
13550 green
13551 \family default
13552
13553 \family sans
13554 yellow, blue
13555 \family default
13556
13557 \family sans
13558 cyan
13559 \family default
13560 \series bold
13561 ,
13562 \series default
13563  
13564 \family sans
13565 magenta, black
13566 \family default
13567
13568 \family sans
13569 white
13570 \end_layout
13571
13572 \begin_layout Standard
13573 \begin_inset VSpace medskip
13574 \end_inset
13575
13576
13577 \end_layout
13578
13579 \begin_layout Standard
13580 Puedes definir tus propios colores con el comando
13581 \end_layout
13582
13583 \begin_layout Standard
13584
13585 \series bold
13586
13587 \backslash
13588 def\SpecialChar \textcompwordmark{}
13589 inecolor{nombre del color}{modelo de color}{valores de color}
13590 \end_layout
13591
13592 \begin_layout Standard
13593 El modelo de color puede ser
13594 \end_layout
13595
13596 \begin_layout Labeling
13597 \labelwidthstring 00.00.0000
13598 cmyk: cyan, magenta, yellow, black
13599 \end_layout
13600
13601 \begin_layout Labeling
13602 \labelwidthstring 00.00.0000
13603 rgb: red, green, blue
13604 \end_layout
13605
13606 \begin_layout Labeling
13607 \labelwidthstring 00.00.0000
13608 gray: gray
13609 \end_layout
13610
13611 \begin_layout Standard
13612 y los valores de color son números separados por comas entre 0 y 1 que describen
13613  el factor para el color correspondiente del modelo de color.
13614 \end_layout
13615
13616 \begin_layout Standard
13617 Por ejemplo, puedes definir el color
13618 \series bold
13619  
13620 \series default
13621
13622 \begin_inset Quotes eld
13623 \end_inset
13624
13625
13626 \emph on
13627 verde oscuro
13628 \emph default
13629
13630 \begin_inset Quotes erd
13631 \end_inset
13632
13633  en el preámbulo con
13634 \end_layout
13635
13636 \begin_layout Standard
13637
13638 \series bold
13639
13640 \backslash
13641 def\SpecialChar \textcompwordmark{}
13642 inecolor{verdeoscuro}{cmyk}{0.5, 0, 1, 0.5}
13643 \end_layout
13644
13645 \begin_layout Standard
13646 y el color 
13647 \begin_inset Quotes eld
13648 \end_inset
13649
13650
13651 \emph on
13652 gris claro
13653 \emph default
13654
13655 \begin_inset Quotes erd
13656 \end_inset
13657
13658  con
13659 \end_layout
13660
13661 \begin_layout Standard
13662
13663 \series bold
13664
13665 \backslash
13666 def\SpecialChar \textcompwordmark{}
13667 inecolor{grisclaro}{gray}{0.8}
13668 \end_layout
13669
13670 \begin_layout Standard
13671 \begin_inset VSpace medskip
13672 \end_inset
13673
13674
13675 \end_layout
13676
13677 \begin_layout Standard
13678 Las líneas se colorean con el comando
13679 \end_layout
13680
13681 \begin_layout Standard
13682
13683 \series bold
13684
13685 \backslash
13686 rowcolor{nombre del color}
13687 \end_layout
13688
13689 \begin_layout Standard
13690 y las celdas se colorean con el comando
13691 \end_layout
13692
13693 \begin_layout Standard
13694
13695 \series bold
13696
13697 \backslash
13698 cellcolor{nombre del color}
13699 \end_layout
13700
13701 \begin_layout Standard
13702 Ambos comandos se insertan al principio de una celda como ERT.
13703 \end_layout
13704
13705 \begin_layout Standard
13706 Para colorear caracteres en la tabla marca las celdas y usa el menú 
13707 \family sans
13708 Editar\SpecialChar \menuseparator
13709 Estilo\InsetSpace ~
13710 del\InsetSpace ~
13711 Texto
13712 \family default
13713 .
13714  Si una celda contiene ERT marca solo los caracteres, si no el ERT con color
13715  puede ocasionar errores de LaTeX.
13716 \end_layout
13717
13718 \begin_layout Standard
13719 \begin_inset VSpace bigskip
13720 \end_inset
13721
13722
13723 \end_layout
13724
13725 \begin_layout Standard
13726 Para crear la tabla\InsetSpace ~
13727
13728 \begin_inset LatexCommand ref
13729 reference "tab:Tabla-coloreada-con"
13730
13731 \end_inset
13732
13733  haz lo siguiente: el color de la primera columna debe ser 
13734 \emph on
13735 verde oscuro
13736 \emph default
13737 , entonces inserta
13738 \end_layout
13739
13740 \begin_layout Standard
13741
13742 \series bold
13743 >{
13744 \backslash
13745 columncolor{verdeoscuro}
13746 \backslash
13747 centering}c
13748 \end_layout
13749
13750 \begin_layout Standard
13751 como argumento LaTeX para esta columna.
13752  La primera fila debe ser azul, por tanto inserta el comando ERT
13753 \end_layout
13754
13755 \begin_layout Standard
13756
13757 \series bold
13758
13759 \backslash
13760 rowcolow{cyan}
13761 \end_layout
13762
13763 \begin_layout Standard
13764 en la primera celda de esta fila.
13765  Observa que esto sobreescribe el color de la columna para la primera celda.
13766  La última celda de la última fila se colorea magenta insertando el comando
13767  ERT
13768 \end_layout
13769
13770 \begin_layout Standard
13771
13772 \series bold
13773
13774 \backslash
13775 cellcolor{magenta}
13776 \end_layout
13777
13778 \begin_layout Standard
13779 Ahora podrían colorearse los caracteres usando el menú 
13780 \family sans
13781 Editar\SpecialChar \menuseparator
13782 Estilo\InsetSpace ~
13783 del\InsetSpace ~
13784 Texto
13785 \family default
13786 .
13787 \end_layout
13788
13789 \begin_layout Standard
13790 \begin_inset Float table
13791 placement h
13792 wide false
13793 sideways false
13794 status open
13795
13796 \begin_layout Standard
13797 \begin_inset Caption
13798
13799 \begin_layout Standard
13800 \begin_inset LatexCommand label
13801 name "tab:Tabla-coloreada-con"
13802
13803 \end_inset
13804
13805 Tabla coloreada usando el paquete 
13806 \series bold
13807 colortbl
13808 \series default
13809
13810 \begin_inset OptArg
13811 status collapsed
13812
13813 \begin_layout Standard
13814 Tabla con colortbl
13815 \end_layout
13816
13817 \end_inset
13818
13819
13820 \end_layout
13821
13822 \end_inset
13823
13824
13825 \end_layout
13826
13827 \begin_layout Standard
13828 \align center
13829 \begin_inset Tabular
13830 <lyxtabular version="3" rows="3" columns="3">
13831 <features>
13832 <column alignment="center" valignment="top" leftline="true" width="0" special=">{\columncolor{verdeoscuro}\centering}c">
13833 <column alignment="center" valignment="top" width="0">
13834 <column alignment="center" valignment="top" width="0">
13835 <row>
13836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13837 \begin_inset Text
13838
13839 \begin_layout Standard
13840 \begin_inset ERT
13841 status collapsed
13842
13843 \begin_layout Standard
13844
13845
13846 \backslash
13847 rowcolor{cyan}
13848 \end_layout
13849
13850 \end_inset
13851
13852
13853 \color magenta
13854 a
13855 \end_layout
13856
13857 \end_inset
13858 </cell>
13859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13860 \begin_inset Text
13861
13862 \begin_layout Standard
13863
13864 \color red
13865 b
13866 \end_layout
13867
13868 \end_inset
13869 </cell>
13870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13871 \begin_inset Text
13872
13873 \begin_layout Standard
13874
13875 \color red
13876 c
13877 \end_layout
13878
13879 \end_inset
13880 </cell>
13881 </row>
13882 <row>
13883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13884 \begin_inset Text
13885
13886 \begin_layout Standard
13887
13888 \color yellow
13889 d
13890 \end_layout
13891
13892 \end_inset
13893 </cell>
13894 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13895 \begin_inset Text
13896
13897 \begin_layout Standard
13898
13899 \color blue
13900 e
13901 \end_layout
13902
13903 \end_inset
13904 </cell>
13905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13906 \begin_inset Text
13907
13908 \begin_layout Standard
13909
13910 \color blue
13911 f
13912 \end_layout
13913
13914 \end_inset
13915 </cell>
13916 </row>
13917 <row>
13918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13919 \begin_inset Text
13920
13921 \begin_layout Standard
13922
13923 \color yellow
13924 g
13925 \end_layout
13926
13927 \end_inset
13928 </cell>
13929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13930 \begin_inset Text
13931
13932 \begin_layout Standard
13933
13934 \color blue
13935 h
13936 \end_layout
13937
13938 \end_inset
13939 </cell>
13940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13941 \begin_inset Text
13942
13943 \begin_layout Standard
13944 \begin_inset ERT
13945 status collapsed
13946
13947 \begin_layout Standard
13948
13949
13950 \backslash
13951 cellcolor{magenta}
13952 \end_layout
13953
13954 \end_inset
13955
13956
13957 \color green
13958 i
13959 \end_layout
13960
13961 \end_inset
13962 </cell>
13963 </row>
13964 </lyxtabular>
13965
13966 \end_inset
13967
13968
13969 \end_layout
13970
13971 \end_inset
13972
13973
13974 \end_layout
13975
13976 \begin_layout Subsection
13977 Líneas coloreadas
13978 \begin_inset LatexCommand index
13979 name "Tablas Coloreadas ! Líneas"
13980
13981 \end_inset
13982
13983
13984 \begin_inset LatexCommand index
13985 name "Color ! en Líneas de Tabla"
13986
13987 \end_inset
13988
13989
13990 \end_layout
13991
13992 \begin_layout Standard
13993 Como se describe en la sección\InsetSpace ~
13994
13995 \begin_inset LatexCommand ref
13996 reference "sub:Grosor-de-Líneas"
13997
13998 \end_inset
13999
14000 , el grosor para todas las líneas en una tabla puede ajustarse con el comando
14001  
14002 \series bold
14003
14004 \backslash
14005 arrayrulewidth
14006 \series default
14007 .
14008  Se ha puesto 1.5\InsetSpace \thinspace{}
14009 pt para todas las tablas de esta sección.
14010 \begin_inset ERT
14011 status collapsed
14012
14013 \begin_layout Standard
14014
14015
14016 \backslash
14017 setlength{
14018 \backslash
14019 arrayrulewidth}{1.5pt}
14020 \end_layout
14021
14022 \end_inset
14023
14024
14025 \end_layout
14026
14027 \begin_layout Standard
14028 Por ejemplo, para colorear todas las líneas verticales en verde, crea en
14029  el preámbulo del documento el siguiente formato de columna, de acuerdo
14030  a lo descrito en la sección\InsetSpace ~
14031
14032 \begin_inset LatexCommand ref
14033 reference "sub:Formato-Personalizado"
14034
14035 \end_inset
14036
14037 :
14038 \end_layout
14039
14040 \begin_layout Standard
14041
14042 \series bold
14043
14044 \backslash
14045 newcolumntype{W}{!{
14046 \backslash
14047 color{green}
14048 \backslash
14049 vline}}
14050 \end_layout
14051
14052 \begin_layout Standard
14053 Para la tabla\InsetSpace ~
14054
14055 \begin_inset LatexCommand ref
14056 reference "tab:Tabla-con-verticales-coloreadas"
14057
14058 \end_inset
14059
14060  se usó el argumento LaTeX
14061 \end_layout
14062
14063 \begin_layout Standard
14064
14065 \series bold
14066 WcW
14067 \end_layout
14068
14069 \begin_layout Standard
14070 para la última columna y
14071 \end_layout
14072
14073 \begin_layout Standard
14074
14075 \series bold
14076 Wc
14077 \end_layout
14078
14079 \begin_layout Standard
14080 para las demás.
14081 \end_layout
14082
14083 \begin_layout Standard
14084 Si quieres tener varios colores, define más formatos de columna.
14085 \end_layout
14086
14087 \begin_layout Standard
14088 \begin_inset Float table
14089 wide false
14090 sideways false
14091 status collapsed
14092
14093 \begin_layout Standard
14094 \begin_inset Caption
14095
14096 \begin_layout Standard
14097 \begin_inset LatexCommand label
14098 name "tab:Tabla-con-verticales-coloreadas"
14099
14100 \end_inset
14101
14102 Tabla con líneas verticales coloreadas
14103 \end_layout
14104
14105 \end_inset
14106
14107
14108 \end_layout
14109
14110 \begin_layout Standard
14111 \align center
14112 \begin_inset Tabular
14113 <lyxtabular version="3" rows="3" columns="3">
14114 <features>
14115 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14116 <column alignment="center" valignment="top" width="0" special="Wc">
14117 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14118 <row topline="true">
14119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14120 \begin_inset Text
14121
14122 \begin_layout Standard
14123 sd
14124 \end_layout
14125
14126 \end_inset
14127 </cell>
14128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14129 \begin_inset Text
14130
14131 \begin_layout Standard
14132
14133 \end_layout
14134
14135 \end_inset
14136 </cell>
14137 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14138 \begin_inset Text
14139
14140 \begin_layout Standard
14141
14142 \end_layout
14143
14144 \end_inset
14145 </cell>
14146 </row>
14147 <row topline="true">
14148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14149 \begin_inset Text
14150
14151 \begin_layout Standard
14152
14153 \end_layout
14154
14155 \end_inset
14156 </cell>
14157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14158 \begin_inset Text
14159
14160 \begin_layout Standard
14161 sd
14162 \end_layout
14163
14164 \end_inset
14165 </cell>
14166 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14167 \begin_inset Text
14168
14169 \begin_layout Standard
14170
14171 \end_layout
14172
14173 \end_inset
14174 </cell>
14175 </row>
14176 <row topline="true" bottomline="true">
14177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14178 \begin_inset Text
14179
14180 \begin_layout Standard
14181
14182 \end_layout
14183
14184 \end_inset
14185 </cell>
14186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14187 \begin_inset Text
14188
14189 \begin_layout Standard
14190
14191 \end_layout
14192
14193 \end_inset
14194 </cell>
14195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14196 \begin_inset Text
14197
14198 \begin_layout Standard
14199 sd
14200 \end_layout
14201
14202 \end_inset
14203 </cell>
14204 </row>
14205 </lyxtabular>
14206
14207 \end_inset
14208
14209
14210 \end_layout
14211
14212 \end_inset
14213
14214
14215 \end_layout
14216
14217 \begin_layout Standard
14218 \begin_inset VSpace bigskip
14219 \end_inset
14220
14221 Para colorear líneas horizontales, por ejemplo en rojo, como en la tabla\InsetSpace ~
14222
14223 \begin_inset LatexCommand ref
14224 reference "tab:Tabla-con-horizontales-coloreadas"
14225
14226 \end_inset
14227
14228 , inserta estos comandos en ERT antes de la tabla o del flotante:
14229 \end_layout
14230
14231 \begin_layout Standard
14232
14233 \series bold
14234
14235 \backslash
14236 let
14237 \backslash
14238 myHlineC
14239 \backslash
14240 hline
14241 \newline
14242
14243 \backslash
14244 renewcommand{
14245 \backslash
14246 hline}{
14247 \backslash
14248 arrayrulecolor{red}
14249 \backslash
14250 myHlineC
14251 \backslash
14252 arrayrulecolor{black}}
14253 \end_layout
14254
14255 \begin_layout Standard
14256 \begin_inset ERT
14257 status collapsed
14258
14259 \begin_layout Standard
14260
14261
14262 \backslash
14263 let
14264 \backslash
14265 myHlineC
14266 \backslash
14267 hline
14268 \end_layout
14269
14270 \begin_layout Standard
14271
14272
14273 \backslash
14274 renewcommand{
14275 \backslash
14276 hline}{
14277 \backslash
14278 arrayrulecolor{red}
14279 \backslash
14280 myHlineC
14281 \backslash
14282 arrayrulecolor{black}}
14283 \end_layout
14284
14285 \end_inset
14286
14287
14288 \begin_inset Float table
14289 wide false
14290 sideways false
14291 status open
14292
14293 \begin_layout Standard
14294 \begin_inset Caption
14295
14296 \begin_layout Standard
14297 \begin_inset LatexCommand label
14298 name "tab:Tabla-con-horizontales-coloreadas"
14299
14300 \end_inset
14301
14302 Tabla con líneas horizontales coloreadas
14303 \end_layout
14304
14305 \end_inset
14306
14307
14308 \end_layout
14309
14310 \begin_layout Standard
14311 \align center
14312 \begin_inset Tabular
14313 <lyxtabular version="3" rows="3" columns="3">
14314 <features>
14315 <column alignment="center" valignment="top" leftline="true" width="0">
14316 <column alignment="center" valignment="top" leftline="true" width="0">
14317 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14318 <row topline="true">
14319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14320 \begin_inset Text
14321
14322 \begin_layout Standard
14323 sd
14324 \end_layout
14325
14326 \end_inset
14327 </cell>
14328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14329 \begin_inset Text
14330
14331 \begin_layout Standard
14332
14333 \end_layout
14334
14335 \end_inset
14336 </cell>
14337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14338 \begin_inset Text
14339
14340 \begin_layout Standard
14341
14342 \end_layout
14343
14344 \end_inset
14345 </cell>
14346 </row>
14347 <row topline="true">
14348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14349 \begin_inset Text
14350
14351 \begin_layout Standard
14352
14353 \end_layout
14354
14355 \end_inset
14356 </cell>
14357 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14358 \begin_inset Text
14359
14360 \begin_layout Standard
14361 sd
14362 \end_layout
14363
14364 \end_inset
14365 </cell>
14366 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14367 \begin_inset Text
14368
14369 \begin_layout Standard
14370
14371 \end_layout
14372
14373 \end_inset
14374 </cell>
14375 </row>
14376 <row topline="true" bottomline="true">
14377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14378 \begin_inset Text
14379
14380 \begin_layout Standard
14381
14382 \end_layout
14383
14384 \end_inset
14385 </cell>
14386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14387 \begin_inset Text
14388
14389 \begin_layout Standard
14390
14391 \end_layout
14392
14393 \end_inset
14394 </cell>
14395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14396 \begin_inset Text
14397
14398 \begin_layout Standard
14399 sd
14400 \end_layout
14401
14402 \end_inset
14403 </cell>
14404 </row>
14405 </lyxtabular>
14406
14407 \end_inset
14408
14409
14410 \end_layout
14411
14412 \end_inset
14413
14414
14415 \end_layout
14416
14417 \begin_layout Standard
14418 \begin_inset ERT
14419 status collapsed
14420
14421 \begin_layout Standard
14422
14423
14424 \backslash
14425 pagebreak 
14426 \end_layout
14427
14428 \end_inset
14429
14430
14431 \end_layout
14432
14433 \begin_layout Standard
14434 Para volver al color de línea negro predeterminado inserta este comando
14435  en ERT detrás de la tabla o el flotante:
14436 \end_layout
14437
14438 \begin_layout Standard
14439
14440 \series bold
14441
14442 \backslash
14443 renewcommand{
14444 \backslash
14445 hline}{
14446 \backslash
14447 myHlineC}
14448 \end_layout
14449
14450 \begin_layout Standard
14451 La tabla\InsetSpace ~
14452
14453 \begin_inset LatexCommand ref
14454 reference "tab:Tabla-con-líneas-coloreadas"
14455
14456 \end_inset
14457
14458  es un ejemplo con líneas verticales y horizontales coloreadas.
14459 \end_layout
14460
14461 \begin_layout Standard
14462 \begin_inset Float table
14463 wide false
14464 sideways false
14465 status open
14466
14467 \begin_layout Standard
14468 \begin_inset Caption
14469
14470 \begin_layout Standard
14471 \begin_inset LatexCommand label
14472 name "tab:Tabla-con-líneas-coloreadas"
14473
14474 \end_inset
14475
14476 Tabla con líneas coloreadas
14477 \end_layout
14478
14479 \end_inset
14480
14481
14482 \end_layout
14483
14484 \begin_layout Standard
14485 \align center
14486 \begin_inset Tabular
14487 <lyxtabular version="3" rows="3" columns="3">
14488 <features>
14489 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14490 <column alignment="center" valignment="top" width="0" special="Wc">
14491 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14492 <row topline="true">
14493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14494 \begin_inset Text
14495
14496 \begin_layout Standard
14497 sd
14498 \end_layout
14499
14500 \end_inset
14501 </cell>
14502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14503 \begin_inset Text
14504
14505 \begin_layout Standard
14506
14507 \end_layout
14508
14509 \end_inset
14510 </cell>
14511 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14512 \begin_inset Text
14513
14514 \begin_layout Standard
14515
14516 \end_layout
14517
14518 \end_inset
14519 </cell>
14520 </row>
14521 <row topline="true">
14522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14523 \begin_inset Text
14524
14525 \begin_layout Standard
14526
14527 \end_layout
14528
14529 \end_inset
14530 </cell>
14531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14532 \begin_inset Text
14533
14534 \begin_layout Standard
14535 sd
14536 \end_layout
14537
14538 \end_inset
14539 </cell>
14540 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14541 \begin_inset Text
14542
14543 \begin_layout Standard
14544
14545 \end_layout
14546
14547 \end_inset
14548 </cell>
14549 </row>
14550 <row topline="true" bottomline="true">
14551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14552 \begin_inset Text
14553
14554 \begin_layout Standard
14555
14556 \end_layout
14557
14558 \end_inset
14559 </cell>
14560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14561 \begin_inset Text
14562
14563 \begin_layout Standard
14564
14565 \end_layout
14566
14567 \end_inset
14568 </cell>
14569 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14570 \begin_inset Text
14571
14572 \begin_layout Standard
14573 sd
14574 \end_layout
14575
14576 \end_inset
14577 </cell>
14578 </row>
14579 </lyxtabular>
14580
14581 \end_inset
14582
14583
14584 \end_layout
14585
14586 \end_inset
14587
14588
14589 \end_layout
14590
14591 \begin_layout Standard
14592 \begin_inset ERT
14593 status collapsed
14594
14595 \begin_layout Standard
14596
14597
14598 \backslash
14599 renewcommand{
14600 \backslash
14601 hline}{
14602 \backslash
14603 myHlineC}
14604 \end_layout
14605
14606 \end_inset
14607
14608
14609 \end_layout
14610
14611 \begin_layout Standard
14612 \begin_inset ERT
14613 status collapsed
14614
14615 \begin_layout Standard
14616
14617
14618 \backslash
14619 setlength{
14620 \backslash
14621 arrayrulewidth}{0.4pt}
14622 \end_layout
14623
14624 \end_inset
14625
14626
14627 \end_layout
14628
14629 \begin_layout Section
14630 Personalización de Tablas
14631 \begin_inset LatexCommand index
14632 name "Personalización de Tablas"
14633
14634 \end_inset
14635
14636
14637 \begin_inset LatexCommand index
14638 name "Tablas ! Personalización"
14639
14640 \end_inset
14641
14642
14643 \end_layout
14644
14645 \begin_layout Subsection
14646 Espacio Adicional en Filas
14647 \begin_inset LatexCommand label
14648 name "sub:Espacio-adicional"
14649
14650 \end_inset
14651
14652
14653 \begin_inset LatexCommand index
14654 name "Personalización de Tablas ! Espacio Adicional en Filas"
14655
14656 \end_inset
14657
14658
14659 \end_layout
14660
14661 \begin_layout Standard
14662 Es posible añadir espacio vertical a las filas de una tabla en la solapa
14663  
14664 \family sans
14665 Bordes,
14666 \family default
14667  del diálogo de configuración de tablas.
14668  En el marco 
14669 \family sans
14670 Espacio\InsetSpace ~
14671 adicional
14672 \family default
14673  dispones de tres posibilidades:
14674 \end_layout
14675
14676 \begin_layout Description
14677 Superior\InsetSpace ~
14678 de\InsetSpace ~
14679 la\InsetSpace ~
14680 fila añade espacio sobre los caracteres de la fila.
14681  Si la tabla es de estilo formal
14682 \begin_inset Foot
14683 status collapsed
14684
14685 \begin_layout Standard
14686 Las tablas formales se explican en la sección\InsetSpace ~
14687
14688 \begin_inset LatexCommand ref
14689 reference "sec:Tablas-Formales"
14690
14691 \end_inset
14692
14693
14694 \end_layout
14695
14696 \end_inset
14697
14698  LyX insertará 0.5\InsetSpace \thinspace{}
14699 em por defecto.
14700  Si la tabla es de estilo normal el espacio adicional destruirá las líneas
14701  verticales, como se ve en la tabla siguiente: 
14702 \begin_inset Tabular
14703 <lyxtabular version="3" rows="3" columns="1">
14704 <features>
14705 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14706 <row topline="true">
14707 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14708 \begin_inset Text
14709
14710 \begin_layout Standard
14711 A
14712 \end_layout
14713
14714 \end_inset
14715 </cell>
14716 </row>
14717 <row topline="true" topspace="3mm">
14718 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14719 \begin_inset Text
14720
14721 \begin_layout Standard
14722 3\InsetSpace \thinspace{}
14723 mm sobre la fila
14724 \end_layout
14725
14726 \end_inset
14727 </cell>
14728 </row>
14729 <row topline="true" bottomline="true">
14730 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14731 \begin_inset Text
14732
14733 \begin_layout Standard
14734 C
14735 \end_layout
14736
14737 \end_inset
14738 </cell>
14739 </row>
14740 </lyxtabular>
14741
14742 \end_inset
14743
14744
14745 \newline
14746 Así pues, insertar espacio superior en tablas normales solo es útil en tablas
14747  sin líneas verticales.
14748 \end_layout
14749
14750 \begin_layout Description
14751 Inferior\InsetSpace ~
14752 de\InsetSpace ~
14753 la\InsetSpace ~
14754 fila añade espacio bajo los caracteres de la fila.
14755  Si la tabla es formal LyX inserta por defecto 0.5\InsetSpace \thinspace{}
14756 em; si la tabla es normal
14757  inserta 2\InsetSpace \thinspace{}
14758 pt.
14759  
14760 \end_layout
14761
14762 \begin_layout Description
14763 Entre\InsetSpace ~
14764 las\InsetSpace ~
14765 filas añade espacio entre la fila actual y la siguiente.
14766  Si la tabla es formal LyX inserta 0.5\InsetSpace \thinspace{}
14767 em por defecto.
14768  En tablas normales, el espacio adicional destruirá las líneas verticales
14769  de la tabla, como se ve en la siguiente: 
14770 \begin_inset Tabular
14771 <lyxtabular version="3" rows="3" columns="1">
14772 <features>
14773 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14774 <row topline="true">
14775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14776 \begin_inset Text
14777
14778 \begin_layout Standard
14779 A
14780 \end_layout
14781
14782 \end_inset
14783 </cell>
14784 </row>
14785 <row topline="true" interlinespace="3mm">
14786 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14787 \begin_inset Text
14788
14789 \begin_layout Standard
14790 \begin_inset Formula $\downarrow$
14791 \end_inset
14792
14793  3\InsetSpace \thinspace{}
14794 mm entre las filas
14795 \end_layout
14796
14797 \end_inset
14798 </cell>
14799 </row>
14800 <row topline="true" bottomline="true">
14801 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14802 \begin_inset Text
14803
14804 \begin_layout Standard
14805 \begin_inset Formula $\uparrow$
14806 \end_inset
14807
14808  3\InsetSpace \thinspace{}
14809 mm entre las filas 
14810 \begin_inset Formula $\uparrow$
14811 \end_inset
14812
14813
14814 \end_layout
14815
14816 \end_inset
14817 </cell>
14818 </row>
14819 </lyxtabular>
14820
14821 \end_inset
14822
14823
14824 \newline
14825 Así pues, los espacios adicionales entre filas de tablas normales sólo sirven
14826  para tablas sin líneas verticales.
14827 \end_layout
14828
14829 \begin_layout Standard
14830 Para añadir altura vertical extra a todas las celdas de todas las tablas,
14831  utiliza el siguiente comando en el preámbulo:
14832 \end_layout
14833
14834 \begin_layout Standard
14835
14836 \series bold
14837
14838 \backslash
14839 setlength{
14840 \backslash
14841 extrarowheight}{altura}
14842 \end_layout
14843
14844 \begin_layout Standard
14845 Esto tiene el inconveniente de que el texto de las celdas no estará exactamente
14846  centrado en vertical.
14847 \end_layout
14848
14849 \begin_layout Standard
14850
14851 \end_layout
14852
14853 \begin_layout Subsection
14854 Alineación Especial de Celdas
14855 \begin_inset LatexCommand index
14856 name "Personalización de Tablas ! Alineación Especial de Celdas"
14857
14858 \end_inset
14859
14860
14861 \end_layout
14862
14863 \begin_layout Standard
14864 A veces mejora la presentación si las entradas en las celdas de una columna
14865  se alinean con un carácter determinado, p.\InsetSpace \thinspace{}
14866 e.\InsetSpace ~
14867 el separador decimal, como en
14868  la tabla\InsetSpace ~
14869
14870 \begin_inset LatexCommand ref
14871 reference "tab:Tabla-con-celdas-de"
14872
14873 \end_inset
14874
14875 .
14876 \end_layout
14877
14878 \begin_layout Standard
14879 \begin_inset Float table
14880 wide false
14881 sideways false
14882 status open
14883
14884 \begin_layout Standard
14885 \begin_inset Caption
14886
14887 \begin_layout Standard
14888 \begin_inset LatexCommand label
14889 name "tab:Tabla-con-celdas-de"
14890
14891 \end_inset
14892
14893 Tabla con celdas alineadas con el separador decimal.
14894 \end_layout
14895
14896 \end_inset
14897
14898
14899 \end_layout
14900
14901 \begin_layout Standard
14902 \align center
14903 \begin_inset Tabular
14904 <lyxtabular version="3" rows="4" columns="2">
14905 <features>
14906 <column alignment="right" valignment="top" width="0">
14907 <column alignment="left" valignment="top" width="0" special="@{}l">
14908 <row bottomline="true">
14909 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
14910 \begin_inset Text
14911
14912 \begin_layout Standard
14913 encabezado
14914 \end_layout
14915
14916 \end_inset
14917 </cell>
14918 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14919 \begin_inset Text
14920
14921 \begin_layout Standard
14922
14923 \end_layout
14924
14925 \end_inset
14926 </cell>
14927 </row>
14928 <row>
14929 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14930 \begin_inset Text
14931
14932 \begin_layout Standard
14933 12.
14934 \end_layout
14935
14936 \end_inset
14937 </cell>
14938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14939 \begin_inset Text
14940
14941 \begin_layout Standard
14942 6
14943 \end_layout
14944
14945 \end_inset
14946 </cell>
14947 </row>
14948 <row>
14949 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14950 \begin_inset Text
14951
14952 \begin_layout Standard
14953 0.
14954 \end_layout
14955
14956 \end_inset
14957 </cell>
14958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14959 \begin_inset Text
14960
14961 \begin_layout Standard
14962 68
14963 \end_layout
14964
14965 \end_inset
14966 </cell>
14967 </row>
14968 <row>
14969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14970 \begin_inset Text
14971
14972 \begin_layout Standard
14973 -123.
14974 \end_layout
14975
14976 \end_inset
14977 </cell>
14978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14979 \begin_inset Text
14980
14981 \begin_layout Standard
14982 0
14983 \end_layout
14984
14985 \end_inset
14986 </cell>
14987 </row>
14988 </lyxtabular>
14989
14990 \end_inset
14991
14992
14993 \end_layout
14994
14995 \end_inset
14996
14997
14998 \end_layout
14999
15000 \begin_layout Standard
15001 Esta es una tabla 4×2.
15002  El encabezado es una multicolumna centrada.
15003  La primera columna está alineada a la derecha y contiene el punto decimal
15004  y los dígitos anteriores.
15005  La segunda columna está alineada a la izquierda y contiene los dígitos
15006  posteriores al punto decimal.
15007  Para omitir el espacio que hay normalmente entre dos columnas usa el siguiente
15008  argumento LaTeX para la segunda columna:
15009 \end_layout
15010
15011 \begin_layout Standard
15012
15013 \series bold
15014 @{}l
15015 \end_layout
15016
15017 \begin_layout Standard
15018 Si quieres una línea vertical a la derecha de la segunda columna, usa en
15019  su lugar el argumento LaTeX: 
15020 \series bold
15021 @{}l|
15022 \end_layout
15023
15024 \begin_layout Standard
15025 La tabla\InsetSpace ~
15026
15027 \begin_inset LatexCommand ref
15028 reference "tab:Varias-alineaciones"
15029
15030 \end_inset
15031
15032  muestra varios ejemplos de alineación.
15033  Para alinear con el signo de relación debes añadir el segundo espacio matemátic
15034 o más pequeño al comienzo de la última columna para conseguir el espacio
15035  adecuado alrededor del signo.
15036 \end_layout
15037
15038 \begin_layout Standard
15039 \begin_inset Float table
15040 wide false
15041 sideways false
15042 status open
15043
15044 \begin_layout Standard
15045 \begin_inset Caption
15046
15047 \begin_layout Standard
15048 \begin_inset LatexCommand label
15049 name "tab:Varias-alineaciones"
15050
15051 \end_inset
15052
15053 Tabla con varias alineaciones.
15054 \end_layout
15055
15056 \end_inset
15057
15058
15059 \end_layout
15060
15061 \begin_layout Standard
15062 \align center
15063 \begin_inset Tabular
15064 <lyxtabular version="3" rows="4" columns="6">
15065 <features>
15066 <column alignment="right" valignment="top" width="0">
15067 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15068 <column alignment="right" valignment="top" width="0">
15069 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15070 <column alignment="right" valignment="top" width="0">
15071 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15072 <row bottomline="true">
15073 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15074 \begin_inset Text
15075
15076 \begin_layout Standard
15077 unidades
15078 \end_layout
15079
15080 \end_inset
15081 </cell>
15082 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15083 \begin_inset Text
15084
15085 \begin_layout Standard
15086
15087 \end_layout
15088
15089 \end_inset
15090 </cell>
15091 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15092 \begin_inset Text
15093
15094 \begin_layout Standard
15095 exponentes
15096 \end_layout
15097
15098 \end_inset
15099 </cell>
15100 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15101 \begin_inset Text
15102
15103 \begin_layout Standard
15104
15105 \end_layout
15106
15107 \end_inset
15108 </cell>
15109 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15110 \begin_inset Text
15111
15112 \begin_layout Standard
15113 relaciones
15114 \end_layout
15115
15116 \end_inset
15117 </cell>
15118 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15119 \begin_inset Text
15120
15121 \begin_layout Standard
15122
15123 \end_layout
15124
15125 \end_inset
15126 </cell>
15127 </row>
15128 <row>
15129 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15130 \begin_inset Text
15131
15132 \begin_layout Standard
15133 12×
15134 \end_layout
15135
15136 \end_inset
15137 </cell>
15138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15139 \begin_inset Text
15140
15141 \begin_layout Standard
15142 24\InsetSpace \thinspace{}
15143 bottles
15144 \end_layout
15145
15146 \end_inset
15147 </cell>
15148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15149 \begin_inset Text
15150
15151 \begin_layout Standard
15152 \begin_inset Formula $10\cdot$
15153 \end_inset
15154
15155
15156 \end_layout
15157
15158 \end_inset
15159 </cell>
15160 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15161 \begin_inset Text
15162
15163 \begin_layout Standard
15164 \begin_inset Formula $10^{\mbox{-}17}$
15165 \end_inset
15166
15167
15168 \end_layout
15169
15170 \end_inset
15171 </cell>
15172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15173 \begin_inset Text
15174
15175 \begin_layout Standard
15176 \begin_inset Formula $\Gamma(t)\propto$
15177 \end_inset
15178
15179
15180 \end_layout
15181
15182 \end_inset
15183 </cell>
15184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15185 \begin_inset Text
15186
15187 \begin_layout Standard
15188 \begin_inset Formula $\:\Upsilon(t)$
15189 \end_inset
15190
15191
15192 \end_layout
15193
15194 \end_inset
15195 </cell>
15196 </row>
15197 <row>
15198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15199 \begin_inset Text
15200
15201 \begin_layout Standard
15202 1024×
15203 \end_layout
15204
15205 \end_inset
15206 </cell>
15207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15208 \begin_inset Text
15209
15210 \begin_layout Standard
15211 768\InsetSpace \thinspace{}
15212 Pixels
15213 \end_layout
15214
15215 \end_inset
15216 </cell>
15217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15218 \begin_inset Text
15219
15220 \begin_layout Standard
15221 \begin_inset Formula $5.78\cdot$
15222 \end_inset
15223
15224
15225 \end_layout
15226
15227 \end_inset
15228 </cell>
15229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15230 \begin_inset Text
15231
15232 \begin_layout Standard
15233 \begin_inset Formula $10^{7}$
15234 \end_inset
15235
15236
15237 \end_layout
15238
15239 \end_inset
15240 </cell>
15241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15242 \begin_inset Text
15243
15244 \begin_layout Standard
15245 \begin_inset Formula $A\ne$
15246 \end_inset
15247
15248
15249 \end_layout
15250
15251 \end_inset
15252 </cell>
15253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15254 \begin_inset Text
15255
15256 \begin_layout Standard
15257 \begin_inset Formula $\: B_{\mathrm{red}}$
15258 \end_inset
15259
15260
15261 \end_layout
15262
15263 \end_inset
15264 </cell>
15265 </row>
15266 <row>
15267 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15268 \begin_inset Text
15269
15270 \begin_layout Standard
15271 32×
15272 \end_layout
15273
15274 \end_inset
15275 </cell>
15276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15277 \begin_inset Text
15278
15279 \begin_layout Standard
15280 6\InsetSpace \thinspace{}
15281 cm
15282 \end_layout
15283
15284 \end_inset
15285 </cell>
15286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15287 \begin_inset Text
15288
15289 \begin_layout Standard
15290 -
15291 \begin_inset Formula $33.5\cdot$
15292 \end_inset
15293
15294
15295 \end_layout
15296
15297 \end_inset
15298 </cell>
15299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15300 \begin_inset Text
15301
15302 \begin_layout Standard
15303 \begin_inset Formula $10^{4}$
15304 \end_inset
15305
15306
15307 \end_layout
15308
15309 \end_inset
15310 </cell>
15311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15312 \begin_inset Text
15313
15314 \begin_layout Standard
15315 \begin_inset Formula $\sin(\alpha)\ge$
15316 \end_inset
15317
15318
15319 \end_layout
15320
15321 \end_inset
15322 </cell>
15323 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15324 \begin_inset Text
15325
15326 \begin_layout Standard
15327 \begin_inset Formula $\:\sin(\beta)$
15328 \end_inset
15329
15330
15331 \end_layout
15332
15333 \end_inset
15334 </cell>
15335 </row>
15336 </lyxtabular>
15337
15338 \end_inset
15339
15340
15341 \end_layout
15342
15343 \end_inset
15344
15345
15346 \end_layout
15347
15348 \begin_layout Standard
15349 \begin_inset VSpace bigskip
15350 \end_inset
15351
15352 También hay un paquete LaTeX, 
15353 \series bold
15354 dcolumn
15355 \series default
15356
15357 \begin_inset LatexCommand index
15358 name "LaTeX-paquetes ! dcolumn"
15359
15360 \end_inset
15361
15362 , que permite alinear el contenido de las celdas.
15363  Pero desgraciadamente trata las entradas de celda en modo matemático y
15364  no permite fórmulas en celdas: la primera columna de la tabla\InsetSpace ~
15365
15366 \begin_inset LatexCommand ref
15367 reference "tab:Varias-alineaciones"
15368
15369 \end_inset
15370
15371  se verá con 
15372 \series bold
15373 dcolumn
15374 \series default
15375  como la primera columna en la tabla\InsetSpace ~
15376
15377 \begin_inset LatexCommand ref
15378 reference "tab:Alineaciones-con-el"
15379
15380 \end_inset
15381
15382  y solo con algunos trucos se consigue lo que se espera.
15383  La alineación de la segunda y tercera columnas de la tabla\InsetSpace ~
15384
15385 \begin_inset LatexCommand ref
15386 reference "tab:Varias-alineaciones"
15387
15388 \end_inset
15389
15390  no es posible con 
15391 \series bold
15392 dcolumn
15393 \series default
15394 .
15395 \end_layout
15396
15397 \begin_layout Standard
15398 \begin_inset Float table
15399 placement h
15400 wide false
15401 sideways false
15402 status open
15403
15404 \begin_layout Standard
15405 \begin_inset Caption
15406
15407 \begin_layout Standard
15408 \begin_inset LatexCommand label
15409 name "tab:Alineaciones-con-el"
15410
15411 \end_inset
15412
15413
15414 \begin_inset OptArg
15415 status open
15416
15417 \begin_layout Standard
15418 Tabla alineada con 
15419 \series bold
15420 dcolumn
15421 \end_layout
15422
15423 \end_inset
15424
15425 Alineaciones con el paquete LaTeX 
15426 \series bold
15427 dcolumn
15428 \series default
15429 .
15430  Se han tenido que usar unos trucos para la alineación de las columnas en
15431  la salida.
15432 \end_layout
15433
15434 \end_inset
15435
15436
15437 \end_layout
15438
15439 \begin_layout Standard
15440 \align center
15441 \begin_inset Tabular
15442 <lyxtabular version="3" rows="4" columns="3">
15443 <features>
15444 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{4.9}|">
15445 <column alignment="center" valignment="top" width="0" special="D{x}{\times}{4.9}|">
15446 <column alignment="center" valignment="top" rightline="true" width="0" special="D{~}{\,}{9.7}">
15447 <row bottomline="true">
15448 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15449 \begin_inset Text
15450
15451 \begin_layout Standard
15452 unidades
15453 \end_layout
15454
15455 \end_inset
15456 </cell>
15457 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15458 \begin_inset Text
15459
15460 \begin_layout Standard
15461 unidades
15462 \end_layout
15463
15464 \end_inset
15465 </cell>
15466 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15467 \begin_inset Text
15468
15469 \begin_layout Standard
15470 unidades
15471 \end_layout
15472
15473 \end_inset
15474 </cell>
15475 </row>
15476 <row>
15477 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15478 \begin_inset Text
15479
15480 \begin_layout Standard
15481 12x24\InsetSpace \thinspace{}
15482 bottles
15483 \end_layout
15484
15485 \end_inset
15486 </cell>
15487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15488 \begin_inset Text
15489
15490 \begin_layout Standard
15491 12x24\InsetSpace \thinspace{}
15492
15493 \begin_inset Formula $\mbox{bottles}$
15494 \end_inset
15495
15496
15497 \end_layout
15498
15499 \end_inset
15500 </cell>
15501 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15502 \begin_inset Text
15503
15504 \begin_layout Standard
15505 12
15506 \begin_inset ERT
15507 status collapsed
15508
15509 \begin_layout Standard
15510
15511
15512 \backslash
15513 times
15514 \end_layout
15515
15516 \end_inset
15517
15518 24~
15519 \begin_inset Formula $\mbox{bottles}$
15520 \end_inset
15521
15522
15523 \end_layout
15524
15525 \end_inset
15526 </cell>
15527 </row>
15528 <row>
15529 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15530 \begin_inset Text
15531
15532 \begin_layout Standard
15533 1024x768\InsetSpace \thinspace{}
15534 Pixels
15535 \end_layout
15536
15537 \end_inset
15538 </cell>
15539 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15540 \begin_inset Text
15541
15542 \begin_layout Standard
15543 1024x768\InsetSpace \thinspace{}
15544
15545 \begin_inset Formula $\mbox{Pixels}$
15546 \end_inset
15547
15548
15549 \end_layout
15550
15551 \end_inset
15552 </cell>
15553 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15554 \begin_inset Text
15555
15556 \begin_layout Standard
15557 1024
15558 \begin_inset ERT
15559 status open
15560
15561 \begin_layout Standard
15562
15563
15564 \backslash
15565 times
15566 \end_layout
15567
15568 \end_inset
15569
15570 768~
15571 \begin_inset Formula $\mbox{Pixels}$
15572 \end_inset
15573
15574  
15575 \end_layout
15576
15577 \end_inset
15578 </cell>
15579 </row>
15580 <row>
15581 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15582 \begin_inset Text
15583
15584 \begin_layout Standard
15585 32x6\InsetSpace \thinspace{}
15586 cm
15587 \end_layout
15588
15589 \end_inset
15590 </cell>
15591 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15592 \begin_inset Text
15593
15594 \begin_layout Standard
15595 32x6\InsetSpace \thinspace{}
15596
15597 \begin_inset Formula $\mbox{cm}$
15598 \end_inset
15599
15600
15601 \end_layout
15602
15603 \end_inset
15604 </cell>
15605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15606 \begin_inset Text
15607
15608 \begin_layout Standard
15609 32
15610 \begin_inset ERT
15611 status open
15612
15613 \begin_layout Standard
15614
15615
15616 \backslash
15617 times
15618 \end_layout
15619
15620 \end_inset
15621
15622 6~
15623 \begin_inset Formula $\mbox{cm}$
15624 \end_inset
15625
15626
15627 \end_layout
15628
15629 \end_inset
15630 </cell>
15631 </row>
15632 </lyxtabular>
15633
15634 \end_inset
15635
15636
15637 \end_layout
15638
15639 \end_inset
15640
15641
15642 \end_layout
15643
15644 \begin_layout Subsection
15645 Formato Personalizado de Celda/Columna
15646 \begin_inset LatexCommand label
15647 name "sub:Formato-Personalizado"
15648
15649 \end_inset
15650
15651
15652 \begin_inset LatexCommand index
15653 name "Personalización de Tablas ! Formato de Celda/Columna"
15654
15655 \end_inset
15656
15657
15658 \end_layout
15659
15660 \begin_layout Standard
15661 El cálculo de la anchura necesaria para columnas extendidas descrito en
15662  la sección\InsetSpace ~
15663
15664 \begin_inset LatexCommand ref
15665 reference "sub:Cálculos-en-Multicolumnas"
15666
15667 \end_inset
15668
15669  es muy pesado si tienes varias tablas con multicolumnas.
15670  Para hacerlo más fácil, puedes definir en el preámbulo un formato de celda/colu
15671 mna aplicable a todas las tablas del documento.
15672  El formato se define con el comando
15673 \end_layout
15674
15675 \begin_layout Standard
15676
15677 \series bold
15678
15679 \backslash
15680 newcolumntype{nombre del formato}[número de argumentos]{comandos}
15681 \end_layout
15682
15683 \begin_layout Standard
15684 El nombre de formato puede ser una sola letra.
15685  Las letras 
15686 \emph on
15687 b, c, l, m, p
15688 \emph default
15689  y 
15690 \emph on
15691 r
15692 \emph default
15693  están predefinidas y no pueden usarse.
15694  Pero se permiten todas las mayúsculas.
15695 \end_layout
15696
15697 \begin_layout Standard
15698 \begin_inset VSpace medskip
15699 \end_inset
15700
15701
15702 \end_layout
15703
15704 \begin_layout Standard
15705 Para celdas multicolumna vertical y horizontalmente centradas con una anchura
15706  fija puedes definir el formato de celda
15707 \end_layout
15708
15709 \begin_layout Standard
15710
15711 \series bold
15712
15713 \backslash
15714 newcolumntype{M}[1]{>{
15715 \backslash
15716 centering
15717 \backslash
15718 hspace{0pt}}m{#1}}
15719 \end_layout
15720
15721 \begin_layout Standard
15722 donde 
15723 \series bold
15724
15725 \backslash
15726 hspace{0pt}
15727 \series default
15728  evita el problema de partir con guión la primera palabra, como se describe
15729  en la sección\InsetSpace ~
15730
15731 \begin_inset LatexCommand ref
15732 reference "sub:Líneas-Múltiples-en"
15733
15734 \end_inset
15735
15736 .
15737  Ahora puedes introducir simplemente
15738 \end_layout
15739
15740 \begin_layout Standard
15741
15742 \series bold
15743 |M{ancho}
15744 \end_layout
15745
15746 \begin_layout Standard
15747 como argumento LaTeX en el diálogo de tabla para crear una multicolumna.
15748 \end_layout
15749
15750 \begin_layout Standard
15751 \begin_inset VSpace bigskip
15752 \end_inset
15753
15754
15755 \end_layout
15756
15757 \begin_layout Standard
15758 Para celdas extendidas en una celda multicolumna, puedes definir el formato
15759 \end_layout
15760
15761 \begin_layout Standard
15762
15763 \series bold
15764
15765 \backslash
15766 newcolumntype{S}[2]{>{
15767 \backslash
15768 centering
15769 \backslash
15770 hspace{0pt}}
15771 \newline
15772
15773 \begin_inset ERT
15774 status collapsed
15775
15776 \begin_layout Standard
15777
15778
15779 \backslash
15780 phantom{
15781 \end_layout
15782
15783 \end_inset
15784
15785
15786 \backslash
15787 newcolumntype{S}[2]
15788 \begin_inset ERT
15789 status collapsed
15790
15791 \begin_layout Standard
15792
15793 }
15794 \end_layout
15795
15796 \end_inset
15797
15798 m{(#1+(2
15799 \backslash
15800 tabcolsep+
15801 \backslash
15802 arrayrulewidth)*(1-#2))/#2}}
15803 \end_layout
15804
15805 \begin_layout Standard
15806 Este formato usa la ecuación 
15807 \begin_inset LatexCommand eqref
15808 reference "eq:Wgn"
15809
15810 \end_inset
15811
15812  para calcular la anchura necesaria para que cada celda extendida tenga
15813  la misma anchura.
15814 \end_layout
15815
15816 \begin_layout Standard
15817 Ahora puedes introducir
15818 \end_layout
15819
15820 \begin_layout Standard
15821
15822 \series bold
15823 |S{ancho de la celda multicolumna}{número de columnas extendidas}
15824 \end_layout
15825
15826 \begin_layout Standard
15827 como argumento LaTeX de la columna.
15828 \end_layout
15829
15830 \begin_layout Standard
15831 \begin_inset VSpace bigskip
15832 \end_inset
15833
15834
15835 \end_layout
15836
15837 \begin_layout Standard
15838 Para columnas coloreadas puedes definir
15839 \end_layout
15840
15841 \begin_layout Standard
15842
15843 \series bold
15844
15845 \backslash
15846 newcolumntype{K}[1]{>{
15847 \backslash
15848 columncolor{#1}
15849 \backslash
15850 hspace{0pt}}c}
15851 \end_layout
15852
15853 \begin_layout Standard
15854 La 
15855 \begin_inset Quotes eld
15856 \end_inset
15857
15858 c
15859 \begin_inset Quotes erd
15860 \end_inset
15861
15862  al final crea una columna con anchura flexible cuyo texto está centrado
15863  horizontalmente.
15864  Ahora puedes introducir
15865 \end_layout
15866
15867 \begin_layout Standard
15868
15869 \series bold
15870 K{nombre del color}
15871 \end_layout
15872
15873 \begin_layout Standard
15874 como argumento LaTeX.
15875 \end_layout
15876
15877 \begin_layout Standard
15878 \begin_inset VSpace bigskip
15879 \end_inset
15880
15881
15882 \end_layout
15883
15884 \begin_layout Standard
15885 Para crear la tabla\InsetSpace ~
15886
15887 \begin_inset LatexCommand ref
15888 reference "tab:Tabla-con-formatos-definidos-por"
15889
15890 \end_inset
15891
15892  usa los argumentos LaTeX
15893 \end_layout
15894
15895 \begin_layout Standard
15896
15897 \series bold
15898 |M{2.5cm}
15899 \end_layout
15900
15901 \begin_layout Standard
15902 para la primera columna y la multicolumna,
15903 \end_layout
15904
15905 \begin_layout Standard
15906
15907 \series bold
15908 |K{red}|
15909 \end_layout
15910
15911 \begin_layout Standard
15912 para la última columna y
15913 \end_layout
15914
15915 \begin_layout Standard
15916
15917 \series bold
15918 |S{2.5cm}{2}
15919 \end_layout
15920
15921 \begin_layout Standard
15922 para las celdas en la segunda columna.
15923 \end_layout
15924
15925 \begin_layout Standard
15926 \begin_inset Float table
15927 placement h
15928 wide false
15929 sideways false
15930 status open
15931
15932 \begin_layout Standard
15933 \begin_inset Caption
15934
15935 \begin_layout Standard
15936 \begin_inset LatexCommand label
15937 name "tab:Tabla-con-formatos-definidos-por"
15938
15939 \end_inset
15940
15941 Tabla con formatos definidos por el usuario
15942 \end_layout
15943
15944 \end_inset
15945
15946
15947 \end_layout
15948
15949 \begin_layout Standard
15950 \align center
15951 \begin_inset Tabular
15952 <lyxtabular version="3" rows="3" columns="4">
15953 <features>
15954 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="|M{2.5cm}">
15955 <column alignment="center" valignment="middle" leftline="true" width="0" special="|S{2.5cm}{2}">
15956 <column alignment="center" valignment="middle" leftline="true" width="0">
15957 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="|K{red}|">
15958 <row topline="true">
15959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15960 \begin_inset Text
15961
15962 \begin_layout Standard
15963 palabramuylargaenceldadetabla
15964 \end_layout
15965
15966 \end_inset
15967 </cell>
15968 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}|">
15969 \begin_inset Text
15970
15971 \begin_layout Standard
15972 multicolumna línea múltiple
15973 \end_layout
15974
15975 \end_inset
15976 </cell>
15977 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15978 \begin_inset Text
15979
15980 \begin_layout Standard
15981
15982 \end_layout
15983
15984 \end_inset
15985 </cell>
15986 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15987 \begin_inset Text
15988
15989 \begin_layout Standard
15990 c
15991 \end_layout
15992
15993 \end_inset
15994 </cell>
15995 </row>
15996 <row topline="true">
15997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15998 \begin_inset Text
15999
16000 \begin_layout Standard
16001 d
16002 \end_layout
16003
16004 \end_inset
16005 </cell>
16006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16007 \begin_inset Text
16008
16009 \begin_layout Standard
16010 e
16011 \end_layout
16012
16013 \end_inset
16014 </cell>
16015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16016 \begin_inset Text
16017
16018 \begin_layout Standard
16019 f
16020 \end_layout
16021
16022 \end_inset
16023 </cell>
16024 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16025 \begin_inset Text
16026
16027 \begin_layout Standard
16028 g
16029 \end_layout
16030
16031 \end_inset
16032 </cell>
16033 </row>
16034 <row topline="true" bottomline="true">
16035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16036 \begin_inset Text
16037
16038 \begin_layout Standard
16039 h
16040 \end_layout
16041
16042 \end_inset
16043 </cell>
16044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16045 \begin_inset Text
16046
16047 \begin_layout Standard
16048 i
16049 \end_layout
16050
16051 \end_inset
16052 </cell>
16053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16054 \begin_inset Text
16055
16056 \begin_layout Standard
16057 j
16058 \end_layout
16059
16060 \end_inset
16061 </cell>
16062 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16063 \begin_inset Text
16064
16065 \begin_layout Standard
16066 k
16067 \end_layout
16068
16069 \end_inset
16070 </cell>
16071 </row>
16072 </lyxtabular>
16073
16074 \end_inset
16075
16076
16077 \end_layout
16078
16079 \end_inset
16080
16081
16082 \end_layout
16083
16084 \begin_layout Subsection
16085 Grosor de Líneas
16086 \begin_inset LatexCommand label
16087 name "sub:Grosor-de-Líneas"
16088
16089 \end_inset
16090
16091
16092 \begin_inset LatexCommand index
16093 name "Personalización de Tablas ! Grosor de Línea"
16094
16095 \end_inset
16096
16097
16098 \end_layout
16099
16100 \begin_layout Standard
16101 El grosor para todas las líneas de una tabla puede ajustarse con la longitud
16102  
16103 \series bold
16104
16105 \backslash
16106 arrayrulewidth
16107 \series default
16108 .
16109  Por ejemplo, para poner un grosor de línea de 1.5\InsetSpace \thinspace{}
16110 pt, como en la tabla\InsetSpace ~
16111
16112 \begin_inset LatexCommand ref
16113 reference "tab:Tabla-con-líneas"
16114
16115 \end_inset
16116
16117 , inserta el comando
16118 \end_layout
16119
16120 \begin_layout Standard
16121
16122 \series bold
16123
16124 \backslash
16125 setlength{
16126 \backslash
16127 arrayrulewidth}{1.5pt}
16128 \end_layout
16129
16130 \begin_layout Standard
16131 en ERT antes de la tabla o flotante.
16132  Este cambio es válido para todas las siguientes tablas.
16133  Para volver al valor predeterminado, define 
16134 \series bold
16135
16136 \backslash
16137 arrayrulewidth
16138 \series default
16139  a 0.4\InsetSpace \thinspace{}
16140 pt en ERT detrás de la tabla o flotante.
16141 \end_layout
16142
16143 \begin_layout Standard
16144 \begin_inset ERT
16145 status collapsed
16146
16147 \begin_layout Standard
16148
16149
16150 \backslash
16151 setlength{
16152 \backslash
16153 arrayrulewidth}{1.5pt}
16154 \end_layout
16155
16156 \end_inset
16157
16158
16159 \begin_inset Float table
16160 wide false
16161 sideways false
16162 status open
16163
16164 \begin_layout Standard
16165 \begin_inset Caption
16166
16167 \begin_layout Standard
16168 \begin_inset LatexCommand label
16169 name "tab:Tabla-con-líneas"
16170
16171 \end_inset
16172
16173 Tabla con líneas de grosor 1.5\InsetSpace \thinspace{}
16174 pt
16175 \end_layout
16176
16177 \end_inset
16178
16179
16180 \end_layout
16181
16182 \begin_layout Standard
16183 \align center
16184 \begin_inset Tabular
16185 <lyxtabular version="3" rows="3" columns="3">
16186 <features>
16187 <column alignment="center" valignment="top" leftline="true" width="0">
16188 <column alignment="center" valignment="top" leftline="true" width="0">
16189 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16190 <row topline="true">
16191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16192 \begin_inset Text
16193
16194 \begin_layout Standard
16195 sd
16196 \end_layout
16197
16198 \end_inset
16199 </cell>
16200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16201 \begin_inset Text
16202
16203 \begin_layout Standard
16204
16205 \end_layout
16206
16207 \end_inset
16208 </cell>
16209 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16210 \begin_inset Text
16211
16212 \begin_layout Standard
16213
16214 \end_layout
16215
16216 \end_inset
16217 </cell>
16218 </row>
16219 <row topline="true">
16220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16221 \begin_inset Text
16222
16223 \begin_layout Standard
16224
16225 \end_layout
16226
16227 \end_inset
16228 </cell>
16229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16230 \begin_inset Text
16231
16232 \begin_layout Standard
16233 sd
16234 \end_layout
16235
16236 \end_inset
16237 </cell>
16238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16239 \begin_inset Text
16240
16241 \begin_layout Standard
16242
16243 \end_layout
16244
16245 \end_inset
16246 </cell>
16247 </row>
16248 <row topline="true" bottomline="true">
16249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16250 \begin_inset Text
16251
16252 \begin_layout Standard
16253
16254 \end_layout
16255
16256 \end_inset
16257 </cell>
16258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16259 \begin_inset Text
16260
16261 \begin_layout Standard
16262
16263 \end_layout
16264
16265 \end_inset
16266 </cell>
16267 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16268 \begin_inset Text
16269
16270 \begin_layout Standard
16271 sd
16272 \end_layout
16273
16274 \end_inset
16275 </cell>
16276 </row>
16277 </lyxtabular>
16278
16279 \end_inset
16280
16281
16282 \end_layout
16283
16284 \end_inset
16285
16286
16287 \begin_inset ERT
16288 status collapsed
16289
16290 \begin_layout Standard
16291
16292
16293 \backslash
16294 setlength{
16295 \backslash
16296 arrayrulewidth}{0.4pt}
16297 \end_layout
16298
16299 \end_inset
16300
16301
16302 \end_layout
16303
16304 \begin_layout Standard
16305 \begin_inset VSpace bigskip
16306 \end_inset
16307
16308 Para definir un grosor de 1.5\InsetSpace \thinspace{}
16309 pt sólo para líneas horizontales, como en la
16310  tabla\InsetSpace ~
16311
16312 \begin_inset LatexCommand ref
16313 reference "tab:Tabla-con-horizontales"
16314
16315 \end_inset
16316
16317 , inserta estos comandos en ERT antes de la tabla o flotante:
16318 \end_layout
16319
16320 \begin_layout Standard
16321
16322 \series bold
16323
16324 \backslash
16325 let
16326 \backslash
16327 myHline
16328 \backslash
16329 hline
16330 \newline
16331
16332 \backslash
16333 renewcommand{
16334 \backslash
16335 hline}
16336 \newline
16337  {
16338 \backslash
16339 noalign{
16340 \backslash
16341 global
16342 \backslash
16343 arrayrulewidth 1.5pt}
16344 \newline
16345   
16346 \backslash
16347 myHline
16348 \backslash
16349 noalign{
16350 \backslash
16351 global
16352 \backslash
16353 arrayrulewidth 0.4pt}}
16354 \end_layout
16355
16356 \begin_layout Standard
16357 Para volver al grosor predeterminado, inserta este comando en ERT detrás
16358  de la tabla o flotante:
16359 \end_layout
16360
16361 \begin_layout Standard
16362
16363 \series bold
16364
16365 \backslash
16366 renewcommand{
16367 \backslash
16368 hline}{
16369 \backslash
16370 myHline}
16371 \end_layout
16372
16373 \begin_layout Standard
16374 \begin_inset ERT
16375 status collapsed
16376
16377 \begin_layout Standard
16378
16379
16380 \backslash
16381 let
16382 \backslash
16383 myHline
16384 \backslash
16385 hline
16386 \end_layout
16387
16388 \begin_layout Standard
16389
16390
16391 \backslash
16392 renewcommand{
16393 \backslash
16394 hline}
16395 \end_layout
16396
16397 \begin_layout Standard
16398
16399  {
16400 \backslash
16401 noalign{
16402 \backslash
16403 global
16404 \backslash
16405 arrayrulewidth 1.5pt}
16406 \end_layout
16407
16408 \begin_layout Standard
16409
16410   
16411 \backslash
16412 myHline
16413 \backslash
16414 noalign{
16415 \backslash
16416 global
16417 \backslash
16418 arrayrulewidth 0.4pt}}
16419 \end_layout
16420
16421 \end_inset
16422
16423
16424 \begin_inset Float table
16425 wide false
16426 sideways false
16427 status open
16428
16429 \begin_layout Standard
16430 \begin_inset Caption
16431
16432 \begin_layout Standard
16433 \begin_inset LatexCommand label
16434 name "tab:Tabla-con-horizontales"
16435
16436 \end_inset
16437
16438 Tabla con líneas horizontales de 1.5\InsetSpace \thinspace{}
16439 pt
16440 \end_layout
16441
16442 \end_inset
16443
16444
16445 \end_layout
16446
16447 \begin_layout Standard
16448 \align center
16449 \begin_inset Tabular
16450 <lyxtabular version="3" rows="3" columns="3">
16451 <features>
16452 <column alignment="center" valignment="top" leftline="true" width="0">
16453 <column alignment="center" valignment="top" leftline="true" width="0">
16454 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16455 <row topline="true">
16456 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16457 \begin_inset Text
16458
16459 \begin_layout Standard
16460 sd
16461 \end_layout
16462
16463 \end_inset
16464 </cell>
16465 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16466 \begin_inset Text
16467
16468 \begin_layout Standard
16469
16470 \end_layout
16471
16472 \end_inset
16473 </cell>
16474 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16475 \begin_inset Text
16476
16477 \begin_layout Standard
16478
16479 \end_layout
16480
16481 \end_inset
16482 </cell>
16483 </row>
16484 <row topline="true">
16485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16486 \begin_inset Text
16487
16488 \begin_layout Standard
16489
16490 \end_layout
16491
16492 \end_inset
16493 </cell>
16494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16495 \begin_inset Text
16496
16497 \begin_layout Standard
16498 sd
16499 \end_layout
16500
16501 \end_inset
16502 </cell>
16503 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16504 \begin_inset Text
16505
16506 \begin_layout Standard
16507
16508 \end_layout
16509
16510 \end_inset
16511 </cell>
16512 </row>
16513 <row topline="true" bottomline="true">
16514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16515 \begin_inset Text
16516
16517 \begin_layout Standard
16518
16519 \end_layout
16520
16521 \end_inset
16522 </cell>
16523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16524 \begin_inset Text
16525
16526 \begin_layout Standard
16527
16528 \end_layout
16529
16530 \end_inset
16531 </cell>
16532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16533 \begin_inset Text
16534
16535 \begin_layout Standard
16536 sd
16537 \end_layout
16538
16539 \end_inset
16540 </cell>
16541 </row>
16542 </lyxtabular>
16543
16544 \end_inset
16545
16546
16547 \end_layout
16548
16549 \end_inset
16550
16551
16552 \begin_inset ERT
16553 status collapsed
16554
16555 \begin_layout Standard
16556
16557
16558 \backslash
16559 renewcommand{
16560 \backslash
16561 hline}{
16562 \backslash
16563 myHline}
16564 \end_layout
16565
16566 \end_inset
16567
16568
16569 \end_layout
16570
16571 \begin_layout Standard
16572 \begin_inset VSpace bigskip
16573 \end_inset
16574
16575 Para establecer un grosor de 1.5 pt sólo para líneas verticales, crea el
16576  siguiente formato de columna en el preámbulo del documento, de acuerdo
16577  con lo descrito en la sección\InsetSpace ~
16578
16579 \begin_inset LatexCommand ref
16580 reference "sub:Formato-Personalizado"
16581
16582 \end_inset
16583
16584 :
16585 \end_layout
16586
16587 \begin_layout Standard
16588
16589 \series bold
16590
16591 \backslash
16592 newcolumntype{V}{!{
16593 \backslash
16594 vrule width 1.5pt}}
16595 \end_layout
16596
16597 \begin_layout Standard
16598 Para la tabla\InsetSpace ~
16599
16600 \begin_inset LatexCommand ref
16601 reference "tab:Tabla-con-verticales"
16602
16603 \end_inset
16604
16605  se usó el argumento LaTeX
16606 \end_layout
16607
16608 \begin_layout Standard
16609
16610 \series bold
16611 VcV
16612 \end_layout
16613
16614 \begin_layout Standard
16615 para la última columna y
16616 \end_layout
16617
16618 \begin_layout Standard
16619
16620 \series bold
16621 Vc
16622 \end_layout
16623
16624 \begin_layout Standard
16625 para las otras.
16626 \end_layout
16627
16628 \begin_layout Standard
16629 \begin_inset Float table
16630 wide false
16631 sideways false
16632 status open
16633
16634 \begin_layout Standard
16635 \begin_inset Caption
16636
16637 \begin_layout Standard
16638 \begin_inset LatexCommand label
16639 name "tab:Tabla-con-verticales"
16640
16641 \end_inset
16642
16643 Tabla con líneas verticales de 1.5\InsetSpace \thinspace{}
16644 pt de grosor
16645 \end_layout
16646
16647 \end_inset
16648
16649
16650 \end_layout
16651
16652 \begin_layout Standard
16653 \align center
16654 \begin_inset Tabular
16655 <lyxtabular version="3" rows="3" columns="3">
16656 <features>
16657 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16658 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16659 <column alignment="center" valignment="top" leftline="true" width="0" special="VcV">
16660 <row topline="true">
16661 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16662 \begin_inset Text
16663
16664 \begin_layout Standard
16665 sd
16666 \end_layout
16667
16668 \end_inset
16669 </cell>
16670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16671 \begin_inset Text
16672
16673 \begin_layout Standard
16674
16675 \end_layout
16676
16677 \end_inset
16678 </cell>
16679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16680 \begin_inset Text
16681
16682 \begin_layout Standard
16683
16684 \end_layout
16685
16686 \end_inset
16687 </cell>
16688 </row>
16689 <row topline="true">
16690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16691 \begin_inset Text
16692
16693 \begin_layout Standard
16694
16695 \end_layout
16696
16697 \end_inset
16698 </cell>
16699 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16700 \begin_inset Text
16701
16702 \begin_layout Standard
16703 sd
16704 \end_layout
16705
16706 \end_inset
16707 </cell>
16708 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16709 \begin_inset Text
16710
16711 \begin_layout Standard
16712
16713 \end_layout
16714
16715 \end_inset
16716 </cell>
16717 </row>
16718 <row topline="true" bottomline="true">
16719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16720 \begin_inset Text
16721
16722 \begin_layout Standard
16723
16724 \end_layout
16725
16726 \end_inset
16727 </cell>
16728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16729 \begin_inset Text
16730
16731 \begin_layout Standard
16732
16733 \end_layout
16734
16735 \end_inset
16736 </cell>
16737 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16738 \begin_inset Text
16739
16740 \begin_layout Standard
16741 sd
16742 \end_layout
16743
16744 \end_inset
16745 </cell>
16746 </row>
16747 </lyxtabular>
16748
16749 \end_inset
16750
16751
16752 \end_layout
16753
16754 \end_inset
16755
16756
16757 \end_layout
16758
16759 \begin_layout Subsection
16760 Líneas de Trazos
16761 \begin_inset LatexCommand index
16762 name "Personalización de Tablas ! Líneas de Trazos"
16763
16764 \end_inset
16765
16766
16767 \end_layout
16768
16769 \begin_layout Standard
16770 \begin_inset ERT
16771 status collapsed
16772
16773 \begin_layout Standard
16774
16775
16776 \backslash
16777 ifarydshln
16778 \end_layout
16779
16780 \end_inset
16781
16782
16783 \begin_inset Note Note
16784 status open
16785
16786 \begin_layout Standard
16787 La siguiente sección sólo se mostrará en pantalla si está instalado el paquete
16788  LaTeX 
16789 \series bold
16790 arydshln
16791 \series default
16792 .
16793 \end_layout
16794
16795 \end_inset
16796
16797
16798 \end_layout
16799
16800 \begin_layout Standard
16801 \begin_inset Float table
16802 placement H
16803 wide false
16804 sideways false
16805 status open
16806
16807 \begin_layout Standard
16808 \begin_inset Caption
16809
16810 \begin_layout Standard
16811 \begin_inset LatexCommand label
16812 name "tab:Tabla-con-trazos"
16813
16814 \end_inset
16815
16816 Tabla con líneas de trazos
16817 \end_layout
16818
16819 \end_inset
16820
16821
16822 \end_layout
16823
16824 \begin_layout Standard
16825 \align center
16826 \begin_inset Tabular
16827 <lyxtabular version="3" rows="5" columns="5">
16828 <features>
16829 <column alignment="center" valignment="top" leftline="true" width="0">
16830 <column alignment="center" valignment="top" leftline="true" width="0">
16831 <column alignment="center" valignment="top" width="0" special=":c">
16832 <column alignment="center" valignment="top" leftline="true" width="0">
16833 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16834 <row topline="true" bottomline="true">
16835 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16836 \begin_inset Text
16837
16838 \begin_layout Standard
16839 a
16840 \end_layout
16841
16842 \end_inset
16843 </cell>
16844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16845 \begin_inset Text
16846
16847 \begin_layout Standard
16848 b
16849 \end_layout
16850
16851 \end_inset
16852 </cell>
16853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16854 \begin_inset Text
16855
16856 \begin_layout Standard
16857 c
16858 \end_layout
16859
16860 \end_inset
16861 </cell>
16862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16863 \begin_inset Text
16864
16865 \begin_layout Standard
16866 d
16867 \end_layout
16868
16869 \end_inset
16870 </cell>
16871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16872 \begin_inset Text
16873
16874 \begin_layout Standard
16875 e
16876 \end_layout
16877
16878 \end_inset
16879 </cell>
16880 </row>
16881 <row topline="true">
16882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16883 \begin_inset Text
16884
16885 \begin_layout Standard
16886 f
16887 \end_layout
16888
16889 \end_inset
16890 </cell>
16891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16892 \begin_inset Text
16893
16894 \begin_layout Standard
16895 g
16896 \end_layout
16897
16898 \end_inset
16899 </cell>
16900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16901 \begin_inset Text
16902
16903 \begin_layout Standard
16904 h
16905 \end_layout
16906
16907 \end_inset
16908 </cell>
16909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16910 \begin_inset Text
16911
16912 \begin_layout Standard
16913 i
16914 \end_layout
16915
16916 \end_inset
16917 </cell>
16918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16919 \begin_inset Text
16920
16921 \begin_layout Standard
16922 j
16923 \end_layout
16924
16925 \end_inset
16926 </cell>
16927 </row>
16928 <row>
16929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16930 \begin_inset Text
16931
16932 \begin_layout Standard
16933 \begin_inset ERT
16934 status collapsed
16935
16936 \begin_layout Standard
16937
16938
16939 \backslash
16940 hdashline 
16941 \end_layout
16942
16943 \end_inset
16944
16945 k
16946 \end_layout
16947
16948 \end_inset
16949 </cell>
16950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16951 \begin_inset Text
16952
16953 \begin_layout Standard
16954 l
16955 \end_layout
16956
16957 \end_inset
16958 </cell>
16959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16960 \begin_inset Text
16961
16962 \begin_layout Standard
16963 m
16964 \end_layout
16965
16966 \end_inset
16967 </cell>
16968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16969 \begin_inset Text
16970
16971 \begin_layout Standard
16972 n
16973 \end_layout
16974
16975 \end_inset
16976 </cell>
16977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16978 \begin_inset Text
16979
16980 \begin_layout Standard
16981 o
16982 \end_layout
16983
16984 \end_inset
16985 </cell>
16986 </row>
16987 <row topline="true">
16988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16989 \begin_inset Text
16990
16991 \begin_layout Standard
16992 \begin_inset ERT
16993 status collapsed
16994
16995 \begin_layout Standard
16996
16997
16998 \backslash
16999 cdashline{4-5}
17000 \end_layout
17001
17002 \end_inset
17003
17004 p
17005 \end_layout
17006
17007 \end_inset
17008 </cell>
17009 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17010 \begin_inset Text
17011
17012 \begin_layout Standard
17013 q
17014 \end_layout
17015
17016 \end_inset
17017 </cell>
17018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
17019 \begin_inset Text
17020
17021 \begin_layout Standard
17022 r
17023 \end_layout
17024
17025 \end_inset
17026 </cell>
17027 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
17028 \begin_inset Text
17029
17030 \begin_layout Standard
17031 s
17032 \end_layout
17033
17034 \end_inset
17035 </cell>
17036 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17037 \begin_inset Text
17038
17039 \begin_layout Standard
17040
17041 \end_layout
17042
17043 \end_inset
17044 </cell>
17045 </row>
17046 <row topline="true" bottomline="true">
17047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17048 \begin_inset Text
17049
17050 \begin_layout Standard
17051 t
17052 \end_layout
17053
17054 \end_inset
17055 </cell>
17056 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17057 \begin_inset Text
17058
17059 \begin_layout Standard
17060 u
17061 \end_layout
17062
17063 \end_inset
17064 </cell>
17065 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17066 \begin_inset Text
17067
17068 \begin_layout Standard
17069 v
17070 \end_layout
17071
17072 \end_inset
17073 </cell>
17074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17075 \begin_inset Text
17076
17077 \begin_layout Standard
17078 w
17079 \end_layout
17080
17081 \end_inset
17082 </cell>
17083 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17084 \begin_inset Text
17085
17086 \begin_layout Standard
17087 x
17088 \end_layout
17089
17090 \end_inset
17091 </cell>
17092 </row>
17093 </lyxtabular>
17094
17095 \end_inset
17096
17097
17098 \end_layout
17099
17100 \end_inset
17101
17102
17103 \end_layout
17104
17105 \begin_layout Standard
17106 En principio LyX no soporta líneas de trazos, hay que usar ERT.
17107  Hay que cargar antes en el preámbulo del documento el paquete LaTeX 
17108 \series bold
17109 arydshln
17110 \series default
17111
17112 \begin_inset LatexCommand index
17113 name "LaTeX-paquetes ! arydshln"
17114
17115 \end_inset
17116
17117  
17118 \end_layout
17119
17120 \begin_layout Standard
17121
17122 \series bold
17123
17124 \backslash
17125 usepackage{arydshln}
17126 \end_layout
17127
17128 \begin_layout Standard
17129 Para hacer una línea vertical a trazos, introduce dos puntos 
17130 \begin_inset Quotes eld
17131 \end_inset
17132
17133 :
17134 \begin_inset Quotes erd
17135 \end_inset
17136
17137  junto con el carácter para alineación horizontal como argumento LaTeX en
17138  el diálogo de celda de tabla.
17139 \end_layout
17140
17141 \begin_layout Standard
17142 Para una línea de trazos horizontal añade el comando
17143 \end_layout
17144
17145 \begin_layout Standard
17146
17147 \series bold
17148
17149 \backslash
17150 hdashline
17151 \end_layout
17152
17153 \begin_layout Standard
17154 en ERT como primer elemento de la primera celda en la fila.
17155 \end_layout
17156
17157 \begin_layout Standard
17158 Para líneas de trazos en multicolumna usa el comando
17159 \end_layout
17160
17161 \begin_layout Standard
17162
17163 \series bold
17164
17165 \backslash
17166 cdashline{line number
17167 \series default
17168 }
17169 \end_layout
17170
17171 \begin_layout Standard
17172 en ERT como primer elemento de la primera celda en la fila.
17173  Si por ejemplo tienes una multicolumna extendida sobre las columnas 2 a
17174  4 y quieres una línea de trazos por encima, añade el comando
17175 \end_layout
17176
17177 \begin_layout Standard
17178
17179 \series bold
17180
17181 \backslash
17182 cdashline{2-4}
17183 \end_layout
17184
17185 \begin_layout Standard
17186 como primer elemento de la primera celda en la fila de la multicolumna.
17187 \end_layout
17188
17189 \begin_layout Standard
17190 \begin_inset VSpace bigskip
17191 \end_inset
17192
17193
17194 \end_layout
17195
17196 \begin_layout Standard
17197 La tabla\InsetSpace ~
17198
17199 \begin_inset LatexCommand ref
17200 reference "tab:Tabla-con-trazos"
17201
17202 \end_inset
17203
17204  se ha hecho usando 
17205 \begin_inset Quotes eld
17206 \end_inset
17207
17208
17209 \series bold
17210 :c
17211 \series default
17212
17213 \begin_inset Quotes erd
17214 \end_inset
17215
17216  como argumento LaTeX de la tercera columna.
17217  El comando ERT 
17218 \series bold
17219
17220 \backslash
17221 hdashline
17222 \series default
17223  se ha insertado en la primera celda de la tercera fila y el comando ERT
17224 \newline
17225
17226 \series bold
17227
17228 \backslash
17229 cdashline{4-5}
17230 \series default
17231  en la primera celda de la cuarta fila.
17232 \end_layout
17233
17234 \begin_layout Standard
17235 \begin_inset Note Greyedout
17236 status open
17237
17238 \begin_layout Standard
17239
17240 \series bold
17241 Nota:
17242 \series default
17243  Aparentemente el paquete LaTeX 
17244 \series bold
17245 arydshln
17246 \series default
17247  no es compatible con el paquete LaTeX 
17248 \series bold
17249 colortbl
17250 \series default
17251
17252 \begin_inset LatexCommand index
17253 name "LaTeX-paquetes ! colortbl"
17254
17255 \end_inset
17256
17257  que se usa para tablas coloreadas en la sección\InsetSpace ~
17258
17259 \begin_inset LatexCommand ref
17260 reference "sec:Tablas-Coloreadas"
17261
17262 \end_inset
17263
17264 .
17265  Esto implica que las tablas coloreadas no pueden tener líneas de trazos.
17266 \end_layout
17267
17268 \end_inset
17269
17270
17271 \end_layout
17272
17273 \begin_layout Standard
17274 \begin_inset ERT
17275 status collapsed
17276
17277 \begin_layout Standard
17278
17279
17280 \backslash
17281 else
17282 \end_layout
17283
17284 \end_inset
17285
17286
17287 \begin_inset Note Note
17288 status open
17289
17290 \begin_layout Standard
17291 Lo siguiente se mostrará en pantalla si no está instalado el paquete LaTeX
17292  
17293 \series bold
17294 arydshln
17295 \series default
17296 .
17297 \end_layout
17298
17299 \end_inset
17300
17301
17302 \end_layout
17303
17304 \begin_layout Standard
17305 Debes instalar el paquete LaTeX 
17306 \series bold
17307 arydshln
17308 \series default
17309  para ver la parte siguiente en la salida.
17310 \end_layout
17311
17312 \begin_layout Standard
17313 \begin_inset ERT
17314 status collapsed
17315
17316 \begin_layout Standard
17317
17318
17319 \backslash
17320 fi
17321 \end_layout
17322
17323 \end_inset
17324
17325
17326 \end_layout
17327
17328 \begin_layout Chapter
17329 Flotantes
17330 \begin_inset LatexCommand label
17331 name "cha:Flotantes"
17332
17333 \end_inset
17334
17335
17336 \begin_inset LatexCommand index
17337 name "Flotantes"
17338
17339 \end_inset
17340
17341
17342 \end_layout
17343
17344 \begin_layout Section
17345 Introducción
17346 \begin_inset LatexCommand label
17347 name "sec:IntroducciónFlotantes"
17348
17349 \end_inset
17350
17351
17352 \begin_inset LatexCommand index
17353 name "Flotantes ! Introducción"
17354
17355 \end_inset
17356
17357
17358 \end_layout
17359
17360 \begin_layout Standard
17361 Un flotante es un bloque de texto asociado con alguna especie de etiqueta
17362  que no tiene posición fija.
17363  Puede 
17364 \begin_inset Quotes eld
17365 \end_inset
17366
17367 flotar
17368 \begin_inset Quotes erd
17369 \end_inset
17370
17371  adelante o atrás una o dos páginas, donde encaje mejor.
17372  Las 
17373 \family sans
17374 Notas\InsetSpace ~
17375 al\InsetSpace ~
17376 pie
17377 \family default
17378  y 
17379 \family sans
17380 Notas\InsetSpace ~
17381 al\InsetSpace ~
17382 margen
17383 \family default
17384  también son flotantes, porque pueden flotar a la página siguiente cuando
17385  hay demasiadas notas en la página.
17386 \end_layout
17387
17388 \begin_layout Standard
17389 Los flotantes hacen posible composiciones de alta calidad.
17390  Imágenes y tablas se pueden distribuir equitativamente en las páginas para
17391  impedir espacios en blanco y páginas sin texto.
17392  Como el flotante destruye a menudo el contexto entre texto e imagen/tabla,
17393  cada flotante puede estar referido en el texto.
17394  Por lo tanto los flotantes están numerados.
17395  Las referencias se describen en la sección\InsetSpace ~
17396
17397 \begin_inset LatexCommand ref
17398 reference "sec:Referencias-a-Flotantes"
17399
17400 \end_inset
17401
17402  .
17403 \end_layout
17404
17405 \begin_layout Standard
17406 Para insertar un flotante, usa el menú 
17407 \family sans
17408 Insertar\SpecialChar \menuseparator
17409 Flotante
17410 \family default
17411 .
17412  En el documento se inserta un cuadro con etiqueta en el entorno 
17413 \family sans
17414 Encabezado
17415 \begin_inset Foot
17416 status collapsed
17417
17418 \begin_layout Standard
17419 El entorno 
17420 \family sans
17421 Encabezado
17422 \family default
17423  se describe en 
17424 \emph on
17425 Guía\InsetSpace ~
17426 del\InsetSpace ~
17427 Usuario
17428 \emph default
17429  de LyX.
17430 \end_layout
17431
17432 \end_inset
17433
17434 .
17435
17436 \family default
17437  Cada etiqueta acaba con el carácter 
17438 \begin_inset Quotes eld
17439 \end_inset
17440
17441 #
17442 \begin_inset Quotes erd
17443 \end_inset
17444
17445  como receptáculo para el número de flotante en la salida.
17446  La etiqueta será traducida automáticamente al lenguaje del documento.
17447  Tras la etiqueta se puede insertar el texto de encabezado.
17448  La imagen o tabla se inserta encima o debajo del encabezado en un párrafo
17449  separado dentro del flotante.
17450  Más sobre colocación de encabezados se describe en la sección\InsetSpace ~
17451
17452 \begin_inset LatexCommand ref
17453 reference "sec:Colocación-de-Encabezados"
17454
17455 \end_inset
17456
17457 .
17458  Para mantener legible el documento LyX, puedes abrir y cerrar el cuadro
17459  del flotante haciendo cilc-izquierda sobre él.
17460  Un cuadro cerrado se muestra así: 
17461 \begin_inset Graphics
17462         filename clipart/flotanteQt4.png
17463         scale 70
17464
17465 \end_inset
17466
17467  -- un cuadro gris con etiqueta en rojo.
17468 \end_layout
17469
17470 \begin_layout Standard
17471 Se recomienda insertar flotantes como párrafos separados para evitar posibles
17472  errores de LaTeX si el texto circundante se formatea de modo especial.
17473 \end_layout
17474
17475 \begin_layout Standard
17476 Figuras o tablas ya existentes pueden ponerse en un flotante marcándolas
17477  y pinchando el botón correspondiente de la barra de herramientas para un
17478  flotante nuevo.
17479 \end_layout
17480
17481 \begin_layout Section
17482 Tipos de Flotantes
17483 \end_layout
17484
17485 \begin_layout Standard
17486 Además de los flotantes de imagen y de tabla que se describen en la sección\InsetSpace ~
17487
17488 \begin_inset LatexCommand ref
17489 reference "sec:Figuras-Flotantes"
17490
17491 \end_inset
17492
17493  y 
17494 \begin_inset LatexCommand ref
17495 reference "sec:Tablas-Flotantes"
17496
17497 \end_inset
17498
17499 , respectivamente, LyX ofrece los tipos 
17500 \series bold
17501 Algoritmo
17502 \series default
17503  y 
17504 \series bold
17505 Ajustado\InsetSpace ~
17506 al\InsetSpace ~
17507 Texto
17508 \series default
17509 .
17510 \end_layout
17511
17512 \begin_layout Subsection
17513 Algoritmos Flotantes
17514 \begin_inset LatexCommand index
17515 name "Flotantes ! Algoritmos Flotantes"
17516
17517 \end_inset
17518
17519
17520 \end_layout
17521
17522 \begin_layout Standard
17523 \begin_inset Float algorithm
17524 placement h
17525 wide false
17526 sideways false
17527 status open
17528
17529 \begin_layout Standard
17530 \begin_inset Caption
17531
17532 \begin_layout Standard
17533 \begin_inset LatexCommand label
17534 name "alg:Ejemplo-de-Algoritmo-flotante"
17535
17536 \end_inset
17537
17538 Ejemplo de Algoritmo flotante
17539 \end_layout
17540
17541 \end_inset
17542
17543
17544 \end_layout
17545
17546 \begin_layout LyX-Code
17547 for I in 1..N loop
17548 \newline
17549  Sum:= Sum + A(I); /*senseless comment*/
17550 \newline
17551 end loop
17552 \begin_inset VSpace -4mm
17553 \end_inset
17554
17555
17556 \end_layout
17557
17558 \end_inset
17559
17560
17561 \end_layout
17562
17563 \begin_layout Standard
17564 Este tipo de flotante se inserta con el menú 
17565 \family sans
17566 Insertar\SpecialChar \menuseparator
17567 Flotante\SpecialChar \menuseparator
17568 Algoritmo
17569 \family default
17570 .
17571  Se usa para códigos y descripciones de algoritmos.
17572  Un posible entorno para algoritmos es 
17573 \family sans
17574 Código-LyX
17575 \family default
17576 , descrito en 
17577 \emph on
17578 Guía del Usuario
17579 \emph default
17580  de LyX.
17581  El algoritmo\InsetSpace ~
17582
17583 \begin_inset LatexCommand ref
17584 reference "alg:Ejemplo-de-Algoritmo-flotante"
17585
17586 \end_inset
17587
17588  es un ejemplo de algoritmo flotante en el que se ha añadido un espacio
17589  vertical de -4\InsetSpace \thinspace{}
17590 mm al final para tener la línea inferior exactamente bajo
17591  la última línea de texto.
17592 \end_layout
17593
17594 \begin_layout Standard
17595 La etiqueta de flotante no se traduce automáticamente al lenguaje del documento.
17596  Si tu documento no es en Inglés, tienes que hacerlo manualmente añadiendo
17597  la siguiente línea al preámbulo del documento
17598 \series bold
17599 :
17600 \end_layout
17601
17602 \begin_layout Standard
17603
17604 \series bold
17605
17606 \backslash
17607 floatname{algorithm}{nombre}
17608 \end_layout
17609
17610 \begin_layout Standard
17611
17612 \family sans
17613 nombre
17614 \family default
17615  es la palabra 
17616 \begin_inset Quotes eld
17617 \end_inset
17618
17619
17620 \emph on
17621 algorithm
17622 \emph default
17623
17624 \begin_inset Quotes erd
17625 \end_inset
17626
17627  en el lenguaje deseado.
17628 \end_layout
17629
17630 \begin_layout Description
17631
17632 \series bold
17633 Nota:
17634 \series default
17635  Si se emplea el paquete LaTeX 
17636 \series bold
17637 hyperref
17638 \series default
17639
17640 \begin_inset LatexCommand index
17641 name "LaTeX-paquetes ! hyperref"
17642
17643 \end_inset
17644
17645  para enlazar referencias cruzadas a flotantes en la salida PDF, debe cargarse
17646  en el preámbulo LaTeX antes de la definición de flotantes para poder referirse
17647  a ellos.
17648  LyX establece la definición de algoritmos flotantes automáticamente antes
17649  de la parte del preámbulo editable por el usuario, así que hay que insertar
17650  las siguientes líneas 
17651 \emph on
17652 después
17653 \emph default
17654  de cargar el comando 
17655 \series bold
17656 hyperref:
17657 \begin_inset VSpace defskip
17658 \end_inset
17659
17660
17661 \newline
17662
17663 \backslash
17664 newfloat{Xalgorithm}{tbp}{loa}
17665 \newline
17666
17667 \backslash
17668 floatname{Xalgorithm}{nombre}
17669 \newline
17670
17671 \backslash
17672 newcommand{
17673 \backslash
17674 theHalgorithm}{
17675 \backslash
17676 theHXalgorithm}
17677 \newline
17678
17679 \backslash
17680 renewenvironment{algorithm}[1][tbp]
17681 \newline
17682
17683 \begin_inset ERT
17684 status collapsed
17685
17686 \begin_layout Standard
17687
17688
17689 \backslash
17690 hphantom{ }
17691 \end_layout
17692
17693 \end_inset
17694
17695 {
17696 \backslash
17697 begin{Xalgorithm}[#1]}{
17698 \backslash
17699 end{Xalgorithm}}
17700 \begin_inset VSpace defskip
17701 \end_inset
17702
17703
17704 \series default
17705
17706 \newline
17707 Donde 
17708 \family sans
17709 nombre
17710 \family default
17711  es la palabra 
17712 \begin_inset Quotes eld
17713 \end_inset
17714
17715
17716 \emph on
17717 algorithm
17718 \emph default
17719
17720 \begin_inset Quotes erd
17721 \end_inset
17722
17723  en el lenguaje deseado.
17724 \end_layout
17725
17726 \begin_layout Standard
17727 Los algoritmos flotantes no se numeran por defecto según el esquema 
17728 \begin_inset Quotes eld
17729 \end_inset
17730
17731 capítulo.algoritmo
17732 \begin_inset Quotes erd
17733 \end_inset
17734
17735  como es el caso para tablas e imágenes flotantes en muchas clases de documento.
17736  Para numerar algoritmos flotantes según ese mismo esquema, añade este comando
17737  en el preámbulo del documento:
17738 \end_layout
17739
17740 \begin_layout Standard
17741
17742 \series bold
17743
17744 \backslash
17745 numberwithin{algorithm}{chapter}
17746 \end_layout
17747
17748 \begin_layout Standard
17749 Si usas el paquete LaTeX 
17750 \series bold
17751 hyperref
17752 \series default
17753 , añade en su lugar esta línea 
17754 \emph on
17755 después
17756 \emph default
17757  de la definición de 
17758 \family sans
17759 Xalgorithm
17760 \family default
17761  (los comandos anteriores) en el preámbulo:
17762 \end_layout
17763
17764 \begin_layout Standard
17765
17766 \series bold
17767
17768 \backslash
17769 numberwithin{Xalgorithm}{chapter}
17770 \end_layout
17771
17772 \begin_layout Standard
17773 Para poder usar el comando 
17774 \series bold
17775
17776 \backslash
17777 numberwithin
17778 \series default
17779 , marca la opción 
17780 \family sans
17781 Usar\InsetSpace ~
17782 el\InsetSpace ~
17783 paquete\InsetSpace ~
17784 AMS
17785 \family default
17786  en el menú 
17787 \family sans
17788 Documento\SpecialChar \menuseparator
17789 Configuración\SpecialChar \menuseparator
17790 Ecuaciones
17791 \family default
17792 .
17793 \end_layout
17794
17795 \begin_layout Subsection
17796 Flotantes Ajustados a Texto
17797 \begin_inset LatexCommand index
17798 name "Flotantes ! Ajustados a Texto"
17799
17800 \end_inset
17801
17802
17803 \begin_inset LatexCommand label
17804 name "sub:floatflt-flotante-ajustado"
17805
17806 \end_inset
17807
17808
17809 \end_layout
17810
17811 \begin_layout Standard
17812 Este tipo de flotante se usa cuando quieres adosar una figura al texto,
17813  de manera que ocupe solo una parte del ancho de columna.
17814  Puede insertarse usando el menú 
17815 \begin_inset Wrap figure
17816 placement l
17817 width "40col%"
17818 status open
17819
17820 \begin_layout Standard
17821 \begin_inset Graphics
17822         filename ../clipart/mobius.eps
17823         display color
17824         width 40col%
17825         rotateOrigin center
17826
17827 \end_inset
17828
17829
17830 \end_layout
17831
17832 \begin_layout Standard
17833 \begin_inset Caption
17834
17835 \begin_layout Standard
17836 \begin_inset LatexCommand label
17837 name "fig:Esto-es-una"
17838
17839 \end_inset
17840
17841 Esto es una figura adosada, y esto la genial cabecera que la describe.
17842 \begin_inset VSpace medskip
17843 \end_inset
17844
17845
17846 \end_layout
17847
17848 \end_inset
17849
17850
17851 \end_layout
17852
17853 \end_inset
17854
17855  
17856 \family sans
17857 Insertar\SpecialChar \menuseparator
17858 Flotante\SpecialChar \menuseparator
17859 Flotante\InsetSpace ~
17860 de\InsetSpace ~
17861 ajuste\InsetSpace ~
17862 de\InsetSpace ~
17863 texto
17864 \family default
17865  si está instalado el paquete LaTeX 
17866 \series bold
17867 floatflt
17868 \series default
17869
17870 \begin_inset LatexCommand index
17871 name "LaTeX-paquetes ! floatflt"
17872
17873 \end_inset
17874
17875 .
17876 \begin_inset Foot
17877 status collapsed
17878
17879 \begin_layout Standard
17880 La instalación de paquetes LaTeX se explica en el manual 
17881 \emph on
17882 Configuración de LaTeX
17883 \emph default
17884 .
17885 \end_layout
17886
17887 \end_inset
17888
17889  La anchura y posición del flotante se ajusta con cilc-derecha sobre el
17890  cuadro del flotante.
17891  La figura\InsetSpace ~
17892
17893 \begin_inset LatexCommand ref
17894 reference "fig:Esto-es-una"
17895
17896 \end_inset
17897
17898  es un ejemplo de flotante ajustado al texto con una anchura del 40\InsetSpace \thinspace{}
17899 col%.
17900 \begin_inset Foot
17901 status collapsed
17902
17903 \begin_layout Standard
17904 Ver unidades disponibles en\InsetSpace ~
17905
17906 \begin_inset LatexCommand ref
17907 reference "cha:Unidades-disponibles-en"
17908
17909 \end_inset
17910
17911 .
17912 \end_layout
17913
17914 \end_inset
17915
17916  Se ha añadido un espacio vertical bajo el encabezado para separarlo mejor
17917  del texto envolvente.
17918 \end_layout
17919
17920 \begin_layout Standard
17921 El paquete LaTeX 
17922 \series bold
17923 floatflt
17924 \series default
17925  también soporta tablas adosadas a texto pero aún no es soportado por LyX.
17926  Si lo necesitas, consulta la documentación de 
17927 \series bold
17928 floatflt
17929 \series default
17930  
17931 \begin_inset LatexCommand cite
17932 key "floatflt"
17933
17934 \end_inset
17935
17936 .
17937 \end_layout
17938
17939 \begin_layout Standard
17940 \begin_inset Note Greyedout
17941 status open
17942
17943 \begin_layout Standard
17944
17945 \series bold
17946 Nota:
17947 \series default
17948  ¡Los flotantes adosados a texto son frágiles! P.\InsetSpace \thinspace{}
17949 e.\InsetSpace ~
17950 si una figura está demasiado
17951  cerca de la parte inferior de la página se pueden perder cosas en el proceso
17952  de salida, el flotante puede no aparecer o situarse junto a otro texto.
17953 \begin_inset Foot
17954 status open
17955
17956 \begin_layout Standard
17957 La mejor solución es usar el paquete LaTeX 
17958 \series bold
17959 wrapf\SpecialChar \textcompwordmark{}
17960 ig
17961 \series default
17962
17963 \begin_inset LatexCommand index
17964 name "LaTeX-paquetes ! wrapfig\\vspace{4mm}"
17965
17966 \end_inset
17967
17968  en vez de 
17969 \series bold
17970 floatf\SpecialChar \textcompwordmark{}
17971 lt
17972 \series default
17973  pero actualmente no es soportado por LyX.
17974 \end_layout
17975
17976 \end_inset
17977
17978
17979 \end_layout
17980
17981 \end_inset
17982
17983
17984 \end_layout
17985
17986 \begin_layout Standard
17987 En general:
17988 \end_layout
17989
17990 \begin_layout Itemize
17991 Los flotantes adosados no deberían situarse en párrafos que van sobre un
17992  salto de página.
17993  Esto implica que lo mejor es insertarlos en el sitio exacto cuando el documento
17994  esté casi listo y puedas prever los saltos de página.
17995 \end_layout
17996
17997 \begin_layout Itemize
17998 Los flotantes adosados deberían situarse, bien en un párrafo propio antes
17999  del párrafo al que deben ajustarse, o bien dentro de un párrafo.
18000 \end_layout
18001
18002 \begin_layout Itemize
18003 Los flotantes adosados a párrafos consecutivos pueden dar problemas, así
18004  que asegura que hay un párrafo de texto entre ellos.
18005 \end_layout
18006
18007 \begin_layout Itemize
18008 Los flotantes adosados no están permitidos en cabeceras de sección o tablas.
18009 \end_layout
18010
18011 \begin_layout Section
18012 Referencias a Flotantes
18013 \begin_inset LatexCommand label
18014 name "sec:Referencias-a-Flotantes"
18015
18016 \end_inset
18017
18018
18019 \begin_inset LatexCommand index
18020 name "Flotantes ! Referencias"
18021
18022 \end_inset
18023
18024
18025 \begin_inset LatexCommand index
18026 name "Referencias"
18027
18028 \end_inset
18029
18030
18031 \end_layout
18032
18033 \begin_layout Standard
18034 Para referirse a un flotante, inserta una etiqueta en su encabezado con
18035  el menú 
18036 \family sans
18037 Insertar\SpecialChar \menuseparator
18038 Etiqueta
18039 \family default
18040  o el botón 
18041 \begin_inset Graphics
18042         filename ../../images/label-insert.xpm
18043         scale 85
18044
18045 \end_inset
18046
18047 .
18048  Aparece una ventana esperando la introducción del texto de la etiqueta
18049  y se inserta un cuadro gris como este: 
18050 \begin_inset Graphics
18051         filename clipart/etiquetaQt4.png
18052         scale 85
18053
18054 \end_inset
18055
18056 .
18057  LyX ofrece como texto las primeras palabras del encabezado con un prefijo.
18058  El prefijo depende del tipo de flotante, p.\InsetSpace \thinspace{}
18059 e.\InsetSpace ~
18060 para figuras el prefijo será
18061  
18062 \begin_inset Quotes eld
18063 \end_inset
18064
18065
18066 \family sans
18067 fig:
18068 \family default
18069
18070 \begin_inset Quotes erd
18071 \end_inset
18072
18073 .
18074 \end_layout
18075
18076 \begin_layout Standard
18077 La etiqueta se usa como ancla y el nombre para la referencia.
18078  Puedes referenciar la etiqueta usando el menú 
18079 \family sans
18080 Insertar\SpecialChar \menuseparator
18081 Referencia
18082 \family default
18083 \InsetSpace ~
18084
18085 \family sans
18086 cruzada
18087 \family default
18088  o el botón 
18089 \begin_inset Graphics
18090         filename ../../images/dialog-show-new-inset_ref.xpm
18091         scale 85
18092
18093 \end_inset
18094
18095 .
18096  Aparece una ventana de referencia cruzada con todas las etiquetas del documento.
18097  Si tienes abiertos varios documentos LyX, escoge aquel con el  que estás
18098  trabajando de la lista desplegable de la parte superior del diálogo.
18099  Puedes ordenar las etiquetas alfabéticamente y elegir una.
18100  Se inserta un cuadro gris como este: 
18101 \begin_inset Graphics
18102         filename clipart/referenciaQt4.png
18103         scale 85
18104
18105 \end_inset
18106
18107 .
18108  En la salida, en lugar de este cuadro aparecerá el número de la referencia.
18109 \end_layout
18110
18111 \begin_layout Standard
18112 Se recomienda poner un espacio protegido entre el nombre de la referencia
18113  cruzada y su número para evitar saltos de línea entre ellos.
18114  Si una referencia cruzada corresponde a una etiqueta inexistente verás
18115  dos interrogaciones en la salida.
18116 \end_layout
18117
18118 \begin_layout Standard
18119 En cualquier momento puedes cambiar etiquetas haciendo cilc sobre el cuadro.
18120  Las referencias a las etiquetas cambiadas cambian automáticamente su enlace
18121  al texto de la etiqueta nueva, no te ocupes por eso.
18122 \end_layout
18123
18124 \begin_layout Standard
18125 El botón 
18126 \family sans
18127 Ir\InsetSpace ~
18128 a\InsetSpace ~
18129 la\InsetSpace ~
18130 etiqueta
18131 \family default
18132  en la ventana de referencia cruzada lleva el cursor hasta dicha etiqueta,
18133  y el texto del botón cambia a 
18134 \family sans
18135 Volver
18136 \family default
18137 , con el que se puede retornar a la referencia.
18138  cilc-derecha sobre el cuadro de la referencia también lleva el cursor hasta
18139  la etiqueta pero sin opción de volver.
18140 \end_layout
18141
18142 \begin_layout Subsection
18143 Formatos de Referencia Cruzada
18144 \begin_inset LatexCommand label
18145 name "sub:Formatos-referencia-cruzada"
18146
18147 \end_inset
18148
18149
18150 \begin_inset LatexCommand index
18151 name "Referencias ! Formatos"
18152
18153 \end_inset
18154
18155
18156 \end_layout
18157
18158 \begin_layout Standard
18159 Hay seis variedades de referencias cruzadas:
18160 \end_layout
18161
18162 \begin_layout Description
18163 <referencia>: imprime el número flotante, esta es la opción predeterminada:
18164  
18165 \begin_inset LatexCommand ref
18166 reference "fig:Dos-imágenes-distorsionadas"
18167
18168 \end_inset
18169
18170
18171 \end_layout
18172
18173 \begin_layout Description
18174 (<referencia>): imprime el número flotante entre paréntesis, es el estilo
18175  habitual para referirse a fórmulas, especialmente si se omite el nombre
18176  
18177 \begin_inset Quotes eld
18178 \end_inset
18179
18180 Ecuación
18181 \begin_inset Quotes erd
18182 \end_inset
18183
18184
18185 \begin_inset LatexCommand eqref
18186 reference "eq:Wgn"
18187
18188 \end_inset
18189
18190
18191 \end_layout
18192
18193 \begin_layout Description
18194 <página>: imprime el número de página: Página\InsetSpace ~
18195
18196 \begin_inset LatexCommand pageref
18197 reference "fig:Dos-imágenes-distorsionadas"
18198
18199 \end_inset
18200
18201
18202 \end_layout
18203
18204 \begin_layout Description
18205 en\InsetSpace ~
18206 página\InsetSpace ~
18207 <página>: imprime el texto 
18208 \begin_inset Quotes eld
18209 \end_inset
18210
18211 en la página
18212 \begin_inset Quotes erd
18213 \end_inset
18214
18215  y el número de página: 
18216 \begin_inset LatexCommand vpageref
18217 reference "fig:Dos-imágenes-distorsionadas"
18218
18219 \end_inset
18220
18221
18222 \end_layout
18223
18224 \begin_layout Description
18225 <referencia>\InsetSpace ~
18226 en\InsetSpace ~
18227 página\InsetSpace ~
18228 <página>: imprime el número flotante, el texto 
18229 \begin_inset Quotes eld
18230 \end_inset
18231
18232 en la página
18233 \begin_inset Quotes erd
18234 \end_inset
18235
18236  y el número de página: 
18237 \begin_inset LatexCommand vref
18238 reference "fig:Dos-imágenes-distorsionadas"
18239
18240 \end_inset
18241
18242
18243 \end_layout
18244
18245 \begin_layout Description
18246 Referencia\InsetSpace ~
18247 con\InsetSpace ~
18248 formato: imprime un formato personalizado.
18249  
18250 \begin_inset Note Greyedout
18251 status open
18252
18253 \begin_layout Standard
18254
18255 \series bold
18256 Nota:
18257 \series default
18258  Esta característica sólo está disponible si está instalado el paquete LaTeX
18259  
18260 \series bold
18261 prettyref
18262 \series default
18263 .
18264 \end_layout
18265
18266 \end_inset
18267
18268
18269 \end_layout
18270
18271 \begin_layout Standard
18272 Ten en cuenta que el estilo <página> no imprime el número si la etiqueta
18273  está en la misma página, en la anterior o en la siguiente.
18274  En su lugar verás p.\InsetSpace \thinspace{}
18275 e.\InsetSpace ~
18276 el texto 
18277 \begin_inset Quotes eld
18278 \end_inset
18279
18280
18281 \family sans
18282 en esta página
18283 \family default
18284
18285 \begin_inset Quotes erd
18286 \end_inset
18287
18288 .
18289 \end_layout
18290
18291 \begin_layout Standard
18292 El número y página actual de la parte del documento referida es automáticamente
18293  calculado por LaTeX en la salida.
18294  Las variedades se ajustan en el campo 
18295 \family sans
18296 Formato
18297 \family default
18298  de la ventana de referencia cruzada, que aparece al pinchar sobre el cuadro.
18299 \end_layout
18300
18301 \begin_layout Subsection
18302 Referencias a Subfiguras 
18303 \begin_inset LatexCommand label
18304 name "sub:Referencias-a-Subfiguras"
18305
18306 \end_inset
18307
18308
18309 \begin_inset LatexCommand index
18310 name "Referencias ! a Subfiguras"
18311
18312 \end_inset
18313
18314
18315 \end_layout
18316
18317 \begin_layout Standard
18318 Por el momento LyX no soporta las referencias a subfiguras, de modo que
18319  hay que emplear comandos LaTeX.
18320  La etiqueta se crea con el comando
18321 \end_layout
18322
18323 \begin_layout Standard
18324
18325 \series bold
18326
18327 \backslash
18328 label{fig:NombreEtiqueta}
18329 \end_layout
18330
18331 \begin_layout Standard
18332 que se inserta directamente en el campo de encabezado de la subfigura.
18333  Para referenciar la etiqueta añade el siguiente comando en ERT
18334 \end_layout
18335
18336 \begin_layout Standard
18337
18338 \series bold
18339
18340 \backslash
18341 ref{fig:NombreEtiqueta}
18342 \end_layout
18343
18344 \begin_layout Standard
18345 en la posición del documento en la que quieras que aparezca la referencia.
18346  Aquí hay una referencia a una subfigura: Subfigura\InsetSpace ~
18347
18348 \begin_inset ERT
18349 status collapsed
18350
18351 \begin_layout Standard
18352
18353
18354 \backslash
18355 ref{fig:Platypus}
18356 \end_layout
18357
18358 \end_inset
18359
18360
18361 \end_layout
18362
18363 \begin_layout Standard
18364
18365 \end_layout
18366
18367 \begin_layout Subsection
18368 Designación Automática de Referencias
18369 \begin_inset LatexCommand index
18370 name "Referencias ! Designación Automática"
18371
18372 \end_inset
18373
18374
18375 \end_layout
18376
18377 \begin_layout Standard
18378 El paquete LaTeX 
18379 \series bold
18380 hyperref
18381 \series default
18382  dispone de una característica muy útil que permite incluir automáticamente
18383  en las referencias cruzadas el nombre de los flotantes referidos (o partes
18384  de texto como secciones).
18385  Quieres p.\InsetSpace \thinspace{}
18386 e.\InsetSpace ~
18387 escribir la palabra 
18388 \begin_inset Quotes eld
18389 \end_inset
18390
18391 Figura
18392 \begin_inset Quotes erd
18393 \end_inset
18394
18395  antes de cada cuadro de referencia.
18396  Para conseguirlo debes cargar el paquete LaTeX 
18397 \series bold
18398 hyperref
18399 \series default
18400
18401 \begin_inset LatexCommand index
18402 name "LaTeX-paquetes ! hyperref"
18403
18404 \end_inset
18405
18406  en el preámbulo del documento con
18407 \end_layout
18408
18409 \begin_layout Standard
18410
18411 \series bold
18412
18413 \backslash
18414 usepackage[pdfborder={0 0 0}]{hyperref}
18415 \newline
18416
18417 \backslash
18418 AtBeginDocument{
18419 \backslash
18420 renewcommand{
18421 \backslash
18422 ref}[1]{
18423 \backslash
18424 mbox{
18425 \backslash
18426 autoref{#1}}}}
18427 \end_layout
18428
18429 \begin_layout Standard
18430
18431 \series bold
18432 hyperref
18433 \series default
18434  se utiliza para enlazar referencias cruzadas en las salidas DVI y PDF,
18435  esto significa que el lector del documento podrá pinchar sobre una entrada
18436  de Índice o una referencia y será inmediatamente dirigido a esa parte del
18437  documento.
18438  
18439 \series bold
18440 hyperref
18441 \series default
18442  también crea marcadores PDF para cada sección para facilitar al lector
18443  la navegación por el documento.
18444  Esto también se ha usado en este documento pero si echas una ojeada al
18445  preámbulo encontrarás varias opciones en la carga de 
18446 \series bold
18447 hyperref
18448 \series default
18449 .
18450  Para aprender más sobre ello acude a la documentación del paquete 
18451 \begin_inset LatexCommand cite
18452 key "hyperref"
18453
18454 \end_inset
18455
18456 .
18457 \end_layout
18458
18459 \begin_layout Standard
18460 \begin_inset Note Greyedout
18461 status open
18462
18463 \begin_layout Standard
18464
18465 \series bold
18466 Nota:
18467 \series default
18468  La designación automática de referencias no puede usarse en el estilo 
18469 \family sans
18470 Referencia\InsetSpace ~
18471 con\InsetSpace ~
18472 formato
18473 \family default
18474 , descrita en la sección\InsetSpace ~
18475
18476 \begin_inset LatexCommand ref
18477 reference "sub:Formatos-referencia-cruzada"
18478
18479 \end_inset
18480
18481 .
18482 \end_layout
18483
18484 \end_inset
18485
18486
18487 \end_layout
18488
18489 \begin_layout Subsection
18490 Colocación de Referencias
18491 \begin_inset LatexCommand label
18492 name "sub:Colocación-de-Referencias"
18493
18494 \end_inset
18495
18496
18497 \begin_inset LatexCommand index
18498 name "Referencias ! Colocación"
18499
18500 \end_inset
18501
18502
18503 \end_layout
18504
18505 \begin_layout Standard
18506 Si usas 
18507 \series bold
18508 hyperref
18509 \series default
18510
18511 \begin_inset LatexCommand index
18512 name "LaTeX-paquetes ! hyperref"
18513
18514 \end_inset
18515
18516  para enlazar referencias cruzadas en la salida, verás que al pinchar sobre
18517  la referencia de una imagen flotante te lleva hasta la etiqueta de la imagen.
18518  El encabezado será la primera parte de texto en pantalla, de forma que
18519  para ver la imagen debes deslizar.
18520  Se debe a que el ancla de enlace de la referencia se sitúa en la etiqueta.
18521  Usando el paquete 
18522 \series bold
18523 hypcap
18524 \series default
18525
18526 \begin_inset LatexCommand index
18527 name "LaTeX-paquetes ! hypcap"
18528
18529 \end_inset
18530
18531 , que forma parte del paquete LaTeX 
18532 \series bold
18533 oberdiek
18534 \series default
18535
18536 \begin_inset LatexCommand index
18537 name "LaTeX-paquetes ! oberdiek"
18538
18539 \end_inset
18540
18541 , el ancla de enlace se sitúa al comienzo de un flotante.
18542  Para usar esta característica para figuras flotantes carga 
18543 \series bold
18544 hypcap
18545 \series default
18546  en el preámbulo con
18547 \end_layout
18548
18549 \begin_layout Standard
18550
18551 \series bold
18552
18553 \backslash
18554 usepackage[f\SpecialChar \textcompwordmark{}
18555 igure]{hypcap}
18556 \end_layout
18557
18558 \begin_layout Standard
18559 Puedes usar 
18560 \series bold
18561 hypcap
18562 \series default
18563  para todos los flotantes aunque no se recomienda por razones de estabilidad.
18564  Más información en el manual de 
18565 \series bold
18566 hypcap
18567 \series default
18568  
18569 \begin_inset LatexCommand cite
18570 key "hypcap"
18571
18572 \end_inset
18573
18574 .
18575 \end_layout
18576
18577 \begin_layout Standard
18578 \begin_inset Note Greyedout
18579 status open
18580
18581 \begin_layout Standard
18582
18583 \series bold
18584 Nota: hypcap
18585 \series default
18586  debe cargarse después de 
18587 \series bold
18588 hyperref
18589 \series default
18590  en el preámbulo
18591 \series bold
18592 .
18593 \end_layout
18594
18595 \end_inset
18596
18597
18598 \end_layout
18599
18600 \begin_layout Standard
18601 \begin_inset Note Greyedout
18602 status open
18603
18604 \begin_layout Standard
18605
18606 \series bold
18607 Nota:
18608 \series default
18609  La colocación de referencias no afecta a las referencias a subfiguras.
18610 \end_layout
18611
18612 \end_inset
18613
18614
18615 \end_layout
18616
18617 \begin_layout Section
18618 Colocación de Flotantes
18619 \begin_inset LatexCommand label
18620 name "sec:Colocación-de-Flotantes"
18621
18622 \end_inset
18623
18624
18625 \begin_inset LatexCommand index
18626 name "Flotantes ! Colocación"
18627
18628 \end_inset
18629
18630
18631 \end_layout
18632
18633 \begin_layout Standard
18634 cilc-derecha sobre un cuadro de flotante abre un diálogo en el que pueden
18635  cambiarse las opciones de LaTeX para situar los flotantes.
18636 \newline
18637 La opción 
18638 \family sans
18639 Extender\InsetSpace ~
18640 columnas
18641 \family default
18642  solo es aplicable a documentos de dos columnas: Si lo seleccionas, el flotante
18643  abarcará ambas columnas en lugar de una sola.
18644 \newline
18645 La opción 
18646 \family sans
18647 Girar\InsetSpace ~
18648 a\InsetSpace ~
18649 un\InsetSpace ~
18650 lado
18651 \family default
18652  sirve para girar flotantes, ver sección\InsetSpace ~
18653
18654 \begin_inset LatexCommand ref
18655 reference "sec:Rotación-de-Flotantes"
18656
18657 \end_inset
18658
18659 .
18660  
18661 \end_layout
18662
18663 \begin_layout Standard
18664 Puedes usar una o más de las siguientes opciones en el diálogo para establecer
18665  la posición de un flotante si desmarcas la opción 
18666 \family sans
18667 Usar\InsetSpace ~
18668 ubicación\InsetSpace ~
18669 predeterminada
18670 \family default
18671 :
18672 \end_layout
18673
18674 \begin_layout Description
18675
18676 \family sans
18677 \series bold
18678 Aquí\InsetSpace ~
18679 si\InsetSpace ~
18680 es\InsetSpace ~
18681 posible:
18682 \family default
18683 \series default
18684  intenta situar el flotante en la posición en la que se inserta
18685 \end_layout
18686
18687 \begin_layout Description
18688
18689 \family sans
18690 \series bold
18691 Principio\InsetSpace ~
18692 de\InsetSpace ~
18693 página:
18694 \family default
18695 \series default
18696  intenta situar el flotante al principio de la página actual
18697 \end_layout
18698
18699 \begin_layout Description
18700
18701 \family sans
18702 \series bold
18703 Fin\InsetSpace ~
18704 de\InsetSpace ~
18705 página:
18706 \family default
18707 \series default
18708  intenta situar el flotante al final de la página actual
18709 \end_layout
18710
18711 \begin_layout Description
18712
18713 \family sans
18714 \series bold
18715 Página\InsetSpace ~
18716 de\InsetSpace ~
18717 flotantes:
18718 \family default
18719 \series default
18720  intenta situar el flotante en una página propia 
18721 \end_layout
18722
18723 \begin_layout Standard
18724 LaTeX usa 
18725 \emph on
18726 siempre
18727 \emph default
18728  ese orden de opciones.
18729  Significa que si usas la colocación predeterminada, LaTeX probará en primer
18730  lugar 
18731 \family sans
18732 Aquí\InsetSpace ~
18733 si\InsetSpace ~
18734 es\InsetSpace ~
18735 posible
18736 \family default
18737 , luego 
18738 \family sans
18739 Principio\InsetSpace ~
18740 de\InsetSpace ~
18741 página
18742 \family default
18743 , y después las otras.
18744  Si no usas la predeterminada, LaTeX solo probará las opciones marcadas
18745  pero en dicho orden.
18746  Si no es posible ninguna de las 4 ubicaciones el proceso se repite internamente
18747  pero intenta poner el flotante en la página siguiente.
18748 \end_layout
18749
18750 \begin_layout Standard
18751 De forma predeterminada cada una de las opciones tiene sus propias reglas:
18752 \end_layout
18753
18754 \begin_layout Labeling
18755 \labelwidthstring 00.00.0000
18756
18757 \family sans
18758 Principio\InsetSpace ~
18759 de\InsetSpace ~
18760 página:
18761 \family default
18762  solo si el flotante ocupa menos del 70\InsetSpace \thinspace{}
18763 % de la página puede ubicarse al
18764  principio de página (
18765 \series bold
18766
18767 \backslash
18768 topfraction
18769 \series default
18770 )
18771 \end_layout
18772
18773 \begin_layout Labeling
18774 \labelwidthstring 00.00.0000
18775
18776 \family sans
18777 Fin\InsetSpace ~
18778 de\InsetSpace ~
18779 página:
18780 \family default
18781  solo si el flotante ocupa menos del 30\InsetSpace \thinspace{}
18782 % de la página puede ubicarse al
18783  fin de página.
18784  (
18785 \series bold
18786
18787 \backslash
18788 bottomfraction
18789 \series default
18790 )
18791 \end_layout
18792
18793 \begin_layout Labeling
18794 \labelwidthstring 00.00.0000
18795
18796 \family sans
18797 Página\InsetSpace ~
18798 de\InsetSpace ~
18799 flotantes:
18800 \family default
18801  solo si más del 50\InsetSpace \thinspace{}
18802 % de la página se ocupa por flotantes puede haber varios
18803  juntos en la misma página.
18804  (
18805 \series bold
18806
18807 \backslash
18808 floatpagefraction
18809 \series default
18810 )
18811 \end_layout
18812
18813 \begin_layout Standard
18814 Si no te agradan estas reglas puedes ignorarlas marcando la opción adicional
18815  
18816 \family sans
18817 Ignorar\InsetSpace ~
18818 reglas\InsetSpace ~
18819 de\InsetSpace ~
18820 LaTeX
18821 \family default
18822 .
18823 \newline
18824 También puedes redefinir las reglas con los comandos LaTeX que van entre
18825  paréntesis tras la descripción de las reglas anteriores.
18826  Por ejemplo, para aumentar el valor predeterminado, quizás pequeño, de
18827  la regla 
18828 \family sans
18829 Fin
18830 \family default
18831 \InsetSpace ~
18832
18833 \family sans
18834 de
18835 \family default
18836 \InsetSpace ~
18837
18838 \family sans
18839 página
18840 \family default
18841  al 50\InsetSpace \thinspace{}
18842 %, añade esta línea en el preámbulo:
18843 \end_layout
18844
18845 \begin_layout Standard
18846
18847 \series bold
18848
18849 \backslash
18850 renewcommand{
18851 \backslash
18852 bottomfraction}{0.5}
18853 \end_layout
18854
18855 \begin_layout Standard
18856 En determinados casos podrías necesitar ubicar un flotante exactamente en
18857  la posición en la que se inserta.
18858  Para esto puedes usar la opción 
18859 \family sans
18860 Aquí\InsetSpace ~
18861 definitivamente
18862 \family default
18863 .
18864  Usa esta opción esporádicamente y solo cuando el documento esté casi listo,
18865  porque el flotante ya no podrá 
18866 \begin_inset Quotes eld
18867 \end_inset
18868
18869 flotar
18870 \begin_inset Quotes erd
18871 \end_inset
18872
18873  y si haces cambios al documento se podría estropear el diseño de la página.
18874 \end_layout
18875
18876 \begin_layout Standard
18877 No hay opciones de ubicación para flotantes ajustados a texto porque siempre
18878  están rodeados por texto de un párrafo determinado.
18879 \begin_inset VSpace bigskip
18880 \end_inset
18881
18882
18883 \end_layout
18884
18885 \begin_layout Standard
18886 A veces surge el problema de que un flotante se sitúa al principio de la
18887  página mientras que su sección correspondiente empieza en mitad de la página,
18888  así que el lector podría creer que el flotante forma parte de la sección
18889  anterior.
18890  Para evitarlo puede emplearse el comando LaTeX 
18891 \series bold
18892
18893 \backslash
18894 suppressf\SpecialChar \textcompwordmark{}
18895 loats
18896 \series default
18897 , que suprime la ubicación de un flotante dado en la página donde se inserta
18898  y además puede servir para evitar que el flotante se coloque antes del
18899  inicio de sección.
18900  Para ello, añade estos comandos al preámbulo:
18901 \end_layout
18902
18903 \begin_layout Standard
18904
18905 \series bold
18906
18907 \backslash
18908 let
18909 \backslash
18910 mySection
18911 \backslash
18912 section
18913 \newline
18914
18915 \backslash
18916 renewcommand{
18917 \backslash
18918 section}{
18919 \backslash
18920 suppressf\SpecialChar \textcompwordmark{}
18921 loats[t]
18922 \backslash
18923 mySection}
18924 \end_layout
18925
18926 \begin_layout Standard
18927 Se puede hacer lo mismo para todas las cabeceras de sección, capítulos y
18928  subsecciones.
18929  No es recomendable para partes pequeñas de texto como subsubsecciones porque
18930  LaTeX podría tener problemas para encontrar una ubicación adecuada.
18931 \end_layout
18932
18933 \begin_layout Standard
18934 \begin_inset VSpace bigskip
18935 \end_inset
18936
18937 En ciertos casos se quieren tener todas las figuras/tablas al final del
18938  documento.
18939  Para estos casos está el paquete LaTeX 
18940 \series bold
18941 endf\SpecialChar \textcompwordmark{}
18942 loat
18943 \series default
18944
18945 \begin_inset LatexCommand index
18946 name "LaTeX-paquetes ! endfloat"
18947
18948 \end_inset
18949
18950 .
18951  Pone todas las figuras y tablas flotantes al final del documento en secciones
18952  propias.
18953  En la posición original del flotante se inserta una indicación como 
18954 \begin_inset Quotes eld
18955 \end_inset
18956
18957
18958 \family sans
18959 [Figure\InsetSpace ~
18960 3.2 about here.]
18961 \family default
18962
18963 \begin_inset Quotes erd
18964 \end_inset
18965
18966 .
18967  El paquete 
18968 \series bold
18969 endf\SpecialChar \textcompwordmark{}
18970 loat
18971 \series default
18972  se carga en el preámbulo con la línea
18973 \end_layout
18974
18975 \begin_layout Standard
18976
18977 \series bold
18978
18979 \backslash
18980 usepackage[options]{endf\SpecialChar \textcompwordmark{}
18981 loat}
18982 \end_layout
18983
18984 \begin_layout Standard
18985 Hay varias opciones para diseñar las secciones figura/tabla creadas.
18986  Para más información ver la documentación de 
18987 \begin_inset LatexCommand cite
18988 key "endfloat"
18989
18990 \end_inset
18991
18992 .
18993 \newline
18994
18995 \begin_inset Note Greyedout
18996 status open
18997
18998 \begin_layout Standard
18999
19000 \series bold
19001 Nota: endf\SpecialChar \textcompwordmark{}
19002 loat
19003 \series default
19004  no traduce automáticamente la indicación, hay que hacerlo manualmente,
19005  ver sección\InsetSpace ~
19006 4 en 
19007 \begin_inset LatexCommand cite
19008 key "endfloat"
19009
19010 \end_inset
19011
19012 .
19013 \end_layout
19014
19015 \end_inset
19016
19017
19018 \newline
19019
19020 \begin_inset Note Greyedout
19021 status open
19022
19023 \begin_layout Standard
19024
19025 \series bold
19026 Nota:
19027 \series default
19028  Actualmente hay un error en 
19029 \series bold
19030 endf\SpecialChar \textcompwordmark{}
19031 loat
19032 \series default
19033  cuando el encabezado contiene el carácter alemán 
19034 \begin_inset Quotes eld
19035 \end_inset
19036
19037 ß
19038 \begin_inset Quotes erd
19039 \end_inset
19040
19041 .
19042  Usa en ese caso el comando 
19043 \begin_inset Quotes eld
19044 \end_inset
19045
19046
19047 \series bold
19048
19049 \backslash
19050 ss
19051 \series default
19052
19053 \begin_inset Quotes erd
19054 \end_inset
19055
19056  en ERT en vez de 
19057 \begin_inset Quotes eld
19058 \end_inset
19059
19060 ß
19061 \begin_inset Quotes erd
19062 \end_inset
19063
19064 .
19065 \end_layout
19066
19067 \end_inset
19068
19069
19070 \end_layout
19071
19072 \begin_layout Standard
19073 \begin_inset VSpace bigskip
19074 \end_inset
19075
19076 Más detalles sobre ubicación de flotantes en libros sobre LaTeX como 
19077 \begin_inset LatexCommand cite
19078 key "latexcompanion,latexguide,latexbook"
19079
19080 \end_inset
19081
19082 .
19083 \end_layout
19084
19085 \begin_layout Section
19086 Rotación de Flotantes
19087 \begin_inset LatexCommand label
19088 name "sec:Rotación-de-Flotantes"
19089
19090 \end_inset
19091
19092
19093 \begin_inset LatexCommand index
19094 name "Flotantes ! Rotación"
19095
19096 \end_inset
19097
19098
19099 \end_layout
19100
19101 \begin_layout Standard
19102 Podrías necesitar girar flotantes, especialmente con tablas grandes.
19103  Para girar todo el flotante y su encabezado, pincha sobre su cuadro y marca
19104  la opción 
19105 \family sans
19106 Girar\InsetSpace ~
19107 a\InsetSpace ~
19108 un\InsetSpace ~
19109 lado
19110 \family default
19111 .
19112 \end_layout
19113
19114 \begin_layout Standard
19115 Los flotantes girados son puestos siempre en su propia página (o columna
19116  si el documento es de dos columnas).
19117  Normalmente se rotan de forma que puedes leerlos desde el margen externo
19118  ---a la izquierda en páginas impares, a la derecha en pares---.
19119 \end_layout
19120
19121 \begin_layout Standard
19122 Los flotantes girados se refieren igual que los normales, y el formato de
19123  encabezado también es el mismo: un ejemplo es la tabla\InsetSpace ~
19124
19125 \begin_inset LatexCommand ref
19126 reference "tab:Tabla-girada"
19127
19128 \end_inset
19129
19130 .
19131 \end_layout
19132
19133 \begin_layout Standard
19134 \begin_inset Note Greyedout
19135 status open
19136
19137 \begin_layout Standard
19138
19139 \series bold
19140 Nota:
19141 \series default
19142  No todos los visores DVI pueden mostrar tablas giradas.
19143 \end_layout
19144
19145 \end_inset
19146
19147
19148 \end_layout
19149
19150 \begin_layout Standard
19151 \begin_inset Float table
19152 wide false
19153 sideways true
19154 status open
19155
19156 \begin_layout Standard
19157 \begin_inset Caption
19158
19159 \begin_layout Standard
19160 \begin_inset LatexCommand label
19161 name "tab:Tabla-girada"
19162
19163 \end_inset
19164
19165 Tabla girada
19166 \end_layout
19167
19168 \end_inset
19169
19170
19171 \end_layout
19172
19173 \begin_layout Standard
19174 \align center
19175 \begin_inset Tabular
19176 <lyxtabular version="3" rows="1" columns="5">
19177 <features>
19178 <column alignment="center" valignment="top" leftline="true" width="0">
19179 <column alignment="center" valignment="top" leftline="true" width="0">
19180 <column alignment="center" valignment="top" leftline="true" width="0">
19181 <column alignment="center" valignment="top" leftline="true" width="0">
19182 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19183 <row topline="true" bottomline="true">
19184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19185 \begin_inset Text
19186
19187 \begin_layout Standard
19188 test
19189 \end_layout
19190
19191 \end_inset
19192 </cell>
19193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19194 \begin_inset Text
19195
19196 \begin_layout Standard
19197 b
19198 \end_layout
19199
19200 \end_inset
19201 </cell>
19202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19203 \begin_inset Text
19204
19205 \begin_layout Standard
19206 c
19207 \end_layout
19208
19209 \end_inset
19210 </cell>
19211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19212 \begin_inset Text
19213
19214 \begin_layout Standard
19215 d
19216 \end_layout
19217
19218 \end_inset
19219 </cell>
19220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19221 \begin_inset Text
19222
19223 \begin_layout Standard
19224 e
19225 \end_layout
19226
19227 \end_inset
19228 </cell>
19229 </row>
19230 </lyxtabular>
19231
19232 \end_inset
19233
19234
19235 \end_layout
19236
19237 \end_inset
19238
19239
19240 \end_layout
19241
19242 \begin_layout Section
19243 Formato de Encabezados
19244 \begin_inset LatexCommand index
19245 name "Encabezados ! Formato"
19246
19247 \end_inset
19248
19249
19250 \begin_inset LatexCommand index
19251 name "Flotantes ! Formato de Encabezados"
19252
19253 \end_inset
19254
19255
19256 \begin_inset LatexCommand index
19257 name "LaTeX-paquetes ! caption"
19258
19259 \end_inset
19260
19261
19262 \begin_inset LatexCommand label
19263 name "sec:Formato-de-Encabezados"
19264
19265 \end_inset
19266
19267
19268 \end_layout
19269
19270 \begin_layout Standard
19271 El entorno 
19272 \family sans
19273 Encabezado
19274 \family default
19275  es el predeterminado para los 
19276 \family sans
19277 Flotantes
19278 \family default
19279 .
19280  En LyX los encabezados se muestran como etiqueta, p.\InsetSpace \thinspace{}
19281 e.\InsetSpace ~
19282
19283 \begin_inset Quotes eld
19284 \end_inset
19285
19286
19287 \family sans
19288 Figura #
19289 \family default
19290 :
19291 \begin_inset Quotes erd
19292 \end_inset
19293
19294  seguida por el texto.
19295  El símbolo de número 
19296 \begin_inset Quotes eld
19297 \end_inset
19298
19299 #
19300 \begin_inset Quotes erd
19301 \end_inset
19302
19303  es sustituido en la salida impresa por el número de referencia real.
19304  Por defecto la etiqueta y el número usan la misma fuente que el texto del
19305  encabezado y el signo dos puntos sigue al número para separar la etiqueta
19306  del texto.
19307  El formato de encabezado no es apropiado para todos los formatos de documento.
19308  
19309 \end_layout
19310
19311 \begin_layout Standard
19312 Para cambiar el formato predeterminado carga el paquete LaTeX 
19313 \series bold
19314 caption
19315 \series default
19316
19317 \begin_inset LatexCommand index
19318 name "LaTeX-paquetes ! caption"
19319
19320 \end_inset
19321
19322  en el preámbulo del documento con la línea:
19323 \end_layout
19324
19325 \begin_layout Standard
19326
19327 \series bold
19328
19329 \backslash
19330 usepackage[definición de formato]{caption}
19331 \end_layout
19332
19333 \begin_layout Standard
19334 Para poner, por ejemplo, la etiqueta y el número en sans-serif negrita y
19335  los encabezados de tabla siempre sobre ella como en este documento, usa
19336  el comando:
19337 \end_layout
19338
19339 \begin_layout Standard
19340
19341 \series bold
19342
19343 \backslash
19344 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19345 \end_layout
19346
19347 \begin_layout Standard
19348 También puedes definir distintos formatos de encabezado para los distintos
19349  tipos de flotantes.
19350  En ese caso carga el paquete 
19351 \series bold
19352 caption
19353 \series default
19354  sin opciones específicas y define los distintos formatos con ayuda del
19355  comando
19356 \end_layout
19357
19358 \begin_layout Standard
19359
19360 \series bold
19361
19362 \backslash
19363 captionsetup[tipo de flotante]{definición de formato}
19364 \end_layout
19365
19366 \begin_layout Standard
19367 en el preámbulo del documento.
19368  Por ejemplo los encabezados de la Figura\InsetSpace ~
19369
19370 \begin_inset LatexCommand ref
19371 reference "fig:Esto-es-una-fig"
19372
19373 \end_inset
19374
19375  y la tabla\InsetSpace ~
19376
19377 \begin_inset LatexCommand ref
19378 reference "tab:Esto-es-una-tab"
19379
19380 \end_inset
19381
19382  pueden crearse usando los siguientes comandos en el preámbulo:
19383 \end_layout
19384
19385 \begin_layout Standard
19386
19387 \series bold
19388
19389 \backslash
19390 usepackage[tableposition=top]{caption}
19391 \series default
19392
19393 \newline
19394
19395 \series bold
19396
19397 \backslash
19398 captionsetup[f\SpecialChar \textcompwordmark{}
19399 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19400 \newline
19401
19402 \begin_inset ERT
19403 status collapsed
19404
19405 \begin_layout Standard
19406
19407
19408 \backslash
19409 hphantom{
19410 \backslash
19411
19412 \backslash
19413 captionsetup[figure]
19414 \backslash
19415 {}
19416 \end_layout
19417
19418 \end_inset
19419
19420  labelsep=period}
19421 \newline
19422
19423 \backslash
19424 captionsetup[table]{labelfont={bf,sf}}
19425 \end_layout
19426
19427 \begin_layout Standard
19428 \begin_inset Note Greyedout
19429 status open
19430
19431 \begin_layout Standard
19432
19433 \series bold
19434 Nota: 
19435 \series default
19436 La opción 
19437 \series bold
19438 tableposition=top
19439 \series default
19440  no tiene efecto si se usa una clase de documento 
19441 \series bold
19442 koma-script
19443 \series default
19444 .
19445  En este caso debe utilizarse la opción de clase de documento 
19446 \series bold
19447 tablecaptionabove
19448 \series default
19449 .
19450  
19451 \end_layout
19452
19453 \end_inset
19454
19455
19456 \end_layout
19457
19458 \begin_layout Standard
19459 Para más información sobre el paquete 
19460 \series bold
19461 caption
19462 \series default
19463  acude a su documentación 
19464 \begin_inset LatexCommand cite
19465 key "caption,caption-de"
19466
19467 \end_inset
19468
19469 .
19470 \end_layout
19471
19472 \begin_layout Standard
19473 Para cambiar el nombre de la etiqueta de 
19474 \begin_inset Quotes eld
19475 \end_inset
19476
19477 Figura
19478 \begin_inset Quotes erd
19479 \end_inset
19480
19481  a 
19482 \begin_inset Quotes eld
19483 \end_inset
19484
19485 Imagen
19486 \begin_inset Quotes erd
19487 \end_inset
19488
19489 , p.\InsetSpace \thinspace{}
19490 e., usa el siguiente comando de preámbulo:
19491 \end_layout
19492
19493 \begin_layout Standard
19494
19495 \series bold
19496
19497 \backslash
19498 renewcommand{
19499 \backslash
19500 fnum@figure}{Imagen~
19501 \backslash
19502 thefigure}
19503 \end_layout
19504
19505 \begin_layout Standard
19506 donde 
19507 \series bold
19508
19509 \backslash
19510 thefigure
19511 \series default
19512  inserta el número de figura y 
19513 \series bold
19514
19515 \begin_inset Quotes eld
19516 \end_inset
19517
19518
19519 \series default
19520 ~
19521 \series bold
19522
19523 \begin_inset Quotes erd
19524 \end_inset
19525
19526
19527 \series default
19528  genera un espacio protegido.
19529
19530 \series bold
19531  
19532 \end_layout
19533
19534 \begin_layout Standard
19535 \begin_inset VSpace bigskip
19536 \end_inset
19537
19538 Si estás usando la clase de documento 
19539 \series bold
19540 koma-script
19541 \series default
19542
19543 \begin_inset LatexCommand index
19544 name "LaTeX-paquetes ! koma-script"
19545
19546 \end_inset
19547
19548  (
19549 \family sans
19550 article (koma-script)
19551 \family default
19552
19553 \family sans
19554 book (koma-script)
19555 \family default
19556
19557 \family sans
19558 letter (koma-script)
19559 \family default
19560 , o 
19561 \family sans
19562 report (koma-script)
19563 \family default
19564 \InsetSpace \thinspace{}
19565 ), puedes emplear en vez del paquete 
19566 \series bold
19567 caption
19568 \series default
19569  el comando 
19570 \series bold
19571
19572 \backslash
19573 setkomafont
19574 \series default
19575  incluido en 
19576 \series bold
19577 koma-script
19578 \series default
19579 .
19580  Por ejemplo, para poner en negrita la etiqueta del encabezado añade este
19581  comando en el preámbulo del documento:
19582 \end_layout
19583
19584 \begin_layout Standard
19585
19586 \series bold
19587
19588 \backslash
19589 setkomafont{captionlabel}{
19590 \backslash
19591 bfseries}
19592 \end_layout
19593
19594 \begin_layout Standard
19595 Más información sobre 
19596 \series bold
19597
19598 \backslash
19599 setkomafont
19600 \series default
19601  en la documentación de 
19602 \series bold
19603 koma-script
19604 \series default
19605  
19606 \begin_inset LatexCommand cite
19607 key "koma-script,koma-script-de"
19608
19609 \end_inset
19610
19611 .
19612 \end_layout
19613
19614 \begin_layout Standard
19615 \begin_inset ERT
19616 status collapsed
19617
19618 \begin_layout Standard
19619
19620
19621 \backslash
19622 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19623 }
19624 \end_layout
19625
19626 \end_inset
19627
19628
19629 \begin_inset Note Note
19630 status open
19631
19632 \begin_layout Standard
19633 El formato del encabezado se ha cambiado solo para este ejemplo.
19634 \end_layout
19635
19636 \end_inset
19637
19638
19639 \end_layout
19640
19641 \begin_layout Standard
19642 \begin_inset Float figure
19643 placement !p
19644 wide false
19645 sideways false
19646 status open
19647
19648 \begin_layout Standard
19649 \align center
19650 \begin_inset Graphics
19651         filename ../clipart/mobius.eps
19652         lyxscale 50
19653         scale 50
19654
19655 \end_inset
19656
19657
19658 \end_layout
19659
19660 \begin_layout Standard
19661 \begin_inset Caption
19662
19663 \begin_layout Standard
19664 \begin_inset LatexCommand label
19665 name "fig:Esto-es-una-fig"
19666
19667 \end_inset
19668
19669
19670 \begin_inset OptArg
19671 status open
19672
19673 \begin_layout Standard
19674 Figura con título muy largo
19675 \end_layout
19676
19677 \end_inset
19678
19679 Este es un ejemplo de figura con un título que es mayor de una línea para
19680  mostrar el formato diferente.
19681  Aquí se usa un título personalizado.
19682 \end_layout
19683
19684 \end_inset
19685
19686
19687 \end_layout
19688
19689 \end_inset
19690
19691
19692 \end_layout
19693
19694 \begin_layout Standard
19695 \begin_inset ERT
19696 status collapsed
19697
19698 \begin_layout Standard
19699
19700
19701 \backslash
19702 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19703 on}
19704 \end_layout
19705
19706 \end_inset
19707
19708
19709 \end_layout
19710
19711 \begin_layout Standard
19712 \begin_inset Float table
19713 placement !p
19714 wide false
19715 sideways false
19716 status open
19717
19718 \begin_layout Standard
19719 \begin_inset Caption
19720
19721 \begin_layout Standard
19722 \begin_inset LatexCommand label
19723 name "tab:Esto-es-una-tab"
19724
19725 \end_inset
19726
19727
19728 \begin_inset OptArg
19729 status collapsed
19730
19731 \begin_layout Standard
19732 Tabla con encabezado muy largo
19733 \end_layout
19734
19735 \end_inset
19736
19737 Este es un ejemplo de encabezado de tabla mayor que una línea para mostrar
19738  el formato diferente.
19739  Aquí se usa el formato de encabezado estándar para las tablas.
19740 \end_layout
19741
19742 \end_inset
19743
19744
19745 \end_layout
19746
19747 \begin_layout Standard
19748 \align center
19749 \begin_inset Tabular
19750 <lyxtabular version="3" rows="1" columns="5">
19751 <features>
19752 <column alignment="center" valignment="top" leftline="true" width="0">
19753 <column alignment="center" valignment="top" leftline="true" width="0">
19754 <column alignment="center" valignment="top" leftline="true" width="0">
19755 <column alignment="center" valignment="top" leftline="true" width="0">
19756 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19757 <row topline="true" bottomline="true">
19758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19759 \begin_inset Text
19760
19761 \begin_layout Standard
19762 a
19763 \end_layout
19764
19765 \end_inset
19766 </cell>
19767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19768 \begin_inset Text
19769
19770 \begin_layout Standard
19771 b
19772 \end_layout
19773
19774 \end_inset
19775 </cell>
19776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19777 \begin_inset Text
19778
19779 \begin_layout Standard
19780 c
19781 \end_layout
19782
19783 \end_inset
19784 </cell>
19785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19786 \begin_inset Text
19787
19788 \begin_layout Standard
19789 d
19790 \end_layout
19791
19792 \end_inset
19793 </cell>
19794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19795 \begin_inset Text
19796
19797 \begin_layout Standard
19798 e
19799 \end_layout
19800
19801 \end_inset
19802 </cell>
19803 </row>
19804 </lyxtabular>
19805
19806 \end_inset
19807
19808
19809 \end_layout
19810
19811 \end_inset
19812
19813
19814 \end_layout
19815
19816 \begin_layout Section
19817 Colocación de Encabezados
19818 \begin_inset LatexCommand index
19819 name "Encabezados ! Colocación"
19820
19821 \end_inset
19822
19823
19824 \begin_inset LatexCommand index
19825 name "Flotantes ! Colocación de Encabezados"
19826
19827 \end_inset
19828
19829
19830 \begin_inset LatexCommand label
19831 name "sec:Colocación-de-Encabezados"
19832
19833 \end_inset
19834
19835
19836 \end_layout
19837
19838 \begin_layout Standard
19839 La norma habitual para colocar títulos o encabezados es:
19840 \end_layout
19841
19842 \begin_layout Description
19843 Figura: El título bajo la figura
19844 \end_layout
19845
19846 \begin_layout Description
19847 Tabla: El encabezado sobre la tabla
19848 \end_layout
19849
19850 \begin_layout Standard
19851 Desafortunadamente, las clases estándar de LaTeX no soportan encabezados
19852  sobre la tabla.
19853  Esto implica que si usas las clases de documento 
19854 \family sans
19855 article
19856 \family default
19857
19858 \family sans
19859 book
19860 \family default
19861
19862 \family sans
19863 letter
19864 \family default
19865 , o 
19866 \family sans
19867 report
19868 \family default
19869  no habrá espacio entre el encabezado y la tabla.
19870  Para insertar el espacio adecuado añade la siguiente opción al comando
19871  del paquete LaTeX 
19872 \series bold
19873 caption
19874 \series default
19875  en el preámbulo del documento
19876 \begin_inset Foot
19877 status collapsed
19878
19879 \begin_layout Standard
19880 Ver la sección\InsetSpace ~
19881
19882 \begin_inset LatexCommand ref
19883 reference "sec:Formato-de-Encabezados"
19884
19885 \end_inset
19886
19887  para más información sobre el paquete 
19888 \series bold
19889 caption
19890 \series default
19891 .
19892 \end_layout
19893
19894 \end_inset
19895
19896 :
19897 \end_layout
19898
19899 \begin_layout Standard
19900
19901 \series bold
19902 tableposition=top
19903 \end_layout
19904
19905 \begin_layout Standard
19906 Si estás usando la clase 
19907 \series bold
19908 koma-script
19909 \series default
19910
19911 \begin_inset LatexCommand index
19912 name "LaTeX-paquetes ! koma-script"
19913
19914 \end_inset
19915
19916  (
19917 \family sans
19918 article (koma-script)
19919 \family default
19920
19921 \family sans
19922 book (koma-script)
19923 \family default
19924
19925 \family sans
19926 letter (koma-script)
19927 \family default
19928 , o 
19929 \family sans
19930 report (koma-script)
19931 \family default
19932 \InsetSpace \thinspace{}
19933 ), en vez de 
19934 \series bold
19935 caption
19936 \series default
19937  puedes poner la opción 
19938 \series bold
19939 tablecaptionabove
19940 \series default
19941  de la clase de documento, o usar el entorno 
19942 \family sans
19943 Encabezado
19944 \family default
19945 \InsetSpace ~
19946
19947 \family sans
19948 Arriba
19949 \family default
19950  en vez del entorno 
19951 \family sans
19952 Encabezado
19953 \family default
19954 .
19955 \end_layout
19956
19957 \begin_layout Standard
19958 \begin_inset VSpace bigskip
19959 \end_inset
19960
19961 También es posible poner el encabezado junto a una figura o tabla.
19962  Para conseguirlo hay que cargar el paquete LaTeX 
19963 \series bold
19964 sidecap
19965 \series default
19966
19967 \begin_inset LatexCommand index
19968 name "LaTeX-paquetes ! sidecap"
19969
19970 \end_inset
19971
19972  añadiendo en el preámbulo del documento la línea
19973 \end_layout
19974
19975 \begin_layout Standard
19976
19977 \series bold
19978
19979 \backslash
19980 usepackage[option]{sidecap}
19981 \end_layout
19982
19983 \begin_layout Standard
19984 Si no se especifica opción, el encabezado se ubica del lado del margen externo
19985  de la página -- a la derecha en páginas impares, a la izquierda en las
19986  pares.
19987  Puedes cambiar la colocación al margen interno con la opción 
19988 \series bold
19989 innercaption
19990 \series default
19991 .
19992  Para forzar la ubicación siempre a la derecha o a la izquierda, usa las
19993  opciones 
19994 \series bold
19995 rightcaption
19996 \series default
19997  o 
19998 \series bold
19999 leftcaption
20000 \series default
20001 , respectivamente.
20002 \end_layout
20003
20004 \begin_layout Standard
20005 Para situar en LyX el encabezado de un flotante al lado, es necesario añadir
20006  estos comandos al preámbulo del documento:
20007 \end_layout
20008
20009 \begin_layout Standard
20010
20011 \lyxline
20012
20013 \end_layout
20014
20015 \begin_layout Standard
20016
20017 \series bold
20018
20019 \backslash
20020 newcommand{
20021 \backslash
20022 TabBesBeg}{%
20023 \newline
20024
20025 \begin_inset ERT
20026 status collapsed
20027
20028 \begin_layout Standard
20029
20030
20031 \backslash
20032 hphantom{ }
20033 \end_layout
20034
20035 \end_inset
20036
20037
20038 \backslash
20039 let
20040 \backslash
20041 MyTable
20042 \backslash
20043 table
20044 \newline
20045
20046 \begin_inset ERT
20047 status collapsed
20048
20049 \begin_layout Standard
20050
20051
20052 \backslash
20053 hphantom{ }
20054 \end_layout
20055
20056 \end_inset
20057
20058
20059 \backslash
20060 let
20061 \backslash
20062 MyEndtable
20063 \backslash
20064 endtable
20065 \newline
20066
20067 \begin_inset ERT
20068 status collapsed
20069
20070 \begin_layout Standard
20071
20072
20073 \backslash
20074 hphantom{ }
20075 \end_layout
20076
20077 \end_inset
20078
20079
20080 \backslash
20081 renewenvironment{table}{
20082 \backslash
20083 begin{SCtable}}{
20084 \backslash
20085 end{SCtable}}}
20086 \end_layout
20087
20088 \begin_layout Standard
20089
20090 \series bold
20091
20092 \backslash
20093 newcommand{
20094 \backslash
20095 TabBesEnd}{%
20096 \newline
20097
20098 \begin_inset ERT
20099 status collapsed
20100
20101 \begin_layout Standard
20102
20103
20104 \backslash
20105 hphantom{ }
20106 \end_layout
20107
20108 \end_inset
20109
20110
20111 \backslash
20112 let
20113 \backslash
20114 table
20115 \backslash
20116 MyTable
20117 \newline
20118
20119 \begin_inset ERT
20120 status collapsed
20121
20122 \begin_layout Standard
20123
20124
20125 \backslash
20126 hphantom{ }
20127 \end_layout
20128
20129 \end_inset
20130
20131
20132 \backslash
20133 let
20134 \backslash
20135 endtable
20136 \backslash
20137 MyEndtable
20138 \end_layout
20139
20140 \begin_layout Standard
20141
20142 \series bold
20143
20144 \backslash
20145 newcommand{
20146 \backslash
20147 FigBesBeg}{%
20148 \newline
20149
20150 \begin_inset ERT
20151 status collapsed
20152
20153 \begin_layout Standard
20154
20155
20156 \backslash
20157 hphantom{ }
20158 \end_layout
20159
20160 \end_inset
20161
20162
20163 \backslash
20164 let
20165 \backslash
20166 MyFigure
20167 \backslash
20168 f\SpecialChar \textcompwordmark{}
20169 igure
20170 \newline
20171
20172 \begin_inset ERT
20173 status collapsed
20174
20175 \begin_layout Standard
20176
20177
20178 \backslash
20179 hphantom{ }
20180 \end_layout
20181
20182 \end_inset
20183
20184
20185 \backslash
20186 let
20187 \backslash
20188 MyEndf\SpecialChar \textcompwordmark{}
20189 igure
20190 \backslash
20191 endf\SpecialChar \textcompwordmark{}
20192 igure
20193 \newline
20194
20195 \begin_inset ERT
20196 status collapsed
20197
20198 \begin_layout Standard
20199
20200
20201 \backslash
20202 hphantom{ }
20203 \end_layout
20204
20205 \end_inset
20206
20207
20208 \backslash
20209 renewenvironment{f\SpecialChar \textcompwordmark{}
20210 igure}{
20211 \backslash
20212 begin{SCf\SpecialChar \textcompwordmark{}
20213 igure}}{
20214 \backslash
20215 end{SCf\SpecialChar \textcompwordmark{}
20216 igure}}}
20217 \end_layout
20218
20219 \begin_layout Standard
20220
20221 \series bold
20222
20223 \backslash
20224 newcommand{
20225 \backslash
20226 FigBesEnd}{%
20227 \newline
20228
20229 \begin_inset ERT
20230 status collapsed
20231
20232 \begin_layout Standard
20233
20234
20235 \backslash
20236 hphantom{ }
20237 \end_layout
20238
20239 \end_inset
20240
20241
20242 \backslash
20243 let
20244 \backslash
20245 f\SpecialChar \textcompwordmark{}
20246 igure
20247 \backslash
20248 MyFigure
20249 \newline
20250
20251 \begin_inset ERT
20252 status collapsed
20253
20254 \begin_layout Standard
20255
20256
20257 \backslash
20258 hphantom{ }
20259 \end_layout
20260
20261 \end_inset
20262
20263
20264 \backslash
20265 let
20266 \backslash
20267 endf\SpecialChar \textcompwordmark{}
20268 igure
20269 \backslash
20270 MyEndf\SpecialChar \textcompwordmark{}
20271 igure}
20272 \end_layout
20273
20274 \begin_layout Standard
20275
20276 \lyxline
20277
20278 \end_layout
20279
20280 \begin_layout Standard
20281 Estos comandos permiten redefinir los flotantes de modo que el encabezado
20282  aparezca en un lado.
20283  Para figuras flotantes usa el comando
20284 \end_layout
20285
20286 \begin_layout Standard
20287
20288 \series bold
20289
20290 \backslash
20291 FigBesBeg
20292 \end_layout
20293
20294 \begin_layout Standard
20295 en ERT antes del flotante.
20296  Detrás del flotante inserta
20297 \end_layout
20298
20299 \begin_layout Standard
20300
20301 \series bold
20302
20303 \backslash
20304 FigBesEnd
20305 \end_layout
20306
20307 \begin_layout Standard
20308 en ERT para volver a la definición original de flotantes.
20309 \end_layout
20310
20311 \begin_layout Standard
20312 Para tablas flotantes usa los comandos correspondientes
20313 \end_layout
20314
20315 \begin_layout Standard
20316
20317 \series bold
20318
20319 \backslash
20320 TabBesBeg
20321 \series default
20322  y 
20323 \series bold
20324
20325 \backslash
20326 TabBesEnd
20327 \end_layout
20328
20329 \begin_layout Standard
20330 La figura\InsetSpace ~
20331
20332 \begin_inset LatexCommand ref
20333 reference "fig:encab-al-lado"
20334
20335 \end_inset
20336
20337  y la tabla\InsetSpace ~
20338
20339 \begin_inset LatexCommand ref
20340 reference "tab:encab-al-lado"
20341
20342 \end_inset
20343
20344  son ejemplos en los que el título se sitúa al lado.
20345 \end_layout
20346
20347 \begin_layout Standard
20348 En los ejemplos puedes ver que el texto del título aparece encima del flotante
20349  en tablas flotantes y debajo en las figuras flotantes.
20350  Para cambiarlo, puedes usar el comando
20351 \end_layout
20352
20353 \begin_layout Standard
20354
20355 \series bold
20356
20357 \backslash
20358 sidecaptionvpos{tipo de flotante}{colocación}
20359 \end_layout
20360
20361 \begin_layout Standard
20362 en el preámbulo o en ERT antes del flotante.
20363  El tipo de flotante es 
20364 \family sans
20365 figure
20366 \family default
20367  o 
20368 \family sans
20369 table
20370 \family default
20371 , la colocación puede ser 
20372 \begin_inset Quotes eld
20373 \end_inset
20374
20375
20376 \family sans
20377 t
20378 \family default
20379
20380 \begin_inset Quotes erd
20381 \end_inset
20382
20383  por 
20384 \begin_inset Quotes eld
20385 \end_inset
20386
20387 top
20388 \begin_inset Quotes erd
20389 \end_inset
20390
20391  (arriba), 
20392 \begin_inset Quotes eld
20393 \end_inset
20394
20395
20396 \family sans
20397 c
20398 \family default
20399
20400 \begin_inset Quotes erd
20401 \end_inset
20402
20403  por 
20404 \begin_inset Quotes eld
20405 \end_inset
20406
20407 center
20408 \begin_inset Quotes erd
20409 \end_inset
20410
20411  (centro), o 
20412 \begin_inset Quotes eld
20413 \end_inset
20414
20415
20416 \family sans
20417 b
20418 \family default
20419
20420 \begin_inset Quotes erd
20421 \end_inset
20422
20423  por 
20424 \begin_inset Quotes eld
20425 \end_inset
20426
20427 bottom
20428 \begin_inset Quotes erd
20429 \end_inset
20430
20431  (abajo).
20432  Para tener, por ejemplo, el título de figuras flotantes verticalmente centrado,
20433  usa el comando
20434 \end_layout
20435
20436 \begin_layout Standard
20437
20438 \series bold
20439
20440 \backslash
20441 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20442 igure}{c}
20443 \end_layout
20444
20445 \begin_layout Standard
20446 Esto se ha hecho en la figura\InsetSpace ~
20447
20448 \begin_inset LatexCommand ref
20449 reference "fig:encab-al-lado-de-fig"
20450
20451 \end_inset
20452
20453 .
20454 \end_layout
20455
20456 \begin_layout Standard
20457 \begin_inset VSpace defskip
20458 \end_inset
20459
20460 Más información sobre el paquete 
20461 \series bold
20462 sidecap
20463 \series default
20464  en su documentación 
20465 \begin_inset LatexCommand cite
20466 key "sidecap"
20467
20468 \end_inset
20469
20470 .
20471 \end_layout
20472
20473 \begin_layout Standard
20474 \begin_inset Note Greyedout
20475 status open
20476
20477 \begin_layout Standard
20478
20479 \series bold
20480 Nota:
20481 \series default
20482  El paquete LaTeX 
20483 \series bold
20484 hypcap
20485 \series default
20486
20487 \begin_inset LatexCommand index
20488 name "LaTeX-paquetes ! hypcap"
20489
20490 \end_inset
20491
20492 , descrito en la sección\InsetSpace ~
20493
20494 \begin_inset LatexCommand ref
20495 reference "sub:Colocación-de-Referencias"
20496
20497 \end_inset
20498
20499 , no afecta a flotantes con el encabezado al lado.
20500 \end_layout
20501
20502 \end_inset
20503
20504
20505 \end_layout
20506
20507 \begin_layout Standard
20508 \begin_inset ERT
20509 status collapsed
20510
20511 \begin_layout Standard
20512
20513
20514 \backslash
20515 FigBesBeg 
20516 \end_layout
20517
20518 \end_inset
20519
20520
20521 \end_layout
20522
20523 \begin_layout Standard
20524 \begin_inset Float figure
20525 wide false
20526 sideways false
20527 status open
20528
20529 \begin_layout Standard
20530 \begin_inset Graphics
20531         filename ../clipart/escher-lsd.eps
20532         scale 75
20533
20534 \end_inset
20535
20536
20537 \end_layout
20538
20539 \begin_layout Standard
20540 \begin_inset Caption
20541
20542 \begin_layout Standard
20543 \begin_inset LatexCommand label
20544 name "fig:encab-al-lado"
20545
20546 \end_inset
20547
20548 Título al lado de una figura.
20549 \end_layout
20550
20551 \end_inset
20552
20553
20554 \end_layout
20555
20556 \end_inset
20557
20558
20559 \end_layout
20560
20561 \begin_layout Standard
20562 \begin_inset ERT
20563 status collapsed
20564
20565 \begin_layout Standard
20566
20567
20568 \backslash
20569 TabBesBeg 
20570 \end_layout
20571
20572 \end_inset
20573
20574
20575 \end_layout
20576
20577 \begin_layout Standard
20578 \begin_inset Float table
20579 wide false
20580 sideways false
20581 status open
20582
20583 \begin_layout Standard
20584 \begin_inset Caption
20585
20586 \begin_layout Standard
20587 \begin_inset LatexCommand label
20588 name "tab:encab-al-lado"
20589
20590 \end_inset
20591
20592 Título al lado de una tabla.
20593 \end_layout
20594
20595 \end_inset
20596
20597
20598 \end_layout
20599
20600 \begin_layout Standard
20601 \begin_inset Tabular
20602 <lyxtabular version="3" rows="4" columns="5">
20603 <features>
20604 <column alignment="center" valignment="top" leftline="true" width="0">
20605 <column alignment="center" valignment="top" leftline="true" width="0">
20606 <column alignment="center" valignment="top" leftline="true" width="0">
20607 <column alignment="center" valignment="top" leftline="true" width="0">
20608 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20609 <row topline="true">
20610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20611 \begin_inset Text
20612
20613 \begin_layout Standard
20614 a
20615 \end_layout
20616
20617 \end_inset
20618 </cell>
20619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20620 \begin_inset Text
20621
20622 \begin_layout Standard
20623
20624 \end_layout
20625
20626 \end_inset
20627 </cell>
20628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20629 \begin_inset Text
20630
20631 \begin_layout Standard
20632 b
20633 \end_layout
20634
20635 \end_inset
20636 </cell>
20637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20638 \begin_inset Text
20639
20640 \begin_layout Standard
20641
20642 \end_layout
20643
20644 \end_inset
20645 </cell>
20646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20647 \begin_inset Text
20648
20649 \begin_layout Standard
20650 c
20651 \end_layout
20652
20653 \end_inset
20654 </cell>
20655 </row>
20656 <row topline="true">
20657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20658 \begin_inset Text
20659
20660 \begin_layout Standard
20661
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 d
20671 \end_layout
20672
20673 \end_inset
20674 </cell>
20675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20676 \begin_inset Text
20677
20678 \begin_layout Standard
20679
20680 \end_layout
20681
20682 \end_inset
20683 </cell>
20684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20685 \begin_inset Text
20686
20687 \begin_layout Standard
20688 e
20689 \end_layout
20690
20691 \end_inset
20692 </cell>
20693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20694 \begin_inset Text
20695
20696 \begin_layout Standard
20697
20698 \end_layout
20699
20700 \end_inset
20701 </cell>
20702 </row>
20703 <row topline="true">
20704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20705 \begin_inset Text
20706
20707 \begin_layout Standard
20708 f
20709 \end_layout
20710
20711 \end_inset
20712 </cell>
20713 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20714 \begin_inset Text
20715
20716 \begin_layout Standard
20717
20718 \end_layout
20719
20720 \end_inset
20721 </cell>
20722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20723 \begin_inset Text
20724
20725 \begin_layout Standard
20726 g
20727 \end_layout
20728
20729 \end_inset
20730 </cell>
20731 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20732 \begin_inset Text
20733
20734 \begin_layout Standard
20735
20736 \end_layout
20737
20738 \end_inset
20739 </cell>
20740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20741 \begin_inset Text
20742
20743 \begin_layout Standard
20744 h
20745 \end_layout
20746
20747 \end_inset
20748 </cell>
20749 </row>
20750 <row topline="true" bottomline="true">
20751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20752 \begin_inset Text
20753
20754 \begin_layout Standard
20755
20756 \end_layout
20757
20758 \end_inset
20759 </cell>
20760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20761 \begin_inset Text
20762
20763 \begin_layout Standard
20764 i
20765 \end_layout
20766
20767 \end_inset
20768 </cell>
20769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20770 \begin_inset Text
20771
20772 \begin_layout Standard
20773
20774 \end_layout
20775
20776 \end_inset
20777 </cell>
20778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20779 \begin_inset Text
20780
20781 \begin_layout Standard
20782 j
20783 \end_layout
20784
20785 \end_inset
20786 </cell>
20787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20788 \begin_inset Text
20789
20790 \begin_layout Standard
20791
20792 \end_layout
20793
20794 \end_inset
20795 </cell>
20796 </row>
20797 </lyxtabular>
20798
20799 \end_inset
20800
20801
20802 \end_layout
20803
20804 \end_inset
20805
20806
20807 \end_layout
20808
20809 \begin_layout Standard
20810 \begin_inset ERT
20811 status collapsed
20812
20813 \begin_layout Standard
20814
20815
20816 \backslash
20817 TabBesEnd
20818 \end_layout
20819
20820 \end_inset
20821
20822
20823 \end_layout
20824
20825 \begin_layout Standard
20826 \begin_inset ERT
20827 status collapsed
20828
20829 \begin_layout Standard
20830
20831
20832 \backslash
20833 sidecaptionvpos{figure}{c}
20834 \end_layout
20835
20836 \end_inset
20837
20838
20839 \begin_inset Float figure
20840 wide false
20841 sideways false
20842 status open
20843
20844 \begin_layout Standard
20845 \begin_inset Graphics
20846         filename ../clipart/escher-lsd.eps
20847         scale 75
20848
20849 \end_inset
20850
20851
20852 \end_layout
20853
20854 \begin_layout Standard
20855 \begin_inset Caption
20856
20857 \begin_layout Standard
20858 \begin_inset LatexCommand label
20859 name "fig:encab-al-lado-de-fig"
20860
20861 \end_inset
20862
20863 Título junto a una figura centrado verticalmente.
20864 \end_layout
20865
20866 \end_inset
20867
20868
20869 \end_layout
20870
20871 \end_inset
20872
20873
20874 \end_layout
20875
20876 \begin_layout Standard
20877 \begin_inset ERT
20878 status collapsed
20879
20880 \begin_layout Standard
20881
20882
20883 \backslash
20884 FigBesEnd
20885 \end_layout
20886
20887 \end_inset
20888
20889
20890 \end_layout
20891
20892 \begin_layout Section
20893 Lista de Flotantes
20894 \begin_inset LatexCommand label
20895 name "sec:Lista-de-Flotantes"
20896
20897 \end_inset
20898
20899
20900 \begin_inset LatexCommand index
20901 name "Flotantes ! Lista"
20902
20903 \end_inset
20904
20905
20906 \end_layout
20907
20908 \begin_layout Standard
20909 Igual que en el índice general se listan las secciones del documento, hay
20910  listas para todos los tipos de flotantes, como las figuras.
20911  Se pueden insertar mediante los submenús 
20912 \family sans
20913 Insertar\SpecialChar \menuseparator
20914 Lista / IG
20915 \family default
20916 .
20917 \end_layout
20918
20919 \begin_layout Standard
20920 Las entradas de la lista son los títulos del flotante o su título corto,
20921  el número de flotante, y el número de la página del documento en la que
20922  aparecen.
20923 \end_layout
20924
20925 \begin_layout Standard
20926 Puedes encontrar las listas de figuras y tablas al final de este documento.
20927 \end_layout
20928
20929 \begin_layout Chapter
20930 Notas
20931 \end_layout
20932
20933 \begin_layout Section
20934 Notas en 
20935 \begin_inset ERT
20936 status collapsed
20937
20938 \begin_layout Standard
20939
20940
20941 \backslash
20942 texorpdfstring{
20943 \end_layout
20944
20945 \end_inset
20946
20947 LyX
20948 \begin_inset ERT
20949 status collapsed
20950
20951 \begin_layout Standard
20952
20953 }{LyX}
20954 \end_layout
20955
20956 \end_inset
20957
20958  
20959 \begin_inset LatexCommand label
20960 name "sec:Notas-en-LyX"
20961
20962 \end_inset
20963
20964
20965 \begin_inset LatexCommand index
20966 name "Notas ! Notas en LyX"
20967
20968 \end_inset
20969
20970
20971 \begin_inset Note Note
20972 status collapsed
20973
20974 \begin_layout Standard
20975 El comando 
20976 \backslash
20977 texorpdfstring es suministrado por el paquete LaTeX hyperref para evitar
20978  que los enlaces se muestren erróneamente en los marcadores PDF.
20979  Para más información sobre esto mira en 
20980 \begin_inset LatexCommand cite
20981 key "hyperref"
20982
20983 \end_inset
20984
20985 .
20986 \end_layout
20987
20988 \end_inset
20989
20990
20991 \end_layout
20992
20993 \begin_layout Standard
20994 Las notas se insertan con el botón 
20995 \begin_inset Graphics
20996         filename ../../images/note-insert.xpm
20997         scale 85
20998
20999 \end_inset
21000
21001  o con el menú 
21002 \family sans
21003 Insertar\SpecialChar \menuseparator
21004 Nota
21005 \family default
21006 .
21007  Hay tres tipos de notas:
21008 \end_layout
21009
21010 \begin_layout Description
21011 Nota\InsetSpace ~
21012 LyX Este tipo es para notas internas que no han de aparecer en la salida.
21013  Su cuadro se muestra como este:
21014 \newline
21015
21016 \newline
21017
21018 \begin_inset Graphics
21019         filename clipart/NotaLyXImagenQt4.png
21020         display none
21021         scale 85
21022
21023 \end_inset
21024
21025  
21026 \begin_inset Note Note
21027 status collapsed
21028
21029 \begin_layout Standard
21030 Este es un texto en un recuadro que no se muestra en la salida.
21031 \end_layout
21032
21033 \end_inset
21034
21035
21036 \end_layout
21037
21038 \begin_layout Description
21039 Comentario Esta nota tampoco se muestra en la salida pero aparece como un
21040  comentario de LaTeX, cuando exportas el documento a LaTeX vía menú 
21041 \family sans
21042 Archivo\SpecialChar \menuseparator
21043 Exportar\SpecialChar \menuseparator
21044 LaTeX (pdflatex) / LaTeX (plain)
21045 \family default
21046 .
21047  Su recuadro se ve así:
21048 \newline
21049
21050 \newline
21051
21052 \begin_inset Graphics
21053         filename clipart/ComentNotaImagenQt4.png
21054         display none
21055         scale 85
21056
21057 \end_inset
21058
21059  
21060 \begin_inset Note Comment
21061 status collapsed
21062
21063 \begin_layout Standard
21064 Una nota comentario que solo aparece como comentario en archivos LaTeX.
21065 \end_layout
21066
21067 \end_inset
21068
21069
21070 \end_layout
21071
21072 \begin_layout Description
21073 Resaltado\InsetSpace ~
21074 en\InsetSpace ~
21075 gris Esta nota aparece en la salida como texto resaltado en gris.
21076  Su recuadro se parece a este:
21077 \newline
21078
21079 \newline
21080
21081 \begin_inset Graphics
21082         filename clipart/GrisNotaImagenQt4.png
21083         display none
21084         scale 85
21085
21086 \end_inset
21087
21088
21089 \newline
21090
21091 \begin_inset ERT
21092 status collapsed
21093
21094 \begin_layout Standard
21095
21096
21097 \backslash
21098 renewenvironment{lyxgreyedout}
21099 \end_layout
21100
21101 \begin_layout Standard
21102
21103 {
21104 \backslash
21105 textcolor[gray]{0.8}
21106 \backslash
21107 bgroup}{
21108 \backslash
21109 egroup}
21110 \end_layout
21111
21112 \end_inset
21113
21114
21115 \begin_inset Note Greyedout
21116 status open
21117
21118 \begin_layout Standard
21119 Este es el texto
21120 \begin_inset Foot
21121 status open
21122
21123 \begin_layout Standard
21124 Esto es un ejemplo de nota al pie en una nota resaltada en gris.
21125 \end_layout
21126
21127 \end_inset
21128
21129  de un comentario que se muestra resaltado en gris.
21130 \end_layout
21131
21132 \end_inset
21133
21134
21135 \begin_inset ERT
21136 status collapsed
21137
21138 \begin_layout Standard
21139
21140
21141 \backslash
21142 renewenvironment{lyxgreyedout}
21143 \end_layout
21144
21145 \begin_layout Standard
21146
21147 {
21148 \backslash
21149 textcolor{blue}
21150 \backslash
21151 bgroup}{
21152 \backslash
21153 egroup}
21154 \end_layout
21155
21156 \end_inset
21157
21158
21159 \begin_inset Note Note
21160 status collapsed
21161
21162 \begin_layout Standard
21163 La nota resaltada en gris se ha redefinido aquí para mostrarla con la definición
21164  original de LyX, ya que en el preámbulo de este documento se han redefinido
21165  estas notas para que salgan en azul, como se indica más adelante.
21166 \end_layout
21167
21168 \end_inset
21169
21170
21171 \newline
21172
21173 \newline
21174 Como se ve en el ejemplo, la primera línea de las notas resaltadas en gris
21175  está un poco sangrada, y por otra parte pueden tener notas al pie.
21176 \end_layout
21177
21178 \begin_layout Description
21179 Enmarcado Este tipo de notas aparecerá en la salida como un texto enmarcado.
21180  Su recuadro se verá como este:
21181 \newline
21182
21183 \newline
21184
21185 \family roman
21186 \series medium
21187
21188 \begin_inset Graphics
21189         filename clipart/NotaEnmarcadaImg.png
21190         display none
21191
21192 \end_inset
21193
21194
21195 \family default
21196 \series default
21197  
21198 \family roman
21199 \series medium
21200
21201 \begin_inset Note Framed
21202 status open
21203
21204 \begin_layout Standard
21205
21206 \family roman
21207 Este texto en un cuadro de nota se verá enmarcado en la salida.
21208 \end_layout
21209
21210 \end_inset
21211
21212
21213 \family default
21214 \series default
21215  
21216 \family roman
21217 \series medium
21218
21219 \family default
21220 \series default
21221 diferencia de los cuadros enmarcados
21222 \begin_inset Foot
21223 status collapsed
21224
21225 \begin_layout Standard
21226 Los cuadros enmarcados se describen en la sección\InsetSpace ~
21227
21228 \begin_inset LatexCommand ref
21229 reference "sec:Cuadros-Enmarcados"
21230
21231 \end_inset
21232
21233
21234 \end_layout
21235
21236 \end_inset
21237
21238 , este marco emplea siempre la anchura total de página y la nota va en su
21239  propio párrafo.
21240 \end_layout
21241
21242 \begin_layout Description
21243 Sombreado Este tipo de nota se verá en la salida con un fondo de color rojo.
21244  Su recuadro se verá como este:
21245 \newline
21246
21247 \newline
21248
21249 \family roman
21250 \series medium
21251
21252 \begin_inset Graphics
21253         filename clipart/NotaSombreadaImg.png
21254         display none
21255
21256 \end_inset
21257
21258  
21259 \begin_inset Note Shaded
21260 status open
21261
21262 \begin_layout Standard
21263
21264 \family roman
21265 Este texto en un cuadro de nota se verá en la salida sobre fondo en rojo.
21266 \end_layout
21267
21268 \end_inset
21269
21270  A diferencia de los cuadros coloreados
21271 \family default
21272 \series default
21273
21274 \begin_inset Foot
21275 status collapsed
21276
21277 \begin_layout Standard
21278 Los cuadros coloreados se describen en la sección\InsetSpace ~
21279
21280 \begin_inset LatexCommand ref
21281 reference "sec:Cuadros-Coloreados"
21282
21283 \end_inset
21284
21285 .
21286 \end_layout
21287
21288 \end_inset
21289
21290 , este cuadro de nota siempre usa toda la anchura de página y va en su propio
21291  párrafo.
21292 \end_layout
21293
21294 \begin_layout Standard
21295 \begin_inset VSpace bigskip
21296 \end_inset
21297
21298 Si usas el botón de la barra de herramientas para insertar notas, se inserta
21299  una 
21300 \family sans
21301 Nota\InsetSpace ~
21302 LyX
21303 \family default
21304 .
21305  Puedes cambiar entre los tres tipos de nota con cilc-derecha sobre el recuadro.
21306  
21307 \family roman
21308 \series medium
21309 \bar no
21310 Si quieres convertir un texto presente a nota, márcalo y pincha sobre el
21311  botón de herramienta 
21312 \family sans
21313 \series default
21314 \bar default
21315 nota
21316 \family default
21317 .
21318 \end_layout
21319
21320 \begin_layout Standard
21321 \begin_inset VSpace bigskip
21322 \end_inset
21323
21324 Se puede cambiar el color del 
21325 \family sans
21326 Resaltado en gris
21327 \family default
21328  poniendo en el preámbulo el comando:
21329 \end_layout
21330
21331 \begin_layout Standard
21332
21333 \series bold
21334
21335 \backslash
21336 renewenvironment{lyxgreyedout}
21337 \newline
21338
21339 \begin_inset ERT
21340 status collapsed
21341
21342 \begin_layout Standard
21343
21344
21345 \backslash
21346 hphantom{ }
21347 \end_layout
21348
21349 \end_inset
21350
21351 {
21352 \backslash
21353 textcolor{color}
21354 \backslash
21355 bgroup}{
21356 \backslash
21357 egroup}
21358 \end_layout
21359
21360 \begin_layout Standard
21361 Los colores disponibles y el método para definir nuestros propios colores
21362  se explica en la sección\InsetSpace ~
21363
21364 \begin_inset LatexCommand ref
21365 reference "sec:Tablas-Coloreadas"
21366
21367 \end_inset
21368
21369 .
21370 \end_layout
21371
21372 \begin_layout Standard
21373 Las notas en azul en este documento se han hecho con notas del tipo 
21374 \family sans
21375 Resaltado en gris
21376 \family default
21377  pero definiendo el color del texto en azul.
21378 \end_layout
21379
21380 \begin_layout Standard
21381 \begin_inset VSpace bigskip
21382 \end_inset
21383
21384
21385 \end_layout
21386
21387 \begin_layout Standard
21388 El estilo de texto en las notas de tipo 
21389 \family sans
21390 Enmarcado
21391 \family default
21392  y 
21393 \family sans
21394 Sombreado
21395 \family default
21396  se puede establecer en el diálogo 
21397 \family sans
21398 Estilo del texto.
21399 \end_layout
21400
21401 \begin_layout Standard
21402 El grosor predeterminado del marco en las notas 
21403 \family sans
21404 Enmarcadas
21405 \family default
21406  es 0.4\InsetSpace \thinspace{}
21407 pt; se puede cambiar con el comando 
21408 \backslash
21409
21410 \series bold
21411 FrameRule
21412 \series default
21413 .
21414  El espacio entre el contenido y el marco es 9
21415 \series bold
21416 \InsetSpace \thinspace{}
21417
21418 \series default
21419 pt por defecto; se puede cambiar con 
21420 \series bold
21421
21422 \backslash
21423 FrameSep
21424 \series default
21425 .
21426  Por ejemplo, el marco de la siguiente nota 
21427 \family sans
21428 Enmarcada
21429 \family default
21430  está hecho con los comandos ERT
21431 \series bold
21432  
21433 \end_layout
21434
21435 \begin_layout Standard
21436
21437 \series bold
21438
21439 \backslash
21440 FrameRule 5pt 
21441 \backslash
21442 FrameSep 0.5cm
21443 \end_layout
21444
21445 \begin_layout Standard
21446 \begin_inset ERT
21447 status collapsed
21448
21449 \begin_layout Standard
21450
21451
21452 \backslash
21453 FrameRule 5pt 
21454 \backslash
21455 FrameSep 0.5cm
21456 \end_layout
21457
21458 \end_inset
21459
21460
21461 \begin_inset Note Framed
21462 status open
21463
21464 \begin_layout Standard
21465 Texto en una nota 
21466 \family sans
21467 Enmarcada
21468 \family default
21469 .
21470 \end_layout
21471
21472 \end_inset
21473
21474
21475 \begin_inset ERT
21476 status collapsed
21477
21478 \begin_layout Standard
21479
21480
21481 \backslash
21482 FrameRule 0.4pt 
21483 \backslash
21484 FrameSep 9pt
21485 \end_layout
21486
21487 \end_inset
21488
21489
21490 \end_layout
21491
21492 \begin_layout Standard
21493 \begin_inset VSpace bigskip
21494 \end_inset
21495
21496
21497 \end_layout
21498
21499 \begin_layout Standard
21500 Para las notas 
21501 \family sans
21502 Sombreadas
21503 \family default
21504  el espacio entre el contenido y el borde es 3\InsetSpace \thinspace{}
21505 pt por defecto; se puede cambiar
21506  con 
21507 \series bold
21508
21509 \backslash
21510 fboxsep
21511 \series default
21512 .
21513 \newline
21514 El color rojo predeterminado se puede cambiar con el comando 
21515 \series bold
21516
21517 \backslash
21518 def\SpecialChar \textcompwordmark{}
21519 inecolor{shadebox}
21520 \series default
21521 .
21522  El esquema del comando 
21523 \series bold
21524
21525 \backslash
21526 def\SpecialChar \textcompwordmark{}
21527 inecolor
21528 \series default
21529  se explica en la sección\InsetSpace ~
21530
21531 \begin_inset LatexCommand ref
21532 reference "sec:Tablas-Coloreadas"
21533
21534 \end_inset
21535
21536
21537 \begin_inset Foot
21538 status collapsed
21539
21540 \begin_layout Standard
21541 Observa que 
21542 \series bold
21543
21544 \backslash
21545 def\SpecialChar \textcompwordmark{}
21546 inecolor 
21547 \series default
21548 requiere el paquete LaTeX 
21549 \series bold
21550 color
21551 \series default
21552  en el preámbulo,  véase la sección
21553 \series bold
21554 \InsetSpace ~
21555
21556 \begin_inset LatexCommand ref
21557 reference "sec:Cuadros-Coloreados"
21558
21559 \end_inset
21560
21561
21562 \series default
21563 .
21564
21565 \series bold
21566  
21567 \end_layout
21568
21569 \end_inset
21570
21571 .
21572 \end_layout
21573
21574 \begin_layout Standard
21575 Por ejemplo, la siguiente nota 
21576 \family sans
21577 Sombreada
21578 \family default
21579  se ha hecho con los comandos ERT
21580 \end_layout
21581
21582 \begin_layout Standard
21583
21584 \series bold
21585
21586 \backslash
21587 fboxsep 0.5cm
21588 \newline
21589
21590 \backslash
21591 def\SpecialChar \textcompwordmark{}
21592 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21593 \end_layout
21594
21595 \begin_layout Standard
21596 \begin_inset ERT
21597 status open
21598
21599 \begin_layout Standard
21600
21601
21602 \backslash
21603 fboxsep 0.5cm
21604 \end_layout
21605
21606 \end_inset
21607
21608
21609 \begin_inset ERT
21610 status open
21611
21612 \begin_layout Standard
21613
21614
21615 \backslash
21616 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21617 \end_layout
21618
21619 \end_inset
21620
21621
21622 \begin_inset Note Shaded
21623 status open
21624
21625 \begin_layout Standard
21626
21627 \color yellow
21628 Texto amarillo en una nota 
21629 \family sans
21630 Sombreada
21631 \family default
21632  \InsetSpace ~
21633 con fondo verde oscuro.
21634 \end_layout
21635
21636 \end_inset
21637
21638
21639 \begin_inset ERT
21640 status collapsed
21641
21642 \begin_layout Standard
21643
21644
21645 \backslash
21646 fboxsep 3pt
21647 \end_layout
21648
21649 \end_inset
21650
21651
21652 \begin_inset ERT
21653 status collapsed
21654
21655 \begin_layout Standard
21656
21657
21658 \backslash
21659 definecolor{shadecolor}{rgb}{1,0,0}
21660 \end_layout
21661
21662 \end_inset
21663
21664
21665 \end_layout
21666
21667 \begin_layout Section
21668 Notas al pie
21669 \begin_inset LatexCommand label
21670 name "sec:Notas-al-pie"
21671
21672 \end_inset
21673
21674
21675 \begin_inset LatexCommand index
21676 name "Notas ! al Pie"
21677
21678 \end_inset
21679
21680
21681 \begin_inset LatexCommand index
21682 name "Notas al Pie"
21683
21684 \end_inset
21685
21686
21687 \end_layout
21688
21689 \begin_layout Standard
21690 Las notas al pie se insertan con el botón 
21691 \begin_inset Graphics
21692         filename ../../images/footnote-insert.xpm
21693         scale 85
21694
21695 \end_inset
21696
21697  o el menú 
21698 \family sans
21699 Insertar\SpecialChar \menuseparator
21700 Nota\InsetSpace ~
21701 al\InsetSpace ~
21702 pie
21703 \family default
21704 .
21705  
21706 \family roman
21707 \series medium
21708 \bar no
21709 Aparece un recuadro como este:
21710 \family default
21711 \series default
21712 \bar default
21713  
21714 \begin_inset Graphics
21715         filename clipart/notapieQt4.png
21716         scale 80
21717
21718 \end_inset
21719
21720  
21721 \family roman
21722 \series medium
21723 \bar no
21724 donde puedes introducir el texto.
21725  Si quieres convertir un texto existente en nota al pie, márcalo y pincha
21726  sobre el
21727 \family default
21728 \series default
21729 \bar default
21730  
21731 \family roman
21732 \series medium
21733 \bar no
21734 botón
21735 \family default
21736 \series default
21737 \bar default
21738 .
21739 \end_layout
21740
21741 \begin_layout Standard
21742 Aquí hay un ejemplo de nota al pie:
21743 \family roman
21744 \series medium
21745 \bar no
21746
21747 \begin_inset Foot
21748 status open
21749
21750 \begin_layout Standard
21751 \begin_inset LatexCommand label
21752 name "pie:Esto-es-una"
21753
21754 \end_inset
21755
21756 Ejemplo de nota al pie.
21757 \end_layout
21758
21759 \end_inset
21760
21761
21762 \family default
21763 \series default
21764 \bar default
21765
21766 \begin_inset ERT
21767 status collapsed
21768
21769 \begin_layout Standard
21770
21771
21772 \backslash
21773 newcounter{MyRepeatFoot}
21774 \end_layout
21775
21776 \begin_layout Standard
21777
21778
21779 \backslash
21780 setcounter{MyRepeatFoot}{
21781 \backslash
21782 thefootnote}
21783 \end_layout
21784
21785 \end_inset
21786
21787
21788 \end_layout
21789
21790 \begin_layout Standard
21791 En la salida, el pie se muestra como número exponente en el lugar del texto
21792  donde se coloca el recuadro.
21793  El texto se coloca al final de la página actual.
21794  Los números de las notas son calculados por LaTeX, y son consecutivos.
21795  Si comienza o no el recuento en cada capítulo depende de la clase de documento.
21796 \end_layout
21797
21798 \begin_layout Standard
21799 Las notas al pie pueden referenciarse como flotantes: inserta una etiqueta
21800  en la nota y pon una referencia cruzada a esta etiqueta en el texto como
21801  se describe en la sección\InsetSpace ~
21802
21803 \begin_inset LatexCommand ref
21804 reference "sec:Referencias-a-Flotantes"
21805
21806 \end_inset
21807
21808 .
21809 \newline
21810 Esto es una referencia cruzada a la Nota al pie\InsetSpace ~
21811
21812 \begin_inset LatexCommand ref
21813 reference "pie:Esto-es-una"
21814
21815 \end_inset
21816
21817 .
21818 \newline
21819
21820 \begin_inset Note Greyedout
21821 status collapsed
21822
21823 \begin_layout Standard
21824
21825 \series bold
21826 Nota:
21827 \series default
21828  LyX no suministra prefijos para etiquetas en notas al pie, así que has
21829  de insertar un prefijo, p.\InsetSpace \thinspace{}
21830 e.\InsetSpace ~
21831
21832 \family sans
21833
21834 \begin_inset Quotes eld
21835 \end_inset
21836
21837 pie:
21838 \family default
21839
21840 \begin_inset Quotes erd
21841 \end_inset
21842
21843  manualmente cuando quieras usar el estilo 
21844 \family sans
21845 Referencia\InsetSpace ~
21846 con\InsetSpace ~
21847 formato
21848 \family default
21849 .
21850 \end_layout
21851
21852 \end_inset
21853
21854
21855 \end_layout
21856
21857 \begin_layout Standard
21858 \begin_inset VSpace defskip
21859 \end_inset
21860
21861 Para poner notas al pie en tablas, tienes que usar minipáginas, ver sección\InsetSpace ~
21862
21863 \begin_inset LatexCommand ref
21864 reference "sec:Minipáginas"
21865
21866 \end_inset
21867
21868 .
21869  Los pies en tablas largas en la sección\InsetSpace ~
21870
21871 \begin_inset LatexCommand ref
21872 reference "sub:Notas-al-pie-en-Tablas-Largas"
21873
21874 \end_inset
21875
21876 .
21877 \end_layout
21878
21879 \begin_layout Standard
21880 \begin_inset VSpace defskip
21881 \end_inset
21882
21883 Para crear solo una marca para una nota al pie, puedes usar el comando 
21884 \series bold
21885
21886 \backslash
21887 footnotemark[número]
21888 \series default
21889  en ERT.
21890  Esto se emplea si tienes la misma anotación varias veces en el texto pero
21891  no quieres imprimir el pie cada vez.
21892 \newline
21893 Como no sabes el número del pie que
21894  se repite mientras escribes el texto, tienes que guardarlo.
21895  Para el siguiente ejemplo de marca de pie, se han insertado estos comandos
21896  en ERT detrás de Nota\InsetSpace ~
21897 al\InsetSpace ~
21898 pie\InsetSpace ~
21899
21900 \begin_inset LatexCommand ref
21901 reference "pie:Esto-es-una"
21902
21903 \end_inset
21904
21905  para guardar el número de pie:
21906 \end_layout
21907
21908 \begin_layout Standard
21909
21910 \series bold
21911
21912 \backslash
21913 newcounter{MyRepeatFoot}
21914 \newline
21915
21916 \backslash
21917 setcounter{MyRepeatFoot}{
21918 \backslash
21919 thefootnote}
21920 \end_layout
21921
21922 \begin_layout Standard
21923 La marca de pie se crea entonces con el comando:
21924 \end_layout
21925
21926 \begin_layout Standard
21927
21928 \series bold
21929
21930 \backslash
21931 footnotemark[
21932 \backslash
21933 theMyRepeatFoot]
21934 \end_layout
21935
21936 \begin_layout Standard
21937 Aquí hay un ejemplo de marca de pie:
21938 \family roman
21939 \series medium
21940 \bar no
21941
21942 \begin_inset ERT
21943 status collapsed
21944
21945 \begin_layout Standard
21946
21947
21948 \backslash
21949 footnotemark[
21950 \backslash
21951 theMyRepeatFoot]
21952 \end_layout
21953
21954 \end_inset
21955
21956
21957 \end_layout
21958
21959 \begin_layout Subsection
21960 Numeración de Notas al Pie
21961 \begin_inset LatexCommand label
21962 name "sub:Numeración-de-Notas-al-Pie"
21963
21964 \end_inset
21965
21966
21967 \begin_inset LatexCommand index
21968 name "Notas al Pie ! Numeración"
21969
21970 \end_inset
21971
21972
21973 \end_layout
21974
21975 \begin_layout Standard
21976 Si quieres numerar notas al pie en el esquema 
21977 \begin_inset Quotes eld
21978 \end_inset
21979
21980 capítulo.nota
21981 \begin_inset Quotes erd
21982 \end_inset
21983
21984 , añade el siguiente comando al preámbulo del documento:
21985 \end_layout
21986
21987 \begin_layout Standard
21988
21989 \series bold
21990
21991 \backslash
21992 numberwithin{footnote}{chapter}
21993 \end_layout
21994
21995 \begin_layout Standard
21996 Para poder usar el comando 
21997 \series bold
21998
21999 \backslash
22000 numberwithin
22001 \series default
22002 , marca la opción 
22003 \family sans
22004 Usar
22005 \family default
22006 \InsetSpace ~
22007
22008 \family sans
22009 el
22010 \family default
22011 \InsetSpace ~
22012
22013 \family sans
22014 paquete
22015 \family default
22016 \InsetSpace ~
22017
22018 \family sans
22019 AMS
22020 \family default
22021  en la solapa 
22022 \family sans
22023 Ecuaciones
22024 \family default
22025  de la configuración del documento.
22026 \end_layout
22027
22028 \begin_layout Standard
22029 \begin_inset ERT
22030 status collapsed
22031
22032 \begin_layout Standard
22033
22034
22035 \backslash
22036 numberwithin{footnote}{chapter}
22037 \end_layout
22038
22039 \end_inset
22040
22041 Esto es otro ejemplo de nota al pie:
22042 \series bold
22043
22044 \begin_inset Foot
22045 status open
22046
22047 \begin_layout Standard
22048 Nota al pie numerada en el esquema 
22049 \begin_inset Quotes eld
22050 \end_inset
22051
22052 capítulo.nota
22053 \begin_inset Quotes erd
22054 \end_inset
22055
22056 .
22057 \end_layout
22058
22059 \end_inset
22060
22061
22062 \series default
22063
22064 \begin_inset ERT
22065 status collapsed
22066
22067 \begin_layout Standard
22068
22069
22070 \backslash
22071 numberwithin{footnote}{part}
22072 \end_layout
22073
22074 \end_inset
22075
22076
22077 \end_layout
22078
22079 \begin_layout Standard
22080 \begin_inset VSpace bigskip
22081 \end_inset
22082
22083
22084 \end_layout
22085
22086 \begin_layout Standard
22087 Para reiniciar el número de pie a 1 en cada sección añade este 
22088 \family roman
22089 comando en el preámbulo:
22090 \end_layout
22091
22092 \begin_layout Standard
22093
22094 \series bold
22095
22096 \backslash
22097 @addtoreset{footnote}{section}
22098 \end_layout
22099
22100 \begin_layout Standard
22101 \begin_inset VSpace bigskip
22102 \end_inset
22103
22104 El siguiente comando en el preámbulo cambia el estilo de numeración del
22105  pie a números romanos en minúsculas:
22106 \end_layout
22107
22108 \begin_layout Standard
22109
22110 \series bold
22111
22112 \backslash
22113 renewcommand{
22114 \backslash
22115 thefootnote}{
22116 \backslash
22117 roman{footnote}}
22118 \end_layout
22119
22120 \begin_layout Standard
22121 \begin_inset ERT
22122 status collapsed
22123
22124 \begin_layout Standard
22125
22126
22127 \backslash
22128 renewcommand{
22129 \backslash
22130 thefootnote}{
22131 \backslash
22132 roman{footnote}}
22133 \end_layout
22134
22135 \end_inset
22136
22137  Nota al pie en números romanos:
22138 \begin_inset Foot
22139 status open
22140
22141 \begin_layout Standard
22142 Ejemplo de nota al pie en números romanos.
22143 \end_layout
22144
22145 \end_inset
22146
22147
22148 \begin_inset ERT
22149 status collapsed
22150
22151 \begin_layout Standard
22152
22153
22154 \backslash
22155 renewcommand{
22156 \backslash
22157 thefootnote}{
22158 \backslash
22159 arabic{footnote}}
22160 \end_layout
22161
22162 \end_inset
22163
22164
22165 \end_layout
22166
22167 \begin_layout Standard
22168 Para cambiar el estilo de número a romanos en mayúscula cambia el comando
22169  
22170 \series bold
22171
22172 \backslash
22173 roman
22174 \series default
22175  por 
22176 \series bold
22177
22178 \backslash
22179 Roman
22180 \series default
22181 .
22182  Para ordenar las notas al pie con letras mayúsculas o minúsculas usa 
22183 \series bold
22184
22185 \backslash
22186 Alph
22187 \series default
22188  o 
22189 \series bold
22190
22191 \backslash
22192 alph
22193 \series default
22194 , respectivamente.
22195  Para ordenar las notas al pie con símbolos usa 
22196 \series bold
22197
22198 \backslash
22199 fnsymbol
22200 \series default
22201 .
22202 \end_layout
22203
22204 \begin_layout Standard
22205 \begin_inset Note Greyedout
22206 status open
22207
22208 \begin_layout Standard
22209
22210 \series bold
22211 Nota:
22212 \series default
22213  Solo puedes ordenar hasta 26 pies con letras, porque está limitado a letras
22214  simples.
22215 \end_layout
22216
22217 \end_inset
22218
22219
22220 \newline
22221
22222 \begin_inset Note Greyedout
22223 status open
22224
22225 \begin_layout Standard
22226
22227 \series bold
22228 Nota:
22229 \series default
22230  Solo puedes ordenar hasta 9 pies con símbolos.
22231 \end_layout
22232
22233 \end_inset
22234
22235
22236 \end_layout
22237
22238 \begin_layout Standard
22239 Para volver al estilo de numeración predeterminado cuando has cambiado a
22240  otro estilo, usa 
22241 \series bold
22242
22243 \backslash
22244 arabic
22245 \series default
22246  en vez de 
22247 \series bold
22248
22249 \backslash
22250 roman
22251 \series default
22252  en el comando anterior.
22253 \end_layout
22254
22255 \begin_layout Subsection
22256 Colocación de Notas al Pie
22257 \begin_inset LatexCommand index
22258 name "Notas al Pie ! Colocación"
22259
22260 \end_inset
22261
22262
22263 \end_layout
22264
22265 \begin_layout Standard
22266 Si tienes varias notas al pie de una página, se muestran sin espacio vertical
22267  entre ellas al final de la página.
22268  Para hacerlas más legibles puedes añadir p.\InsetSpace \thinspace{}
22269 e.\InsetSpace ~
22270 1.5\InsetSpace \thinspace{}
22271 mm con el comando siguiente
22272  en el preámbulo:
22273 \end_layout
22274
22275 \begin_layout Standard
22276
22277 \series bold
22278
22279 \backslash
22280 let
22281 \backslash
22282 myFoot
22283 \backslash
22284 footnote
22285 \newline
22286
22287 \backslash
22288 renewcommand{
22289 \backslash
22290 footnote}[1]{
22291 \backslash
22292 myFoot{#1
22293 \backslash
22294 vspace{1.5mm}}}
22295 \end_layout
22296
22297 \begin_layout Standard
22298 \begin_inset VSpace bigskip
22299 \end_inset
22300
22301 En documentos a dos columnas la nota al pie aparece al final de cada columna,
22302  ver la figura\InsetSpace ~
22303
22304 \begin_inset LatexCommand ref
22305 reference "fig:Colocación-standard-del-pie"
22306
22307 \end_inset
22308
22309 .
22310  Si las notas debieran mostrarse sólo al final de la columna derecha, como
22311  en la figura\InsetSpace ~
22312
22313 \begin_inset LatexCommand ref
22314 reference "fig:Colocación-del-pie-en"
22315
22316 \end_inset
22317
22318 , usa el paquete LaTeX 
22319 \series bold
22320 ftnright
22321 \series default
22322
22323 \begin_inset LatexCommand index
22324 name "LaTeX-paquetes ! ftnright"
22325
22326 \end_inset
22327
22328  con este comando en el preámbulo:
22329 \end_layout
22330
22331 \begin_layout Standard
22332
22333 \series bold
22334
22335 \backslash
22336 usepackage{ftnright}
22337 \end_layout
22338
22339 \begin_layout Standard
22340 \begin_inset Float figure
22341 placement !h
22342 wide false
22343 sideways false
22344 status open
22345
22346 \begin_layout Standard
22347 \begin_inset ERT
22348 status collapsed
22349
22350 \begin_layout Standard
22351
22352
22353 \backslash
22354 framebox{
22355 \end_layout
22356
22357 \end_inset
22358
22359
22360 \begin_inset Graphics
22361         filename ../clipart/without_fntright.pdf
22362         width 100col%
22363
22364 \end_inset
22365
22366
22367 \begin_inset ERT
22368 status collapsed
22369
22370 \begin_layout Standard
22371
22372 }
22373 \end_layout
22374
22375 \end_inset
22376
22377
22378 \end_layout
22379
22380 \begin_layout Standard
22381 \begin_inset Caption
22382
22383 \begin_layout Standard
22384 \begin_inset LatexCommand label
22385 name "fig:Colocación-standard-del-pie"
22386
22387 \end_inset
22388
22389 Colocación estándar de notas al pie en documentos a dos columnas.
22390 \end_layout
22391
22392 \end_inset
22393
22394
22395 \end_layout
22396
22397 \end_inset
22398
22399
22400 \end_layout
22401
22402 \begin_layout Standard
22403 \begin_inset Float figure
22404 placement !h
22405 wide false
22406 sideways false
22407 status open
22408
22409 \begin_layout Standard
22410 \begin_inset ERT
22411 status collapsed
22412
22413 \begin_layout Standard
22414
22415
22416 \backslash
22417 framebox{
22418 \end_layout
22419
22420 \end_inset
22421
22422
22423 \begin_inset Graphics
22424         filename ../clipart/with_fntright.pdf
22425         width 100col%
22426
22427 \end_inset
22428
22429
22430 \begin_inset ERT
22431 status collapsed
22432
22433 \begin_layout Standard
22434
22435 }
22436 \end_layout
22437
22438 \end_inset
22439
22440
22441 \end_layout
22442
22443 \begin_layout Standard
22444 \begin_inset Caption
22445
22446 \begin_layout Standard
22447 \begin_inset LatexCommand label
22448 name "fig:Colocación-del-pie-en"
22449
22450 \end_inset
22451
22452 Colocación del pie en documentos a dos columnas cuando se usa el paquete
22453  LaTeX 
22454 \series bold
22455 ftnright
22456 \series default
22457 .
22458 \end_layout
22459
22460 \end_inset
22461
22462
22463 \end_layout
22464
22465 \end_inset
22466
22467
22468 \end_layout
22469
22470 \begin_layout Standard
22471 \begin_inset VSpace bigskip
22472 \end_inset
22473
22474 En alguna literatura científica es habitual reunir las notas para imprimirlas
22475  en un párrafo separado al final de la sección, como en la figura\InsetSpace ~
22476
22477 \begin_inset LatexCommand ref
22478 reference "fig:Notas-al-final----notas-al-pie"
22479
22480 \end_inset
22481
22482 .
22483  Para usar notas finales en vez de notas al pie , carga el paquete LaTeX
22484  
22485 \series bold
22486 endnotes
22487 \series default
22488
22489 \begin_inset LatexCommand index
22490 name "LaTeX-paquetes ! endnotes"
22491
22492 \end_inset
22493
22494  con las siguientes líneas en el preámbulo de tu documento:
22495 \end_layout
22496
22497 \begin_layout Standard
22498
22499 \series bold
22500
22501 \backslash
22502 usepackage{endnotes}
22503 \newline
22504
22505 \backslash
22506 let
22507 \backslash
22508 footnote
22509 \backslash
22510 endnote
22511 \end_layout
22512
22513 \begin_layout Standard
22514 Para insertar la colección de notas, escribe el comando
22515 \end_layout
22516
22517 \begin_layout Standard
22518
22519 \series bold
22520
22521 \backslash
22522 theendnotes
22523 \end_layout
22524
22525 \begin_layout Standard
22526 en ERT al final de una sección o capítulo.
22527 \end_layout
22528
22529 \begin_layout Standard
22530 \begin_inset Float figure
22531 wide false
22532 sideways false
22533 status open
22534
22535 \begin_layout Standard
22536 \align center
22537 \begin_inset ERT
22538 status collapsed
22539
22540 \begin_layout Standard
22541
22542
22543 \backslash
22544 framebox{
22545 \end_layout
22546
22547 \end_inset
22548
22549
22550 \begin_inset Graphics
22551         filename ../clipart/endnotes.pdf
22552
22553 \end_inset
22554
22555
22556 \begin_inset ERT
22557 status collapsed
22558
22559 \begin_layout Standard
22560
22561 }
22562 \end_layout
22563
22564 \end_inset
22565
22566
22567 \end_layout
22568
22569 \begin_layout Standard
22570 \begin_inset Caption
22571
22572 \begin_layout Standard
22573 \begin_inset LatexCommand label
22574 name "fig:Notas-al-final----notas-al-pie"
22575
22576 \end_inset
22577
22578 Notas al final: notas impresas en párrafo separado al final de la sección
22579  o del capítulo.
22580 \end_layout
22581
22582 \end_inset
22583
22584
22585 \end_layout
22586
22587 \end_inset
22588
22589
22590 \end_layout
22591
22592 \begin_layout Standard
22593 \begin_inset VSpace defskip
22594 \end_inset
22595
22596 La cabecera de párrafo para las notas finales no se traduce automáticamente
22597  al lenguaje del documento, hay que hacerlo manualmente.
22598   El siguiente comando de preámbulo traduce el nombre en inglés 
22599 \begin_inset Quotes eld
22600 \end_inset
22601
22602 Notes
22603 \begin_inset Quotes erd
22604 \end_inset
22605
22606  al español 
22607 \begin_inset Quotes eld
22608 \end_inset
22609
22610 Notas
22611 \begin_inset Quotes erd
22612 \end_inset
22613
22614 :
22615 \end_layout
22616
22617 \begin_layout Standard
22618
22619 \series bold
22620
22621 \backslash
22622 renewcommand{
22623 \backslash
22624 notesname}{Notas}
22625 \end_layout
22626
22627 \begin_layout Standard
22628 \begin_inset VSpace defskip
22629 \end_inset
22630
22631 La numeración de notas finales puede cambiarse como la de las notas al pie,
22632  como se describe en la sección\InsetSpace ~
22633
22634 \begin_inset LatexCommand ref
22635 reference "sub:Numeración-de-Notas-al-Pie"
22636
22637 \end_inset
22638
22639 ; sólo hay que reemplazar el comando 
22640 \series bold
22641
22642 \backslash
22643 thefootnote
22644 \series default
22645  por 
22646 \series bold
22647
22648 \backslash
22649 theendnote
22650 \series default
22651 .
22652  Para restablecer la numeración usa el comando 
22653 \series bold
22654
22655 \backslash
22656 @addtoreset
22657 \series default
22658  como se describe en la sección\InsetSpace ~
22659
22660 \begin_inset LatexCommand ref
22661 reference "sub:Numeración-de-Notas-al-Pie"
22662
22663 \end_inset
22664
22665  y sustituye el parámetro de comando 
22666 \series bold
22667 footnote
22668 \series default
22669  por 
22670 \series bold
22671 endnote
22672 \series default
22673 .
22674 \end_layout
22675
22676 \begin_layout Standard
22677 Para crear solo una marca para una nota final, usa el comando 
22678 \series bold
22679
22680 \backslash
22681 endnotemark[número]
22682 \series default
22683  similar al comando 
22684 \series bold
22685
22686 \backslash
22687 footnotemark
22688 \series default
22689 , descrito en la sección\InsetSpace ~
22690
22691 \begin_inset LatexCommand ref
22692 reference "sec:Notas-al-pie"
22693
22694 \end_inset
22695
22696 .
22697 \end_layout
22698
22699 \begin_layout Standard
22700 \begin_inset VSpace bigskip
22701 \end_inset
22702
22703 Las notas al pie también pueden colocarse al margen de la página y la alineación
22704  del texto del pie también puede cambiarse, ver el paquete LaTeX 
22705 \series bold
22706 footmisc
22707 \series default
22708
22709 \begin_inset LatexCommand index
22710 name "LaTeX-paquetes ! footmisc"
22711
22712 \end_inset
22713
22714
22715 \begin_inset LatexCommand cite
22716 key "footmisc"
22717
22718 \end_inset
22719
22720  para más información.
22721 \end_layout
22722
22723 \begin_layout Standard
22724 Para otras posibilidades de diseño de notas al pie mira en libros de LaTeX,
22725  
22726 \begin_inset LatexCommand cite
22727 key "latexcompanion,latexguide,latexbook"
22728
22729 \end_inset
22730
22731 .
22732 \end_layout
22733
22734 \begin_layout Section
22735 Notas al Margen
22736 \begin_inset LatexCommand index
22737 name "Notas ! al Margen"
22738
22739 \end_inset
22740
22741
22742 \end_layout
22743
22744 \begin_layout Standard
22745 Las notas al margen se ven y se comportan en LyX como notas al pie.
22746  Se insertan con el menú 
22747 \family sans
22748 Insertar\SpecialChar \menuseparator
22749 Nota\InsetSpace ~
22750 al\InsetSpace ~
22751 margen
22752 \family default
22753  o el botón 
22754 \begin_inset Graphics
22755         filename ../../images/marginalnote-insert.xpm
22756         scale 85
22757
22758 \end_inset
22759
22760 .
22761  Aparece un cuadro gris con la etiqueta en rojo 
22762 \family roman
22763 \series medium
22764
22765 \begin_inset Quotes eld
22766 \end_inset
22767
22768 margen
22769 \begin_inset Quotes erd
22770 \end_inset
22771
22772  en el que puedes escribir el texto de la nota.
22773 \end_layout
22774
22775 \begin_layout Standard
22776 Al lado hay un ejemplo de nota al margen.
22777 \family roman
22778 \series medium
22779
22780 \begin_inset Marginal
22781 status open
22782
22783 \begin_layout Standard
22784 Esto es una nota al margen.
22785 \end_layout
22786
22787 \end_inset
22788
22789
22790 \end_layout
22791
22792 \begin_layout Standard
22793 Estas notas salen en el margen derecho en documentos a una cara.
22794  En documentos a doble cara se muestran en el margen externo ---izquierdo
22795  en páginas pares, derecho en páginas impares---.
22796  El texto de las notas se ajusta a la parte opuesta al margen ---se ajusta
22797  a la derecha si la nota aparece en el margen izquierdo---.
22798  La primera línea de la nota se sitúa en la posición de la línea del texto
22799  en la que se inserta en el documento.
22800 \end_layout
22801
22802 \begin_layout Standard
22803 \begin_inset VSpace bigskip
22804 \end_inset
22805
22806 Para colocar la nota en el margen interno añade el comando
22807 \end_layout
22808
22809 \begin_layout Standard
22810
22811 \series bold
22812
22813 \backslash
22814 reversemarginpar
22815 \end_layout
22816
22817 \begin_layout Standard
22818 en ERT antes de la nota.
22819  La nueva colocación es válida para todas las siguientes notas al margen.
22820 \begin_inset ERT
22821 status collapsed
22822
22823 \begin_layout Standard
22824
22825
22826 \backslash
22827 reversemarginpar 
22828 \end_layout
22829
22830 \end_inset
22831
22832
22833 \begin_inset Marginal
22834 status open
22835
22836 \begin_layout Standard
22837 Esto es una nota en el margen interno.
22838 \end_layout
22839
22840 \end_inset
22841
22842
22843 \series bold
22844
22845 \newline
22846
22847 \series default
22848
22849 \begin_inset Note Greyedout
22850 status open
22851
22852 \begin_layout Standard
22853
22854 \series bold
22855 Nota:
22856 \series default
22857  A veces no hay espacio suficiente en el margen interno, por lo que la nota
22858  no se mostrará correctamente en la salida.
22859 \end_layout
22860
22861 \end_inset
22862
22863
22864 \end_layout
22865
22866 \begin_layout Standard
22867 \begin_inset ERT
22868 status collapsed
22869
22870 \begin_layout Standard
22871
22872
22873 \backslash
22874 normalmarginpar 
22875 \end_layout
22876
22877 \end_inset
22878
22879 Para volver a la ubicación predeterminada inserta el comando
22880 \end_layout
22881
22882 \begin_layout Standard
22883
22884 \series bold
22885
22886 \backslash
22887 normalmarginpar
22888 \end_layout
22889
22890 \begin_layout Standard
22891 en ERT.
22892 \newline
22893  
22894 \begin_inset Note Greyedout
22895 status open
22896
22897 \begin_layout Standard
22898
22899 \series bold
22900 Nota:
22901 \series default
22902  El comando se ignora si en el mismo párrafo está también presente el comando
22903  
22904 \series bold
22905
22906 \backslash
22907 reversemarginpar
22908 \series default
22909 .
22910 \end_layout
22911
22912 \end_inset
22913
22914
22915 \end_layout
22916
22917 \begin_layout Standard
22918 \begin_inset VSpace bigskip
22919 \end_inset
22920
22921
22922 \family roman
22923 \series medium
22924
22925 \begin_inset Marginal
22926 status open
22927
22928 \begin_layout Standard
22929 PalabraMuyLargaAlMargen no partida con guión.
22930 \end_layout
22931
22932 \end_inset
22933
22934
22935 \family default
22936 \series default
22937 Como en el caso descrito en la sección\InsetSpace ~
22938
22939 \begin_inset LatexCommand ref
22940 reference "sub:Líneas-Múltiples-en"
22941
22942 \end_inset
22943
22944 , una palabra larga no puede partirse con guión cuando es la primera en
22945  la nota al margen.
22946  Para evitar esto, inserta el comando
22947 \end_layout
22948
22949 \begin_layout Standard
22950
22951 \series bold
22952
22953 \backslash
22954 hspace{0pt}
22955 \end_layout
22956
22957 \begin_layout Standard
22958 en ERT antes de la palabra
22959 \family roman
22960 \series medium
22961 .
22962 \begin_inset Marginal
22963 status open
22964
22965 \begin_layout Standard
22966 \begin_inset ERT
22967 status collapsed
22968
22969 \begin_layout Standard
22970
22971
22972 \backslash
22973 hspace{0pt}
22974 \end_layout
22975
22976 \end_inset
22977
22978 PalabraMuyLargaAlMargen partida con guión.
22979 \end_layout
22980
22981 \end_inset
22982
22983
22984 \end_layout
22985
22986 \begin_layout Standard
22987 \begin_inset VSpace bigskip
22988 \end_inset
22989
22990
22991 \end_layout
22992
22993 \begin_layout Standard
22994 \begin_inset Note Greyedout
22995 status open
22996
22997 \begin_layout Standard
22998
22999 \series bold
23000 Nota:
23001 \series default
23002  Normalmente no pueden utilizarse notas al margen en tablas, flotantes,
23003  y notas al pie.
23004 \end_layout
23005
23006 \end_inset
23007
23008
23009 \end_layout
23010
23011 \begin_layout Standard
23012 \begin_inset VSpace bigskip
23013 \end_inset
23014
23015
23016 \end_layout
23017
23018 \begin_layout Standard
23019 \begin_inset ERT
23020 status collapsed
23021
23022 \begin_layout Standard
23023
23024
23025 \backslash
23026 ifmarginnote
23027 \end_layout
23028
23029 \end_inset
23030
23031
23032 \begin_inset Note Note
23033 status open
23034
23035 \begin_layout Standard
23036 La siguiente sección sólo se mostrará en pantalla si está instalado el paquete
23037  LaTeX 
23038 \series bold
23039 marginnote
23040 \series default
23041 .
23042 \end_layout
23043
23044 \end_inset
23045
23046
23047 \end_layout
23048
23049 \begin_layout Standard
23050 Esta restricción se puede salvar con el paquete LaTeX 
23051 \series bold
23052 marginnote
23053 \series default
23054
23055 \begin_inset LatexCommand index
23056 name "LaTeX-paquetes ! marginnote"
23057
23058 \end_inset
23059
23060 .
23061  Poniendo estas dos líneas en el preámbulo, el comando usado por LyX para
23062  notas al margen es redefinido para usar el comando provisto por el paquete
23063  
23064 \series bold
23065 marginnote
23066 \series default
23067 :
23068 \end_layout
23069
23070 \begin_layout Standard
23071
23072 \series bold
23073
23074 \backslash
23075 usepackage{marginnote}
23076 \newline
23077
23078 \backslash
23079 let
23080 \backslash
23081 marginpar
23082 \backslash
23083 marginnote
23084 \end_layout
23085
23086 \begin_layout Standard
23087 Esto se ha utilizado en el presente documento porque 
23088 \series bold
23089 marginnote
23090 \series default
23091  tiene una característica adicional útil: Puedes imponer un offset vertical
23092  a la nota.
23093  A veces esto hace falta si hay demasiadas notas juntas o para mejorar el
23094  diseño de la página.
23095  El offset se determina en LyX como ERT directamente tras la nota al margen
23096  en el esquema
23097 \end_layout
23098
23099 \begin_layout Standard
23100
23101 \series bold
23102 [offset]
23103 \end_layout
23104
23105 \begin_layout Standard
23106 donde offset es una longitud en una de las unidades listadas en la tabla\InsetSpace ~
23107
23108 \begin_inset LatexCommand ref
23109 reference "tab:Unidades"
23110
23111 \end_inset
23112
23113 .
23114  Un valor negativo desplaza la nota hacia arriba, un valor positivo hacia
23115  abajo.
23116  
23117 \family roman
23118 \series medium
23119 Por ejemplo la nota adjunta a esta línea de texto está desplazada 1.5\InsetSpace \thinspace{}
23120 cm arriba
23121  con el comando ERT 
23122 \begin_inset Quotes eld
23123 \end_inset
23124
23125
23126 \family default
23127 \series bold
23128 [-1.5cm]
23129 \family roman
23130 \series medium
23131
23132 \begin_inset Quotes erd
23133 \end_inset
23134
23135
23136 \begin_inset Marginal
23137 status open
23138
23139 \begin_layout Standard
23140 Esta nota está 1.5\InsetSpace \thinspace{}
23141 cm por encima de su posición original.
23142 \end_layout
23143
23144 \end_inset
23145
23146
23147 \family default
23148 \series default
23149
23150 \begin_inset ERT
23151 status collapsed
23152
23153 \begin_layout Standard
23154
23155 [-1.5cm]
23156 \end_layout
23157
23158 \end_inset
23159
23160
23161 \end_layout
23162
23163 \begin_layout Standard
23164 \begin_inset VSpace defskip
23165 \end_inset
23166
23167 Con 
23168 \series bold
23169 marginnote
23170 \series default
23171  también puedes cambiar la alineación del texto en el margen.
23172  Por ejemplo los comandos
23173 \end_layout
23174
23175 \begin_layout Standard
23176
23177 \series bold
23178
23179 \backslash
23180 renewcommand*{
23181 \backslash
23182 raggedleftmarginnote}{
23183 \backslash
23184 centering}
23185 \newline
23186
23187 \backslash
23188 renewcommand*{
23189 \backslash
23190 raggedrightmarginnote}{
23191 \backslash
23192 centering}
23193 \end_layout
23194
23195 \begin_layout Standard
23196 producen alineación centrada.
23197  
23198 \series bold
23199
23200 \backslash
23201 raggedleftmarginnote
23202 \series default
23203  identifica las notas que aparecen al lado izquierdo.
23204 \family roman
23205 \series medium
23206
23207 \begin_inset ERT
23208 status collapsed
23209
23210 \begin_layout Standard
23211
23212
23213 \backslash
23214 renewcommand*{
23215 \backslash
23216 raggedleftmarginnote}{
23217 \backslash
23218 centering}
23219 \end_layout
23220
23221 \begin_layout Standard
23222
23223
23224 \backslash
23225 renewcommand*{
23226 \backslash
23227 raggedrightmarginnote}{
23228 \backslash
23229 centering}
23230 \end_layout
23231
23232 \end_inset
23233
23234
23235 \begin_inset Marginal
23236 status open
23237
23238 \begin_layout Standard
23239 El texto de esta nota está centrado.
23240 \end_layout
23241
23242 \end_inset
23243
23244
23245 \family default
23246 \series default
23247  El valor predeterminado es 
23248 \end_layout
23249
23250 \begin_layout Standard
23251
23252 \series bold
23253
23254 \backslash
23255 renewcommand*{
23256 \backslash
23257 raggedleftmarginnote}{
23258 \backslash
23259 raggedleft}
23260 \newline
23261
23262 \backslash
23263 renewcommand*{
23264 \backslash
23265 raggedrightmarginnote}{
23266 \backslash
23267 raggedright}
23268 \family roman
23269 \series medium
23270
23271 \begin_inset ERT
23272 status collapsed
23273
23274 \begin_layout Standard
23275
23276
23277 \backslash
23278 renewcommand*{
23279 \backslash
23280 raggedleftmarginnote}{
23281 \backslash
23282 raggedleft}
23283 \end_layout
23284
23285 \begin_layout Standard
23286
23287
23288 \backslash
23289 renewcommand*{
23290 \backslash
23291 raggedrightmarginnote}{
23292 \backslash
23293 raggedright}
23294 \end_layout
23295
23296 \end_inset
23297
23298
23299 \end_layout
23300
23301 \begin_layout Standard
23302 \begin_inset VSpace defskip
23303 \end_inset
23304
23305 Para otras características de 
23306 \series bold
23307 marginnote
23308 \series default
23309  mira en su documentación 
23310 \begin_inset LatexCommand cite
23311 key "marginnote"
23312
23313 \end_inset
23314
23315 .
23316 \end_layout
23317
23318 \begin_layout Standard
23319 \begin_inset VSpace bigskip
23320 \end_inset
23321
23322 El diseño de las notas al margen puede ser redefinido.
23323  Por ejemplo, para crear una cabecera para todas las notas con el texto
23324  
23325 \begin_inset Quotes eld
23326 \end_inset
23327
23328
23329 \series bold
23330 \bar under
23331 ¡
23332 \family sans
23333 Atención
23334 \family default
23335 !
23336 \series default
23337 \bar default
23338
23339 \begin_inset Quotes erd
23340 \end_inset
23341
23342 , subrayado, sans-serif en negrita, añade lo siguiente en el preámbulo:
23343 \end_layout
23344
23345 \begin_layout Standard
23346
23347 \series bold
23348
23349 \backslash
23350 let
23351 \backslash
23352 myMarginpar
23353 \backslash
23354 marginpar
23355 \newline
23356
23357 \backslash
23358 renewcommand{
23359 \backslash
23360 marginpar}[1]{
23361 \backslash
23362 myMarginpar{%
23363 \newline
23364
23365 \begin_inset ERT
23366 status collapsed
23367
23368 \begin_layout Standard
23369
23370
23371 \backslash
23372 hphantom{ }
23373 \end_layout
23374
23375 \end_inset
23376
23377
23378 \backslash
23379 hspace{0pt}
23380 \backslash
23381 textsf{
23382 \backslash
23383 textbf{
23384 \backslash
23385 underbar{¡Atención!}}}%
23386 \newline
23387
23388 \begin_inset ERT
23389 status collapsed
23390
23391 \begin_layout Standard
23392
23393
23394 \backslash
23395 hphantom{ }
23396 \end_layout
23397
23398 \end_inset
23399
23400
23401 \backslash
23402 vspace{1.5mm}
23403 \backslash
23404
23405 \backslash
23406 #1}}
23407 \end_layout
23408
23409 \begin_layout Standard
23410
23411 \family roman
23412 \series medium
23413 \begin_inset ERT
23414 status collapsed
23415
23416 \begin_layout Standard
23417
23418
23419 \backslash
23420 let
23421 \backslash
23422 myMarginpar
23423 \backslash
23424 marginpar
23425 \end_layout
23426
23427 \begin_layout Standard
23428
23429
23430 \backslash
23431 renewcommand{
23432 \backslash
23433 marginpar}[1]{
23434 \backslash
23435 myMarginpar{%
23436 \end_layout
23437
23438 \begin_layout Standard
23439
23440    
23441 \backslash
23442 textsf{
23443 \backslash
23444 textbf{
23445 \backslash
23446 underbar{¡Atención!}}}%
23447 \end_layout
23448
23449 \begin_layout Standard
23450
23451    
23452 \backslash
23453 vspace{1.5mm}
23454 \backslash
23455
23456 \backslash
23457 #1}}
23458 \end_layout
23459
23460 \end_inset
23461
23462
23463 \begin_inset Marginal
23464 status open
23465
23466 \begin_layout Standard
23467 Esta es una nota con una cabecera definida.
23468 \end_layout
23469
23470 \end_inset
23471
23472
23473 \family default
23474 \series default
23475
23476 \begin_inset ERT
23477 status collapsed
23478
23479 \begin_layout Standard
23480
23481 [-1.5cm]
23482 \end_layout
23483
23484 \end_inset
23485
23486
23487 \family roman
23488 \series medium
23489
23490 \begin_inset ERT
23491 status collapsed
23492
23493 \begin_layout Standard
23494
23495
23496 \backslash
23497 renewcommand{
23498 \backslash
23499 marginpar}[1]{
23500 \backslash
23501 myMarginpar{#1}}
23502 \end_layout
23503
23504 \end_inset
23505
23506
23507 \family default
23508 \series default
23509
23510 \begin_inset Note Note
23511 status collapsed
23512
23513 \begin_layout Standard
23514 El formato de la nota al margen se ha cambiado solo para este ejemplo.
23515 \end_layout
23516
23517 \end_inset
23518
23519
23520 \end_layout
23521
23522 \begin_layout Standard
23523 \begin_inset ERT
23524 status collapsed
23525
23526 \begin_layout Standard
23527
23528
23529 \backslash
23530 else
23531 \end_layout
23532
23533 \end_inset
23534
23535
23536 \begin_inset Note Note
23537 status open
23538
23539 \begin_layout Standard
23540 Lo siguiente se mostrará en pantalla si no está instalado el paquete LaTeX
23541  
23542 \series bold
23543 marginnote
23544 \series default
23545 .
23546 \end_layout
23547
23548 \end_inset
23549
23550
23551 \end_layout
23552
23553 \begin_layout Standard
23554 Debes instalar el paquete LaTeX 
23555 \series bold
23556 marginnote
23557 \series default
23558  para ver la parte siguiente en la salida.
23559 \end_layout
23560
23561 \begin_layout Standard
23562 \begin_inset ERT
23563 status collapsed
23564
23565 \begin_layout Standard
23566
23567
23568 \backslash
23569 fi
23570 \end_layout
23571
23572 \end_inset
23573
23574
23575 \end_layout
23576
23577 \begin_layout Chapter
23578 Cuadros
23579 \end_layout
23580
23581 \begin_layout Section
23582 Introducción
23583 \begin_inset LatexCommand index
23584 name "Cuadros ! Introducción"
23585
23586 \end_inset
23587
23588
23589 \end_layout
23590
23591 \begin_layout Standard
23592 Los cuadros se emplean para dar formato a bloques de texto.
23593  Se pueden usar para escribir documentos con varios lenguajes, ver sección\InsetSpace ~
23594
23595 \begin_inset LatexCommand ref
23596 reference "sec:Minipáginas"
23597
23598 \end_inset
23599
23600 , enmarcar textos, ver sección\InsetSpace ~
23601
23602 \begin_inset LatexCommand ref
23603 reference "sec:Cuadros-Enmarcados"
23604
23605 \end_inset
23606
23607 , evitar la división de palabras, ver sección\InsetSpace ~
23608
23609 \begin_inset LatexCommand ref
23610 reference "sec:Evitar-la-Partición-con-Guiones"
23611
23612 \end_inset
23613
23614 , alinear texto, ver sección\InsetSpace ~
23615
23616 \begin_inset LatexCommand ref
23617 reference "sub:Alineación-Vertical"
23618
23619 \end_inset
23620
23621 , o para poner color de fondo a un texto, ver sección\InsetSpace ~
23622
23623 \begin_inset LatexCommand ref
23624 reference "sec:Cuadros-Coloreados"
23625
23626 \end_inset
23627
23628 .
23629 \end_layout
23630
23631 \begin_layout Standard
23632 Se insertan con el menú 
23633 \family sans
23634 Insertar\SpecialChar \menuseparator
23635 Cuadro
23636 \family default
23637 .
23638  Surge un recuadro gris con la etiqueta 
23639 \family sans
23640 Cuadro (Minipágina)
23641 \family default
23642
23643 \begin_inset Graphics
23644         filename clipart/CuadroMinipagQt4.png
23645         scale 75
23646         keepAspectRatio
23647
23648 \end_inset
23649
23650 .
23651  El tipo de cuadro se puede elegir al hacer clic-derecho sobre él.
23652  Sale un diálogo en el que 
23653 \family sans
23654 Cuadro
23655 \family default
23656 \InsetSpace ~
23657
23658 \family sans
23659 interior
23660 \family default
23661  permite escoger los tipos 
23662 \family sans
23663 Parbox (
23664 \family default
23665
23666 \begin_inset Quotes eld
23667 \end_inset
23668
23669
23670 \family sans
23671 Párrafo
23672 \family default
23673
23674 \begin_inset Quotes erd
23675 \end_inset
23676
23677
23678 \family sans
23679 )
23680 \family default
23681  y 
23682 \family sans
23683 Minipágina
23684 \family default
23685 .
23686  
23687 \family sans
23688 Minipágina
23689 \family default
23690  es el predeterminado para nuevos cuadros y se explica en la sección\InsetSpace ~
23691
23692 \begin_inset LatexCommand ref
23693 reference "sec:Minipáginas"
23694
23695 \end_inset
23696
23697 ; el tipo 
23698 \family sans
23699 Parbox
23700 \family default
23701  se describe en la sección\InsetSpace ~
23702
23703 \begin_inset LatexCommand ref
23704 reference "sec:Cuadros-de-Párrafo"
23705
23706 \end_inset
23707
23708 .
23709 \end_layout
23710
23711 \begin_layout Standard
23712 Los cuadros no se numeran y por tanto no se pueden referenciar como los
23713  flotantes o las notas al pie.
23714 \end_layout
23715
23716 \begin_layout Standard
23717 \begin_inset Note Greyedout
23718 status open
23719
23720 \begin_layout Standard
23721
23722 \series bold
23723 Nota:
23724 \series default
23725  Debido a un error en LyX hay que insertar un espacio protegido detrás de
23726  un cuadro si se desea separar con un espacio el cuadro y el texto siguiente.
23727 \end_layout
23728
23729 \end_inset
23730
23731
23732 \end_layout
23733
23734 \begin_layout Standard
23735 \begin_inset Note Greyedout
23736 status open
23737
23738 \begin_layout Standard
23739
23740 \series bold
23741 Nota:
23742 \series default
23743  Los cuadros no deben ser el ítem en un entorno 
23744 \family sans
23745 Enumeración
23746 \family default
23747  o 
23748 \family sans
23749 Descripción
23750 \family default
23751 .
23752 \end_layout
23753
23754 \end_inset
23755
23756
23757 \end_layout
23758
23759 \begin_layout Standard
23760 \begin_inset Note Greyedout
23761 status open
23762
23763 \begin_layout Standard
23764
23765 \series bold
23766 Nota:
23767 \series default
23768  Por razones desconocidas sólo se puede poner el tipo 
23769 \family sans
23770 Cuadro\InsetSpace ~
23771 interior
23772 \family default
23773  en 
23774 \family sans
23775 Ninguno
23776 \family default
23777  cuando se emplea un cuadro enmarcado.
23778  Los cuadros sin ningún tipo de 
23779 \family sans
23780 Cuadro\InsetSpace ~
23781 interior
23782 \family default
23783  y sin marcos se explican en la sección\InsetSpace ~
23784
23785 \begin_inset LatexCommand ref
23786 reference "sec:Evitar-la-Partición-con-Guiones"
23787
23788 \end_inset
23789
23790 .
23791 \end_layout
23792
23793 \end_inset
23794
23795
23796 \end_layout
23797
23798 \begin_layout Section
23799 Diálogo Cuadros
23800 \begin_inset LatexCommand label
23801 name "sec:Diálogo-Cuadros"
23802
23803 \end_inset
23804
23805
23806 \begin_inset LatexCommand index
23807 name "Cuadros ! Diálogo"
23808
23809 \end_inset
23810
23811
23812 \begin_inset LatexCommand index
23813 name "Cuadros ! Alineación"
23814
23815 \end_inset
23816
23817
23818 \end_layout
23819
23820 \begin_layout Standard
23821 En el diálogo puedes ajustar la geometría del cuadro en los campos 
23822 \family sans
23823 Ancho
23824 \family default
23825  y 
23826 \family sans
23827 Alto
23828 \family default
23829 .
23830  Las unidades disponibles para la geometría se explican en la tabla\InsetSpace ~
23831
23832 \begin_inset LatexCommand ref
23833 reference "tab:Unidades"
23834
23835 \end_inset
23836
23837 .
23838  El campo 
23839 \family sans
23840 Alto
23841 \family default
23842  ofrece los siguientes tamaños adicionales:
23843 \end_layout
23844
23845 \begin_layout Description
23846 Profundidad Este es el texto plano 
23847 \begin_inset Quotes eld
23848 \end_inset
23849
23850 alto
23851 \begin_inset Quotes erd
23852 \end_inset
23853
23854 .
23855  Ignora la profundidad total cuando hay múltiples líneas de texto en el
23856  cuadro:
23857 \newline
23858
23859 \newline
23860
23861 \newline
23862
23863 \begin_inset Box Boxed
23864 position "c"
23865 hor_pos "c"
23866 has_inner_box 1
23867 inner_pos "c"
23868 use_parbox 0
23869 width "12col%"
23870 special "none"
23871 height "1in"
23872 height_special "depth"
23873 status open
23874
23875 \begin_layout Standard
23876 \align center
23877 Cuadro con altura establecida en 1\InsetSpace \thinspace{}
23878 Profundidad
23879 \end_layout
23880
23881 \end_inset
23882
23883
23884 \newline
23885
23886 \newline
23887
23888 \end_layout
23889
23890 \begin_layout Description
23891 Alto Es la altura del texto que está dentro del cuadro.
23892  Un valor de, p.\InsetSpace \thinspace{}
23893 e.\InsetSpace ~
23894 2 para este tamaño fijará la altura del cuadro a 2 veces
23895  la altura del texto: 
23896 \begin_inset Box Boxed
23897 position "c"
23898 hor_pos "c"
23899 has_inner_box 1
23900 inner_pos "c"
23901 use_parbox 0
23902 width "20col%"
23903 special "none"
23904 height "2in"
23905 height_special "height"
23906 status open
23907
23908 \begin_layout Standard
23909 \align center
23910 Cuadro con altura puesta en 2\InsetSpace \thinspace{}
23911 Alto
23912 \end_layout
23913
23914 \end_inset
23915
23916
23917 \end_layout
23918
23919 \begin_layout Description
23920 Alto\InsetSpace ~
23921 Total Esto es el Alto\InsetSpace \thinspace{}
23922 +\InsetSpace \thinspace{}
23923 Profundidad: 
23924 \begin_inset Box Boxed
23925 position "c"
23926 hor_pos "c"
23927 has_inner_box 1
23928 inner_pos "c"
23929 use_parbox 0
23930 width "20col%"
23931 special "none"
23932 height "1in"
23933 height_special "totalheight"
23934 status open
23935
23936 \begin_layout Standard
23937 \align center
23938 Cuadro con altura puesta a 1\InsetSpace \thinspace{}
23939 Alto\InsetSpace ~
23940 total
23941 \end_layout
23942
23943 \end_inset
23944
23945
23946 \end_layout
23947
23948 \begin_layout Description
23949 Ancho Esto determina al ancho del cuadro como altura: 
23950 \begin_inset Box Boxed
23951 position "c"
23952 hor_pos "c"
23953 has_inner_box 1
23954 inner_pos "c"
23955 use_parbox 0
23956 width "12col%"
23957 special "none"
23958 height "1in"
23959 height_special "width"
23960 status open
23961
23962 \begin_layout Standard
23963 \align center
23964 Cuadro con altura puesta en 1\InsetSpace \thinspace{}
23965 Ancho
23966 \end_layout
23967
23968 \end_inset
23969
23970
23971 \end_layout
23972
23973 \begin_layout Standard
23974 \begin_inset VSpace bigskip
23975 \end_inset
23976
23977 Si has elegido un 
23978 \family sans
23979 Cuadro\InsetSpace ~
23980 interior
23981 \family default
23982 , la alineación vertical del cuadro puede ser:
23983 \end_layout
23984
23985 \begin_layout Description
23986 Superior Ejemplo de línea de texto.
23987  
23988 \begin_inset Box Boxed
23989 position "t"
23990 hor_pos "c"
23991 has_inner_box 1
23992 inner_pos "c"
23993 use_parbox 0
23994 width "12col%"
23995 special "none"
23996 height "1in"
23997 height_special "totalheight"
23998 status open
23999
24000 \begin_layout Standard
24001 \align center
24002 Cuadro alineado arriba.
24003 \end_layout
24004
24005 \end_inset
24006
24007 \InsetSpace ~
24008 Ejemplo de línea de texto.
24009 \end_layout
24010
24011 \begin_layout Description
24012 Medio Ejemplo de línea de texto.
24013  
24014 \begin_inset Box Boxed
24015 position "c"
24016 hor_pos "c"
24017 has_inner_box 1
24018 inner_pos "c"
24019 use_parbox 0
24020 width "12col%"
24021 special "none"
24022 height "1in"
24023 height_special "totalheight"
24024 status open
24025
24026 \begin_layout Standard
24027 \align center
24028 Cuadro alineado en medio.
24029 \end_layout
24030
24031 \end_inset
24032
24033 \InsetSpace ~
24034 Ejemplo de línea de texto.
24035 \end_layout
24036
24037 \begin_layout Description
24038 Inferior Ejemplo de línea de texto.
24039  
24040 \begin_inset Box Boxed
24041 position "b"
24042 hor_pos "c"
24043 has_inner_box 1
24044 inner_pos "c"
24045 use_parbox 0
24046 width "12col%"
24047 special "none"
24048 height "1in"
24049 height_special "totalheight"
24050 status open
24051
24052 \begin_layout Standard
24053 \align center
24054 Cuadro alineado abajo.
24055 \end_layout
24056
24057 \end_inset
24058
24059 \InsetSpace ~
24060 Ejemplo de línea de texto.
24061 \end_layout
24062
24063 \begin_layout Standard
24064 La alineación horizontal del cuadro puede establecerse en el diálogo de
24065  configuración de párrafo de LyX si colocas el cuadro en su propio párrafo.
24066 \end_layout
24067
24068 \begin_layout Standard
24069 \begin_inset VSpace bigskip
24070 \end_inset
24071
24072 Si has escogido un 
24073 \family sans
24074 Cuadro\InsetSpace ~
24075 interior
24076 \family default
24077 , el contenido puede alinearse verticalmente a:
24078 \end_layout
24079
24080 \begin_layout Description
24081 Superior Ejemplo de línea de texto.
24082  
24083 \begin_inset Box Boxed
24084 position "c"
24085 hor_pos "c"
24086 has_inner_box 1
24087 inner_pos "t"
24088 use_parbox 0
24089 width "12col%"
24090 special "none"
24091 height "1.5in"
24092 height_special "totalheight"
24093 status open
24094
24095 \begin_layout Standard
24096 \align center
24097 Cuadro con texto alineado arriba.
24098 \end_layout
24099
24100 \end_inset
24101
24102 \InsetSpace ~
24103 Ejemplo de línea de texto.
24104 \end_layout
24105
24106 \begin_layout Description
24107 Medio Ejemplo de línea de texto.
24108  
24109 \begin_inset Box Boxed
24110 position "c"
24111 hor_pos "c"
24112 has_inner_box 1
24113 inner_pos "c"
24114 use_parbox 0
24115 width "12col%"
24116 special "none"
24117 height "1.5in"
24118 height_special "totalheight"
24119 status open
24120
24121 \begin_layout Standard
24122 \align center
24123 Cuadro con texto alineado en medio.
24124 \end_layout
24125
24126 \end_inset
24127
24128 \InsetSpace ~
24129 Ejemplo de línea de texto.
24130 \end_layout
24131
24132 \begin_layout Description
24133 Inferior Ejemplo de línea de texto.
24134  
24135 \begin_inset Box Boxed
24136 position "c"
24137 hor_pos "c"
24138 has_inner_box 1
24139 inner_pos "b"
24140 use_parbox 0
24141 width "12col%"
24142 special "none"
24143 height "1.5in"
24144 height_special "totalheight"
24145 status open
24146
24147 \begin_layout Standard
24148 \align center
24149 Cuadro con texto alineado abajo.
24150 \end_layout
24151
24152 \end_inset
24153
24154 \InsetSpace ~
24155 Ejemplo de línea de texto.
24156 \end_layout
24157
24158 \begin_layout Description
24159 Estirado Ejemplo de línea de texto.
24160  
24161 \begin_inset Box Boxed
24162 position "c"
24163 hor_pos "c"
24164 has_inner_box 1
24165 inner_pos "s"
24166 use_parbox 0
24167 width "12col%"
24168 special "none"
24169 height "1.5in"
24170 height_special "totalheight"
24171 status open
24172
24173 \begin_layout Standard
24174 \align center
24175 Este texto
24176 \end_layout
24177
24178 \begin_layout Standard
24179 \align center
24180 está
24181 \end_layout
24182
24183 \begin_layout Standard
24184 \align center
24185 estirado.
24186 \end_layout
24187
24188 \end_inset
24189
24190 \InsetSpace ~
24191 Ejemplo de línea de texto.
24192 \end_layout
24193
24194 \begin_layout Standard
24195 Para estirar el contenido debe tener más de un párrafo.
24196  En el ejemplo anterior cada línea de texto está en un párrafo propio.
24197 \end_layout
24198
24199 \begin_layout Standard
24200 \begin_inset VSpace bigskip
24201 \end_inset
24202
24203 Para estirar horizontalmente el contenido usa el diálogo de párrafos de
24204  LyX cuando hayas escogido un 
24205 \family sans
24206 Cuadro\InsetSpace ~
24207 interior
24208 \family default
24209 .
24210 \end_layout
24211
24212 \begin_layout Standard
24213 \align center
24214 \begin_inset Box Boxed
24215 position "c"
24216 hor_pos "c"
24217 has_inner_box 1
24218 inner_pos "s"
24219 use_parbox 0
24220 width "15col%"
24221 special "none"
24222 height "1.25in"
24223 height_special "totalheight"
24224 status open
24225
24226 \begin_layout Standard
24227 \align left
24228 Cuadro
24229 \end_layout
24230
24231 \begin_layout Standard
24232 \align center
24233 con texto
24234 \end_layout
24235
24236 \begin_layout Standard
24237 \align right
24238 estirado
24239 \end_layout
24240
24241 \end_inset
24242
24243
24244 \end_layout
24245
24246 \begin_layout Standard
24247 Si no has establecido un 
24248 \family sans
24249 Cuadro\InsetSpace ~
24250 interior
24251 \family default
24252 , puedes alinear horizontalmente el contenido del cuadro en el diálogo de
24253  cuadro.
24254 \end_layout
24255
24256 \begin_layout Standard
24257 \align center
24258 \begin_inset Box Boxed
24259 position "c"
24260 hor_pos "s"
24261 has_inner_box 0
24262 inner_pos "s"
24263 use_parbox 0
24264 width "90col%"
24265 special "none"
24266 height "1.25in"
24267 height_special "totalheight"
24268 status open
24269
24270 \begin_layout Standard
24271 \align left
24272 Texto estirado horizontalmente.
24273 \end_layout
24274
24275 \end_inset
24276
24277
24278 \end_layout
24279
24280 \begin_layout Section
24281 Cuadros Enmarcados
24282 \begin_inset LatexCommand label
24283 name "sec:Cuadros-Enmarcados"
24284
24285 \end_inset
24286
24287
24288 \begin_inset LatexCommand index
24289 name "Cuadros ! Marcos"
24290
24291 \end_inset
24292
24293
24294 \end_layout
24295
24296 \begin_layout Standard
24297 El estilo de marco del cuadro se puede determinar en la lista desplegable
24298  
24299 \family sans
24300 Tipo
24301 \family default
24302  del diálogo de cuadros.
24303  Son posibles los siguientes marcos:
24304 \end_layout
24305
24306 \begin_layout Description
24307 Marco\InsetSpace ~
24308 rectangular Dibuja un marco rectangular alrededor del cuadro.
24309  El grosor del marco depende de 
24310 \series bold
24311
24312 \backslash
24313 fboxrule
24314 \series default
24315 .
24316  
24317 \begin_inset Box Boxed
24318 position "c"
24319 hor_pos "c"
24320 has_inner_box 1
24321 inner_pos "c"
24322 use_parbox 0
24323 width "25col%"
24324 special "none"
24325 height "1in"
24326 height_special "totalheight"
24327 status open
24328
24329 \begin_layout Standard
24330 \align center
24331 Cuadro rectangular
24332 \end_layout
24333
24334 \end_inset
24335
24336
24337 \end_layout
24338
24339 \begin_layout Description
24340 Marco\InsetSpace ~
24341 ovalado,\InsetSpace ~
24342 fino Dibuja un marco ovalado cuya línea tiene un grosor de
24343  0.4\InsetSpace \thinspace{}
24344 pt.
24345  
24346 \begin_inset Box ovalbox
24347 position "c"
24348 hor_pos "c"
24349 has_inner_box 1
24350 inner_pos "c"
24351 use_parbox 0
24352 width "25col%"
24353 special "none"
24354 height "1in"
24355 height_special "totalheight"
24356 status open
24357
24358 \begin_layout Standard
24359 \align center
24360 Marco ovalado, fino
24361 \end_layout
24362
24363 \end_inset
24364
24365
24366 \end_layout
24367
24368 \begin_layout Description
24369 Marco\InsetSpace ~
24370 ovalado,\InsetSpace ~
24371 grueso Dibuja un marco ovalado cuya línea tiene un grosor de
24372  0.8\InsetSpace \thinspace{}
24373 pt.
24374  
24375 \begin_inset Box Ovalbox
24376 position "c"
24377 hor_pos "c"
24378 has_inner_box 1
24379 inner_pos "c"
24380 use_parbox 0
24381 width "30col%"
24382 special "none"
24383 height "1in"
24384 height_special "totalheight"
24385 status open
24386
24387 \begin_layout Standard
24388 \align center
24389 Cuadro ovalado, grueso
24390 \end_layout
24391
24392 \end_inset
24393
24394
24395 \end_layout
24396
24397 \begin_layout Description
24398 Marco\InsetSpace ~
24399 con\InsetSpace ~
24400 sombra Dibuja un cuadro rectangular con sombra alrededor del cuadro.
24401  El grosor de la línea tiene el tamaño dado por 
24402 \series bold
24403
24404 \backslash
24405 fboxrule
24406 \series default
24407 , la sombra tiene una anchura de 4\InsetSpace \thinspace{}
24408 pt.
24409  
24410 \begin_inset Box Shadowbox
24411 position "c"
24412 hor_pos "c"
24413 has_inner_box 1
24414 inner_pos "c"
24415 use_parbox 0
24416 width "20col%"
24417 special "none"
24418 height "1in"
24419 height_special "totalheight"
24420 status open
24421
24422 \begin_layout Standard
24423 \align center
24424 Marco sombrado
24425 \end_layout
24426
24427 \end_inset
24428
24429
24430 \end_layout
24431
24432 \begin_layout Description
24433 Marco\InsetSpace ~
24434 doble Dibuja un rectángulo de línea doble alrededor del cuadro.
24435  El grosor de la línea interior es 0.75\InsetSpace \thinspace{}
24436
24437 \series bold
24438
24439 \backslash
24440 fboxrule
24441 \series default
24442 , el de la línea exterior es 1.5\InsetSpace \thinspace{}
24443
24444 \series bold
24445
24446 \backslash
24447 fboxrule
24448 \series default
24449 .
24450  La distancia entre líneas es 1.5\InsetSpace \thinspace{}
24451
24452 \series bold
24453
24454 \backslash
24455 fboxrule
24456 \series default
24457 \InsetSpace \thinspace{}
24458 +\InsetSpace \thinspace{}
24459 0.5\InsetSpace \thinspace{}
24460 pt.
24461  
24462 \begin_inset Box Doublebox
24463 position "c"
24464 hor_pos "c"
24465 has_inner_box 1
24466 inner_pos "c"
24467 use_parbox 0
24468 width "20col%"
24469 special "none"
24470 height "1in"
24471 height_special "totalheight"
24472 status open
24473
24474 \begin_layout Standard
24475 \align center
24476 Marco doble
24477 \end_layout
24478
24479 \end_inset
24480
24481
24482 \end_layout
24483
24484 \begin_layout Standard
24485 \begin_inset VSpace bigskip
24486 \end_inset
24487
24488 La etiqueta del recuadro en LyX cambiará según el estilo de marco elegido.
24489  Para poder utilizar los distintos marcos, debe estar instalado el paquete
24490  LaTeX 
24491 \series bold
24492 fancybox
24493 \series default
24494
24495 \begin_inset LatexCommand index
24496 name "LaTeX-paquetes ! fancybox"
24497
24498 \end_inset
24499
24500 .
24501 \end_layout
24502
24503 \begin_layout Standard
24504 \begin_inset VSpace bigskip
24505 \end_inset
24506
24507 El valor predeterminado por 
24508 \series bold
24509
24510 \backslash
24511 fboxrule
24512 \series default
24513  es 0.4\InsetSpace \thinspace{}
24514 pt.
24515  Puede cambiarse con el siguiente comando en ERT, p.\InsetSpace \thinspace{}
24516 e.\InsetSpace ~
24517 a\InsetSpace ~
24518 2\InsetSpace \thinspace{}
24519 pt:
24520 \end_layout
24521
24522 \begin_layout Standard
24523
24524 \series bold
24525
24526 \backslash
24527 setlength{
24528 \backslash
24529 fboxrule}{2pt}
24530 \end_layout
24531
24532 \begin_layout Standard
24533 \begin_inset ERT
24534 status collapsed
24535
24536 \begin_layout Standard
24537
24538
24539 \backslash
24540 setlength{
24541 \backslash
24542 fboxrule}{2pt}
24543 \end_layout
24544
24545 \end_inset
24546
24547
24548 \begin_inset Box Boxed
24549 position "c"
24550 hor_pos "c"
24551 has_inner_box 1
24552 inner_pos "c"
24553 use_parbox 0
24554 width "25col%"
24555 special "none"
24556 height "1in"
24557 height_special "totalheight"
24558 status open
24559
24560 \begin_layout Standard
24561 \align center
24562 Cuadro rectangular con 
24563 \series bold
24564
24565 \backslash
24566 fboxrule
24567 \series default
24568 \InsetSpace \thinspace{}
24569 =\InsetSpace \thinspace{}
24570 2\InsetSpace \thinspace{}
24571 pt
24572 \end_layout
24573
24574 \end_inset
24575
24576
24577 \begin_inset ERT
24578 status collapsed
24579
24580 \begin_layout Standard
24581
24582
24583 \backslash
24584 setlength{
24585 \backslash
24586 fboxrule}{0.4pt}
24587 \end_layout
24588
24589 \end_inset
24590
24591
24592 \end_layout
24593
24594 \begin_layout Standard
24595 \begin_inset VSpace bigskip
24596 \end_inset
24597
24598 El espacio entre el marco y el contenido del cuadro es 3\InsetSpace \thinspace{}
24599 pt por defecto para
24600  todos los estilos.
24601  Se puede cambiar mediante la longitud 
24602 \series bold
24603
24604 \backslash
24605 fboxsep
24606 \series default
24607 .
24608  Por ejemplo el comando
24609 \end_layout
24610
24611 \begin_layout Standard
24612
24613 \series bold
24614
24615 \backslash
24616 setlength{
24617 \backslash
24618 fboxsep}{10pt}
24619 \end_layout
24620
24621 \begin_layout Standard
24622 determina un valor de 10\InsetSpace \thinspace{}
24623 pt, como en el siguiente cuadro:
24624 \end_layout
24625
24626 \begin_layout Standard
24627 \begin_inset ERT
24628 status collapsed
24629
24630 \begin_layout Standard
24631
24632
24633 \backslash
24634 setlength{
24635 \backslash
24636 fboxsep}{10pt}
24637 \end_layout
24638
24639 \end_inset
24640
24641
24642 \begin_inset Box Boxed
24643 position "c"
24644 hor_pos "c"
24645 has_inner_box 1
24646 inner_pos "c"
24647 use_parbox 0
24648 width "25col%"
24649 special "none"
24650 height "1in"
24651 height_special "totalheight"
24652 status open
24653
24654 \begin_layout Standard
24655 \align center
24656 Cuadro rectangular con 
24657 \series bold
24658
24659 \backslash
24660 fboxsep
24661 \series default
24662 \InsetSpace \thinspace{}
24663 =\InsetSpace \thinspace{}
24664 10\InsetSpace \thinspace{}
24665 pt
24666 \end_layout
24667
24668 \end_inset
24669
24670
24671 \begin_inset ERT
24672 status collapsed
24673
24674 \begin_layout Standard
24675
24676
24677 \backslash
24678 setlength{
24679 \backslash
24680 fboxsep}{3pt}
24681 \end_layout
24682
24683 \end_inset
24684
24685
24686 \end_layout
24687
24688 \begin_layout Standard
24689 \begin_inset VSpace bigskip
24690 \end_inset
24691
24692 El diámetro de las esquinas de los cuadros ovalados se puede modificar con
24693  el comando 
24694 \series bold
24695
24696 \backslash
24697 cornersize
24698 \series default
24699 .
24700  El comando
24701 \end_layout
24702
24703 \begin_layout Standard
24704
24705 \series bold
24706
24707 \backslash
24708 cornersize*{1cm}
24709 \end_layout
24710
24711 \begin_layout Standard
24712 establece un diámetro de 1\InsetSpace \thinspace{}
24713 cm.
24714  El comando
24715 \end_layout
24716
24717 \begin_layout Standard
24718
24719 \series bold
24720
24721 \backslash
24722 cornersize{num}
24723 \end_layout
24724
24725 \begin_layout Standard
24726 fija el diámetro en 
24727 \family sans
24728 num\InsetSpace \thinspace{}
24729 ×\InsetSpace \thinspace{}
24730 mínimo
24731 \family default
24732  
24733 \family sans
24734 (ancho y alto del cuadro)
24735 \family default
24736 .
24737  Por defecto es 
24738 \series bold
24739
24740 \backslash
24741 cornersize{0.5}
24742 \series default
24743 .
24744 \end_layout
24745
24746 \begin_layout Standard
24747 \begin_inset ERT
24748 status collapsed
24749
24750 \begin_layout Standard
24751
24752
24753 \backslash
24754 cornersize*{1.5cm}
24755 \end_layout
24756
24757 \end_inset
24758
24759
24760 \begin_inset Box Ovalbox
24761 position "c"
24762 hor_pos "c"
24763 has_inner_box 1
24764 inner_pos "c"
24765 use_parbox 0
24766 width "28col%"
24767 special "none"
24768 height "1in"
24769 height_special "totalheight"
24770 status open
24771
24772 \begin_layout Standard
24773 \align center
24774 Cuadro ovalado con 
24775 \series bold
24776
24777 \backslash
24778 cornersize
24779 \series default
24780 \InsetSpace \thinspace{}
24781 =\InsetSpace \thinspace{}
24782 1.5\InsetSpace \thinspace{}
24783 cm
24784 \end_layout
24785
24786 \end_inset
24787
24788
24789 \begin_inset ERT
24790 status collapsed
24791
24792 \begin_layout Standard
24793
24794
24795 \backslash
24796 cornersize{0.5}
24797 \end_layout
24798
24799 \end_inset
24800
24801
24802 \end_layout
24803
24804 \begin_layout Standard
24805 \begin_inset VSpace bigskip
24806 \end_inset
24807
24808 El tamaño de la sombra se puede ajustar cambiando la longitud 
24809 \series bold
24810
24811 \backslash
24812 shadowsize
24813 \series default
24814 .
24815  Este comando la ajusta a 2\InsetSpace \thinspace{}
24816 pt en el cuadro siguiente:
24817 \end_layout
24818
24819 \begin_layout Standard
24820
24821 \series bold
24822
24823 \backslash
24824 setlength{
24825 \backslash
24826 shadowsize}{2pt}
24827 \end_layout
24828
24829 \begin_layout Standard
24830 \begin_inset ERT
24831 status collapsed
24832
24833 \begin_layout Standard
24834
24835
24836 \backslash
24837 setlength{
24838 \backslash
24839 shadowsize}{2pt}
24840 \end_layout
24841
24842 \end_inset
24843
24844
24845 \begin_inset Box Shadowbox
24846 position "c"
24847 hor_pos "c"
24848 has_inner_box 1
24849 inner_pos "c"
24850 use_parbox 0
24851 width "28col%"
24852 special "none"
24853 height "1in"
24854 height_special "totalheight"
24855 status open
24856
24857 \begin_layout Standard
24858 \align center
24859 Cuadro sombreado con 
24860 \series bold
24861
24862 \backslash
24863 shadowsize
24864 \series default
24865 \InsetSpace \thinspace{}
24866 =\InsetSpace \thinspace{}
24867 2\InsetSpace \thinspace{}
24868 pt
24869 \end_layout
24870
24871 \end_inset
24872
24873
24874 \begin_inset ERT
24875 status collapsed
24876
24877 \begin_layout Standard
24878
24879
24880 \backslash
24881 setlength{
24882 \backslash
24883 shadowsize}{4pt}
24884 \end_layout
24885
24886 \end_inset
24887
24888
24889 \end_layout
24890
24891 \begin_layout Standard
24892 \begin_inset VSpace bigskip
24893 \end_inset
24894
24895 Los cambios en las dimensiones son válidos para todos los cuadros que siguen
24896  a los comandos.
24897 \end_layout
24898
24899 \begin_layout Section
24900 Minipáginas
24901 \begin_inset LatexCommand label
24902 name "sec:Minipáginas"
24903
24904 \end_inset
24905
24906
24907 \begin_inset LatexCommand index
24908 name "Cuadros ! Minipáginas"
24909
24910 \end_inset
24911
24912
24913 \end_layout
24914
24915 \begin_layout Standard
24916 Las minipáginas son tratadas por LaTeX como páginas dentro de páginas y
24917  por tanto pueden tener, por ejemplo, sus propias notas al pie.
24918 \end_layout
24919
24920 \begin_layout Standard
24921 Las minipáginas son útiles para escribir documentos con distintos lenguajes.
24922 \end_layout
24923
24924 \begin_layout Standard
24925 A continuación hay dos ejemplos de minipáginas adosadas.
24926  Su anchura está puesta en 45\InsetSpace \thinspace{}
24927 col% y separadas por un relleno horizontal,
24928  insertado vía el menú 
24929 \family sans
24930 Insertar\SpecialChar \menuseparator
24931 Formato\InsetSpace ~
24932
24933 \family default
24934 es
24935 \family sans
24936 pecial\InsetSpace ~
24937 \SpecialChar \menuseparator
24938 Relleno\InsetSpace ~
24939 horizontal
24940 \family default
24941 .
24942 \end_layout
24943
24944 \begin_layout Standard
24945 \begin_inset Box Frameless
24946 position "t"
24947 hor_pos "c"
24948 has_inner_box 1
24949 inner_pos "c"
24950 use_parbox 0
24951 width "45col%"
24952 special "none"
24953 height "1in"
24954 height_special "totalheight"
24955 status open
24956
24957 \begin_layout Standard
24958
24959 \lang german
24960 Dies ist ein deutscher Text.
24961  Dies ist ein deutscher Text.
24962  Dies ist ein deutscher Text.
24963  Dies ist ein deutscher Text.
24964  Dies ist ein deutscher Text.
24965  Dies ist ein deutscher Text.
24966  Dies ist ein deutscher Text.
24967  Dies ist ein deutscher Text.
24968  Dies ist ein deutscher Text.
24969  Dies ist ein deutscher Text.
24970  Dies ist ein deutscher Text.
24971  Dies ist ein deutscher Text.
24972  Dies ist ein deutscher Text
24973 \begin_inset Foot
24974 status collapsed
24975
24976 \begin_layout Standard
24977
24978 \lang german
24979 Dies ist eine deutsche Fußnote.
24980 \end_layout
24981
24982 \end_inset
24983
24984 .
24985  Dies ist ein deutscher Text.
24986  Dies ist ein deutscher Text.
24987 \end_layout
24988
24989 \end_inset
24990
24991
24992 \hfill
24993
24994 \begin_inset Box Frameless
24995 position "t"
24996 hor_pos "c"
24997 has_inner_box 1
24998 inner_pos "c"
24999 use_parbox 0
25000 width "45col%"
25001 special "none"
25002 height "1in"
25003 height_special "totalheight"
25004 status open
25005
25006 \begin_layout Standard
25007 This is an English Text.
25008  This is an English Text.
25009  This is an English Text.
25010  This is an English Text.
25011  This is an English Text.
25012  This is an English Text.
25013  This is an English Text.
25014  This is an English Text.
25015  This is an English Text.
25016  This is an English Text.
25017  This is an English Text.
25018  This is an English Text.
25019  This is an English Text.
25020  This is an English Text.
25021  This is an English Text.
25022  This is an English Text.
25023 \begin_inset Foot
25024 status collapsed
25025
25026 \begin_layout Standard
25027 This is an English footnote.
25028 \end_layout
25029
25030 \end_inset
25031
25032  This is an English Text.
25033  
25034 \end_layout
25035
25036 \end_inset
25037
25038
25039 \end_layout
25040
25041 \begin_layout Standard
25042 \begin_inset VSpace bigskip
25043 \end_inset
25044
25045 Otra aplicación de los cuadros son las notas a pie en tablas.
25046  Debido a una restricción de LaTeX las notas a pie en tablas no aparecen
25047  al final de la página actual.
25048  Pero si pones la tabla con notas al pie en una minipágina, las notas aparecen
25049  en la parte inferior, ordenadas con letras.
25050  La ordenación de las notas al pie se restablece en cada minipágina pero
25051  no fuera de las minipáginas.
25052 \end_layout
25053
25054 \begin_layout Standard
25055 La nota al pie en esta tabla no aparece: 
25056 \begin_inset Tabular
25057 <lyxtabular version="3" rows="3" columns="4">
25058 <features>
25059 <column alignment="center" valignment="top" leftline="true" width="0pt">
25060 <column alignment="center" valignment="top" leftline="true" width="0pt">
25061 <column alignment="center" valignment="top" leftline="true" width="0pt">
25062 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25063 <row topline="true">
25064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25065 \begin_inset Text
25066
25067 \begin_layout Standard
25068 1
25069 \end_layout
25070
25071 \end_inset
25072 </cell>
25073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25074 \begin_inset Text
25075
25076 \begin_layout Standard
25077 2
25078 \end_layout
25079
25080 \end_inset
25081 </cell>
25082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25083 \begin_inset Text
25084
25085 \begin_layout Standard
25086 3
25087 \begin_inset Foot
25088 status open
25089
25090 \begin_layout Standard
25091 Nota al pie en una tabla.
25092 \end_layout
25093
25094 \end_inset
25095
25096
25097 \end_layout
25098
25099 \end_inset
25100 </cell>
25101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25102 \begin_inset Text
25103
25104 \begin_layout Standard
25105 4
25106 \end_layout
25107
25108 \end_inset
25109 </cell>
25110 </row>
25111 <row topline="true">
25112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25113 \begin_inset Text
25114
25115 \begin_layout Standard
25116 a
25117 \end_layout
25118
25119 \end_inset
25120 </cell>
25121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25122 \begin_inset Text
25123
25124 \begin_layout Standard
25125 b
25126 \end_layout
25127
25128 \end_inset
25129 </cell>
25130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25131 \begin_inset Text
25132
25133 \begin_layout Standard
25134 c
25135 \end_layout
25136
25137 \end_inset
25138 </cell>
25139 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25140 \begin_inset Text
25141
25142 \begin_layout Standard
25143 d
25144 \end_layout
25145
25146 \end_inset
25147 </cell>
25148 </row>
25149 <row topline="true" bottomline="true">
25150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25151 \begin_inset Text
25152
25153 \begin_layout Standard
25154 e
25155 \end_layout
25156
25157 \end_inset
25158 </cell>
25159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25160 \begin_inset Text
25161
25162 \begin_layout Standard
25163 f
25164 \end_layout
25165
25166 \end_inset
25167 </cell>
25168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25169 \begin_inset Text
25170
25171 \begin_layout Standard
25172 g
25173 \end_layout
25174
25175 \end_inset
25176 </cell>
25177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25178 \begin_inset Text
25179
25180 \begin_layout Standard
25181 h
25182 \end_layout
25183
25184 \end_inset
25185 </cell>
25186 </row>
25187 </lyxtabular>
25188
25189 \end_inset
25190
25191
25192 \end_layout
25193
25194 \begin_layout Standard
25195 \align center
25196 \begin_inset Box Frameless
25197 position "t"
25198 hor_pos "c"
25199 has_inner_box 1
25200 inner_pos "c"
25201 use_parbox 0
25202 width "30col%"
25203 special "none"
25204 height "1in"
25205 height_special "totalheight"
25206 status open
25207
25208 \begin_layout Standard
25209 \align center
25210 \begin_inset Tabular
25211 <lyxtabular version="3" rows="3" columns="4">
25212 <features>
25213 <column alignment="center" valignment="top" leftline="true" width="0pt">
25214 <column alignment="center" valignment="top" leftline="true" width="0pt">
25215 <column alignment="center" valignment="top" leftline="true" width="0pt">
25216 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25217 <row topline="true">
25218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25219 \begin_inset Text
25220
25221 \begin_layout Standard
25222 1
25223 \end_layout
25224
25225 \end_inset
25226 </cell>
25227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25228 \begin_inset Text
25229
25230 \begin_layout Standard
25231 2
25232 \end_layout
25233
25234 \end_inset
25235 </cell>
25236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25237 \begin_inset Text
25238
25239 \begin_layout Standard
25240 3
25241 \begin_inset Foot
25242 status open
25243
25244 \begin_layout Standard
25245 Nota al pie en una tabla..
25246 \end_layout
25247
25248 \end_inset
25249
25250
25251 \end_layout
25252
25253 \end_inset
25254 </cell>
25255 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25256 \begin_inset Text
25257
25258 \begin_layout Standard
25259 4
25260 \end_layout
25261
25262 \end_inset
25263 </cell>
25264 </row>
25265 <row topline="true">
25266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25267 \begin_inset Text
25268
25269 \begin_layout Standard
25270 a
25271 \end_layout
25272
25273 \end_inset
25274 </cell>
25275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25276 \begin_inset Text
25277
25278 \begin_layout Standard
25279 b
25280 \end_layout
25281
25282 \end_inset
25283 </cell>
25284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25285 \begin_inset Text
25286
25287 \begin_layout Standard
25288 c
25289 \end_layout
25290
25291 \end_inset
25292 </cell>
25293 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25294 \begin_inset Text
25295
25296 \begin_layout Standard
25297 d
25298 \end_layout
25299
25300 \end_inset
25301 </cell>
25302 </row>
25303 <row topline="true" bottomline="true">
25304 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25305 \begin_inset Text
25306
25307 \begin_layout Standard
25308 e
25309 \end_layout
25310
25311 \end_inset
25312 </cell>
25313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25314 \begin_inset Text
25315
25316 \begin_layout Standard
25317 f
25318 \end_layout
25319
25320 \end_inset
25321 </cell>
25322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25323 \begin_inset Text
25324
25325 \begin_layout Standard
25326 g
25327 \end_layout
25328
25329 \end_inset
25330 </cell>
25331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25332 \begin_inset Text
25333
25334 \begin_layout Standard
25335 h
25336 \end_layout
25337
25338 \end_inset
25339 </cell>
25340 </row>
25341 </lyxtabular>
25342
25343 \end_inset
25344
25345
25346 \end_layout
25347
25348 \end_inset
25349
25350
25351 \end_layout
25352
25353 \begin_layout Standard
25354 \begin_inset VSpace bigskip
25355 \end_inset
25356
25357 La configuración global de párrafos se ignora en las minipáginas.
25358  Esto significa que en las mismas no habrá espacio entre párrafos aunque
25359  pongas p.\InsetSpace \thinspace{}
25360 e.\InsetSpace ~
25361
25362 \family sans
25363 Salto\InsetSpace ~
25364 medio
25365 \family default
25366  en la configuración del documento.
25367 \end_layout
25368
25369 \begin_layout Standard
25370 Las minipáginas también sirven para poner un color de fondo para partes
25371  de texto, ver sección\InsetSpace ~
25372
25373 \begin_inset LatexCommand ref
25374 reference "sub:Color-en-Párrafos"
25375
25376 \end_inset
25377
25378 .
25379 \end_layout
25380
25381 \begin_layout Standard
25382 \begin_inset Note Greyedout
25383 status open
25384
25385 \begin_layout Standard
25386
25387 \series bold
25388 Nota:
25389 \series default
25390  No puedes tener flotantes o notas al margen en minipáginas pero sí puedes
25391  tener minipáginas en tablas, flotantes, y otros cuadros.
25392 \end_layout
25393
25394 \end_inset
25395
25396
25397 \end_layout
25398
25399 \begin_layout Section
25400 Cuadros de Párrafo
25401 \begin_inset LatexCommand label
25402 name "sec:Cuadros-de-Párrafo"
25403
25404 \end_inset
25405
25406
25407 \begin_inset LatexCommand index
25408 name "Cuadros ! de Párrafo"
25409
25410 \end_inset
25411
25412
25413 \end_layout
25414
25415 \begin_layout Standard
25416 Los cuadros de párrafo son similares a las minipáginas con la diferencia
25417  de que no pueden contener notas al pie.
25418   La diferencia principal es que las minipáginas no son verdaderos cuadros
25419  sino entornos de LaTeX.
25420 \end_layout
25421
25422 \begin_layout Standard
25423 \align center
25424 \begin_inset Box Frameless
25425 position "t"
25426 hor_pos "c"
25427 has_inner_box 1
25428 inner_pos "t"
25429 use_parbox 1
25430 width "33col%"
25431 special "none"
25432 height "1in"
25433 height_special "totalheight"
25434 status collapsed
25435
25436 \begin_layout Standard
25437 Texto en un cuadro de párrafo.
25438  Texto en un cuadro de párrafo.
25439  Esta nota no aparece:
25440 \begin_inset Foot
25441 status open
25442
25443 \begin_layout Standard
25444 Esta es una nota en cuadro de párrafo y por eso no aparecerá.
25445 \end_layout
25446
25447 \end_inset
25448
25449
25450 \end_layout
25451
25452 \end_inset
25453
25454
25455 \end_layout
25456
25457 \begin_layout Section
25458 Cuadros para Palabras y Caracteres
25459 \begin_inset LatexCommand index
25460 name "Cuadros ! para Palabras y Caracteres"
25461
25462 \end_inset
25463
25464
25465 \end_layout
25466
25467 \begin_layout Subsection
25468 Evitar la Partición con Guiones
25469 \begin_inset LatexCommand label
25470 name "sec:Evitar-la-Partición-con-Guiones"
25471
25472 \end_inset
25473
25474
25475 \begin_inset LatexCommand index
25476 name "Cuadros ! Prevenir Partición con Guiones"
25477
25478 \end_inset
25479
25480
25481 \end_layout
25482
25483 \begin_layout Standard
25484 Hay un tipo especial de cuadro para impedir que una palabra sea partida
25485  con guión.
25486 \newline
25487 He aquí un ejemplo:
25488 \end_layout
25489
25490 \begin_layout Standard
25491 Esta línea es un ejemplo para mostrar cómo evitar la división de p.\InsetSpace \thinspace{}
25492 e.\InsetSpace ~
25493 estalarguísim
25494 apalabra.
25495 \end_layout
25496
25497 \begin_layout Standard
25498 Para evitar su división usa el comando
25499 \end_layout
25500
25501 \begin_layout Standard
25502
25503 \series bold
25504
25505 \backslash
25506 mbox{
25507 \end_layout
25508
25509 \begin_layout Standard
25510 en ERT antes de la palabra.
25511  Tras ella inserta una llave de cierre 
25512 \begin_inset Quotes eld
25513 \end_inset
25514
25515
25516 \series bold
25517 }
25518 \series default
25519
25520 \begin_inset Quotes erd
25521 \end_inset
25522
25523  en ERT.
25524 \begin_inset ERT
25525 status collapsed
25526
25527 \begin_layout Standard
25528
25529
25530 \backslash
25531 pagebreak 
25532 \end_layout
25533
25534 \end_inset
25535
25536
25537 \end_layout
25538
25539 \begin_layout Standard
25540 Este es el resultado:
25541 \end_layout
25542
25543 \begin_layout Standard
25544 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
25545 e.\InsetSpace ~
25546
25547 \begin_inset ERT
25548 status collapsed
25549
25550 \begin_layout Standard
25551
25552
25553 \backslash
25554 mbox{
25555 \end_layout
25556
25557 \end_inset
25558
25559 estalarguísimapalabra.
25560 \begin_inset ERT
25561 status collapsed
25562
25563 \begin_layout Standard
25564
25565 }
25566 \end_layout
25567
25568 \end_inset
25569
25570
25571 \end_layout
25572
25573 \begin_layout Standard
25574 Por supuesto, la palabra sobresale del margen.
25575  Para evitarlo añade, con el menú 
25576 \family sans
25577 Insertar\SpecialChar \menuseparator
25578 Formato\InsetSpace ~
25579 especial\InsetSpace ~
25580 \SpecialChar \menuseparator
25581 Salto\InsetSpace ~
25582 de\InsetSpace ~
25583
25584 \family default
25585 línea (atajo 
25586 \series bold
25587 Ctrl-Return
25588 \series default
25589 ), un salto de línea antes de la palabra:
25590 \end_layout
25591
25592 \begin_layout Standard
25593 Esta línea es un ejemplo para mostrar cómo prevenir la división de p.\InsetSpace \thinspace{}
25594 e.\InsetSpace ~
25595
25596 \newline
25597
25598 \begin_inset ERT
25599 status collapsed
25600
25601 \begin_layout Standard
25602
25603
25604 \backslash
25605 mbox{
25606 \end_layout
25607
25608 \end_inset
25609
25610 estalarguísimapalabra.
25611 \begin_inset ERT
25612 status collapsed
25613
25614 \begin_layout Standard
25615
25616 }
25617 \end_layout
25618
25619 \end_inset
25620
25621
25622 \end_layout
25623
25624 \begin_layout Subsection
25625 Alineación Vertical
25626 \begin_inset LatexCommand label
25627 name "sub:Alineación-Vertical"
25628
25629 \end_inset
25630
25631
25632 \begin_inset LatexCommand index
25633 name "Cuadros ! para Alineación Vertical"
25634
25635 \end_inset
25636
25637
25638 \end_layout
25639
25640 \begin_layout Standard
25641 Con ayuda del comando 
25642 \series bold
25643
25644 \backslash
25645 raisebox
25646 \series default
25647  puedes alinear verticalmente con el texto circundante palabras o caracteres.
25648  
25649 \series bold
25650
25651 \backslash
25652 raisebox
25653 \series default
25654  se utiliza según el esquema:
25655 \end_layout
25656
25657 \begin_layout Standard
25658
25659 \series bold
25660
25661 \backslash
25662 raisebox{elevación}[altura][profundidad]{contenido del cuadro}
25663 \end_layout
25664
25665 \begin_layout Standard
25666 La elevación puede ser un valor positivo para subir el cuadro o negativo
25667  para bajarlo.
25668 \end_layout
25669
25670 \begin_layout Standard
25671 Para alinear una palabra, p.\InsetSpace \thinspace{}
25672 e\InsetSpace ~
25673
25674 \begin_inset Quotes eld
25675 \end_inset
25676
25677 prevención
25678 \begin_inset Quotes erd
25679 \end_inset
25680
25681  para que la parte inferior de la letra más 
25682 \begin_inset Quotes eld
25683 \end_inset
25684
25685 profunda
25686 \begin_inset Quotes erd
25687 \end_inset
25688
25689  
25690 \begin_inset Quotes eld
25691 \end_inset
25692
25693 p
25694 \begin_inset Quotes erd
25695 \end_inset
25696
25697  esté en la línea de base, inserta el comando
25698 \end_layout
25699
25700 \begin_layout Standard
25701
25702 \series bold
25703
25704 \backslash
25705 raisebox{
25706 \backslash
25707 depth}{
25708 \end_layout
25709
25710 \begin_layout Standard
25711 en ERT antes de la palabra.
25712  Detrás de la palabra inserta una llave de cierre 
25713 \begin_inset Quotes eld
25714 \end_inset
25715
25716
25717 \series bold
25718 }
25719 \series default
25720
25721 \begin_inset Quotes erd
25722 \end_inset
25723
25724  en ERT.
25725 \newline
25726 Este es el resultado:
25727 \end_layout
25728
25729 \begin_layout Standard
25730 Esto es una línea de texto con la palabra 
25731 \begin_inset ERT
25732 status open
25733
25734 \begin_layout Standard
25735
25736
25737 \backslash
25738 raisebox{
25739 \backslash
25740 depth}{
25741 \end_layout
25742
25743 \end_inset
25744
25745
25746 \begin_inset Quotes eld
25747 \end_inset
25748
25749 prevención
25750 \begin_inset Quotes erd
25751 \end_inset
25752
25753
25754 \begin_inset ERT
25755 status collapsed
25756
25757 \begin_layout Standard
25758
25759 }
25760 \end_layout
25761
25762 \end_inset
25763
25764  elevada.
25765 \end_layout
25766
25767 \begin_layout Standard
25768 \begin_inset VSpace bigskip
25769 \end_inset
25770
25771 Al subir o bajar caracteres en una línea, se modifica el espacio entre líneas:
25772 \end_layout
25773
25774 \begin_layout Standard
25775 Esto es una línea de texto con la palabra 
25776 \begin_inset ERT
25777 status open
25778
25779 \begin_layout Standard
25780
25781
25782 \backslash
25783 raisebox{-
25784 \backslash
25785 depth}{
25786 \end_layout
25787
25788 \end_inset
25789
25790
25791 \begin_inset Quotes eld
25792 \end_inset
25793
25794 prevención
25795 \begin_inset Quotes erd
25796 \end_inset
25797
25798
25799 \begin_inset ERT
25800 status collapsed
25801
25802 \begin_layout Standard
25803
25804 }
25805 \end_layout
25806
25807 \end_inset
25808
25809  como palabra más baja.
25810 \newline
25811 Esto es una línea de texto con la palabra 
25812 \begin_inset ERT
25813 status collapsed
25814
25815 \begin_layout Standard
25816
25817
25818 \backslash
25819 raisebox{0.5cm}{
25820 \end_layout
25821
25822 \end_inset
25823
25824
25825 \begin_inset Quotes eld
25826 \end_inset
25827
25828 testigo
25829 \begin_inset Quotes erd
25830 \end_inset
25831
25832
25833 \begin_inset ERT
25834 status collapsed
25835
25836 \begin_layout Standard
25837
25838 }
25839 \end_layout
25840
25841 \end_inset
25842
25843  como palabra más alta.
25844 \end_layout
25845
25846 \begin_layout Standard
25847 Si por alguna razón quieres impedir esto, pon la altura de cuadro a cero.
25848  Por ejemplo
25849 \end_layout
25850
25851 \begin_layout Standard
25852
25853 \series bold
25854
25855 \backslash
25856 raisebox{-
25857 \backslash
25858 depth}[0pt]{
25859 \end_layout
25860
25861 \begin_layout Standard
25862 Esto es una línea de texto con la palabra 
25863 \begin_inset ERT
25864 status collapsed
25865
25866 \begin_layout Standard
25867
25868
25869 \backslash
25870 raisebox{-
25871 \backslash
25872 depth}[0pt]{
25873 \end_layout
25874
25875 \end_inset
25876
25877
25878 \begin_inset Quotes eld
25879 \end_inset
25880
25881 prevención
25882 \begin_inset Quotes erd
25883 \end_inset
25884
25885
25886 \begin_inset ERT
25887 status collapsed
25888
25889 \begin_layout Standard
25890
25891 }
25892 \end_layout
25893
25894 \end_inset
25895
25896  como palabra más baja.
25897 \newline
25898 Esto es una línea de texto con la palabra 
25899 \begin_inset ERT
25900 status collapsed
25901
25902 \begin_layout Standard
25903
25904
25905 \backslash
25906 raisebox{0.5cm}[0pt]{
25907 \end_layout
25908
25909 \end_inset
25910
25911
25912 \begin_inset Quotes eld
25913 \end_inset
25914
25915 testigo
25916 \begin_inset Quotes erd
25917 \end_inset
25918
25919
25920 \begin_inset ERT
25921 status collapsed
25922
25923 \begin_layout Standard
25924
25925 }
25926 \end_layout
25927
25928 \end_inset
25929
25930  como palabra más alta.
25931 \end_layout
25932
25933 \begin_layout Section
25934 Cuadros Coloreados
25935 \begin_inset LatexCommand label
25936 name "sec:Cuadros-Coloreados"
25937
25938 \end_inset
25939
25940
25941 \begin_inset LatexCommand index
25942 name "Cuadros ! Color"
25943
25944 \end_inset
25945
25946
25947 \end_layout
25948
25949 \begin_layout Subsection
25950 Color en Texto
25951 \begin_inset LatexCommand index
25952 name "Color ! en Texto"
25953
25954 \end_inset
25955
25956
25957 \end_layout
25958
25959 \begin_layout Standard
25960 Para colorear el fondo de un texto, éste debe ponerse en un cuadro coloreado.
25961  Esto requiere cargar el paquete LaTeX 
25962 \series bold
25963 color
25964 \series default
25965
25966 \begin_inset LatexCommand index
25967 name "LaTeX-paquetes ! color"
25968
25969 \end_inset
25970
25971  en el preámbulo del documento con
25972 \end_layout
25973
25974 \begin_layout Standard
25975
25976 \series bold
25977
25978 \backslash
25979 @ifundef\SpecialChar \textcompwordmark{}
25980 ined{textcolor}
25981 \newline
25982
25983 \begin_inset ERT
25984 status collapsed
25985
25986 \begin_layout Standard
25987
25988
25989 \backslash
25990 hphantom{ }
25991 \end_layout
25992
25993 \end_inset
25994
25995 {
25996 \backslash
25997 usepackage{color}}{}
25998 \end_layout
25999
26000 \begin_layout Standard
26001 LyX cargará automáticamente el paquete 
26002 \series bold
26003 color
26004 \series default
26005  cuando colorees texto
26006 \begin_inset Foot
26007 status collapsed
26008
26009 \begin_layout Standard
26010 Para evitar cargarlo dos veces se usa el comando 
26011 \series bold
26012
26013 \backslash
26014 @ifundef\SpecialChar \textcompwordmark{}
26015 ined
26016 \series default
26017 .
26018 \end_layout
26019
26020 \end_inset
26021
26022 .
26023 \end_layout
26024
26025 \begin_layout Standard
26026 \begin_inset VSpace medskip
26027 \end_inset
26028
26029 Los cuadros coloreados se crean con el comando 
26030 \series bold
26031
26032 \backslash
26033 colorbox
26034 \series default
26035 , de acuerdo con el siguiente esquema:
26036 \end_layout
26037
26038 \begin_layout Standard
26039
26040 \series bold
26041
26042 \backslash
26043 colorbox{color}{contenido del cuadro}
26044 \end_layout
26045
26046 \begin_layout Standard
26047 El contenido también puede ser un cuadro y los cuadros coloreados también
26048  pueden estar en otros cuadros.
26049 \end_layout
26050
26051 \begin_layout Standard
26052 Los siguientes colores están predefinidos:
26053 \newline
26054
26055 \family sans
26056 negro
26057 \family default
26058
26059 \family sans
26060 azul
26061 \family default
26062
26063 \family sans
26064 cyan
26065 \family default
26066 \series bold
26067 ,
26068 \series default
26069  
26070 \family sans
26071 verde
26072 \family default
26073
26074 \family sans
26075 magenta
26076 \family default
26077
26078 \family sans
26079 rojo
26080 \family default
26081
26082 \family sans
26083 blanco
26084 \family default
26085
26086 \family sans
26087 amarillo
26088 \family default
26089 .
26090 \newline
26091 También puedes definir tus propios colores según se explica en la sección\InsetSpace ~
26092
26093 \begin_inset LatexCommand ref
26094 reference "sec:Tablas-Coloreadas"
26095
26096 \end_inset
26097
26098 .
26099 \end_layout
26100
26101 \begin_layout Standard
26102 Por ejemplo, para poner fondo rojo a una palabra, inserta el comando
26103 \end_layout
26104
26105 \begin_layout Standard
26106
26107 \series bold
26108
26109 \backslash
26110 colorbox{red}{
26111 \end_layout
26112
26113 \begin_layout Standard
26114 en ERT antes de la palabra.
26115  Tras la palabra inserta una llave de cierre 
26116 \begin_inset Quotes eld
26117 \end_inset
26118
26119
26120 \series bold
26121 }
26122 \series default
26123
26124 \begin_inset Quotes erd
26125 \end_inset
26126
26127  en ERT.
26128 \newline
26129 Este es el resultado:
26130 \end_layout
26131
26132 \begin_layout Standard
26133 Línea en la que la palabra 
26134 \begin_inset ERT
26135 status collapsed
26136
26137 \begin_layout Standard
26138
26139
26140 \backslash
26141 colorbox{red}{
26142 \end_layout
26143
26144 \end_inset
26145
26146
26147 \begin_inset Quotes eld
26148 \end_inset
26149
26150 ¡Atención!
26151 \begin_inset Quotes erd
26152 \end_inset
26153
26154
26155 \begin_inset ERT
26156 status collapsed
26157
26158 \begin_layout Standard
26159
26160 }
26161 \end_layout
26162
26163 \end_inset
26164
26165  tiene fondo rojo.
26166 \end_layout
26167
26168 \begin_layout Standard
26169 \begin_inset VSpace bigskip
26170 \end_inset
26171
26172 Si quieres un marco de distinto color, puedes emplear el comando 
26173 \series bold
26174
26175 \backslash
26176 fcolorbox
26177 \series default
26178  con el esquema siguiente:
26179 \end_layout
26180
26181 \begin_layout Standard
26182
26183 \series bold
26184
26185 \backslash
26186 fcolorbox{color del marco}{color del cuadro}{contenido del cuadro}
26187 \end_layout
26188
26189 \begin_layout Standard
26190
26191 \series bold
26192
26193 \backslash
26194 fcolorbox
26195 \series default
26196  es una extensión de 
26197 \series bold
26198
26199 \backslash
26200 colorbox
26201 \series default
26202 .
26203  El grosor del marco y el espacio entre él y el contenido se puede ajustar
26204  con las longitudes 
26205 \series bold
26206
26207 \backslash
26208 fboxrule
26209 \series default
26210  y 
26211 \series bold
26212
26213 \backslash
26214 fboxsep
26215 \series default
26216 , respectivamente, como se describe en la sección\InsetSpace ~
26217
26218 \begin_inset LatexCommand ref
26219 reference "sec:Cuadros-Enmarcados"
26220
26221 \end_inset
26222
26223 .
26224 \end_layout
26225
26226 \begin_layout Standard
26227 Para el ejemplo siguiente se ha utilizado el comando
26228 \end_layout
26229
26230 \begin_layout Standard
26231
26232 \series bold
26233
26234 \backslash
26235 fcolorbox{cyan}{magenta}{
26236 \end_layout
26237
26238 \begin_layout Standard
26239 Este es un ejemplo en el que se ha puesto un grosor de 1\InsetSpace \thinspace{}
26240 mm para la línea
26241  del marco:
26242 \newline
26243
26244 \begin_inset ERT
26245 status collapsed
26246
26247 \begin_layout Standard
26248
26249
26250 \backslash
26251 fboxrule 1mm 
26252 \backslash
26253 fboxsep 1mm
26254 \end_layout
26255
26256 \end_inset
26257
26258
26259 \begin_inset ERT
26260 status collapsed
26261
26262 \begin_layout Standard
26263
26264
26265 \backslash
26266 fcolorbox{cyan}{magenta}{
26267 \end_layout
26268
26269 \end_inset
26270
26271 Texto en un marco coloreado y enmarcado.
26272 \begin_inset ERT
26273 status collapsed
26274
26275 \begin_layout Standard
26276
26277 }
26278 \end_layout
26279
26280 \end_inset
26281
26282
26283 \end_layout
26284
26285 \begin_layout Standard
26286 \begin_inset VSpace bigskip
26287 \end_inset
26288
26289 Por supuesto también puedes colorear el texto en un marco coloreado:
26290 \newline
26291
26292 \begin_inset ERT
26293 status collapsed
26294
26295 \begin_layout Standard
26296
26297
26298 \backslash
26299 fcolorbox{cyan}{magenta}{
26300 \end_layout
26301
26302 \end_inset
26303
26304
26305 \color yellow
26306 Texto coloreado en un marco sombreado y coloreado.
26307 \color none
26308
26309 \begin_inset ERT
26310 status collapsed
26311
26312 \begin_layout Standard
26313
26314 }
26315 \end_layout
26316
26317 \end_inset
26318
26319
26320 \begin_inset ERT
26321 status collapsed
26322
26323 \begin_layout Standard
26324
26325
26326 \backslash
26327 fboxrule 0.4pt 
26328 \backslash
26329 fboxsep 3pt
26330 \end_layout
26331
26332 \end_inset
26333
26334
26335 \end_layout
26336
26337 \begin_layout Standard
26338
26339 \series bold
26340 \begin_inset VSpace medskip
26341 \end_inset
26342
26343
26344 \end_layout
26345
26346 \begin_layout Standard
26347 \begin_inset Note Greyedout
26348 status open
26349
26350 \begin_layout Standard
26351
26352 \series bold
26353 Nota:
26354 \series default
26355  El texto en cuadros coloreados no puede tener saltos de línea.
26356  Para colorear líneas o párrafos múltiples, usa un cuadro dentro de un cuadro
26357  coloreado como se describe a continuación.
26358 \end_layout
26359
26360 \end_inset
26361
26362
26363 \end_layout
26364
26365 \begin_layout Subsection
26366 Color en Párrafos
26367 \begin_inset LatexCommand label
26368 name "sub:Color-en-Párrafos"
26369
26370 \end_inset
26371
26372
26373 \begin_inset LatexCommand index
26374 name "Color ! en Párrafos"
26375
26376 \end_inset
26377
26378
26379 \end_layout
26380
26381 \begin_layout Standard
26382 Para poner color de fondo en más de una línea, pon el texto en una minipágina.
26383  Antes de la minipágina inserta el comando 
26384 \series bold
26385
26386 \backslash
26387 colorbox
26388 \end_layout
26389
26390 \begin_layout Standard
26391
26392 \series bold
26393
26394 \backslash
26395 colorbox{color}{
26396 \end_layout
26397
26398 \begin_layout Standard
26399 en ERT.
26400  Detrás de la minipágina inserta una llave de cierre 
26401 \begin_inset Quotes eld
26402 \end_inset
26403
26404
26405 \series bold
26406 }
26407 \series default
26408
26409 \begin_inset Quotes erd
26410 \end_inset
26411
26412  en ERT.
26413 \end_layout
26414
26415 \begin_layout Standard
26416 \begin_inset ERT
26417 status collapsed
26418
26419 \begin_layout Standard
26420
26421
26422 \backslash
26423 colorbox{grisclaro}{
26424 \end_layout
26425
26426 \end_inset
26427
26428
26429 \begin_inset Box Frameless
26430 position "t"
26431 hor_pos "c"
26432 has_inner_box 1
26433 inner_pos "t"
26434 use_parbox 0
26435 width "100col%"
26436 special "none"
26437 height "1in"
26438 height_special "totalheight"
26439 status open
26440
26441 \begin_layout Standard
26442 Texto con color de fondo.
26443  Texto con color de fondo.
26444 \end_layout
26445
26446 \begin_layout Standard
26447 \begin_inset VSpace defskip
26448 \end_inset
26449
26450 El texto puede tener notas al pie
26451 \begin_inset Foot
26452 status open
26453
26454 \begin_layout Standard
26455 Otro ejemplo de nota
26456 \end_layout
26457
26458 \end_inset
26459
26460  y puede incluir tablas y figuras.
26461 \end_layout
26462
26463 \begin_layout Standard
26464 \align center
26465 \begin_inset Tabular
26466 <lyxtabular version="3" rows="3" columns="3">
26467 <features>
26468 <column alignment="center" valignment="top" leftline="true" width="0">
26469 <column alignment="center" valignment="top" leftline="true" width="0">
26470 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26471 <row topline="true">
26472 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26473 \begin_inset Text
26474
26475 \begin_layout Standard
26476 a
26477 \end_layout
26478
26479 \end_inset
26480 </cell>
26481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26482 \begin_inset Text
26483
26484 \begin_layout Standard
26485 !
26486 \end_layout
26487
26488 \end_inset
26489 </cell>
26490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26491 \begin_inset Text
26492
26493 \begin_layout Standard
26494 3
26495 \end_layout
26496
26497 \end_inset
26498 </cell>
26499 </row>
26500 <row topline="true">
26501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26502 \begin_inset Text
26503
26504 \begin_layout Standard
26505 <
26506 \end_layout
26507
26508 \end_inset
26509 </cell>
26510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26511 \begin_inset Text
26512
26513 \begin_layout Standard
26514 b2
26515 \begin_inset Quotes erd
26516 \end_inset
26517
26518 |
26519 \end_layout
26520
26521 \end_inset
26522 </cell>
26523 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26524 \begin_inset Text
26525
26526 \begin_layout Standard
26527 >
26528 \end_layout
26529
26530 \end_inset
26531 </cell>
26532 </row>
26533 <row topline="true" bottomline="true">
26534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26535 \begin_inset Text
26536
26537 \begin_layout Standard
26538 1
26539 \end_layout
26540
26541 \end_inset
26542 </cell>
26543 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26544 \begin_inset Text
26545
26546 \begin_layout Standard
26547 §
26548 \end_layout
26549
26550 \end_inset
26551 </cell>
26552 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26553 \begin_inset Text
26554
26555 \begin_layout Standard
26556 c
26557 \end_layout
26558
26559 \end_inset
26560 </cell>
26561 </row>
26562 </lyxtabular>
26563
26564 \end_inset
26565
26566
26567 \end_layout
26568
26569 \end_inset
26570
26571
26572 \begin_inset ERT
26573 status collapsed
26574
26575 \begin_layout Standard
26576
26577 }
26578 \end_layout
26579
26580 \end_inset
26581
26582
26583 \end_layout
26584
26585 \begin_layout Section
26586 URLs (Localizador Uniforme de Recursos)
26587 \begin_inset LatexCommand index
26588 name "URLs"
26589
26590 \end_inset
26591
26592
26593 \end_layout
26594
26595 \begin_layout Standard
26596 Los enlaces a páginas web o direcciones de correo se insertan con el menú
26597  
26598 \family sans
26599 Insertar\SpecialChar \menuseparator
26600 URL
26601 \family default
26602 .
26603  Surge un diálogo con dos campos; el campo 
26604 \family sans
26605 URL
26606 \family default
26607  y el campo 
26608 \family sans
26609 Nombre
26610 \family default
26611  para la descripción del URL, que saldrá impreso como texto normal inmediatament
26612 e antes del URL.
26613 \end_layout
26614
26615 \begin_layout Standard
26616 He aquí un ejemplo de URL: 
26617 \begin_inset LatexCommand url
26618 name "Página de LyX"
26619 target "http://www.lyx.org"
26620
26621 \end_inset
26622
26623
26624 \end_layout
26625
26626 \begin_layout Standard
26627 La opción 
26628 \family sans
26629 Generar\InsetSpace ~
26630 hiperenlace
26631 \family default
26632  en el diálogo URL sólo tiene efecto al exportar el documento al formato
26633  
26634 \begin_inset Quotes eld
26635 \end_inset
26636
26637
26638 \family sans
26639 LinuxDoc
26640 \family default
26641
26642 \begin_inset Quotes erd
26643 \end_inset
26644
26645 .
26646 \end_layout
26647
26648 \begin_layout Standard
26649 No se puede cambiar el estilo del texto del enlace.
26650  El texto del campo 
26651 \family sans
26652 Nombre
26653 \family default
26654  tendrá el estilo de texto predeterminado para el documento mientras que
26655  el texto del campo 
26656 \family sans
26657 URL
26658 \family default
26659  tendrá el estilo 
26660 \begin_inset Quotes eld
26661 \end_inset
26662
26663
26664 \family sans
26665 Typewriter
26666 \family default
26667
26668 \begin_inset Quotes erd
26669 \end_inset
26670
26671 .
26672 \end_layout
26673
26674 \begin_layout Standard
26675 Cuando usas el paquete LaTeX 
26676 \series bold
26677 hyperref
26678 \series default
26679
26680 \begin_inset LatexCommand index
26681 name "LaTeX-paquetes ! hyperref"
26682
26683 \end_inset
26684
26685  para enlazar referencias cruzadas, en las salidas DVI y PDF los URLs se
26686  convierten automáticamente en hiperenlaces disponibles.
26687 \end_layout
26688
26689 \begin_layout Standard
26690 \begin_inset Note Greyedout
26691 status open
26692
26693 \begin_layout Standard
26694
26695 \series bold
26696 Nota:
26697 \series default
26698  Cuando utilices los caracteres: "%", "#", "^", debes escribirlos precedidos
26699  por una barra invertida, p.\InsetSpace \thinspace{}
26700 e.\InsetSpace ~
26701
26702 \begin_inset Quotes eld
26703 \end_inset
26704
26705
26706 \backslash
26707 #
26708 \begin_inset Quotes erd
26709 \end_inset
26710
26711 .
26712  Los URLs no deben finalizar con una barra invertida.
26713 \end_layout
26714
26715 \end_inset
26716
26717
26718 \end_layout
26719
26720 \begin_layout Standard
26721 \begin_inset VSpace bigskip
26722 \end_inset
26723
26724 Para crear hiperenlaces reales sin tener que escribir la dirección del enlace
26725  en el texto, puedes usar el comando
26726 \end_layout
26727
26728 \begin_layout Standard
26729
26730 \series bold
26731
26732 \backslash
26733 href{dirección del enlace}{texto del enlace}
26734 \end_layout
26735
26736 \begin_layout Standard
26737 en ERT.
26738  Por ejemplo, para conseguir un enlace a la página web de LyX, escribe el
26739  comando
26740 \end_layout
26741
26742 \begin_layout Standard
26743
26744 \series bold
26745
26746 \backslash
26747 href{http://www.lyx.org}{
26748 \end_layout
26749
26750 \begin_layout Standard
26751 en ERT.
26752  Inserta después del comando el texto del enlace 
26753 \begin_inset Quotes eld
26754 \end_inset
26755
26756 Página de LyX
26757 \begin_inset Quotes erd
26758 \end_inset
26759
26760  seguido por una llave en ERT.
26761  Este es el resultado: 
26762 \begin_inset ERT
26763 status collapsed
26764
26765 \begin_layout Standard
26766
26767
26768 \backslash
26769 href{http://www.lyx.org}{
26770 \end_layout
26771
26772 \end_inset
26773
26774 Página de LyX
26775 \begin_inset ERT
26776 status collapsed
26777
26778 \begin_layout Standard
26779
26780 }
26781 \end_layout
26782
26783 \end_inset
26784
26785
26786 \end_layout
26787
26788 \begin_layout Standard
26789 Para enlazar a direcciones de correo, añade el prefijo 
26790 \begin_inset Quotes eld
26791 \end_inset
26792
26793
26794 \family sans
26795 mailto:
26796 \family default
26797
26798 \begin_inset Quotes erd
26799 \end_inset
26800
26801  a la dirección del enlace:
26802 \newline
26803 Correo para 
26804 \begin_inset ERT
26805 status collapsed
26806
26807 \begin_layout Standard
26808
26809
26810 \backslash
26811 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26812 \end_layout
26813
26814 \end_inset
26815
26816 la lista de correo de documentación de LyX (lyx-docs)
26817 \begin_inset ERT
26818 status collapsed
26819
26820 \begin_layout Standard
26821
26822 }
26823 \end_layout
26824
26825 \end_inset
26826
26827 .
26828 \end_layout
26829
26830 \begin_layout Standard
26831 Emplear 
26832 \series bold
26833
26834 \backslash
26835 href
26836 \series default
26837  en vez del cuadro URL de LyX tiene la ventaja de que puedes especificar
26838  el estilo de texto del enlace como en las demás partes del texto.
26839  Puedes poner guiones y saltos de línea forzados para dividir textos extensos
26840  de enlaces en el margen de página.
26841  También puedes cambiar el estilo de texto para todos los URLs en el documento
26842  con una opción en el comando de carga de 
26843 \series bold
26844 hyperref
26845 \series default
26846 .
26847  Además las restricciones mencionadas antes no se aplican a 
26848 \series bold
26849
26850 \backslash
26851 href
26852 \series default
26853 .
26854 \end_layout
26855
26856 \begin_layout Chapter
26857 Archivos
26858 \begin_inset LatexCommand index
26859 name "Archivos, insertar"
26860
26861 \end_inset
26862
26863
26864 \end_layout
26865
26866 \begin_layout Standard
26867 Con el menú 
26868 \family sans
26869 Insertar\SpecialChar \menuseparator
26870 Archivo 
26871 \family default
26872 se pueden insertar archivos externos en un documento.
26873  Estos pueden ser:
26874 \end_layout
26875
26876 \begin_layout Description
26877 Documento\InsetSpace ~
26878 LyX Otro documento LyX; su contenido se inserta directamente en
26879  tu documento.
26880 \end_layout
26881
26882 \begin_layout Description
26883 Texto\InsetSpace ~
26884 simple\InsetSpace ~
26885 como\InsetSpace ~
26886 líneas Un documento de texto; cada línea del mismo se inserta
26887  en tu documento como un nuevo párrafo.
26888 \end_layout
26889
26890 \begin_layout Description
26891 Texto\InsetSpace ~
26892 simple\InsetSpace ~
26893 como\InsetSpace ~
26894 párrafos Un documento de texto; cada línea del texto se inserta
26895  tal como está, formando un solo párrafo.
26896  Las líneas vacías generan un nuevo párrafo en tu documento.
26897 \end_layout
26898
26899 \begin_layout Description
26900 Material\InsetSpace ~
26901 externo Archivos en diversos formatos.
26902 \end_layout
26903
26904 \begin_layout Description
26905 Documento\InsetSpace ~
26906 hijo Documentos LyX, LaTeX o texto simple.
26907 \end_layout
26908
26909 \begin_layout Section
26910 Material Externo
26911 \begin_inset LatexCommand index
26912 name "Material Externo"
26913
26914 \end_inset
26915
26916
26917 \end_layout
26918
26919 \begin_layout Standard
26920 Esta característica te permite insertar archivos en tu documento sin convertirlo
26921 s previamente a un formato legible en la salida, ya que LyX se ocupa de
26922  las necesarias conversiones.
26923  Esto es parecido a la inserción de imágenes en diversos formatos en los
26924  documentos LyX.
26925 \end_layout
26926
26927 \begin_layout Standard
26928 El material externo se puede insertar mediante el diálogo que surge a partir
26929  del menú 
26930 \family sans
26931 Insertar\SpecialChar \menuseparator
26932 Archivo\SpecialChar \menuseparator
26933 Material\InsetSpace ~
26934 externo
26935 \family default
26936 .
26937  Actualmente se permiten los siguientes tipos de archivo (
26938 \family sans
26939 Plantillas
26940 \family default
26941 ):
26942 \end_layout
26943
26944 \begin_layout Description
26945 Diagrama\InsetSpace ~
26946 de\InsetSpace ~
26947 ajedrez Esta plantilla soporta diagramas posicionales de ajedrez
26948  hechos con el programa 
26949 \begin_inset ERT
26950 status collapsed
26951
26952 \begin_layout Standard
26953
26954
26955 \backslash
26956 href{http://en.wikipedia.org/wiki/XBoard}{
26957 \end_layout
26958
26959 \end_inset
26960
26961
26962 \series bold
26963 XBoard
26964 \series default
26965
26966 \begin_inset ERT
26967 status collapsed
26968
26969 \begin_layout Standard
26970
26971 }
26972 \end_layout
26973
26974 \end_inset
26975
26976 .
26977 \end_layout
26978
26979 \begin_layout Description
26980 Fecha Esta inserta la fecha en el formato 
26981 \emph on
26982 Día-Mes-Año.
26983
26984 \emph default
26985  A continuación hay una fecha insertada como material externo: 
26986 \begin_inset External
26987         template Date
26988         filename .
26989
26990 \end_inset
26991
26992
26993 \newline
26994 La fecha no se muestra en LyX, solo en la salida.
26995  Hay otros dos métodos de insertar una fecha, con el menú 
26996 \family sans
26997 Insertar\SpecialChar \menuseparator
26998 Fecha
26999 \family default
27000  y con el comando LaTeX 
27001 \series bold
27002
27003 \backslash
27004 today
27005 \series default
27006  en ERT.
27007  Los distintos métodos se comparan en la tabla\InsetSpace ~
27008
27009 \begin_inset LatexCommand ref
27010 reference "tab:Comparación-de"
27011
27012 \end_inset
27013
27014 .
27015 \end_layout
27016
27017 \begin_layout Description
27018 LilyPond Esta plantilla sirve para tipografiar notación musical con el programa
27019 \begin_inset ERT
27020 status collapsed
27021
27022 \begin_layout Standard
27023
27024
27025 \backslash
27026 linebreak 
27027 \end_layout
27028
27029 \end_inset
27030
27031
27032 \begin_inset ERT
27033 status collapsed
27034
27035 \begin_layout Standard
27036
27037
27038 \backslash
27039 href{http://en.wikipedia.org/wiki/LilyPond}{
27040 \end_layout
27041
27042 \end_inset
27043
27044
27045 \series bold
27046 LilyPond
27047 \series default
27048
27049 \begin_inset ERT
27050 status collapsed
27051
27052 \begin_layout Standard
27053
27054 }
27055 \end_layout
27056
27057 \end_inset
27058
27059 .
27060 \begin_inset Note Note
27061 status collapsed
27062
27063 \begin_layout Standard
27064 El comando 
27065 \series bold
27066
27067 \backslash
27068 linebreak
27069 \series default
27070  quiebra la línea de forma que el texto precedente se extiende hasta ajustarse
27071  al margen de página.
27072 \end_layout
27073
27074 \end_inset
27075
27076
27077 \end_layout
27078
27079 \begin_layout Description
27080 RasterImage Sirve para insertar imágenes bitmap.
27081  Casi todos los formatos populares de imágenes están soportados.
27082  Las imágenes se pueden tratar en el diálogo 
27083 \family sans
27084 Material Externo
27085 \family default
27086  como las que habitualmente se incluyen mediante el diálogo 
27087 \family sans
27088 Gráficos
27089 \family default
27090 , tal como se explica en la sección\InsetSpace ~
27091
27092 \begin_inset LatexCommand ref
27093 reference "sec:Diálogo-Gráficos"
27094
27095 \end_inset
27096
27097 .
27098  La diferencia es que solo se permiten imágenes bitmap, por tanto las imágenes
27099  PDF y EPS no están soportadas.
27100 \end_layout
27101
27102 \begin_layout Description
27103 XFig Esta plantilla soporta imágenes creadas con el programa 
27104 \begin_inset ERT
27105 status collapsed
27106
27107 \begin_layout Standard
27108
27109
27110 \backslash
27111 href{http://en.wikipedia.org/wiki/Xfig}{
27112 \end_layout
27113
27114 \end_inset
27115
27116
27117 \series bold
27118 Xfig
27119 \series default
27120
27121 \begin_inset ERT
27122 status collapsed
27123
27124 \begin_layout Standard
27125
27126 }
27127 \end_layout
27128
27129 \end_inset
27130
27131 .
27132 \end_layout
27133
27134 \begin_layout Standard
27135 \begin_inset Float table
27136 placement h
27137 wide false
27138 sideways false
27139 status open
27140
27141 \begin_layout Standard
27142 \begin_inset Caption
27143
27144 \begin_layout Standard
27145 \begin_inset LatexCommand label
27146 name "tab:Comparación-de"
27147
27148 \end_inset
27149
27150 Comparación de los métodos de inserción de fecha.
27151 \end_layout
27152
27153 \end_inset
27154
27155
27156 \end_layout
27157
27158 \begin_layout Standard
27159 \align center
27160 \begin_inset Tabular
27161 <lyxtabular version="3" rows="4" columns="4">
27162 <features>
27163 <column alignment="center" valignment="top" leftline="true" width="0">
27164 <column alignment="center" valignment="top" leftline="true" width="0">
27165 <column alignment="center" valignment="top" leftline="true" width="0">
27166 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27167 <row topline="true">
27168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27169 \begin_inset Text
27170
27171 \begin_layout Standard
27172 Tipo del Documento
27173 \end_layout
27174
27175 \end_inset
27176 </cell>
27177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27178 \begin_inset Text
27179
27180 \begin_layout Standard
27181
27182 \family sans
27183 Material Externo\SpecialChar \menuseparator
27184 Fecha
27185 \end_layout
27186
27187 \end_inset
27188 </cell>
27189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27190 \begin_inset Text
27191
27192 \begin_layout Standard
27193
27194 \family sans
27195 Insertar\SpecialChar \menuseparator
27196 Fecha
27197 \end_layout
27198
27199 \end_inset
27200 </cell>
27201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27202 \begin_inset Text
27203
27204 \begin_layout Standard
27205 comando 
27206 \series bold
27207
27208 \backslash
27209 today
27210 \end_layout
27211
27212 \end_inset
27213 </cell>
27214 </row>
27215 <row topline="true">
27216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27217 \begin_inset Text
27218
27219 \begin_layout Standard
27220 LyX
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 como cuadro
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 como fecha
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 como cuadro ERT
27248 \end_layout
27249
27250 \end_inset
27251 </cell>
27252 </row>
27253 <row topline="true">
27254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27255 \begin_inset Text
27256
27257 \begin_layout Standard
27258 LaTeX
27259 \end_layout
27260
27261 \end_inset
27262 </cell>
27263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27264 \begin_inset Text
27265
27266 \begin_layout Standard
27267 como fecha
27268 \end_layout
27269
27270 \end_inset
27271 </cell>
27272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27273 \begin_inset Text
27274
27275 \begin_layout Standard
27276 como fecha
27277 \end_layout
27278
27279 \end_inset
27280 </cell>
27281 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27282 \begin_inset Text
27283
27284 \begin_layout Standard
27285 como comando
27286 \end_layout
27287
27288 \end_inset
27289 </cell>
27290 </row>
27291 <row topline="true" bottomline="true">
27292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27293 \begin_inset Text
27294
27295 \begin_layout Standard
27296 DVI, PDF, PS
27297 \end_layout
27298
27299 \end_inset
27300 </cell>
27301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27302 \begin_inset Text
27303
27304 \begin_layout Standard
27305 como fecha
27306 \end_layout
27307
27308 \end_inset
27309 </cell>
27310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27311 \begin_inset Text
27312
27313 \begin_layout Standard
27314 como fecha
27315 \end_layout
27316
27317 \end_inset
27318 </cell>
27319 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27320 \begin_inset Text
27321
27322 \begin_layout Standard
27323 como fecha
27324 \end_layout
27325
27326 \end_inset
27327 </cell>
27328 </row>
27329 </lyxtabular>
27330
27331 \end_inset
27332
27333
27334 \end_layout
27335
27336 \end_inset
27337
27338
27339 \end_layout
27340
27341 \begin_layout Standard
27342 Si utilizas la opción 
27343 \family sans
27344 Borrador
27345 \family default
27346  en la solapa 
27347 \family sans
27348 Archivo
27349 \family default
27350  del diálogo 
27351 \family sans
27352 Material Externo
27353 \family default
27354 , en el documento de salida solo se muestra la ruta al archivo insertado.
27355 \family sans
27356
27357 \newline
27358
27359 \family default
27360 El material externo se muestra en LyX como un cuadro del tipo:
27361 \family sans
27362  
27363 \family default
27364
27365 \begin_inset Graphics
27366         filename clipart/MaterialExternoQt4.png
27367         scale 80
27368
27369 \end_inset
27370
27371  o como imagen, según la configuración elegida en la solapa 
27372 \family sans
27373 Vista\InsetSpace ~
27374 LyX 
27375 \family default
27376 del diálogo 
27377 \family sans
27378 Material Externo.
27379 \end_layout
27380
27381 \begin_layout Standard
27382 En el manual 
27383 \emph on
27384 Personalización
27385 \emph default
27386  se explica cómo definir tus propias plantillas.
27387 \end_layout
27388
27389 \begin_layout Section
27390 Documento Hijo
27391 \begin_inset LatexCommand index
27392 name "Documento Hijo"
27393
27394 \end_inset
27395
27396
27397 \end_layout
27398
27399 \begin_layout Standard
27400 Los documentos hijos se emplean en el caso de tener un documento extenso
27401  compuesto por varias partes o secciones más grandes.
27402  Para trabajar en este tipo de documentos es útil, y a veces obligado, dividirlo
27403  en varios archivos que pueden ser revisados por separado.
27404  Estos archivos se conocen como documentos hijos, y el llamado documento
27405  maestro los conecta con el fin de imprimirlos como un todo o por partes.
27406  
27407 \end_layout
27408
27409 \begin_layout Standard
27410 Los documentos incluidos como hijos se muestran en la pantalla de LyX como
27411  cuadros del tipo: 
27412 \begin_inset Graphics
27413         filename clipart/DocumentoHijoQt4.png
27414         scale 80
27415
27416 \end_inset
27417
27418 .
27419  Para incluir documentos hijos en un documento maestro utiliza el menú 
27420 \family sans
27421 Insertar
27422 \family default
27423 \SpecialChar \menuseparator
27424
27425 \family sans
27426 Archivo
27427 \family default
27428 \SpecialChar \menuseparator
27429
27430 \family sans
27431 Documento\InsetSpace ~
27432 hijo
27433 \family default
27434 .
27435  Surge un diálogo en el que puedes elegir entre tres métodos de inclusión:
27436 \end_layout
27437
27438 \begin_layout Description
27439 Incluir Puedes incluir documentos LyX y documentos LaTeX.
27440  Al pulsar el botón 
27441 \family sans
27442 Cargar
27443 \family default
27444  en el diálogo 
27445 \family sans
27446 Documento hijo
27447 \family default
27448 , los documentos incluidos se abrirán en una nueva solapa de archivo en
27449  la ventana de LyX y así puedes modificarlos si quieres.
27450 \end_layout
27451
27452 \begin_layout Standard
27453 Aquí hay un archivo insertado con el método 
27454 \family sans
27455 Incluir
27456 \family default
27457 :
27458 \begin_inset Include \include{DocumentoPostizo1.lyx}
27459 preview false
27460
27461 \end_inset
27462
27463
27464 \end_layout
27465
27466 \begin_layout Standard
27467 La numeración de secciones tiene en cuenta las secciones de los archivos
27468  incluidos en el orden en que están insertados en el documento maestro.
27469  El documento incluido de ejemplo tiene una subsección que se numera como
27470  subsección de la presente sección.
27471  Las etiquetas de los documentos incluidos se pueden referenciar: Subsección\InsetSpace ~
27472
27473 \begin_inset LatexCommand ref
27474 reference "sub:Subsección-Externa-1"
27475
27476 \end_inset
27477
27478 .
27479 \end_layout
27480
27481 \begin_layout Standard
27482 El preámbulo del documento hijo se ignora, solo se utiliza el preámbulo
27483  del documento maestro.
27484  Los documentos incluidos se insertan comenzando una página nueva y acabando
27485  con un salto de página.
27486 \end_layout
27487
27488 \begin_layout Standard
27489 Con el comando LaTeX 
27490 \series bold
27491
27492 \backslash
27493 includeonly
27494 \series default
27495  puedes determinar qué documentos hijos serán procesados al generar la salida.
27496  Esto es útil si, por ejemplo, estás trabajando solo cierto capítulo de
27497  un extenso documento y quieres ahorrar tiempo de compilación.
27498  
27499 \series bold
27500
27501 \backslash
27502 includeonly 
27503 \series default
27504 se inserta en el preámbulo del documento maestro, poniendo como argumento
27505  una lista de los nombres de archivo separados con comas, p.\InsetSpace \thinspace{}
27506 e.
27507  la orden:
27508 \end_layout
27509
27510 \begin_layout Standard
27511
27512 \series bold
27513
27514 \backslash
27515 includeonly{capítulo1,capítulo5}
27516 \end_layout
27517
27518 \begin_layout Standard
27519 hará que solo se procesen los archivos incluidos cuyos nombres son 
27520 \begin_inset Quotes eld
27521 \end_inset
27522
27523 capítulo1.lyx
27524 \begin_inset Quotes erd
27525 \end_inset
27526
27527  (o 
27528 \begin_inset Quotes eld
27529 \end_inset
27530
27531 capítulo1.tex
27532 \begin_inset Quotes erd
27533 \end_inset
27534
27535 ) y 
27536 \begin_inset Quotes eld
27537 \end_inset
27538
27539 capítulo5.lyx
27540 \begin_inset Quotes erd
27541 \end_inset
27542
27543 .
27544 \end_layout
27545
27546 \begin_layout Standard
27547 \begin_inset Note Greyedout
27548 status collapsed
27549
27550 \begin_layout Standard
27551
27552 \series bold
27553 Nota:
27554 \series default
27555  Si has incluido un archivo LyX o LaTeX cuya clase de documento es distinta
27556  a la del documento maestro, recibirás una advertencia al exportar/ver el
27557  documento, ya que esto podría dar resultados inesperados.
27558 \end_layout
27559
27560 \end_inset
27561
27562
27563 \end_layout
27564
27565 \begin_layout Description
27566 Entrada Este método es muy parecido al método 
27567 \family sans
27568 Incluir
27569 \family default
27570 .
27571  Las diferencias son:
27572 \end_layout
27573
27574 \begin_deeper
27575 \begin_layout Itemize
27576 Los archivos del tipo Entrada no comienzan en página nueva ni acaban con
27577  un salto de página.
27578 \end_layout
27579
27580 \begin_layout Itemize
27581 Los archivos del tipo Entrada se pueden visualizar en LyX si la 
27582 \family sans
27583 Vista\InsetSpace ~
27584 preliminar\InsetSpace ~
27585 inmediata 
27586 \family default
27587 está activada en el diálogo 
27588 \family sans
27589 Herramientas\SpecialChar \menuseparator
27590 Preferencias
27591 \family default
27592 , apartado 
27593 \family sans
27594 Apariencia\SpecialChar \menuseparator
27595 Gráficos
27596 \family default
27597 .
27598 \end_layout
27599
27600 \begin_layout Itemize
27601 No se puede utilizar el comando LaTeX 
27602 \series bold
27603
27604 \backslash
27605 includeonly
27606 \series default
27607 .
27608 \end_layout
27609
27610 \end_deeper
27611 \begin_layout Standard
27612 Aquí hay un documento hijo insertado con el método 
27613 \family sans
27614 Entrada
27615 \family default
27616 :
27617 \end_layout
27618
27619 \begin_layout Standard
27620 \begin_inset Include \input{DocumentoPostizo2.lyx}
27621 preview true
27622
27623 \end_inset
27624
27625
27626 \end_layout
27627
27628 \begin_layout Description
27629 Literal Con este método se puede incluir todo archivo de texto.
27630  El archivo aparece en la salida con su código fuente, y si contiene comandos
27631  no se ejecutan.
27632  Con la opción 
27633 \family sans
27634 Marcar espacios en la salida
27635 \family default
27636  cada espacio en el código fuente se muestra en la salida con el carácter
27637  
27638 \begin_inset Quotes eld
27639 \end_inset
27640
27641
27642 \begin_inset ERT
27643 status open
27644
27645 \begin_layout Standard
27646
27647
27648 \backslash
27649 textvisiblespace
27650 \end_layout
27651
27652 \end_inset
27653
27654
27655 \begin_inset Quotes erd
27656 \end_inset
27657
27658 .
27659  La diferencia con el método de inserción mediante el menú 
27660 \family sans
27661 Insertar
27662 \family default
27663 \SpecialChar \menuseparator
27664
27665 \family sans
27666 Archivo
27667 \family default
27668 \SpecialChar \menuseparator
27669
27670 \family sans
27671 Texto\InsetSpace ~
27672 simple
27673 \family default
27674  es que en este caso el contenido del archivo se ve en LyX, mientras que
27675  en modo 
27676 \family sans
27677 Literal 
27678 \family default
27679 no se muestra el contenido, sino un recuadro con el nombre.
27680
27681 \family sans
27682  
27683 \end_layout
27684
27685 \begin_layout Standard
27686 Aquí se inserta un documento hijo en modo Literal:
27687 \begin_inset Include \verbatiminput{DocumentoTextoPostizo.txt}
27688 preview false
27689
27690 \end_inset
27691
27692
27693 \begin_inset VSpace bigskip
27694 \end_inset
27695
27696
27697 \end_layout
27698
27699 \begin_layout Standard
27700 Aquí se inserta un documento hijo en modo Literal con la opción 
27701 \family sans
27702 Marcar espacios en la salida
27703 \family default
27704 :
27705 \begin_inset Include \verbatiminput*{DocumentoTextoPostizo.txt}
27706 preview false
27707
27708 \end_inset
27709
27710
27711 \begin_inset VSpace bigskip
27712 \end_inset
27713
27714
27715 \end_layout
27716
27717 \begin_layout Standard
27718 \begin_inset Note Greyedout
27719 status open
27720
27721 \begin_layout Standard
27722
27723 \series bold
27724 Nota:
27725 \series default
27726  Como puedes ver en los ejemplos anteriores, el texto de los documentos
27727  incluidos en modo literal no contiene saltos de línea, a no ser que se
27728  incluyan expresamente en el archivo de texto.
27729 \end_layout
27730
27731 \end_inset
27732
27733
27734 \end_layout
27735
27736 \begin_layout Standard
27737 \begin_inset Note Greyedout
27738 status collapsed
27739
27740 \begin_layout Standard
27741
27742 \series bold
27743 Nota:
27744 \series default
27745  Incluir el mismo documento dos veces  con métodos diferentes podría causar
27746  problemas en LaTeX.
27747 \end_layout
27748
27749 \end_inset
27750
27751
27752 \end_layout
27753
27754 \begin_layout Standard
27755
27756 \newpage
27757
27758 \end_layout
27759
27760 \begin_layout Chapter
27761 \start_of_appendix
27762 Unidades disponibles en 
27763 \begin_inset ERT
27764 status collapsed
27765
27766 \begin_layout Standard
27767
27768
27769 \backslash
27770 texorpdfstring{
27771 \end_layout
27772
27773 \end_inset
27774
27775 LyX
27776 \begin_inset ERT
27777 status collapsed
27778
27779 \begin_layout Standard
27780
27781 }{LyX}
27782 \end_layout
27783
27784 \end_inset
27785
27786
27787 \begin_inset LatexCommand index
27788 name "Unidades"
27789
27790 \end_inset
27791
27792
27793 \begin_inset LatexCommand label
27794 name "cha:Unidades-disponibles-en"
27795
27796 \end_inset
27797
27798
27799 \begin_inset Note Note
27800 status collapsed
27801
27802 \begin_layout Standard
27803 El comando 
27804 \backslash
27805 texorpdfstring suministrado por el paquete LaTeX hyperref impide que los
27806  enlaces se muestren erróneamente en los marcadores PDF.
27807  Más información en 
27808 \begin_inset LatexCommand cite
27809 key "hyperref"
27810
27811 \end_inset
27812
27813 .
27814 \end_layout
27815
27816 \end_inset
27817
27818
27819 \end_layout
27820
27821 \begin_layout Standard
27822 Para comprender las unidades utilizadas en este manual, el cuadro\InsetSpace ~
27823
27824 \begin_inset LatexCommand ref
27825 reference "tab:Unidades"
27826
27827 \end_inset
27828
27829  describe todas las unidades disponibles en LyX.
27830 \end_layout
27831
27832 \begin_layout Standard
27833 \begin_inset Float table
27834 placement h
27835 wide false
27836 sideways false
27837 status open
27838
27839 \begin_layout Standard
27840 \begin_inset Caption
27841
27842 \begin_layout Standard
27843 \begin_inset LatexCommand label
27844 name "tab:Unidades"
27845
27846 \end_inset
27847
27848 Unidades
27849 \end_layout
27850
27851 \end_inset
27852
27853
27854 \end_layout
27855
27856 \begin_layout Standard
27857 \begin_inset VSpace medskip
27858 \end_inset
27859
27860
27861 \end_layout
27862
27863 \begin_layout Standard
27864 \align center
27865 \begin_inset Tabular
27866 <lyxtabular version="3" rows="20" columns="2">
27867 <features>
27868 <column alignment="center" valignment="top" leftline="true" width="0">
27869 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27870 <row topline="true" bottomline="true">
27871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27872 \begin_inset Text
27873
27874 \begin_layout Standard
27875 unidad
27876 \end_layout
27877
27878 \end_inset
27879 </cell>
27880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27881 \begin_inset Text
27882
27883 \begin_layout Standard
27884 nombre/descripción
27885 \end_layout
27886
27887 \end_inset
27888 </cell>
27889 </row>
27890 <row topline="true">
27891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27892 \begin_inset Text
27893
27894 \begin_layout Standard
27895 mm
27896 \end_layout
27897
27898 \end_inset
27899 </cell>
27900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27901 \begin_inset Text
27902
27903 \begin_layout Standard
27904 milímetro
27905 \end_layout
27906
27907 \end_inset
27908 </cell>
27909 </row>
27910 <row topline="true">
27911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27912 \begin_inset Text
27913
27914 \begin_layout Standard
27915 cm
27916 \end_layout
27917
27918 \end_inset
27919 </cell>
27920 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27921 \begin_inset Text
27922
27923 \begin_layout Standard
27924 centímetro
27925 \end_layout
27926
27927 \end_inset
27928 </cell>
27929 </row>
27930 <row topline="true">
27931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27932 \begin_inset Text
27933
27934 \begin_layout Standard
27935 in
27936 \end_layout
27937
27938 \end_inset
27939 </cell>
27940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27941 \begin_inset Text
27942
27943 \begin_layout Standard
27944 pulgada
27945 \end_layout
27946
27947 \end_inset
27948 </cell>
27949 </row>
27950 <row topline="true">
27951 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27952 \begin_inset Text
27953
27954 \begin_layout Standard
27955 pt
27956 \end_layout
27957
27958 \end_inset
27959 </cell>
27960 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27961 \begin_inset Text
27962
27963 \begin_layout Standard
27964 punto (72.27\InsetSpace \thinspace{}
27965 pt = 1\InsetSpace \thinspace{}
27966 in)
27967 \end_layout
27968
27969 \end_inset
27970 </cell>
27971 </row>
27972 <row topline="true">
27973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27974 \begin_inset Text
27975
27976 \begin_layout Standard
27977 pc
27978 \end_layout
27979
27980 \end_inset
27981 </cell>
27982 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27983 \begin_inset Text
27984
27985 \begin_layout Standard
27986 pica (1\InsetSpace \thinspace{}
27987 pc = 12\InsetSpace \thinspace{}
27988 pt)
27989 \end_layout
27990
27991 \end_inset
27992 </cell>
27993 </row>
27994 <row topline="true">
27995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27996 \begin_inset Text
27997
27998 \begin_layout Standard
27999 sp
28000 \end_layout
28001
28002 \end_inset
28003 </cell>
28004 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28005 \begin_inset Text
28006
28007 \begin_layout Standard
28008 punto escalado (65536\InsetSpace \thinspace{}
28009 sp = 1\InsetSpace \thinspace{}
28010 pt)
28011 \end_layout
28012
28013 \end_inset
28014 </cell>
28015 </row>
28016 <row topline="true">
28017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28018 \begin_inset Text
28019
28020 \begin_layout Standard
28021 bp
28022 \end_layout
28023
28024 \end_inset
28025 </cell>
28026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28027 \begin_inset Text
28028
28029 \begin_layout Standard
28030 punto grande (72\InsetSpace \thinspace{}
28031 bp = 1\InsetSpace \thinspace{}
28032 in)
28033 \end_layout
28034
28035 \end_inset
28036 </cell>
28037 </row>
28038 <row topline="true">
28039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28040 \begin_inset Text
28041
28042 \begin_layout Standard
28043 dd
28044 \end_layout
28045
28046 \end_inset
28047 </cell>
28048 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28049 \begin_inset Text
28050
28051 \begin_layout Standard
28052 didot (72\InsetSpace \thinspace{}
28053 dd 
28054 \begin_inset Formula $\approx$
28055 \end_inset
28056
28057  37.6\InsetSpace \thinspace{}
28058 mm)
28059 \end_layout
28060
28061 \end_inset
28062 </cell>
28063 </row>
28064 <row topline="true">
28065 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28066 \begin_inset Text
28067
28068 \begin_layout Standard
28069 cc
28070 \end_layout
28071
28072 \end_inset
28073 </cell>
28074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28075 \begin_inset Text
28076
28077 \begin_layout Standard
28078 cicero (1\InsetSpace \thinspace{}
28079 cc = 12\InsetSpace \thinspace{}
28080 dd)
28081 \end_layout
28082
28083 \end_inset
28084 </cell>
28085 </row>
28086 <row topline="true">
28087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28088 \begin_inset Text
28089
28090 \begin_layout Standard
28091 Scale%
28092 \end_layout
28093
28094 \end_inset
28095 </cell>
28096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28097 \begin_inset Text
28098
28099 \begin_layout Standard
28100 % de anchura original de la imagen
28101 \end_layout
28102
28103 \end_inset
28104 </cell>
28105 </row>
28106 <row topline="true">
28107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28108 \begin_inset Text
28109
28110 \begin_layout Standard
28111 text%
28112 \end_layout
28113
28114 \end_inset
28115 </cell>
28116 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28117 \begin_inset Text
28118
28119 \begin_layout Standard
28120 % de anchura de texto
28121 \end_layout
28122
28123 \end_inset
28124 </cell>
28125 </row>
28126 <row topline="true">
28127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28128 \begin_inset Text
28129
28130 \begin_layout Standard
28131 col%
28132 \end_layout
28133
28134 \end_inset
28135 </cell>
28136 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28137 \begin_inset Text
28138
28139 \begin_layout Standard
28140 % de anchura de columna
28141 \end_layout
28142
28143 \end_inset
28144 </cell>
28145 </row>
28146 <row topline="true">
28147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28148 \begin_inset Text
28149
28150 \begin_layout Standard
28151 page%
28152 \end_layout
28153
28154 \end_inset
28155 </cell>
28156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28157 \begin_inset Text
28158
28159 \begin_layout Standard
28160 % de anchura de página
28161 \end_layout
28162
28163 \end_inset
28164 </cell>
28165 </row>
28166 <row topline="true">
28167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28168 \begin_inset Text
28169
28170 \begin_layout Standard
28171 line%
28172 \end_layout
28173
28174 \end_inset
28175 </cell>
28176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28177 \begin_inset Text
28178
28179 \begin_layout Standard
28180 % de anchura de línea
28181 \end_layout
28182
28183 \end_inset
28184 </cell>
28185 </row>
28186 <row topline="true">
28187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28188 \begin_inset Text
28189
28190 \begin_layout Standard
28191 theight%
28192 \end_layout
28193
28194 \end_inset
28195 </cell>
28196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28197 \begin_inset Text
28198
28199 \begin_layout Standard
28200 % de altura de texto
28201 \end_layout
28202
28203 \end_inset
28204 </cell>
28205 </row>
28206 <row topline="true">
28207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28208 \begin_inset Text
28209
28210 \begin_layout Standard
28211 pheight%
28212 \end_layout
28213
28214 \end_inset
28215 </cell>
28216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28217 \begin_inset Text
28218
28219 \begin_layout Standard
28220 % de altura de página
28221 \end_layout
28222
28223 \end_inset
28224 </cell>
28225 </row>
28226 <row topline="true">
28227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28228 \begin_inset Text
28229
28230 \begin_layout Standard
28231 ex
28232 \end_layout
28233
28234 \end_inset
28235 </cell>
28236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28237 \begin_inset Text
28238
28239 \begin_layout Standard
28240 altura de la letra 
28241 \emph on
28242 x
28243 \emph default
28244  en la fuente actual
28245 \end_layout
28246
28247 \end_inset
28248 </cell>
28249 </row>
28250 <row topline="true">
28251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28252 \begin_inset Text
28253
28254 \begin_layout Standard
28255 em
28256 \end_layout
28257
28258 \end_inset
28259 </cell>
28260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28261 \begin_inset Text
28262
28263 \begin_layout Standard
28264 anchura de la letra 
28265 \emph on
28266 M
28267 \emph default
28268  en la fuente actual
28269 \end_layout
28270
28271 \end_inset
28272 </cell>
28273 </row>
28274 <row topline="true" bottomline="true">
28275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28276 \begin_inset Text
28277
28278 \begin_layout Standard
28279 mu
28280 \end_layout
28281
28282 \end_inset
28283 </cell>
28284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28285 \begin_inset Text
28286
28287 \begin_layout Standard
28288 unidad matemática (1\InsetSpace \thinspace{}
28289 mu = 1/18\InsetSpace \thinspace{}
28290 em)
28291 \end_layout
28292
28293 \end_inset
28294 </cell>
28295 </row>
28296 </lyxtabular>
28297
28298 \end_inset
28299
28300
28301 \end_layout
28302
28303 \end_inset
28304
28305
28306 \end_layout
28307
28308 \begin_layout Chapter
28309 Formatos de Archivos de Salida con Gráficos
28310 \begin_inset LatexCommand label
28311 name "cha:Formatos-de-Archivos-de-Salida"
28312
28313 \end_inset
28314
28315
28316 \end_layout
28317
28318 \begin_layout Section
28319 DVI
28320 \begin_inset LatexCommand index
28321 name "Formatos de Archivo ! DVI"
28322
28323 \end_inset
28324
28325
28326 \begin_inset LatexCommand index
28327 name "DVI|see{Formatos de Archivo}"
28328
28329 \end_inset
28330
28331
28332 \end_layout
28333
28334 \begin_layout Standard
28335 Este tipo de archivo tiene la extensión 
28336 \begin_inset Quotes eld
28337 \end_inset
28338
28339
28340 \family typewriter
28341 .dvi
28342 \family default
28343
28344 \begin_inset Quotes erd
28345 \end_inset
28346
28347 .
28348  Se denomina 
28349 \begin_inset Quotes eld
28350 \end_inset
28351
28352 device-independent
28353 \begin_inset Quotes erd
28354 \end_inset
28355
28356  (DVI), porque es completamente portable; se pueden mover de una máquina
28357  a otra sin necesidad de conversión alguna.
28358  En la época en que se desarrolló este formato, esto no era un asunto baladí.
28359  Los DVIs se usan para previsualizaciones rápidas y como preparación para
28360  otros formatos de salida como PostScript.
28361 \end_layout
28362
28363 \begin_layout Standard
28364 \begin_inset Note Greyedout
28365 status open
28366
28367 \begin_layout Standard
28368
28369 \series bold
28370 Nota:
28371 \series default
28372  Los archivos DVI no contienen imágenes, sino enlaces a ellas.
28373 \end_layout
28374
28375 \end_inset
28376
28377  Por tanto no debes olvidar esto si mueves archivos 
28378 \family typewriter
28379 .dvi
28380 \family default
28381  a otro ordenador.
28382  Esta característica también puede retardar la visualización del archivo,
28383  porque el visor DVI tiene que convertir la imagen en segundo plano para
28384  hacerla visible al deslizar el visor.
28385  Así pues recomendamos usar PDF para archivos con muchas imágenes.
28386 \end_layout
28387
28388 \begin_layout Standard
28389 Un documento se exporta a DVI con el menú 
28390 \family sans
28391 Archivo\SpecialChar \menuseparator
28392 Exportar\SpecialChar \menuseparator
28393 DVI
28394 \family default
28395 .
28396  Puedes ver la salida del documento en DVI con el menú 
28397 \family sans
28398 Ver\SpecialChar \menuseparator
28399 DVI 
28400 \family default
28401 o con el botón\InsetSpace ~
28402
28403 \begin_inset Graphics
28404         filename ../../images/buffer-view_dvi.xpm
28405         scale 85
28406
28407 \end_inset
28408
28409 .
28410 \end_layout
28411
28412 \begin_layout Section
28413 PostScript
28414 \begin_inset LatexCommand label
28415 name "sec:PostScript"
28416
28417 \end_inset
28418
28419
28420 \begin_inset LatexCommand index
28421 name "Formatos de Archivo ! PostScript"
28422
28423 \end_inset
28424
28425
28426 \begin_inset LatexCommand index
28427 name "PostScript|see{Formatos de Archivo}"
28428
28429 \end_inset
28430
28431
28432 \end_layout
28433
28434 \begin_layout Standard
28435 Este tipo de archivo tiene la extensión 
28436 \begin_inset Quotes eld
28437 \end_inset
28438
28439
28440 \family typewriter
28441 .ps
28442 \family default
28443
28444 \begin_inset Quotes erd
28445 \end_inset
28446
28447 .
28448  PostScript fue desarrollado por la compañía 
28449 \family typewriter
28450 Adobe
28451 \family default
28452  como lenguaje para impresoras.
28453  Por eso estos archivos contienen comandos que usa la impresora para imprimirlos.
28454  PostScript puede considerarse como un 
28455 \begin_inset Quotes eld
28456 \end_inset
28457
28458 lenguaje de programación
28459 \begin_inset Quotes erd
28460 \end_inset
28461
28462 ; con él puedes calcular y dibujar imágenes y diagramas
28463 \begin_inset Foot
28464 status collapsed
28465
28466 \begin_layout Standard
28467 Si estás interesado en este tema acude al paquete LaTeX 
28468 \series bold
28469 PSTricks
28470 \series default
28471  
28472 \begin_inset LatexCommand cite
28473 key "pstricks"
28474
28475 \end_inset
28476
28477 .
28478 \end_layout
28479
28480 \end_inset
28481
28482 .
28483  Por esto los archivos suelen ser más grandes que los PDFs.
28484 \end_layout
28485
28486 \begin_layout Standard
28487 Los archivos PostScript solo pueden contener imágenes en el formato 
28488 \begin_inset Quotes eld
28489 \end_inset
28490
28491 Encapsulated PostScript
28492 \begin_inset Quotes erd
28493 \end_inset
28494
28495  (EPS, extensión 
28496 \begin_inset Quotes eld
28497 \end_inset
28498
28499
28500 \family typewriter
28501 .eps
28502 \family default
28503
28504 \begin_inset Quotes erd
28505 \end_inset
28506
28507 ).
28508  Como LyX permite usar cualquier formato de imagen conocido, tiene que trabajar
28509  en segundo plano para convertir las imágenes a EPS.
28510  Si por ejemplo, el documento tiene 50 imágenes, LyX ha de hacer 50 conversiones
28511  cada vez que veas o exportes el documento.
28512  Esto ralentizará mucho el trabajo, así que si piensas usar PostScript,
28513  puedes evitar el problema insertando las imágenes directamente en EPS.
28514 \end_layout
28515
28516 \begin_layout Standard
28517 El documento se puede exportar a PostScript con el menú 
28518 \family sans
28519 Archivo\SpecialChar \menuseparator
28520 Exportar\SpecialChar \menuseparator
28521 Postscript
28522 \family default
28523 .
28524  Se puede ver la salida en PostScript con el menú 
28525 \family sans
28526 Ver\SpecialChar \menuseparator
28527 Postscript 
28528 \family default
28529 o con el botón\InsetSpace ~
28530
28531 \begin_inset Graphics
28532         filename ../../images/buffer-view_ps.xpm
28533
28534 \end_inset
28535
28536 .
28537 \end_layout
28538
28539 \begin_layout Section
28540 PDF
28541 \begin_inset LatexCommand label
28542 name "sec:PDF"
28543
28544 \end_inset
28545
28546
28547 \begin_inset LatexCommand index
28548 name "Formatos de Archivo ! PDF"
28549
28550 \end_inset
28551
28552
28553 \begin_inset LatexCommand index
28554 name "PDF"
28555
28556 \end_inset
28557
28558
28559 \end_layout
28560
28561 \begin_layout Standard
28562 Este tipo de archivo tiene la extensión 
28563 \begin_inset Quotes eld
28564 \end_inset
28565
28566
28567 \family typewriter
28568 .pdf
28569 \family default
28570
28571 \begin_inset Quotes erd
28572 \end_inset
28573
28574 .
28575  El formato 
28576 \begin_inset Quotes eld
28577 \end_inset
28578
28579 Portable Document Format
28580 \begin_inset Quotes erd
28581 \end_inset
28582
28583  (PDF) fue desarrollado por 
28584 \family typewriter
28585 Adobe
28586 \family default
28587  como derivado de PostScript.
28588  Es más comprimido y utiliza muchos menos comandos que PostScript.
28589  Como su nombre 
28590 \begin_inset Quotes eld
28591 \end_inset
28592
28593 portable
28594 \begin_inset Quotes erd
28595 \end_inset
28596
28597  indica, puede ser procesado por cualquier sistema operativo y la salida
28598  impresa se muestra exactamente igual.
28599 \end_layout
28600
28601 \begin_layout Standard
28602 PDF puede contener imágenes en su propio formato PDF, en el formato 
28603 \begin_inset Quotes eld
28604 \end_inset
28605
28606 Joint Photographic Experts Group
28607 \begin_inset Quotes erd
28608 \end_inset
28609
28610  (JPG, extensión 
28611 \begin_inset Quotes eld
28612 \end_inset
28613
28614
28615 \family typewriter
28616 .jpg
28617 \family default
28618
28619 \begin_inset Quotes erd
28620 \end_inset
28621
28622  o 
28623 \begin_inset Quotes eld
28624 \end_inset
28625
28626
28627 \family typewriter
28628 .jpeg
28629 \family default
28630
28631 \begin_inset Quotes erd
28632 \end_inset
28633
28634 ), y en el formato 
28635 \begin_inset Quotes eld
28636 \end_inset
28637
28638 Portable Network Graphics
28639 \begin_inset Quotes erd
28640 \end_inset
28641
28642  (PNG, extensión 
28643 \begin_inset Quotes eld
28644 \end_inset
28645
28646
28647 \family typewriter
28648 .png
28649 \family default
28650
28651 \begin_inset Quotes erd
28652 \end_inset
28653
28654 ).
28655  Aunque puedes poner cualquier otro formato de imagen, porque LyX los convierte
28656  en segundo plano a alguno de los anteriores.
28657  Pero como se ha comentado en la sección sobre PostScript, la conversión
28658  de gráficos ralentiza el trabajo.
28659  Por tanto se recomienda utilizar alguno de los tres formatos de imagen
28660  mencionados.
28661 \end_layout
28662
28663 \begin_layout Standard
28664 Un documento se puede exportar a PDF con el menú 
28665 \family sans
28666 Archivo\SpecialChar \menuseparator
28667 Exportar
28668 \family default
28669  en tres modos diferentes:
28670 \end_layout
28671
28672 \begin_layout Description
28673 PDF Este utiliza el programa 
28674 \family typewriter
28675 ps2pdf
28676 \family default
28677  que crea un PDF a partir de una versión PostScript del archivo.
28678  La versión PostScript es producida por el programa 
28679 \family typewriter
28680 dvips
28681 \family default
28682  que usa una versión DVI como paso intermedio.
28683  Así que este modo de exportación consta de tres conversiones.
28684 \end_layout
28685
28686 \begin_layout Description
28687 PDF\InsetSpace ~
28688 (dvipdfm) Este utiliza el programa 
28689 \family typewriter
28690 dvipdfm
28691 \family default
28692  que convierte el archivo a DVI en segundo plano y en un segundo paso a
28693  PDF.
28694 \end_layout
28695
28696 \begin_layout Description
28697 PDF\InsetSpace ~
28698 (pdflatex) Este utiliza el programa 
28699 \family typewriter
28700 pdftex
28701 \family default
28702  que convierte directamente el archivo a PDF.
28703 \end_layout
28704
28705 \begin_layout Standard
28706 Se recomienda usar 
28707 \family sans
28708 PDF\InsetSpace ~
28709 (pdflatex)
28710 \family default
28711  porque 
28712 \family typewriter
28713 pdftex
28714 \family default
28715  soporta todas las características de las versiones actuales de PDF, es
28716  rápido y estable.
28717  El programa 
28718 \family typewriter
28719 dvipdfm
28720 \family default
28721  ya no se desarrolla y está un poco obsoleto.
28722 \end_layout
28723
28724 \begin_layout Standard
28725 La salida en formato PDF se puede ver con el menú 
28726 \family sans
28727 Ver 
28728 \family default
28729 o con el botón\InsetSpace ~
28730
28731 \begin_inset Graphics
28732         filename ../../images/buffer-view_pdf2.xpm
28733         scale 85
28734
28735 \end_inset
28736
28737  (que usa 
28738 \family sans
28739 PDF\InsetSpace ~
28740 (pdflatex)
28741 \family default
28742 ).
28743 \end_layout
28744
28745 \begin_layout Chapter
28746 Explicación de la Ecuación\InsetSpace ~
28747
28748 \begin_inset LatexCommand eqref
28749 reference "eq:Wgn"
28750
28751 \end_inset
28752
28753
28754 \begin_inset LatexCommand label
28755 name "cha:Explicación-de-la-Ecuación"
28756
28757 \end_inset
28758
28759
28760 \end_layout
28761
28762 \begin_layout Standard
28763 La anchura total de 
28764 \emph on
28765 n
28766 \emph default
28767  celdas de una tabla 
28768 \begin_inset Formula $W_{\mathrm{tot\, n}}$
28769 \end_inset
28770
28771  puede calcularse con
28772 \end_layout
28773
28774 \begin_layout Standard
28775 \begin_inset Formula \begin{equation}
28776 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
28777
28778 \end_inset
28779
28780
28781 \end_layout
28782
28783 \begin_layout Standard
28784 donde 
28785 \begin_inset Formula $W_{g\, n}$
28786 \end_inset
28787
28788  es el ancho dado de todas las celdas.
28789  
28790 \series bold
28791
28792 \backslash
28793 tabcolsep
28794 \series default
28795  es la longitud LaTeX entre el texto y el borde de la celda, 6\InsetSpace \thinspace{}
28796 pt por defecto.
28797  
28798 \series bold
28799
28800 \backslash
28801 arrayrulewidth
28802 \series default
28803  es el grosor de línea del borde, 0.4\InsetSpace \thinspace{}
28804 pt por defecto.
28805 \end_layout
28806
28807 \begin_layout Standard
28808 Procediendo como en la ecuación\InsetSpace ~
28809
28810 \begin_inset LatexCommand eqref
28811 reference "eq:Wtot_n"
28812
28813 \end_inset
28814
28815 , el ancho total de una multicolumna, 
28816 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
28817 \end_inset
28818
28819  es
28820 \end_layout
28821
28822 \begin_layout Standard
28823 \begin_inset Formula \begin{equation}
28824 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
28825
28826 \end_inset
28827
28828
28829 \end_layout
28830
28831 \begin_layout Standard
28832 Igualando las ecuaciones\InsetSpace ~
28833
28834 \begin_inset LatexCommand eqref
28835 reference "eq:Wtot_n"
28836
28837 \end_inset
28838
28839  y 
28840 \begin_inset LatexCommand eqref
28841 reference "eq:Wtot_mult"
28842
28843 \end_inset
28844
28845  podemos calcular el ancho dado necesario 
28846 \begin_inset Formula $W_{g\, n}$
28847 \end_inset
28848
28849  cuando se expanden 
28850 \emph on
28851 n
28852 \emph default
28853  columnas, de forma que cada una de ellas tiene una anchura total  
28854 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
28855 \end_inset
28856
28857 :
28858 \end_layout
28859
28860 \begin_layout Standard
28861 \begin_inset Formula \begin{equation}
28862 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
28863
28864 \end_inset
28865
28866
28867 \end_layout
28868
28869 \begin_layout Bibliography
28870 \begin_inset LatexCommand bibitem
28871 key "latexcompanion"
28872
28873 \end_inset
28874
28875 Frank Mittelbach and Michel Goossens: 
28876 \emph on
28877 The LaTeX Companion Second Edition.
28878
28879 \emph default
28880  Addison-Wesley, 2004
28881 \end_layout
28882
28883 \begin_layout Bibliography
28884 \begin_inset LatexCommand bibitem
28885 key "latexguide"
28886
28887 \end_inset
28888
28889 Helmut Kopka and Patrick W.
28890  Daly: 
28891 \emph on
28892 A Guide to LaTeX Fourth Edition.
28893
28894 \emph default
28895  Addison-Wesley, 2003
28896 \end_layout
28897
28898 \begin_layout Bibliography
28899 \begin_inset LatexCommand bibitem
28900 key "latexbook"
28901
28902 \end_inset
28903
28904 Leslie Lamport: 
28905 \emph on
28906 LaTeX: A Document Preparation System.
28907
28908 \emph default
28909  Addison-Wesley, second edition, 1994
28910 \end_layout
28911
28912 \begin_layout Bibliography
28913 \begin_inset LatexCommand bibitem
28914 key "booktabs"
28915
28916 \end_inset
28917
28918
28919 \begin_inset ERT
28920 status collapsed
28921
28922 \begin_layout Standard
28923
28924
28925 \backslash
28926 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
28927 {
28928 \end_layout
28929
28930 \end_inset
28931
28932 Documentación
28933 \begin_inset ERT
28934 status collapsed
28935
28936 \begin_layout Standard
28937
28938 }
28939 \end_layout
28940
28941 \end_inset
28942
28943  del paquete LaTeX 
28944 \series bold
28945 booktabs
28946 \series default
28947
28948 \begin_inset LatexCommand index
28949 name "LaTeX-paquetes ! booktabs"
28950
28951 \end_inset
28952
28953
28954 \end_layout
28955
28956 \begin_layout Bibliography
28957 \begin_inset LatexCommand bibitem
28958 key "caption"
28959
28960 \end_inset
28961
28962
28963 \begin_inset ERT
28964 status collapsed
28965
28966 \begin_layout Standard
28967
28968
28969 \backslash
28970 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
28971 \end_layout
28972
28973 \end_inset
28974
28975 Documentación
28976 \begin_inset ERT
28977 status collapsed
28978
28979 \begin_layout Standard
28980
28981 }
28982 \end_layout
28983
28984 \end_inset
28985
28986  del paquete LaTeX 
28987 \series bold
28988 caption
28989 \series default
28990
28991 \begin_inset LatexCommand index
28992 name "LaTeX-paquetes ! caption"
28993
28994 \end_inset
28995
28996
28997 \end_layout
28998
28999 \begin_layout Bibliography
29000 \begin_inset LatexCommand bibitem
29001 key "caption-de"
29002
29003 \end_inset
29004
29005
29006 \begin_inset ERT
29007 status collapsed
29008
29009 \begin_layout Standard
29010
29011
29012 \backslash
29013 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
29014 {
29015 \end_layout
29016
29017 \end_inset
29018
29019 Documentación
29020 \begin_inset ERT
29021 status collapsed
29022
29023 \begin_layout Standard
29024
29025 }
29026 \end_layout
29027
29028 \end_inset
29029
29030  en alemán del paquete LaTeX 
29031 \series bold
29032 caption
29033 \end_layout
29034
29035 \begin_layout Bibliography
29036 \begin_inset LatexCommand bibitem
29037 key "endfloat"
29038
29039 \end_inset
29040
29041
29042 \begin_inset ERT
29043 status collapsed
29044
29045 \begin_layout Standard
29046
29047
29048 \backslash
29049 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
29050 {
29051 \end_layout
29052
29053 \end_inset
29054
29055 Documentación
29056 \begin_inset ERT
29057 status collapsed
29058
29059 \begin_layout Standard
29060
29061 }
29062 \end_layout
29063
29064 \end_inset
29065
29066  del paquete LaTeX 
29067 \series bold
29068 endf\SpecialChar \textcompwordmark{}
29069 loat
29070 \series default
29071
29072 \begin_inset LatexCommand index
29073 name "LaTeX-paquetes ! endfloat"
29074
29075 \end_inset
29076
29077
29078 \end_layout
29079
29080 \begin_layout Bibliography
29081 \begin_inset LatexCommand bibitem
29082 key "floatflt"
29083
29084 \end_inset
29085
29086
29087 \begin_inset ERT
29088 status collapsed
29089
29090 \begin_layout Standard
29091
29092
29093 \backslash
29094 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
29095 {
29096 \end_layout
29097
29098 \end_inset
29099
29100 Documentación
29101 \begin_inset ERT
29102 status collapsed
29103
29104 \begin_layout Standard
29105
29106 }
29107 \end_layout
29108
29109 \end_inset
29110
29111  del paquete LaTeX 
29112 \series bold
29113 floatf\SpecialChar \textcompwordmark{}
29114 lt
29115 \series default
29116
29117 \begin_inset LatexCommand index
29118 name "LaTeX-paquetes ! floatflt"
29119
29120 \end_inset
29121
29122
29123 \end_layout
29124
29125 \begin_layout Bibliography
29126 \begin_inset LatexCommand bibitem
29127 key "footmisc"
29128
29129 \end_inset
29130
29131
29132 \begin_inset ERT
29133 status collapsed
29134
29135 \begin_layout Standard
29136
29137
29138 \backslash
29139 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
29140 {
29141 \end_layout
29142
29143 \end_inset
29144
29145 Documentación
29146 \begin_inset ERT
29147 status collapsed
29148
29149 \begin_layout Standard
29150
29151 }
29152 \end_layout
29153
29154 \end_inset
29155
29156  del paquete LaTeX 
29157 \series bold
29158 footmisc
29159 \series default
29160
29161 \begin_inset LatexCommand index
29162 name "LaTeX-paquetes ! footmisc"
29163
29164 \end_inset
29165
29166
29167 \end_layout
29168
29169 \begin_layout Bibliography
29170 \begin_inset LatexCommand bibitem
29171 key "hypcap"
29172
29173 \end_inset
29174
29175
29176 \begin_inset ERT
29177 status collapsed
29178
29179 \begin_layout Standard
29180
29181
29182 \backslash
29183 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
29184 \end_layout
29185
29186 \end_inset
29187
29188 Documentación
29189 \begin_inset ERT
29190 status collapsed
29191
29192 \begin_layout Standard
29193
29194 }
29195 \end_layout
29196
29197 \end_inset
29198
29199  del paquete LaTeX 
29200 \series bold
29201 hypcap
29202 \series default
29203
29204 \begin_inset LatexCommand index
29205 name "LaTeX-paquetes ! hyperref"
29206
29207 \end_inset
29208
29209
29210 \end_layout
29211
29212 \begin_layout Bibliography
29213 \begin_inset LatexCommand bibitem
29214 key "hyperref"
29215
29216 \end_inset
29217
29218
29219 \begin_inset ERT
29220 status collapsed
29221
29222 \begin_layout Standard
29223
29224
29225 \backslash
29226 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
29227 {
29228 \end_layout
29229
29230 \end_inset
29231
29232 Documentación
29233 \begin_inset ERT
29234 status collapsed
29235
29236 \begin_layout Standard
29237
29238 }
29239 \end_layout
29240
29241 \end_inset
29242
29243  del paquete LaTeX 
29244 \series bold
29245 hyperref
29246 \series default
29247
29248 \begin_inset LatexCommand index
29249 name "LaTeX-paquetes ! hyperref"
29250
29251 \end_inset
29252
29253
29254 \end_layout
29255
29256 \begin_layout Bibliography
29257 \begin_inset LatexCommand bibitem
29258 key "koma-script"
29259
29260 \end_inset
29261
29262
29263 \begin_inset ERT
29264 status collapsed
29265
29266 \begin_layout Standard
29267
29268
29269 \backslash
29270 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
29271 df}{
29272 \end_layout
29273
29274 \end_inset
29275
29276 Documentación
29277 \begin_inset ERT
29278 status collapsed
29279
29280 \begin_layout Standard
29281
29282 }
29283 \end_layout
29284
29285 \end_inset
29286
29287  del paquete LaTeX 
29288 \series bold
29289 koma-script
29290 \series default
29291
29292 \begin_inset LatexCommand index
29293 name "LaTeX-paquetes ! koma-script"
29294
29295 \end_inset
29296
29297
29298 \end_layout
29299
29300 \begin_layout Bibliography
29301 \begin_inset LatexCommand bibitem
29302 key "koma-script-de"
29303
29304 \end_inset
29305
29306
29307 \begin_inset ERT
29308 status collapsed
29309
29310 \begin_layout Standard
29311
29312
29313 \backslash
29314 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
29315 df}{
29316 \end_layout
29317
29318 \end_inset
29319
29320 Documentación
29321 \begin_inset ERT
29322 status collapsed
29323
29324 \begin_layout Standard
29325
29326 }
29327 \end_layout
29328
29329 \end_inset
29330
29331  en alemán del paquete LaTeX 
29332 \series bold
29333 koma-script
29334 \series default
29335
29336 \begin_inset LatexCommand index
29337 name "LaTeX-paquetes ! koma-script"
29338
29339 \end_inset
29340
29341
29342 \end_layout
29343
29344 \begin_layout Bibliography
29345 \begin_inset LatexCommand bibitem
29346 key "marginnote"
29347
29348 \end_inset
29349
29350
29351 \begin_inset ERT
29352 status collapsed
29353
29354 \begin_layout Standard
29355
29356
29357 \backslash
29358 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
29359 pdf}{
29360 \end_layout
29361
29362 \end_inset
29363
29364 Documentación
29365 \begin_inset ERT
29366 status collapsed
29367
29368 \begin_layout Standard
29369
29370 }
29371 \end_layout
29372
29373 \end_inset
29374
29375  del paquete LaTeX 
29376 \series bold
29377 marginnote
29378 \series default
29379
29380 \begin_inset LatexCommand index
29381 name "LaTeX-paquetes ! marginnote"
29382
29383 \end_inset
29384
29385
29386 \end_layout
29387
29388 \begin_layout Bibliography
29389 \begin_inset LatexCommand bibitem
29390 key "pstricks"
29391
29392 \end_inset
29393
29394
29395 \begin_inset ERT
29396 status collapsed
29397
29398 \begin_layout Standard
29399
29400
29401 \backslash
29402 href{http://tug.org/PSTricks/main.cgi/}{
29403 \end_layout
29404
29405 \end_inset
29406
29407 Página Web
29408 \begin_inset ERT
29409 status collapsed
29410
29411 \begin_layout Standard
29412
29413 }
29414 \end_layout
29415
29416 \end_inset
29417
29418  del paquete LaTeX 
29419 \series bold
29420 PSTricks
29421 \series default
29422
29423 \begin_inset LatexCommand index
29424 name "LaTeX-paquetes ! PSTricks"
29425
29426 \end_inset
29427
29428
29429 \end_layout
29430
29431 \begin_layout Bibliography
29432 \begin_inset LatexCommand bibitem
29433 key "sidecap"
29434
29435 \end_inset
29436
29437
29438 \begin_inset ERT
29439 status collapsed
29440
29441 \begin_layout Standard
29442
29443
29444 \backslash
29445 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
29446 \end_layout
29447
29448 \end_inset
29449
29450 Documentación
29451 \begin_inset ERT
29452 status collapsed
29453
29454 \begin_layout Standard
29455
29456 }
29457 \end_layout
29458
29459 \end_inset
29460
29461  del paquete LaTeX 
29462 \series bold
29463 sidecap
29464 \series default
29465
29466 \begin_inset LatexCommand index
29467 name "LaTeX-paquetes ! sidecap"
29468
29469 \end_inset
29470
29471
29472 \end_layout
29473
29474 \begin_layout Bibliography
29475 \begin_inset LatexCommand bibitem
29476 key "NewInLyX15"
29477
29478 \end_inset
29479
29480
29481 \begin_inset ERT
29482 status collapsed
29483
29484 \begin_layout Standard
29485
29486
29487 \backslash
29488 href{http://wiki.lyx.org/LyX/NewInLyX15}{
29489 \end_layout
29490
29491 \end_inset
29492
29493 Página Wiki
29494 \begin_inset ERT
29495 status collapsed
29496
29497 \begin_layout Standard
29498
29499 }
29500 \end_layout
29501
29502 \end_inset
29503
29504  sobre características nuevas previstas para la versión 
29505 \family sans
29506 LyX\InsetSpace ~
29507 1.5
29508 \family default
29509 .
29510 \end_layout
29511
29512 \begin_layout Standard
29513 \begin_inset LatexCommand printindex
29514
29515 \end_inset
29516
29517
29518 \end_layout
29519
29520 \begin_layout Standard
29521 \begin_inset FloatList figure
29522
29523 \end_inset
29524
29525
29526 \end_layout
29527
29528 \begin_layout Standard
29529 \begin_inset FloatList table
29530
29531 \end_inset
29532
29533
29534 \end_layout
29535
29536 \end_body
29537 \end_document