]> git.lyx.org Git - lyx.git/blob - lib/doc/EmbeddedObjects.lyx
add missing clipart directories
[lyx.git] / lib / doc / 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 % if pdflatex is used
8 \usepackage{ifpdf}
9 \ifpdf
10
11 % set fonts for nicer pdf view
12 \IfFileExists{lmodern.sty}
13  {\usepackage{lmodern}} % if it exists
14  {% if it exists not
15   \usepackage[scaled=0.92]{helvet}
16   \usepackage{mathptmx}
17   \usepackage{courier}
18  } % end if it exists not
19
20 % link all cross references and URLs
21 % in pdf output
22  \usepackage[colorlinks=true, bookmarks, bookmarksnumbered, bookmarksopen, bookmarksopenlevel=1,
23   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,
24   pdfpagelayout=OneColumn, pdfnewwindow=true,
25   pdfstartview=XYZ, plainpages=false, pdfpagelabels,
26   pdfauthor={LyX Team}, pdftex,
27   pdftitle={LyX's Figure, Table, Floats, Notes, and Boxes manual},
28   pdfsubject={LyX-documentation about figures, tables, floats, notes, and boxes},
29   pdfkeywords={LyX, Tables, Figures, Floats, Boxes, Notes}]{hyperref}
30  
31 \else % if dvi or ps is produced
32
33  % link all cross references and URLs in DVI output
34  \usepackage[ps2pdf, colorlinks=true,
35   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue]{hyperref}
36
37 \fi % end if pdflatex is used
38
39 % that links to image floats jumps
40 % to the beginning of the float and 
41 % not to its caption
42 \usepackage[figure]{hypcap}
43
44 % the pages of the TOC are numbered roman
45 % and a PDF-bookmark for the TOC is added
46 \pagenumbering{roman}
47 \let\myTOC\tableofcontents
48 \renewcommand{\tableofcontents}{%
49  \pdfbookmark[1]{Contents}{}
50  \myTOC
51  \cleardoublepage
52  \pagenumbering{arabic}}
53
54 % provides caption formatting
55 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}[2004/07/16]
56
57 % provides commands to set caption
58 % beside tables/images
59 \usepackage{sidecap}
60
61 \newcommand{\TabBesBeg}{%
62  \let\MyTable\table
63  \let\MyEndtable\endtable
64  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
65
66 \newcommand{\TabBesEnd}{%
67  \let\table\MyTable
68  \let\endtable\MyEndtable}
69
70 \newcommand{\FigBesBeg}{%
71  \let\MyFigure\figure
72  \let\MyEndfigure\endfigure
73  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
74
75 \newcommand{\FigBesEnd}{%
76  \let\figure\MyFigure
77  \let\endfigure\MyEndfigure}
78
79 % enables calculation of values,
80 \usepackage{calc}
81
82 % provides special table cell alignments
83 \usepackage{dcolumn}
84
85 % increase the bottom float placement fraction
86 \renewcommand{\bottomfraction}{0.5}
87
88 % avoids that floats are placed before their
89 % corresponding section starts
90 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
91
92 % speed up the longtable calculation
93 \setcounter{LTchunksize}{100}
94
95 % used for colored tables
96 \@ifundefined{textcolor}
97  {\usepackage{color}}{}
98 \usepackage{colortbl}
99 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
100 \definecolor{lightgrey}{gray}{0.8}
101
102 % used for multirows
103 \usepackage{multirow}
104 %\renewcommand{\multirowsetup}{\centering}
105
106 % used for book-style tables
107 \usepackage{booktabs}
108
109 % used to have extra space in table cells,
110 \setlength{\extrarowheight}{2pt}
111
112 % used for customized tables
113 % ---
114 \newcolumntype{M}[1]
115  {>{\centering\hspace{0pt}}m{#1}}
116
117 \newcolumntype{S}[2]
118  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
119
120 \newcolumntype{K}[1]
121  {>{\columncolor{#1}\hspace{0pt}}c}
122
123 \newcolumntype{V}{!{\vrule width 1.5pt}}
124
125 \newcolumntype{W}{!{\color{green}\vline}}
126 % ---
127
128 % To be able to enter the characters ° and · directly in LyX
129 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
130 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
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}{Algorithm}
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
173 \language english
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 "Uwe Stöhr" 
208 \author "" 
209 \end_header
210
211 \begin_body
212
213 \begin_layout Title
214 LyX's detailed Figure, Table, Floats, Notes, and Boxes manual
215 \end_layout
216
217 \begin_layout Author
218 by the LyX Team
219 \begin_inset Foot
220 status collapsed
221
222 \begin_layout Standard
223 \noindent
224 If you have comments or error corrections, please send them to the LyX Documenta
225 tion mailing list: 
226 \family typewriter
227
228 \begin_inset ERT
229 status open
230
231 \begin_layout Standard
232
233
234 \backslash
235 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's ExtendedInsets manual}{
236 \end_layout
237
238 \end_inset
239
240 lyx-docs@lists.lyx.org
241 \begin_inset ERT
242 status collapsed
243
244 \begin_layout Standard
245
246 }
247 \end_layout
248
249 \end_inset
250
251
252 \end_layout
253
254 \end_inset
255
256
257 \begin_inset Note Note
258 status collapsed
259
260 \begin_layout Standard
261 original author: Uwe Stöhr
262 \end_layout
263
264 \end_inset
265
266
267 \newline
268
269 \newline
270
271 \family sans
272 Version 1.5.0-
273 \family default
274 1
275 \end_layout
276
277 \begin_layout Standard
278 \begin_inset LatexCommand tableofcontents
279
280 \end_inset
281
282
283 \end_layout
284
285 \begin_layout Standard
286 \begin_inset Note Note
287 status open
288
289 \begin_layout Standard
290 To export all parts of this document to PDF, PS, or DVI the LaTeX-packages
291  
292 \series bold
293 arydshln
294 \series default
295  and 
296 \series bold
297 marginnote
298 \series default
299  must be installed.
300  If they are not installed you can export the document anyway but the sections
301  where the packages are required won't appear in the output.
302 \end_layout
303
304 \begin_layout Standard
305 The latest PDF-version of this document can be found here:
306 \newline
307
308 \series bold
309 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
310 \end_layout
311
312 \end_inset
313
314
315 \end_layout
316
317 \begin_layout Chapter
318 Figures
319 \begin_inset LatexCommand label
320 name "cha:Figures"
321
322 \end_inset
323
324
325 \begin_inset LatexCommand index
326 name "Figure"
327
328 \end_inset
329
330
331 \end_layout
332
333 \begin_layout Section
334 Graphics Dialog
335 \begin_inset LatexCommand index
336 name "Figure ! Graphics Dialog"
337
338 \end_inset
339
340
341 \end_layout
342
343 \begin_layout Standard
344 To insert an image into your document, place the cursor at the text position
345  you want and click on the toolbar icon 
346 \begin_inset Graphics
347         filename ../images/dialog-show-new-inset_graphics.xpm
348         scale 85
349
350 \end_inset
351
352  or use the menu 
353 \family sans
354 Insert\SpecialChar \menuseparator
355 Graphics
356 \family default
357 .
358  Then a dialog will appear to choose the file to load.
359  The image will appear in the output exactly at the position where it is
360  in the text.
361 \end_layout
362
363 \begin_layout Standard
364 The graphics dialog can be called at any time by right-clicking on an image.
365  This dialog has three tabs:
366 \end_layout
367
368 \begin_layout Description
369
370 \family sans
371 Graphics
372 \family default
373  Here you can choose an image file and adjust its appearance in the output.
374  The available units for the image size are explained in appendix\InsetSpace ~
375
376 \begin_inset LatexCommand ref
377 reference "cha:Units-available-in"
378
379 \end_inset
380
381 .
382 \newline
383 You can rotate images counter-clockwise by setting a rotation angle and
384  a rotation origin.
385  The image will also be rotated inside LyX.
386 \newline
387 Images can be opened in a program
388  of your choice when pressing the 
389 \family sans
390 Edit
391 \family default
392  button.
393  The program can be set for every image format in the file format settings
394  in LyX's preferences.
395 \end_layout
396
397 \begin_layout Description
398
399 \family sans
400 Clipping
401 \family default
402  Alternatively to the usage of scaling units it is possible to set image
403  coordinates to adjust the height and width of the image in the output.
404  The coordinates can also be calculated automatically by pressing the button
405  
406 \family sans
407 Get\InsetSpace ~
408 from\InsetSpace ~
409 File
410 \family default
411 .
412  The option 
413 \family sans
414 Clip\InsetSpace ~
415 to\InsetSpace ~
416 bounding\InsetSpace ~
417 box
418 \family default
419  will only print the image region within the given coordinates.
420  Normally you don't need to take care about image coordinates and can ignore
421  this tab.
422 \end_layout
423
424 \begin_layout Description
425
426 \family sans
427 Extra\InsetSpace ~
428 options
429 \family default
430  In this tab you can modify the appearance of the image within LyX and set
431  the image to be a subfigure of a figure float with an own caption.
432  Subfigures are explained in section\InsetSpace ~
433
434 \begin_inset LatexCommand ref
435 reference "sec:Figure-Floats"
436
437 \end_inset
438
439 .
440 \newline
441  LaTeX experts can also specify on this tab additional LaTeX options.
442 \newline
443  The
444  option 
445 \family sans
446 Draft\InsetSpace ~
447 mode
448 \family default
449  makes the image appear in the output only as a frame with the size of the
450  image.
451 \newline
452 The 
453 \family sans
454 Don't\InsetSpace ~
455 unzip\InsetSpace ~
456 on\InsetSpace ~
457 export
458 \family default
459  option only affects zipped EPS-graphics, e.\InsetSpace \thinspace{}
460 g.\InsetSpace ~
461
462 \emph on
463 x.eps.gz
464 \emph default
465 .
466  When the option is used the images will not be unzipped on export, since
467  LaTeX can handle them as they are.
468 \newline
469 Zipped EPS-graphics are useful to save
470  disk space when you choose PostScript as output format, see appendix\InsetSpace ~
471
472 \begin_inset LatexCommand ref
473 reference "sec:PostScript"
474
475 \end_inset
476
477 .
478  To zip EPS-graphics, use the following commands in a UNIX-shell or a Windows
479  console:
480 \newline
481
482 \series bold
483 gzip x.eps
484 \series default
485
486 \newline
487
488 \series bold
489 zgrep %%Bounding x.eps.gz > x.eps.bb
490 \series default
491
492 \newline
493 The second command creates the bounding box file 
494 \begin_inset Quotes eld
495 \end_inset
496
497 x.eps.bb
498 \begin_inset Quotes erd
499 \end_inset
500
501  that is needed by LaTeX for zipped graphics.
502 \end_layout
503
504 \begin_layout Standard
505 \begin_inset VSpace bigskip
506 \end_inset
507
508
509 \end_layout
510
511 \begin_layout Standard
512 This is an example image in EPS format
513 \begin_inset Foot
514 status collapsed
515
516 \begin_layout Standard
517 Image formats are explained in section\InsetSpace ~
518
519 \begin_inset LatexCommand ref
520 reference "sec:Image-Formats"
521
522 \end_inset
523
524 .
525 \end_layout
526
527 \end_inset
528
529  within a separate, horizontally centered paragraph:
530 \end_layout
531
532 \begin_layout Standard
533 \align center
534 \begin_inset Graphics
535         filename clipart/mobius.eps
536         display color
537         scale 70
538         rotateOrigin center
539
540 \end_inset
541
542
543 \end_layout
544
545 \begin_layout Standard
546 This is the same image like the one above but in draft mode:
547 \end_layout
548
549 \begin_layout Standard
550 \align center
551 \begin_inset Graphics
552         filename clipart/mobius.eps
553         display color
554         scale 70
555         draft
556         rotateOrigin center
557
558 \end_inset
559
560
561 \end_layout
562
563 \begin_layout Section
564 Figure Floats
565 \begin_inset LatexCommand label
566 name "sec:Figure-Floats"
567
568 \end_inset
569
570
571 \begin_inset LatexCommand index
572 name "Floats ! Figure Floats"
573
574 \end_inset
575
576
577 \begin_inset LatexCommand index
578 name "Figure ! Floats"
579
580 \end_inset
581
582
583 \end_layout
584
585 \begin_layout Standard
586 For general explanations about floats, have a look at section\InsetSpace ~
587
588 \begin_inset LatexCommand ref
589 reference "sec:FloatIntroduction"
590
591 \end_inset
592
593 .
594 \end_layout
595
596 \begin_layout Standard
597 The toolbar button 
598 \begin_inset Graphics
599         filename ../images/float-insert_figure.xpm
600         scale 85
601
602 \end_inset
603
604  and the menu 
605 \family sans
606 Insert\SpecialChar \menuseparator
607 Float\SpecialChar \menuseparator
608 Figure
609 \family default
610  inserts a float with a caption that has the label 
611 \begin_inset Quotes eld
612 \end_inset
613
614 Figure\InsetSpace ~
615 #:
616 \begin_inset Quotes erd
617 \end_inset
618
619  (# is the actual number).
620  You can insert the image above the caption, like in Figure\InsetSpace ~
621
622 \begin_inset LatexCommand ref
623 reference "fig:kill-plat"
624
625 \end_inset
626
627  or below the caption, like in Figure\InsetSpace ~
628
629 \begin_inset LatexCommand ref
630 reference "fig:escher"
631
632 \end_inset
633
634 .
635  More about the caption placement is described in section\InsetSpace ~
636
637 \begin_inset LatexCommand ref
638 reference "sec:Caption-Placement"
639
640 \end_inset
641
642 .
643 \end_layout
644
645 \begin_layout Standard
646 \begin_inset Float figure
647 wide false
648 sideways false
649 status open
650
651 \begin_layout Standard
652 \align center
653 \begin_inset Graphics
654         filename clipart/platypus.eps
655         display color
656         width 50col%
657         rotateOrigin center
658
659 \end_inset
660
661
662 \end_layout
663
664 \begin_layout Standard
665 \begin_inset Caption
666
667 \begin_layout Standard
668 \begin_inset LatexCommand label
669 name "fig:kill-plat"
670
671 \end_inset
672
673 A severely distorted platypus in a float.
674 \end_layout
675
676 \end_inset
677
678
679 \end_layout
680
681 \end_inset
682
683
684 \end_layout
685
686 \begin_layout Standard
687 \begin_inset Float figure
688 wide false
689 sideways false
690 status open
691
692 \begin_layout Standard
693 \begin_inset Caption
694
695 \begin_layout Standard
696 \begin_inset LatexCommand label
697 name "fig:escher"
698
699 \end_inset
700
701 M.C.
702  Escher on acid.
703 \end_layout
704
705 \end_inset
706
707
708 \end_layout
709
710 \begin_layout Standard
711 \align center
712 \begin_inset Graphics
713         filename clipart/escher-lsd.eps
714         display color
715         scale 80
716         rotateOrigin center
717
718 \end_inset
719
720
721 \end_layout
722
723 \end_inset
724
725
726 \end_layout
727
728 \begin_layout Standard
729 \begin_inset LatexCommand index
730 name "References ! to Figures"
731
732 \end_inset
733
734 Figure\InsetSpace ~
735
736 \begin_inset LatexCommand ref
737 reference "fig:kill-plat"
738
739 \end_inset
740
741  and 
742 \begin_inset LatexCommand ref
743 reference "fig:escher"
744
745 \end_inset
746
747  are examples of referenced figures.
748  Figures can be referenced in the text by referencing their label.
749  To do this insert a label in the caption using the menu 
750 \family sans
751 Insert\SpecialChar \menuseparator
752 Label
753 \family default
754  or the toolbar button 
755 \begin_inset Graphics
756         filename ../images/label-insert.xpm
757         scale 85
758
759 \end_inset
760
761 .
762  You can now refer to the label using the menu 
763 \family sans
764 Insert\SpecialChar \menuseparator
765 Cross\InsetSpace ~
766 reference
767 \family default
768  or the toolbar button 
769 \begin_inset Graphics
770         filename ../images/dialog-show-new-inset_ref.xpm
771         scale 85
772
773 \end_inset
774
775 .
776  It is important to use references to floats, rather than using vague references
777  like 
778 \begin_inset Quotes eld
779 \end_inset
780
781 the figure above
782 \begin_inset Quotes erd
783 \end_inset
784
785 , because as LaTeX will reposition the floats in the final document, it
786  might not be 
787 \begin_inset Quotes eld
788 \end_inset
789
790 above
791 \begin_inset Quotes erd
792 \end_inset
793
794  at all.
795 \newline
796 Referencing is explained in detail in section\InsetSpace ~
797
798 \begin_inset LatexCommand ref
799 reference "sec:Referencing-Floats"
800
801 \end_inset
802
803 .
804 \end_layout
805
806 \begin_layout Standard
807 Normally only one image is inserted to a figure float, but sometimes you
808  might want to use two images with separate subcaptions.
809  This can be set in the tab 
810 \family sans
811 Extra\InsetSpace ~
812 options
813 \family default
814  of the graphics dialog.
815  Choose there the option 
816 \family sans
817 Subfigure
818 \family default
819  and enter the subcaption for the image in the caption field.
820  Note that only the main caption of the float is added to the List of Figures.
821 \newline
822 Ref
823 erencing subfigures is explained in section\InsetSpace ~
824
825 \begin_inset LatexCommand ref
826 reference "sub:Referencing-Subfigures"
827
828 \end_inset
829
830 .
831 \end_layout
832
833 \begin_layout Standard
834 Figure\InsetSpace ~
835
836 \begin_inset LatexCommand ref
837 reference "fig:Two-distorted-images"
838
839 \end_inset
840
841  is an example of a figure float with two images set side by side.
842  You can also set the images one below the other.
843 \end_layout
844
845 \begin_layout Standard
846 \begin_inset Float figure
847 wide false
848 sideways false
849 status open
850
851 \begin_layout Standard
852
853 \hfill
854
855 \begin_inset Graphics
856         filename clipart/escher-lsd.eps
857         width 45col%
858         subcaption
859         subcaptionText "Undefinable structure"
860
861 \end_inset
862
863
864 \hfill
865
866 \begin_inset Graphics
867         filename clipart/platypus.eps
868         lyxscale 60
869         width 45col%
870         subcaption
871         subcaptionText "\label{fig:Platypus} Platypus"
872
873 \end_inset
874
875
876 \hfill
877
878 \end_layout
879
880 \begin_layout Standard
881 \begin_inset Caption
882
883 \begin_layout Standard
884 \begin_inset LatexCommand label
885 name "fig:Two-distorted-images"
886
887 \end_inset
888
889 Two distorted images.
890 \end_layout
891
892 \end_inset
893
894
895 \end_layout
896
897 \end_inset
898
899
900 \end_layout
901
902 \begin_layout Section
903 Image Formats
904 \begin_inset LatexCommand label
905 name "sec:Image-Formats"
906
907 \end_inset
908
909
910 \begin_inset LatexCommand index
911 name "Image Formats"
912
913 \end_inset
914
915
916 \begin_inset LatexCommand index
917 name "Figure ! Image Formats"
918
919 \end_inset
920
921
922 \end_layout
923
924 \begin_layout Standard
925 You can insert images in any known file format.
926  But as explained in appendix\InsetSpace ~
927
928 \begin_inset LatexCommand ref
929 reference "cha:Output-File-Formats"
930
931 \end_inset
932
933 , every output document format allows only a few image formats.
934  LyX uses therefore the program 
935 \family typewriter
936 Imagemagick
937 \family default
938  in the background to convert the images to the right format.
939  To increase your work flow by avoiding these conversions in the background,
940  you can use only the image formats that can directly be embedded in the
941  output file format.
942  The output file formats are explained in appendix\InsetSpace ~
943
944 \begin_inset LatexCommand ref
945 reference "cha:Output-File-Formats"
946
947 \end_inset
948
949 .
950 \end_layout
951
952 \begin_layout Standard
953 Similar to fonts there are two types of image formats:
954 \end_layout
955
956 \begin_layout Description
957 Bitmap\InsetSpace ~
958 images consist of pixel values, often in a compressed form.
959  They are therefore not fully scalable and look pixeled in large zooms.
960  Well-known bitmap image formats are 
961 \begin_inset Quotes eld
962 \end_inset
963
964 Graphics Interchange Format
965 \begin_inset Quotes erd
966 \end_inset
967
968  (GIF, file extension 
969 \begin_inset Quotes eld
970 \end_inset
971
972
973 \family typewriter
974 .gif
975 \family default
976
977 \begin_inset Quotes erd
978 \end_inset
979
980 )
981 \begin_inset LatexCommand index
982 name "GIF|see{Image formats}"
983
984 \end_inset
985
986
987 \begin_inset Quotes eld
988 \end_inset
989
990 Portable Network Graphics
991 \begin_inset Quotes erd
992 \end_inset
993
994  (PNG, file extension 
995 \begin_inset Quotes eld
996 \end_inset
997
998
999 \family typewriter
1000 .png
1001 \family default
1002
1003 \begin_inset Quotes erd
1004 \end_inset
1005
1006 )
1007 \begin_inset LatexCommand index
1008 name "PNG|see{Image formats}"
1009
1010 \end_inset
1011
1012 , and 
1013 \begin_inset Quotes eld
1014 \end_inset
1015
1016 Joint Photographic Experts Group
1017 \begin_inset Quotes erd
1018 \end_inset
1019
1020  (JPG, file extension 
1021 \begin_inset Quotes eld
1022 \end_inset
1023
1024
1025 \family typewriter
1026 .jpg
1027 \family default
1028
1029 \begin_inset Quotes erd
1030 \end_inset
1031
1032  or 
1033 \begin_inset Quotes eld
1034 \end_inset
1035
1036
1037 \family typewriter
1038 .jpeg
1039 \family default
1040
1041 \begin_inset Quotes erd
1042 \end_inset
1043
1044 )
1045 \begin_inset LatexCommand index
1046 name "JPG|see{Image formats}"
1047
1048 \end_inset
1049
1050 .
1051 \end_layout
1052
1053 \begin_layout Description
1054 Vector\InsetSpace ~
1055 images consist of vectors and can therefore be scaled to any size
1056  without data loss.
1057  The scaling ability is necessary if you want to create presentations, because
1058  presentations are always scaled by the video projector.
1059  Scaling is also useful for online documents to let the user zoom into diagrams.
1060 \newline
1061 W
1062 ell-known scalable image formats are 
1063 \begin_inset Quotes eld
1064 \end_inset
1065
1066 Scalable Vector Graphics
1067 \begin_inset Quotes erd
1068 \end_inset
1069
1070  (SVG, file extension 
1071 \begin_inset Quotes eld
1072 \end_inset
1073
1074
1075 \family typewriter
1076 .svg
1077 \family default
1078
1079 \begin_inset Quotes erd
1080 \end_inset
1081
1082 )
1083 \begin_inset LatexCommand index
1084 name "SVG|see{Image formats}"
1085
1086 \end_inset
1087
1088
1089 \begin_inset Quotes eld
1090 \end_inset
1091
1092 Encapsulated PostScript
1093 \begin_inset Quotes erd
1094 \end_inset
1095
1096  (EPS, file extension 
1097 \begin_inset Quotes eld
1098 \end_inset
1099
1100
1101 \family typewriter
1102 .eps
1103 \family default
1104
1105 \begin_inset Quotes erd
1106 \end_inset
1107
1108 )
1109 \begin_inset LatexCommand index
1110 name "EPS|see{Image formats}"
1111
1112 \end_inset
1113
1114
1115 \begin_inset Quotes eld
1116 \end_inset
1117
1118 Portable Document Format
1119 \begin_inset Quotes erd
1120 \end_inset
1121
1122  (PDF, file extension 
1123 \begin_inset Quotes eld
1124 \end_inset
1125
1126
1127 \family typewriter
1128 .pdf
1129 \family default
1130
1131 \begin_inset Quotes erd
1132 \end_inset
1133
1134 )
1135 \begin_inset LatexCommand index
1136 name "PDF"
1137
1138 \end_inset
1139
1140 , and 
1141 \begin_inset Quotes eld
1142 \end_inset
1143
1144 Windows Metafile
1145 \begin_inset Quotes erd
1146 \end_inset
1147
1148  (WMF, file extension 
1149 \begin_inset Quotes eld
1150 \end_inset
1151
1152
1153 \family typewriter
1154 .wmf
1155 \family default
1156
1157 \begin_inset Quotes erd
1158 \end_inset
1159
1160 )
1161 \begin_inset LatexCommand index
1162 name "SVG|see{Image formats}"
1163
1164 \end_inset
1165
1166 .
1167  We wrote 
1168 \begin_inset Quotes eld
1169 \end_inset
1170
1171 can be
1172 \begin_inset Quotes erd
1173 \end_inset
1174
1175 , because you can convert any bitmap image to a PDF or EPS-image and the
1176  result will still be a bitmap image.
1177  In this cases only a header with the image properties is added to the original
1178  image
1179 \begin_inset Foot
1180 status open
1181
1182 \begin_layout Standard
1183 In the case of PDF, the original image is additionally compressed.
1184 \end_layout
1185
1186 \end_inset
1187
1188 .
1189  The PDF-files generated by 
1190 \family typewriter
1191 Adobe Photoshop
1192 \family default
1193  are for example bitmap images.
1194 \end_layout
1195
1196 \begin_layout Standard
1197 Normally it is not possible to convert a bitmap image into a scalable one,
1198  only vice versa.
1199  Only the image formats PDF and EPS can directly be embedded to PDF and
1200  PostScript output files, respectively.
1201  SVG and WMF-images are currently recalculated to bitmaps when the output
1202  file is generated because there is currently no adequate WMF/SVG
1203 \begin_inset Formula $\to$
1204 \end_inset
1205
1206 PDF/EPS converter available.
1207 \end_layout
1208
1209 \begin_layout Chapter
1210 Tables
1211 \begin_inset LatexCommand label
1212 name "cha:Tables"
1213
1214 \end_inset
1215
1216
1217 \begin_inset LatexCommand index
1218 name "Table"
1219
1220 \end_inset
1221
1222
1223 \end_layout
1224
1225 \begin_layout Section
1226 Introduction
1227 \begin_inset LatexCommand index
1228 name "Table ! Introduction"
1229
1230 \end_inset
1231
1232
1233 \end_layout
1234
1235 \begin_layout Standard
1236 You can insert a table using either the toolbar button 
1237 \begin_inset Graphics
1238         filename ../images/tabular-insert.xpm
1239         scale 85
1240
1241 \end_inset
1242
1243  or the menu 
1244 \family sans
1245 Insert\SpecialChar \menuseparator
1246 Table
1247 \family default
1248 .
1249  The toolbar button offers you a graphical selection: Move the mouse to
1250  set the column/row number of the table that should be created and then
1251  press a mouse button.
1252  When you use the menu to create a table, a dialog will appear, asking you
1253  for the number of rows and columns.
1254 \newline
1255  The default table has lines around any
1256  cell and the first row appears separated from the rest of the table.
1257  This separation occurs due to a double line: The cells of the first row
1258  have a line below them and the cells of the second row have a line above
1259  them.
1260  Here is an example table:
1261 \end_layout
1262
1263 \begin_layout Standard
1264 \align center
1265 \begin_inset Tabular
1266 <lyxtabular version="3" rows="4" columns="4">
1267 <features>
1268 <column alignment="center" valignment="top" leftline="true" width="0">
1269 <column alignment="center" valignment="top" leftline="true" width="0">
1270 <column alignment="center" valignment="top" leftline="true" width="0">
1271 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
1272 <row topline="true" bottomline="true">
1273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1274 \begin_inset Text
1275
1276 \begin_layout Standard
1277
1278 \end_layout
1279
1280 \end_inset
1281 </cell>
1282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1283 \begin_inset Text
1284
1285 \begin_layout Standard
1286
1287 \family roman
1288 \series medium
1289 \shape up
1290 \size normal
1291 \emph off
1292 \bar no
1293 \noun off
1294 \color none
1295 1
1296 \end_layout
1297
1298 \end_inset
1299 </cell>
1300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1301 \begin_inset Text
1302
1303 \begin_layout Standard
1304 2
1305 \end_layout
1306
1307 \end_inset
1308 </cell>
1309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1310 \begin_inset Text
1311
1312 \begin_layout Standard
1313 3
1314 \end_layout
1315
1316 \end_inset
1317 </cell>
1318 </row>
1319 <row topline="true">
1320 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1321 \begin_inset Text
1322
1323 \begin_layout Standard
1324
1325 \family roman
1326 \series medium
1327 \shape up
1328 \size normal
1329 \emph off
1330 \bar no
1331 \noun off
1332 \color none
1333 A
1334 \end_layout
1335
1336 \end_inset
1337 </cell>
1338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1339 \begin_inset Text
1340
1341 \begin_layout Standard
1342
1343 \end_layout
1344
1345 \end_inset
1346 </cell>
1347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1348 \begin_inset Text
1349
1350 \begin_layout Standard
1351
1352 \end_layout
1353
1354 \end_inset
1355 </cell>
1356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1357 \begin_inset Text
1358
1359 \begin_layout Standard
1360
1361 \end_layout
1362
1363 \end_inset
1364 </cell>
1365 </row>
1366 <row topline="true">
1367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1368 \begin_inset Text
1369
1370 \begin_layout Standard
1371
1372 \family roman
1373 \series medium
1374 \shape up
1375 \size normal
1376 \emph off
1377 \bar no
1378 \noun off
1379 \color none
1380 B
1381 \end_layout
1382
1383 \end_inset
1384 </cell>
1385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1386 \begin_inset Text
1387
1388 \begin_layout Standard
1389
1390 \end_layout
1391
1392 \end_inset
1393 </cell>
1394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1395 \begin_inset Text
1396
1397 \begin_layout Standard
1398
1399 \end_layout
1400
1401 \end_inset
1402 </cell>
1403 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1404 \begin_inset Text
1405
1406 \begin_layout Standard
1407
1408 \end_layout
1409
1410 \end_inset
1411 </cell>
1412 </row>
1413 <row topline="true" bottomline="true">
1414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1415 \begin_inset Text
1416
1417 \begin_layout Standard
1418
1419 \family roman
1420 \series medium
1421 \shape up
1422 \size normal
1423 \emph off
1424 \bar no
1425 \noun off
1426 \color none
1427 C
1428 \end_layout
1429
1430 \end_inset
1431 </cell>
1432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1433 \begin_inset Text
1434
1435 \begin_layout Standard
1436
1437 \end_layout
1438
1439 \end_inset
1440 </cell>
1441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1442 \begin_inset Text
1443
1444 \begin_layout Standard
1445
1446 \end_layout
1447
1448 \end_inset
1449 </cell>
1450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1451 \begin_inset Text
1452
1453 \begin_layout Standard
1454
1455 \end_layout
1456
1457 \end_inset
1458 </cell>
1459 </row>
1460 </lyxtabular>
1461
1462 \end_inset
1463
1464
1465 \end_layout
1466
1467 \begin_layout Section
1468 Table Dialog
1469 \begin_inset LatexCommand index
1470 name "Table ! Dialog"
1471
1472 \end_inset
1473
1474
1475 \end_layout
1476
1477 \begin_layout Standard
1478 You can alter a table by clicking on it with the right mouse button, which
1479  brings up the table dialog.
1480  Here you can adjust the settings of that cell and row/column respectively
1481  where the cursor is currently placed.
1482  Most of the dialog options also work on selections.
1483  This means if you select more cells, columns or rows, the action is done
1484  for the whole selection.
1485  Note that there is a difference between selecting the 
1486 \emph on
1487 contents
1488 \emph default
1489  of the cell, and the cell itself.
1490  You can alter tables with the following tabs of the table dialog:
1491 \end_layout
1492
1493 \begin_layout Description
1494
1495 \family sans
1496 Table\InsetSpace ~
1497 Settings
1498 \family default
1499  Here you can set the horizontal alignment for the current row and the width
1500  of the current column.
1501  When you have set a width you can also adjust the vertical alignment of
1502  the current column.
1503  A given width will allow the cell to have line breaks and multiple paragraphs
1504  of text, see section\InsetSpace ~
1505
1506 \begin_inset LatexCommand ref
1507 reference "sub:Multiple-Lines-in"
1508
1509 \end_inset
1510
1511 .
1512  If you set no width, the column is as wide as their widest cell content
1513  is.
1514 \newline
1515 Furthermore, you can mark one or multiple cells of one row as a multicolumn
1516  cell, see section\InsetSpace ~
1517
1518 \begin_inset LatexCommand ref
1519 reference "sub:Multicolumns"
1520
1521 \end_inset
1522
1523 .
1524 \newline
1525 The rotate check boxes rotates the current cell, a selection, or the whole
1526  table counter-clockwise by 90°.
1527  The rotation is not shown within LyX, only in the output.
1528 \newline
1529
1530 \begin_inset Note Greyedout
1531 status open
1532
1533 \begin_layout Standard
1534
1535 \series bold
1536 Note:
1537 \series default
1538  Not all DVI-viewers are able to display rotations.
1539 \end_layout
1540
1541 \end_inset
1542
1543
1544 \newline
1545 It is also possible to enter a LaTeX-argument which is needed for special
1546  table formattings, see section\InsetSpace ~
1547
1548 \begin_inset LatexCommand ref
1549 reference "sub:Multicolumn-Calculations"
1550
1551 \end_inset
1552
1553  and 
1554 \begin_inset LatexCommand ref
1555 reference "sec:Colored-Tables"
1556
1557 \end_inset
1558
1559 .
1560 \end_layout
1561
1562 \begin_layout Description
1563
1564 \family sans
1565 Borders
1566 \family default
1567  In this tab you can add and delete border lines for the current row/column.
1568 \newline
1569 Using
1570  the style option 
1571 \family sans
1572 Formal
1573 \family default
1574  will convert the table to a formal table as described in section\InsetSpace ~
1575
1576 \begin_inset LatexCommand ref
1577 reference "sec:Formal-Tables"
1578
1579 \end_inset
1580
1581 .
1582 \newline
1583 You can also add here space to table rows as decribed in section\InsetSpace ~
1584
1585 \begin_inset LatexCommand ref
1586 reference "sub:Row-Spacing"
1587
1588 \end_inset
1589
1590 .
1591 \end_layout
1592
1593 \begin_layout Description
1594
1595 \family sans
1596 Longtable
1597 \family default
1598  This tab is to make a table a so called 
1599 \begin_inset Quotes eld
1600 \end_inset
1601
1602
1603 \emph on
1604 longtable
1605 \emph default
1606
1607 \begin_inset Quotes erd
1608 \end_inset
1609
1610  that can run over several pages.
1611  Section\InsetSpace ~
1612
1613 \begin_inset LatexCommand ref
1614 reference "sec:Longtables"
1615
1616 \end_inset
1617
1618  and 
1619 \begin_inset LatexCommand ref
1620 reference "sec:Special-Longtable-Issues"
1621
1622 \end_inset
1623
1624  describe the longtable features in detail.
1625 \end_layout
1626
1627 \begin_layout Standard
1628 When the table toolbar is opened, you can move the cursor with the arrow
1629  keys from cell to cell and the property of the current cell will immediately
1630  be displayed in the dialog.
1631 \end_layout
1632
1633 \begin_layout Section
1634 Table Toolbar
1635 \begin_inset LatexCommand index
1636 name "Table ! Toolbar"
1637
1638 \end_inset
1639
1640
1641 \end_layout
1642
1643 \begin_layout Standard
1644 The table toolbar is an alternative to the table dialog to be able to alter
1645  tables faster.
1646  It should normally appear at the bottom of LyX's main window when the cursor
1647  is inside a table.
1648  You can alternatively switch it on to appear always, by right-clicking
1649  in LyX's main menu bar.
1650 \end_layout
1651
1652 \begin_layout Standard
1653 The toolbar has the following icons:
1654 \end_layout
1655
1656 \begin_layout Labeling
1657 \labelwidthstring 00.00.0000
1658 \begin_inset Graphics
1659         filename ../images/tabular-feature_append-row.xpm
1660
1661 \end_inset
1662
1663  adds a row below the current cell or selection
1664 \end_layout
1665
1666 \begin_layout Labeling
1667 \labelwidthstring 00.00.0000
1668 \begin_inset Graphics
1669         filename ../images/tabular-feature_append-column.xpm
1670
1671 \end_inset
1672
1673  adds a column right beside the current cell or selection
1674 \end_layout
1675
1676 \begin_layout Labeling
1677 \labelwidthstring 00.00.0000
1678 \begin_inset Graphics
1679         filename ../images/tabular-feature_delete-row.xpm
1680
1681 \end_inset
1682
1683  deletes the current row or selection
1684 \end_layout
1685
1686 \begin_layout Labeling
1687 \labelwidthstring 00.00.0000
1688 \begin_inset Graphics
1689         filename ../images/tabular-feature_delete-column.xpm
1690
1691 \end_inset
1692
1693  deletes the current column or selection
1694 \end_layout
1695
1696 \begin_layout Labeling
1697 \labelwidthstring 00.00.0000
1698 \begin_inset Graphics
1699         filename ../images/tabular-feature_toggle-line-top.xpm
1700
1701 \end_inset
1702
1703  adds a line at the top of the current cell / row or of a selection
1704 \end_layout
1705
1706 \begin_layout Labeling
1707 \labelwidthstring 00.00.0000
1708 \begin_inset Graphics
1709         filename ../images/tabular-feature_toggle-line-bottom.xpm
1710
1711 \end_inset
1712
1713  adds a line at the bottom of the current cell / row or of a selection
1714 \end_layout
1715
1716 \begin_layout Labeling
1717 \labelwidthstring 00.00.0000
1718 \begin_inset Graphics
1719         filename ../images/tabular-feature_toggle-line-left.xpm
1720
1721 \end_inset
1722
1723  adds a line at the left side of the current cell / row or of a selection
1724 \end_layout
1725
1726 \begin_layout Labeling
1727 \labelwidthstring 00.00.0000
1728 \begin_inset Graphics
1729         filename ../images/tabular-feature_toggle-line-right.xpm
1730
1731 \end_inset
1732
1733  adds a line at the right side of the current cell / row or of a selection
1734 \end_layout
1735
1736 \begin_layout Labeling
1737 \labelwidthstring 00.00.0000
1738 \begin_inset Graphics
1739         filename ../images/tabular-feature_set-all-lines.xpm
1740
1741 \end_inset
1742
1743  adds lines around the current or selected cells - if the current cell no
1744  multicolumn this also affects the current row and column
1745 \end_layout
1746
1747 \begin_layout Labeling
1748 \labelwidthstring 00.00.0000
1749 \begin_inset Graphics
1750         filename ../images/tabular-feature_unset-all-lines.xpm
1751
1752 \end_inset
1753
1754  deletes all lines of the current or selected cells - if the current cell
1755  no multicolumn this also affects the current row and column
1756 \end_layout
1757
1758 \begin_layout Labeling
1759 \labelwidthstring 00.00.0000
1760 \begin_inset Graphics
1761         filename ../images/tabular-feature_align-left.xpm
1762
1763 \end_inset
1764
1765  left-aligns the content of the current cell / column
1766 \end_layout
1767
1768 \begin_layout Labeling
1769 \labelwidthstring 00.00.0000
1770 \begin_inset Graphics
1771         filename ../images/tabular-feature_align-center.xpm
1772
1773 \end_inset
1774
1775  centers the content of the current cell / column horizontally
1776 \end_layout
1777
1778 \begin_layout Labeling
1779 \labelwidthstring 00.00.0000
1780 \begin_inset Graphics
1781         filename ../images/tabular-feature_align-right.xpm
1782
1783 \end_inset
1784
1785  right-aligns the content of the current cell / column
1786 \end_layout
1787
1788 \begin_layout Labeling
1789 \labelwidthstring 00.00.0000
1790 \begin_inset Graphics
1791         filename ../images/tabular-feature_valign-top.xpm
1792
1793 \end_inset
1794
1795  aligns the content of the current cell vertically to the top
1796 \end_layout
1797
1798 \begin_layout Labeling
1799 \labelwidthstring 00.00.0000
1800 \begin_inset Graphics
1801         filename ../images/tabular-feature_valign-middle.xpm
1802
1803 \end_inset
1804
1805  centers the content of the current cell vertically
1806 \end_layout
1807
1808 \begin_layout Labeling
1809 \labelwidthstring 00.00.0000
1810 \begin_inset Graphics
1811         filename ../images/tabular-feature_valign-bottom.xpm
1812
1813 \end_inset
1814
1815  aligns the content of the current cell vertically to the bottom
1816 \end_layout
1817
1818 \begin_layout Labeling
1819 \labelwidthstring 00.00.0000
1820 \begin_inset Graphics
1821         filename ../images/tabular-feature_set-rotate-cell.xpm
1822
1823 \end_inset
1824
1825  rotates the current cell or selection counter-clockwise by 90°
1826 \end_layout
1827
1828 \begin_layout Labeling
1829 \labelwidthstring 00.00.0000
1830 \begin_inset Graphics
1831         filename ../images/tabular-feature_set-rotate-tabular.xpm
1832
1833 \end_inset
1834
1835  rotates the whole table counter-clockwise by 90°
1836 \end_layout
1837
1838 \begin_layout Labeling
1839 \labelwidthstring 00.00.0000
1840 \begin_inset Graphics
1841         filename ../images/tabular-feature_multicolumn.xpm
1842
1843 \end_inset
1844
1845  sets the current cell or selection as a multicolumn
1846 \end_layout
1847
1848 \begin_layout Section
1849 Edit Table Menu
1850 \begin_inset LatexCommand index
1851 name "Table ! Edit Menu"
1852
1853 \end_inset
1854
1855
1856 \end_layout
1857
1858 \begin_layout Standard
1859 Additionally to the table dialog and toolbar, the menu 
1860 \family sans
1861 Edit\SpecialChar \menuseparator
1862 Table
1863 \family default
1864  allows you to add and delete border lines for the current row/column and
1865  to set the current selection as multicolumn.
1866  The menu is only available when the cursor is inside a table.
1867 \end_layout
1868
1869 \begin_layout Section
1870 Table Floats
1871 \begin_inset LatexCommand label
1872 name "sec:Table-Floats"
1873
1874 \end_inset
1875
1876
1877 \begin_inset LatexCommand index
1878 name "Floats ! Tables"
1879
1880 \end_inset
1881
1882
1883 \begin_inset LatexCommand index
1884 name "Table ! Floats"
1885
1886 \end_inset
1887
1888
1889 \end_layout
1890
1891 \begin_layout Standard
1892 For general explanations about floats, have a look at section\InsetSpace ~
1893
1894 \begin_inset LatexCommand ref
1895 reference "sec:FloatIntroduction"
1896
1897 \end_inset
1898
1899 .
1900 \end_layout
1901
1902 \begin_layout Standard
1903 \begin_inset Float table
1904 placement h
1905 wide false
1906 sideways false
1907 status open
1908
1909 \begin_layout Standard
1910 \begin_inset Caption
1911
1912 \begin_layout Standard
1913 \begin_inset LatexCommand label
1914 name "tab:a table float"
1915
1916 \end_inset
1917
1918 A table float.
1919 \end_layout
1920
1921 \end_inset
1922
1923
1924 \end_layout
1925
1926 \begin_layout Standard
1927 \align center
1928 \begin_inset Tabular
1929 <lyxtabular version="3" rows="3" columns="3">
1930 <features>
1931 <column alignment="center" valignment="top" leftline="true" width="0pt">
1932 <column alignment="center" valignment="top" leftline="true" width="0pt">
1933 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1934 <row topline="true" bottomline="true">
1935 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1936 \begin_inset Text
1937
1938 \begin_layout Standard
1939
1940 \family roman
1941 \series medium
1942 \shape up
1943 \size normal
1944 \emph off
1945 \bar no
1946 \noun off
1947 \color none
1948 1
1949 \end_layout
1950
1951 \end_inset
1952 </cell>
1953 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1954 \begin_inset Text
1955
1956 \begin_layout Standard
1957
1958 \family roman
1959 \series medium
1960 \shape up
1961 \size normal
1962 \emph off
1963 \bar no
1964 \noun off
1965 \color none
1966 2
1967 \end_layout
1968
1969 \end_inset
1970 </cell>
1971 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1972 \begin_inset Text
1973
1974 \begin_layout Standard
1975
1976 \family roman
1977 \series medium
1978 \shape up
1979 \size normal
1980 \emph off
1981 \bar no
1982 \noun off
1983 \color none
1984 3
1985 \end_layout
1986
1987 \end_inset
1988 </cell>
1989 </row>
1990 <row topline="true">
1991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1992 \begin_inset Text
1993
1994 \begin_layout Standard
1995
1996 \family roman
1997 \series medium
1998 \shape up
1999 \size normal
2000 \emph off
2001 \bar no
2002 \noun off
2003 \color none
2004 Joe
2005 \end_layout
2006
2007 \end_inset
2008 </cell>
2009 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2010 \begin_inset Text
2011
2012 \begin_layout Standard
2013
2014 \family roman
2015 \series medium
2016 \shape up
2017 \size normal
2018 \emph off
2019 \bar no
2020 \noun off
2021 \color none
2022 Mary
2023 \end_layout
2024
2025 \end_inset
2026 </cell>
2027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2028 \begin_inset Text
2029
2030 \begin_layout Standard
2031
2032 \family roman
2033 \series medium
2034 \shape up
2035 \size normal
2036 \emph off
2037 \bar no
2038 \noun off
2039 \color none
2040 Ted
2041 \end_layout
2042
2043 \end_inset
2044 </cell>
2045 </row>
2046 <row topline="true" bottomline="true">
2047 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2048 \begin_inset Text
2049
2050 \begin_layout Standard
2051
2052 \family roman
2053 \series medium
2054 \shape up
2055 \size normal
2056 \emph off
2057 \bar no
2058 \noun off
2059 \color none
2060 \begin_inset Formula $\int x^{2}dx$
2061 \end_inset
2062
2063
2064 \end_layout
2065
2066 \end_inset
2067 </cell>
2068 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2069 \begin_inset Text
2070
2071 \begin_layout Standard
2072
2073 \family roman
2074 \series medium
2075 \shape up
2076 \size normal
2077 \emph off
2078 \bar no
2079 \noun off
2080 \color none
2081 \begin_inset Formula $\left[\begin{array}{cc}
2082 a & b\\
2083 c & d\end{array}\right]$
2084 \end_inset
2085
2086
2087 \end_layout
2088
2089 \end_inset
2090 </cell>
2091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2092 \begin_inset Text
2093
2094 \begin_layout Standard
2095
2096 \family roman
2097 \series medium
2098 \shape up
2099 \size normal
2100 \emph off
2101 \bar no
2102 \noun off
2103 \color none
2104 \begin_inset Formula $1+1=2$
2105 \end_inset
2106
2107
2108 \end_layout
2109
2110 \end_inset
2111 </cell>
2112 </row>
2113 </lyxtabular>
2114
2115 \end_inset
2116
2117
2118 \end_layout
2119
2120 \end_inset
2121
2122
2123 \end_layout
2124
2125 \begin_layout Standard
2126 Table floats can be inserted using the menu 
2127 \family sans
2128 Insert\SpecialChar \menuseparator
2129 Float\SpecialChar \menuseparator
2130 Table
2131 \family default
2132  or the toolbar button 
2133 \begin_inset Graphics
2134         filename ../images/float-insert_table.xpm
2135         scale 85
2136
2137 \end_inset
2138
2139 .
2140 \end_layout
2141
2142 \begin_layout Standard
2143 The float appears as a collapsible box with a caption that has the label
2144  
2145 \begin_inset Quotes eld
2146 \end_inset
2147
2148 Table\InsetSpace ~
2149 #:
2150 \begin_inset Quotes erd
2151 \end_inset
2152
2153  (# is the actual table number).
2154  You can insert tables to the float above or below the caption.
2155 \end_layout
2156
2157 \begin_layout Standard
2158 Table\InsetSpace ~
2159
2160 \begin_inset LatexCommand ref
2161 reference "tab:a table float"
2162
2163 \end_inset
2164
2165  is an example table within a table float.
2166 \end_layout
2167
2168 \begin_layout Standard
2169 Having the caption above the table is the common rule that is unfortunately
2170  not supported in LaTeX's standard classes.
2171  That means if you are using the document classes 
2172 \family sans
2173 article
2174 \family default
2175
2176 \family sans
2177 book
2178 \family default
2179
2180 \family sans
2181 letter
2182 \family default
2183 , or 
2184 \family sans
2185 report
2186 \family default
2187  there will be no space between the caption and the table.
2188  To insert the needed space, add the following option to the load command
2189  of the LaTeX-package 
2190 \series bold
2191 caption
2192 \series default
2193
2194 \begin_inset LatexCommand index
2195 name "LaTeX-packages ! caption"
2196
2197 \end_inset
2198
2199  in your document preamble
2200 \begin_inset Foot
2201 status collapsed
2202
2203 \begin_layout Standard
2204 For more information have a look at section\InsetSpace ~
2205
2206 \begin_inset LatexCommand ref
2207 reference "sec:Caption-Placement"
2208
2209 \end_inset
2210
2211 .
2212 \end_layout
2213
2214 \end_inset
2215
2216 :
2217 \end_layout
2218
2219 \begin_layout Standard
2220
2221 \series bold
2222 tableposition=top
2223 \end_layout
2224
2225 \begin_layout Standard
2226 The package 
2227 \series bold
2228 caption
2229 \series default
2230 , which is described in section\InsetSpace ~
2231
2232 \begin_inset LatexCommand ref
2233 reference "sec:Caption-Formatting"
2234
2235 \end_inset
2236
2237 , is used to adjust the caption format.
2238 \end_layout
2239
2240 \begin_layout Standard
2241 \begin_inset LatexCommand index
2242 name "References ! to Tables"
2243
2244 \end_inset
2245
2246 Tables can be cross-referenced in the text by referencing their label.
2247  To do this insert a label in the caption using the menu 
2248 \family sans
2249 Insert\SpecialChar \menuseparator
2250 Label
2251 \family default
2252  or the toolbar button 
2253 \begin_inset Graphics
2254         filename ../images/label-insert.xpm
2255         scale 85
2256
2257 \end_inset
2258
2259 .
2260  You can now refer to the label using the menu 
2261 \family sans
2262 Insert\SpecialChar \menuseparator
2263 Cross\InsetSpace ~
2264 reference
2265 \family default
2266  or the toolbar button 
2267 \begin_inset Graphics
2268         filename ../images/dialog-show-new-inset_ref.xpm
2269         scale 85
2270
2271 \end_inset
2272
2273 .
2274 \newline
2275 Referencing is explained in detail in section\InsetSpace ~
2276
2277 \begin_inset LatexCommand ref
2278 reference "sec:Referencing-Floats"
2279
2280 \end_inset
2281
2282 .
2283 \end_layout
2284
2285 \begin_layout Section
2286 Longtables
2287 \begin_inset LatexCommand label
2288 name "sec:Longtables"
2289
2290 \end_inset
2291
2292
2293 \begin_inset LatexCommand index
2294 name "Longtables"
2295
2296 \end_inset
2297
2298
2299 \begin_inset LatexCommand index
2300 name "Table ! Longtables"
2301
2302 \end_inset
2303
2304
2305 \end_layout
2306
2307 \begin_layout Standard
2308 If the table is too long to fit on one page, you can use the option 
2309 \family sans
2310 Use\InsetSpace ~
2311 long\InsetSpace ~
2312 table
2313 \family default
2314  in the tab 
2315 \family sans
2316 Longtable
2317 \family default
2318  of the table dialog to split the table automatically over more pages.
2319  Doing this enables some check boxes and you can now define:
2320 \end_layout
2321
2322 \begin_layout Description
2323
2324 \family sans
2325 Header
2326 \family default
2327 : The current row and all rows above, that don't have any special options
2328  defined, are defined to be the header rows of all pages of the longtable;
2329  except for the first page, if 
2330 \family sans
2331 First\InsetSpace ~
2332 header
2333 \family default
2334  is defined.
2335  This therefore called the main header.
2336 \end_layout
2337
2338 \begin_layout Description
2339
2340 \family sans
2341 First\InsetSpace ~
2342 header
2343 \family default
2344 : The current row and all rows above, that don't have any special options
2345  defined, are defined to be the header rows of the first page of the longtable.
2346 \end_layout
2347
2348 \begin_layout Description
2349
2350 \family sans
2351 Footer
2352 \family default
2353 : The current row and all rows below, that don't have any special options
2354  defined, are defined to be the footer rows of all pages of the longtable;
2355  except for the last page, if 
2356 \family sans
2357 Last\InsetSpace ~
2358 footer
2359 \family default
2360  is defined.
2361 \end_layout
2362
2363 \begin_layout Description
2364
2365 \family sans
2366 Last\InsetSpace ~
2367 footer
2368 \family default
2369 : The current row and all rows below, that don't have any special options
2370  defined, are defined to be the footer rows of the last page of the longtable.
2371 \end_layout
2372
2373 \begin_layout Standard
2374 You can also specify a row where the table is splitted.
2375  If you set more than one option in the same table row, you should be aware
2376  of the fact that only the first one is used in the given table row.
2377  The others will then be defined as 
2378 \emph on
2379 empty
2380 \emph default
2381 .
2382  In this context, first means first in this order: 
2383 \family sans
2384 Footer, Last\InsetSpace ~
2385 footer,
2386 \family default
2387  
2388 \family sans
2389 Header,
2390 \family default
2391  
2392 \family sans
2393 First\InsetSpace ~
2394 header.
2395
2396 \family default
2397  See the following longtable to see how it works:
2398 \end_layout
2399
2400 \begin_layout Standard
2401 \align center
2402 \begin_inset Tabular
2403 <lyxtabular version="3" rows="69" columns="3">
2404 <features islongtable="true">
2405 <column alignment="left" valignment="top" leftline="true" width="0cm">
2406 <column alignment="left" valignment="top" width="0pt">
2407 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2408 <row topline="true" bottomline="true" endfirsthead="true">
2409 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2410 \begin_inset Text
2411
2412 \begin_layout Standard
2413
2414 \series bold
2415 Example Phone List (ignore the names)
2416 \end_layout
2417
2418 \end_inset
2419 </cell>
2420 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2421 \begin_inset Text
2422
2423 \begin_layout Standard
2424
2425 \end_layout
2426
2427 \end_inset
2428 </cell>
2429 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2430 \begin_inset Text
2431
2432 \begin_layout Standard
2433
2434 \end_layout
2435
2436 \end_inset
2437 </cell>
2438 </row>
2439 <row topline="true" bottomline="true" endfirsthead="true">
2440 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2441 \begin_inset Text
2442
2443 \begin_layout Standard
2444
2445 \series bold
2446 NAME
2447 \end_layout
2448
2449 \end_inset
2450 </cell>
2451 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2452 \begin_inset Text
2453
2454 \begin_layout Standard
2455
2456 \end_layout
2457
2458 \end_inset
2459 </cell>
2460 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2461 \begin_inset Text
2462
2463 \begin_layout Standard
2464
2465 \series bold
2466 TEL.
2467 \end_layout
2468
2469 \end_inset
2470 </cell>
2471 </row>
2472 <row topline="true" bottomline="true" endhead="true">
2473 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2474 \begin_inset Text
2475
2476 \begin_layout Standard
2477
2478 \series bold
2479 Example Phone List
2480 \end_layout
2481
2482 \end_inset
2483 </cell>
2484 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2485 \begin_inset Text
2486
2487 \begin_layout Standard
2488
2489 \end_layout
2490
2491 \end_inset
2492 </cell>
2493 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2494 \begin_inset Text
2495
2496 \begin_layout Standard
2497
2498 \end_layout
2499
2500 \end_inset
2501 </cell>
2502 </row>
2503 <row topline="true" bottomline="true" endhead="true">
2504 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2505 \begin_inset Text
2506
2507 \begin_layout Standard
2508
2509 \series bold
2510 NAME
2511 \end_layout
2512
2513 \end_inset
2514 </cell>
2515 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2516 \begin_inset Text
2517
2518 \begin_layout Standard
2519
2520 \end_layout
2521
2522 \end_inset
2523 </cell>
2524 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2525 \begin_inset Text
2526
2527 \begin_layout Standard
2528
2529 \series bold
2530 TEL.
2531 \end_layout
2532
2533 \end_inset
2534 </cell>
2535 </row>
2536 <row topline="true" bottomline="true" endfoot="true">
2537 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2538 \begin_inset Text
2539
2540 \begin_layout Standard
2541  continued on next page
2542 \end_layout
2543
2544 \end_inset
2545 </cell>
2546 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2547 \begin_inset Text
2548
2549 \begin_layout Standard
2550
2551 \end_layout
2552
2553 \end_inset
2554 </cell>
2555 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2556 \begin_inset Text
2557
2558 \begin_layout Standard
2559
2560 \end_layout
2561
2562 \end_inset
2563 </cell>
2564 </row>
2565 <row>
2566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2567 \begin_inset Text
2568
2569 \begin_layout Standard
2570
2571 \series bold
2572 Annovi
2573 \end_layout
2574
2575 \end_inset
2576 </cell>
2577 <cell alignment="center" valignment="top" topline="true" usebox="none">
2578 \begin_inset Text
2579
2580 \begin_layout Standard
2581 Silvia
2582 \end_layout
2583
2584 \end_inset
2585 </cell>
2586 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2587 \begin_inset Text
2588
2589 \begin_layout Standard
2590 111
2591 \end_layout
2592
2593 \end_inset
2594 </cell>
2595 </row>
2596 <row>
2597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2598 \begin_inset Text
2599
2600 \begin_layout Standard
2601
2602 \series bold
2603 Bertoli
2604 \end_layout
2605
2606 \end_inset
2607 </cell>
2608 <cell alignment="center" valignment="top" topline="true" usebox="none">
2609 \begin_inset Text
2610
2611 \begin_layout Standard
2612 Stefano
2613 \end_layout
2614
2615 \end_inset
2616 </cell>
2617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2618 \begin_inset Text
2619
2620 \begin_layout Standard
2621 111
2622 \end_layout
2623
2624 \end_inset
2625 </cell>
2626 </row>
2627 <row>
2628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2629 \begin_inset Text
2630
2631 \begin_layout Standard
2632
2633 \series bold
2634 Bozzi
2635 \end_layout
2636
2637 \end_inset
2638 </cell>
2639 <cell alignment="center" valignment="top" topline="true" usebox="none">
2640 \begin_inset Text
2641
2642 \begin_layout Standard
2643 Walter
2644 \end_layout
2645
2646 \end_inset
2647 </cell>
2648 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2649 \begin_inset Text
2650
2651 \begin_layout Standard
2652 111
2653 \end_layout
2654
2655 \end_inset
2656 </cell>
2657 </row>
2658 <row>
2659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2660 \begin_inset Text
2661
2662 \begin_layout Standard
2663
2664 \series bold
2665 Cachia
2666 \end_layout
2667
2668 \end_inset
2669 </cell>
2670 <cell alignment="center" valignment="top" topline="true" usebox="none">
2671 \begin_inset Text
2672
2673 \begin_layout Standard
2674 Maria
2675 \end_layout
2676
2677 \end_inset
2678 </cell>
2679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2680 \begin_inset Text
2681
2682 \begin_layout Standard
2683 111
2684 \end_layout
2685
2686 \end_inset
2687 </cell>
2688 </row>
2689 <row>
2690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2691 \begin_inset Text
2692
2693 \begin_layout Standard
2694
2695 \series bold
2696 Cachia
2697 \end_layout
2698
2699 \end_inset
2700 </cell>
2701 <cell alignment="center" valignment="top" topline="true" usebox="none">
2702 \begin_inset Text
2703
2704 \begin_layout Standard
2705 Maurizio
2706 \end_layout
2707
2708 \end_inset
2709 </cell>
2710 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2711 \begin_inset Text
2712
2713 \begin_layout Standard
2714 111
2715 \end_layout
2716
2717 \end_inset
2718 </cell>
2719 </row>
2720 <row>
2721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2722 \begin_inset Text
2723
2724 \begin_layout Standard
2725
2726 \series bold
2727 Cinquemani
2728 \end_layout
2729
2730 \end_inset
2731 </cell>
2732 <cell alignment="center" valignment="top" topline="true" usebox="none">
2733 \begin_inset Text
2734
2735 \begin_layout Standard
2736 Giusi
2737 \end_layout
2738
2739 \end_inset
2740 </cell>
2741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2742 \begin_inset Text
2743
2744 \begin_layout Standard
2745 111
2746 \end_layout
2747
2748 \end_inset
2749 </cell>
2750 </row>
2751 <row>
2752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2753 \begin_inset Text
2754
2755 \begin_layout Standard
2756
2757 \series bold
2758 Colin
2759 \end_layout
2760
2761 \end_inset
2762 </cell>
2763 <cell alignment="center" valignment="top" topline="true" usebox="none">
2764 \begin_inset Text
2765
2766 \begin_layout Standard
2767 Bernard
2768 \end_layout
2769
2770 \end_inset
2771 </cell>
2772 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2773 \begin_inset Text
2774
2775 \begin_layout Standard
2776 111
2777 \end_layout
2778
2779 \end_inset
2780 </cell>
2781 </row>
2782 <row>
2783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2784 \begin_inset Text
2785
2786 \begin_layout Standard
2787
2788 \series bold
2789 Concli
2790 \end_layout
2791
2792 \end_inset
2793 </cell>
2794 <cell alignment="center" valignment="top" topline="true" usebox="none">
2795 \begin_inset Text
2796
2797 \begin_layout Standard
2798 Gianfranco
2799 \end_layout
2800
2801 \end_inset
2802 </cell>
2803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2804 \begin_inset Text
2805
2806 \begin_layout Standard
2807 111
2808 \end_layout
2809
2810 \end_inset
2811 </cell>
2812 </row>
2813 <row>
2814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2815 \begin_inset Text
2816
2817 \begin_layout Standard
2818
2819 \series bold
2820 Dal Bosco
2821 \end_layout
2822
2823 \end_inset
2824 </cell>
2825 <cell alignment="center" valignment="top" topline="true" usebox="none">
2826 \begin_inset Text
2827
2828 \begin_layout Standard
2829 Carolina
2830 \end_layout
2831
2832 \end_inset
2833 </cell>
2834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2835 \begin_inset Text
2836
2837 \begin_layout Standard
2838 111
2839 \end_layout
2840
2841 \end_inset
2842 </cell>
2843 </row>
2844 <row>
2845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2846 \begin_inset Text
2847
2848 \begin_layout Standard
2849
2850 \series bold
2851 Dalpiaz
2852 \end_layout
2853
2854 \end_inset
2855 </cell>
2856 <cell alignment="center" valignment="top" topline="true" usebox="none">
2857 \begin_inset Text
2858
2859 \begin_layout Standard
2860 Annamaria
2861 \end_layout
2862
2863 \end_inset
2864 </cell>
2865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2866 \begin_inset Text
2867
2868 \begin_layout Standard
2869 111
2870 \end_layout
2871
2872 \end_inset
2873 </cell>
2874 </row>
2875 <row>
2876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2877 \begin_inset Text
2878
2879 \begin_layout Standard
2880
2881 \series bold
2882 Feliciello
2883 \end_layout
2884
2885 \end_inset
2886 </cell>
2887 <cell alignment="center" valignment="top" topline="true" usebox="none">
2888 \begin_inset Text
2889
2890 \begin_layout Standard
2891 Domenico
2892 \end_layout
2893
2894 \end_inset
2895 </cell>
2896 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2897 \begin_inset Text
2898
2899 \begin_layout Standard
2900 111
2901 \end_layout
2902
2903 \end_inset
2904 </cell>
2905 </row>
2906 <row>
2907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2908 \begin_inset Text
2909
2910 \begin_layout Standard
2911
2912 \series bold
2913 Focarelli
2914 \end_layout
2915
2916 \end_inset
2917 </cell>
2918 <cell alignment="center" valignment="top" topline="true" usebox="none">
2919 \begin_inset Text
2920
2921 \begin_layout Standard
2922 Paola
2923 \end_layout
2924
2925 \end_inset
2926 </cell>
2927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2928 \begin_inset Text
2929
2930 \begin_layout Standard
2931 111
2932 \end_layout
2933
2934 \end_inset
2935 </cell>
2936 </row>
2937 <row>
2938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2939 \begin_inset Text
2940
2941 \begin_layout Standard
2942
2943 \series bold
2944 Galletti
2945 \end_layout
2946
2947 \end_inset
2948 </cell>
2949 <cell alignment="center" valignment="top" topline="true" usebox="none">
2950 \begin_inset Text
2951
2952 \begin_layout Standard
2953 Oreste
2954 \end_layout
2955
2956 \end_inset
2957 </cell>
2958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2959 \begin_inset Text
2960
2961 \begin_layout Standard
2962 111
2963 \end_layout
2964
2965 \end_inset
2966 </cell>
2967 </row>
2968 <row>
2969 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2970 \begin_inset Text
2971
2972 \begin_layout Standard
2973
2974 \series bold
2975 Gasparini
2976 \end_layout
2977
2978 \end_inset
2979 </cell>
2980 <cell alignment="center" valignment="top" topline="true" usebox="none">
2981 \begin_inset Text
2982
2983 \begin_layout Standard
2984 Franca
2985 \end_layout
2986
2987 \end_inset
2988 </cell>
2989 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2990 \begin_inset Text
2991
2992 \begin_layout Standard
2993 111
2994 \end_layout
2995
2996 \end_inset
2997 </cell>
2998 </row>
2999 <row>
3000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3001 \begin_inset Text
3002
3003 \begin_layout Standard
3004
3005 \series bold
3006 Rizzardi
3007 \end_layout
3008
3009 \end_inset
3010 </cell>
3011 <cell alignment="center" valignment="top" topline="true" usebox="none">
3012 \begin_inset Text
3013
3014 \begin_layout Standard
3015 Paola
3016 \end_layout
3017
3018 \end_inset
3019 </cell>
3020 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3021 \begin_inset Text
3022
3023 \begin_layout Standard
3024 111
3025 \end_layout
3026
3027 \end_inset
3028 </cell>
3029 </row>
3030 <row>
3031 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3032 \begin_inset Text
3033
3034 \begin_layout Standard
3035
3036 \series bold
3037 Lassini
3038 \end_layout
3039
3040 \end_inset
3041 </cell>
3042 <cell alignment="center" valignment="top" topline="true" usebox="none">
3043 \begin_inset Text
3044
3045 \begin_layout Standard
3046 Giancarlo
3047 \end_layout
3048
3049 \end_inset
3050 </cell>
3051 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3052 \begin_inset Text
3053
3054 \begin_layout Standard
3055 111
3056 \end_layout
3057
3058 \end_inset
3059 </cell>
3060 </row>
3061 <row>
3062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3063 \begin_inset Text
3064
3065 \begin_layout Standard
3066
3067 \series bold
3068 Malfatti
3069 \end_layout
3070
3071 \end_inset
3072 </cell>
3073 <cell alignment="center" valignment="top" topline="true" usebox="none">
3074 \begin_inset Text
3075
3076 \begin_layout Standard
3077 Luciano
3078 \end_layout
3079
3080 \end_inset
3081 </cell>
3082 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3083 \begin_inset Text
3084
3085 \begin_layout Standard
3086 111
3087 \end_layout
3088
3089 \end_inset
3090 </cell>
3091 </row>
3092 <row>
3093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3094 \begin_inset Text
3095
3096 \begin_layout Standard
3097
3098 \series bold
3099 Malfatti
3100 \end_layout
3101
3102 \end_inset
3103 </cell>
3104 <cell alignment="center" valignment="top" topline="true" usebox="none">
3105 \begin_inset Text
3106
3107 \begin_layout Standard
3108 Valeriano
3109 \end_layout
3110
3111 \end_inset
3112 </cell>
3113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3114 \begin_inset Text
3115
3116 \begin_layout Standard
3117 111
3118 \end_layout
3119
3120 \end_inset
3121 </cell>
3122 </row>
3123 <row>
3124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3125 \begin_inset Text
3126
3127 \begin_layout Standard
3128
3129 \series bold
3130 Meneguzzo
3131 \end_layout
3132
3133 \end_inset
3134 </cell>
3135 <cell alignment="center" valignment="top" topline="true" usebox="none">
3136 \begin_inset Text
3137
3138 \begin_layout Standard
3139 Roberto
3140 \end_layout
3141
3142 \end_inset
3143 </cell>
3144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3145 \begin_inset Text
3146
3147 \begin_layout Standard
3148 111
3149 \end_layout
3150
3151 \end_inset
3152 </cell>
3153 </row>
3154 <row>
3155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3156 \begin_inset Text
3157
3158 \begin_layout Standard
3159
3160 \series bold
3161 Mezzadra
3162 \end_layout
3163
3164 \end_inset
3165 </cell>
3166 <cell alignment="center" valignment="top" topline="true" usebox="none">
3167 \begin_inset Text
3168
3169 \begin_layout Standard
3170 Roberto
3171 \end_layout
3172
3173 \end_inset
3174 </cell>
3175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3176 \begin_inset Text
3177
3178 \begin_layout Standard
3179 111
3180 \end_layout
3181
3182 \end_inset
3183 </cell>
3184 </row>
3185 <row>
3186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3187 \begin_inset Text
3188
3189 \begin_layout Standard
3190
3191 \series bold
3192 Pirpamer
3193 \end_layout
3194
3195 \end_inset
3196 </cell>
3197 <cell alignment="center" valignment="top" topline="true" usebox="none">
3198 \begin_inset Text
3199
3200 \begin_layout Standard
3201 Erich
3202 \end_layout
3203
3204 \end_inset
3205 </cell>
3206 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3207 \begin_inset Text
3208
3209 \begin_layout Standard
3210 111
3211 \end_layout
3212
3213 \end_inset
3214 </cell>
3215 </row>
3216 <row>
3217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3218 \begin_inset Text
3219
3220 \begin_layout Standard
3221
3222 \series bold
3223 Pochiesa
3224 \end_layout
3225
3226 \end_inset
3227 </cell>
3228 <cell alignment="center" valignment="top" topline="true" usebox="none">
3229 \begin_inset Text
3230
3231 \begin_layout Standard
3232 Paolo
3233 \end_layout
3234
3235 \end_inset
3236 </cell>
3237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3238 \begin_inset Text
3239
3240 \begin_layout Standard
3241 111, 222
3242 \end_layout
3243
3244 \end_inset
3245 </cell>
3246 </row>
3247 <row>
3248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3249 \begin_inset Text
3250
3251 \begin_layout Standard
3252
3253 \series bold
3254 Radina
3255 \end_layout
3256
3257 \end_inset
3258 </cell>
3259 <cell alignment="center" valignment="top" topline="true" usebox="none">
3260 \begin_inset Text
3261
3262 \begin_layout Standard
3263 Claudio
3264 \end_layout
3265
3266 \end_inset
3267 </cell>
3268 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3269 \begin_inset Text
3270
3271 \begin_layout Standard
3272 111
3273 \end_layout
3274
3275 \end_inset
3276 </cell>
3277 </row>
3278 <row>
3279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3280 \begin_inset Text
3281
3282 \begin_layout Standard
3283
3284 \series bold
3285 Stuffer
3286 \end_layout
3287
3288 \end_inset
3289 </cell>
3290 <cell alignment="center" valignment="top" topline="true" usebox="none">
3291 \begin_inset Text
3292
3293 \begin_layout Standard
3294 Oskar
3295 \end_layout
3296
3297 \end_inset
3298 </cell>
3299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3300 \begin_inset Text
3301
3302 \begin_layout Standard
3303 111
3304 \end_layout
3305
3306 \end_inset
3307 </cell>
3308 </row>
3309 <row>
3310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3311 \begin_inset Text
3312
3313 \begin_layout Standard
3314
3315 \series bold
3316 Tacchelli
3317 \end_layout
3318
3319 \end_inset
3320 </cell>
3321 <cell alignment="center" valignment="top" topline="true" usebox="none">
3322 \begin_inset Text
3323
3324 \begin_layout Standard
3325 Ugo
3326 \end_layout
3327
3328 \end_inset
3329 </cell>
3330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3331 \begin_inset Text
3332
3333 \begin_layout Standard
3334 111
3335 \end_layout
3336
3337 \end_inset
3338 </cell>
3339 </row>
3340 <row>
3341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3342 \begin_inset Text
3343
3344 \begin_layout Standard
3345
3346 \series bold
3347 Tezzele
3348 \end_layout
3349
3350 \end_inset
3351 </cell>
3352 <cell alignment="center" valignment="top" topline="true" usebox="none">
3353 \begin_inset Text
3354
3355 \begin_layout Standard
3356 Margit
3357 \end_layout
3358
3359 \end_inset
3360 </cell>
3361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3362 \begin_inset Text
3363
3364 \begin_layout Standard
3365 111
3366 \end_layout
3367
3368 \end_inset
3369 </cell>
3370 </row>
3371 <row>
3372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3373 \begin_inset Text
3374
3375 \begin_layout Standard
3376
3377 \series bold
3378 Unterkalmsteiner
3379 \end_layout
3380
3381 \end_inset
3382 </cell>
3383 <cell alignment="center" valignment="top" topline="true" usebox="none">
3384 \begin_inset Text
3385
3386 \begin_layout Standard
3387 Frieda
3388 \end_layout
3389
3390 \end_inset
3391 </cell>
3392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3393 \begin_inset Text
3394
3395 \begin_layout Standard
3396 111
3397 \end_layout
3398
3399 \end_inset
3400 </cell>
3401 </row>
3402 <row>
3403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3404 \begin_inset Text
3405
3406 \begin_layout Standard
3407
3408 \series bold
3409 Vieider
3410 \end_layout
3411
3412 \end_inset
3413 </cell>
3414 <cell alignment="center" valignment="top" topline="true" usebox="none">
3415 \begin_inset Text
3416
3417 \begin_layout Standard
3418 Hilde
3419 \end_layout
3420
3421 \end_inset
3422 </cell>
3423 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3424 \begin_inset Text
3425
3426 \begin_layout Standard
3427 111
3428 \end_layout
3429
3430 \end_inset
3431 </cell>
3432 </row>
3433 <row>
3434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3435 \begin_inset Text
3436
3437 \begin_layout Standard
3438
3439 \series bold
3440 Vigna
3441 \end_layout
3442
3443 \end_inset
3444 </cell>
3445 <cell alignment="center" valignment="top" topline="true" usebox="none">
3446 \begin_inset Text
3447
3448 \begin_layout Standard
3449 Jürgen
3450 \end_layout
3451
3452 \end_inset
3453 </cell>
3454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3455 \begin_inset Text
3456
3457 \begin_layout Standard
3458 111
3459 \end_layout
3460
3461 \end_inset
3462 </cell>
3463 </row>
3464 <row>
3465 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3466 \begin_inset Text
3467
3468 \begin_layout Standard
3469
3470 \series bold
3471 Weber
3472 \end_layout
3473
3474 \end_inset
3475 </cell>
3476 <cell alignment="center" valignment="top" topline="true" usebox="none">
3477 \begin_inset Text
3478
3479 \begin_layout Standard
3480 Maurizio
3481 \end_layout
3482
3483 \end_inset
3484 </cell>
3485 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3486 \begin_inset Text
3487
3488 \begin_layout Standard
3489 111
3490 \end_layout
3491
3492 \end_inset
3493 </cell>
3494 </row>
3495 <row bottomline="true">
3496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3497 \begin_inset Text
3498
3499 \begin_layout Standard
3500
3501 \series bold
3502 Winkler
3503 \end_layout
3504
3505 \end_inset
3506 </cell>
3507 <cell alignment="center" valignment="top" topline="true" usebox="none">
3508 \begin_inset Text
3509
3510 \begin_layout Standard
3511 Franz
3512 \end_layout
3513
3514 \end_inset
3515 </cell>
3516 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3517 \begin_inset Text
3518
3519 \begin_layout Standard
3520 111
3521 \end_layout
3522
3523 \end_inset
3524 </cell>
3525 </row>
3526 <row bottomline="true">
3527 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3528 \begin_inset Text
3529
3530 \begin_layout Standard
3531  
3532 \end_layout
3533
3534 \end_inset
3535 </cell>
3536 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3537 \begin_inset Text
3538
3539 \begin_layout Standard
3540
3541 \end_layout
3542
3543 \end_inset
3544 </cell>
3545 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3546 \begin_inset Text
3547
3548 \begin_layout Standard
3549
3550 \end_layout
3551
3552 \end_inset
3553 </cell>
3554 </row>
3555 <row>
3556 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3557 \begin_inset Text
3558
3559 \begin_layout Standard
3560
3561 \series bold
3562 Annovi
3563 \end_layout
3564
3565 \end_inset
3566 </cell>
3567 <cell alignment="center" valignment="top" topline="true" usebox="none">
3568 \begin_inset Text
3569
3570 \begin_layout Standard
3571 Silvia
3572 \end_layout
3573
3574 \end_inset
3575 </cell>
3576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3577 \begin_inset Text
3578
3579 \begin_layout Standard
3580 555
3581 \end_layout
3582
3583 \end_inset
3584 </cell>
3585 </row>
3586 <row>
3587 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3588 \begin_inset Text
3589
3590 \begin_layout Standard
3591
3592 \series bold
3593 Bertoli
3594 \end_layout
3595
3596 \end_inset
3597 </cell>
3598 <cell alignment="center" valignment="top" topline="true" usebox="none">
3599 \begin_inset Text
3600
3601 \begin_layout Standard
3602 Stefano
3603 \end_layout
3604
3605 \end_inset
3606 </cell>
3607 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3608 \begin_inset Text
3609
3610 \begin_layout Standard
3611 555
3612 \end_layout
3613
3614 \end_inset
3615 </cell>
3616 </row>
3617 <row>
3618 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3619 \begin_inset Text
3620
3621 \begin_layout Standard
3622
3623 \series bold
3624 Bozzi
3625 \end_layout
3626
3627 \end_inset
3628 </cell>
3629 <cell alignment="center" valignment="top" topline="true" usebox="none">
3630 \begin_inset Text
3631
3632 \begin_layout Standard
3633 Walter
3634 \end_layout
3635
3636 \end_inset
3637 </cell>
3638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3639 \begin_inset Text
3640
3641 \begin_layout Standard
3642 555
3643 \end_layout
3644
3645 \end_inset
3646 </cell>
3647 </row>
3648 <row>
3649 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3650 \begin_inset Text
3651
3652 \begin_layout Standard
3653
3654 \series bold
3655 Cachia
3656 \end_layout
3657
3658 \end_inset
3659 </cell>
3660 <cell alignment="center" valignment="top" topline="true" usebox="none">
3661 \begin_inset Text
3662
3663 \begin_layout Standard
3664 Maria
3665 \end_layout
3666
3667 \end_inset
3668 </cell>
3669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3670 \begin_inset Text
3671
3672 \begin_layout Standard
3673 555
3674 \end_layout
3675
3676 \end_inset
3677 </cell>
3678 </row>
3679 <row>
3680 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3681 \begin_inset Text
3682
3683 \begin_layout Standard
3684
3685 \series bold
3686 Cachia
3687 \end_layout
3688
3689 \end_inset
3690 </cell>
3691 <cell alignment="center" valignment="top" topline="true" usebox="none">
3692 \begin_inset Text
3693
3694 \begin_layout Standard
3695 Maurizio
3696 \end_layout
3697
3698 \end_inset
3699 </cell>
3700 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3701 \begin_inset Text
3702
3703 \begin_layout Standard
3704 555
3705 \end_layout
3706
3707 \end_inset
3708 </cell>
3709 </row>
3710 <row>
3711 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3712 \begin_inset Text
3713
3714 \begin_layout Standard
3715
3716 \series bold
3717 Cinquemani
3718 \end_layout
3719
3720 \end_inset
3721 </cell>
3722 <cell alignment="center" valignment="top" topline="true" usebox="none">
3723 \begin_inset Text
3724
3725 \begin_layout Standard
3726 Giusi
3727 \end_layout
3728
3729 \end_inset
3730 </cell>
3731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3732 \begin_inset Text
3733
3734 \begin_layout Standard
3735 555
3736 \end_layout
3737
3738 \end_inset
3739 </cell>
3740 </row>
3741 <row>
3742 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3743 \begin_inset Text
3744
3745 \begin_layout Standard
3746
3747 \series bold
3748 Colin
3749 \end_layout
3750
3751 \end_inset
3752 </cell>
3753 <cell alignment="center" valignment="top" topline="true" usebox="none">
3754 \begin_inset Text
3755
3756 \begin_layout Standard
3757 Bernard
3758 \end_layout
3759
3760 \end_inset
3761 </cell>
3762 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3763 \begin_inset Text
3764
3765 \begin_layout Standard
3766 555
3767 \end_layout
3768
3769 \end_inset
3770 </cell>
3771 </row>
3772 <row>
3773 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3774 \begin_inset Text
3775
3776 \begin_layout Standard
3777
3778 \series bold
3779 Concli
3780 \end_layout
3781
3782 \end_inset
3783 </cell>
3784 <cell alignment="center" valignment="top" topline="true" usebox="none">
3785 \begin_inset Text
3786
3787 \begin_layout Standard
3788 Gianfranco
3789 \end_layout
3790
3791 \end_inset
3792 </cell>
3793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3794 \begin_inset Text
3795
3796 \begin_layout Standard
3797 555
3798 \end_layout
3799
3800 \end_inset
3801 </cell>
3802 </row>
3803 <row>
3804 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3805 \begin_inset Text
3806
3807 \begin_layout Standard
3808
3809 \series bold
3810 Dal Bosco
3811 \end_layout
3812
3813 \end_inset
3814 </cell>
3815 <cell alignment="center" valignment="top" topline="true" usebox="none">
3816 \begin_inset Text
3817
3818 \begin_layout Standard
3819 Carolina
3820 \end_layout
3821
3822 \end_inset
3823 </cell>
3824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3825 \begin_inset Text
3826
3827 \begin_layout Standard
3828 555
3829 \end_layout
3830
3831 \end_inset
3832 </cell>
3833 </row>
3834 <row>
3835 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3836 \begin_inset Text
3837
3838 \begin_layout Standard
3839
3840 \series bold
3841 Dalpiaz
3842 \end_layout
3843
3844 \end_inset
3845 </cell>
3846 <cell alignment="center" valignment="top" topline="true" usebox="none">
3847 \begin_inset Text
3848
3849 \begin_layout Standard
3850 Annamaria
3851 \end_layout
3852
3853 \end_inset
3854 </cell>
3855 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3856 \begin_inset Text
3857
3858 \begin_layout Standard
3859 555
3860 \end_layout
3861
3862 \end_inset
3863 </cell>
3864 </row>
3865 <row>
3866 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3867 \begin_inset Text
3868
3869 \begin_layout Standard
3870
3871 \series bold
3872 Feliciello
3873 \end_layout
3874
3875 \end_inset
3876 </cell>
3877 <cell alignment="center" valignment="top" topline="true" usebox="none">
3878 \begin_inset Text
3879
3880 \begin_layout Standard
3881 Domenico
3882 \end_layout
3883
3884 \end_inset
3885 </cell>
3886 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3887 \begin_inset Text
3888
3889 \begin_layout Standard
3890 555
3891 \end_layout
3892
3893 \end_inset
3894 </cell>
3895 </row>
3896 <row>
3897 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3898 \begin_inset Text
3899
3900 \begin_layout Standard
3901
3902 \series bold
3903 Focarelli
3904 \end_layout
3905
3906 \end_inset
3907 </cell>
3908 <cell alignment="center" valignment="top" topline="true" usebox="none">
3909 \begin_inset Text
3910
3911 \begin_layout Standard
3912 Paola
3913 \end_layout
3914
3915 \end_inset
3916 </cell>
3917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3918 \begin_inset Text
3919
3920 \begin_layout Standard
3921 555
3922 \end_layout
3923
3924 \end_inset
3925 </cell>
3926 </row>
3927 <row>
3928 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3929 \begin_inset Text
3930
3931 \begin_layout Standard
3932
3933 \series bold
3934 Galletti
3935 \end_layout
3936
3937 \end_inset
3938 </cell>
3939 <cell alignment="center" valignment="top" topline="true" usebox="none">
3940 \begin_inset Text
3941
3942 \begin_layout Standard
3943 Oreste
3944 \end_layout
3945
3946 \end_inset
3947 </cell>
3948 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3949 \begin_inset Text
3950
3951 \begin_layout Standard
3952 555
3953 \end_layout
3954
3955 \end_inset
3956 </cell>
3957 </row>
3958 <row>
3959 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3960 \begin_inset Text
3961
3962 \begin_layout Standard
3963
3964 \series bold
3965 Gasparini
3966 \end_layout
3967
3968 \end_inset
3969 </cell>
3970 <cell alignment="center" valignment="top" topline="true" usebox="none">
3971 \begin_inset Text
3972
3973 \begin_layout Standard
3974 Franca
3975 \end_layout
3976
3977 \end_inset
3978 </cell>
3979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3980 \begin_inset Text
3981
3982 \begin_layout Standard
3983 555
3984 \end_layout
3985
3986 \end_inset
3987 </cell>
3988 </row>
3989 <row>
3990 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3991 \begin_inset Text
3992
3993 \begin_layout Standard
3994
3995 \series bold
3996 Rizzardi
3997 \end_layout
3998
3999 \end_inset
4000 </cell>
4001 <cell alignment="center" valignment="top" topline="true" usebox="none">
4002 \begin_inset Text
4003
4004 \begin_layout Standard
4005 Paola
4006 \end_layout
4007
4008 \end_inset
4009 </cell>
4010 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4011 \begin_inset Text
4012
4013 \begin_layout Standard
4014 555
4015 \end_layout
4016
4017 \end_inset
4018 </cell>
4019 </row>
4020 <row>
4021 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4022 \begin_inset Text
4023
4024 \begin_layout Standard
4025
4026 \series bold
4027 Lassini
4028 \end_layout
4029
4030 \end_inset
4031 </cell>
4032 <cell alignment="center" valignment="top" topline="true" usebox="none">
4033 \begin_inset Text
4034
4035 \begin_layout Standard
4036 Giancarlo
4037 \end_layout
4038
4039 \end_inset
4040 </cell>
4041 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4042 \begin_inset Text
4043
4044 \begin_layout Standard
4045 555
4046 \end_layout
4047
4048 \end_inset
4049 </cell>
4050 </row>
4051 <row>
4052 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4053 \begin_inset Text
4054
4055 \begin_layout Standard
4056
4057 \series bold
4058 Malfatti
4059 \end_layout
4060
4061 \end_inset
4062 </cell>
4063 <cell alignment="center" valignment="top" topline="true" usebox="none">
4064 \begin_inset Text
4065
4066 \begin_layout Standard
4067 Luciano
4068 \end_layout
4069
4070 \end_inset
4071 </cell>
4072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4073 \begin_inset Text
4074
4075 \begin_layout Standard
4076 555
4077 \end_layout
4078
4079 \end_inset
4080 </cell>
4081 </row>
4082 <row>
4083 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4084 \begin_inset Text
4085
4086 \begin_layout Standard
4087
4088 \series bold
4089 Malfatti
4090 \end_layout
4091
4092 \end_inset
4093 </cell>
4094 <cell alignment="center" valignment="top" topline="true" usebox="none">
4095 \begin_inset Text
4096
4097 \begin_layout Standard
4098 Valeriano
4099 \end_layout
4100
4101 \end_inset
4102 </cell>
4103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4104 \begin_inset Text
4105
4106 \begin_layout Standard
4107 555
4108 \end_layout
4109
4110 \end_inset
4111 </cell>
4112 </row>
4113 <row>
4114 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4115 \begin_inset Text
4116
4117 \begin_layout Standard
4118
4119 \series bold
4120 Meneguzzo
4121 \end_layout
4122
4123 \end_inset
4124 </cell>
4125 <cell alignment="center" valignment="top" topline="true" usebox="none">
4126 \begin_inset Text
4127
4128 \begin_layout Standard
4129 Roberto
4130 \end_layout
4131
4132 \end_inset
4133 </cell>
4134 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4135 \begin_inset Text
4136
4137 \begin_layout Standard
4138 555
4139 \end_layout
4140
4141 \end_inset
4142 </cell>
4143 </row>
4144 <row>
4145 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4146 \begin_inset Text
4147
4148 \begin_layout Standard
4149
4150 \series bold
4151 Mezzadra
4152 \end_layout
4153
4154 \end_inset
4155 </cell>
4156 <cell alignment="center" valignment="top" topline="true" usebox="none">
4157 \begin_inset Text
4158
4159 \begin_layout Standard
4160 Roberto
4161 \end_layout
4162
4163 \end_inset
4164 </cell>
4165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4166 \begin_inset Text
4167
4168 \begin_layout Standard
4169 555
4170 \end_layout
4171
4172 \end_inset
4173 </cell>
4174 </row>
4175 <row>
4176 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4177 \begin_inset Text
4178
4179 \begin_layout Standard
4180
4181 \series bold
4182 Pirpamer
4183 \end_layout
4184
4185 \end_inset
4186 </cell>
4187 <cell alignment="center" valignment="top" topline="true" usebox="none">
4188 \begin_inset Text
4189
4190 \begin_layout Standard
4191 Erich
4192 \end_layout
4193
4194 \end_inset
4195 </cell>
4196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4197 \begin_inset Text
4198
4199 \begin_layout Standard
4200 555
4201 \end_layout
4202
4203 \end_inset
4204 </cell>
4205 </row>
4206 <row>
4207 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4208 \begin_inset Text
4209
4210 \begin_layout Standard
4211
4212 \series bold
4213 Pochiesa
4214 \end_layout
4215
4216 \end_inset
4217 </cell>
4218 <cell alignment="center" valignment="top" topline="true" usebox="none">
4219 \begin_inset Text
4220
4221 \begin_layout Standard
4222 Paolo
4223 \end_layout
4224
4225 \end_inset
4226 </cell>
4227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4228 \begin_inset Text
4229
4230 \begin_layout Standard
4231 555, 222
4232 \end_layout
4233
4234 \end_inset
4235 </cell>
4236 </row>
4237 <row>
4238 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4239 \begin_inset Text
4240
4241 \begin_layout Standard
4242
4243 \series bold
4244 Radina
4245 \end_layout
4246
4247 \end_inset
4248 </cell>
4249 <cell alignment="center" valignment="top" topline="true" usebox="none">
4250 \begin_inset Text
4251
4252 \begin_layout Standard
4253 Claudio
4254 \end_layout
4255
4256 \end_inset
4257 </cell>
4258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4259 \begin_inset Text
4260
4261 \begin_layout Standard
4262 555
4263 \end_layout
4264
4265 \end_inset
4266 </cell>
4267 </row>
4268 <row>
4269 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4270 \begin_inset Text
4271
4272 \begin_layout Standard
4273
4274 \series bold
4275 Stuffer
4276 \end_layout
4277
4278 \end_inset
4279 </cell>
4280 <cell alignment="center" valignment="top" topline="true" usebox="none">
4281 \begin_inset Text
4282
4283 \begin_layout Standard
4284 Oskar
4285 \end_layout
4286
4287 \end_inset
4288 </cell>
4289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4290 \begin_inset Text
4291
4292 \begin_layout Standard
4293 555
4294 \end_layout
4295
4296 \end_inset
4297 </cell>
4298 </row>
4299 <row>
4300 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4301 \begin_inset Text
4302
4303 \begin_layout Standard
4304
4305 \series bold
4306 Tacchelli
4307 \end_layout
4308
4309 \end_inset
4310 </cell>
4311 <cell alignment="center" valignment="top" topline="true" usebox="none">
4312 \begin_inset Text
4313
4314 \begin_layout Standard
4315 Ugo
4316 \end_layout
4317
4318 \end_inset
4319 </cell>
4320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4321 \begin_inset Text
4322
4323 \begin_layout Standard
4324 555
4325 \end_layout
4326
4327 \end_inset
4328 </cell>
4329 </row>
4330 <row>
4331 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4332 \begin_inset Text
4333
4334 \begin_layout Standard
4335
4336 \series bold
4337 Tezzele
4338 \end_layout
4339
4340 \end_inset
4341 </cell>
4342 <cell alignment="center" valignment="top" topline="true" usebox="none">
4343 \begin_inset Text
4344
4345 \begin_layout Standard
4346 Margit
4347 \end_layout
4348
4349 \end_inset
4350 </cell>
4351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4352 \begin_inset Text
4353
4354 \begin_layout Standard
4355 555
4356 \end_layout
4357
4358 \end_inset
4359 </cell>
4360 </row>
4361 <row>
4362 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4363 \begin_inset Text
4364
4365 \begin_layout Standard
4366
4367 \series bold
4368 Unterkalmsteiner
4369 \end_layout
4370
4371 \end_inset
4372 </cell>
4373 <cell alignment="center" valignment="top" topline="true" usebox="none">
4374 \begin_inset Text
4375
4376 \begin_layout Standard
4377 Frieda
4378 \end_layout
4379
4380 \end_inset
4381 </cell>
4382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4383 \begin_inset Text
4384
4385 \begin_layout Standard
4386 555
4387 \end_layout
4388
4389 \end_inset
4390 </cell>
4391 </row>
4392 <row>
4393 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4394 \begin_inset Text
4395
4396 \begin_layout Standard
4397
4398 \series bold
4399 Vieider
4400 \end_layout
4401
4402 \end_inset
4403 </cell>
4404 <cell alignment="center" valignment="top" topline="true" usebox="none">
4405 \begin_inset Text
4406
4407 \begin_layout Standard
4408 Hilde
4409 \end_layout
4410
4411 \end_inset
4412 </cell>
4413 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4414 \begin_inset Text
4415
4416 \begin_layout Standard
4417 555
4418 \end_layout
4419
4420 \end_inset
4421 </cell>
4422 </row>
4423 <row>
4424 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4425 \begin_inset Text
4426
4427 \begin_layout Standard
4428
4429 \series bold
4430 Vigna
4431 \end_layout
4432
4433 \end_inset
4434 </cell>
4435 <cell alignment="center" valignment="top" topline="true" usebox="none">
4436 \begin_inset Text
4437
4438 \begin_layout Standard
4439 Jürgen
4440 \end_layout
4441
4442 \end_inset
4443 </cell>
4444 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4445 \begin_inset Text
4446
4447 \begin_layout Standard
4448 999
4449 \end_layout
4450
4451 \end_inset
4452 </cell>
4453 </row>
4454 <row>
4455 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4456 \begin_inset Text
4457
4458 \begin_layout Standard
4459
4460 \series bold
4461 Weber
4462 \end_layout
4463
4464 \end_inset
4465 </cell>
4466 <cell alignment="center" valignment="top" topline="true" usebox="none">
4467 \begin_inset Text
4468
4469 \begin_layout Standard
4470 Maurizio
4471 \end_layout
4472
4473 \end_inset
4474 </cell>
4475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4476 \begin_inset Text
4477
4478 \begin_layout Standard
4479 555
4480 \end_layout
4481
4482 \end_inset
4483 </cell>
4484 </row>
4485 <row bottomline="true">
4486 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4487 \begin_inset Text
4488
4489 \begin_layout Standard
4490
4491 \series bold
4492 Winkler
4493 \end_layout
4494
4495 \end_inset
4496 </cell>
4497 <cell alignment="center" valignment="top" topline="true" usebox="none">
4498 \begin_inset Text
4499
4500 \begin_layout Standard
4501 Franz
4502 \end_layout
4503
4504 \end_inset
4505 </cell>
4506 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4507 \begin_inset Text
4508
4509 \begin_layout Standard
4510 555
4511 \end_layout
4512
4513 \end_inset
4514 </cell>
4515 </row>
4516 <row bottomline="true" endlastfoot="true">
4517 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4518 \begin_inset Text
4519
4520 \begin_layout Standard
4521 end
4522 \end_layout
4523
4524 \end_inset
4525 </cell>
4526 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4527 \begin_inset Text
4528
4529 \begin_layout Standard
4530
4531 \end_layout
4532
4533 \end_inset
4534 </cell>
4535 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4536 \begin_inset Text
4537
4538 \begin_layout Standard
4539
4540 \end_layout
4541
4542 \end_inset
4543 </cell>
4544 </row>
4545 </lyxtabular>
4546
4547 \end_inset
4548
4549
4550 \begin_inset ERT
4551 status collapsed
4552
4553 \begin_layout Standard
4554
4555
4556 \backslash
4557 addtocounter{table}{-1}
4558 \end_layout
4559
4560 \end_inset
4561
4562
4563 \begin_inset Note Note
4564 status collapsed
4565
4566 \begin_layout Standard
4567 See greyed-out note in section 2.6.2 for an explanation of this command.
4568 \end_layout
4569
4570 \end_inset
4571
4572
4573 \end_layout
4574
4575 \begin_layout Subsection
4576 Footnotes in Longtables
4577 \begin_inset LatexCommand label
4578 name "sub:Footnotes-in-Longtables"
4579
4580 \end_inset
4581
4582
4583 \begin_inset LatexCommand index
4584 name "Longtables ! Footnotes"
4585
4586 \end_inset
4587
4588
4589 \end_layout
4590
4591 \begin_layout Standard
4592 Footnotes can be inserted to every longtable cell.
4593  They appear at the bottom of the page where the table cell with the footnote
4594  appears.
4595  Table\InsetSpace ~
4596
4597 \begin_inset LatexCommand ref
4598 reference "tab:DiffCaptions"
4599
4600 \end_inset
4601
4602  has for example a footnote.
4603 \end_layout
4604
4605 \begin_layout Subsection
4606 Longtable Captions
4607 \begin_inset LatexCommand index
4608 name "Longtables ! Captions"
4609
4610 \end_inset
4611
4612
4613 \end_layout
4614
4615 \begin_layout Standard
4616 A longtable cannot be put into a table float because floats can only be
4617  on one page but the caption environment of floats can also be used for
4618  longtables.
4619 \end_layout
4620
4621 \begin_layout Standard
4622 As LyX does not yet fully support captions in longtables, a hack is needed
4623  to create them:
4624 \end_layout
4625
4626 \begin_layout Enumerate
4627 Create a longtable
4628 \family sans
4629 .
4630 \end_layout
4631
4632 \begin_layout Enumerate
4633 Mark the first row an disable its upper line.
4634 \end_layout
4635
4636 \begin_layout Enumerate
4637 Insert a caption via the menu 
4638 \family sans
4639 Insert\SpecialChar \menuseparator
4640 Caption
4641 \family default
4642  into the first table cell.
4643 \newline
4644 You can also add a short title for the caption.
4645 \end_layout
4646
4647 \begin_layout Enumerate
4648 Insert a 
4649 \begin_inset Quotes eld
4650 \end_inset
4651
4652
4653 \series bold
4654
4655 \backslash
4656
4657 \backslash
4658 %
4659 \series default
4660
4661 \begin_inset Quotes erd
4662 \end_inset
4663
4664  as ERT behind the caption.
4665 \end_layout
4666
4667 \begin_layout Standard
4668 A short title that will appear in the LOT instead of the full title.
4669  The 
4670 \series bold
4671
4672 \backslash
4673
4674 \backslash
4675 %
4676 \series default
4677  behind the caption omits the vertical lines between the following cells
4678  in the row.
4679  The first table row is now only a dummy row for the caption, the actual
4680  table starts with the second row.
4681 \end_layout
4682
4683 \begin_layout Standard
4684 Here is a short longtable to see how it works:
4685 \end_layout
4686
4687 \begin_layout Standard
4688 \begin_inset Tabular
4689 <lyxtabular version="3" rows="6" columns="5">
4690 <features islongtable="true">
4691 <column alignment="center" valignment="top" leftline="true" width="0">
4692 <column alignment="center" valignment="top" leftline="true" width="0">
4693 <column alignment="center" valignment="top" leftline="true" width="0">
4694 <column alignment="center" valignment="top" leftline="true" width="0">
4695 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4696 <row>
4697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4698 \begin_inset Text
4699
4700 \begin_layout Standard
4701 \begin_inset Caption
4702
4703 \begin_layout Standard
4704 Longtable with caption
4705 \begin_inset OptArg
4706 status open
4707
4708 \begin_layout Standard
4709 Longtable
4710 \end_layout
4711
4712 \end_inset
4713
4714
4715 \end_layout
4716
4717 \end_inset
4718
4719
4720 \begin_inset ERT
4721 status collapsed
4722
4723 \begin_layout Standard
4724
4725
4726 \backslash
4727
4728 \backslash
4729 %
4730 \end_layout
4731
4732 \end_inset
4733
4734
4735 \end_layout
4736
4737 \end_inset
4738 </cell>
4739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4740 \begin_inset Text
4741
4742 \begin_layout Standard
4743
4744 \end_layout
4745
4746 \end_inset
4747 </cell>
4748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4749 \begin_inset Text
4750
4751 \begin_layout Standard
4752
4753 \end_layout
4754
4755 \end_inset
4756 </cell>
4757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4758 \begin_inset Text
4759
4760 \begin_layout Standard
4761
4762 \end_layout
4763
4764 \end_inset
4765 </cell>
4766 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4767 \begin_inset Text
4768
4769 \begin_layout Standard
4770
4771 \end_layout
4772
4773 \end_inset
4774 </cell>
4775 </row>
4776 <row topline="true">
4777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4778 \begin_inset Text
4779
4780 \begin_layout Standard
4781 1
4782 \end_layout
4783
4784 \end_inset
4785 </cell>
4786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4787 \begin_inset Text
4788
4789 \begin_layout Standard
4790 2
4791 \end_layout
4792
4793 \end_inset
4794 </cell>
4795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4796 \begin_inset Text
4797
4798 \begin_layout Standard
4799 3
4800 \end_layout
4801
4802 \end_inset
4803 </cell>
4804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4805 \begin_inset Text
4806
4807 \begin_layout Standard
4808 4
4809 \end_layout
4810
4811 \end_inset
4812 </cell>
4813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4814 \begin_inset Text
4815
4816 \begin_layout Standard
4817 5
4818 \end_layout
4819
4820 \end_inset
4821 </cell>
4822 </row>
4823 <row topline="true">
4824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4825 \begin_inset Text
4826
4827 \begin_layout Standard
4828 asd
4829 \end_layout
4830
4831 \end_inset
4832 </cell>
4833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4834 \begin_inset Text
4835
4836 \begin_layout Standard
4837 s
4838 \end_layout
4839
4840 \end_inset
4841 </cell>
4842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4843 \begin_inset Text
4844
4845 \begin_layout Standard
4846 s
4847 \end_layout
4848
4849 \end_inset
4850 </cell>
4851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4852 \begin_inset Text
4853
4854 \begin_layout Standard
4855 s
4856 \end_layout
4857
4858 \end_inset
4859 </cell>
4860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4861 \begin_inset Text
4862
4863 \begin_layout Standard
4864 asd
4865 \end_layout
4866
4867 \end_inset
4868 </cell>
4869 </row>
4870 <row topline="true">
4871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4872 \begin_inset Text
4873
4874 \begin_layout Standard
4875 asd
4876 \end_layout
4877
4878 \end_inset
4879 </cell>
4880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4881 \begin_inset Text
4882
4883 \begin_layout Standard
4884 s
4885 \end_layout
4886
4887 \end_inset
4888 </cell>
4889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4890 \begin_inset Text
4891
4892 \begin_layout Standard
4893 s
4894 \end_layout
4895
4896 \end_inset
4897 </cell>
4898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4899 \begin_inset Text
4900
4901 \begin_layout Standard
4902 s
4903 \end_layout
4904
4905 \end_inset
4906 </cell>
4907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4908 \begin_inset Text
4909
4910 \begin_layout Standard
4911 asd
4912 \end_layout
4913
4914 \end_inset
4915 </cell>
4916 </row>
4917 <row topline="true">
4918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4919 \begin_inset Text
4920
4921 \begin_layout Standard
4922 asd
4923 \end_layout
4924
4925 \end_inset
4926 </cell>
4927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4928 \begin_inset Text
4929
4930 \begin_layout Standard
4931 s
4932 \end_layout
4933
4934 \end_inset
4935 </cell>
4936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4937 \begin_inset Text
4938
4939 \begin_layout Standard
4940 s
4941 \end_layout
4942
4943 \end_inset
4944 </cell>
4945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4946 \begin_inset Text
4947
4948 \begin_layout Standard
4949 s
4950 \end_layout
4951
4952 \end_inset
4953 </cell>
4954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4955 \begin_inset Text
4956
4957 \begin_layout Standard
4958 asd
4959 \end_layout
4960
4961 \end_inset
4962 </cell>
4963 </row>
4964 <row topline="true" bottomline="true">
4965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4966 \begin_inset Text
4967
4968 \begin_layout Standard
4969 asd
4970 \end_layout
4971
4972 \end_inset
4973 </cell>
4974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4975 \begin_inset Text
4976
4977 \begin_layout Standard
4978 asd
4979 \end_layout
4980
4981 \end_inset
4982 </cell>
4983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4984 \begin_inset Text
4985
4986 \begin_layout Standard
4987 asd
4988 \end_layout
4989
4990 \end_inset
4991 </cell>
4992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4993 \begin_inset Text
4994
4995 \begin_layout Standard
4996 asd
4997 \end_layout
4998
4999 \end_inset
5000 </cell>
5001 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5002 \begin_inset Text
5003
5004 \begin_layout Standard
5005 asd
5006 \end_layout
5007
5008 \end_inset
5009 </cell>
5010 </row>
5011 </lyxtabular>
5012
5013 \end_inset
5014
5015
5016 \end_layout
5017
5018 \begin_layout Standard
5019 \begin_inset VSpace medskip
5020 \end_inset
5021
5022
5023 \begin_inset Note Greyedout
5024 status open
5025
5026 \begin_layout Standard
5027
5028 \series bold
5029 Note:
5030 \series default
5031  The table number is increased for every longtable, also if you didn't set
5032  a caption for it.
5033  For this reason you could have the case that e.g.
5034  Table\InsetSpace ~
5035 2.4 follows on Table\InsetSpace ~
5036 2.1 in the list of tables if there are two longtables
5037  without captions.
5038  To avoid this you can add the following command in ERT behind every longtable
5039  without a caption:
5040 \end_layout
5041
5042 \begin_layout Standard
5043
5044 \series bold
5045
5046 \backslash
5047 addtocounter{table}{-1}
5048 \end_layout
5049
5050 \end_inset
5051
5052
5053 \end_layout
5054
5055 \begin_layout Standard
5056 \begin_inset Note Greyedout
5057 status open
5058
5059 \begin_layout Standard
5060
5061 \series bold
5062 Note:
5063 \series default
5064  If you are using the LaTeX-package 
5065 \series bold
5066 hyperref
5067 \series default
5068
5069 \begin_inset LatexCommand index
5070 name "LaTeX-packages ! hyperref"
5071
5072 \end_inset
5073
5074  to link cross-references, the link to a longtable caption will always point
5075  to the beginning of the document.
5076 \end_layout
5077
5078 \end_inset
5079
5080
5081 \end_layout
5082
5083 \begin_layout Subsubsection
5084 References to Longtables
5085 \begin_inset LatexCommand index
5086 name "Longtables ! References"
5087
5088 \end_inset
5089
5090
5091 \end_layout
5092
5093 \begin_layout Standard
5094 \begin_inset Tabular
5095 <lyxtabular version="3" rows="6" columns="5">
5096 <features islongtable="true">
5097 <column alignment="center" valignment="top" leftline="true" width="0">
5098 <column alignment="center" valignment="top" leftline="true" width="0">
5099 <column alignment="center" valignment="top" leftline="true" width="0">
5100 <column alignment="center" valignment="top" leftline="true" width="0">
5101 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5102 <row>
5103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5104 \begin_inset Text
5105
5106 \begin_layout Standard
5107 \begin_inset Caption
5108
5109 \begin_layout Standard
5110 Referenced longtable
5111 \begin_inset LatexCommand label
5112 name "tab:RefExample"
5113
5114 \end_inset
5115
5116
5117 \end_layout
5118
5119 \end_inset
5120
5121
5122 \begin_inset ERT
5123 status collapsed
5124
5125 \begin_layout Standard
5126
5127
5128 \backslash
5129
5130 \backslash
5131 %
5132 \end_layout
5133
5134 \end_inset
5135
5136
5137 \end_layout
5138
5139 \end_inset
5140 </cell>
5141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5142 \begin_inset Text
5143
5144 \begin_layout Standard
5145
5146 \end_layout
5147
5148 \end_inset
5149 </cell>
5150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5151 \begin_inset Text
5152
5153 \begin_layout Standard
5154
5155 \end_layout
5156
5157 \end_inset
5158 </cell>
5159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5160 \begin_inset Text
5161
5162 \begin_layout Standard
5163
5164 \end_layout
5165
5166 \end_inset
5167 </cell>
5168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5169 \begin_inset Text
5170
5171 \begin_layout Standard
5172
5173 \end_layout
5174
5175 \end_inset
5176 </cell>
5177 </row>
5178 <row topline="true">
5179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5180 \begin_inset Text
5181
5182 \begin_layout Standard
5183 1
5184 \end_layout
5185
5186 \end_inset
5187 </cell>
5188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5189 \begin_inset Text
5190
5191 \begin_layout Standard
5192 2
5193 \end_layout
5194
5195 \end_inset
5196 </cell>
5197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5198 \begin_inset Text
5199
5200 \begin_layout Standard
5201 3
5202 \end_layout
5203
5204 \end_inset
5205 </cell>
5206 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5207 \begin_inset Text
5208
5209 \begin_layout Standard
5210 4
5211 \end_layout
5212
5213 \end_inset
5214 </cell>
5215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5216 \begin_inset Text
5217
5218 \begin_layout Standard
5219 5
5220 \end_layout
5221
5222 \end_inset
5223 </cell>
5224 </row>
5225 <row topline="true">
5226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5227 \begin_inset Text
5228
5229 \begin_layout Standard
5230 asd
5231 \end_layout
5232
5233 \end_inset
5234 </cell>
5235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5236 \begin_inset Text
5237
5238 \begin_layout Standard
5239 s
5240 \end_layout
5241
5242 \end_inset
5243 </cell>
5244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5245 \begin_inset Text
5246
5247 \begin_layout Standard
5248 s
5249 \end_layout
5250
5251 \end_inset
5252 </cell>
5253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5254 \begin_inset Text
5255
5256 \begin_layout Standard
5257 s
5258 \end_layout
5259
5260 \end_inset
5261 </cell>
5262 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5263 \begin_inset Text
5264
5265 \begin_layout Standard
5266 asd
5267 \end_layout
5268
5269 \end_inset
5270 </cell>
5271 </row>
5272 <row topline="true">
5273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5274 \begin_inset Text
5275
5276 \begin_layout Standard
5277 asd
5278 \end_layout
5279
5280 \end_inset
5281 </cell>
5282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5283 \begin_inset Text
5284
5285 \begin_layout Standard
5286 s
5287 \end_layout
5288
5289 \end_inset
5290 </cell>
5291 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5292 \begin_inset Text
5293
5294 \begin_layout Standard
5295 s
5296 \end_layout
5297
5298 \end_inset
5299 </cell>
5300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5301 \begin_inset Text
5302
5303 \begin_layout Standard
5304 s
5305 \end_layout
5306
5307 \end_inset
5308 </cell>
5309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5310 \begin_inset Text
5311
5312 \begin_layout Standard
5313 asd
5314 \end_layout
5315
5316 \end_inset
5317 </cell>
5318 </row>
5319 <row topline="true">
5320 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5321 \begin_inset Text
5322
5323 \begin_layout Standard
5324 asd
5325 \end_layout
5326
5327 \end_inset
5328 </cell>
5329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5330 \begin_inset Text
5331
5332 \begin_layout Standard
5333 s
5334 \end_layout
5335
5336 \end_inset
5337 </cell>
5338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5339 \begin_inset Text
5340
5341 \begin_layout Standard
5342 s
5343 \end_layout
5344
5345 \end_inset
5346 </cell>
5347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5348 \begin_inset Text
5349
5350 \begin_layout Standard
5351 s
5352 \end_layout
5353
5354 \end_inset
5355 </cell>
5356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5357 \begin_inset Text
5358
5359 \begin_layout Standard
5360 asd
5361 \end_layout
5362
5363 \end_inset
5364 </cell>
5365 </row>
5366 <row topline="true" bottomline="true">
5367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5368 \begin_inset Text
5369
5370 \begin_layout Standard
5371 asd
5372 \end_layout
5373
5374 \end_inset
5375 </cell>
5376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5377 \begin_inset Text
5378
5379 \begin_layout Standard
5380 sad
5381 \end_layout
5382
5383 \end_inset
5384 </cell>
5385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5386 \begin_inset Text
5387
5388 \begin_layout Standard
5389 asd
5390 \end_layout
5391
5392 \end_inset
5393 </cell>
5394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5395 \begin_inset Text
5396
5397 \begin_layout Standard
5398 asd
5399 \end_layout
5400
5401 \end_inset
5402 </cell>
5403 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5404 \begin_inset Text
5405
5406 \begin_layout Standard
5407 asd
5408 \end_layout
5409
5410 \end_inset
5411 </cell>
5412 </row>
5413 </lyxtabular>
5414
5415 \end_inset
5416
5417
5418 \end_layout
5419
5420 \begin_layout Standard
5421 To reference a longtable, insert a label into the caption.
5422  Note that you have to add the label prefix 
5423 \begin_inset Quotes eld
5424 \end_inset
5425
5426
5427 \emph on
5428 tab:
5429 \emph default
5430
5431 \begin_inset Quotes eld
5432 \end_inset
5433
5434  manually in the label field.
5435 \end_layout
5436
5437 \begin_layout Standard
5438 This is a reference to Table\InsetSpace ~
5439
5440 \begin_inset LatexCommand ref
5441 reference "tab:RefExample"
5442
5443 \end_inset
5444
5445 .
5446 \end_layout
5447
5448 \begin_layout Standard
5449 The caption layout can be set together with all other caption of your document
5450  using the LaTeX-package 
5451 \series bold
5452 caption
5453 \series default
5454
5455 \begin_inset LatexCommand index
5456 name "LaTeX-packages ! caption"
5457
5458 \end_inset
5459
5460 , see section\InsetSpace ~
5461
5462 \begin_inset LatexCommand ref
5463 reference "sec:Caption-Formatting"
5464
5465 \end_inset
5466
5467 .
5468 \end_layout
5469
5470 \begin_layout Subsubsection
5471 Caption Width
5472 \begin_inset LatexCommand index
5473 name "Longtables ! Caption Width"
5474
5475 \end_inset
5476
5477
5478 \end_layout
5479
5480 \begin_layout Standard
5481 The maximal width of of caption lines is defined by the length 
5482 \series bold
5483
5484 \backslash
5485 LTcapwidth
5486 \series default
5487 .
5488  Its default value is 4\InsetSpace \thinspace{}
5489 in.
5490  To change it add the following command to your document preamble or as
5491  ERT into your document before the longtable that should be affected
5492 \end_layout
5493
5494 \begin_layout Standard
5495
5496 \series bold
5497
5498 \backslash
5499 setlength{
5500 \backslash
5501 LTcapwidth}{width}
5502 \end_layout
5503
5504 \begin_layout Standard
5505 where the width could have one of the units listed in appendix\InsetSpace ~
5506
5507 \begin_inset LatexCommand ref
5508 reference "cha:Units-available-in"
5509
5510 \end_inset
5511
5512 .
5513 \end_layout
5514
5515 \begin_layout Standard
5516 The following tables show the difference:
5517 \end_layout
5518
5519 \begin_layout Standard
5520 \begin_inset Tabular
5521 <lyxtabular version="3" rows="6" columns="5">
5522 <features islongtable="true">
5523 <column alignment="center" valignment="top" leftline="true" width="0">
5524 <column alignment="center" valignment="top" leftline="true" width="0">
5525 <column alignment="center" valignment="top" leftline="true" width="0">
5526 <column alignment="center" valignment="top" leftline="true" width="0">
5527 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5528 <row>
5529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5530 \begin_inset Text
5531
5532 \begin_layout Standard
5533 \begin_inset Caption
5534
5535 \begin_layout Standard
5536 long full title with default width long full title with default width long
5537  full title with default width
5538 \begin_inset OptArg
5539 status collapsed
5540
5541 \begin_layout Standard
5542 caption with default width
5543 \end_layout
5544
5545 \end_inset
5546
5547
5548 \end_layout
5549
5550 \end_inset
5551
5552
5553 \begin_inset ERT
5554 status collapsed
5555
5556 \begin_layout Standard
5557
5558
5559 \backslash
5560
5561 \backslash
5562 %
5563 \end_layout
5564
5565 \end_inset
5566
5567
5568 \end_layout
5569
5570 \end_inset
5571 </cell>
5572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5573 \begin_inset Text
5574
5575 \begin_layout Standard
5576
5577 \end_layout
5578
5579 \end_inset
5580 </cell>
5581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5582 \begin_inset Text
5583
5584 \begin_layout Standard
5585
5586 \end_layout
5587
5588 \end_inset
5589 </cell>
5590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5591 \begin_inset Text
5592
5593 \begin_layout Standard
5594
5595 \end_layout
5596
5597 \end_inset
5598 </cell>
5599 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5600 \begin_inset Text
5601
5602 \begin_layout Standard
5603
5604 \end_layout
5605
5606 \end_inset
5607 </cell>
5608 </row>
5609 <row topline="true">
5610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5611 \begin_inset Text
5612
5613 \begin_layout Standard
5614 1
5615 \end_layout
5616
5617 \end_inset
5618 </cell>
5619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5620 \begin_inset Text
5621
5622 \begin_layout Standard
5623 2
5624 \end_layout
5625
5626 \end_inset
5627 </cell>
5628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5629 \begin_inset Text
5630
5631 \begin_layout Standard
5632 3
5633 \end_layout
5634
5635 \end_inset
5636 </cell>
5637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5638 \begin_inset Text
5639
5640 \begin_layout Standard
5641 4
5642 \end_layout
5643
5644 \end_inset
5645 </cell>
5646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5647 \begin_inset Text
5648
5649 \begin_layout Standard
5650 5
5651 \end_layout
5652
5653 \end_inset
5654 </cell>
5655 </row>
5656 <row topline="true">
5657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5658 \begin_inset Text
5659
5660 \begin_layout Standard
5661 asd
5662 \end_layout
5663
5664 \end_inset
5665 </cell>
5666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5667 \begin_inset Text
5668
5669 \begin_layout Standard
5670 s
5671 \end_layout
5672
5673 \end_inset
5674 </cell>
5675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5676 \begin_inset Text
5677
5678 \begin_layout Standard
5679 s
5680 \end_layout
5681
5682 \end_inset
5683 </cell>
5684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5685 \begin_inset Text
5686
5687 \begin_layout Standard
5688 s
5689 \end_layout
5690
5691 \end_inset
5692 </cell>
5693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5694 \begin_inset Text
5695
5696 \begin_layout Standard
5697 asd
5698 \end_layout
5699
5700 \end_inset
5701 </cell>
5702 </row>
5703 <row topline="true">
5704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5705 \begin_inset Text
5706
5707 \begin_layout Standard
5708 asd
5709 \end_layout
5710
5711 \end_inset
5712 </cell>
5713 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5714 \begin_inset Text
5715
5716 \begin_layout Standard
5717 s
5718 \end_layout
5719
5720 \end_inset
5721 </cell>
5722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5723 \begin_inset Text
5724
5725 \begin_layout Standard
5726 s
5727 \end_layout
5728
5729 \end_inset
5730 </cell>
5731 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5732 \begin_inset Text
5733
5734 \begin_layout Standard
5735 s
5736 \end_layout
5737
5738 \end_inset
5739 </cell>
5740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5741 \begin_inset Text
5742
5743 \begin_layout Standard
5744 asd
5745 \end_layout
5746
5747 \end_inset
5748 </cell>
5749 </row>
5750 <row topline="true">
5751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5752 \begin_inset Text
5753
5754 \begin_layout Standard
5755 asd
5756 \end_layout
5757
5758 \end_inset
5759 </cell>
5760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5761 \begin_inset Text
5762
5763 \begin_layout Standard
5764 s
5765 \end_layout
5766
5767 \end_inset
5768 </cell>
5769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5770 \begin_inset Text
5771
5772 \begin_layout Standard
5773 s
5774 \end_layout
5775
5776 \end_inset
5777 </cell>
5778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5779 \begin_inset Text
5780
5781 \begin_layout Standard
5782 s
5783 \end_layout
5784
5785 \end_inset
5786 </cell>
5787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5788 \begin_inset Text
5789
5790 \begin_layout Standard
5791 asd
5792 \end_layout
5793
5794 \end_inset
5795 </cell>
5796 </row>
5797 <row topline="true" bottomline="true">
5798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5799 \begin_inset Text
5800
5801 \begin_layout Standard
5802 asd
5803 \end_layout
5804
5805 \end_inset
5806 </cell>
5807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5808 \begin_inset Text
5809
5810 \begin_layout Standard
5811 sad
5812 \end_layout
5813
5814 \end_inset
5815 </cell>
5816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5817 \begin_inset Text
5818
5819 \begin_layout Standard
5820 asd
5821 \end_layout
5822
5823 \end_inset
5824 </cell>
5825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5826 \begin_inset Text
5827
5828 \begin_layout Standard
5829 asd
5830 \end_layout
5831
5832 \end_inset
5833 </cell>
5834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5835 \begin_inset Text
5836
5837 \begin_layout Standard
5838 asd
5839 \end_layout
5840
5841 \end_inset
5842 </cell>
5843 </row>
5844 </lyxtabular>
5845
5846 \end_inset
5847
5848
5849 \end_layout
5850
5851 \begin_layout Standard
5852 \begin_inset ERT
5853 status collapsed
5854
5855 \begin_layout Standard
5856
5857
5858 \backslash
5859 setlength{
5860 \backslash
5861 LTcapwidth}{5cm}
5862 \end_layout
5863
5864 \end_inset
5865
5866
5867 \begin_inset Tabular
5868 <lyxtabular version="3" rows="6" columns="5">
5869 <features islongtable="true">
5870 <column alignment="center" valignment="top" leftline="true" width="0">
5871 <column alignment="center" valignment="top" leftline="true" width="0">
5872 <column alignment="center" valignment="top" leftline="true" width="0">
5873 <column alignment="center" valignment="top" leftline="true" width="0">
5874 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5875 <row>
5876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5877 \begin_inset Text
5878
5879 \begin_layout Standard
5880 \begin_inset Caption
5881
5882 \begin_layout Standard
5883 long full title with width set to 5\InsetSpace \thinspace{}
5884 cm long full title with width set to
5885  5\InsetSpace \thinspace{}
5886 cm long full title with width set to 5\InsetSpace \thinspace{}
5887 cm
5888 \begin_inset OptArg
5889 status collapsed
5890
5891 \begin_layout Standard
5892 caption with width\InsetSpace \thinspace{}
5893 =\InsetSpace \thinspace{}
5894 5\InsetSpace \thinspace{}
5895 cm
5896 \end_layout
5897
5898 \end_inset
5899
5900
5901 \end_layout
5902
5903 \end_inset
5904
5905
5906 \begin_inset ERT
5907 status collapsed
5908
5909 \begin_layout Standard
5910
5911
5912 \backslash
5913
5914 \backslash
5915 %
5916 \end_layout
5917
5918 \end_inset
5919
5920
5921 \end_layout
5922
5923 \end_inset
5924 </cell>
5925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5926 \begin_inset Text
5927
5928 \begin_layout Standard
5929
5930 \end_layout
5931
5932 \end_inset
5933 </cell>
5934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5935 \begin_inset Text
5936
5937 \begin_layout Standard
5938
5939 \end_layout
5940
5941 \end_inset
5942 </cell>
5943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5944 \begin_inset Text
5945
5946 \begin_layout Standard
5947
5948 \end_layout
5949
5950 \end_inset
5951 </cell>
5952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5953 \begin_inset Text
5954
5955 \begin_layout Standard
5956
5957 \end_layout
5958
5959 \end_inset
5960 </cell>
5961 </row>
5962 <row topline="true">
5963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5964 \begin_inset Text
5965
5966 \begin_layout Standard
5967 1
5968 \end_layout
5969
5970 \end_inset
5971 </cell>
5972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5973 \begin_inset Text
5974
5975 \begin_layout Standard
5976 2
5977 \end_layout
5978
5979 \end_inset
5980 </cell>
5981 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5982 \begin_inset Text
5983
5984 \begin_layout Standard
5985 3
5986 \end_layout
5987
5988 \end_inset
5989 </cell>
5990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5991 \begin_inset Text
5992
5993 \begin_layout Standard
5994 4
5995 \end_layout
5996
5997 \end_inset
5998 </cell>
5999 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6000 \begin_inset Text
6001
6002 \begin_layout Standard
6003 5
6004 \end_layout
6005
6006 \end_inset
6007 </cell>
6008 </row>
6009 <row topline="true">
6010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6011 \begin_inset Text
6012
6013 \begin_layout Standard
6014 asd
6015 \end_layout
6016
6017 \end_inset
6018 </cell>
6019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6020 \begin_inset Text
6021
6022 \begin_layout Standard
6023 s
6024 \end_layout
6025
6026 \end_inset
6027 </cell>
6028 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6029 \begin_inset Text
6030
6031 \begin_layout Standard
6032 s
6033 \end_layout
6034
6035 \end_inset
6036 </cell>
6037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6038 \begin_inset Text
6039
6040 \begin_layout Standard
6041 s
6042 \end_layout
6043
6044 \end_inset
6045 </cell>
6046 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6047 \begin_inset Text
6048
6049 \begin_layout Standard
6050 asd
6051 \end_layout
6052
6053 \end_inset
6054 </cell>
6055 </row>
6056 <row topline="true">
6057 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6058 \begin_inset Text
6059
6060 \begin_layout Standard
6061 asd
6062 \end_layout
6063
6064 \end_inset
6065 </cell>
6066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6067 \begin_inset Text
6068
6069 \begin_layout Standard
6070 s
6071 \end_layout
6072
6073 \end_inset
6074 </cell>
6075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6076 \begin_inset Text
6077
6078 \begin_layout Standard
6079 s
6080 \end_layout
6081
6082 \end_inset
6083 </cell>
6084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6085 \begin_inset Text
6086
6087 \begin_layout Standard
6088 s
6089 \end_layout
6090
6091 \end_inset
6092 </cell>
6093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6094 \begin_inset Text
6095
6096 \begin_layout Standard
6097 asd
6098 \end_layout
6099
6100 \end_inset
6101 </cell>
6102 </row>
6103 <row topline="true">
6104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6105 \begin_inset Text
6106
6107 \begin_layout Standard
6108 asd
6109 \end_layout
6110
6111 \end_inset
6112 </cell>
6113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6114 \begin_inset Text
6115
6116 \begin_layout Standard
6117 s
6118 \end_layout
6119
6120 \end_inset
6121 </cell>
6122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6123 \begin_inset Text
6124
6125 \begin_layout Standard
6126 s
6127 \end_layout
6128
6129 \end_inset
6130 </cell>
6131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6132 \begin_inset Text
6133
6134 \begin_layout Standard
6135 s
6136 \end_layout
6137
6138 \end_inset
6139 </cell>
6140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6141 \begin_inset Text
6142
6143 \begin_layout Standard
6144 asd
6145 \end_layout
6146
6147 \end_inset
6148 </cell>
6149 </row>
6150 <row topline="true" bottomline="true">
6151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6152 \begin_inset Text
6153
6154 \begin_layout Standard
6155 asd
6156 \end_layout
6157
6158 \end_inset
6159 </cell>
6160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6161 \begin_inset Text
6162
6163 \begin_layout Standard
6164 sad
6165 \end_layout
6166
6167 \end_inset
6168 </cell>
6169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6170 \begin_inset Text
6171
6172 \begin_layout Standard
6173 asd
6174 \end_layout
6175
6176 \end_inset
6177 </cell>
6178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6179 \begin_inset Text
6180
6181 \begin_layout Standard
6182 asd
6183 \end_layout
6184
6185 \end_inset
6186 </cell>
6187 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6188 \begin_inset Text
6189
6190 \begin_layout Standard
6191 asd
6192 \end_layout
6193
6194 \end_inset
6195 </cell>
6196 </row>
6197 </lyxtabular>
6198
6199 \end_inset
6200
6201
6202 \begin_inset ERT
6203 status collapsed
6204
6205 \begin_layout Standard
6206
6207
6208 \backslash
6209 setlength{
6210 \backslash
6211 LTcapwidth}{4in}
6212 \end_layout
6213
6214 \end_inset
6215
6216
6217 \end_layout
6218
6219 \begin_layout Standard
6220
6221 \end_layout
6222
6223 \begin_layout Subsubsection
6224 Different Captions for Table Pages
6225 \begin_inset LatexCommand index
6226 name "Longtables ! Different Captions for Pages"
6227
6228 \end_inset
6229
6230
6231 \end_layout
6232
6233 \begin_layout Standard
6234 When the other captions should differ from the one of the first table page,
6235  insert a caption with a non-empty short title in a dummy caption row marked
6236  as first header.
6237  The caption used for the other table pages is inserted as caption without
6238  a short title in a dummy caption row that is marked as main header.
6239  When this caption shouldn't include the table number, use the command
6240 \end_layout
6241
6242 \begin_layout Standard
6243
6244 \series bold
6245
6246 \backslash
6247 caption*{caption text}
6248 \end_layout
6249
6250 \begin_layout Standard
6251 instead of LyX's caption box.
6252  The label to reference the table is inserted into the caption of the first
6253  header.
6254  Table\InsetSpace ~
6255
6256 \begin_inset LatexCommand ref
6257 reference "tab:DiffCaptions"
6258
6259 \end_inset
6260
6261  is an example for a longtable with different heading where the second caption
6262  doesn't include the table number.
6263 \end_layout
6264
6265 \begin_layout Standard
6266 \align center
6267 \begin_inset Tabular
6268 <lyxtabular version="3" rows="60" columns="3">
6269 <features islongtable="true">
6270 <column alignment="left" valignment="top" leftline="true" width="0cm">
6271 <column alignment="left" valignment="top" rightline="true" width="0pt">
6272 <column alignment="right" valignment="top" rightline="true" width="0pt">
6273 <row endfirsthead="true">
6274 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6275 \begin_inset Text
6276
6277 \begin_layout Standard
6278 \begin_inset Caption
6279
6280 \begin_layout Standard
6281 Example Phone List
6282 \begin_inset LatexCommand label
6283 name "tab:DiffCaptions"
6284
6285 \end_inset
6286
6287
6288 \begin_inset OptArg
6289 status collapsed
6290
6291 \begin_layout Standard
6292 Example Phone List
6293 \end_layout
6294
6295 \end_inset
6296
6297
6298 \end_layout
6299
6300 \end_inset
6301
6302
6303 \begin_inset ERT
6304 status collapsed
6305
6306 \begin_layout Standard
6307
6308
6309 \backslash
6310
6311 \backslash
6312 %
6313 \end_layout
6314
6315 \end_inset
6316
6317
6318 \end_layout
6319
6320 \end_inset
6321 </cell>
6322 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6323 \begin_inset Text
6324
6325 \begin_layout Standard
6326
6327 \end_layout
6328
6329 \end_inset
6330 </cell>
6331 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6332 \begin_inset Text
6333
6334 \begin_layout Standard
6335
6336 \end_layout
6337
6338 \end_inset
6339 </cell>
6340 </row>
6341 <row topline="true" bottomline="true" endfirsthead="true">
6342 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6343 \begin_inset Text
6344
6345 \begin_layout Standard
6346
6347 \series bold
6348 Example Phone List (ignore the names)
6349 \end_layout
6350
6351 \end_inset
6352 </cell>
6353 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6354 \begin_inset Text
6355
6356 \begin_layout Standard
6357
6358 \end_layout
6359
6360 \end_inset
6361 </cell>
6362 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6363 \begin_inset Text
6364
6365 \begin_layout Standard
6366
6367 \end_layout
6368
6369 \end_inset
6370 </cell>
6371 </row>
6372 <row topline="true" bottomline="true" endfirsthead="true">
6373 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6374 \begin_inset Text
6375
6376 \begin_layout Standard
6377
6378 \series bold
6379 NAME
6380 \end_layout
6381
6382 \end_inset
6383 </cell>
6384 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6385 \begin_inset Text
6386
6387 \begin_layout Standard
6388
6389 \end_layout
6390
6391 \end_inset
6392 </cell>
6393 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6394 \begin_inset Text
6395
6396 \begin_layout Standard
6397
6398 \series bold
6399 TEL.
6400 \end_layout
6401
6402 \end_inset
6403 </cell>
6404 </row>
6405 <row bottomline="true" endhead="true">
6406 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6407 \begin_inset Text
6408
6409 \begin_layout Standard
6410 \begin_inset ERT
6411 status collapsed
6412
6413 \begin_layout Standard
6414
6415
6416 \backslash
6417 caption*{Continued Example Phone List}
6418 \backslash
6419
6420 \backslash
6421 %
6422 \end_layout
6423
6424 \end_inset
6425
6426
6427 \end_layout
6428
6429 \end_inset
6430 </cell>
6431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6432 \begin_inset Text
6433
6434 \begin_layout Standard
6435
6436 \end_layout
6437
6438 \end_inset
6439 </cell>
6440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6441 \begin_inset Text
6442
6443 \begin_layout Standard
6444
6445 \end_layout
6446
6447 \end_inset
6448 </cell>
6449 </row>
6450 <row topline="true" bottomline="true" endhead="true">
6451 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6452 \begin_inset Text
6453
6454 \begin_layout Standard
6455
6456 \series bold
6457 Example Phone List
6458 \end_layout
6459
6460 \end_inset
6461 </cell>
6462 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6463 \begin_inset Text
6464
6465 \begin_layout Standard
6466
6467 \end_layout
6468
6469 \end_inset
6470 </cell>
6471 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6472 \begin_inset Text
6473
6474 \begin_layout Standard
6475
6476 \end_layout
6477
6478 \end_inset
6479 </cell>
6480 </row>
6481 <row topline="true" bottomline="true" endhead="true">
6482 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6483 \begin_inset Text
6484
6485 \begin_layout Standard
6486
6487 \series bold
6488 NAME
6489 \end_layout
6490
6491 \end_inset
6492 </cell>
6493 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6494 \begin_inset Text
6495
6496 \begin_layout Standard
6497
6498 \end_layout
6499
6500 \end_inset
6501 </cell>
6502 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6503 \begin_inset Text
6504
6505 \begin_layout Standard
6506
6507 \series bold
6508 TEL.
6509 \end_layout
6510
6511 \end_inset
6512 </cell>
6513 </row>
6514 <row topline="true" bottomline="true" endfoot="true">
6515 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6516 \begin_inset Text
6517
6518 \begin_layout Standard
6519 continued on next page
6520 \end_layout
6521
6522 \end_inset
6523 </cell>
6524 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6525 \begin_inset Text
6526
6527 \begin_layout Standard
6528
6529 \end_layout
6530
6531 \end_inset
6532 </cell>
6533 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6534 \begin_inset Text
6535
6536 \begin_layout Standard
6537
6538 \end_layout
6539
6540 \end_inset
6541 </cell>
6542 </row>
6543 <row>
6544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6545 \begin_inset Text
6546
6547 \begin_layout Standard
6548
6549 \series bold
6550 Annovi
6551 \end_layout
6552
6553 \end_inset
6554 </cell>
6555 <cell alignment="center" valignment="top" topline="true" usebox="none">
6556 \begin_inset Text
6557
6558 \begin_layout Standard
6559 Silvia
6560 \end_layout
6561
6562 \end_inset
6563 </cell>
6564 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6565 \begin_inset Text
6566
6567 \begin_layout Standard
6568 111
6569 \end_layout
6570
6571 \end_inset
6572 </cell>
6573 </row>
6574 <row>
6575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6576 \begin_inset Text
6577
6578 \begin_layout Standard
6579
6580 \series bold
6581 Bertoli
6582 \end_layout
6583
6584 \end_inset
6585 </cell>
6586 <cell alignment="center" valignment="top" topline="true" usebox="none">
6587 \begin_inset Text
6588
6589 \begin_layout Standard
6590 Stefano
6591 \end_layout
6592
6593 \end_inset
6594 </cell>
6595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6596 \begin_inset Text
6597
6598 \begin_layout Standard
6599 111
6600 \end_layout
6601
6602 \end_inset
6603 </cell>
6604 </row>
6605 <row>
6606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6607 \begin_inset Text
6608
6609 \begin_layout Standard
6610
6611 \series bold
6612 Bozzi
6613 \end_layout
6614
6615 \end_inset
6616 </cell>
6617 <cell alignment="center" valignment="top" topline="true" usebox="none">
6618 \begin_inset Text
6619
6620 \begin_layout Standard
6621 Walter
6622 \end_layout
6623
6624 \end_inset
6625 </cell>
6626 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6627 \begin_inset Text
6628
6629 \begin_layout Standard
6630 111
6631 \end_layout
6632
6633 \end_inset
6634 </cell>
6635 </row>
6636 <row>
6637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6638 \begin_inset Text
6639
6640 \begin_layout Standard
6641
6642 \series bold
6643 Cachia
6644 \end_layout
6645
6646 \end_inset
6647 </cell>
6648 <cell alignment="center" valignment="top" topline="true" usebox="none">
6649 \begin_inset Text
6650
6651 \begin_layout Standard
6652 Maria
6653 \end_layout
6654
6655 \end_inset
6656 </cell>
6657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6658 \begin_inset Text
6659
6660 \begin_layout Standard
6661 111
6662 \end_layout
6663
6664 \end_inset
6665 </cell>
6666 </row>
6667 <row>
6668 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6669 \begin_inset Text
6670
6671 \begin_layout Standard
6672
6673 \series bold
6674 Cachia
6675 \end_layout
6676
6677 \end_inset
6678 </cell>
6679 <cell alignment="center" valignment="top" topline="true" usebox="none">
6680 \begin_inset Text
6681
6682 \begin_layout Standard
6683 Maurizio
6684 \end_layout
6685
6686 \end_inset
6687 </cell>
6688 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6689 \begin_inset Text
6690
6691 \begin_layout Standard
6692 111
6693 \end_layout
6694
6695 \end_inset
6696 </cell>
6697 </row>
6698 <row>
6699 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6700 \begin_inset Text
6701
6702 \begin_layout Standard
6703
6704 \series bold
6705 Cinquemani
6706 \end_layout
6707
6708 \end_inset
6709 </cell>
6710 <cell alignment="center" valignment="top" topline="true" usebox="none">
6711 \begin_inset Text
6712
6713 \begin_layout Standard
6714 Giusi
6715 \end_layout
6716
6717 \end_inset
6718 </cell>
6719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6720 \begin_inset Text
6721
6722 \begin_layout Standard
6723 111
6724 \end_layout
6725
6726 \end_inset
6727 </cell>
6728 </row>
6729 <row>
6730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6731 \begin_inset Text
6732
6733 \begin_layout Standard
6734
6735 \series bold
6736 Colin
6737 \end_layout
6738
6739 \end_inset
6740 </cell>
6741 <cell alignment="center" valignment="top" topline="true" usebox="none">
6742 \begin_inset Text
6743
6744 \begin_layout Standard
6745 Bernard
6746 \end_layout
6747
6748 \end_inset
6749 </cell>
6750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6751 \begin_inset Text
6752
6753 \begin_layout Standard
6754 111
6755 \end_layout
6756
6757 \end_inset
6758 </cell>
6759 </row>
6760 <row>
6761 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6762 \begin_inset Text
6763
6764 \begin_layout Standard
6765
6766 \series bold
6767 Concli
6768 \end_layout
6769
6770 \end_inset
6771 </cell>
6772 <cell alignment="center" valignment="top" topline="true" usebox="none">
6773 \begin_inset Text
6774
6775 \begin_layout Standard
6776 Gianfranco
6777 \end_layout
6778
6779 \end_inset
6780 </cell>
6781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6782 \begin_inset Text
6783
6784 \begin_layout Standard
6785 111
6786 \end_layout
6787
6788 \end_inset
6789 </cell>
6790 </row>
6791 <row>
6792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6793 \begin_inset Text
6794
6795 \begin_layout Standard
6796
6797 \series bold
6798 Dal Bosco
6799 \end_layout
6800
6801 \end_inset
6802 </cell>
6803 <cell alignment="center" valignment="top" topline="true" usebox="none">
6804 \begin_inset Text
6805
6806 \begin_layout Standard
6807 Carolina
6808 \end_layout
6809
6810 \end_inset
6811 </cell>
6812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6813 \begin_inset Text
6814
6815 \begin_layout Standard
6816 111
6817 \end_layout
6818
6819 \end_inset
6820 </cell>
6821 </row>
6822 <row>
6823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6824 \begin_inset Text
6825
6826 \begin_layout Standard
6827
6828 \series bold
6829 Dalpiaz
6830 \end_layout
6831
6832 \end_inset
6833 </cell>
6834 <cell alignment="center" valignment="top" topline="true" usebox="none">
6835 \begin_inset Text
6836
6837 \begin_layout Standard
6838 Annamaria
6839 \end_layout
6840
6841 \end_inset
6842 </cell>
6843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6844 \begin_inset Text
6845
6846 \begin_layout Standard
6847 111
6848 \end_layout
6849
6850 \end_inset
6851 </cell>
6852 </row>
6853 <row>
6854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6855 \begin_inset Text
6856
6857 \begin_layout Standard
6858
6859 \series bold
6860 Feliciello
6861 \end_layout
6862
6863 \end_inset
6864 </cell>
6865 <cell alignment="center" valignment="top" topline="true" usebox="none">
6866 \begin_inset Text
6867
6868 \begin_layout Standard
6869 Domenico
6870 \end_layout
6871
6872 \end_inset
6873 </cell>
6874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6875 \begin_inset Text
6876
6877 \begin_layout Standard
6878 111
6879 \end_layout
6880
6881 \end_inset
6882 </cell>
6883 </row>
6884 <row>
6885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6886 \begin_inset Text
6887
6888 \begin_layout Standard
6889
6890 \series bold
6891 Focarelli
6892 \end_layout
6893
6894 \end_inset
6895 </cell>
6896 <cell alignment="center" valignment="top" topline="true" usebox="none">
6897 \begin_inset Text
6898
6899 \begin_layout Standard
6900 Paola
6901 \end_layout
6902
6903 \end_inset
6904 </cell>
6905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6906 \begin_inset Text
6907
6908 \begin_layout Standard
6909 111
6910 \end_layout
6911
6912 \end_inset
6913 </cell>
6914 </row>
6915 <row>
6916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6917 \begin_inset Text
6918
6919 \begin_layout Standard
6920
6921 \series bold
6922 Galletti
6923 \end_layout
6924
6925 \end_inset
6926 </cell>
6927 <cell alignment="center" valignment="top" topline="true" usebox="none">
6928 \begin_inset Text
6929
6930 \begin_layout Standard
6931 Oreste
6932 \end_layout
6933
6934 \end_inset
6935 </cell>
6936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6937 \begin_inset Text
6938
6939 \begin_layout Standard
6940 111
6941 \end_layout
6942
6943 \end_inset
6944 </cell>
6945 </row>
6946 <row>
6947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6948 \begin_inset Text
6949
6950 \begin_layout Standard
6951
6952 \series bold
6953 Gasparini
6954 \end_layout
6955
6956 \end_inset
6957 </cell>
6958 <cell alignment="center" valignment="top" topline="true" usebox="none">
6959 \begin_inset Text
6960
6961 \begin_layout Standard
6962 Franca
6963 \end_layout
6964
6965 \end_inset
6966 </cell>
6967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6968 \begin_inset Text
6969
6970 \begin_layout Standard
6971 111
6972 \end_layout
6973
6974 \end_inset
6975 </cell>
6976 </row>
6977 <row>
6978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6979 \begin_inset Text
6980
6981 \begin_layout Standard
6982
6983 \series bold
6984 Rizzardi
6985 \series default
6986
6987 \begin_inset Foot
6988 status collapsed
6989
6990 \begin_layout Standard
6991 Example footnote
6992 \end_layout
6993
6994 \end_inset
6995
6996
6997 \end_layout
6998
6999 \end_inset
7000 </cell>
7001 <cell alignment="center" valignment="top" topline="true" usebox="none">
7002 \begin_inset Text
7003
7004 \begin_layout Standard
7005 Paola
7006 \end_layout
7007
7008 \end_inset
7009 </cell>
7010 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7011 \begin_inset Text
7012
7013 \begin_layout Standard
7014 111
7015 \end_layout
7016
7017 \end_inset
7018 </cell>
7019 </row>
7020 <row>
7021 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7022 \begin_inset Text
7023
7024 \begin_layout Standard
7025
7026 \series bold
7027 Lassini
7028 \end_layout
7029
7030 \end_inset
7031 </cell>
7032 <cell alignment="center" valignment="top" topline="true" usebox="none">
7033 \begin_inset Text
7034
7035 \begin_layout Standard
7036 Giancarlo
7037 \end_layout
7038
7039 \end_inset
7040 </cell>
7041 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7042 \begin_inset Text
7043
7044 \begin_layout Standard
7045 111
7046 \end_layout
7047
7048 \end_inset
7049 </cell>
7050 </row>
7051 <row>
7052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7053 \begin_inset Text
7054
7055 \begin_layout Standard
7056
7057 \series bold
7058 Malfatti
7059 \end_layout
7060
7061 \end_inset
7062 </cell>
7063 <cell alignment="center" valignment="top" topline="true" usebox="none">
7064 \begin_inset Text
7065
7066 \begin_layout Standard
7067 Luciano
7068 \end_layout
7069
7070 \end_inset
7071 </cell>
7072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7073 \begin_inset Text
7074
7075 \begin_layout Standard
7076 111
7077 \end_layout
7078
7079 \end_inset
7080 </cell>
7081 </row>
7082 <row>
7083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7084 \begin_inset Text
7085
7086 \begin_layout Standard
7087
7088 \series bold
7089 Malfatti
7090 \end_layout
7091
7092 \end_inset
7093 </cell>
7094 <cell alignment="center" valignment="top" topline="true" usebox="none">
7095 \begin_inset Text
7096
7097 \begin_layout Standard
7098 Valeriano
7099 \end_layout
7100
7101 \end_inset
7102 </cell>
7103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7104 \begin_inset Text
7105
7106 \begin_layout Standard
7107 111
7108 \end_layout
7109
7110 \end_inset
7111 </cell>
7112 </row>
7113 <row>
7114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7115 \begin_inset Text
7116
7117 \begin_layout Standard
7118
7119 \series bold
7120 Meneguzzo
7121 \end_layout
7122
7123 \end_inset
7124 </cell>
7125 <cell alignment="center" valignment="top" topline="true" usebox="none">
7126 \begin_inset Text
7127
7128 \begin_layout Standard
7129 Roberto
7130 \end_layout
7131
7132 \end_inset
7133 </cell>
7134 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7135 \begin_inset Text
7136
7137 \begin_layout Standard
7138 111
7139 \end_layout
7140
7141 \end_inset
7142 </cell>
7143 </row>
7144 <row>
7145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7146 \begin_inset Text
7147
7148 \begin_layout Standard
7149
7150 \series bold
7151 Mezzadra
7152 \end_layout
7153
7154 \end_inset
7155 </cell>
7156 <cell alignment="center" valignment="top" topline="true" usebox="none">
7157 \begin_inset Text
7158
7159 \begin_layout Standard
7160 Roberto
7161 \end_layout
7162
7163 \end_inset
7164 </cell>
7165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7166 \begin_inset Text
7167
7168 \begin_layout Standard
7169 111
7170 \end_layout
7171
7172 \end_inset
7173 </cell>
7174 </row>
7175 <row>
7176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7177 \begin_inset Text
7178
7179 \begin_layout Standard
7180
7181 \series bold
7182 Pirpamer
7183 \end_layout
7184
7185 \end_inset
7186 </cell>
7187 <cell alignment="center" valignment="top" topline="true" usebox="none">
7188 \begin_inset Text
7189
7190 \begin_layout Standard
7191 Erich
7192 \end_layout
7193
7194 \end_inset
7195 </cell>
7196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7197 \begin_inset Text
7198
7199 \begin_layout Standard
7200 111
7201 \end_layout
7202
7203 \end_inset
7204 </cell>
7205 </row>
7206 <row>
7207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7208 \begin_inset Text
7209
7210 \begin_layout Standard
7211
7212 \series bold
7213 Pochiesa
7214 \end_layout
7215
7216 \end_inset
7217 </cell>
7218 <cell alignment="center" valignment="top" topline="true" usebox="none">
7219 \begin_inset Text
7220
7221 \begin_layout Standard
7222 Paolo
7223 \end_layout
7224
7225 \end_inset
7226 </cell>
7227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7228 \begin_inset Text
7229
7230 \begin_layout Standard
7231 111, 222
7232 \end_layout
7233
7234 \end_inset
7235 </cell>
7236 </row>
7237 <row>
7238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7239 \begin_inset Text
7240
7241 \begin_layout Standard
7242
7243 \series bold
7244 Radina
7245 \end_layout
7246
7247 \end_inset
7248 </cell>
7249 <cell alignment="center" valignment="top" topline="true" usebox="none">
7250 \begin_inset Text
7251
7252 \begin_layout Standard
7253 Claudio
7254 \end_layout
7255
7256 \end_inset
7257 </cell>
7258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7259 \begin_inset Text
7260
7261 \begin_layout Standard
7262 111
7263 \end_layout
7264
7265 \end_inset
7266 </cell>
7267 </row>
7268 <row>
7269 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7270 \begin_inset Text
7271
7272 \begin_layout Standard
7273
7274 \series bold
7275 Stuffer
7276 \end_layout
7277
7278 \end_inset
7279 </cell>
7280 <cell alignment="center" valignment="top" topline="true" usebox="none">
7281 \begin_inset Text
7282
7283 \begin_layout Standard
7284 Oskar
7285 \end_layout
7286
7287 \end_inset
7288 </cell>
7289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7290 \begin_inset Text
7291
7292 \begin_layout Standard
7293 111
7294 \end_layout
7295
7296 \end_inset
7297 </cell>
7298 </row>
7299 <row>
7300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7301 \begin_inset Text
7302
7303 \begin_layout Standard
7304
7305 \series bold
7306 Tacchelli
7307 \end_layout
7308
7309 \end_inset
7310 </cell>
7311 <cell alignment="center" valignment="top" topline="true" usebox="none">
7312 \begin_inset Text
7313
7314 \begin_layout Standard
7315 Ugo
7316 \end_layout
7317
7318 \end_inset
7319 </cell>
7320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7321 \begin_inset Text
7322
7323 \begin_layout Standard
7324 111
7325 \end_layout
7326
7327 \end_inset
7328 </cell>
7329 </row>
7330 <row>
7331 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7332 \begin_inset Text
7333
7334 \begin_layout Standard
7335
7336 \series bold
7337 Tezzele
7338 \end_layout
7339
7340 \end_inset
7341 </cell>
7342 <cell alignment="center" valignment="top" topline="true" usebox="none">
7343 \begin_inset Text
7344
7345 \begin_layout Standard
7346 Margit
7347 \end_layout
7348
7349 \end_inset
7350 </cell>
7351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7352 \begin_inset Text
7353
7354 \begin_layout Standard
7355 111
7356 \end_layout
7357
7358 \end_inset
7359 </cell>
7360 </row>
7361 <row>
7362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7363 \begin_inset Text
7364
7365 \begin_layout Standard
7366
7367 \series bold
7368 Unterkalmsteiner
7369 \end_layout
7370
7371 \end_inset
7372 </cell>
7373 <cell alignment="center" valignment="top" topline="true" usebox="none">
7374 \begin_inset Text
7375
7376 \begin_layout Standard
7377 Frieda
7378 \end_layout
7379
7380 \end_inset
7381 </cell>
7382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7383 \begin_inset Text
7384
7385 \begin_layout Standard
7386 111
7387 \end_layout
7388
7389 \end_inset
7390 </cell>
7391 </row>
7392 <row>
7393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7394 \begin_inset Text
7395
7396 \begin_layout Standard
7397
7398 \series bold
7399 Vieider
7400 \end_layout
7401
7402 \end_inset
7403 </cell>
7404 <cell alignment="center" valignment="top" topline="true" usebox="none">
7405 \begin_inset Text
7406
7407 \begin_layout Standard
7408 Hilde
7409 \end_layout
7410
7411 \end_inset
7412 </cell>
7413 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7414 \begin_inset Text
7415
7416 \begin_layout Standard
7417 111
7418 \end_layout
7419
7420 \end_inset
7421 </cell>
7422 </row>
7423 <row>
7424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7425 \begin_inset Text
7426
7427 \begin_layout Standard
7428
7429 \series bold
7430 Vigna
7431 \end_layout
7432
7433 \end_inset
7434 </cell>
7435 <cell alignment="center" valignment="top" topline="true" usebox="none">
7436 \begin_inset Text
7437
7438 \begin_layout Standard
7439 Jürgen
7440 \end_layout
7441
7442 \end_inset
7443 </cell>
7444 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7445 \begin_inset Text
7446
7447 \begin_layout Standard
7448 111
7449 \end_layout
7450
7451 \end_inset
7452 </cell>
7453 </row>
7454 <row>
7455 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7456 \begin_inset Text
7457
7458 \begin_layout Standard
7459
7460 \series bold
7461 Weber
7462 \end_layout
7463
7464 \end_inset
7465 </cell>
7466 <cell alignment="center" valignment="top" topline="true" usebox="none">
7467 \begin_inset Text
7468
7469 \begin_layout Standard
7470 Maurizio
7471 \end_layout
7472
7473 \end_inset
7474 </cell>
7475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7476 \begin_inset Text
7477
7478 \begin_layout Standard
7479 111
7480 \end_layout
7481
7482 \end_inset
7483 </cell>
7484 </row>
7485 <row bottomline="true">
7486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7487 \begin_inset Text
7488
7489 \begin_layout Standard
7490
7491 \series bold
7492 Winkler
7493 \end_layout
7494
7495 \end_inset
7496 </cell>
7497 <cell alignment="center" valignment="top" topline="true" usebox="none">
7498 \begin_inset Text
7499
7500 \begin_layout Standard
7501 Franz
7502 \end_layout
7503
7504 \end_inset
7505 </cell>
7506 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7507 \begin_inset Text
7508
7509 \begin_layout Standard
7510 111
7511 \end_layout
7512
7513 \end_inset
7514 </cell>
7515 </row>
7516 <row bottomline="true">
7517 <cell multicolumn="1" alignment="left" valignment="top" bottomline="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 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7527 \begin_inset Text
7528
7529 \begin_layout Standard
7530
7531 \end_layout
7532
7533 \end_inset
7534 </cell>
7535 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7536 \begin_inset Text
7537
7538 \begin_layout Standard
7539
7540 \end_layout
7541
7542 \end_inset
7543 </cell>
7544 </row>
7545 <row>
7546 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7547 \begin_inset Text
7548
7549 \begin_layout Standard
7550
7551 \series bold
7552 Annovi
7553 \end_layout
7554
7555 \end_inset
7556 </cell>
7557 <cell alignment="center" valignment="top" topline="true" usebox="none">
7558 \begin_inset Text
7559
7560 \begin_layout Standard
7561 Silvia
7562 \end_layout
7563
7564 \end_inset
7565 </cell>
7566 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7567 \begin_inset Text
7568
7569 \begin_layout Standard
7570 555
7571 \end_layout
7572
7573 \end_inset
7574 </cell>
7575 </row>
7576 <row>
7577 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7578 \begin_inset Text
7579
7580 \begin_layout Standard
7581
7582 \series bold
7583 Bertoli
7584 \end_layout
7585
7586 \end_inset
7587 </cell>
7588 <cell alignment="center" valignment="top" topline="true" usebox="none">
7589 \begin_inset Text
7590
7591 \begin_layout Standard
7592 Stefano
7593 \end_layout
7594
7595 \end_inset
7596 </cell>
7597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7598 \begin_inset Text
7599
7600 \begin_layout Standard
7601 555
7602 \end_layout
7603
7604 \end_inset
7605 </cell>
7606 </row>
7607 <row>
7608 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7609 \begin_inset Text
7610
7611 \begin_layout Standard
7612
7613 \series bold
7614 Bozzi
7615 \end_layout
7616
7617 \end_inset
7618 </cell>
7619 <cell alignment="center" valignment="top" topline="true" usebox="none">
7620 \begin_inset Text
7621
7622 \begin_layout Standard
7623 Walter
7624 \end_layout
7625
7626 \end_inset
7627 </cell>
7628 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7629 \begin_inset Text
7630
7631 \begin_layout Standard
7632 555
7633 \end_layout
7634
7635 \end_inset
7636 </cell>
7637 </row>
7638 <row>
7639 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7640 \begin_inset Text
7641
7642 \begin_layout Standard
7643
7644 \series bold
7645 Cachia
7646 \end_layout
7647
7648 \end_inset
7649 </cell>
7650 <cell alignment="center" valignment="top" topline="true" usebox="none">
7651 \begin_inset Text
7652
7653 \begin_layout Standard
7654 Maria
7655 \end_layout
7656
7657 \end_inset
7658 </cell>
7659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7660 \begin_inset Text
7661
7662 \begin_layout Standard
7663 555
7664 \end_layout
7665
7666 \end_inset
7667 </cell>
7668 </row>
7669 <row>
7670 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7671 \begin_inset Text
7672
7673 \begin_layout Standard
7674
7675 \series bold
7676 Cachia
7677 \end_layout
7678
7679 \end_inset
7680 </cell>
7681 <cell alignment="center" valignment="top" topline="true" usebox="none">
7682 \begin_inset Text
7683
7684 \begin_layout Standard
7685 Maurizio
7686 \end_layout
7687
7688 \end_inset
7689 </cell>
7690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7691 \begin_inset Text
7692
7693 \begin_layout Standard
7694 555
7695 \end_layout
7696
7697 \end_inset
7698 </cell>
7699 </row>
7700 <row>
7701 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7702 \begin_inset Text
7703
7704 \begin_layout Standard
7705
7706 \series bold
7707 Cinquemani
7708 \end_layout
7709
7710 \end_inset
7711 </cell>
7712 <cell alignment="center" valignment="top" topline="true" usebox="none">
7713 \begin_inset Text
7714
7715 \begin_layout Standard
7716 Giusi
7717 \end_layout
7718
7719 \end_inset
7720 </cell>
7721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7722 \begin_inset Text
7723
7724 \begin_layout Standard
7725 555
7726 \end_layout
7727
7728 \end_inset
7729 </cell>
7730 </row>
7731 <row>
7732 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7733 \begin_inset Text
7734
7735 \begin_layout Standard
7736
7737 \series bold
7738 Colin
7739 \end_layout
7740
7741 \end_inset
7742 </cell>
7743 <cell alignment="center" valignment="top" topline="true" usebox="none">
7744 \begin_inset Text
7745
7746 \begin_layout Standard
7747 Bernard
7748 \end_layout
7749
7750 \end_inset
7751 </cell>
7752 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7753 \begin_inset Text
7754
7755 \begin_layout Standard
7756 555
7757 \end_layout
7758
7759 \end_inset
7760 </cell>
7761 </row>
7762 <row>
7763 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7764 \begin_inset Text
7765
7766 \begin_layout Standard
7767
7768 \series bold
7769 Concli
7770 \end_layout
7771
7772 \end_inset
7773 </cell>
7774 <cell alignment="center" valignment="top" topline="true" usebox="none">
7775 \begin_inset Text
7776
7777 \begin_layout Standard
7778 Gianfranco
7779 \end_layout
7780
7781 \end_inset
7782 </cell>
7783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7784 \begin_inset Text
7785
7786 \begin_layout Standard
7787 555
7788 \end_layout
7789
7790 \end_inset
7791 </cell>
7792 </row>
7793 <row>
7794 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7795 \begin_inset Text
7796
7797 \begin_layout Standard
7798
7799 \series bold
7800 Dal Bosco
7801 \end_layout
7802
7803 \end_inset
7804 </cell>
7805 <cell alignment="center" valignment="top" topline="true" usebox="none">
7806 \begin_inset Text
7807
7808 \begin_layout Standard
7809 Carolina
7810 \end_layout
7811
7812 \end_inset
7813 </cell>
7814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7815 \begin_inset Text
7816
7817 \begin_layout Standard
7818 555
7819 \end_layout
7820
7821 \end_inset
7822 </cell>
7823 </row>
7824 <row>
7825 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7826 \begin_inset Text
7827
7828 \begin_layout Standard
7829
7830 \series bold
7831 Dalpiaz
7832 \end_layout
7833
7834 \end_inset
7835 </cell>
7836 <cell alignment="center" valignment="top" topline="true" usebox="none">
7837 \begin_inset Text
7838
7839 \begin_layout Standard
7840 Annamaria
7841 \end_layout
7842
7843 \end_inset
7844 </cell>
7845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7846 \begin_inset Text
7847
7848 \begin_layout Standard
7849 555
7850 \end_layout
7851
7852 \end_inset
7853 </cell>
7854 </row>
7855 <row>
7856 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7857 \begin_inset Text
7858
7859 \begin_layout Standard
7860
7861 \series bold
7862 Feliciello
7863 \end_layout
7864
7865 \end_inset
7866 </cell>
7867 <cell alignment="center" valignment="top" topline="true" usebox="none">
7868 \begin_inset Text
7869
7870 \begin_layout Standard
7871 Domenico
7872 \end_layout
7873
7874 \end_inset
7875 </cell>
7876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7877 \begin_inset Text
7878
7879 \begin_layout Standard
7880 555
7881 \end_layout
7882
7883 \end_inset
7884 </cell>
7885 </row>
7886 <row>
7887 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7888 \begin_inset Text
7889
7890 \begin_layout Standard
7891
7892 \series bold
7893 Focarelli
7894 \end_layout
7895
7896 \end_inset
7897 </cell>
7898 <cell alignment="center" valignment="top" topline="true" usebox="none">
7899 \begin_inset Text
7900
7901 \begin_layout Standard
7902 Paola
7903 \end_layout
7904
7905 \end_inset
7906 </cell>
7907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7908 \begin_inset Text
7909
7910 \begin_layout Standard
7911 555
7912 \end_layout
7913
7914 \end_inset
7915 </cell>
7916 </row>
7917 <row>
7918 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7919 \begin_inset Text
7920
7921 \begin_layout Standard
7922
7923 \series bold
7924 Galletti
7925 \end_layout
7926
7927 \end_inset
7928 </cell>
7929 <cell alignment="center" valignment="top" topline="true" usebox="none">
7930 \begin_inset Text
7931
7932 \begin_layout Standard
7933 Oreste
7934 \end_layout
7935
7936 \end_inset
7937 </cell>
7938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7939 \begin_inset Text
7940
7941 \begin_layout Standard
7942 555
7943 \end_layout
7944
7945 \end_inset
7946 </cell>
7947 </row>
7948 <row>
7949 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7950 \begin_inset Text
7951
7952 \begin_layout Standard
7953
7954 \series bold
7955 Gasparini
7956 \end_layout
7957
7958 \end_inset
7959 </cell>
7960 <cell alignment="center" valignment="top" topline="true" usebox="none">
7961 \begin_inset Text
7962
7963 \begin_layout Standard
7964 Franca
7965 \end_layout
7966
7967 \end_inset
7968 </cell>
7969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7970 \begin_inset Text
7971
7972 \begin_layout Standard
7973 555
7974 \end_layout
7975
7976 \end_inset
7977 </cell>
7978 </row>
7979 <row>
7980 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7981 \begin_inset Text
7982
7983 \begin_layout Standard
7984
7985 \series bold
7986 Rizzardi
7987 \end_layout
7988
7989 \end_inset
7990 </cell>
7991 <cell alignment="center" valignment="top" topline="true" usebox="none">
7992 \begin_inset Text
7993
7994 \begin_layout Standard
7995 Paola
7996 \end_layout
7997
7998 \end_inset
7999 </cell>
8000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8001 \begin_inset Text
8002
8003 \begin_layout Standard
8004 555
8005 \end_layout
8006
8007 \end_inset
8008 </cell>
8009 </row>
8010 <row>
8011 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8012 \begin_inset Text
8013
8014 \begin_layout Standard
8015
8016 \series bold
8017 Lassini
8018 \end_layout
8019
8020 \end_inset
8021 </cell>
8022 <cell alignment="center" valignment="top" topline="true" usebox="none">
8023 \begin_inset Text
8024
8025 \begin_layout Standard
8026 Giancarlo
8027 \end_layout
8028
8029 \end_inset
8030 </cell>
8031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8032 \begin_inset Text
8033
8034 \begin_layout Standard
8035 555
8036 \end_layout
8037
8038 \end_inset
8039 </cell>
8040 </row>
8041 <row>
8042 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8043 \begin_inset Text
8044
8045 \begin_layout Standard
8046
8047 \series bold
8048 Malfatti
8049 \end_layout
8050
8051 \end_inset
8052 </cell>
8053 <cell alignment="center" valignment="top" topline="true" usebox="none">
8054 \begin_inset Text
8055
8056 \begin_layout Standard
8057 Luciano
8058 \end_layout
8059
8060 \end_inset
8061 </cell>
8062 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8063 \begin_inset Text
8064
8065 \begin_layout Standard
8066 555
8067 \end_layout
8068
8069 \end_inset
8070 </cell>
8071 </row>
8072 <row>
8073 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8074 \begin_inset Text
8075
8076 \begin_layout Standard
8077
8078 \series bold
8079 Malfatti
8080 \end_layout
8081
8082 \end_inset
8083 </cell>
8084 <cell alignment="center" valignment="top" topline="true" usebox="none">
8085 \begin_inset Text
8086
8087 \begin_layout Standard
8088 Valeriano
8089 \end_layout
8090
8091 \end_inset
8092 </cell>
8093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8094 \begin_inset Text
8095
8096 \begin_layout Standard
8097 555
8098 \end_layout
8099
8100 \end_inset
8101 </cell>
8102 </row>
8103 <row>
8104 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8105 \begin_inset Text
8106
8107 \begin_layout Standard
8108
8109 \series bold
8110 Meneguzzo
8111 \end_layout
8112
8113 \end_inset
8114 </cell>
8115 <cell alignment="center" valignment="top" topline="true" usebox="none">
8116 \begin_inset Text
8117
8118 \begin_layout Standard
8119 Roberto
8120 \end_layout
8121
8122 \end_inset
8123 </cell>
8124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8125 \begin_inset Text
8126
8127 \begin_layout Standard
8128 555
8129 \end_layout
8130
8131 \end_inset
8132 </cell>
8133 </row>
8134 <row bottomline="true">
8135 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8136 \begin_inset Text
8137
8138 \begin_layout Standard
8139
8140 \series bold
8141 Mezzadra
8142 \end_layout
8143
8144 \end_inset
8145 </cell>
8146 <cell alignment="center" valignment="top" topline="true" usebox="none">
8147 \begin_inset Text
8148
8149 \begin_layout Standard
8150 Roberto
8151 \end_layout
8152
8153 \end_inset
8154 </cell>
8155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8156 \begin_inset Text
8157
8158 \begin_layout Standard
8159 555
8160 \end_layout
8161
8162 \end_inset
8163 </cell>
8164 </row>
8165 <row bottomline="true" endlastfoot="true">
8166 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8167 \begin_inset Text
8168
8169 \begin_layout Standard
8170
8171 \end_layout
8172
8173 \end_inset
8174 </cell>
8175 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8176 \begin_inset Text
8177
8178 \begin_layout Standard
8179
8180 \end_layout
8181
8182 \end_inset
8183 </cell>
8184 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8185 \begin_inset Text
8186
8187 \begin_layout Standard
8188
8189 \end_layout
8190
8191 \end_inset
8192 </cell>
8193 </row>
8194 </lyxtabular>
8195
8196 \end_inset
8197
8198
8199 \end_layout
8200
8201 \begin_layout Section
8202 Special Longtable Issues
8203 \begin_inset LatexCommand label
8204 name "sec:Special-Longtable-Issues"
8205
8206 \end_inset
8207
8208
8209 \end_layout
8210
8211 \begin_layout Subsection
8212 Longtable Calculation
8213 \begin_inset LatexCommand index
8214 name "Longtables ! Calculation"
8215
8216 \end_inset
8217
8218
8219 \end_layout
8220
8221 \begin_layout Standard
8222 LaTeX calculates the height of table pages and their page breaks using so
8223  called chunks.
8224  Chunks are pieces of the tables that are at once in LaTeX's memory.
8225  The default value is historically set to only 20 table rows.
8226  If you are using longtables with many pages this may slow down the creation
8227  of your document.
8228  You can safely increase the chunk size to values of 100-1000 by adding
8229  this command line to your document preamble:
8230 \end_layout
8231
8232 \begin_layout Standard
8233
8234 \series bold
8235
8236 \backslash
8237 setcounter{LTchunksize}{100}
8238 \end_layout
8239
8240 \begin_layout Subsection
8241 Floats and Longtables
8242 \begin_inset LatexCommand index
8243 name "Longtables ! Floats"
8244
8245 \end_inset
8246
8247
8248 \end_layout
8249
8250 \begin_layout Standard
8251 There might be problems when a float appears on the same page where a longtable
8252  starts.
8253  To avoid such situation, add the command 
8254 \series bold
8255
8256 \backslash
8257 clearpage
8258 \series default
8259  as ERT before your longtable.
8260 \end_layout
8261
8262 \begin_layout Subsection
8263 Forced Page Breaks
8264 \begin_inset LatexCommand index
8265 name "Longtables ! Forced Page Breaks"
8266
8267 \end_inset
8268
8269
8270 \end_layout
8271
8272 \begin_layout Standard
8273 By default tables are only broken between rows.
8274  If you have a cell with multiples lines and want to have a page break within
8275  the cell, insert the new line command 
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  as ERT at this point of the cell where it should be broken.
8292  Before the 
8293 \series bold
8294
8295 \backslash
8296
8297 \backslash
8298
8299 \series default
8300  command you have to insert in ERT so many 
8301 \begin_inset Quotes eld
8302 \end_inset
8303
8304
8305 \series bold
8306 &
8307 \series default
8308
8309 \begin_inset Quotes erd
8310 \end_inset
8311
8312  characters like the number of the following table columns.
8313  The 
8314 \series bold
8315 &
8316 \series default
8317  is the character to separate table cells.
8318  Write in ERT after each 
8319 \series bold
8320 &
8321 \series default
8322  the content of the corresponding following cell and delete the content
8323  of these cells.
8324 \newline
8325 Behind the the 
8326 \series bold
8327
8328 \backslash
8329
8330 \backslash
8331
8332 \series default
8333  command, insert so many 
8334 \series bold
8335 &
8336 \series default
8337  characters like the number of table columns before the current column.
8338  In Table\InsetSpace ~
8339
8340 \begin_inset LatexCommand ref
8341 reference "tab:ForcedPagebreak"
8342
8343 \end_inset
8344
8345  the cell that should be broken is in the second column followed by another
8346  column.
8347  Therefore the following command was inserted in the cell as ERT behind
8348  
8349 \begin_inset Quotes eld
8350 \end_inset
8351
8352
8353 \emph on
8354 Castelchiodato,
8355 \emph default
8356
8357 \begin_inset Quotes erd
8358 \end_inset
8359
8360 :
8361 \end_layout
8362
8363 \begin_layout Standard
8364
8365 \series bold
8366 & 111
8367 \backslash
8368
8369 \backslash
8370
8371 \newline
8372 &
8373 \end_layout
8374
8375 \begin_layout Standard
8376 The 
8377 \begin_inset Quotes eld
8378 \end_inset
8379
8380 111
8381 \begin_inset Quotes erd
8382 \end_inset
8383
8384  in the third columns of the row was deleted.
8385  If your footer row of the longtable has for a certain reason no upper line
8386  but you would have a horizontal line where the cell is broken, use this
8387  command instead:
8388 \end_layout
8389
8390 \begin_layout Standard
8391
8392 \series bold
8393 & 111
8394 \backslash
8395
8396 \backslash
8397
8398 \newline
8399
8400 \backslash
8401 hline &
8402 \end_layout
8403
8404 \begin_layout Standard
8405 When the cell to be broken is in the last column, the command
8406 \end_layout
8407
8408 \begin_layout Standard
8409
8410 \series bold
8411
8412 \backslash
8413 setlength{
8414 \backslash
8415 parf\SpecialChar \textcompwordmark{}
8416 illskip}{0pt}
8417 \end_layout
8418
8419 \begin_layout Standard
8420 must be inserted as ERT at the beginning of the cell.
8421  This assures that the part of the cell that will be displayed on the new
8422  page appears with the full width.
8423  
8424 \end_layout
8425
8426 \begin_layout Standard
8427 \align center
8428 \begin_inset Tabular
8429 <lyxtabular version="3" rows="39" columns="3">
8430 <features islongtable="true">
8431 <column alignment="left" valignment="top" leftline="true" width="0cm">
8432 <column alignment="left" valignment="top" rightline="true" width="3cm">
8433 <column alignment="right" valignment="top" rightline="true" width="0pt">
8434 <row endfirsthead="true">
8435 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8436 \begin_inset Text
8437
8438 \begin_layout Standard
8439 \begin_inset Caption
8440
8441 \begin_layout Standard
8442 Table with forced page break in table cell
8443 \begin_inset LatexCommand label
8444 name "tab:ForcedPagebreak"
8445
8446 \end_inset
8447
8448
8449 \begin_inset OptArg
8450 status collapsed
8451
8452 \begin_layout Standard
8453 Table with forced page break in table cell
8454 \end_layout
8455
8456 \end_inset
8457
8458
8459 \end_layout
8460
8461 \end_inset
8462
8463
8464 \begin_inset ERT
8465 status collapsed
8466
8467 \begin_layout Standard
8468
8469
8470 \backslash
8471
8472 \backslash
8473 %
8474 \end_layout
8475
8476 \end_inset
8477
8478
8479 \end_layout
8480
8481 \end_inset
8482 </cell>
8483 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8484 \begin_inset Text
8485
8486 \begin_layout Standard
8487
8488 \end_layout
8489
8490 \end_inset
8491 </cell>
8492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8493 \begin_inset Text
8494
8495 \begin_layout Standard
8496
8497 \end_layout
8498
8499 \end_inset
8500 </cell>
8501 </row>
8502 <row topline="true" bottomline="true" endfirsthead="true">
8503 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8504 \begin_inset Text
8505
8506 \begin_layout Standard
8507
8508 \series bold
8509 Example Phone List (ignore the names)
8510 \end_layout
8511
8512 \end_inset
8513 </cell>
8514 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8515 \begin_inset Text
8516
8517 \begin_layout Standard
8518
8519 \end_layout
8520
8521 \end_inset
8522 </cell>
8523 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8524 \begin_inset Text
8525
8526 \begin_layout Standard
8527
8528 \end_layout
8529
8530 \end_inset
8531 </cell>
8532 </row>
8533 <row topline="true" bottomline="true" endfirsthead="true">
8534 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8535 \begin_inset Text
8536
8537 \begin_layout Standard
8538
8539 \series bold
8540 NAME
8541 \end_layout
8542
8543 \end_inset
8544 </cell>
8545 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8546 \begin_inset Text
8547
8548 \begin_layout Standard
8549
8550 \end_layout
8551
8552 \end_inset
8553 </cell>
8554 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8555 \begin_inset Text
8556
8557 \begin_layout Standard
8558
8559 \series bold
8560 TEL.
8561 \end_layout
8562
8563 \end_inset
8564 </cell>
8565 </row>
8566 <row bottomline="true" endhead="true">
8567 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8568 \begin_inset Text
8569
8570 \begin_layout Standard
8571 \begin_inset ERT
8572 status collapsed
8573
8574 \begin_layout Standard
8575
8576
8577 \backslash
8578 caption*{Continued table with forced page break in table cell}
8579 \backslash
8580
8581 \backslash
8582 %
8583 \end_layout
8584
8585 \end_inset
8586
8587
8588 \end_layout
8589
8590 \end_inset
8591 </cell>
8592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8593 \begin_inset Text
8594
8595 \begin_layout Standard
8596
8597 \end_layout
8598
8599 \end_inset
8600 </cell>
8601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8602 \begin_inset Text
8603
8604 \begin_layout Standard
8605
8606 \end_layout
8607
8608 \end_inset
8609 </cell>
8610 </row>
8611 <row topline="true" bottomline="true" endhead="true">
8612 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8613 \begin_inset Text
8614
8615 \begin_layout Standard
8616  
8617 \series bold
8618 Example Phone List
8619 \end_layout
8620
8621 \end_inset
8622 </cell>
8623 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8624 \begin_inset Text
8625
8626 \begin_layout Standard
8627
8628 \end_layout
8629
8630 \end_inset
8631 </cell>
8632 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8633 \begin_inset Text
8634
8635 \begin_layout Standard
8636
8637 \end_layout
8638
8639 \end_inset
8640 </cell>
8641 </row>
8642 <row topline="true" bottomline="true" endhead="true">
8643 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8644 \begin_inset Text
8645
8646 \begin_layout Standard
8647
8648 \series bold
8649 NAME
8650 \end_layout
8651
8652 \end_inset
8653 </cell>
8654 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8655 \begin_inset Text
8656
8657 \begin_layout Standard
8658
8659 \end_layout
8660
8661 \end_inset
8662 </cell>
8663 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8664 \begin_inset Text
8665
8666 \begin_layout Standard
8667
8668 \series bold
8669 TEL.
8670 \end_layout
8671
8672 \end_inset
8673 </cell>
8674 </row>
8675 <row topline="true" bottomline="true" endfoot="true">
8676 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8677 \begin_inset Text
8678
8679 \begin_layout Standard
8680 continued on next page
8681 \end_layout
8682
8683 \end_inset
8684 </cell>
8685 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8686 \begin_inset Text
8687
8688 \begin_layout Standard
8689
8690 \end_layout
8691
8692 \end_inset
8693 </cell>
8694 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8695 \begin_inset Text
8696
8697 \begin_layout Standard
8698
8699 \end_layout
8700
8701 \end_inset
8702 </cell>
8703 </row>
8704 <row>
8705 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8706 \begin_inset Text
8707
8708 \begin_layout Standard
8709
8710 \series bold
8711 Annovi
8712 \end_layout
8713
8714 \end_inset
8715 </cell>
8716 <cell alignment="center" valignment="top" topline="true" usebox="none">
8717 \begin_inset Text
8718
8719 \begin_layout Standard
8720 Silvia
8721 \end_layout
8722
8723 \end_inset
8724 </cell>
8725 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8726 \begin_inset Text
8727
8728 \begin_layout Standard
8729 111
8730 \end_layout
8731
8732 \end_inset
8733 </cell>
8734 </row>
8735 <row>
8736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8737 \begin_inset Text
8738
8739 \begin_layout Standard
8740
8741 \series bold
8742 Bertoli
8743 \end_layout
8744
8745 \end_inset
8746 </cell>
8747 <cell alignment="center" valignment="top" topline="true" usebox="none">
8748 \begin_inset Text
8749
8750 \begin_layout Standard
8751 Stefano
8752 \end_layout
8753
8754 \end_inset
8755 </cell>
8756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8757 \begin_inset Text
8758
8759 \begin_layout Standard
8760 111
8761 \end_layout
8762
8763 \end_inset
8764 </cell>
8765 </row>
8766 <row>
8767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8768 \begin_inset Text
8769
8770 \begin_layout Standard
8771
8772 \series bold
8773 Bozzi
8774 \end_layout
8775
8776 \end_inset
8777 </cell>
8778 <cell alignment="center" valignment="top" topline="true" usebox="none">
8779 \begin_inset Text
8780
8781 \begin_layout Standard
8782 Walter
8783 \end_layout
8784
8785 \end_inset
8786 </cell>
8787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8788 \begin_inset Text
8789
8790 \begin_layout Standard
8791 111
8792 \end_layout
8793
8794 \end_inset
8795 </cell>
8796 </row>
8797 <row>
8798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8799 \begin_inset Text
8800
8801 \begin_layout Standard
8802
8803 \series bold
8804 Cachia
8805 \end_layout
8806
8807 \end_inset
8808 </cell>
8809 <cell alignment="center" valignment="top" topline="true" usebox="none">
8810 \begin_inset Text
8811
8812 \begin_layout Standard
8813 Maria
8814 \end_layout
8815
8816 \end_inset
8817 </cell>
8818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8819 \begin_inset Text
8820
8821 \begin_layout Standard
8822 111
8823 \end_layout
8824
8825 \end_inset
8826 </cell>
8827 </row>
8828 <row>
8829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8830 \begin_inset Text
8831
8832 \begin_layout Standard
8833
8834 \series bold
8835 Cachia
8836 \end_layout
8837
8838 \end_inset
8839 </cell>
8840 <cell alignment="center" valignment="top" topline="true" usebox="none">
8841 \begin_inset Text
8842
8843 \begin_layout Standard
8844 Maurizio
8845 \end_layout
8846
8847 \end_inset
8848 </cell>
8849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8850 \begin_inset Text
8851
8852 \begin_layout Standard
8853 111
8854 \end_layout
8855
8856 \end_inset
8857 </cell>
8858 </row>
8859 <row>
8860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8861 \begin_inset Text
8862
8863 \begin_layout Standard
8864
8865 \series bold
8866 Cinquemani
8867 \end_layout
8868
8869 \end_inset
8870 </cell>
8871 <cell alignment="center" valignment="top" topline="true" usebox="none">
8872 \begin_inset Text
8873
8874 \begin_layout Standard
8875 Giusi
8876 \end_layout
8877
8878 \end_inset
8879 </cell>
8880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8881 \begin_inset Text
8882
8883 \begin_layout Standard
8884 111
8885 \end_layout
8886
8887 \end_inset
8888 </cell>
8889 </row>
8890 <row>
8891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8892 \begin_inset Text
8893
8894 \begin_layout Standard
8895
8896 \series bold
8897 Colin
8898 \end_layout
8899
8900 \end_inset
8901 </cell>
8902 <cell alignment="center" valignment="top" topline="true" usebox="none">
8903 \begin_inset Text
8904
8905 \begin_layout Standard
8906 Bernard
8907 \end_layout
8908
8909 \end_inset
8910 </cell>
8911 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8912 \begin_inset Text
8913
8914 \begin_layout Standard
8915 111
8916 \end_layout
8917
8918 \end_inset
8919 </cell>
8920 </row>
8921 <row>
8922 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8923 \begin_inset Text
8924
8925 \begin_layout Standard
8926
8927 \series bold
8928 Concli
8929 \end_layout
8930
8931 \end_inset
8932 </cell>
8933 <cell alignment="center" valignment="top" topline="true" usebox="none">
8934 \begin_inset Text
8935
8936 \begin_layout Standard
8937 Gianfranco
8938 \end_layout
8939
8940 \end_inset
8941 </cell>
8942 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8943 \begin_inset Text
8944
8945 \begin_layout Standard
8946 111
8947 \end_layout
8948
8949 \end_inset
8950 </cell>
8951 </row>
8952 <row>
8953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8954 \begin_inset Text
8955
8956 \begin_layout Standard
8957
8958 \series bold
8959 Dal Bosco
8960 \end_layout
8961
8962 \end_inset
8963 </cell>
8964 <cell alignment="center" valignment="top" topline="true" usebox="none">
8965 \begin_inset Text
8966
8967 \begin_layout Standard
8968 Carolina
8969 \end_layout
8970
8971 \end_inset
8972 </cell>
8973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8974 \begin_inset Text
8975
8976 \begin_layout Standard
8977 111
8978 \end_layout
8979
8980 \end_inset
8981 </cell>
8982 </row>
8983 <row>
8984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8985 \begin_inset Text
8986
8987 \begin_layout Standard
8988
8989 \series bold
8990 Dalpiaz
8991 \end_layout
8992
8993 \end_inset
8994 </cell>
8995 <cell alignment="center" valignment="top" topline="true" usebox="none">
8996 \begin_inset Text
8997
8998 \begin_layout Standard
8999 Annamaria
9000 \end_layout
9001
9002 \end_inset
9003 </cell>
9004 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9005 \begin_inset Text
9006
9007 \begin_layout Standard
9008 111
9009 \end_layout
9010
9011 \end_inset
9012 </cell>
9013 </row>
9014 <row>
9015 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9016 \begin_inset Text
9017
9018 \begin_layout Standard
9019
9020 \series bold
9021 Feliciello
9022 \end_layout
9023
9024 \end_inset
9025 </cell>
9026 <cell alignment="center" valignment="top" topline="true" usebox="none">
9027 \begin_inset Text
9028
9029 \begin_layout Standard
9030 Domenico
9031 \end_layout
9032
9033 \end_inset
9034 </cell>
9035 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9036 \begin_inset Text
9037
9038 \begin_layout Standard
9039 111
9040 \end_layout
9041
9042 \end_inset
9043 </cell>
9044 </row>
9045 <row>
9046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9047 \begin_inset Text
9048
9049 \begin_layout Standard
9050
9051 \series bold
9052 Focarelli
9053 \end_layout
9054
9055 \end_inset
9056 </cell>
9057 <cell alignment="center" valignment="top" topline="true" usebox="none">
9058 \begin_inset Text
9059
9060 \begin_layout Standard
9061 Paola
9062 \end_layout
9063
9064 \end_inset
9065 </cell>
9066 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9067 \begin_inset Text
9068
9069 \begin_layout Standard
9070 111
9071 \end_layout
9072
9073 \end_inset
9074 </cell>
9075 </row>
9076 <row>
9077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9078 \begin_inset Text
9079
9080 \begin_layout Standard
9081
9082 \series bold
9083 Galletti
9084 \end_layout
9085
9086 \end_inset
9087 </cell>
9088 <cell alignment="center" valignment="top" topline="true" usebox="none">
9089 \begin_inset Text
9090
9091 \begin_layout Standard
9092 Oreste
9093 \end_layout
9094
9095 \end_inset
9096 </cell>
9097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9098 \begin_inset Text
9099
9100 \begin_layout Standard
9101 111
9102 \end_layout
9103
9104 \end_inset
9105 </cell>
9106 </row>
9107 <row>
9108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9109 \begin_inset Text
9110
9111 \begin_layout Standard
9112
9113 \series bold
9114 Gasparini
9115 \end_layout
9116
9117 \end_inset
9118 </cell>
9119 <cell alignment="center" valignment="top" topline="true" usebox="none">
9120 \begin_inset Text
9121
9122 \begin_layout Standard
9123 Franca
9124 \end_layout
9125
9126 \end_inset
9127 </cell>
9128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9129 \begin_inset Text
9130
9131 \begin_layout Standard
9132 111
9133 \end_layout
9134
9135 \end_inset
9136 </cell>
9137 </row>
9138 <row>
9139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9140 \begin_inset Text
9141
9142 \begin_layout Standard
9143
9144 \series bold
9145 Lassini
9146 \end_layout
9147
9148 \end_inset
9149 </cell>
9150 <cell alignment="center" valignment="top" topline="true" usebox="none">
9151 \begin_inset Text
9152
9153 \begin_layout Standard
9154 Giancarlo
9155 \end_layout
9156
9157 \end_inset
9158 </cell>
9159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9160 \begin_inset Text
9161
9162 \begin_layout Standard
9163 111
9164 \end_layout
9165
9166 \end_inset
9167 </cell>
9168 </row>
9169 <row>
9170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9171 \begin_inset Text
9172
9173 \begin_layout Standard
9174
9175 \series bold
9176 Malfatti
9177 \end_layout
9178
9179 \end_inset
9180 </cell>
9181 <cell alignment="center" valignment="top" topline="true" usebox="none">
9182 \begin_inset Text
9183
9184 \begin_layout Standard
9185 Luciano
9186 \end_layout
9187
9188 \end_inset
9189 </cell>
9190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9191 \begin_inset Text
9192
9193 \begin_layout Standard
9194 111
9195 \end_layout
9196
9197 \end_inset
9198 </cell>
9199 </row>
9200 <row>
9201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9202 \begin_inset Text
9203
9204 \begin_layout Standard
9205
9206 \series bold
9207 Malfatti
9208 \end_layout
9209
9210 \end_inset
9211 </cell>
9212 <cell alignment="center" valignment="top" topline="true" usebox="none">
9213 \begin_inset Text
9214
9215 \begin_layout Standard
9216 Valeriano
9217 \end_layout
9218
9219 \end_inset
9220 </cell>
9221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9222 \begin_inset Text
9223
9224 \begin_layout Standard
9225 111
9226 \end_layout
9227
9228 \end_inset
9229 </cell>
9230 </row>
9231 <row>
9232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9233 \begin_inset Text
9234
9235 \begin_layout Standard
9236
9237 \series bold
9238 Meneguzzo
9239 \end_layout
9240
9241 \end_inset
9242 </cell>
9243 <cell alignment="center" valignment="top" topline="true" usebox="none">
9244 \begin_inset Text
9245
9246 \begin_layout Standard
9247 Roberto
9248 \end_layout
9249
9250 \end_inset
9251 </cell>
9252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9253 \begin_inset Text
9254
9255 \begin_layout Standard
9256 111
9257 \end_layout
9258
9259 \end_inset
9260 </cell>
9261 </row>
9262 <row>
9263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9264 \begin_inset Text
9265
9266 \begin_layout Standard
9267
9268 \series bold
9269 Mezzadra
9270 \end_layout
9271
9272 \end_inset
9273 </cell>
9274 <cell alignment="center" valignment="top" topline="true" usebox="none">
9275 \begin_inset Text
9276
9277 \begin_layout Standard
9278 Roberto
9279 \end_layout
9280
9281 \end_inset
9282 </cell>
9283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9284 \begin_inset Text
9285
9286 \begin_layout Standard
9287 111
9288 \end_layout
9289
9290 \end_inset
9291 </cell>
9292 </row>
9293 <row>
9294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9295 \begin_inset Text
9296
9297 \begin_layout Standard
9298
9299 \series bold
9300 Pirpamer
9301 \end_layout
9302
9303 \end_inset
9304 </cell>
9305 <cell alignment="center" valignment="top" topline="true" usebox="none">
9306 \begin_inset Text
9307
9308 \begin_layout Standard
9309 Erich
9310 \end_layout
9311
9312 \end_inset
9313 </cell>
9314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9315 \begin_inset Text
9316
9317 \begin_layout Standard
9318 111
9319 \end_layout
9320
9321 \end_inset
9322 </cell>
9323 </row>
9324 <row>
9325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9326 \begin_inset Text
9327
9328 \begin_layout Standard
9329
9330 \series bold
9331 Pochiesa
9332 \end_layout
9333
9334 \end_inset
9335 </cell>
9336 <cell alignment="center" valignment="top" topline="true" usebox="none">
9337 \begin_inset Text
9338
9339 \begin_layout Standard
9340 Paolo
9341 \end_layout
9342
9343 \end_inset
9344 </cell>
9345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9346 \begin_inset Text
9347
9348 \begin_layout Standard
9349 111, 222
9350 \end_layout
9351
9352 \end_inset
9353 </cell>
9354 </row>
9355 <row>
9356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9357 \begin_inset Text
9358
9359 \begin_layout Standard
9360
9361 \series bold
9362 Radina
9363 \end_layout
9364
9365 \end_inset
9366 </cell>
9367 <cell alignment="center" valignment="top" topline="true" usebox="none">
9368 \begin_inset Text
9369
9370 \begin_layout Standard
9371 Claudio
9372 \end_layout
9373
9374 \end_inset
9375 </cell>
9376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9377 \begin_inset Text
9378
9379 \begin_layout Standard
9380 111
9381 \end_layout
9382
9383 \end_inset
9384 </cell>
9385 </row>
9386 <row>
9387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9388 \begin_inset Text
9389
9390 \begin_layout Standard
9391
9392 \series bold
9393 Rizzardi
9394 \end_layout
9395
9396 \end_inset
9397 </cell>
9398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9399 \begin_inset Text
9400
9401 \begin_layout Standard
9402 Paolo, 11.
9403  Fürst von Montecompatri, 11.
9404  Fürst von Sulmona und Vivaro, 10.
9405  Fürst von Rossano, 5.
9406  Herzog von Canemorte, 11.
9407  Herzog von Palombara, 5.
9408  Herzog von Castelchiodato,
9409 \begin_inset ERT
9410 status collapsed
9411
9412 \begin_layout Standard
9413
9414 & 111
9415 \backslash
9416
9417 \backslash
9418
9419 \end_layout
9420
9421 \begin_layout Standard
9422
9423 &
9424 \end_layout
9425
9426 \end_inset
9427
9428  11.
9429  Herzog von Poggionativo, 11.
9430  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9431  Graf von Valinfreda, 11.
9432  Baron von Cropalati, 11.
9433  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9434 \end_layout
9435
9436 \end_inset
9437 </cell>
9438 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9439 \begin_inset Text
9440
9441 \begin_layout Standard
9442
9443 \end_layout
9444
9445 \end_inset
9446 </cell>
9447 </row>
9448 <row>
9449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9450 \begin_inset Text
9451
9452 \begin_layout Standard
9453
9454 \series bold
9455 Stuffer
9456 \end_layout
9457
9458 \end_inset
9459 </cell>
9460 <cell alignment="center" valignment="top" topline="true" usebox="none">
9461 \begin_inset Text
9462
9463 \begin_layout Standard
9464 Oskar
9465 \end_layout
9466
9467 \end_inset
9468 </cell>
9469 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9470 \begin_inset Text
9471
9472 \begin_layout Standard
9473 111
9474 \end_layout
9475
9476 \end_inset
9477 </cell>
9478 </row>
9479 <row>
9480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9481 \begin_inset Text
9482
9483 \begin_layout Standard
9484
9485 \series bold
9486 Tacchelli
9487 \end_layout
9488
9489 \end_inset
9490 </cell>
9491 <cell alignment="center" valignment="top" topline="true" usebox="none">
9492 \begin_inset Text
9493
9494 \begin_layout Standard
9495 Ugo
9496 \end_layout
9497
9498 \end_inset
9499 </cell>
9500 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9501 \begin_inset Text
9502
9503 \begin_layout Standard
9504 111
9505 \end_layout
9506
9507 \end_inset
9508 </cell>
9509 </row>
9510 <row>
9511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9512 \begin_inset Text
9513
9514 \begin_layout Standard
9515
9516 \series bold
9517 Tezzele
9518 \end_layout
9519
9520 \end_inset
9521 </cell>
9522 <cell alignment="center" valignment="top" topline="true" usebox="none">
9523 \begin_inset Text
9524
9525 \begin_layout Standard
9526 Margit
9527 \end_layout
9528
9529 \end_inset
9530 </cell>
9531 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9532 \begin_inset Text
9533
9534 \begin_layout Standard
9535 111
9536 \end_layout
9537
9538 \end_inset
9539 </cell>
9540 </row>
9541 <row>
9542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9543 \begin_inset Text
9544
9545 \begin_layout Standard
9546
9547 \series bold
9548 Unterkalmsteiner
9549 \end_layout
9550
9551 \end_inset
9552 </cell>
9553 <cell alignment="center" valignment="top" topline="true" usebox="none">
9554 \begin_inset Text
9555
9556 \begin_layout Standard
9557 Frieda
9558 \end_layout
9559
9560 \end_inset
9561 </cell>
9562 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9563 \begin_inset Text
9564
9565 \begin_layout Standard
9566 111
9567 \end_layout
9568
9569 \end_inset
9570 </cell>
9571 </row>
9572 <row>
9573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9574 \begin_inset Text
9575
9576 \begin_layout Standard
9577
9578 \series bold
9579 Vieider
9580 \end_layout
9581
9582 \end_inset
9583 </cell>
9584 <cell alignment="center" valignment="top" topline="true" usebox="none">
9585 \begin_inset Text
9586
9587 \begin_layout Standard
9588 Hilde
9589 \end_layout
9590
9591 \end_inset
9592 </cell>
9593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9594 \begin_inset Text
9595
9596 \begin_layout Standard
9597 111
9598 \end_layout
9599
9600 \end_inset
9601 </cell>
9602 </row>
9603 <row>
9604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9605 \begin_inset Text
9606
9607 \begin_layout Standard
9608
9609 \series bold
9610 Vigna
9611 \end_layout
9612
9613 \end_inset
9614 </cell>
9615 <cell alignment="center" valignment="top" topline="true" usebox="none">
9616 \begin_inset Text
9617
9618 \begin_layout Standard
9619 Jürgen
9620 \end_layout
9621
9622 \end_inset
9623 </cell>
9624 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9625 \begin_inset Text
9626
9627 \begin_layout Standard
9628 111
9629 \end_layout
9630
9631 \end_inset
9632 </cell>
9633 </row>
9634 <row>
9635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9636 \begin_inset Text
9637
9638 \begin_layout Standard
9639
9640 \series bold
9641 Weber
9642 \end_layout
9643
9644 \end_inset
9645 </cell>
9646 <cell alignment="center" valignment="top" topline="true" usebox="none">
9647 \begin_inset Text
9648
9649 \begin_layout Standard
9650 Maurizio
9651 \end_layout
9652
9653 \end_inset
9654 </cell>
9655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9656 \begin_inset Text
9657
9658 \begin_layout Standard
9659 111
9660 \end_layout
9661
9662 \end_inset
9663 </cell>
9664 </row>
9665 <row bottomline="true">
9666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9667 \begin_inset Text
9668
9669 \begin_layout Standard
9670
9671 \series bold
9672 Winkler
9673 \end_layout
9674
9675 \end_inset
9676 </cell>
9677 <cell alignment="center" valignment="top" topline="true" usebox="none">
9678 \begin_inset Text
9679
9680 \begin_layout Standard
9681 Franz
9682 \end_layout
9683
9684 \end_inset
9685 </cell>
9686 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9687 \begin_inset Text
9688
9689 \begin_layout Standard
9690 111
9691 \end_layout
9692
9693 \end_inset
9694 </cell>
9695 </row>
9696 <row endlastfoot="true">
9697 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9698 \begin_inset Text
9699
9700 \begin_layout Standard
9701
9702 \end_layout
9703
9704 \end_inset
9705 </cell>
9706 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9707 \begin_inset Text
9708
9709 \begin_layout Standard
9710
9711 \end_layout
9712
9713 \end_inset
9714 </cell>
9715 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9716 \begin_inset Text
9717
9718 \begin_layout Standard
9719
9720 \end_layout
9721
9722 \end_inset
9723 </cell>
9724 </row>
9725 </lyxtabular>
9726
9727 \end_inset
9728
9729
9730 \end_layout
9731
9732 \begin_layout Section
9733 Multiple Lines Columns and Rows
9734 \end_layout
9735
9736 \begin_layout Subsection
9737 Multiple Lines in Table Cells
9738 \begin_inset LatexCommand label
9739 name "sub:Multiple-Lines-in"
9740
9741 \end_inset
9742
9743
9744 \begin_inset LatexCommand index
9745 name "Multiple Lines in Table Cells"
9746
9747 \end_inset
9748
9749
9750 \begin_inset LatexCommand index
9751 name "Table ! Linebreaks"
9752
9753 \end_inset
9754
9755
9756 \end_layout
9757
9758 \begin_layout Standard
9759 \align center
9760 \begin_inset Float table
9761 placement H
9762 wide false
9763 sideways false
9764 status collapsed
9765
9766 \begin_layout Standard
9767 \begin_inset Caption
9768
9769 \begin_layout Standard
9770 \begin_inset LatexCommand label
9771 name "tab:Table-with-multiple"
9772
9773 \end_inset
9774
9775 Table with multiple lines in cells
9776 \end_layout
9777
9778 \end_inset
9779
9780
9781 \end_layout
9782
9783 \begin_layout Standard
9784 \align center
9785 \begin_inset Tabular
9786 <lyxtabular version="3" rows="3" columns="3">
9787 <features>
9788 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9789 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9790 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9791 <row topline="true">
9792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9793 \begin_inset Text
9794
9795 \begin_layout Standard
9796 multiple
9797 \begin_inset ERT
9798 status collapsed
9799
9800 \begin_layout Standard
9801
9802
9803 \backslash
9804 linebreak 
9805 \end_layout
9806
9807 \end_inset
9808
9809  lines
9810 \end_layout
9811
9812 \end_inset
9813 </cell>
9814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9815 \begin_inset Text
9816
9817 \begin_layout Standard
9818 b
9819 \end_layout
9820
9821 \end_inset
9822 </cell>
9823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9824 \begin_inset Text
9825
9826 \begin_layout Standard
9827 c
9828 \end_layout
9829
9830 \end_inset
9831 </cell>
9832 </row>
9833 <row topline="true">
9834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9835 \begin_inset Text
9836
9837 \begin_layout Standard
9838 d
9839 \end_layout
9840
9841 \end_inset
9842 </cell>
9843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9844 \begin_inset Text
9845
9846 \begin_layout Standard
9847 e
9848 \end_layout
9849
9850 \end_inset
9851 </cell>
9852 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9853 \begin_inset Text
9854
9855 \begin_layout Standard
9856 f
9857 \end_layout
9858
9859 \end_inset
9860 </cell>
9861 </row>
9862 <row topline="true" bottomline="true">
9863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9864 \begin_inset Text
9865
9866 \begin_layout Standard
9867 g
9868 \end_layout
9869
9870 \end_inset
9871 </cell>
9872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9873 \begin_inset Text
9874
9875 \begin_layout Standard
9876 h
9877 \end_layout
9878
9879 \end_inset
9880 </cell>
9881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9882 \begin_inset Text
9883
9884 \begin_layout Standard
9885 i
9886 \end_layout
9887
9888 \end_inset
9889 </cell>
9890 </row>
9891 </lyxtabular>
9892
9893 \end_inset
9894
9895
9896 \end_layout
9897
9898 \end_inset
9899
9900
9901 \end_layout
9902
9903 \begin_layout Standard
9904 Adjusting a fixed width for a column, enables to enter text as a paragraph
9905  with multiple lines and hyphenations.
9906 \end_layout
9907
9908 \begin_layout Standard
9909 To produce Table\InsetSpace ~
9910
9911 \begin_inset LatexCommand ref
9912 reference "tab:Table-with-multiple"
9913
9914 \end_inset
9915
9916 , create a 3×3 table, mark the first cell and right-click on it.
9917  In the appearing table dialog we set a cell width of 2.5\InsetSpace \thinspace{}
9918 cm and choose centered
9919  for the vertical and horizontal alignment.
9920  As our text is smaller than than 2.5\InsetSpace \thinspace{}
9921 cm, only one line will appear.
9922  To get two lines, we add a line break with the command
9923 \end_layout
9924
9925 \begin_layout Standard
9926
9927 \series bold
9928
9929 \backslash
9930 linebreak
9931 \end_layout
9932
9933 \begin_layout Standard
9934 in ERT.
9935  If the text is wider than the set cell width it will automatically be broken
9936  to several lines.
9937 \end_layout
9938
9939 \begin_layout Standard
9940 To center the text inside the two other cells of the first row vertically,
9941  right-click in the second cell, adjust a fixed width of 0.5\InsetSpace \thinspace{}
9942 cm and choose
9943  centered alignments.
9944  Then do the same for the third cell of the row.
9945 \end_layout
9946
9947 \begin_layout Standard
9948 If you have a long word in a cell with a fixed width, it cannot be hyphenated
9949  by LaTeX if it is the first entry.
9950  Therefore you need to insert something, to make the word not being the
9951  first entry: Add the command
9952 \end_layout
9953
9954 \begin_layout Standard
9955
9956 \series bold
9957
9958 \backslash
9959 hspace{0pt}
9960 \end_layout
9961
9962 \begin_layout Standard
9963 in ERT before the word.
9964  As the space is zero, it doesn't change the output.
9965  Table\InsetSpace ~
9966
9967 \begin_inset LatexCommand ref
9968 reference "tab:Table-with-and"
9969
9970 \end_inset
9971
9972  shows the effect.
9973 \end_layout
9974
9975 \begin_layout Standard
9976 \begin_inset Float table
9977 wide false
9978 sideways false
9979 status open
9980
9981 \begin_layout Standard
9982 \begin_inset Caption
9983
9984 \begin_layout Standard
9985 \begin_inset LatexCommand label
9986 name "tab:Table-with-and"
9987
9988 \end_inset
9989
9990 Table with and without hyphenation
9991 \end_layout
9992
9993 \end_inset
9994
9995
9996 \end_layout
9997
9998 \begin_layout Standard
9999
10000 \hfill
10001
10002 \begin_inset Tabular
10003 <lyxtabular version="3" rows="3" columns="3">
10004 <features>
10005 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10006 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10007 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10008 <row topline="true">
10009 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10010 \begin_inset Text
10011
10012 \begin_layout Standard
10013 verylongtablecellword
10014 \end_layout
10015
10016 \end_inset
10017 </cell>
10018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10019 \begin_inset Text
10020
10021 \begin_layout Standard
10022 b
10023 \end_layout
10024
10025 \end_inset
10026 </cell>
10027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10028 \begin_inset Text
10029
10030 \begin_layout Standard
10031 c
10032 \end_layout
10033
10034 \end_inset
10035 </cell>
10036 </row>
10037 <row topline="true">
10038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10039 \begin_inset Text
10040
10041 \begin_layout Standard
10042 d
10043 \end_layout
10044
10045 \end_inset
10046 </cell>
10047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10048 \begin_inset Text
10049
10050 \begin_layout Standard
10051 e
10052 \end_layout
10053
10054 \end_inset
10055 </cell>
10056 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10057 \begin_inset Text
10058
10059 \begin_layout Standard
10060 f
10061 \end_layout
10062
10063 \end_inset
10064 </cell>
10065 </row>
10066 <row topline="true" bottomline="true">
10067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10068 \begin_inset Text
10069
10070 \begin_layout Standard
10071 g
10072 \end_layout
10073
10074 \end_inset
10075 </cell>
10076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10077 \begin_inset Text
10078
10079 \begin_layout Standard
10080 h
10081 \end_layout
10082
10083 \end_inset
10084 </cell>
10085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10086 \begin_inset Text
10087
10088 \begin_layout Standard
10089 i
10090 \end_layout
10091
10092 \end_inset
10093 </cell>
10094 </row>
10095 </lyxtabular>
10096
10097 \end_inset
10098
10099
10100 \hfill
10101
10102 \begin_inset Tabular
10103 <lyxtabular version="3" rows="3" columns="3">
10104 <features>
10105 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10106 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10107 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10108 <row topline="true">
10109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10110 \begin_inset Text
10111
10112 \begin_layout Standard
10113 \begin_inset ERT
10114 status collapsed
10115
10116 \begin_layout Standard
10117
10118
10119 \backslash
10120 hspace{0pt}
10121 \end_layout
10122
10123 \end_inset
10124
10125 verylongtablecellword
10126 \end_layout
10127
10128 \end_inset
10129 </cell>
10130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10131 \begin_inset Text
10132
10133 \begin_layout Standard
10134 b
10135 \end_layout
10136
10137 \end_inset
10138 </cell>
10139 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10140 \begin_inset Text
10141
10142 \begin_layout Standard
10143 c
10144 \end_layout
10145
10146 \end_inset
10147 </cell>
10148 </row>
10149 <row topline="true">
10150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10151 \begin_inset Text
10152
10153 \begin_layout Standard
10154 d
10155 \end_layout
10156
10157 \end_inset
10158 </cell>
10159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10160 \begin_inset Text
10161
10162 \begin_layout Standard
10163 e
10164 \end_layout
10165
10166 \end_inset
10167 </cell>
10168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10169 \begin_inset Text
10170
10171 \begin_layout Standard
10172 f
10173 \end_layout
10174
10175 \end_inset
10176 </cell>
10177 </row>
10178 <row topline="true" bottomline="true">
10179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10180 \begin_inset Text
10181
10182 \begin_layout Standard
10183 g
10184 \end_layout
10185
10186 \end_inset
10187 </cell>
10188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10189 \begin_inset Text
10190
10191 \begin_layout Standard
10192 h
10193 \end_layout
10194
10195 \end_inset
10196 </cell>
10197 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10198 \begin_inset Text
10199
10200 \begin_layout Standard
10201 i
10202 \end_layout
10203
10204 \end_inset
10205 </cell>
10206 </row>
10207 </lyxtabular>
10208
10209 \end_inset
10210
10211
10212 \hfill
10213
10214 \end_layout
10215
10216 \end_inset
10217
10218
10219 \end_layout
10220
10221 \begin_layout Standard
10222
10223 \newpage
10224
10225 \end_layout
10226
10227 \begin_layout Subsection
10228 Multicolumns
10229 \begin_inset LatexCommand label
10230 name "sub:Multicolumns"
10231
10232 \end_inset
10233
10234
10235 \begin_inset LatexCommand index
10236 name "Multicolumns"
10237
10238 \end_inset
10239
10240
10241 \begin_inset LatexCommand index
10242 name "Table ! Multicolumns"
10243
10244 \end_inset
10245
10246
10247 \end_layout
10248
10249 \begin_layout Subsubsection
10250 Multicolumn Basics
10251 \end_layout
10252
10253 \begin_layout Standard
10254 To span a cell over multiple columns, mark as much cells within a line that
10255  should be one spanned cell and use either the table-toolbar button 
10256 \begin_inset Graphics
10257         filename ../images/tabular-feature_multicolumn.xpm
10258         scale 85
10259
10260 \end_inset
10261
10262 , or the menu 
10263 \family sans
10264 Edit\SpecialChar \menuseparator
10265 Table\SpecialChar \menuseparator
10266 Multicolumn
10267 \family default
10268 , or right click on the marked cells and choose multicolumn in the appearing
10269  table dialog under the tab 
10270 \family sans
10271 Table Settings
10272 \family default
10273 .
10274 \end_layout
10275
10276 \begin_layout Standard
10277 Multicolumns have there own cell settings.
10278  That means changing cell borders, cell alignment, and the width only affects
10279  the multicolumn.
10280  Here is an example table with a multicolumn cell in the first row and one
10281  in the last row without the upper border:
10282 \end_layout
10283
10284 \begin_layout Standard
10285 \align center
10286 \begin_inset Tabular
10287 <lyxtabular version="3" rows="3" columns="4">
10288 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10289 <column alignment="center" valignment="top" leftline="true" width="0pt">
10290 <column alignment="center" valignment="middle" leftline="true" width="0">
10291 <column alignment="center" valignment="top" leftline="true" width="0in">
10292 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10293 <row topline="true" bottomline="true">
10294 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10295 \begin_inset Text
10296
10297 \begin_layout Standard
10298 abc
10299 \end_layout
10300
10301 \end_inset
10302 </cell>
10303 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10304 \begin_inset Text
10305
10306 \begin_layout Standard
10307 def
10308 \lang ngerman
10309  
10310 \lang english
10311 ghi
10312 \end_layout
10313
10314 \end_inset
10315 </cell>
10316 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10317 \begin_inset Text
10318
10319 \begin_layout Standard
10320
10321 \end_layout
10322
10323 \end_inset
10324 </cell>
10325 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10326 \begin_inset Text
10327
10328 \begin_layout Standard
10329 jkl
10330 \end_layout
10331
10332 \end_inset
10333 </cell>
10334 </row>
10335 <row topline="true">
10336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10337 \begin_inset Text
10338
10339 \begin_layout Standard
10340
10341 \family roman
10342 \series medium
10343 \shape up
10344 \size normal
10345 \emph off
10346 \bar no
10347 \noun off
10348 \color none
10349 A
10350 \end_layout
10351
10352 \end_inset
10353 </cell>
10354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10355 \begin_inset Text
10356
10357 \begin_layout Standard
10358 B
10359 \end_layout
10360
10361 \end_inset
10362 </cell>
10363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10364 \begin_inset Text
10365
10366 \begin_layout Standard
10367 C
10368 \end_layout
10369
10370 \end_inset
10371 </cell>
10372 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10373 \begin_inset Text
10374
10375 \begin_layout Standard
10376 D
10377 \end_layout
10378
10379 \end_inset
10380 </cell>
10381 </row>
10382 <row topline="true" bottomline="true">
10383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10384 \begin_inset Text
10385
10386 \begin_layout Standard
10387 1
10388 \end_layout
10389
10390 \end_inset
10391 </cell>
10392 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10393 \begin_inset Text
10394
10395 \begin_layout Standard
10396 2
10397 \end_layout
10398
10399 \end_inset
10400 </cell>
10401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10402 \begin_inset Text
10403
10404 \begin_layout Standard
10405 3
10406 \end_layout
10407
10408 \end_inset
10409 </cell>
10410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10411 \begin_inset Text
10412
10413 \begin_layout Standard
10414 4
10415 \end_layout
10416
10417 \end_inset
10418 </cell>
10419 </row>
10420 </lyxtabular>
10421
10422 \end_inset
10423
10424
10425 \end_layout
10426
10427 \begin_layout Subsubsection
10428 Multicolumn Calculations
10429 \begin_inset LatexCommand label
10430 name "sub:Multicolumn-Calculations"
10431
10432 \end_inset
10433
10434
10435 \begin_inset LatexCommand index
10436 name "Multicolumns ! Calculations"
10437
10438 \end_inset
10439
10440
10441 \end_layout
10442
10443 \begin_layout Standard
10444 LyX supports multicolumns directly, but we have to take notice of the cell
10445  width of the columns spanned by the multicolumn cell.
10446 \end_layout
10447
10448 \begin_layout Standard
10449 \begin_inset Float table
10450 wide false
10451 sideways false
10452 status open
10453
10454 \begin_layout Standard
10455 \begin_inset Caption
10456
10457 \begin_layout Standard
10458 \begin_inset LatexCommand label
10459 name "tab:Table-with-centered"
10460
10461 \end_inset
10462
10463 Table with centered multicolumn text above two columns that have exactly
10464  half the width of the multicolumn cell
10465 \begin_inset OptArg
10466 status collapsed
10467
10468 \begin_layout Standard
10469 Perfect multicolumn table
10470 \end_layout
10471
10472 \end_inset
10473
10474
10475 \end_layout
10476
10477 \end_inset
10478
10479
10480 \end_layout
10481
10482 \begin_layout Standard
10483 \align center
10484 \begin_inset Tabular
10485 <lyxtabular version="3" rows="3" columns="3">
10486 <features>
10487 <column alignment="center" valignment="middle" leftline="true" width="0" special="|>{\centering}m{1.25cm-6.2pt}">
10488 <column alignment="center" valignment="middle" leftline="true" width="0">
10489 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10490 <row topline="true">
10491 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special="|>{\centering}m{2.5cm}|">
10492 \begin_inset Text
10493
10494 \begin_layout Standard
10495 multiple lines multicolumn
10496 \end_layout
10497
10498 \end_inset
10499 </cell>
10500 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10501 \begin_inset Text
10502
10503 \begin_layout Standard
10504
10505 \end_layout
10506
10507 \end_inset
10508 </cell>
10509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10510 \begin_inset Text
10511
10512 \begin_layout Standard
10513 c
10514 \end_layout
10515
10516 \end_inset
10517 </cell>
10518 </row>
10519 <row topline="true">
10520 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10521 \begin_inset Text
10522
10523 \begin_layout Standard
10524 d
10525 \end_layout
10526
10527 \end_inset
10528 </cell>
10529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10530 \begin_inset Text
10531
10532 \begin_layout Standard
10533 e
10534 \end_layout
10535
10536 \end_inset
10537 </cell>
10538 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10539 \begin_inset Text
10540
10541 \begin_layout Standard
10542 f
10543 \end_layout
10544
10545 \end_inset
10546 </cell>
10547 </row>
10548 <row topline="true" bottomline="true">
10549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10550 \begin_inset Text
10551
10552 \begin_layout Standard
10553 g
10554 \end_layout
10555
10556 \end_inset
10557 </cell>
10558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10559 \begin_inset Text
10560
10561 \begin_layout Standard
10562 h
10563 \end_layout
10564
10565 \end_inset
10566 </cell>
10567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10568 \begin_inset Text
10569
10570 \begin_layout Standard
10571 i
10572 \end_layout
10573
10574 \end_inset
10575 </cell>
10576 </row>
10577 </lyxtabular>
10578
10579 \end_inset
10580
10581
10582 \end_layout
10583
10584 \end_inset
10585
10586
10587 \end_layout
10588
10589 \begin_layout Standard
10590 To create for example Table\InsetSpace ~
10591
10592 \begin_inset LatexCommand ref
10593 reference "tab:Table-with-centered"
10594
10595 \end_inset
10596
10597 , mark the first two cells in the first row a 3×3 table and right-click
10598  on them.
10599  Now choose for this cell 
10600 \emph on
10601 multicolumn
10602 \emph default
10603
10604 \emph on
10605 centered alignment
10606 \emph default
10607  and a width of 2.5\InsetSpace \thinspace{}
10608 cm in the table dialog.
10609  The spanned columns should have exactly half the width of the multicolumn
10610  cell, so that you would adjust a width of 1.25\InsetSpace \thinspace{}
10611 cm for the first column.
10612  The second column has then automatically a width of 1.25\InsetSpace \thinspace{}
10613 cm (multicolumn
10614  width - width of first column).
10615  This was done for Table\InsetSpace ~
10616
10617 \begin_inset LatexCommand ref
10618 reference "tab:Table-without-half"
10619
10620 \end_inset
10621
10622 .
10623 \end_layout
10624
10625 \begin_layout Standard
10626 \begin_inset Float table
10627 wide false
10628 sideways false
10629 status open
10630
10631 \begin_layout Standard
10632 \begin_inset Caption
10633
10634 \begin_layout Standard
10635 \begin_inset LatexCommand label
10636 name "tab:Table-without-half"
10637
10638 \end_inset
10639
10640 Table where the spanned table columns have not exactly half the width of
10641  the multicolumn cell
10642 \begin_inset OptArg
10643 status collapsed
10644
10645 \begin_layout Standard
10646 Imperfect multicolumn table
10647 \end_layout
10648
10649 \end_inset
10650
10651
10652 \end_layout
10653
10654 \end_inset
10655
10656
10657 \end_layout
10658
10659 \begin_layout Standard
10660 \align center
10661 \begin_inset Tabular
10662 <lyxtabular version="3" rows="3" columns="3">
10663 <features>
10664 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10665 <column alignment="center" valignment="top" leftline="true" width="0">
10666 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10667 <row topline="true" bottomline="true">
10668 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10669 \begin_inset Text
10670
10671 \begin_layout Standard
10672 multiple lines multicolumn
10673 \end_layout
10674
10675 \end_inset
10676 </cell>
10677 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10678 \begin_inset Text
10679
10680 \begin_layout Standard
10681
10682 \end_layout
10683
10684 \end_inset
10685 </cell>
10686 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10687 \begin_inset Text
10688
10689 \begin_layout Standard
10690 c
10691 \end_layout
10692
10693 \end_inset
10694 </cell>
10695 </row>
10696 <row topline="true">
10697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10698 \begin_inset Text
10699
10700 \begin_layout Standard
10701 d
10702 \end_layout
10703
10704 \end_inset
10705 </cell>
10706 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10707 \begin_inset Text
10708
10709 \begin_layout Standard
10710 e
10711 \end_layout
10712
10713 \end_inset
10714 </cell>
10715 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10716 \begin_inset Text
10717
10718 \begin_layout Standard
10719 f
10720 \end_layout
10721
10722 \end_inset
10723 </cell>
10724 </row>
10725 <row topline="true" bottomline="true">
10726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10727 \begin_inset Text
10728
10729 \begin_layout Standard
10730 g
10731 \end_layout
10732
10733 \end_inset
10734 </cell>
10735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10736 \begin_inset Text
10737
10738 \begin_layout Standard
10739 h
10740 \end_layout
10741
10742 \end_inset
10743 </cell>
10744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10745 \begin_inset Text
10746
10747 \begin_layout Standard
10748 i
10749 \end_layout
10750
10751 \end_inset
10752 </cell>
10753 </row>
10754 </lyxtabular>
10755
10756 \end_inset
10757
10758
10759 \end_layout
10760
10761 \end_inset
10762
10763
10764 \end_layout
10765
10766 \begin_layout Standard
10767 You can see that the first column has not the half width of the multicolumn
10768  cell, it is a bit bigger.
10769  The reason is that the given width of a cell 
10770 \begin_inset Formula $W_{g}$
10771 \end_inset
10772
10773  is not its total width 
10774 \begin_inset Formula $W_{\mathrm{tot}}$
10775 \end_inset
10776
10777  because a cell is always a bit larger than its given width.
10778  Appendix\InsetSpace ~
10779
10780 \begin_inset LatexCommand eqref
10781 reference "cha:Explanation-of-Equation"
10782
10783 \end_inset
10784
10785  explains it in detail.
10786 \end_layout
10787
10788 \begin_layout Standard
10789 The needed given width 
10790 \begin_inset Formula $W_{g\, n}$
10791 \end_inset
10792
10793  when 
10794 \emph on
10795 n
10796 \emph default
10797  columns are spanned columns can be calculated, so that each column has
10798  a total width of 
10799 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10800 \end_inset
10801
10802 :
10803 \begin_inset Formula \begin{equation}
10804 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10805
10806 \end_inset
10807
10808
10809 \end_layout
10810
10811 \begin_layout Standard
10812 In our case we have 
10813 \begin_inset Formula $n=2$
10814 \end_inset
10815
10816
10817 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10818 \end_inset
10819
10820 cm and the default values for the lengths, so that equation 
10821 \begin_inset LatexCommand ref
10822 reference "eq:Wgn"
10823
10824 \end_inset
10825
10826  becomes
10827 \begin_inset Formula \begin{equation}
10828 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10829
10830 \end_inset
10831
10832
10833 \end_layout
10834
10835 \begin_layout Standard
10836 To enable calculations in LaTeX, the LaTeX-package 
10837 \series bold
10838 calc
10839 \series default
10840  must be loaded with the document preamble line
10841 \begin_inset LatexCommand index
10842 name "LaTeX-packages ! calc"
10843
10844 \end_inset
10845
10846
10847 \end_layout
10848
10849 \begin_layout Standard
10850
10851 \series bold
10852
10853 \backslash
10854 usepackage{calc}
10855 \end_layout
10856
10857 \begin_layout Standard
10858 LyX does not allow to calculate lengths in the width-field of the table
10859  dialog.
10860  Therefore you have to format the column by inserting a LaTeX-argument in
10861  the dialog.
10862  Here is an overview about the arguments:
10863 \end_layout
10864
10865 \begin_layout Itemize
10866
10867 \series bold
10868 p{width}
10869 \series default
10870  creates cell with a fixed width, its text is vertically top-aligned
10871 \end_layout
10872
10873 \begin_layout Itemize
10874
10875 \series bold
10876 m{width}
10877 \series default
10878  creates cell with a fixed width, its text is vertically centered
10879 \end_layout
10880
10881 \begin_layout Itemize
10882
10883 \series bold
10884 b{width}
10885 \series default
10886  creates cell with a fixed width, its text is vertically bottom-aligned
10887 \end_layout
10888
10889 \begin_layout Standard
10890 By entering a LaTeX-argument, all cell properties set in the table dialog
10891  are overwritten.
10892  
10893 \begin_inset Note Greyedout
10894 status open
10895
10896 \begin_layout Standard
10897
10898 \series bold
10899 Note:
10900 \series default
10901  Due to a bug, LyX shows the overwritten properties anyway.
10902 \end_layout
10903
10904 \end_inset
10905
10906  As the text should be horizontally centered, the command 
10907 \series bold
10908
10909 \backslash
10910 centering
10911 \series default
10912  is added.
10913  You can now enter the following LaTeX-argument for the first spanned column:
10914 \end_layout
10915
10916 \begin_layout Standard
10917
10918 \series bold
10919 |>{
10920 \backslash
10921 centering}m{1.25cm-6.2pt}
10922 \end_layout
10923
10924 \begin_layout Standard
10925 The bar 
10926 \begin_inset Quotes eld
10927 \end_inset
10928
10929
10930 \series bold
10931 |
10932 \series default
10933
10934 \begin_inset Quotes erd
10935 \end_inset
10936
10937  at the beginning draws the border line and the command 
10938 \series bold
10939 >{ }
10940 \series default
10941  means, that the commands inside the braces are applied before the cell
10942  is created.
10943 \end_layout
10944
10945 \begin_layout Standard
10946 Although we have chosen centered alignment for the text of the multicolumn
10947  cell, it is still left aligned.
10948  This is because LyX only applies the alignment to single columns.
10949  So we have to use for the multicolumn the LaTeX-argument
10950 \end_layout
10951
10952 \begin_layout Standard
10953
10954 \series bold
10955 |>{
10956 \backslash
10957 centering}m{2.5cm}|
10958 \end_layout
10959
10960 \begin_layout Subsection
10961 Multirows
10962 \begin_inset LatexCommand index
10963 name "Multirows"
10964
10965 \end_inset
10966
10967
10968 \begin_inset LatexCommand index
10969 name "Table ! Multirows"
10970
10971 \end_inset
10972
10973
10974 \begin_inset LatexCommand index
10975 name "LaTeX-packages ! multirow"
10976
10977 \end_inset
10978
10979
10980 \end_layout
10981
10982 \begin_layout Standard
10983 In contrary to multicolumns multirows are not yet supported by LyX so a
10984  bit of ERT needs to be used.
10985  To use multirows load the LaTeX-package 
10986 \series bold
10987 multirow
10988 \series default
10989  in your document preamble with the command
10990 \end_layout
10991
10992 \begin_layout Standard
10993
10994 \series bold
10995
10996 \backslash
10997 usepackage{multirow}
10998 \end_layout
10999
11000 \begin_layout Standard
11001 Multirows are created with the command
11002 \end_layout
11003
11004 \begin_layout Standard
11005
11006 \series bold
11007
11008 \backslash
11009 multirow{number of rows}{cell width}{cell entry}
11010 \end_layout
11011
11012 \begin_layout Standard
11013 To create the following table:
11014 \end_layout
11015
11016 \begin_layout Standard
11017 \align center
11018 \begin_inset ERT
11019 status collapsed
11020
11021 \begin_layout Standard
11022
11023
11024 \backslash
11025 renewcommand{
11026 \backslash
11027 multirowsetup}{
11028 \backslash
11029 centering}
11030 \end_layout
11031
11032 \end_inset
11033
11034
11035 \begin_inset Tabular
11036 <lyxtabular version="3" rows="3" columns="3">
11037 <features>
11038 <column alignment="center" valignment="top" leftline="true" width="0">
11039 <column alignment="center" valignment="top" leftline="true" width="0">
11040 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11041 <row topline="true">
11042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11043 \begin_inset Text
11044
11045 \begin_layout Standard
11046 a
11047 \end_layout
11048
11049 \end_inset
11050 </cell>
11051 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11052 \begin_inset Text
11053
11054 \begin_layout Standard
11055 b
11056 \end_layout
11057
11058 \end_inset
11059 </cell>
11060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11061 \begin_inset Text
11062
11063 \begin_layout Standard
11064 c
11065 \end_layout
11066
11067 \end_inset
11068 </cell>
11069 </row>
11070 <row topline="true">
11071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11072 \begin_inset Text
11073
11074 \begin_layout Standard
11075 \begin_inset ERT
11076 status collapsed
11077
11078 \begin_layout Standard
11079
11080
11081 \backslash
11082 multirow{2}{2.5cm}{
11083 \end_layout
11084
11085 \end_inset
11086
11087 multirow entry
11088 \begin_inset ERT
11089 status collapsed
11090
11091 \begin_layout Standard
11092
11093 }
11094 \end_layout
11095
11096 \end_inset
11097
11098
11099 \end_layout
11100
11101 \end_inset
11102 </cell>
11103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11104 \begin_inset Text
11105
11106 \begin_layout Standard
11107 e
11108 \end_layout
11109
11110 \end_inset
11111 </cell>
11112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11113 \begin_inset Text
11114
11115 \begin_layout Standard
11116 f
11117 \end_layout
11118
11119 \end_inset
11120 </cell>
11121 </row>
11122 <row topline="true" bottomline="true">
11123 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11124 \begin_inset Text
11125
11126 \begin_layout Standard
11127
11128 \end_layout
11129
11130 \end_inset
11131 </cell>
11132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11133 \begin_inset Text
11134
11135 \begin_layout Standard
11136 h
11137 \end_layout
11138
11139 \end_inset
11140 </cell>
11141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11142 \begin_inset Text
11143
11144 \begin_layout Standard
11145 i
11146 \end_layout
11147
11148 \end_inset
11149 </cell>
11150 </row>
11151 </lyxtabular>
11152
11153 \end_inset
11154
11155
11156 \begin_inset ERT
11157 status collapsed
11158
11159 \begin_layout Standard
11160
11161
11162 \backslash
11163 renewcommand{
11164 \backslash
11165 multirowsetup}{
11166 \backslash
11167 raggedright}
11168 \end_layout
11169
11170 \end_inset
11171
11172
11173 \end_layout
11174
11175 \begin_layout Standard
11176 create a 3×3 table.
11177  To get rid of the line above the last cell in the first column, the cell
11178  is marked as multicolumn and the upper border is unset.
11179  The multirow is now created in the second row of the first column by inserting
11180  there the command
11181 \end_layout
11182
11183 \begin_layout Standard
11184
11185 \series bold
11186
11187 \backslash
11188 multirow{2}{2.5cm}{
11189 \end_layout
11190
11191 \begin_layout Standard
11192 as ERT.
11193  According to the command parameters the multirow spans now two rows and
11194  has a width of 2.5\InsetSpace \thinspace{}
11195 cm.
11196  The content of the multirow cell follows outside the ERT box and the command
11197  is finished with a right brace 
11198 \series bold
11199 }
11200 \series default
11201  in another ERT-box behind the text.
11202 \end_layout
11203
11204 \begin_layout Standard
11205
11206 \series bold
11207
11208 \backslash
11209 multirow
11210 \series default
11211  left-aligns its content by default.
11212  To override the default, renew the command 
11213 \series bold
11214
11215 \backslash
11216 multirowsetup
11217 \series default
11218  with the command
11219 \end_layout
11220
11221 \begin_layout Standard
11222
11223 \series bold
11224
11225 \backslash
11226 renewcommand{
11227 \backslash
11228 multirowsetup}{
11229 \backslash
11230 centering}
11231 \end_layout
11232
11233 \begin_layout Standard
11234 in ERT in the document preamble.
11235  Then all entries of multirow cells in the document are centered.
11236  If centering is only needed for several tables, you can renew the command
11237  in an ERT box just before the table instead of the preamble.
11238  If the text should be right-aligned, replace 
11239 \series bold
11240
11241 \backslash
11242 centering
11243 \series default
11244  by 
11245 \series bold
11246
11247 \backslash
11248 raggedleft
11249 \series default
11250 .
11251  To return to left-alignment 
11252 \series bold
11253
11254 \backslash
11255 raggedright
11256 \series default
11257  is used.
11258 \end_layout
11259
11260 \begin_layout Section
11261 Formal Tables
11262 \begin_inset LatexCommand label
11263 name "sec:Formal-Tables"
11264
11265 \end_inset
11266
11267
11268 \begin_inset LatexCommand index
11269 name "Table ! Formal"
11270
11271 \end_inset
11272
11273
11274 \end_layout
11275
11276 \begin_layout Standard
11277 Tables are often typeset in books similar to Table\InsetSpace ~
11278
11279 \begin_inset LatexCommand ref
11280 reference "tab:Example-booktabs-table"
11281
11282 \end_inset
11283
11284 .
11285  This kind of tables is called 
11286 \begin_inset Quotes eld
11287 \end_inset
11288
11289
11290 \emph on
11291 formal
11292 \emph default
11293
11294 \begin_inset Quotes erd
11295 \end_inset
11296
11297 .
11298  To make a table a formal table use the option 
11299 \family sans
11300 Formal
11301 \family default
11302  in the 
11303 \family sans
11304 Borders
11305 \family default
11306  tab of the table dialog.
11307 \end_layout
11308
11309 \begin_layout Standard
11310 \begin_inset Float table
11311 placement h
11312 wide false
11313 sideways false
11314 status open
11315
11316 \begin_layout Standard
11317 \begin_inset Caption
11318
11319 \begin_layout Standard
11320 \begin_inset LatexCommand label
11321 name "tab:Example-booktabs-table"
11322
11323 \end_inset
11324
11325 Example booktabs-table
11326 \end_layout
11327
11328 \end_inset
11329
11330
11331 \end_layout
11332
11333 \begin_layout Standard
11334 \align center
11335 \begin_inset Tabular
11336 <lyxtabular version="3" rows="8" columns="4">
11337 <features booktabs="true">
11338 <column alignment="center" valignment="top" rightline="true" width="0">
11339 <column alignment="center" valignment="top" width="0">
11340 <column alignment="center" valignment="top" width="0">
11341 <column alignment="center" valignment="top" width="0">
11342 <row topline="true">
11343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11344 \begin_inset Text
11345
11346 \begin_layout Standard
11347 System
11348 \end_layout
11349
11350 \end_inset
11351 </cell>
11352 <cell alignment="center" valignment="top" topline="true" usebox="none">
11353 \begin_inset Text
11354
11355 \begin_layout Standard
11356 Medipix
11357 \begin_inset Formula $\,$
11358 \end_inset
11359
11360 1
11361 \end_layout
11362
11363 \end_inset
11364 </cell>
11365 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11366 \begin_inset Text
11367
11368 \begin_layout Standard
11369 Medipix
11370 \begin_inset Formula $\,$
11371 \end_inset
11372
11373 2
11374 \end_layout
11375
11376 \end_inset
11377 </cell>
11378 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11379 \begin_inset Text
11380
11381 \begin_layout Standard
11382
11383 \end_layout
11384
11385 \end_inset
11386 </cell>
11387 </row>
11388 <row>
11389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11390 \begin_inset Text
11391
11392 \begin_layout Standard
11393 \begin_inset ERT
11394 status collapsed
11395
11396 \begin_layout Standard
11397
11398
11399 \backslash
11400 cmidrule(r){2-2}
11401 \end_layout
11402
11403 \end_inset
11404
11405
11406 \begin_inset ERT
11407 status collapsed
11408
11409 \begin_layout Standard
11410
11411
11412 \backslash
11413 cmidrule(l){3-4}
11414 \end_layout
11415
11416 \end_inset
11417
11418 Detector thickness [µm]
11419 \end_layout
11420
11421 \end_inset
11422 </cell>
11423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11424 \begin_inset Text
11425
11426 \begin_layout Standard
11427 300
11428 \end_layout
11429
11430 \end_inset
11431 </cell>
11432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11433 \begin_inset Text
11434
11435 \begin_layout Standard
11436 300
11437 \end_layout
11438
11439 \end_inset
11440 </cell>
11441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11442 \begin_inset Text
11443
11444 \begin_layout Standard
11445 700
11446 \end_layout
11447
11448 \end_inset
11449 </cell>
11450 </row>
11451 <row topline="true">
11452 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11453 \begin_inset Text
11454
11455 \begin_layout Standard
11456 Edge angle [°]
11457 \end_layout
11458
11459 \end_inset
11460 </cell>
11461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11462 \begin_inset Text
11463
11464 \begin_layout Standard
11465 3.55
11466 \end_layout
11467
11468 \end_inset
11469 </cell>
11470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11471 \begin_inset Text
11472
11473 \begin_layout Standard
11474 2.71
11475 \end_layout
11476
11477 \end_inset
11478 </cell>
11479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11480 \begin_inset Text
11481
11482 \begin_layout Standard
11483 7.99
11484 \end_layout
11485
11486 \end_inset
11487 </cell>
11488 </row>
11489 <row topspace="default">
11490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11491 \begin_inset Text
11492
11493 \begin_layout Standard
11494 Spatial resolution [µm]
11495 \end_layout
11496
11497 \end_inset
11498 </cell>
11499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11500 \begin_inset Text
11501
11502 \begin_layout Standard
11503 4.26
11504 \end_layout
11505
11506 \end_inset
11507 </cell>
11508 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11509 \begin_inset Text
11510
11511 \begin_layout Standard
11512 10.17
11513 \end_layout
11514
11515 \end_inset
11516 </cell>
11517 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11518 \begin_inset Text
11519
11520 \begin_layout Standard
11521 10.56
11522 \end_layout
11523
11524 \end_inset
11525 </cell>
11526 </row>
11527 <row topspace="default">
11528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11529 \begin_inset Text
11530
11531 \begin_layout Standard
11532 MTF at 
11533 \begin_inset Formula $f_{\mathrm{max}}$
11534 \end_inset
11535
11536
11537 \end_layout
11538
11539 \end_inset
11540 </cell>
11541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11542 \begin_inset Text
11543
11544 \begin_layout Standard
11545 0.53
11546 \end_layout
11547
11548 \end_inset
11549 </cell>
11550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11551 \begin_inset Text
11552
11553 \begin_layout Standard
11554 0.37
11555 \end_layout
11556
11557 \end_inset
11558 </cell>
11559 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11560 \begin_inset Text
11561
11562 \begin_layout Standard
11563 0.39
11564 \end_layout
11565
11566 \end_inset
11567 </cell>
11568 </row>
11569 <row topspace="default">
11570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11571 \begin_inset Text
11572
11573 \begin_layout Standard
11574 \begin_inset ERT
11575 status collapsed
11576
11577 \begin_layout Standard
11578
11579
11580 \backslash
11581 cmidrule(l{10pt}){1-1}
11582 \end_layout
11583
11584 \end_inset
11585
11586 LSF-spatial resolution
11587 \end_layout
11588
11589 \end_inset
11590 </cell>
11591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11592 \begin_inset Text
11593
11594 \begin_layout Standard
11595
11596 \end_layout
11597
11598 \end_inset
11599 </cell>
11600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11601 \begin_inset Text
11602
11603 \begin_layout Standard
11604
11605 \end_layout
11606
11607 \end_inset
11608 </cell>
11609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11610 \begin_inset Text
11611
11612 \begin_layout Standard
11613
11614 \end_layout
11615
11616 \end_inset
11617 </cell>
11618 </row>
11619 <row>
11620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11621 \begin_inset Text
11622
11623 \begin_layout Standard
11624 in µm
11625 \end_layout
11626
11627 \end_inset
11628 </cell>
11629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11630 \begin_inset Text
11631
11632 \begin_layout Standard
11633 129.7
11634 \end_layout
11635
11636 \end_inset
11637 </cell>
11638 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11639 \begin_inset Text
11640
11641 \begin_layout Standard
11642 52.75
11643 \end_layout
11644
11645 \end_inset
11646 </cell>
11647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11648 \begin_inset Text
11649
11650 \begin_layout Standard
11651 50.78
11652 \end_layout
11653
11654 \end_inset
11655 </cell>
11656 </row>
11657 <row bottomline="true">
11658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11659 \begin_inset Text
11660
11661 \begin_layout Standard
11662 in % of pixel size
11663 \end_layout
11664
11665 \end_inset
11666 </cell>
11667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11668 \begin_inset Text
11669
11670 \begin_layout Standard
11671 76.3
11672 \end_layout
11673
11674 \end_inset
11675 </cell>
11676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11677 \begin_inset Text
11678
11679 \begin_layout Standard
11680 95.9
11681 \end_layout
11682
11683 \end_inset
11684 </cell>
11685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11686 \begin_inset Text
11687
11688 \begin_layout Standard
11689 92.3
11690 \end_layout
11691
11692 \end_inset
11693 </cell>
11694 </row>
11695 </lyxtabular>
11696
11697 \end_inset
11698
11699
11700 \end_layout
11701
11702 \end_inset
11703
11704
11705 \end_layout
11706
11707 \begin_layout Standard
11708 Spaces to table rows can be added using the 
11709 \family sans
11710 Borders
11711 \family default
11712  tab of the table dialog as described in section\InsetSpace ~
11713
11714 \begin_inset LatexCommand ref
11715 reference "sub:Row-Spacing"
11716
11717 \end_inset
11718
11719 .
11720 \end_layout
11721
11722 \begin_layout Standard
11723 In contrary to normal tables, formal tables have no vertical table lines.
11724  The horizontal table lines can be set like for normal tables but they appear
11725  with different width in the output:
11726 \newline
11727 The first and the last table line have
11728  a default width of 0.08\InsetSpace \thinspace{}
11729 em while the other lines have a default width of
11730  0.05\InsetSpace \thinspace{}
11731 em.
11732 \end_layout
11733
11734 \begin_layout Standard
11735 The default widths can be changed with the following preamble lines
11736 \end_layout
11737
11738 \begin_layout Standard
11739
11740 \series bold
11741
11742 \backslash
11743 let
11744 \backslash
11745 mytoprule
11746 \backslash
11747 toprule
11748 \newline
11749
11750 \backslash
11751 renewcommand{
11752 \backslash
11753 toprule}{
11754 \backslash
11755 mytoprule[width]}
11756 \end_layout
11757
11758 \begin_layout Standard
11759 This example is for the first line, the so called toprule.
11760  If you want to change the width for the last line, replace 
11761 \series bold
11762 toprule
11763 \series default
11764  by 
11765 \series bold
11766 bottomrule
11767 \series default
11768 .
11769  To change the width for the other lines replace 
11770 \series bold
11771 toprule
11772 \series default
11773  by 
11774 \series bold
11775 midrule
11776 \series default
11777 .
11778  You can use all units listed in appendix\InsetSpace ~
11779
11780 \begin_inset LatexCommand ref
11781 reference "cha:Units-available-in"
11782
11783 \end_inset
11784
11785  to set the width.
11786 \end_layout
11787
11788 \begin_layout Standard
11789 Lines that don't span over all table columns can be created by setting a
11790  table line for multicolumn cells.
11791  LyX will then internally use the command 
11792 \series bold
11793
11794 \backslash
11795 cmidrule
11796 \series default
11797  to create this line.
11798  Its full scheme is
11799 \end_layout
11800
11801 \begin_layout Standard
11802
11803 \series bold
11804
11805 \backslash
11806 cmidrule[width](trim){startcol-endcol}
11807 \end_layout
11808
11809 \begin_layout Standard
11810 The options of 
11811 \series bold
11812
11813 \backslash
11814 cmidrule
11815 \series default
11816  are are currently not supported by LyX so you have to use ERT to be able
11817  to use them.
11818  
11819 \series bold
11820
11821 \backslash
11822 cmidrule
11823 \series default
11824 s can manually be created by inserting the command as ERT as first cell
11825  entry of the first cell of a row.
11826  The line is then drawn in the output above the current row.
11827 \end_layout
11828
11829 \begin_layout Standard
11830 The default for the width is 0.03\InsetSpace \thinspace{}
11831 em.
11832  Startcol is the number of the column where the line starts and endcol the
11833  column number where the line ends.
11834  The endcol always needs to be specified, also when the line should span
11835  only one column.
11836  The optional parameter trim could be either 
11837 \emph on
11838 l{trimwidth}
11839 \emph default
11840 , or 
11841 \emph on
11842 r{trimwidth}
11843 \emph default
11844  where the trimwidth is also optional.
11845  Using for example the parameter 
11846 \emph on
11847 l{2pt}
11848 \emph default
11849  means that the line is trimmed from its left end by 2\InsetSpace \thinspace{}
11850 pt.
11851  If you don't specify the trimwidth the lines are trimmed by the default
11852  of 0.5\InsetSpace \thinspace{}
11853 em.
11854 \end_layout
11855
11856 \begin_layout Standard
11857 \begin_inset VSpace bigskip
11858 \end_inset
11859
11860 Table\InsetSpace ~
11861
11862 \begin_inset LatexCommand ref
11863 reference "tab:Example-booktabs-table"
11864
11865 \end_inset
11866
11867  was created using the commands
11868 \end_layout
11869
11870 \begin_layout Standard
11871
11872 \series bold
11873
11874 \backslash
11875 cmidrule(r){2-2}
11876 \backslash
11877 cmidrule(l){3-4}
11878 \end_layout
11879
11880 \begin_layout Standard
11881 at the beginning of the in the second row and
11882 \end_layout
11883
11884 \begin_layout Standard
11885
11886 \series bold
11887
11888 \backslash
11889 cmidrule(l{10pt}){1-1}
11890 \end_layout
11891
11892 \begin_layout Standard
11893 in the sixth row.
11894 \end_layout
11895
11896 \begin_layout Standard
11897
11898 \end_layout
11899
11900 \begin_layout Standard
11901 \begin_inset VSpace bigskip
11902 \end_inset
11903
11904
11905 \end_layout
11906
11907 \begin_layout Standard
11908 You might want to have overlapping 
11909 \series bold
11910
11911 \backslash
11912 cmidrule
11913 \series default
11914 s like in Table\InsetSpace ~
11915
11916 \begin_inset LatexCommand ref
11917 reference "tab:Special-booktabs-table"
11918
11919 \end_inset
11920
11921 .
11922  This can be achieved with the ERT command
11923 \end_layout
11924
11925 \begin_layout Standard
11926
11927 \series bold
11928
11929 \backslash
11930 morecmidrules
11931 \end_layout
11932
11933 \begin_layout Standard
11934 The command that was used for the second row of Table\InsetSpace ~
11935
11936 \begin_inset LatexCommand ref
11937 reference "tab:Special-booktabs-table"
11938
11939 \end_inset
11940
11941  is
11942 \end_layout
11943
11944 \begin_layout Standard
11945
11946 \series bold
11947
11948 \backslash
11949 cmidrule(r){2-2}
11950 \backslash
11951 cmidrule(l){3-4}
11952 \backslash
11953 morecmidrules
11954 \backslash
11955 cmidrule{2-4}
11956 \end_layout
11957
11958 \begin_layout Standard
11959 The command for the sixth row is
11960 \end_layout
11961
11962 \begin_layout Standard
11963
11964 \series bold
11965
11966 \backslash
11967 midrule
11968 \backslash
11969 morecmidrules
11970 \backslash
11971 cmidrule{3-4}
11972 \end_layout
11973
11974 \begin_layout Standard
11975 \begin_inset VSpace bigskip
11976 \end_inset
11977
11978
11979 \end_layout
11980
11981 \begin_layout Standard
11982 If you are anyway not satisfied with the border line spacing, you can use
11983  the following command to produce lines that span over all table columns
11984 \series bold
11985 :
11986 \end_layout
11987
11988 \begin_layout Standard
11989
11990 \series bold
11991
11992 \backslash
11993 specialrule{width}{space above}{space below}
11994 \end_layout
11995
11996 \begin_layout Standard
11997 For more informations about these specialties, we refer to the manual of
11998  the LaTeX-package 
11999 \series bold
12000 booktabs
12001 \series default
12002  
12003 \begin_inset LatexCommand cite
12004 key "booktabs"
12005
12006 \end_inset
12007
12008 .
12009 \begin_inset LatexCommand index
12010 name "LaTeX-packages ! booktabs"
12011
12012 \end_inset
12013
12014
12015 \end_layout
12016
12017 \begin_layout Standard
12018 \begin_inset Float table
12019 placement h
12020 wide false
12021 sideways false
12022 status open
12023
12024 \begin_layout Standard
12025 \begin_inset Caption
12026
12027 \begin_layout Standard
12028 \begin_inset LatexCommand label
12029 name "tab:Special-booktabs-table"
12030
12031 \end_inset
12032
12033 Special booktabs-table
12034 \end_layout
12035
12036 \end_inset
12037
12038
12039 \end_layout
12040
12041 \begin_layout Standard
12042 \align center
12043 \begin_inset Tabular
12044 <lyxtabular version="3" rows="8" columns="4">
12045 <features booktabs="true">
12046 <column alignment="center" valignment="top" width="0">
12047 <column alignment="center" valignment="top" width="0">
12048 <column alignment="center" valignment="top" width="0">
12049 <column alignment="center" valignment="top" width="0">
12050 <row topline="true">
12051 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12052 \begin_inset Text
12053
12054 \begin_layout Standard
12055 System
12056 \end_layout
12057
12058 \end_inset
12059 </cell>
12060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12061 \begin_inset Text
12062
12063 \begin_layout Standard
12064 Medipix\InsetSpace \thinspace{}
12065 1
12066 \end_layout
12067
12068 \end_inset
12069 </cell>
12070 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12071 \begin_inset Text
12072
12073 \begin_layout Standard
12074 Medipix\InsetSpace \thinspace{}
12075 2
12076 \end_layout
12077
12078 \end_inset
12079 </cell>
12080 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12081 \begin_inset Text
12082
12083 \begin_layout Standard
12084
12085 \end_layout
12086
12087 \end_inset
12088 </cell>
12089 </row>
12090 <row>
12091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12092 \begin_inset Text
12093
12094 \begin_layout Standard
12095 \begin_inset ERT
12096 status collapsed
12097
12098 \begin_layout Standard
12099
12100
12101 \backslash
12102 cmidrule(r){2-2}
12103 \end_layout
12104
12105 \end_inset
12106
12107
12108 \begin_inset ERT
12109 status collapsed
12110
12111 \begin_layout Standard
12112
12113
12114 \backslash
12115 cmidrule(l){3-4}
12116 \end_layout
12117
12118 \end_inset
12119
12120
12121 \begin_inset ERT
12122 status collapsed
12123
12124 \begin_layout Standard
12125
12126
12127 \backslash
12128 morecmidrules 
12129 \end_layout
12130
12131 \end_inset
12132
12133
12134 \begin_inset ERT
12135 status collapsed
12136
12137 \begin_layout Standard
12138
12139
12140 \backslash
12141 cmidrule{2-4}
12142 \end_layout
12143
12144 \end_inset
12145
12146 Detector thickness [µm]
12147 \end_layout
12148
12149 \end_inset
12150 </cell>
12151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12152 \begin_inset Text
12153
12154 \begin_layout Standard
12155 300
12156 \end_layout
12157
12158 \end_inset
12159 </cell>
12160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12161 \begin_inset Text
12162
12163 \begin_layout Standard
12164 300
12165 \end_layout
12166
12167 \end_inset
12168 </cell>
12169 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12170 \begin_inset Text
12171
12172 \begin_layout Standard
12173 700
12174 \end_layout
12175
12176 \end_inset
12177 </cell>
12178 </row>
12179 <row topline="true">
12180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12181 \begin_inset Text
12182
12183 \begin_layout Standard
12184 Edge angle [°]
12185 \end_layout
12186
12187 \end_inset
12188 </cell>
12189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12190 \begin_inset Text
12191
12192 \begin_layout Standard
12193 3.55
12194 \end_layout
12195
12196 \end_inset
12197 </cell>
12198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12199 \begin_inset Text
12200
12201 \begin_layout Standard
12202 2.71
12203 \end_layout
12204
12205 \end_inset
12206 </cell>
12207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12208 \begin_inset Text
12209
12210 \begin_layout Standard
12211 7.99
12212 \end_layout
12213
12214 \end_inset
12215 </cell>
12216 </row>
12217 <row topspace="default">
12218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12219 \begin_inset Text
12220
12221 \begin_layout Standard
12222 Spatial resolution [µm]
12223 \end_layout
12224
12225 \end_inset
12226 </cell>
12227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12228 \begin_inset Text
12229
12230 \begin_layout Standard
12231 4.26
12232 \end_layout
12233
12234 \end_inset
12235 </cell>
12236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12237 \begin_inset Text
12238
12239 \begin_layout Standard
12240 10.17
12241 \end_layout
12242
12243 \end_inset
12244 </cell>
12245 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12246 \begin_inset Text
12247
12248 \begin_layout Standard
12249 10.56
12250 \end_layout
12251
12252 \end_inset
12253 </cell>
12254 </row>
12255 <row topspace="default">
12256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12257 \begin_inset Text
12258
12259 \begin_layout Standard
12260 MTF at 
12261 \begin_inset Formula $f_{\mathrm{max}}$
12262 \end_inset
12263
12264
12265 \end_layout
12266
12267 \end_inset
12268 </cell>
12269 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12270 \begin_inset Text
12271
12272 \begin_layout Standard
12273 0.53
12274 \end_layout
12275
12276 \end_inset
12277 </cell>
12278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12279 \begin_inset Text
12280
12281 \begin_layout Standard
12282 0.37
12283 \end_layout
12284
12285 \end_inset
12286 </cell>
12287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12288 \begin_inset Text
12289
12290 \begin_layout Standard
12291 0.39
12292 \end_layout
12293
12294 \end_inset
12295 </cell>
12296 </row>
12297 <row topline="true">
12298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12299 \begin_inset Text
12300
12301 \begin_layout Standard
12302 \begin_inset ERT
12303 status collapsed
12304
12305 \begin_layout Standard
12306
12307
12308 \backslash
12309 morecmidrules 
12310 \end_layout
12311
12312 \end_inset
12313
12314
12315 \begin_inset ERT
12316 status collapsed
12317
12318 \begin_layout Standard
12319
12320
12321 \backslash
12322 cmidrule{3-4}
12323 \end_layout
12324
12325 \end_inset
12326
12327 LSF-spatial resolution
12328 \end_layout
12329
12330 \end_inset
12331 </cell>
12332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12333 \begin_inset Text
12334
12335 \begin_layout Standard
12336
12337 \end_layout
12338
12339 \end_inset
12340 </cell>
12341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12342 \begin_inset Text
12343
12344 \begin_layout Standard
12345
12346 \end_layout
12347
12348 \end_inset
12349 </cell>
12350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12351 \begin_inset Text
12352
12353 \begin_layout Standard
12354
12355 \end_layout
12356
12357 \end_inset
12358 </cell>
12359 </row>
12360 <row>
12361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12362 \begin_inset Text
12363
12364 \begin_layout Standard
12365 in µm
12366 \end_layout
12367
12368 \end_inset
12369 </cell>
12370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12371 \begin_inset Text
12372
12373 \begin_layout Standard
12374 129.7
12375 \end_layout
12376
12377 \end_inset
12378 </cell>
12379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12380 \begin_inset Text
12381
12382 \begin_layout Standard
12383 52.75
12384 \end_layout
12385
12386 \end_inset
12387 </cell>
12388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12389 \begin_inset Text
12390
12391 \begin_layout Standard
12392 50.78
12393 \end_layout
12394
12395 \end_inset
12396 </cell>
12397 </row>
12398 <row bottomline="true">
12399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12400 \begin_inset Text
12401
12402 \begin_layout Standard
12403 in % of pixel size
12404 \end_layout
12405
12406 \end_inset
12407 </cell>
12408 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12409 \begin_inset Text
12410
12411 \begin_layout Standard
12412 76.3
12413 \end_layout
12414
12415 \end_inset
12416 </cell>
12417 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12418 \begin_inset Text
12419
12420 \begin_layout Standard
12421 95.9
12422 \end_layout
12423
12424 \end_inset
12425 </cell>
12426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12427 \begin_inset Text
12428
12429 \begin_layout Standard
12430 92.3
12431 \end_layout
12432
12433 \end_inset
12434 </cell>
12435 </row>
12436 </lyxtabular>
12437
12438 \end_inset
12439
12440
12441 \end_layout
12442
12443 \end_inset
12444
12445
12446 \end_layout
12447
12448 \begin_layout Section
12449 Vertical Table Alignment
12450 \begin_inset LatexCommand index
12451 name "Table ! Alignment"
12452
12453 \end_inset
12454
12455
12456 \end_layout
12457
12458 \begin_layout Standard
12459 To align tables vertically in a text line the table must be inside a box.
12460  The box can then be vertically aligned as described in section\InsetSpace ~
12461
12462 \begin_inset LatexCommand ref
12463 reference "sec:Box-Dialog"
12464
12465 \end_inset
12466
12467 .
12468 \end_layout
12469
12470 \begin_layout Standard
12471 In the following example the tables are inside a minipage
12472 \begin_inset Foot
12473 status collapsed
12474
12475 \begin_layout Standard
12476 Minipages are described in section\InsetSpace ~
12477
12478 \begin_inset LatexCommand ref
12479 reference "sec:Minipages"
12480
12481 \end_inset
12482
12483 .
12484 \end_layout
12485
12486 \end_inset
12487
12488  box that has a width of 15\InsetSpace \thinspace{}
12489 col%:
12490 \end_layout
12491
12492 \begin_layout Itemize
12493 test 
12494 \begin_inset Box Frameless
12495 position "t"
12496 hor_pos "c"
12497 has_inner_box 1
12498 inner_pos "c"
12499 use_parbox 0
12500 width "15col%"
12501 special "none"
12502 height "1in"
12503 height_special "totalheight"
12504 status collapsed
12505
12506 \begin_layout Standard
12507 \begin_inset Tabular
12508 <lyxtabular version="3" rows="3" columns="3">
12509 <features>
12510 <column alignment="center" valignment="top" leftline="true" width="0">
12511 <column alignment="center" valignment="top" leftline="true" width="0">
12512 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12513 <row topline="true">
12514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12515 \begin_inset Text
12516
12517 \begin_layout Standard
12518 a
12519 \end_layout
12520
12521 \end_inset
12522 </cell>
12523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12524 \begin_inset Text
12525
12526 \begin_layout Standard
12527 d
12528 \end_layout
12529
12530 \end_inset
12531 </cell>
12532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12533 \begin_inset Text
12534
12535 \begin_layout Standard
12536 g
12537 \end_layout
12538
12539 \end_inset
12540 </cell>
12541 </row>
12542 <row topline="true">
12543 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12544 \begin_inset Text
12545
12546 \begin_layout Standard
12547 b
12548 \end_layout
12549
12550 \end_inset
12551 </cell>
12552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12553 \begin_inset Text
12554
12555 \begin_layout Standard
12556 e
12557 \end_layout
12558
12559 \end_inset
12560 </cell>
12561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12562 \begin_inset Text
12563
12564 \begin_layout Standard
12565 h
12566 \end_layout
12567
12568 \end_inset
12569 </cell>
12570 </row>
12571 <row topline="true" bottomline="true">
12572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12573 \begin_inset Text
12574
12575 \begin_layout Standard
12576 c
12577 \end_layout
12578
12579 \end_inset
12580 </cell>
12581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12582 \begin_inset Text
12583
12584 \begin_layout Standard
12585 f
12586 \end_layout
12587
12588 \end_inset
12589 </cell>
12590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12591 \begin_inset Text
12592
12593 \begin_layout Standard
12594 i
12595 \end_layout
12596
12597 \end_inset
12598 </cell>
12599 </row>
12600 </lyxtabular>
12601
12602 \end_inset
12603
12604
12605 \end_layout
12606
12607 \end_inset
12608
12609  test 
12610 \begin_inset ERT
12611 status collapsed
12612
12613 \begin_layout Standard
12614
12615
12616 \backslash
12617 raisebox{0.85
12618 \backslash
12619 baselineskip}{
12620 \end_layout
12621
12622 \end_inset
12623
12624
12625 \begin_inset Box Frameless
12626 position "t"
12627 hor_pos "c"
12628 has_inner_box 1
12629 inner_pos "c"
12630 use_parbox 0
12631 width "15col%"
12632 special "none"
12633 height "1in"
12634 height_special "totalheight"
12635 status collapsed
12636
12637 \begin_layout Standard
12638 \begin_inset Tabular
12639 <lyxtabular version="3" rows="3" columns="3">
12640 <features>
12641 <column alignment="center" valignment="top" leftline="true" width="0">
12642 <column alignment="center" valignment="top" leftline="true" width="0">
12643 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12644 <row topline="true">
12645 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12646 \begin_inset Text
12647
12648 \begin_layout Standard
12649 a
12650 \end_layout
12651
12652 \end_inset
12653 </cell>
12654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12655 \begin_inset Text
12656
12657 \begin_layout Standard
12658 d
12659 \end_layout
12660
12661 \end_inset
12662 </cell>
12663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12664 \begin_inset Text
12665
12666 \begin_layout Standard
12667 g
12668 \end_layout
12669
12670 \end_inset
12671 </cell>
12672 </row>
12673 <row topline="true">
12674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12675 \begin_inset Text
12676
12677 \begin_layout Standard
12678 b
12679 \end_layout
12680
12681 \end_inset
12682 </cell>
12683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12684 \begin_inset Text
12685
12686 \begin_layout Standard
12687 e
12688 \end_layout
12689
12690 \end_inset
12691 </cell>
12692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12693 \begin_inset Text
12694
12695 \begin_layout Standard
12696 h
12697 \end_layout
12698
12699 \end_inset
12700 </cell>
12701 </row>
12702 <row topline="true" bottomline="true">
12703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12704 \begin_inset Text
12705
12706 \begin_layout Standard
12707 c
12708 \end_layout
12709
12710 \end_inset
12711 </cell>
12712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12713 \begin_inset Text
12714
12715 \begin_layout Standard
12716 f
12717 \end_layout
12718
12719 \end_inset
12720 </cell>
12721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12722 \begin_inset Text
12723
12724 \begin_layout Standard
12725 i
12726 \end_layout
12727
12728 \end_inset
12729 </cell>
12730 </row>
12731 </lyxtabular>
12732
12733 \end_inset
12734
12735
12736 \end_layout
12737
12738 \end_inset
12739
12740
12741 \begin_inset ERT
12742 status collapsed
12743
12744 \begin_layout Standard
12745
12746 }
12747 \end_layout
12748
12749 \end_inset
12750
12751
12752 \end_layout
12753
12754 \begin_layout Itemize
12755 test 
12756 \begin_inset Box Frameless
12757 position "c"
12758 hor_pos "c"
12759 has_inner_box 1
12760 inner_pos "c"
12761 use_parbox 0
12762 width "15col%"
12763 special "none"
12764 height "1in"
12765 height_special "totalheight"
12766 status collapsed
12767
12768 \begin_layout Standard
12769 \begin_inset Tabular
12770 <lyxtabular version="3" rows="3" columns="3">
12771 <features>
12772 <column alignment="center" valignment="top" leftline="true" width="0">
12773 <column alignment="center" valignment="top" leftline="true" width="0">
12774 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12775 <row topline="true">
12776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12777 \begin_inset Text
12778
12779 \begin_layout Standard
12780 a
12781 \end_layout
12782
12783 \end_inset
12784 </cell>
12785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12786 \begin_inset Text
12787
12788 \begin_layout Standard
12789 d
12790 \end_layout
12791
12792 \end_inset
12793 </cell>
12794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12795 \begin_inset Text
12796
12797 \begin_layout Standard
12798 g
12799 \end_layout
12800
12801 \end_inset
12802 </cell>
12803 </row>
12804 <row topline="true">
12805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12806 \begin_inset Text
12807
12808 \begin_layout Standard
12809 b
12810 \end_layout
12811
12812 \end_inset
12813 </cell>
12814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12815 \begin_inset Text
12816
12817 \begin_layout Standard
12818 e
12819 \end_layout
12820
12821 \end_inset
12822 </cell>
12823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12824 \begin_inset Text
12825
12826 \begin_layout Standard
12827 h
12828 \end_layout
12829
12830 \end_inset
12831 </cell>
12832 </row>
12833 <row topline="true" bottomline="true">
12834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12835 \begin_inset Text
12836
12837 \begin_layout Standard
12838 c
12839 \end_layout
12840
12841 \end_inset
12842 </cell>
12843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12844 \begin_inset Text
12845
12846 \begin_layout Standard
12847 f
12848 \end_layout
12849
12850 \end_inset
12851 </cell>
12852 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12853 \begin_inset Text
12854
12855 \begin_layout Standard
12856 i
12857 \end_layout
12858
12859 \end_inset
12860 </cell>
12861 </row>
12862 </lyxtabular>
12863
12864 \end_inset
12865
12866
12867 \end_layout
12868
12869 \end_inset
12870
12871
12872 \end_layout
12873
12874 \begin_layout Itemize
12875 test 
12876 \begin_inset Box Frameless
12877 position "b"
12878 hor_pos "c"
12879 has_inner_box 1
12880 inner_pos "c"
12881 use_parbox 0
12882 width "15col%"
12883 special "none"
12884 height "1in"
12885 height_special "totalheight"
12886 status collapsed
12887
12888 \begin_layout Standard
12889 \begin_inset Tabular
12890 <lyxtabular version="3" rows="3" columns="3">
12891 <features>
12892 <column alignment="center" valignment="top" leftline="true" width="0">
12893 <column alignment="center" valignment="top" leftline="true" width="0">
12894 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12895 <row topline="true">
12896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12897 \begin_inset Text
12898
12899 \begin_layout Standard
12900 a
12901 \end_layout
12902
12903 \end_inset
12904 </cell>
12905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12906 \begin_inset Text
12907
12908 \begin_layout Standard
12909 d
12910 \end_layout
12911
12912 \end_inset
12913 </cell>
12914 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12915 \begin_inset Text
12916
12917 \begin_layout Standard
12918 g
12919 \end_layout
12920
12921 \end_inset
12922 </cell>
12923 </row>
12924 <row topline="true">
12925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12926 \begin_inset Text
12927
12928 \begin_layout Standard
12929 b
12930 \end_layout
12931
12932 \end_inset
12933 </cell>
12934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12935 \begin_inset Text
12936
12937 \begin_layout Standard
12938 e
12939 \end_layout
12940
12941 \end_inset
12942 </cell>
12943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12944 \begin_inset Text
12945
12946 \begin_layout Standard
12947 h
12948 \end_layout
12949
12950 \end_inset
12951 </cell>
12952 </row>
12953 <row topline="true" bottomline="true">
12954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12955 \begin_inset Text
12956
12957 \begin_layout Standard
12958 c
12959 \end_layout
12960
12961 \end_inset
12962 </cell>
12963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12964 \begin_inset Text
12965
12966 \begin_layout Standard
12967 f
12968 \end_layout
12969
12970 \end_inset
12971 </cell>
12972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12973 \begin_inset Text
12974
12975 \begin_layout Standard
12976 i
12977 \end_layout
12978
12979 \end_inset
12980 </cell>
12981 </row>
12982 </lyxtabular>
12983
12984 \end_inset
12985
12986
12987 \end_layout
12988
12989 \end_inset
12990
12991  test 
12992 \begin_inset ERT
12993 status collapsed
12994
12995 \begin_layout Standard
12996
12997
12998 \backslash
12999 raisebox{-0.32
13000 \backslash
13001 baselineskip}{
13002 \end_layout
13003
13004 \end_inset
13005
13006
13007 \begin_inset Box Frameless
13008 position "b"
13009 hor_pos "c"
13010 has_inner_box 1
13011 inner_pos "c"
13012 use_parbox 0
13013 width "15col%"
13014 special "none"
13015 height "1in"
13016 height_special "totalheight"
13017 status collapsed
13018
13019 \begin_layout Standard
13020 \begin_inset Tabular
13021 <lyxtabular version="3" rows="3" columns="3">
13022 <features>
13023 <column alignment="center" valignment="top" leftline="true" width="0">
13024 <column alignment="center" valignment="top" leftline="true" width="0">
13025 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13026 <row topline="true">
13027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13028 \begin_inset Text
13029
13030 \begin_layout Standard
13031 a
13032 \end_layout
13033
13034 \end_inset
13035 </cell>
13036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13037 \begin_inset Text
13038
13039 \begin_layout Standard
13040 d
13041 \end_layout
13042
13043 \end_inset
13044 </cell>
13045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13046 \begin_inset Text
13047
13048 \begin_layout Standard
13049 g
13050 \end_layout
13051
13052 \end_inset
13053 </cell>
13054 </row>
13055 <row topline="true">
13056 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13057 \begin_inset Text
13058
13059 \begin_layout Standard
13060 b
13061 \end_layout
13062
13063 \end_inset
13064 </cell>
13065 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13066 \begin_inset Text
13067
13068 \begin_layout Standard
13069 e
13070 \end_layout
13071
13072 \end_inset
13073 </cell>
13074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13075 \begin_inset Text
13076
13077 \begin_layout Standard
13078 h
13079 \end_layout
13080
13081 \end_inset
13082 </cell>
13083 </row>
13084 <row topline="true" bottomline="true">
13085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13086 \begin_inset Text
13087
13088 \begin_layout Standard
13089 c
13090 \end_layout
13091
13092 \end_inset
13093 </cell>
13094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13095 \begin_inset Text
13096
13097 \begin_layout Standard
13098 f
13099 \end_layout
13100
13101 \end_inset
13102 </cell>
13103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13104 \begin_inset Text
13105
13106 \begin_layout Standard
13107 i
13108 \end_layout
13109
13110 \end_inset
13111 </cell>
13112 </row>
13113 </lyxtabular>
13114
13115 \end_inset
13116
13117
13118 \end_layout
13119
13120 \end_inset
13121
13122
13123 \begin_inset ERT
13124 status collapsed
13125
13126 \begin_layout Standard
13127
13128 }
13129 \end_layout
13130
13131 \end_inset
13132
13133
13134 \end_layout
13135
13136 \begin_layout Standard
13137 As you can see, the content of the first and last table row is not correctly
13138  aligned with the text line where the table is in.
13139  To get this alignment, the minipage box must be set into a raisebox
13140 \begin_inset Foot
13141 status collapsed
13142
13143 \begin_layout Standard
13144 Raiseboxes are described in section\InsetSpace ~
13145
13146 \begin_inset LatexCommand ref
13147 reference "sub:Vertical-Alignment"
13148
13149 \end_inset
13150
13151 .
13152 \end_layout
13153
13154 \end_inset
13155
13156 .
13157  In the example above the second table in the first item is aligned using
13158  the ERT-command
13159 \end_layout
13160
13161 \begin_layout Standard
13162
13163 \series bold
13164
13165 \backslash
13166 raisebox{0.85
13167 \backslash
13168 baselineskip}{
13169 \end_layout
13170
13171 \begin_layout Standard
13172 before the box.
13173  Behind the box the closing brace 
13174 \series bold
13175 }
13176 \series default
13177  is inserted as ERT.
13178  For the second table in the last item the command
13179 \end_layout
13180
13181 \begin_layout Standard
13182
13183 \series bold
13184
13185 \backslash
13186 raisebox{-0.32
13187 \backslash
13188 baselineskip}{
13189 \end_layout
13190
13191 \begin_layout Standard
13192 is used.
13193 \end_layout
13194
13195 \begin_layout Standard
13196 \begin_inset Note Greyedout
13197 status open
13198
13199 \begin_layout Standard
13200
13201 \series bold
13202 Note:
13203 \series default
13204  The alignment of the table row content to the surrounding text line is
13205  not exact.
13206  The needed factor of the 
13207 \series bold
13208
13209 \backslash
13210 raisebox
13211 \series default
13212  command for this alignment depends on the document font, the font size,
13213  and the table line thickness.
13214 \end_layout
13215
13216 \end_inset
13217
13218
13219 \end_layout
13220
13221 \begin_layout Section
13222 Colored Tables
13223 \begin_inset LatexCommand label
13224 name "sec:Colored-Tables"
13225
13226 \end_inset
13227
13228
13229 \begin_inset LatexCommand index
13230 name "Table ! Color"
13231
13232 \end_inset
13233
13234
13235 \end_layout
13236
13237 \begin_layout Subsection
13238 Colored Cells
13239 \begin_inset LatexCommand index
13240 name "Table Color ! for Cells"
13241
13242 \end_inset
13243
13244
13245 \begin_inset LatexCommand index
13246 name "Color ! for Table Cells"
13247
13248 \end_inset
13249
13250
13251 \end_layout
13252
13253 \begin_layout Standard
13254 \begin_inset Float table
13255 placement h
13256 wide false
13257 sideways false
13258 status open
13259
13260 \begin_layout Standard
13261 \begin_inset Caption
13262
13263 \begin_layout Standard
13264 \begin_inset LatexCommand label
13265 name "tab:Table-colored-without"
13266
13267 \end_inset
13268
13269 Table colored without using the package 
13270 \series bold
13271 colortbl
13272 \series default
13273
13274 \begin_inset OptArg
13275 status collapsed
13276
13277 \begin_layout Standard
13278 Table without colortbl
13279 \end_layout
13280
13281 \end_inset
13282
13283
13284 \end_layout
13285
13286 \end_inset
13287
13288
13289 \end_layout
13290
13291 \begin_layout Standard
13292 \align center
13293 \begin_inset Tabular
13294 <lyxtabular version="3" rows="3" columns="3">
13295 <features>
13296 <column alignment="center" valignment="top" leftline="true" width="0">
13297 <column alignment="center" valignment="top" leftline="true" width="0">
13298 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13299 <row topline="true">
13300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13301 \begin_inset Text
13302
13303 \begin_layout Standard
13304
13305 \color green
13306 a
13307 \end_layout
13308
13309 \end_inset
13310 </cell>
13311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13312 \begin_inset Text
13313
13314 \begin_layout Standard
13315
13316 \color red
13317 b
13318 \end_layout
13319
13320 \end_inset
13321 </cell>
13322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13323 \begin_inset Text
13324
13325 \begin_layout Standard
13326
13327 \color red
13328 c
13329 \end_layout
13330
13331 \end_inset
13332 </cell>
13333 </row>
13334 <row topline="true">
13335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13336 \begin_inset Text
13337
13338 \begin_layout Standard
13339
13340 \color green
13341 d
13342 \end_layout
13343
13344 \end_inset
13345 </cell>
13346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13347 \begin_inset Text
13348
13349 \begin_layout Standard
13350
13351 \color blue
13352 e
13353 \end_layout
13354
13355 \end_inset
13356 </cell>
13357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13358 \begin_inset Text
13359
13360 \begin_layout Standard
13361
13362 \color blue
13363 f
13364 \end_layout
13365
13366 \end_inset
13367 </cell>
13368 </row>
13369 <row topline="true" bottomline="true">
13370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13371 \begin_inset Text
13372
13373 \begin_layout Standard
13374
13375 \color green
13376 g
13377 \end_layout
13378
13379 \end_inset
13380 </cell>
13381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13382 \begin_inset Text
13383
13384 \begin_layout Standard
13385
13386 \color blue
13387 h
13388 \end_layout
13389
13390 \end_inset
13391 </cell>
13392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13393 \begin_inset Text
13394
13395 \begin_layout Standard
13396
13397 \color blue
13398 i
13399 \end_layout
13400
13401 \end_inset
13402 </cell>
13403 </row>
13404 </lyxtabular>
13405
13406 \end_inset
13407
13408
13409 \end_layout
13410
13411 \end_inset
13412
13413
13414 \end_layout
13415
13416 \begin_layout Standard
13417 If you only need colored text, mark the cells and choose a color in the
13418  menu 
13419 \family sans
13420 Edit\SpecialChar \menuseparator
13421 Text\InsetSpace ~
13422 Style
13423 \family default
13424 .
13425  This was used to create Table\InsetSpace ~
13426
13427 \begin_inset LatexCommand ref
13428 reference "tab:Table-colored-without"
13429
13430 \end_inset
13431
13432 .
13433  In any other case you have to use the LaTeX-package 
13434 \series bold
13435 colortbl
13436 \series default
13437 .
13438 \begin_inset LatexCommand index
13439 name "LaTeX-packages ! colortbl"
13440
13441 \end_inset
13442
13443
13444 \end_layout
13445
13446 \begin_layout Standard
13447 To create colored tables, 
13448 \series bold
13449 colortbl
13450 \series default
13451  must be loaded in the preamble with the line
13452 \end_layout
13453
13454 \begin_layout Standard
13455
13456 \series bold
13457
13458 \backslash
13459 usepackage{colortbl}
13460 \end_layout
13461
13462 \begin_layout Standard
13463 The color of a column is adjusted with the command
13464 \end_layout
13465
13466 \begin_layout Standard
13467
13468 \series bold
13469
13470 \backslash
13471 columncolor{name of color}
13472 \end_layout
13473
13474 \begin_layout Standard
13475 inside the command 
13476 \series bold
13477 >{ }
13478 \series default
13479 .
13480  More about the command 
13481 \series bold
13482 >{}
13483 \series default
13484  is described in section\InsetSpace ~
13485
13486 \begin_inset LatexCommand ref
13487 reference "sub:Multicolumn-Calculations"
13488
13489 \end_inset
13490
13491 .
13492 \end_layout
13493
13494 \begin_layout Standard
13495 The following color names are predefined:
13496 \end_layout
13497
13498 \begin_layout Standard
13499
13500 \family sans
13501 red
13502 \family default
13503
13504 \family sans
13505 green
13506 \family default
13507
13508 \family sans
13509 yellow
13510 \family default
13511
13512 \family sans
13513 blue
13514 \family default
13515
13516 \family sans
13517 cyan
13518 \family default
13519
13520 \family sans
13521 magenta
13522 \family default
13523
13524 \family sans
13525 black
13526 \family default
13527  and 
13528 \family sans
13529 white
13530 \end_layout
13531
13532 \begin_layout Standard
13533 \begin_inset VSpace medskip
13534 \end_inset
13535
13536
13537 \end_layout
13538
13539 \begin_layout Standard
13540 You can also define your own color with the command
13541 \end_layout
13542
13543 \begin_layout Standard
13544
13545 \series bold
13546
13547 \backslash
13548 def\SpecialChar \textcompwordmark{}
13549 inecolor{color name}{color model}{color values}
13550 \end_layout
13551
13552 \begin_layout Standard
13553 The color model can be
13554 \end_layout
13555
13556 \begin_layout Labeling
13557 \labelwidthstring 00.00.0000
13558 cmyk: cyan, magenta, yellow, black
13559 \end_layout
13560
13561 \begin_layout Labeling
13562 \labelwidthstring 00.00.0000
13563 rgb: red, green blue
13564 \end_layout
13565
13566 \begin_layout Labeling
13567 \labelwidthstring 00.00.0000
13568 gray gray
13569 \end_layout
13570
13571 \begin_layout Standard
13572 and the color values are comma separated numbers between 0 and 1 describing
13573  the factor for the corresponding color of the color model.
13574 \end_layout
13575
13576 \begin_layout Standard
13577 You can e.\InsetSpace \thinspace{}
13578 g.\InsetSpace ~
13579 define the color "
13580 \emph on
13581 darkgreen
13582 \emph default
13583 " in the preamble with
13584 \end_layout
13585
13586 \begin_layout Standard
13587
13588 \series bold
13589
13590 \backslash
13591 def\SpecialChar \textcompwordmark{}
13592 inecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
13593 \end_layout
13594
13595 \begin_layout Standard
13596 and the color "
13597 \emph on
13598 lightgray
13599 \emph default
13600 " with
13601 \end_layout
13602
13603 \begin_layout Standard
13604
13605 \series bold
13606
13607 \backslash
13608 def\SpecialChar \textcompwordmark{}
13609 inecolor{lightgray}{gray}{0.8}
13610 \end_layout
13611
13612 \begin_layout Standard
13613 \begin_inset VSpace medskip
13614 \end_inset
13615
13616
13617 \end_layout
13618
13619 \begin_layout Standard
13620 Lines are colored with the command
13621 \end_layout
13622
13623 \begin_layout Standard
13624
13625 \series bold
13626
13627 \backslash
13628 rowcolor{name of color}
13629 \end_layout
13630
13631 \begin_layout Standard
13632 and cells are colored with the command
13633 \end_layout
13634
13635 \begin_layout Standard
13636
13637 \series bold
13638
13639 \backslash
13640 cellcolor{name of color}
13641 \end_layout
13642
13643 \begin_layout Standard
13644 Both commands are inserted at the beginning of a cell as ERT.
13645 \end_layout
13646
13647 \begin_layout Standard
13648 To color characters in the table, mark the cells and use the LyX menu 
13649 \family sans
13650 Edit\SpecialChar \menuseparator
13651 Text\InsetSpace ~
13652 Style
13653 \family default
13654 .
13655  If a cell contains ERT mark only the characters, otherwise the colored
13656  ERT will cause LaTeX-errors.
13657 \end_layout
13658
13659 \begin_layout Standard
13660 \begin_inset VSpace bigskip
13661 \end_inset
13662
13663
13664 \end_layout
13665
13666 \begin_layout Standard
13667 To create Table\InsetSpace ~
13668
13669 \begin_inset LatexCommand ref
13670 reference "tab:Table-colored-using"
13671
13672 \end_inset
13673
13674  do the following: The color of the first column should be 
13675 \emph on
13676 darkgreen
13677 \emph default
13678 .
13679  So insert
13680 \end_layout
13681
13682 \begin_layout Standard
13683
13684 \series bold
13685 >{
13686 \backslash
13687 columncolor{darkgreen}
13688 \backslash
13689 centering}c
13690 \end_layout
13691
13692 \begin_layout Standard
13693 as LaTeX-argument for this column.
13694  The first row should be blue, therefore the ERT command
13695 \end_layout
13696
13697 \begin_layout Standard
13698
13699 \series bold
13700
13701 \backslash
13702 rowcolow{cyan}
13703 \end_layout
13704
13705 \begin_layout Standard
13706 is inserted to the first cell of this row.
13707  Note that this overwrites the column color for the first cell.
13708  The last cell of the last row is colored magenta by inserting the ERT command
13709 \end_layout
13710
13711 \begin_layout Standard
13712
13713 \series bold
13714
13715 \backslash
13716 cellcolor{magenta}
13717 \end_layout
13718
13719 \begin_layout Standard
13720 The characters could now be colored using the menu 
13721 \family sans
13722 Edit\SpecialChar \menuseparator
13723 Text\InsetSpace ~
13724 Style
13725 \family default
13726 .
13727 \end_layout
13728
13729 \begin_layout Standard
13730 \begin_inset Float table
13731 placement h
13732 wide false
13733 sideways false
13734 status open
13735
13736 \begin_layout Standard
13737 \begin_inset Caption
13738
13739 \begin_layout Standard
13740 \begin_inset LatexCommand label
13741 name "tab:Table-colored-using"
13742
13743 \end_inset
13744
13745 Table colored using the package 
13746 \series bold
13747 colortbl
13748 \series default
13749
13750 \begin_inset OptArg
13751 status collapsed
13752
13753 \begin_layout Standard
13754 Table with colortbl
13755 \end_layout
13756
13757 \end_inset
13758
13759
13760 \end_layout
13761
13762 \end_inset
13763
13764
13765 \end_layout
13766
13767 \begin_layout Standard
13768 \align center
13769 \begin_inset Tabular
13770 <lyxtabular version="3" rows="3" columns="3">
13771 <features>
13772 <column alignment="center" valignment="top" leftline="true" width="0" special=">{\columncolor{darkgreen}\centering}c">
13773 <column alignment="center" valignment="top" width="0">
13774 <column alignment="center" valignment="top" width="0">
13775 <row>
13776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13777 \begin_inset Text
13778
13779 \begin_layout Standard
13780 \begin_inset ERT
13781 status collapsed
13782
13783 \begin_layout Standard
13784
13785
13786 \backslash
13787 rowcolor{cyan}
13788 \end_layout
13789
13790 \end_inset
13791
13792
13793 \color magenta
13794 a
13795 \end_layout
13796
13797 \end_inset
13798 </cell>
13799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13800 \begin_inset Text
13801
13802 \begin_layout Standard
13803
13804 \color red
13805 b
13806 \end_layout
13807
13808 \end_inset
13809 </cell>
13810 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13811 \begin_inset Text
13812
13813 \begin_layout Standard
13814
13815 \color red
13816 c
13817 \end_layout
13818
13819 \end_inset
13820 </cell>
13821 </row>
13822 <row>
13823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13824 \begin_inset Text
13825
13826 \begin_layout Standard
13827
13828 \color yellow
13829 d
13830 \end_layout
13831
13832 \end_inset
13833 </cell>
13834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13835 \begin_inset Text
13836
13837 \begin_layout Standard
13838
13839 \color blue
13840 e
13841 \end_layout
13842
13843 \end_inset
13844 </cell>
13845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13846 \begin_inset Text
13847
13848 \begin_layout Standard
13849
13850 \color blue
13851 f
13852 \end_layout
13853
13854 \end_inset
13855 </cell>
13856 </row>
13857 <row>
13858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13859 \begin_inset Text
13860
13861 \begin_layout Standard
13862
13863 \color yellow
13864 g
13865 \end_layout
13866
13867 \end_inset
13868 </cell>
13869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13870 \begin_inset Text
13871
13872 \begin_layout Standard
13873
13874 \color blue
13875 h
13876 \end_layout
13877
13878 \end_inset
13879 </cell>
13880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13881 \begin_inset Text
13882
13883 \begin_layout Standard
13884 \begin_inset ERT
13885 status collapsed
13886
13887 \begin_layout Standard
13888
13889
13890 \backslash
13891 cellcolor{magenta}
13892 \end_layout
13893
13894 \end_inset
13895
13896
13897 \color green
13898 i
13899 \end_layout
13900
13901 \end_inset
13902 </cell>
13903 </row>
13904 </lyxtabular>
13905
13906 \end_inset
13907
13908
13909 \end_layout
13910
13911 \end_inset
13912
13913
13914 \end_layout
13915
13916 \begin_layout Subsection
13917 Colored Lines
13918 \begin_inset LatexCommand index
13919 name "Table Color ! for Lines"
13920
13921 \end_inset
13922
13923
13924 \begin_inset LatexCommand index
13925 name "Color ! for Table Lines"
13926
13927 \end_inset
13928
13929
13930 \end_layout
13931
13932 \begin_layout Standard
13933 As described in section\InsetSpace ~
13934
13935 \begin_inset LatexCommand ref
13936 reference "sub:Line-Thickness"
13937
13938 \end_inset
13939
13940 , the line thickness for all lines in a table can be adjusted with the length
13941  
13942 \series bold
13943
13944 \backslash
13945 arrayrulewidth
13946 \series default
13947 .
13948  It is set to 1.5\InsetSpace \thinspace{}
13949 pt for all tables of this section.
13950 \begin_inset ERT
13951 status collapsed
13952
13953 \begin_layout Standard
13954
13955
13956 \backslash
13957 setlength{
13958 \backslash
13959 arrayrulewidth}{1.5pt}
13960 \end_layout
13961
13962 \end_inset
13963
13964
13965 \end_layout
13966
13967 \begin_layout Standard
13968 To color vertical lines for example with green, create the following column
13969  format in the document preamble, according to the description in section\InsetSpace ~
13970
13971 \begin_inset LatexCommand ref
13972 reference "sub:Customized-Format"
13973
13974 \end_inset
13975
13976 :
13977 \end_layout
13978
13979 \begin_layout Standard
13980
13981 \series bold
13982
13983 \backslash
13984 newcolumntype{W}{!{
13985 \backslash
13986 color{green}
13987 \backslash
13988 vline}}
13989 \end_layout
13990
13991 \begin_layout Standard
13992 For Table\InsetSpace ~
13993
13994 \begin_inset LatexCommand ref
13995 reference "tab:Table-with-vertical-colored"
13996
13997 \end_inset
13998
13999  the LaTeX-argument
14000 \end_layout
14001
14002 \begin_layout Standard
14003
14004 \series bold
14005 WcW
14006 \end_layout
14007
14008 \begin_layout Standard
14009 was used for the last column and
14010 \end_layout
14011
14012 \begin_layout Standard
14013
14014 \series bold
14015 Wc
14016 \end_layout
14017
14018 \begin_layout Standard
14019 for the other columns.
14020 \end_layout
14021
14022 \begin_layout Standard
14023 If you want to have several colors, define more column formats.
14024 \end_layout
14025
14026 \begin_layout Standard
14027 \begin_inset Float table
14028 wide false
14029 sideways false
14030 status open
14031
14032 \begin_layout Standard
14033 \begin_inset Caption
14034
14035 \begin_layout Standard
14036 \begin_inset LatexCommand label
14037 name "tab:Table-with-vertical-colored"
14038
14039 \end_inset
14040
14041 Table with colored vertical lines
14042 \end_layout
14043
14044 \end_inset
14045
14046
14047 \end_layout
14048
14049 \begin_layout Standard
14050 \align center
14051 \begin_inset Tabular
14052 <lyxtabular version="3" rows="3" columns="3">
14053 <features>
14054 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14055 <column alignment="center" valignment="top" width="0" special="Wc">
14056 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14057 <row topline="true">
14058 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14059 \begin_inset Text
14060
14061 \begin_layout Standard
14062 sd
14063 \end_layout
14064
14065 \end_inset
14066 </cell>
14067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14068 \begin_inset Text
14069
14070 \begin_layout Standard
14071
14072 \end_layout
14073
14074 \end_inset
14075 </cell>
14076 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14077 \begin_inset Text
14078
14079 \begin_layout Standard
14080
14081 \end_layout
14082
14083 \end_inset
14084 </cell>
14085 </row>
14086 <row topline="true">
14087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14088 \begin_inset Text
14089
14090 \begin_layout Standard
14091
14092 \end_layout
14093
14094 \end_inset
14095 </cell>
14096 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14097 \begin_inset Text
14098
14099 \begin_layout Standard
14100 sd
14101 \end_layout
14102
14103 \end_inset
14104 </cell>
14105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14106 \begin_inset Text
14107
14108 \begin_layout Standard
14109
14110 \end_layout
14111
14112 \end_inset
14113 </cell>
14114 </row>
14115 <row topline="true" bottomline="true">
14116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14117 \begin_inset Text
14118
14119 \begin_layout Standard
14120
14121 \end_layout
14122
14123 \end_inset
14124 </cell>
14125 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14126 \begin_inset Text
14127
14128 \begin_layout Standard
14129
14130 \end_layout
14131
14132 \end_inset
14133 </cell>
14134 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14135 \begin_inset Text
14136
14137 \begin_layout Standard
14138 sd
14139 \end_layout
14140
14141 \end_inset
14142 </cell>
14143 </row>
14144 </lyxtabular>
14145
14146 \end_inset
14147
14148
14149 \end_layout
14150
14151 \end_inset
14152
14153
14154 \end_layout
14155
14156 \begin_layout Standard
14157 \begin_inset VSpace bigskip
14158 \end_inset
14159
14160 To color horizontal lines for example with red, like in Table\InsetSpace ~
14161
14162 \begin_inset LatexCommand ref
14163 reference "tab:Table-with-horizontal-colored"
14164
14165 \end_inset
14166
14167 , insert these commands in ERT before the table or table float:
14168 \end_layout
14169
14170 \begin_layout Standard
14171
14172 \series bold
14173
14174 \backslash
14175 let
14176 \backslash
14177 myHlineC
14178 \backslash
14179 hline
14180 \newline
14181
14182 \backslash
14183 renewcommand{
14184 \backslash
14185 hline}{
14186 \backslash
14187 arrayrulecolor{red}
14188 \backslash
14189 myHlineC
14190 \backslash
14191 arrayrulecolor{black}}
14192 \end_layout
14193
14194 \begin_layout Standard
14195 \begin_inset ERT
14196 status collapsed
14197
14198 \begin_layout Standard
14199
14200
14201 \backslash
14202 let
14203 \backslash
14204 myHlineC
14205 \backslash
14206 hline
14207 \end_layout
14208
14209 \begin_layout Standard
14210
14211
14212 \backslash
14213 renewcommand{
14214 \backslash
14215 hline}{
14216 \backslash
14217 arrayrulecolor{red}
14218 \backslash
14219 myHlineC
14220 \backslash
14221 arrayrulecolor{black}}
14222 \end_layout
14223
14224 \end_inset
14225
14226
14227 \begin_inset Float table
14228 wide false
14229 sideways false
14230 status open
14231
14232 \begin_layout Standard
14233 \begin_inset Caption
14234
14235 \begin_layout Standard
14236 \begin_inset LatexCommand label
14237 name "tab:Table-with-horizontal-colored"
14238
14239 \end_inset
14240
14241 Table with colored horizontal lines
14242 \end_layout
14243
14244 \end_inset
14245
14246
14247 \end_layout
14248
14249 \begin_layout Standard
14250 \align center
14251 \begin_inset Tabular
14252 <lyxtabular version="3" rows="3" columns="3">
14253 <features>
14254 <column alignment="center" valignment="top" leftline="true" width="0">
14255 <column alignment="center" valignment="top" leftline="true" width="0">
14256 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14257 <row topline="true">
14258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14259 \begin_inset Text
14260
14261 \begin_layout Standard
14262 sd
14263 \end_layout
14264
14265 \end_inset
14266 </cell>
14267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14268 \begin_inset Text
14269
14270 \begin_layout Standard
14271
14272 \end_layout
14273
14274 \end_inset
14275 </cell>
14276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14277 \begin_inset Text
14278
14279 \begin_layout Standard
14280
14281 \end_layout
14282
14283 \end_inset
14284 </cell>
14285 </row>
14286 <row topline="true">
14287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14288 \begin_inset Text
14289
14290 \begin_layout Standard
14291
14292 \end_layout
14293
14294 \end_inset
14295 </cell>
14296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14297 \begin_inset Text
14298
14299 \begin_layout Standard
14300 sd
14301 \end_layout
14302
14303 \end_inset
14304 </cell>
14305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14306 \begin_inset Text
14307
14308 \begin_layout Standard
14309
14310 \end_layout
14311
14312 \end_inset
14313 </cell>
14314 </row>
14315 <row topline="true" bottomline="true">
14316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14317 \begin_inset Text
14318
14319 \begin_layout Standard
14320
14321 \end_layout
14322
14323 \end_inset
14324 </cell>
14325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14326 \begin_inset Text
14327
14328 \begin_layout Standard
14329
14330 \end_layout
14331
14332 \end_inset
14333 </cell>
14334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14335 \begin_inset Text
14336
14337 \begin_layout Standard
14338 sd
14339 \end_layout
14340
14341 \end_inset
14342 </cell>
14343 </row>
14344 </lyxtabular>
14345
14346 \end_inset
14347
14348
14349 \end_layout
14350
14351 \end_inset
14352
14353
14354 \end_layout
14355
14356 \begin_layout Standard
14357 \begin_inset ERT
14358 status collapsed
14359
14360 \begin_layout Standard
14361
14362
14363 \backslash
14364 pagebreak 
14365 \end_layout
14366
14367 \end_inset
14368
14369
14370 \end_layout
14371
14372 \begin_layout Standard
14373 To return to the default line color black, insert this command in ERT behind
14374  the table or table float:
14375 \end_layout
14376
14377 \begin_layout Standard
14378
14379 \series bold
14380
14381 \backslash
14382 renewcommand{
14383 \backslash
14384 hline}{
14385 \backslash
14386 myHlineC}
14387 \end_layout
14388
14389 \begin_layout Standard
14390 Table\InsetSpace ~
14391
14392 \begin_inset LatexCommand ref
14393 reference "tab:Table-with-colored"
14394
14395 \end_inset
14396
14397  is an example with colored vertical and horizontal lines.
14398 \end_layout
14399
14400 \begin_layout Standard
14401 \begin_inset Float table
14402 wide false
14403 sideways false
14404 status open
14405
14406 \begin_layout Standard
14407 \begin_inset Caption
14408
14409 \begin_layout Standard
14410 \begin_inset LatexCommand label
14411 name "tab:Table-with-colored"
14412
14413 \end_inset
14414
14415 Table with colored lines
14416 \end_layout
14417
14418 \end_inset
14419
14420
14421 \end_layout
14422
14423 \begin_layout Standard
14424 \align center
14425 \begin_inset Tabular
14426 <lyxtabular version="3" rows="3" columns="3">
14427 <features>
14428 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14429 <column alignment="center" valignment="top" width="0" special="Wc">
14430 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14431 <row topline="true">
14432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14433 \begin_inset Text
14434
14435 \begin_layout Standard
14436 sd
14437 \end_layout
14438
14439 \end_inset
14440 </cell>
14441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14442 \begin_inset Text
14443
14444 \begin_layout Standard
14445
14446 \end_layout
14447
14448 \end_inset
14449 </cell>
14450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14451 \begin_inset Text
14452
14453 \begin_layout Standard
14454
14455 \end_layout
14456
14457 \end_inset
14458 </cell>
14459 </row>
14460 <row topline="true">
14461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14462 \begin_inset Text
14463
14464 \begin_layout Standard
14465
14466 \end_layout
14467
14468 \end_inset
14469 </cell>
14470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14471 \begin_inset Text
14472
14473 \begin_layout Standard
14474 sd
14475 \end_layout
14476
14477 \end_inset
14478 </cell>
14479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14480 \begin_inset Text
14481
14482 \begin_layout Standard
14483
14484 \end_layout
14485
14486 \end_inset
14487 </cell>
14488 </row>
14489 <row topline="true" bottomline="true" topspace="default">
14490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14491 \begin_inset Text
14492
14493 \begin_layout Standard
14494
14495 \end_layout
14496
14497 \end_inset
14498 </cell>
14499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14500 \begin_inset Text
14501
14502 \begin_layout Standard
14503
14504 \end_layout
14505
14506 \end_inset
14507 </cell>
14508 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14509 \begin_inset Text
14510
14511 \begin_layout Standard
14512 sd
14513 \end_layout
14514
14515 \end_inset
14516 </cell>
14517 </row>
14518 </lyxtabular>
14519
14520 \end_inset
14521
14522
14523 \end_layout
14524
14525 \end_inset
14526
14527
14528 \end_layout
14529
14530 \begin_layout Standard
14531 \begin_inset ERT
14532 status collapsed
14533
14534 \begin_layout Standard
14535
14536
14537 \backslash
14538 renewcommand{
14539 \backslash
14540 hline}{
14541 \backslash
14542 myHlineC}
14543 \end_layout
14544
14545 \end_inset
14546
14547
14548 \end_layout
14549
14550 \begin_layout Standard
14551 \begin_inset ERT
14552 status collapsed
14553
14554 \begin_layout Standard
14555
14556
14557 \backslash
14558 setlength{
14559 \backslash
14560 arrayrulewidth}{0.4pt}
14561 \end_layout
14562
14563 \end_inset
14564
14565
14566 \end_layout
14567
14568 \begin_layout Section
14569 Table Customization
14570 \begin_inset LatexCommand index
14571 name "Table Customization"
14572
14573 \end_inset
14574
14575
14576 \begin_inset LatexCommand index
14577 name "Table ! Customization"
14578
14579 \end_inset
14580
14581
14582 \end_layout
14583
14584 \begin_layout Subsection
14585 Row Spacing
14586 \begin_inset LatexCommand label
14587 name "sub:Row-Spacing"
14588
14589 \end_inset
14590
14591
14592 \begin_inset LatexCommand index
14593 name "Table Customization ! Row Spacing"
14594
14595 \end_inset
14596
14597
14598 \end_layout
14599
14600 \begin_layout Standard
14601 You can add vertical space to table rows in the 
14602 \family sans
14603 Borders
14604 \family default
14605  tab of the table dialog.
14606  You find there three possibilities:
14607 \end_layout
14608
14609 \begin_layout Description
14610 Top\InsetSpace ~
14611 of\InsetSpace ~
14612 row will add space above the characters of the table row.
14613  If the table is a formal table
14614 \begin_inset Foot
14615 status collapsed
14616
14617 \begin_layout Standard
14618 Formal tables are explained in section\InsetSpace ~
14619
14620 \begin_inset LatexCommand ref
14621 reference "sec:Formal-Tables"
14622
14623 \end_inset
14624
14625 .
14626 \end_layout
14627
14628 \end_inset
14629
14630  LyX will insert as default 0.5\InsetSpace \thinspace{}
14631 em space.
14632  For normal tables the inserted space will unfortunately destroy the vertical
14633  table lines as in the following table: 
14634 \begin_inset Tabular
14635 <lyxtabular version="3" rows="3" columns="1">
14636 <features>
14637 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14638 <row topline="true">
14639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14640 \begin_inset Text
14641
14642 \begin_layout Standard
14643 A
14644 \end_layout
14645
14646 \end_inset
14647 </cell>
14648 </row>
14649 <row topline="true" topspace="3mm">
14650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14651 \begin_inset Text
14652
14653 \begin_layout Standard
14654 3\InsetSpace \thinspace{}
14655 mm space top of row
14656 \end_layout
14657
14658 \end_inset
14659 </cell>
14660 </row>
14661 <row topline="true" bottomline="true">
14662 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14663 \begin_inset Text
14664
14665 \begin_layout Standard
14666 C
14667 \end_layout
14668
14669 \end_inset
14670 </cell>
14671 </row>
14672 </lyxtabular>
14673
14674 \end_inset
14675
14676
14677 \newline
14678 So inserting space to the top of row for normal tables is only useful when
14679  you don't have vertical lines.
14680 \end_layout
14681
14682 \begin_layout Description
14683 Bottom\InsetSpace ~
14684 of\InsetSpace ~
14685 row will add space below the characters of the table row.
14686  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14687 em space, for
14688  normal tables the default size is 2\InsetSpace \thinspace{}
14689 pt.
14690 \end_layout
14691
14692 \begin_layout Description
14693 Between\InsetSpace ~
14694 rows only has an effect when you have selected the whole table row
14695  before.
14696  The space is added between the current and the following row.
14697  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14698 em space.
14699  For normal tables the inserted space will unfortunately destroy the vertical
14700  table lines as in the following table: 
14701 \begin_inset Tabular
14702 <lyxtabular version="3" rows="3" columns="1">
14703 <features>
14704 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14705 <row topline="true">
14706 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14707 \begin_inset Text
14708
14709 \begin_layout Standard
14710 A
14711 \end_layout
14712
14713 \end_inset
14714 </cell>
14715 </row>
14716 <row topline="true" interlinespace="3mm">
14717 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14718 \begin_inset Text
14719
14720 \begin_layout Standard
14721 \begin_inset Formula $\downarrow$
14722 \end_inset
14723
14724  3\InsetSpace \thinspace{}
14725 mm space between row 
14726 \begin_inset Formula $\downarrow$
14727 \end_inset
14728
14729
14730 \end_layout
14731
14732 \end_inset
14733 </cell>
14734 </row>
14735 <row topline="true" bottomline="true">
14736 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14737 \begin_inset Text
14738
14739 \begin_layout Standard
14740 \begin_inset Formula $\uparrow$
14741 \end_inset
14742
14743  3\InsetSpace \thinspace{}
14744 mm space between row 
14745 \begin_inset Formula $\uparrow$
14746 \end_inset
14747
14748
14749 \end_layout
14750
14751 \end_inset
14752 </cell>
14753 </row>
14754 </lyxtabular>
14755
14756 \end_inset
14757
14758
14759 \newline
14760 So inserting space to the top of row for normal tables is only useful when
14761  you don't have vertical lines.
14762 \end_layout
14763
14764 \begin_layout Standard
14765 When you want to add extra height to all cells of all tables, you can do
14766  this with the following preamble line:
14767 \end_layout
14768
14769 \begin_layout Standard
14770
14771 \series bold
14772
14773 \backslash
14774 setlength{
14775 \backslash
14776 extrarowheight}{height}
14777 \end_layout
14778
14779 \begin_layout Standard
14780 But this has the disadvantage that the cell texts are no longer exactly
14781  vertically centered.
14782 \end_layout
14783
14784 \begin_layout Subsection
14785 Special Cell Alignment
14786 \begin_inset LatexCommand index
14787 name "Table Customization ! Special Cell Alignment"
14788
14789 \end_inset
14790
14791
14792 \end_layout
14793
14794 \begin_layout Standard
14795 Sometimes it looks better when the cell entries of a column are aligned
14796  with a special character, e.\InsetSpace \thinspace{}
14797 g.\InsetSpace ~
14798 with the decimal separator as in Table\InsetSpace ~
14799
14800 \begin_inset LatexCommand ref
14801 reference "tab:Table-cells-of"
14802
14803 \end_inset
14804
14805 .
14806 \end_layout
14807
14808 \begin_layout Standard
14809 \begin_inset Float table
14810 placement h
14811 wide false
14812 sideways false
14813 status open
14814
14815 \begin_layout Standard
14816 \begin_inset Caption
14817
14818 \begin_layout Standard
14819 \begin_inset LatexCommand label
14820 name "tab:Table-cells-of"
14821
14822 \end_inset
14823
14824 Table cells of a column aligned with the decimal separator.
14825 \end_layout
14826
14827 \end_inset
14828
14829
14830 \end_layout
14831
14832 \begin_layout Standard
14833 \align center
14834 \begin_inset Tabular
14835 <lyxtabular version="3" rows="4" columns="2">
14836 <features>
14837 <column alignment="right" valignment="top" width="0">
14838 <column alignment="left" valignment="top" width="0" special="@{}l">
14839 <row bottomline="true">
14840 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
14841 \begin_inset Text
14842
14843 \begin_layout Standard
14844 heading
14845 \end_layout
14846
14847 \end_inset
14848 </cell>
14849 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14850 \begin_inset Text
14851
14852 \begin_layout Standard
14853
14854 \end_layout
14855
14856 \end_inset
14857 </cell>
14858 </row>
14859 <row>
14860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14861 \begin_inset Text
14862
14863 \begin_layout Standard
14864 12.
14865 \end_layout
14866
14867 \end_inset
14868 </cell>
14869 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14870 \begin_inset Text
14871
14872 \begin_layout Standard
14873 6
14874 \end_layout
14875
14876 \end_inset
14877 </cell>
14878 </row>
14879 <row>
14880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14881 \begin_inset Text
14882
14883 \begin_layout Standard
14884 0.
14885 \end_layout
14886
14887 \end_inset
14888 </cell>
14889 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14890 \begin_inset Text
14891
14892 \begin_layout Standard
14893 68
14894 \end_layout
14895
14896 \end_inset
14897 </cell>
14898 </row>
14899 <row>
14900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14901 \begin_inset Text
14902
14903 \begin_layout Standard
14904 -123.
14905 \end_layout
14906
14907 \end_inset
14908 </cell>
14909 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14910 \begin_inset Text
14911
14912 \begin_layout Standard
14913 0
14914 \end_layout
14915
14916 \end_inset
14917 </cell>
14918 </row>
14919 </lyxtabular>
14920
14921 \end_inset
14922
14923
14924 \end_layout
14925
14926 \end_inset
14927
14928
14929 \end_layout
14930
14931 \begin_layout Standard
14932 This table was created with a 4×2 table.
14933  The heading is a centered multicolumn.
14934  The first column is right-aligned and contains the digits before the decimal
14935  point and the decimal point.
14936  The second column is left aligned and contains the digits after the decimal
14937  point.
14938  To omit the space that is normally between two table columns, use the following
14939  LaTeX-argument for the second column:
14940 \end_layout
14941
14942 \begin_layout Standard
14943
14944 \series bold
14945 @{}l
14946 \end_layout
14947
14948 \begin_layout Standard
14949 If you need a vertical line right beside the second column, use this LaTeX-argum
14950 ent instead: 
14951 \series bold
14952 @{}l|
14953 \end_layout
14954
14955 \begin_layout Standard
14956 Table\InsetSpace ~
14957
14958 \begin_inset LatexCommand ref
14959 reference "tab:Several-table-cell"
14960
14961 \end_inset
14962
14963  shows some example alignments.
14964  For the alignment with the relation sign, you must add the second smallest
14965  math-space at the beginning of the last column to get the correct space
14966  surrounding the relation sign.
14967 \end_layout
14968
14969 \begin_layout Standard
14970 \begin_inset Float table
14971 wide false
14972 sideways false
14973 status open
14974
14975 \begin_layout Standard
14976 \begin_inset Caption
14977
14978 \begin_layout Standard
14979 \begin_inset LatexCommand label
14980 name "tab:Several-table-cell"
14981
14982 \end_inset
14983
14984 Several table cell alignments.
14985 \end_layout
14986
14987 \end_inset
14988
14989
14990 \end_layout
14991
14992 \begin_layout Standard
14993 \align center
14994 \begin_inset Tabular
14995 <lyxtabular version="3" rows="4" columns="6">
14996 <features>
14997 <column alignment="right" valignment="top" width="0">
14998 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
14999 <column alignment="right" valignment="top" width="0">
15000 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15001 <column alignment="right" valignment="top" width="0">
15002 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15003 <row bottomline="true">
15004 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15005 \begin_inset Text
15006
15007 \begin_layout Standard
15008 units
15009 \end_layout
15010
15011 \end_inset
15012 </cell>
15013 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15014 \begin_inset Text
15015
15016 \begin_layout Standard
15017
15018 \end_layout
15019
15020 \end_inset
15021 </cell>
15022 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15023 \begin_inset Text
15024
15025 \begin_layout Standard
15026 exponents
15027 \end_layout
15028
15029 \end_inset
15030 </cell>
15031 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15032 \begin_inset Text
15033
15034 \begin_layout Standard
15035
15036 \end_layout
15037
15038 \end_inset
15039 </cell>
15040 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15041 \begin_inset Text
15042
15043 \begin_layout Standard
15044 relations
15045 \end_layout
15046
15047 \end_inset
15048 </cell>
15049 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15050 \begin_inset Text
15051
15052 \begin_layout Standard
15053
15054 \end_layout
15055
15056 \end_inset
15057 </cell>
15058 </row>
15059 <row>
15060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15061 \begin_inset Text
15062
15063 \begin_layout Standard
15064 12×
15065 \end_layout
15066
15067 \end_inset
15068 </cell>
15069 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15070 \begin_inset Text
15071
15072 \begin_layout Standard
15073 24\InsetSpace \thinspace{}
15074 bottles
15075 \end_layout
15076
15077 \end_inset
15078 </cell>
15079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15080 \begin_inset Text
15081
15082 \begin_layout Standard
15083 \begin_inset Formula $10\cdot$
15084 \end_inset
15085
15086
15087 \end_layout
15088
15089 \end_inset
15090 </cell>
15091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15092 \begin_inset Text
15093
15094 \begin_layout Standard
15095 \begin_inset Formula $10^{\mbox{-}17}$
15096 \end_inset
15097
15098
15099 \end_layout
15100
15101 \end_inset
15102 </cell>
15103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15104 \begin_inset Text
15105
15106 \begin_layout Standard
15107 \begin_inset Formula $\Gamma(t)\propto$
15108 \end_inset
15109
15110
15111 \end_layout
15112
15113 \end_inset
15114 </cell>
15115 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15116 \begin_inset Text
15117
15118 \begin_layout Standard
15119 \begin_inset Formula $\:\Upsilon(t)$
15120 \end_inset
15121
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 1024×
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 768\InsetSpace \thinspace{}
15143 Pixels
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 $5.78\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^{7}$
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 $A\ne$
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 $\: B_{\mathrm{red}}$
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 32×
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 6\InsetSpace \thinspace{}
15212 cm
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 -
15222 \begin_inset Formula $33.5\cdot$
15223 \end_inset
15224
15225
15226 \end_layout
15227
15228 \end_inset
15229 </cell>
15230 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15231 \begin_inset Text
15232
15233 \begin_layout Standard
15234 \begin_inset Formula $10^{4}$
15235 \end_inset
15236
15237
15238 \end_layout
15239
15240 \end_inset
15241 </cell>
15242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15243 \begin_inset Text
15244
15245 \begin_layout Standard
15246 \begin_inset Formula $\sin(\alpha)\ge$
15247 \end_inset
15248
15249
15250 \end_layout
15251
15252 \end_inset
15253 </cell>
15254 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15255 \begin_inset Text
15256
15257 \begin_layout Standard
15258 \begin_inset Formula $\:\sin(\beta)$
15259 \end_inset
15260
15261
15262 \end_layout
15263
15264 \end_inset
15265 </cell>
15266 </row>
15267 </lyxtabular>
15268
15269 \end_inset
15270
15271
15272 \end_layout
15273
15274 \end_inset
15275
15276
15277 \end_layout
15278
15279 \begin_layout Standard
15280 \begin_inset VSpace bigskip
15281 \end_inset
15282
15283 There is also the LaTeX-package 
15284 \series bold
15285 dcolumn
15286 \series default
15287
15288 \begin_inset LatexCommand index
15289 name "LaTeX-packages ! dcolumn"
15290
15291 \end_inset
15292
15293  that provides table cell alignments.
15294  But this unfortunately treats the cell entries as math and doesn't allow
15295  formulas in table cells: The first column of Table\InsetSpace ~
15296
15297 \begin_inset LatexCommand ref
15298 reference "tab:Several-table-cell"
15299
15300 \end_inset
15301
15302  will look with 
15303 \series bold
15304 dcolumn
15305 \series default
15306  like the first column in Table\InsetSpace ~
15307
15308 \begin_inset LatexCommand ref
15309 reference "tab:Alignments-when"
15310
15311 \end_inset
15312
15313  and only with some tricks like the expected.
15314  The alignment of the second and third column of Table\InsetSpace ~
15315
15316 \begin_inset LatexCommand ref
15317 reference "tab:Several-table-cell"
15318
15319 \end_inset
15320
15321  is not possible with 
15322 \series bold
15323 dcolumn
15324 \series default
15325 .
15326 \end_layout
15327
15328 \begin_layout Standard
15329 \begin_inset Float table
15330 placement h
15331 wide false
15332 sideways false
15333 status open
15334
15335 \begin_layout Standard
15336 \begin_inset Caption
15337
15338 \begin_layout Standard
15339 \begin_inset LatexCommand label
15340 name "tab:Alignments-when"
15341
15342 \end_inset
15343
15344 Alignments when LaTeX-package dcolumn is used.
15345  For the second and third alignment some tricks were used.
15346 \end_layout
15347
15348 \end_inset
15349
15350
15351 \end_layout
15352
15353 \begin_layout Standard
15354 \align center
15355 \begin_inset Tabular
15356 <lyxtabular version="3" rows="4" columns="3">
15357 <features>
15358 <column alignment="center" valignment="top" rightline="true" width="0" special="D{×}{\times}{-1}|">
15359 <column alignment="center" valignment="top" width="0" special="D{×}{\times}{4.9}|">
15360 <column alignment="center" valignment="top" rightline="true" width="0" special="D{~}{\,}{9.7}">
15361 <row bottomline="true">
15362 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15363 \begin_inset Text
15364
15365 \begin_layout Standard
15366 units
15367 \end_layout
15368
15369 \end_inset
15370 </cell>
15371 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15372 \begin_inset Text
15373
15374 \begin_layout Standard
15375 units
15376 \end_layout
15377
15378 \end_inset
15379 </cell>
15380 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15381 \begin_inset Text
15382
15383 \begin_layout Standard
15384 units
15385 \end_layout
15386
15387 \end_inset
15388 </cell>
15389 </row>
15390 <row>
15391 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15392 \begin_inset Text
15393
15394 \begin_layout Standard
15395 12×24\InsetSpace \thinspace{}
15396 bottles
15397 \end_layout
15398
15399 \end_inset
15400 </cell>
15401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15402 \begin_inset Text
15403
15404 \begin_layout Standard
15405 12×24\InsetSpace \thinspace{}
15406
15407 \begin_inset Formula $\mbox{bottles}$
15408 \end_inset
15409
15410
15411 \end_layout
15412
15413 \end_inset
15414 </cell>
15415 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15416 \begin_inset Text
15417
15418 \begin_layout Standard
15419 12×24~
15420 \begin_inset Formula $\mbox{bottles}$
15421 \end_inset
15422
15423
15424 \end_layout
15425
15426 \end_inset
15427 </cell>
15428 </row>
15429 <row>
15430 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15431 \begin_inset Text
15432
15433 \begin_layout Standard
15434 1024×768\InsetSpace \thinspace{}
15435 Pixels
15436 \end_layout
15437
15438 \end_inset
15439 </cell>
15440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15441 \begin_inset Text
15442
15443 \begin_layout Standard
15444 1024×768\InsetSpace \thinspace{}
15445
15446 \begin_inset Formula $\mbox{Pixels}$
15447 \end_inset
15448
15449
15450 \end_layout
15451
15452 \end_inset
15453 </cell>
15454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15455 \begin_inset Text
15456
15457 \begin_layout Standard
15458 1024×768~
15459 \begin_inset Formula $\mbox{Pixels}$
15460 \end_inset
15461
15462
15463 \end_layout
15464
15465 \end_inset
15466 </cell>
15467 </row>
15468 <row>
15469 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15470 \begin_inset Text
15471
15472 \begin_layout Standard
15473 32×6\InsetSpace \thinspace{}
15474 cm
15475 \end_layout
15476
15477 \end_inset
15478 </cell>
15479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15480 \begin_inset Text
15481
15482 \begin_layout Standard
15483 32×6\InsetSpace \thinspace{}
15484
15485 \begin_inset Formula $\mbox{cm}$
15486 \end_inset
15487
15488
15489 \end_layout
15490
15491 \end_inset
15492 </cell>
15493 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15494 \begin_inset Text
15495
15496 \begin_layout Standard
15497 32×6~
15498 \begin_inset Formula $\mbox{cm}$
15499 \end_inset
15500
15501
15502 \end_layout
15503
15504 \end_inset
15505 </cell>
15506 </row>
15507 </lyxtabular>
15508
15509 \end_inset
15510
15511
15512 \end_layout
15513
15514 \end_inset
15515
15516
15517 \end_layout
15518
15519 \begin_layout Subsection
15520 Customized Cell/Column Format
15521 \begin_inset LatexCommand label
15522 name "sub:Customized-Format"
15523
15524 \end_inset
15525
15526
15527 \begin_inset LatexCommand index
15528 name "Table Customization ! Cell/Column Format"
15529
15530 \end_inset
15531
15532
15533 \end_layout
15534
15535 \begin_layout Standard
15536 Calculating the needed width for spanned columns like in section\InsetSpace ~
15537
15538 \begin_inset LatexCommand ref
15539 reference "sub:Multicolumn-Calculations"
15540
15541 \end_inset
15542
15543  is very annoying if you have several tables with multicolumn cells.
15544  To make life easier, you can define a cell/column format in the preamble,
15545  so that it can be used in all tables of the document.
15546  The format is defined with the command
15547 \end_layout
15548
15549 \begin_layout Standard
15550
15551 \series bold
15552
15553 \backslash
15554 newcolumntype{name of format}[number of arguments]{commands}
15555 \end_layout
15556
15557 \begin_layout Standard
15558 The format name may only consist of one letter.
15559  The letters 
15560 \emph on
15561 b
15562 \emph default
15563
15564 \emph on
15565 c
15566 \emph default
15567
15568 \emph on
15569 l
15570 \emph default
15571
15572 \emph on
15573 m
15574 \emph default
15575
15576 \emph on
15577 p
15578 \emph default
15579  and 
15580 \emph on
15581 r
15582 \emph default
15583  are predefined and cannot be used.
15584  But all letters are allowed as capitals.
15585 \end_layout
15586
15587 \begin_layout Standard
15588 \begin_inset VSpace medskip
15589 \end_inset
15590
15591
15592 \end_layout
15593
15594 \begin_layout Standard
15595 For vertically and horizontally centered multicolumn cells with a fixed
15596  width you can define the cell format
15597 \end_layout
15598
15599 \begin_layout Standard
15600
15601 \series bold
15602
15603 \backslash
15604 newcolumntype{M}[1]{>{
15605 \backslash
15606 centering
15607 \backslash
15608 hspace{0pt}}m{#1}}
15609 \end_layout
15610
15611 \begin_layout Standard
15612 where 
15613 \series bold
15614
15615 \backslash
15616 hspace{0pt}
15617 \series default
15618  avoids the problem of hyphenating the first word, as described in section\InsetSpace ~
15619
15620 \begin_inset LatexCommand ref
15621 reference "sub:Multiple-Lines-in"
15622
15623 \end_inset
15624
15625 .
15626  Now you can simply enter
15627 \end_layout
15628
15629 \begin_layout Standard
15630
15631 \series bold
15632 |M{width}
15633 \end_layout
15634
15635 \begin_layout Standard
15636 as LaTeX-argument in the table dialog to create a multicolumn.
15637 \end_layout
15638
15639 \begin_layout Standard
15640 \begin_inset VSpace bigskip
15641 \end_inset
15642
15643
15644 \end_layout
15645
15646 \begin_layout Standard
15647 For cells spanned by a multicolumn cell, you can define the format
15648 \end_layout
15649
15650 \begin_layout Standard
15651
15652 \series bold
15653
15654 \backslash
15655 newcolumntype{S}[2]{>{
15656 \backslash
15657 centering
15658 \backslash
15659 hspace{0pt}}
15660 \newline
15661
15662 \begin_inset ERT
15663 status collapsed
15664
15665 \begin_layout Standard
15666
15667
15668 \backslash
15669 phantom{
15670 \end_layout
15671
15672 \end_inset
15673
15674
15675 \backslash
15676 newcolumntype{S}[2]
15677 \begin_inset ERT
15678 status collapsed
15679
15680 \begin_layout Standard
15681
15682 }
15683 \end_layout
15684
15685 \end_inset
15686
15687 m{(#1+(2
15688 \backslash
15689 tabcolsep+
15690 \backslash
15691 arrayrulewidth)*(1-#2))/#2}}
15692 \end_layout
15693
15694 \begin_layout Standard
15695 This format uses equation 
15696 \begin_inset LatexCommand eqref
15697 reference "eq:Wgn"
15698
15699 \end_inset
15700
15701  to calculate the needed width so that each spanned cell has the same width.
15702 \end_layout
15703
15704 \begin_layout Standard
15705 You can now enter
15706 \end_layout
15707
15708 \begin_layout Standard
15709
15710 \series bold
15711 |S{width of multicolumn cell}{number of spanned columns}
15712 \end_layout
15713
15714 \begin_layout Standard
15715 as LaTeX-argument of the column.
15716 \end_layout
15717
15718 \begin_layout Standard
15719 \begin_inset VSpace bigskip
15720 \end_inset
15721
15722
15723 \end_layout
15724
15725 \begin_layout Standard
15726 For colored columns, you can define
15727 \end_layout
15728
15729 \begin_layout Standard
15730
15731 \series bold
15732
15733 \backslash
15734 newcolumntype{K}[1]{>{
15735 \backslash
15736 columncolor{#1}
15737 \backslash
15738 hspace{0pt}}c}
15739 \end_layout
15740
15741 \begin_layout Standard
15742 The 
15743 \begin_inset Quotes eld
15744 \end_inset
15745
15746 c
15747 \begin_inset Quotes erd
15748 \end_inset
15749
15750  at the end creates a column with a flexible width whose text is horizontally
15751  centered.
15752  You can now enter
15753 \end_layout
15754
15755 \begin_layout Standard
15756
15757 \series bold
15758 K{color name}
15759 \end_layout
15760
15761 \begin_layout Standard
15762 as LaTeX-argument.
15763 \end_layout
15764
15765 \begin_layout Standard
15766 \begin_inset VSpace bigskip
15767 \end_inset
15768
15769
15770 \end_layout
15771
15772 \begin_layout Standard
15773 To create Table\InsetSpace ~
15774
15775 \begin_inset LatexCommand ref
15776 reference "tab:Table-using-user-defined"
15777
15778 \end_inset
15779
15780  use the LaTeX-arguments
15781 \end_layout
15782
15783 \begin_layout Standard
15784
15785 \series bold
15786 |M{2.5cm}
15787 \end_layout
15788
15789 \begin_layout Standard
15790 for the first column and the multicolumn,
15791 \end_layout
15792
15793 \begin_layout Standard
15794
15795 \series bold
15796 |K{red}|
15797 \end_layout
15798
15799 \begin_layout Standard
15800 for the the last column, and
15801 \end_layout
15802
15803 \begin_layout Standard
15804
15805 \series bold
15806 |S{2.5cm}{2}
15807 \end_layout
15808
15809 \begin_layout Standard
15810 for the cells in the second column.
15811 \end_layout
15812
15813 \begin_layout Standard
15814 \begin_inset Float table
15815 placement h
15816 wide false
15817 sideways false
15818 status open
15819
15820 \begin_layout Standard
15821 \begin_inset Caption
15822
15823 \begin_layout Standard
15824 \begin_inset LatexCommand label
15825 name "tab:Table-using-user-defined"
15826
15827 \end_inset
15828
15829 Table using user-defined table formats
15830 \end_layout
15831
15832 \end_inset
15833
15834
15835 \end_layout
15836
15837 \begin_layout Standard
15838 \align center
15839 \begin_inset Tabular
15840 <lyxtabular version="3" rows="3" columns="4">
15841 <features>
15842 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="|M{2.5cm}">
15843 <column alignment="center" valignment="middle" leftline="true" width="0" special="|S{2.5cm}{2}">
15844 <column alignment="center" valignment="middle" leftline="true" width="0">
15845 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="|K{red}|">
15846 <row topline="true">
15847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15848 \begin_inset Text
15849
15850 \begin_layout Standard
15851 verylongtablecellword
15852 \end_layout
15853
15854 \end_inset
15855 </cell>
15856 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}|">
15857 \begin_inset Text
15858
15859 \begin_layout Standard
15860 multiple lines multicolumn
15861 \end_layout
15862
15863 \end_inset
15864 </cell>
15865 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15866 \begin_inset Text
15867
15868 \begin_layout Standard
15869
15870 \end_layout
15871
15872 \end_inset
15873 </cell>
15874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15875 \begin_inset Text
15876
15877 \begin_layout Standard
15878 c
15879 \end_layout
15880
15881 \end_inset
15882 </cell>
15883 </row>
15884 <row topline="true">
15885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15886 \begin_inset Text
15887
15888 \begin_layout Standard
15889 d
15890 \end_layout
15891
15892 \end_inset
15893 </cell>
15894 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15895 \begin_inset Text
15896
15897 \begin_layout Standard
15898 e
15899 \end_layout
15900
15901 \end_inset
15902 </cell>
15903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15904 \begin_inset Text
15905
15906 \begin_layout Standard
15907 f
15908 \end_layout
15909
15910 \end_inset
15911 </cell>
15912 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15913 \begin_inset Text
15914
15915 \begin_layout Standard
15916 g
15917 \end_layout
15918
15919 \end_inset
15920 </cell>
15921 </row>
15922 <row topline="true" bottomline="true">
15923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15924 \begin_inset Text
15925
15926 \begin_layout Standard
15927 h
15928 \end_layout
15929
15930 \end_inset
15931 </cell>
15932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15933 \begin_inset Text
15934
15935 \begin_layout Standard
15936 i
15937 \end_layout
15938
15939 \end_inset
15940 </cell>
15941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15942 \begin_inset Text
15943
15944 \begin_layout Standard
15945 j
15946 \end_layout
15947
15948 \end_inset
15949 </cell>
15950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15951 \begin_inset Text
15952
15953 \begin_layout Standard
15954 k
15955 \end_layout
15956
15957 \end_inset
15958 </cell>
15959 </row>
15960 </lyxtabular>
15961
15962 \end_inset
15963
15964
15965 \end_layout
15966
15967 \end_inset
15968
15969
15970 \end_layout
15971
15972 \begin_layout Subsection
15973 Line Thickness
15974 \begin_inset LatexCommand label
15975 name "sub:Line-Thickness"
15976
15977 \end_inset
15978
15979
15980 \begin_inset LatexCommand index
15981 name "Table Customization ! Line Thickness"
15982
15983 \end_inset
15984
15985
15986 \end_layout
15987
15988 \begin_layout Standard
15989 The line thickness for all lines in a table can be adjusted with the length
15990  
15991 \series bold
15992
15993 \backslash
15994 arrayrulewidth
15995 \series default
15996 .
15997  To set for example a line thickness of 1.5\InsetSpace \thinspace{}
15998 pt, like in Table\InsetSpace ~
15999
16000 \begin_inset LatexCommand ref
16001 reference "tab:Table-with-1.5"
16002
16003 \end_inset
16004
16005 , insert the command
16006 \end_layout
16007
16008 \begin_layout Standard
16009
16010 \series bold
16011
16012 \backslash
16013 setlength{
16014 \backslash
16015 arrayrulewidth}{1.5pt}
16016 \end_layout
16017
16018 \begin_layout Standard
16019 in ERT before the table or table float.
16020  The changed thickness is valid for all following tables.
16021  To use the default value again, set 
16022 \series bold
16023
16024 \backslash
16025 arrayrulewidth
16026 \series default
16027  to 0.4\InsetSpace \thinspace{}
16028 pt in ERT behind the table or table float.
16029 \end_layout
16030
16031 \begin_layout Standard
16032 \begin_inset ERT
16033 status collapsed
16034
16035 \begin_layout Standard
16036
16037
16038 \backslash
16039 setlength{
16040 \backslash
16041 arrayrulewidth}{1.5pt}
16042 \end_layout
16043
16044 \end_inset
16045
16046
16047 \begin_inset Float table
16048 wide false
16049 sideways false
16050 status open
16051
16052 \begin_layout Standard
16053 \begin_inset Caption
16054
16055 \begin_layout Standard
16056 \begin_inset LatexCommand label
16057 name "tab:Table-with-1.5"
16058
16059 \end_inset
16060
16061 Table with 1.5\InsetSpace \thinspace{}
16062 pt thick lines
16063 \end_layout
16064
16065 \end_inset
16066
16067
16068 \end_layout
16069
16070 \begin_layout Standard
16071 \align center
16072 \begin_inset Tabular
16073 <lyxtabular version="3" rows="3" columns="3">
16074 <features>
16075 <column alignment="center" valignment="top" leftline="true" width="0">
16076 <column alignment="center" valignment="top" leftline="true" width="0">
16077 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16078 <row topline="true">
16079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16080 \begin_inset Text
16081
16082 \begin_layout Standard
16083 sd
16084 \end_layout
16085
16086 \end_inset
16087 </cell>
16088 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16089 \begin_inset Text
16090
16091 \begin_layout Standard
16092
16093 \end_layout
16094
16095 \end_inset
16096 </cell>
16097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16098 \begin_inset Text
16099
16100 \begin_layout Standard
16101
16102 \end_layout
16103
16104 \end_inset
16105 </cell>
16106 </row>
16107 <row topline="true">
16108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16109 \begin_inset Text
16110
16111 \begin_layout Standard
16112
16113 \end_layout
16114
16115 \end_inset
16116 </cell>
16117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16118 \begin_inset Text
16119
16120 \begin_layout Standard
16121 sd
16122 \end_layout
16123
16124 \end_inset
16125 </cell>
16126 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16127 \begin_inset Text
16128
16129 \begin_layout Standard
16130
16131 \end_layout
16132
16133 \end_inset
16134 </cell>
16135 </row>
16136 <row topline="true" bottomline="true">
16137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16138 \begin_inset Text
16139
16140 \begin_layout Standard
16141
16142 \end_layout
16143
16144 \end_inset
16145 </cell>
16146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16147 \begin_inset Text
16148
16149 \begin_layout Standard
16150
16151 \end_layout
16152
16153 \end_inset
16154 </cell>
16155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16156 \begin_inset Text
16157
16158 \begin_layout Standard
16159 sd
16160 \end_layout
16161
16162 \end_inset
16163 </cell>
16164 </row>
16165 </lyxtabular>
16166
16167 \end_inset
16168
16169
16170 \end_layout
16171
16172 \end_inset
16173
16174
16175 \begin_inset ERT
16176 status collapsed
16177
16178 \begin_layout Standard
16179
16180
16181 \backslash
16182 setlength{
16183 \backslash
16184 arrayrulewidth}{0.4pt}
16185 \end_layout
16186
16187 \end_inset
16188
16189
16190 \end_layout
16191
16192 \begin_layout Standard
16193 \begin_inset VSpace bigskip
16194 \end_inset
16195
16196 To set the line thickness to 1.5\InsetSpace \thinspace{}
16197 pt only for horizontal lines, like in Table\InsetSpace ~
16198
16199 \begin_inset LatexCommand ref
16200 reference "tab:Table-with-horizontal"
16201
16202 \end_inset
16203
16204 , insert these commands in ERT before the table or table float:
16205 \end_layout
16206
16207 \begin_layout Standard
16208
16209 \series bold
16210
16211 \backslash
16212 let
16213 \backslash
16214 myHline
16215 \backslash
16216 hline
16217 \newline
16218
16219 \backslash
16220 renewcommand{
16221 \backslash
16222 hline}
16223 \newline
16224  {
16225 \backslash
16226 noalign{
16227 \backslash
16228 global
16229 \backslash
16230 arrayrulewidth 1.5pt}
16231 \newline
16232   
16233 \backslash
16234 myHline
16235 \backslash
16236 noalign{
16237 \backslash
16238 global
16239 \backslash
16240 arrayrulewidth 0.4pt}}
16241 \end_layout
16242
16243 \begin_layout Standard
16244 To return to the default line thickness, insert this command in ERT behind
16245  the table or table float:
16246 \end_layout
16247
16248 \begin_layout Standard
16249
16250 \series bold
16251
16252 \backslash
16253 renewcommand{
16254 \backslash
16255 hline}{
16256 \backslash
16257 myHline}
16258 \end_layout
16259
16260 \begin_layout Standard
16261 \begin_inset ERT
16262 status collapsed
16263
16264 \begin_layout Standard
16265
16266
16267 \backslash
16268 let
16269 \backslash
16270 myHline
16271 \backslash
16272 hline
16273 \end_layout
16274
16275 \begin_layout Standard
16276
16277
16278 \backslash
16279 renewcommand{
16280 \backslash
16281 hline}
16282 \end_layout
16283
16284 \begin_layout Standard
16285
16286  {
16287 \backslash
16288 noalign{
16289 \backslash
16290 global
16291 \backslash
16292 arrayrulewidth 1.5pt}
16293 \end_layout
16294
16295 \begin_layout Standard
16296
16297   
16298 \backslash
16299 myHline
16300 \backslash
16301 noalign{
16302 \backslash
16303 global
16304 \backslash
16305 arrayrulewidth 0.4pt}}
16306 \end_layout
16307
16308 \end_inset
16309
16310
16311 \begin_inset Float table
16312 wide false
16313 sideways false
16314 status open
16315
16316 \begin_layout Standard
16317 \begin_inset Caption
16318
16319 \begin_layout Standard
16320 \begin_inset LatexCommand label
16321 name "tab:Table-with-horizontal"
16322
16323 \end_inset
16324
16325 Table with 1.5\InsetSpace \thinspace{}
16326 pt thick horizontal lines
16327 \end_layout
16328
16329 \end_inset
16330
16331
16332 \end_layout
16333
16334 \begin_layout Standard
16335 \align center
16336 \begin_inset Tabular
16337 <lyxtabular version="3" rows="3" columns="3">
16338 <features>
16339 <column alignment="center" valignment="top" leftline="true" width="0">
16340 <column alignment="center" valignment="top" leftline="true" width="0">
16341 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16342 <row topline="true">
16343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16344 \begin_inset Text
16345
16346 \begin_layout Standard
16347 sd
16348 \end_layout
16349
16350 \end_inset
16351 </cell>
16352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16353 \begin_inset Text
16354
16355 \begin_layout Standard
16356
16357 \end_layout
16358
16359 \end_inset
16360 </cell>
16361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16362 \begin_inset Text
16363
16364 \begin_layout Standard
16365
16366 \end_layout
16367
16368 \end_inset
16369 </cell>
16370 </row>
16371 <row topline="true">
16372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16373 \begin_inset Text
16374
16375 \begin_layout Standard
16376
16377 \end_layout
16378
16379 \end_inset
16380 </cell>
16381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16382 \begin_inset Text
16383
16384 \begin_layout Standard
16385 sd
16386 \end_layout
16387
16388 \end_inset
16389 </cell>
16390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16391 \begin_inset Text
16392
16393 \begin_layout Standard
16394
16395 \end_layout
16396
16397 \end_inset
16398 </cell>
16399 </row>
16400 <row topline="true" bottomline="true">
16401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16402 \begin_inset Text
16403
16404 \begin_layout Standard
16405
16406 \end_layout
16407
16408 \end_inset
16409 </cell>
16410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16411 \begin_inset Text
16412
16413 \begin_layout Standard
16414
16415 \end_layout
16416
16417 \end_inset
16418 </cell>
16419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16420 \begin_inset Text
16421
16422 \begin_layout Standard
16423 sd
16424 \end_layout
16425
16426 \end_inset
16427 </cell>
16428 </row>
16429 </lyxtabular>
16430
16431 \end_inset
16432
16433
16434 \end_layout
16435
16436 \end_inset
16437
16438
16439 \begin_inset ERT
16440 status collapsed
16441
16442 \begin_layout Standard
16443
16444
16445 \backslash
16446 renewcommand{
16447 \backslash
16448 hline}{
16449 \backslash
16450 myHline}
16451 \end_layout
16452
16453 \end_inset
16454
16455
16456 \end_layout
16457
16458 \begin_layout Standard
16459 \begin_inset VSpace bigskip
16460 \end_inset
16461
16462 To set the line thickness to 1.5\InsetSpace \thinspace{}
16463 pt only for vertical lines, create the following
16464  column format in the document preamble, according to the description in
16465  section\InsetSpace ~
16466
16467 \begin_inset LatexCommand ref
16468 reference "sub:Customized-Format"
16469
16470 \end_inset
16471
16472 :
16473 \end_layout
16474
16475 \begin_layout Standard
16476
16477 \series bold
16478
16479 \backslash
16480 newcolumntype{V}{!{
16481 \backslash
16482 vrule width 1.5pt}}
16483 \end_layout
16484
16485 \begin_layout Standard
16486 For Table\InsetSpace ~
16487
16488 \begin_inset LatexCommand ref
16489 reference "tab:Table-with-vertical"
16490
16491 \end_inset
16492
16493  the LaTeX-argument
16494 \end_layout
16495
16496 \begin_layout Standard
16497
16498 \series bold
16499 VcV
16500 \end_layout
16501
16502 \begin_layout Standard
16503 was used for the last column and
16504 \end_layout
16505
16506 \begin_layout Standard
16507
16508 \series bold
16509 Vc
16510 \end_layout
16511
16512 \begin_layout Standard
16513 for the other columns.
16514 \end_layout
16515
16516 \begin_layout Standard
16517 \begin_inset Float table
16518 wide false
16519 sideways false
16520 status open
16521
16522 \begin_layout Standard
16523 \begin_inset Caption
16524
16525 \begin_layout Standard
16526 \begin_inset LatexCommand label
16527 name "tab:Table-with-vertical"
16528
16529 \end_inset
16530
16531 Table with 1.5\InsetSpace \thinspace{}
16532 pt thick vertical lines
16533 \end_layout
16534
16535 \end_inset
16536
16537
16538 \end_layout
16539
16540 \begin_layout Standard
16541 \align center
16542 \begin_inset Tabular
16543 <lyxtabular version="3" rows="3" columns="3">
16544 <features>
16545 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16546 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16547 <column alignment="center" valignment="top" leftline="true" width="0" special="VcV">
16548 <row topline="true">
16549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16550 \begin_inset Text
16551
16552 \begin_layout Standard
16553 sd
16554 \end_layout
16555
16556 \end_inset
16557 </cell>
16558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16559 \begin_inset Text
16560
16561 \begin_layout Standard
16562
16563 \end_layout
16564
16565 \end_inset
16566 </cell>
16567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16568 \begin_inset Text
16569
16570 \begin_layout Standard
16571
16572 \end_layout
16573
16574 \end_inset
16575 </cell>
16576 </row>
16577 <row topline="true">
16578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16579 \begin_inset Text
16580
16581 \begin_layout Standard
16582
16583 \end_layout
16584
16585 \end_inset
16586 </cell>
16587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16588 \begin_inset Text
16589
16590 \begin_layout Standard
16591 sd
16592 \end_layout
16593
16594 \end_inset
16595 </cell>
16596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16597 \begin_inset Text
16598
16599 \begin_layout Standard
16600
16601 \end_layout
16602
16603 \end_inset
16604 </cell>
16605 </row>
16606 <row topline="true" bottomline="true">
16607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16608 \begin_inset Text
16609
16610 \begin_layout Standard
16611
16612 \end_layout
16613
16614 \end_inset
16615 </cell>
16616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16617 \begin_inset Text
16618
16619 \begin_layout Standard
16620
16621 \end_layout
16622
16623 \end_inset
16624 </cell>
16625 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16626 \begin_inset Text
16627
16628 \begin_layout Standard
16629 sd
16630 \end_layout
16631
16632 \end_inset
16633 </cell>
16634 </row>
16635 </lyxtabular>
16636
16637 \end_inset
16638
16639
16640 \end_layout
16641
16642 \end_inset
16643
16644
16645 \end_layout
16646
16647 \begin_layout Subsection
16648 Dashed Lines
16649 \begin_inset LatexCommand index
16650 name "Table Customization ! Dashed Lines"
16651
16652 \end_inset
16653
16654
16655 \end_layout
16656
16657 \begin_layout Standard
16658 \begin_inset ERT
16659 status collapsed
16660
16661 \begin_layout Standard
16662
16663
16664 \backslash
16665 ifarydshln
16666 \end_layout
16667
16668 \end_inset
16669
16670
16671 \begin_inset Note Note
16672 status open
16673
16674 \begin_layout Standard
16675 The following section will only be displayed when you have the LaTeX-package
16676  
16677 \series bold
16678 arydshln
16679 \series default
16680  is installed.
16681 \end_layout
16682
16683 \end_inset
16684
16685
16686 \end_layout
16687
16688 \begin_layout Standard
16689 \begin_inset Float table
16690 placement H
16691 wide false
16692 sideways false
16693 status open
16694
16695 \begin_layout Standard
16696 \begin_inset Caption
16697
16698 \begin_layout Standard
16699 \begin_inset LatexCommand label
16700 name "tab:Table-with-dashed"
16701
16702 \end_inset
16703
16704 Table with dashed lines
16705 \end_layout
16706
16707 \end_inset
16708
16709
16710 \end_layout
16711
16712 \begin_layout Standard
16713 \align center
16714 \begin_inset Tabular
16715 <lyxtabular version="3" rows="5" columns="5">
16716 <features>
16717 <column alignment="center" valignment="top" leftline="true" width="0">
16718 <column alignment="center" valignment="top" leftline="true" width="0">
16719 <column alignment="center" valignment="top" width="0" special=":c">
16720 <column alignment="center" valignment="top" leftline="true" width="0">
16721 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16722 <row topline="true" bottomline="true">
16723 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16724 \begin_inset Text
16725
16726 \begin_layout Standard
16727 a
16728 \end_layout
16729
16730 \end_inset
16731 </cell>
16732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16733 \begin_inset Text
16734
16735 \begin_layout Standard
16736 b
16737 \end_layout
16738
16739 \end_inset
16740 </cell>
16741 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16742 \begin_inset Text
16743
16744 \begin_layout Standard
16745 c
16746 \end_layout
16747
16748 \end_inset
16749 </cell>
16750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16751 \begin_inset Text
16752
16753 \begin_layout Standard
16754 d
16755 \end_layout
16756
16757 \end_inset
16758 </cell>
16759 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16760 \begin_inset Text
16761
16762 \begin_layout Standard
16763 e
16764 \end_layout
16765
16766 \end_inset
16767 </cell>
16768 </row>
16769 <row topline="true">
16770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16771 \begin_inset Text
16772
16773 \begin_layout Standard
16774 f
16775 \end_layout
16776
16777 \end_inset
16778 </cell>
16779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16780 \begin_inset Text
16781
16782 \begin_layout Standard
16783 g
16784 \end_layout
16785
16786 \end_inset
16787 </cell>
16788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16789 \begin_inset Text
16790
16791 \begin_layout Standard
16792 h
16793 \end_layout
16794
16795 \end_inset
16796 </cell>
16797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16798 \begin_inset Text
16799
16800 \begin_layout Standard
16801 i
16802 \end_layout
16803
16804 \end_inset
16805 </cell>
16806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16807 \begin_inset Text
16808
16809 \begin_layout Standard
16810 j
16811 \end_layout
16812
16813 \end_inset
16814 </cell>
16815 </row>
16816 <row>
16817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16818 \begin_inset Text
16819
16820 \begin_layout Standard
16821 \begin_inset ERT
16822 status collapsed
16823
16824 \begin_layout Standard
16825
16826
16827 \backslash
16828 hdashline 
16829 \end_layout
16830
16831 \end_inset
16832
16833 k
16834 \end_layout
16835
16836 \end_inset
16837 </cell>
16838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16839 \begin_inset Text
16840
16841 \begin_layout Standard
16842 l
16843 \end_layout
16844
16845 \end_inset
16846 </cell>
16847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16848 \begin_inset Text
16849
16850 \begin_layout Standard
16851 m
16852 \end_layout
16853
16854 \end_inset
16855 </cell>
16856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16857 \begin_inset Text
16858
16859 \begin_layout Standard
16860 n
16861 \end_layout
16862
16863 \end_inset
16864 </cell>
16865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16866 \begin_inset Text
16867
16868 \begin_layout Standard
16869 o
16870 \end_layout
16871
16872 \end_inset
16873 </cell>
16874 </row>
16875 <row topline="true">
16876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16877 \begin_inset Text
16878
16879 \begin_layout Standard
16880 \begin_inset ERT
16881 status collapsed
16882
16883 \begin_layout Standard
16884
16885
16886 \backslash
16887 cdashline{4-5}
16888 \end_layout
16889
16890 \end_inset
16891
16892 p
16893 \end_layout
16894
16895 \end_inset
16896 </cell>
16897 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16898 \begin_inset Text
16899
16900 \begin_layout Standard
16901 q
16902 \end_layout
16903
16904 \end_inset
16905 </cell>
16906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
16907 \begin_inset Text
16908
16909 \begin_layout Standard
16910 r
16911 \end_layout
16912
16913 \end_inset
16914 </cell>
16915 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
16916 \begin_inset Text
16917
16918 \begin_layout Standard
16919 s
16920 \end_layout
16921
16922 \end_inset
16923 </cell>
16924 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16925 \begin_inset Text
16926
16927 \begin_layout Standard
16928
16929 \end_layout
16930
16931 \end_inset
16932 </cell>
16933 </row>
16934 <row topline="true" bottomline="true">
16935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16936 \begin_inset Text
16937
16938 \begin_layout Standard
16939 t
16940 \end_layout
16941
16942 \end_inset
16943 </cell>
16944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16945 \begin_inset Text
16946
16947 \begin_layout Standard
16948 u
16949 \end_layout
16950
16951 \end_inset
16952 </cell>
16953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16954 \begin_inset Text
16955
16956 \begin_layout Standard
16957 v
16958 \end_layout
16959
16960 \end_inset
16961 </cell>
16962 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16963 \begin_inset Text
16964
16965 \begin_layout Standard
16966 w
16967 \end_layout
16968
16969 \end_inset
16970 </cell>
16971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16972 \begin_inset Text
16973
16974 \begin_layout Standard
16975 x
16976 \end_layout
16977
16978 \end_inset
16979 </cell>
16980 </row>
16981 </lyxtabular>
16982
16983 \end_inset
16984
16985
16986 \end_layout
16987
16988 \end_inset
16989
16990
16991 \end_layout
16992
16993 \begin_layout Standard
16994 LyX doesn't natively support dashed lines, so you have to use ERT.
16995  As prerequisite the LaTeX-package 
16996 \series bold
16997 arydshln
16998 \series default
16999
17000 \begin_inset LatexCommand index
17001 name "LaTeX-packages ! arydshln"
17002
17003 \end_inset
17004
17005  must be loaded in the document preamble with the command
17006 \end_layout
17007
17008 \begin_layout Standard
17009
17010 \series bold
17011
17012 \backslash
17013 usepackage{arydshln}
17014 \end_layout
17015
17016 \begin_layout Standard
17017 To make a vertical line dashed, enter the colon 
17018 \begin_inset Quotes eld
17019 \end_inset
17020
17021 :
17022 \begin_inset Quotes erd
17023 \end_inset
17024
17025  together with the character for the horizontal alignment as LaTeX-argument
17026  in the table cell dialog.
17027 \end_layout
17028
17029 \begin_layout Standard
17030 For a horizontal dashed line add the command
17031 \end_layout
17032
17033 \begin_layout Standard
17034
17035 \series bold
17036
17037 \backslash
17038 hdashline
17039 \end_layout
17040
17041 \begin_layout Standard
17042 in ERT as first element of the first cell in the table row.
17043 \end_layout
17044
17045 \begin_layout Standard
17046 For dashed multicolumn lines use the command
17047 \end_layout
17048
17049 \begin_layout Standard
17050
17051 \series bold
17052
17053 \backslash
17054 cdashline{line number
17055 \series default
17056 }
17057 \end_layout
17058
17059 \begin_layout Standard
17060 in ERT as first element of the first cell in the table row.
17061  If you have for example a multicolumn spanning over columns 2 to 4 and
17062  you want to have a dashed line above, add the command
17063 \end_layout
17064
17065 \begin_layout Standard
17066
17067 \series bold
17068
17069 \backslash
17070 cdashline{2-4}
17071 \end_layout
17072
17073 \begin_layout Standard
17074 as first element of the first cell in the row of the multicolumn.
17075 \end_layout
17076
17077 \begin_layout Standard
17078 \begin_inset VSpace bigskip
17079 \end_inset
17080
17081
17082 \end_layout
17083
17084 \begin_layout Standard
17085 Table\InsetSpace ~
17086
17087 \begin_inset LatexCommand ref
17088 reference "tab:Table-with-dashed"
17089
17090 \end_inset
17091
17092  was created using 
17093 \begin_inset Quotes eld
17094 \end_inset
17095
17096
17097 \series bold
17098 :c
17099 \series default
17100
17101 \begin_inset Quotes erd
17102 \end_inset
17103
17104  as LaTeX-argument of the third column.
17105  The ERT command 
17106 \series bold
17107
17108 \backslash
17109 hdashline
17110 \series default
17111  was inserted to the first cell of the third row and the the ERT command
17112 \newline
17113
17114  
17115 \series bold
17116
17117 \backslash
17118 cdashline{4-5}
17119 \series default
17120  was inserted to the first cell of the fourth row.
17121 \end_layout
17122
17123 \begin_layout Standard
17124 \begin_inset Note Greyedout
17125 status open
17126
17127 \begin_layout Standard
17128
17129 \series bold
17130 Note:
17131 \series default
17132  The used LaTeX-package 
17133 \series bold
17134 arydshln
17135 \series default
17136  is apparently not compatible with the LaTeX-package 
17137 \series bold
17138 colortbl
17139 \series default
17140
17141 \begin_inset LatexCommand index
17142 name "LaTeX-packages ! colortbl"
17143
17144 \end_inset
17145
17146  that is used for colored tables in section\InsetSpace ~
17147
17148 \begin_inset LatexCommand ref
17149 reference "sec:Colored-Tables"
17150
17151 \end_inset
17152
17153 .
17154  That means colored tables cannot have dashed lines.
17155 \end_layout
17156
17157 \end_inset
17158
17159
17160 \end_layout
17161
17162 \begin_layout Standard
17163 \begin_inset ERT
17164 status collapsed
17165
17166 \begin_layout Standard
17167
17168
17169 \backslash
17170 else
17171 \end_layout
17172
17173 \end_inset
17174
17175
17176 \begin_inset Note Note
17177 status open
17178
17179 \begin_layout Standard
17180 The following will be displayed when the LaTeX-package 
17181 \series bold
17182 arydshln
17183 \series default
17184  is not installed:
17185 \end_layout
17186
17187 \end_inset
17188
17189
17190 \end_layout
17191
17192 \begin_layout Standard
17193 You need to install the package 
17194 \series bold
17195 arydshln
17196 \series default
17197  to see the contents of this section in the output.
17198 \end_layout
17199
17200 \begin_layout Standard
17201 \begin_inset ERT
17202 status collapsed
17203
17204 \begin_layout Standard
17205
17206
17207 \backslash
17208 fi
17209 \end_layout
17210
17211 \end_inset
17212
17213
17214 \end_layout
17215
17216 \begin_layout Chapter
17217 Floats
17218 \begin_inset LatexCommand index
17219 name "Floats"
17220
17221 \end_inset
17222
17223
17224 \begin_inset LatexCommand label
17225 name "cha:Floats"
17226
17227 \end_inset
17228
17229
17230 \end_layout
17231
17232 \begin_layout Section
17233 Introduction
17234 \begin_inset LatexCommand label
17235 name "sec:FloatIntroduction"
17236
17237 \end_inset
17238
17239
17240 \begin_inset LatexCommand index
17241 name "Floats ! Introduction"
17242
17243 \end_inset
17244
17245
17246 \end_layout
17247
17248 \begin_layout Standard
17249 A float is a block of text associated with some sort of label, which doesn't
17250  have a fixed location.
17251  It can 
17252 \begin_inset Quotes eld
17253 \end_inset
17254
17255 float
17256 \begin_inset Quotes erd
17257 \end_inset
17258
17259  forward or backward a page or two, to wherever it fits best.
17260  
17261 \family sans
17262 Footnotes
17263 \family default
17264  and 
17265 \family sans
17266 Margin\InsetSpace ~
17267 Notes
17268 \family default
17269  are also floats, because they can float to the next page when there are
17270  too many notes at the page.
17271 \end_layout
17272
17273 \begin_layout Standard
17274 Floats allow a high quality layout.
17275  Images and tables can evenly be spread to the pages to avoid white space
17276  and pages without text.
17277  As the floating often destroys the context between the text and the image/table
17278 , every float can be referenced in the text.
17279  Floats are therefore numbered.
17280  Referencing is described in section\InsetSpace ~
17281
17282 \begin_inset LatexCommand ref
17283 reference "sec:Referencing-Floats"
17284
17285 \end_inset
17286
17287 .
17288 \end_layout
17289
17290 \begin_layout Standard
17291 To insert a float, use the menu 
17292 \family sans
17293 Insert\SpecialChar \menuseparator
17294 Floats
17295 \family default
17296 .
17297  This inserts a box with a label in the 
17298 \family sans
17299 Caption
17300 \family default
17301  environment
17302 \begin_inset Foot
17303 status collapsed
17304
17305 \begin_layout Standard
17306 The 
17307 \family sans
17308 Caption
17309 \family default
17310  environment is described in LyX's 
17311 \emph on
17312 Userguide
17313 \emph default
17314 .
17315 \end_layout
17316
17317 \end_inset
17318
17319  into your document.
17320  Every label ends with the character 
17321 \begin_inset Quotes eld
17322 \end_inset
17323
17324 #
17325 \begin_inset Quotes erd
17326 \end_inset
17327
17328  as placeholder for the float number in the output.
17329  The label will automatically be translated to the document language in
17330  the output.
17331  Behind the label you can insert the caption text.
17332  The image or table is inserted above or below the caption in a separate
17333  paragraph within the float.
17334  More about the caption placement is described in section\InsetSpace ~
17335
17336 \begin_inset LatexCommand ref
17337 reference "sec:Caption-Placement"
17338
17339 \end_inset
17340
17341 .
17342  To keep your LyX-document readable, you can open and close the float box
17343  by left-clicking on the box label.
17344  A closed float box looks like this: 
17345 \begin_inset Graphics
17346         filename clipart/floatQt4.png
17347         scale 70
17348
17349 \end_inset
17350
17351  -- a gray button with a red label.
17352 \end_layout
17353
17354 \begin_layout Standard
17355 It is recommended to insert floats as a separate paragraph to avoid possible
17356  LaTeX-errors that can occur when the surrounding text is specially formatted.
17357 \end_layout
17358
17359 \begin_layout Standard
17360 Existing figures or tables can be put into a float by marking them and then
17361  pressing the corresponding toolbar button for a new float.
17362 \end_layout
17363
17364 \begin_layout Section
17365 Float Types
17366 \end_layout
17367
17368 \begin_layout Standard
17369 Besides figure and table floats that are described in section\InsetSpace ~
17370
17371 \begin_inset LatexCommand ref
17372 reference "sec:Figure-Floats"
17373
17374 \end_inset
17375
17376  and 
17377 \begin_inset LatexCommand ref
17378 reference "sec:Table-Floats"
17379
17380 \end_inset
17381
17382 , respectively, LyX offers the float types 
17383 \series bold
17384 Algorithm
17385 \series default
17386  and 
17387 \series bold
17388 Text\InsetSpace ~
17389 Wrap\InsetSpace ~
17390 Float
17391 \series default
17392 .
17393 \end_layout
17394
17395 \begin_layout Subsection
17396 Algorithm Floats
17397 \begin_inset LatexCommand index
17398 name "Floats ! Algorithm Floats"
17399
17400 \end_inset
17401
17402
17403 \end_layout
17404
17405 \begin_layout Standard
17406 \begin_inset Float algorithm
17407 placement h
17408 wide false
17409 sideways false
17410 status open
17411
17412 \begin_layout Standard
17413 \begin_inset Caption
17414
17415 \begin_layout Standard
17416 \begin_inset LatexCommand label
17417 name "alg:Example-Algorithm-float"
17418
17419 \end_inset
17420
17421 Example Algorithm float
17422 \end_layout
17423
17424 \end_inset
17425
17426
17427 \end_layout
17428
17429 \begin_layout LyX-Code
17430 for I in 1..N loop
17431 \newline
17432  Sum:= Sum + A(I); /*senseless comment*/
17433 \newline
17434 end loop
17435 \begin_inset VSpace -4mm
17436 \end_inset
17437
17438
17439 \end_layout
17440
17441 \end_inset
17442
17443
17444 \end_layout
17445
17446 \begin_layout Standard
17447 This float type is inserted with the menu 
17448 \family sans
17449 Insert\SpecialChar \menuseparator
17450 Floats\SpecialChar \menuseparator
17451 Algorithm
17452 \family default
17453 .
17454  It is used for program codes and descriptions of algorithms.
17455  A possible environment for algorithms is the 
17456 \family sans
17457 LyX-Code
17458 \family default
17459 , described in LyX's 
17460 \emph on
17461 Userguide
17462 \emph default
17463 .
17464  Algorithm\InsetSpace ~
17465
17466 \begin_inset LatexCommand ref
17467 reference "alg:Example-Algorithm-float"
17468
17469 \end_inset
17470
17471  is an example of an algorithm float where -4\InsetSpace \thinspace{}
17472 mm vertical space was added
17473  at the end of the float to have the bottom rule exactly below the last
17474  text line.
17475 \end_layout
17476
17477 \begin_layout Standard
17478 The float label is not automatically translated into the document language.
17479  If your document is not in English, you have to do this manually by adding
17480  the following line to the document preamble
17481 \series bold
17482 :
17483 \end_layout
17484
17485 \begin_layout Standard
17486
17487 \series bold
17488
17489 \backslash
17490 floatname{algorithm}{your\InsetSpace ~
17491 name}
17492 \end_layout
17493
17494 \begin_layout Standard
17495
17496 \family sans
17497 your\InsetSpace ~
17498 name
17499 \family default
17500  is the word 
17501 \begin_inset Quotes eld
17502 \end_inset
17503
17504
17505 \emph on
17506 algorithm
17507 \emph default
17508
17509 \begin_inset Quotes erd
17510 \end_inset
17511
17512  in your language.
17513 \end_layout
17514
17515 \begin_layout Description
17516
17517 \series bold
17518 Note:
17519 \series default
17520  When the LaTeX-package 
17521 \series bold
17522 hyperref
17523 \series default
17524
17525 \begin_inset LatexCommand index
17526 name "LaTeX-packages ! hyperref"
17527
17528 \end_inset
17529
17530  is used to link cross-references to floats in the PDF-output, it must be
17531  loaded in the document preamble before the definition of floats to be able
17532  to reference floats.
17533  As LyX sets the float definition for algorithm floats automatically before
17534  the user editable part of the document preamble, you need to insert the
17535  following preamble lines 
17536 \emph on
17537 after
17538 \emph default
17539  the loading command of 
17540 \series bold
17541 hyperref
17542 \series default
17543 :
17544 \series bold
17545
17546 \begin_inset VSpace defskip
17547 \end_inset
17548
17549
17550 \newline
17551
17552 \backslash
17553 newfloat{Xalgorithm}{tbp}{loa}
17554 \newline
17555
17556 \backslash
17557 floatname{Xalgorithm}{your\InsetSpace ~
17558 name}
17559 \newline
17560
17561 \backslash
17562 newcommand{
17563 \backslash
17564 theHalgorithm}{
17565 \backslash
17566 theHXalgorithm}
17567 \newline
17568
17569 \backslash
17570 renewenvironment{algorithm}[1][tbp]
17571 \newline
17572
17573 \begin_inset ERT
17574 status collapsed
17575
17576 \begin_layout Standard
17577
17578
17579 \backslash
17580 hphantom{ }
17581 \end_layout
17582
17583 \end_inset
17584
17585 {
17586 \backslash
17587 begin{Xalgorithm}[#1]}{
17588 \backslash
17589 end{Xalgorithm}}
17590 \begin_inset VSpace defskip
17591 \end_inset
17592
17593
17594 \series default
17595
17596 \newline
17597 Where 
17598 \family sans
17599 your\InsetSpace ~
17600 name
17601 \family default
17602  is the word 
17603 \begin_inset Quotes eld
17604 \end_inset
17605
17606
17607 \emph on
17608 algorithm
17609 \emph default
17610
17611 \begin_inset Quotes erd
17612 \end_inset
17613
17614  in your language.
17615 \end_layout
17616
17617 \begin_layout Standard
17618 Algorithm floats are not by default numbered in the scheme 
17619 \begin_inset Quotes eld
17620 \end_inset
17621
17622 chapter.algorithm
17623 \begin_inset Quotes erd
17624 \end_inset
17625
17626  like it is the case for table and figure floats in many document-classes.
17627  To number algorithm floats in the same scheme, add this command to your
17628  document preamble:
17629 \end_layout
17630
17631 \begin_layout Standard
17632
17633 \series bold
17634
17635 \backslash
17636 numberwithin{algorithm}{chapter}
17637 \end_layout
17638
17639 \begin_layout Standard
17640 If you use the LaTeX-package 
17641 \series bold
17642 hyperref
17643 \series default
17644 , add this line instead 
17645 \emph on
17646 after
17647 \emph default
17648  the definition of 
17649 \family sans
17650 Xalgorithm
17651 \family default
17652  (the commands from above) to the preamble:
17653 \end_layout
17654
17655 \begin_layout Standard
17656
17657 \series bold
17658
17659 \backslash
17660 numberwithin{Xalgorithm}{chapter}
17661 \end_layout
17662
17663 \begin_layout Standard
17664 To be able to use the command 
17665 \series bold
17666
17667 \backslash
17668 numberwithin
17669 \series default
17670 , set in the tab 
17671 \family sans
17672 Math\InsetSpace ~
17673 Options
17674 \family default
17675  in the document settings the option 
17676 \family sans
17677 Use\InsetSpace ~
17678 AMS\InsetSpace ~
17679 math\InsetSpace ~
17680 package
17681 \family default
17682 .
17683 \end_layout
17684
17685 \begin_layout Subsection
17686 Text Wrap Floats
17687 \begin_inset LatexCommand index
17688 name "Floats ! Text Wrap Floats"
17689
17690 \end_inset
17691
17692
17693 \begin_inset LatexCommand label
17694 name "sub:floatflt-wrap-float"
17695
17696 \end_inset
17697
17698
17699 \end_layout
17700
17701 \begin_layout Standard
17702 This float type is used if you want to 
17703 \begin_inset Quotes eld
17704 \end_inset
17705
17706 wrap
17707 \begin_inset Quotes erd
17708 \end_inset
17709
17710  text around a figure so that it only occupies some fraction of the column
17711  width.
17712  It can be inserted using the menu 
17713 \begin_inset Wrap figure
17714 placement l
17715 width "40col%"
17716 status open
17717
17718 \begin_layout Standard
17719 \begin_inset Graphics
17720         filename clipart/mobius.eps
17721         display color
17722         width 40col%
17723         rotateOrigin center
17724
17725 \end_inset
17726
17727
17728 \end_layout
17729
17730 \begin_layout Standard
17731 \begin_inset Caption
17732
17733 \begin_layout Standard
17734 \begin_inset LatexCommand label
17735 name "fig:This-is-a"
17736
17737 \end_inset
17738
17739 This is a wrapped figure, and this is the brilliant caption that describes
17740  it.
17741 \begin_inset VSpace medskip
17742 \end_inset
17743
17744
17745 \end_layout
17746
17747 \end_inset
17748
17749
17750 \end_layout
17751
17752 \end_inset
17753
17754  
17755 \family sans
17756 Insert\SpecialChar \menuseparator
17757 Floats\SpecialChar \menuseparator
17758 Text\InsetSpace ~
17759 Wrap\InsetSpace ~
17760 Float
17761 \family default
17762  if the LaTeX-package 
17763 \series bold
17764 floatflt
17765 \series default
17766
17767 \begin_inset LatexCommand index
17768 name "LaTeX-packages ! floatflt"
17769
17770 \end_inset
17771
17772  is installed.
17773 \begin_inset Foot
17774 status collapsed
17775
17776 \begin_layout Standard
17777 Installing a LaTeX-package is explained it in the 
17778 \emph on
17779 LaTeX\InsetSpace ~
17780 Configuration
17781 \emph default
17782  manual.
17783 \end_layout
17784
17785 \end_inset
17786
17787  The width and placement of the float is adjusted by right-clicking on the
17788  float box.
17789  Figure\InsetSpace ~
17790
17791 \begin_inset LatexCommand ref
17792 reference "fig:This-is-a"
17793
17794 \end_inset
17795
17796  is an example text wrap float with a width of 40
17797 \begin_inset Formula $\,$
17798 \end_inset
17799
17800 col%.
17801 \begin_inset Foot
17802 status collapsed
17803
17804 \begin_layout Standard
17805 Available units are explained in 
17806 \begin_inset LatexCommand ref
17807 reference "cha:Units-available-in"
17808
17809 \end_inset
17810
17811 .
17812 \end_layout
17813
17814 \end_inset
17815
17816  Some space was added under the caption to separate it better from the surroundi
17817 ng text.
17818 \end_layout
17819
17820 \begin_layout Standard
17821 The LaTeX-package 
17822 \series bold
17823 floatflt
17824 \series default
17825  also supports table wrap floats, but they are not yet supported by LyX.
17826  If you need this, read the documentation of 
17827 \series bold
17828 floatflt
17829 \series default
17830  
17831 \begin_inset LatexCommand cite
17832 key "floatflt"
17833
17834 \end_inset
17835
17836 .
17837 \end_layout
17838
17839 \begin_layout Standard
17840 \begin_inset Note Greyedout
17841 status open
17842
17843 \begin_layout Standard
17844
17845 \series bold
17846 Note:
17847 \series default
17848  Text\InsetSpace ~
17849 wrap float floats are fragile! E.\InsetSpace \thinspace{}
17850 g.\InsetSpace ~
17851 having a figure too close to the bottom
17852  of the page can mess things up in the way that the float doesn't appear
17853  in the output or that it is placed over some other text.
17854 \begin_inset Foot
17855 status open
17856
17857 \begin_layout Standard
17858 The better solution is to use the LaTeX-package 
17859 \series bold
17860 wrapf\SpecialChar \textcompwordmark{}
17861 ig
17862 \series default
17863
17864 \begin_inset LatexCommand index
17865 name "LaTeX-packages ! wrapfig\\vspace{4mm}"
17866
17867 \end_inset
17868
17869  instead of 
17870 \series bold
17871 floatf\SpecialChar \textcompwordmark{}
17872 lt
17873 \series default
17874 , but it is currently not supported by LyX.
17875 \end_layout
17876
17877 \end_inset
17878
17879
17880 \end_layout
17881
17882 \end_inset
17883
17884
17885 \end_layout
17886
17887 \begin_layout Standard
17888 In general:
17889 \end_layout
17890
17891 \begin_layout Itemize
17892 Wrap floats should not be placed in paragraphs that run over a page break.
17893  That means that wrap floats should better be inserted to the exact place
17894  when the document is nearly ready and you are able to estimate where page
17895  breaks will appear.
17896 \end_layout
17897
17898 \begin_layout Itemize
17899 Wrap floats should either be placed in an own paragraph before the paragraph
17900  where they should wrap into or within a paragraph.
17901 \end_layout
17902
17903 \begin_layout Itemize
17904 Wrap floats in consecutive paragraphs may cause troubles, so assure that
17905  there is a text paragraph between them as separator.
17906 \end_layout
17907
17908 \begin_layout Itemize
17909 Wrap floats are not allowed in section headings or tables.
17910 \end_layout
17911
17912 \begin_layout Section
17913 Referencing Floats
17914 \begin_inset LatexCommand label
17915 name "sec:Referencing-Floats"
17916
17917 \end_inset
17918
17919
17920 \begin_inset LatexCommand index
17921 name "Floats ! References"
17922
17923 \end_inset
17924
17925
17926 \begin_inset LatexCommand index
17927 name "References"
17928
17929 \end_inset
17930
17931
17932 \end_layout
17933
17934 \begin_layout Standard
17935 To reference a float, insert a label into its caption using the menu 
17936 \family sans
17937 Insert\SpecialChar \menuseparator
17938 Label
17939 \family default
17940  or the toolbar button 
17941 \begin_inset Graphics
17942         filename ../images/label-insert.xpm
17943         scale 85
17944
17945 \end_inset
17946
17947 .
17948  A grey label box like this one: 
17949 \begin_inset Graphics
17950         filename clipart/labelQt4.png
17951         scale 85
17952
17953 \end_inset
17954
17955  will be inserted and the label window pops up asking for the label text.
17956  LyX offers as text the first words of the caption with a prefix.
17957  The prefix depends on the float type, e.\InsetSpace \thinspace{}
17958 g.\InsetSpace ~
17959 for figure floats the prefix will
17960  be "
17961 \family sans
17962 fig:
17963 \family default
17964 ".
17965 \end_layout
17966
17967 \begin_layout Standard
17968 The label is used as anchor and name for the reference.
17969  You can refer to the label using the menu 
17970 \family sans
17971 Insert\SpecialChar \menuseparator
17972 Cross-reference
17973 \family default
17974  or the toolbar button 
17975 \begin_inset Graphics
17976         filename ../images/dialog-show-new-inset_ref.xpm
17977         scale 85
17978
17979 \end_inset
17980
17981 .
17982  A grey cross-reference box like this one: 
17983 \begin_inset Graphics
17984         filename clipart/referenceQt4.png
17985         scale 85
17986
17987 \end_inset
17988
17989  will be inserted and the cross-reference window appear showing all labels
17990  of the document.
17991  If you have multiple LyX-documents opened, choose the one you are working
17992  on from the drop-list at the top of the dialog.
17993  You can now sort the labels alphabetically and then choose one.
17994  At the position of the cross-reference box the float number will appear
17995  in the output.
17996 \end_layout
17997
17998 \begin_layout Standard
17999 It is recommended to use a protected space between the cross-reference name
18000  and its number to avoid line breaks between them.
18001  If a cross-reference refers to a non-existing label, you will see two question
18002  marks in the output instead of the reference.
18003 \end_layout
18004
18005 \begin_layout Standard
18006 You can change labels at any time by clicking on the label box.
18007  References to the changed label will automatically change its link to the
18008  new label text, so that you don't need to take care about this.
18009 \end_layout
18010
18011 \begin_layout Standard
18012 The button 
18013 \family sans
18014 Go\InsetSpace ~
18015 to\InsetSpace ~
18016 Label
18017 \family default
18018  in the cross-reference window sets the cursor before the referred label.
18019  The button text changes then to Go\InsetSpace ~
18020 Back and you can use it to set the cursor
18021  back to the cross-reference.
18022  Right-clicking on a cross-reference box also sets the cursor before the
18023  referenced label but without a possibility to go back.
18024 \end_layout
18025
18026 \begin_layout Subsection
18027 Cross-Reference Formats
18028 \begin_inset LatexCommand label
18029 name "sub:Cross-Reference-Formats"
18030
18031 \end_inset
18032
18033
18034 \begin_inset LatexCommand index
18035 name "References ! Formats"
18036
18037 \end_inset
18038
18039
18040 \end_layout
18041
18042 \begin_layout Standard
18043 There are six varieties of cross-references:
18044 \end_layout
18045
18046 \begin_layout Description
18047 <reference>: prints the float number, this is the default: 
18048 \begin_inset LatexCommand ref
18049 reference "fig:Two-distorted-images"
18050
18051 \end_inset
18052
18053
18054 \end_layout
18055
18056 \begin_layout Description
18057 (<reference>): prints the float number within two parentheses, this is the
18058  style normally used to reference formulas, especially when the reference
18059  name 
18060 \begin_inset Quotes eld
18061 \end_inset
18062
18063 Equation
18064 \begin_inset Quotes erd
18065 \end_inset
18066
18067  is omitted: 
18068 \begin_inset LatexCommand eqref
18069 reference "eq:Wgn"
18070
18071 \end_inset
18072
18073
18074 \end_layout
18075
18076 \begin_layout Description
18077 <page>: prints the page number: Page\InsetSpace ~
18078
18079 \begin_inset LatexCommand pageref
18080 reference "fig:Two-distorted-images"
18081
18082 \end_inset
18083
18084
18085 \end_layout
18086
18087 \begin_layout Description
18088 on\InsetSpace ~
18089 page\InsetSpace ~
18090 <page>: prints the text "on page" and the page number: 
18091 \begin_inset LatexCommand vpageref
18092 reference "fig:Two-distorted-images"
18093
18094 \end_inset
18095
18096
18097 \end_layout
18098
18099 \begin_layout Description
18100 <reference>\InsetSpace ~
18101 on\InsetSpace ~
18102 page\InsetSpace ~
18103 <page>: prints the float number, the text "on page", and
18104  the page number: 
18105 \begin_inset LatexCommand vref
18106 reference "fig:Two-distorted-images"
18107
18108 \end_inset
18109
18110
18111 \end_layout
18112
18113 \begin_layout Description
18114 Formatted\InsetSpace ~
18115 reference: prints a self defined cross-reference format.
18116  
18117 \begin_inset Note Greyedout
18118 status open
18119
18120 \begin_layout Standard
18121
18122 \series bold
18123 Note:
18124 \series default
18125  This feature is only available when you have the LaTeX-package 
18126 \series bold
18127 prettyref
18128 \series default
18129  installed.
18130 \end_layout
18131
18132 \end_inset
18133
18134
18135 \end_layout
18136
18137 \begin_layout Standard
18138 Note that the style <page> won't print the page number if the label is on
18139  the previous, the same, or the next page.
18140  You will e.\InsetSpace \thinspace{}
18141 g.\InsetSpace ~
18142 see the text 
18143 \begin_inset Quotes eld
18144 \end_inset
18145
18146
18147 \family sans
18148 on this page
18149 \family default
18150
18151 \begin_inset Quotes erd
18152 \end_inset
18153
18154  instead.
18155 \end_layout
18156
18157 \begin_layout Standard
18158 The number and current page of the referred document part in the output,
18159  is automatically calculated by LaTeX.
18160  The varieties are adjusted in the field 
18161 \family sans
18162 Format
18163 \family default
18164  of the cross-reference window, that appear when you click on the cross-referenc
18165 e box.
18166 \end_layout
18167
18168 \begin_layout Subsection
18169 Referencing Subfigures
18170 \begin_inset LatexCommand label
18171 name "sub:Referencing-Subfigures"
18172
18173 \end_inset
18174
18175
18176 \begin_inset LatexCommand index
18177 name "References ! to Subfigures"
18178
18179 \end_inset
18180
18181
18182 \end_layout
18183
18184 \begin_layout Standard
18185 Currently referencing subfigures is not supported by LyX, so you have to
18186  use LaTeX-commands.
18187  The label is the created with the command
18188 \end_layout
18189
18190 \begin_layout Standard
18191
18192 \series bold
18193
18194 \backslash
18195 label{fig:YourLabelName}
18196 \end_layout
18197
18198 \begin_layout Standard
18199 that is directly inserted into the subfigure caption field.
18200  To reference the label add this command in ERT
18201 \end_layout
18202
18203 \begin_layout Standard
18204
18205 \series bold
18206
18207 \backslash
18208 ref{fig:YourLabelName}
18209 \end_layout
18210
18211 \begin_layout Standard
18212 to the position in your document where the reference should be placed.
18213  Here is a reference to a subfigure: Subfigure\InsetSpace ~
18214
18215 \begin_inset ERT
18216 status collapsed
18217
18218 \begin_layout Standard
18219
18220
18221 \backslash
18222 ref{fig:Platypus}
18223 \end_layout
18224
18225 \end_inset
18226
18227 .
18228 \end_layout
18229
18230 \begin_layout Subsection
18231 Automatic Reference Naming
18232 \begin_inset LatexCommand index
18233 name "References ! Automatic Reference Naming"
18234
18235 \end_inset
18236
18237
18238 \end_layout
18239
18240 \begin_layout Standard
18241 The LaTeX-package 
18242 \series bold
18243 hyperref
18244 \series default
18245  provides a very useful feature that cross-references automatically include
18246  the name of the referenced floats (or text parts like sections).
18247  You save to write e.\InsetSpace \thinspace{}
18248 g.\InsetSpace ~
18249 the name 
18250 \begin_inset Quotes eld
18251 \end_inset
18252
18253 Figure
18254 \begin_inset Quotes erd
18255 \end_inset
18256
18257  before every reference box.
18258  To get this automatic reference naming, you have to load the LaTeX-package
18259  
18260 \series bold
18261 hyperref
18262 \series default
18263
18264 \begin_inset LatexCommand index
18265 name "LaTeX-packages ! hyperref"
18266
18267 \end_inset
18268
18269  in the document preamble with
18270 \end_layout
18271
18272 \begin_layout Standard
18273
18274 \series bold
18275
18276 \backslash
18277 usepackage[pdfborder={0 0 0}]{hyperref}
18278 \newline
18279
18280 \backslash
18281 AtBeginDocument{
18282 \backslash
18283 renewcommand{
18284 \backslash
18285 ref}[1]{
18286 \backslash
18287 mbox{
18288 \backslash
18289 autoref{#1}}}}
18290 \end_layout
18291
18292 \begin_layout Standard
18293
18294 \series bold
18295 hyperref
18296 \series default
18297  is used to link cross-references in the DVI- and PDF-output, this means
18298  that the reader of your document will be able to click on a table of content
18299  (TOC) entry or on a reference and he will be shown the referenced document
18300  part.
18301  
18302 \series bold
18303 hyperref
18304 \series default
18305  also creates PDF-bookmarks for every section of your document to make it
18306  easier for readers to navigate through the document.
18307  This is also used in this document but when you have a look in the document
18308  preamble you will find various options in the load command of 
18309 \series bold
18310 hyperref
18311 \series default
18312 .
18313  To learn more about the 
18314 \series bold
18315 hyperref
18316 \series default
18317  package, we refer to its documentation 
18318 \begin_inset LatexCommand cite
18319 key "hyperref"
18320
18321 \end_inset
18322
18323 .
18324 \end_layout
18325
18326 \begin_layout Standard
18327 \begin_inset Note Greyedout
18328 status open
18329
18330 \begin_layout Standard
18331
18332 \series bold
18333 Note:
18334 \series default
18335  Automatic reference naming cannot be used when you use cross-references
18336  in the 
18337 \family sans
18338 Formatted\InsetSpace ~
18339 reference
18340 \family default
18341  style, described in section\InsetSpace ~
18342
18343 \begin_inset LatexCommand ref
18344 reference "sub:Cross-Reference-Formats"
18345
18346 \end_inset
18347
18348 .
18349 \end_layout
18350
18351 \end_inset
18352
18353
18354 \end_layout
18355
18356 \begin_layout Subsection
18357 Reference Position
18358 \begin_inset LatexCommand label
18359 name "sub:Reference-Position"
18360
18361 \end_inset
18362
18363
18364 \begin_inset LatexCommand index
18365 name "References ! Reference Position"
18366
18367 \end_inset
18368
18369
18370 \end_layout
18371
18372 \begin_layout Standard
18373 If you use 
18374 \series bold
18375 hyperref
18376 \series default
18377
18378 \begin_inset LatexCommand index
18379 name "LaTeX-packages ! hyperref"
18380
18381 \end_inset
18382
18383  to link cross-references in the output, you will see that clicking on an
18384  image float reference jumps to the image label.
18385  The caption will be the first text part on the screen, so that you cannot
18386  see the image without scrolling.
18387  This is because the reference link anchor is placed at the position of
18388  the label.
18389  With the use of the package 
18390 \series bold
18391 hypcap
18392 \series default
18393
18394 \begin_inset LatexCommand index
18395 name "LaTeX-packages ! hypcap"
18396
18397 \end_inset
18398
18399 , which is part of the LaTeX-package 
18400 \series bold
18401 oberdiek
18402 \series default
18403
18404 \begin_inset LatexCommand index
18405 name "LaTeX-packages ! oberdiek"
18406
18407 \end_inset
18408
18409 , the link anchor is placed at the beginning of a float.
18410  To use this feature for figure floats, load 
18411 \series bold
18412 hypcap
18413 \series default
18414  in the document preamble with the line
18415 \end_layout
18416
18417 \begin_layout Standard
18418
18419 \series bold
18420
18421 \backslash
18422 usepackage[f\SpecialChar \textcompwordmark{}
18423 igure]{hypcap}
18424 \end_layout
18425
18426 \begin_layout Standard
18427 You can also use 
18428 \series bold
18429 hypcap
18430 \series default
18431  for all floats but this isn't recommended for stability reasons.
18432  For more informations, have a look at 
18433 \series bold
18434 hypcap
18435 \series default
18436 's manual 
18437 \begin_inset LatexCommand cite
18438 key "hypcap"
18439
18440 \end_inset
18441
18442 .
18443 \end_layout
18444
18445 \begin_layout Standard
18446 \begin_inset Note Greyedout
18447 status open
18448
18449 \begin_layout Standard
18450
18451 \series bold
18452 Note:
18453 \series default
18454  
18455 \series bold
18456 hypcap
18457 \series default
18458  must be loaded after 
18459 \series bold
18460 hyperref
18461 \series default
18462  in the document preamble.
18463 \end_layout
18464
18465 \end_inset
18466
18467
18468 \end_layout
18469
18470 \begin_layout Standard
18471 \begin_inset Note Greyedout
18472 status open
18473
18474 \begin_layout Standard
18475
18476 \series bold
18477 Note:
18478 \series default
18479  The set reference position has no effect for references to subfigures.
18480 \end_layout
18481
18482 \end_inset
18483
18484
18485 \end_layout
18486
18487 \begin_layout Section
18488 Float Placement
18489 \begin_inset LatexCommand label
18490 name "sec:Float-Placement"
18491
18492 \end_inset
18493
18494
18495 \begin_inset LatexCommand index
18496 name "Floats ! Placement"
18497
18498 \end_inset
18499
18500
18501 \end_layout
18502
18503 \begin_layout Standard
18504 Right-clicking on a float-box opens a dialog where you can alter the placement
18505  options that LaTeX uses for positioning the float.
18506 \newline
18507 The option 
18508 \family sans
18509 Span\InsetSpace ~
18510 columns
18511 \family default
18512  is only useful for two-column documents: If you select it, the float will
18513  span across both columns on the page instead of being confined to just
18514  one.
18515 \newline
18516 The option 
18517 \family sans
18518 Rotate\InsetSpace ~
18519 sideways
18520 \family default
18521  is used to rotate floats, see section 
18522 \begin_inset LatexCommand ref
18523 reference "sec:Rotated-Floats"
18524
18525 \end_inset
18526
18527 .
18528 \end_layout
18529
18530 \begin_layout Standard
18531 You can use one ore more of the following options in the float dialog to
18532  set the placement for a particular float when you uncheck the option 
18533 \family sans
18534 Use\InsetSpace ~
18535 default\InsetSpace ~
18536 placement
18537 \family default
18538 :
18539 \end_layout
18540
18541 \begin_layout Description
18542 Here\InsetSpace ~
18543 if\InsetSpace ~
18544 possible: try to place the float on the position where it is inserted
18545 \end_layout
18546
18547 \begin_layout Description
18548 Top\InsetSpace ~
18549 of\InsetSpace ~
18550 page: try to place the float on the top of the current page
18551 \end_layout
18552
18553 \begin_layout Description
18554 Bottom\InsetSpace ~
18555 of\InsetSpace ~
18556 page: try to place the float on the bottom of the current page
18557 \end_layout
18558
18559 \begin_layout Description
18560 Page\InsetSpace ~
18561 of\InsetSpace ~
18562 floats: try to place the float on an own page 
18563 \end_layout
18564
18565 \begin_layout Standard
18566 The order of the above option is 
18567 \emph on
18568 always
18569 \emph default
18570  used by LaTeX.
18571  That means, if you use the default placement, LaTeX will first try out
18572  
18573 \family sans
18574 Here\InsetSpace ~
18575 if\InsetSpace ~
18576 possible
18577 \family default
18578 , then 
18579 \family sans
18580 Top\InsetSpace ~
18581 of\InsetSpace ~
18582 page
18583 \family default
18584 , and then the others.
18585  If you don't use the default, LaTeX will try only the checked options but
18586  in the same order.
18587  If none of the 4 placements are possible the procedure is internally repeated
18588  but it is tried to put the float on the following page.
18589 \end_layout
18590
18591 \begin_layout Standard
18592 By default, each options has its own rules:
18593 \end_layout
18594
18595 \begin_layout Labeling
18596 \labelwidthstring 00.00.0000
18597
18598 \family sans
18599 Top\InsetSpace ~
18600 of\InsetSpace ~
18601 page
18602 \family default
18603  only floats occupying less than 70\InsetSpace \thinspace{}
18604 % of the page can be placed at the top
18605  of a page (
18606 \series bold
18607
18608 \backslash
18609 topfraction
18610 \series default
18611 )
18612 \end_layout
18613
18614 \begin_layout Labeling
18615 \labelwidthstring 00.00.0000
18616
18617 \family sans
18618 Bottom\InsetSpace ~
18619 of\InsetSpace ~
18620 page
18621 \family default
18622 : only floats occupying less than 30\InsetSpace \thinspace{}
18623 % of the page can be placed at the bottom
18624  of a page.
18625  (
18626 \series bold
18627
18628 \backslash
18629 bottomfraction
18630 \series default
18631 )
18632 \end_layout
18633
18634 \begin_layout Labeling
18635 \labelwidthstring 00.00.0000
18636
18637 \family sans
18638 Page\InsetSpace ~
18639 of\InsetSpace ~
18640 floats
18641 \family default
18642 : only if more than 50\InsetSpace \thinspace{}
18643 % of the page are occupied by floats, several floats
18644  can be set together on a page.
18645  (
18646 \series bold
18647
18648 \backslash
18649 floatpagefraction
18650 \series default
18651 )
18652 \end_layout
18653
18654 \begin_layout Standard
18655 If you don't like these rules, you can ignore them by using the additional
18656  option 
18657 \family sans
18658 Ignore\InsetSpace ~
18659 LaTeX\InsetSpace ~
18660 rules
18661 \family default
18662 .
18663 \newline
18664 You can also redefine the rules with LaTeX-commands that are given in parenthese
18665 s behind the rules description above.
18666  To increase for example the often too small default of the bottom-rule
18667  to 50\InsetSpace \thinspace{}
18668 % of the page, add this line to your document preamble:
18669 \end_layout
18670
18671 \begin_layout Standard
18672
18673 \series bold
18674
18675 \backslash
18676 renewcommand{
18677 \backslash
18678 bottomfraction}{0.5}
18679 \end_layout
18680
18681 \begin_layout Standard
18682 Sometimes you might need, under all circumstances, a float to be placed
18683  exactly at the position where it is inserted.
18684  For this case you can use the option 
18685 \family sans
18686 Here\InsetSpace ~
18687 definitely
18688 \family default
18689 .
18690  Use this option very rarely and only if the document is nearly ready to
18691  be printed.
18692  Because the float is then no longer able to 
18693 \begin_inset Quotes eld
18694 \end_inset
18695
18696 float
18697 \begin_inset Quotes erd
18698 \end_inset
18699
18700  when you change your document and this will often destroy the page layout.
18701 \end_layout
18702
18703 \begin_layout Standard
18704 There are no placement options for text wrap floats, because they are always
18705  surrounded by the text of a certain paragraph.
18706 \begin_inset VSpace bigskip
18707 \end_inset
18708
18709
18710 \end_layout
18711
18712 \begin_layout Standard
18713 Sometimes you have the problem that a float is placed at the top of a page
18714  while its corresponding section starts at the middle of the page, so that
18715  the reader could think the float is part of the previous section.
18716  To avoid this the LaTeX-command 
18717 \series bold
18718
18719 \backslash
18720 suppressf\SpecialChar \textcompwordmark{}
18721 loats
18722 \series default
18723  can be used.
18724  It suppresses a given float placement for the page where it is inserted
18725  and can therefore be used to avoid that floats could be set before a section
18726  starts.
18727  To get this, add these commands to your document preamble:
18728 \end_layout
18729
18730 \begin_layout Standard
18731
18732 \series bold
18733
18734 \backslash
18735 let
18736 \backslash
18737 mySection
18738 \backslash
18739 section
18740 \newline
18741
18742 \backslash
18743 renewcommand{
18744 \backslash
18745 section}{
18746 \backslash
18747 suppressf\SpecialChar \textcompwordmark{}
18748 loats[t]
18749 \backslash
18750 mySection}
18751 \end_layout
18752
18753 \begin_layout Standard
18754 You can define the same for all section headings, like chapters and subsections.
18755  This definition is not recommended to be used for small text parts like
18756  subsubsections because LaTeX may then have problems to find a suitable
18757  placement.
18758 \end_layout
18759
18760 \begin_layout Standard
18761 \begin_inset VSpace bigskip
18762 \end_inset
18763
18764 In some cases it is required to have all figures/tables at the end of the
18765  document.
18766  For this purpose the LaTeX-package 
18767 \series bold
18768 endf\SpecialChar \textcompwordmark{}
18769 loat
18770 \series default
18771
18772 \begin_inset LatexCommand index
18773 name "LaTeX-packages ! endfloat"
18774
18775 \end_inset
18776
18777  was developed.
18778  It puts all figure and table floats at the end of the document into own
18779  sections.
18780  At the original float position a text hint like 
18781 \begin_inset Quotes eld
18782 \end_inset
18783
18784
18785 \family sans
18786 [Figure\InsetSpace ~
18787 3.2 about here.]
18788 \family default
18789
18790 \begin_inset Quotes erd
18791 \end_inset
18792
18793  is inserted.
18794  The endfloat-package is loaded in the preamble with the line
18795 \end_layout
18796
18797 \begin_layout Standard
18798
18799 \series bold
18800
18801 \backslash
18802 usepackage[options]{endf\SpecialChar \textcompwordmark{}
18803 loat}
18804 \end_layout
18805
18806 \begin_layout Standard
18807 There are various package options to format the created figure/table sections.
18808  For more information we refer to the 
18809 \series bold
18810 endf\SpecialChar \textcompwordmark{}
18811 loat
18812 \series default
18813  documentation 
18814 \begin_inset LatexCommand cite
18815 key "endfloat"
18816
18817 \end_inset
18818
18819 .
18820 \newline
18821
18822 \begin_inset Note Greyedout
18823 status open
18824
18825 \begin_layout Standard
18826
18827 \series bold
18828 Note: endf\SpecialChar \textcompwordmark{}
18829 loat
18830 \series default
18831  doesn't provide an automatic translation for the text hint, you have to
18832  do this manually, see section\InsetSpace ~
18833 4 in 
18834 \begin_inset LatexCommand cite
18835 key "endfloat"
18836
18837 \end_inset
18838
18839 .
18840 \end_layout
18841
18842 \end_inset
18843
18844
18845 \newline
18846
18847 \begin_inset Note Greyedout
18848 status open
18849
18850 \begin_layout Standard
18851
18852 \series bold
18853 Note:
18854 \series default
18855  There is currently a bug in 
18856 \series bold
18857 endf\SpecialChar \textcompwordmark{}
18858 loat
18859 \series default
18860  when the caption contains a German 
18861 \begin_inset Quotes eld
18862 \end_inset
18863
18864 ß
18865 \begin_inset Quotes erd
18866 \end_inset
18867
18868 .
18869  Use in this case the command 
18870 \begin_inset Quotes eld
18871 \end_inset
18872
18873
18874 \series bold
18875
18876 \backslash
18877 ss
18878 \series default
18879
18880 \begin_inset Quotes erd
18881 \end_inset
18882
18883  in ERT instead of 
18884 \begin_inset Quotes eld
18885 \end_inset
18886
18887 ß
18888 \begin_inset Quotes erd
18889 \end_inset
18890
18891 .
18892 \end_layout
18893
18894 \end_inset
18895
18896
18897 \end_layout
18898
18899 \begin_layout Standard
18900 \begin_inset VSpace bigskip
18901 \end_inset
18902
18903 For more details about float placements, have a look at LaTeX books, 
18904 \begin_inset LatexCommand cite
18905 key "latexcompanion,latexguide,latexbook"
18906
18907 \end_inset
18908
18909 .
18910 \end_layout
18911
18912 \begin_layout Section
18913 Rotated Floats
18914 \begin_inset LatexCommand label
18915 name "sec:Rotated-Floats"
18916
18917 \end_inset
18918
18919
18920 \begin_inset LatexCommand index
18921 name "Floats ! Rotating"
18922
18923 \end_inset
18924
18925
18926 \end_layout
18927
18928 \begin_layout Standard
18929 Especially for wide tables you might have floats rotated.
18930  To rotate a whole float including the caption, right-click on the float-box
18931  and use the option 
18932 \family sans
18933 Rotate\InsetSpace ~
18934 sideways
18935 \family default
18936 .
18937 \end_layout
18938
18939 \begin_layout Standard
18940 Rotated floats are always placed on its own page (or column, when you have
18941  a two-column document).
18942  They are normally rotated so that you can read them from the outside margin
18943  -- to the left on even pages, to the right on odd pages.
18944 \end_layout
18945
18946 \begin_layout Standard
18947 Referencing rotated floats is the same like for normal floats, the caption
18948  format is also the same: Table\InsetSpace ~
18949
18950 \begin_inset LatexCommand ref
18951 reference "tab:Rotated-table"
18952
18953 \end_inset
18954
18955  is an example of a rotated table float.
18956 \end_layout
18957
18958 \begin_layout Standard
18959 \begin_inset Note Greyedout
18960 status open
18961
18962 \begin_layout Standard
18963
18964 \series bold
18965 Note:
18966 \series default
18967  Not all DVI-viewers are able to display rotated floats.
18968 \end_layout
18969
18970 \end_inset
18971
18972
18973 \end_layout
18974
18975 \begin_layout Standard
18976 \begin_inset Float table
18977 wide false
18978 sideways true
18979 status open
18980
18981 \begin_layout Standard
18982 \begin_inset Caption
18983
18984 \begin_layout Standard
18985 \begin_inset LatexCommand label
18986 name "tab:Rotated-table"
18987
18988 \end_inset
18989
18990  Rotated table
18991 \end_layout
18992
18993 \end_inset
18994
18995
18996 \end_layout
18997
18998 \begin_layout Standard
18999 \align center
19000 \begin_inset Tabular
19001 <lyxtabular version="3" rows="1" columns="5">
19002 <features>
19003 <column alignment="center" valignment="top" leftline="true" width="0">
19004 <column alignment="center" valignment="top" leftline="true" width="0">
19005 <column alignment="center" valignment="top" leftline="true" width="0">
19006 <column alignment="center" valignment="top" leftline="true" width="0">
19007 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19008 <row topline="true" bottomline="true">
19009 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19010 \begin_inset Text
19011
19012 \begin_layout Standard
19013 test
19014 \end_layout
19015
19016 \end_inset
19017 </cell>
19018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19019 \begin_inset Text
19020
19021 \begin_layout Standard
19022 b
19023 \end_layout
19024
19025 \end_inset
19026 </cell>
19027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19028 \begin_inset Text
19029
19030 \begin_layout Standard
19031 c
19032 \end_layout
19033
19034 \end_inset
19035 </cell>
19036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19037 \begin_inset Text
19038
19039 \begin_layout Standard
19040 d
19041 \end_layout
19042
19043 \end_inset
19044 </cell>
19045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19046 \begin_inset Text
19047
19048 \begin_layout Standard
19049 e
19050 \end_layout
19051
19052 \end_inset
19053 </cell>
19054 </row>
19055 </lyxtabular>
19056
19057 \end_inset
19058
19059
19060 \end_layout
19061
19062 \end_inset
19063
19064
19065 \end_layout
19066
19067 \begin_layout Section
19068 Caption Formatting
19069 \begin_inset LatexCommand index
19070 name "Caption ! Formatting"
19071
19072 \end_inset
19073
19074
19075 \begin_inset LatexCommand index
19076 name "Floats ! Caption Formatting"
19077
19078 \end_inset
19079
19080
19081 \begin_inset LatexCommand index
19082 name "LaTeX-packages ! caption"
19083
19084 \end_inset
19085
19086
19087 \begin_inset LatexCommand label
19088 name "sec:Caption-Formatting"
19089
19090 \end_inset
19091
19092
19093 \end_layout
19094
19095 \begin_layout Standard
19096 The 
19097 \family sans
19098 Caption
19099 \family default
19100  environment is the default paragraph environment for 
19101 \family sans
19102 Floats
19103 \family default
19104 .
19105  On the LyX screen captions appear as label, e.\InsetSpace \thinspace{}
19106 g.\InsetSpace ~
19107
19108 \begin_inset Quotes eld
19109 \end_inset
19110
19111
19112 \family sans
19113 Figure #:
19114 \family default
19115
19116 \begin_inset Quotes erd
19117 \end_inset
19118
19119  followed by the caption text.
19120  The number sign 
19121 \begin_inset Quotes eld
19122 \end_inset
19123
19124 #
19125 \begin_inset Quotes erd
19126 \end_inset
19127
19128  is substituted in the printed output by the actual reference number.
19129  By default the label and the number are in the same font as the caption
19130  text and a colon follows the number to divide then label from the text.
19131  This caption format is not suitable for all document formats.
19132  
19133 \end_layout
19134
19135 \begin_layout Standard
19136 To change the default caption format, load the LaTeX-package 
19137 \series bold
19138 caption
19139 \series default
19140
19141 \begin_inset LatexCommand index
19142 name "LaTeX-packages ! caption"
19143
19144 \end_inset
19145
19146  in the document preamble with this line:
19147 \end_layout
19148
19149 \begin_layout Standard
19150
19151 \series bold
19152
19153 \backslash
19154 usepackage[format definition]{caption}
19155 \end_layout
19156
19157 \begin_layout Standard
19158 To have for example the label and the number in sans-serif bold font and
19159  the table captions always above the table like in this document, use the
19160  following command:
19161 \end_layout
19162
19163 \begin_layout Standard
19164
19165 \series bold
19166
19167 \backslash
19168 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19169 \end_layout
19170
19171 \begin_layout Standard
19172 You can also define different caption formats for the different float types.
19173  In this case load the 
19174 \series bold
19175 caption
19176 \series default
19177  package without format specific options and define the different formats
19178  with the help of the command
19179 \end_layout
19180
19181 \begin_layout Standard
19182
19183 \series bold
19184
19185 \backslash
19186 captionsetup[float type]{format definition}
19187 \end_layout
19188
19189 \begin_layout Standard
19190 in the document preamble.
19191  For example the caption formats of Figure\InsetSpace ~
19192
19193 \begin_inset LatexCommand ref
19194 reference "fig:This-is-an-fig"
19195
19196 \end_inset
19197
19198  and Table\InsetSpace ~
19199
19200 \begin_inset LatexCommand ref
19201 reference "tab:This-is-an-tab"
19202
19203 \end_inset
19204
19205  can be created using these commands in the document preamble:
19206 \end_layout
19207
19208 \begin_layout Standard
19209
19210 \series bold
19211
19212 \backslash
19213 usepackage[tableposition=top]{caption}
19214 \series default
19215
19216 \newline
19217
19218 \series bold
19219
19220 \backslash
19221 captionsetup[f\SpecialChar \textcompwordmark{}
19222 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19223 \newline
19224
19225 \begin_inset ERT
19226 status collapsed
19227
19228 \begin_layout Standard
19229
19230
19231 \backslash
19232 hphantom{
19233 \backslash
19234
19235 \backslash
19236 captionsetup[figure]
19237 \backslash
19238 {}
19239 \end_layout
19240
19241 \end_inset
19242
19243  labelsep=period}
19244 \newline
19245
19246 \backslash
19247 captionsetup[table]{labelfont={bf,sf}}
19248 \end_layout
19249
19250 \begin_layout Standard
19251 For more information about the package 
19252 \series bold
19253 caption
19254 \series default
19255  we refer to its documentation 
19256 \begin_inset LatexCommand cite
19257 key "caption,caption-de"
19258
19259 \end_inset
19260
19261 .
19262 \end_layout
19263
19264 \begin_layout Standard
19265 \begin_inset VSpace bigskip
19266 \end_inset
19267
19268 If you are using a 
19269 \series bold
19270 koma-script
19271 \series default
19272
19273 \begin_inset LatexCommand index
19274 name "LaTeX-packages ! koma-script"
19275
19276 \end_inset
19277
19278  document class (
19279 \family sans
19280 article (koma-script)
19281 \family default
19282
19283 \family sans
19284 book (koma-script)
19285 \family default
19286
19287 \family sans
19288 letter (koma-script)
19289 \family default
19290 , or 
19291 \family sans
19292 report (koma-script)
19293 \family default
19294 \InsetSpace \thinspace{}
19295 ), you can alternatively to the 
19296 \series bold
19297 caption
19298 \series default
19299  package use 
19300 \series bold
19301 koma-script
19302 \series default
19303 's built-in command 
19304 \series bold
19305
19306 \backslash
19307 setkomafont
19308 \series default
19309 .
19310  For example, to have the caption label in bold, add this command to your
19311  document preamble:
19312 \end_layout
19313
19314 \begin_layout Standard
19315
19316 \series bold
19317
19318 \backslash
19319 setkomafont{captionlabel}{
19320 \backslash
19321 bfseries}
19322 \end_layout
19323
19324 \begin_layout Standard
19325 For more information about 
19326 \series bold
19327
19328 \backslash
19329 setkomafont
19330 \series default
19331  we refer to the 
19332 \series bold
19333 koma-script
19334 \series default
19335  documentation 
19336 \begin_inset LatexCommand cite
19337 key "koma-script,koma-script-de"
19338
19339 \end_inset
19340
19341 .
19342 \end_layout
19343
19344 \begin_layout Standard
19345 \begin_inset ERT
19346 status collapsed
19347
19348 \begin_layout Standard
19349
19350
19351 \backslash
19352 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19353 }
19354 \end_layout
19355
19356 \end_inset
19357
19358
19359 \begin_inset Note Note
19360 status open
19361
19362 \begin_layout Standard
19363 The caption format is changed only for this example.
19364 \end_layout
19365
19366 \end_inset
19367
19368
19369 \end_layout
19370
19371 \begin_layout Standard
19372 \begin_inset Float figure
19373 placement !p
19374 wide false
19375 sideways false
19376 status open
19377
19378 \begin_layout Standard
19379 \align center
19380 \begin_inset Graphics
19381         filename clipart/mobius.eps
19382         lyxscale 50
19383         scale 50
19384
19385 \end_inset
19386
19387
19388 \end_layout
19389
19390 \begin_layout Standard
19391 \begin_inset Caption
19392
19393 \begin_layout Standard
19394 \begin_inset LatexCommand label
19395 name "fig:This-is-an-fig"
19396
19397 \end_inset
19398
19399 This is an example figure caption that is longer than one line to show the
19400  different caption format.
19401  Here a self-defined caption format is used.
19402 \end_layout
19403
19404 \end_inset
19405
19406
19407 \end_layout
19408
19409 \end_inset
19410
19411
19412 \end_layout
19413
19414 \begin_layout Standard
19415 \begin_inset ERT
19416 status collapsed
19417
19418 \begin_layout Standard
19419
19420
19421 \backslash
19422 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19423 on}
19424 \end_layout
19425
19426 \end_inset
19427
19428
19429 \end_layout
19430
19431 \begin_layout Standard
19432 \begin_inset Float table
19433 placement !p
19434 wide false
19435 sideways false
19436 status open
19437
19438 \begin_layout Standard
19439 \begin_inset Caption
19440
19441 \begin_layout Standard
19442 \begin_inset LatexCommand label
19443 name "tab:This-is-an-tab"
19444
19445 \end_inset
19446
19447 This is an example table caption that is longer than one line to show the
19448  different caption format.
19449  Here the standard caption format for tables in this document is used.
19450 \end_layout
19451
19452 \end_inset
19453
19454
19455 \end_layout
19456
19457 \begin_layout Standard
19458 \align center
19459 \begin_inset Tabular
19460 <lyxtabular version="3" rows="1" columns="5">
19461 <features>
19462 <column alignment="center" valignment="top" leftline="true" width="0">
19463 <column alignment="center" valignment="top" leftline="true" width="0">
19464 <column alignment="center" valignment="top" leftline="true" width="0">
19465 <column alignment="center" valignment="top" leftline="true" width="0">
19466 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19467 <row topline="true" bottomline="true">
19468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19469 \begin_inset Text
19470
19471 \begin_layout Standard
19472 a
19473 \end_layout
19474
19475 \end_inset
19476 </cell>
19477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19478 \begin_inset Text
19479
19480 \begin_layout Standard
19481 b
19482 \end_layout
19483
19484 \end_inset
19485 </cell>
19486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19487 \begin_inset Text
19488
19489 \begin_layout Standard
19490 c
19491 \end_layout
19492
19493 \end_inset
19494 </cell>
19495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19496 \begin_inset Text
19497
19498 \begin_layout Standard
19499 d
19500 \end_layout
19501
19502 \end_inset
19503 </cell>
19504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19505 \begin_inset Text
19506
19507 \begin_layout Standard
19508 e
19509 \end_layout
19510
19511 \end_inset
19512 </cell>
19513 </row>
19514 </lyxtabular>
19515
19516 \end_inset
19517
19518
19519 \end_layout
19520
19521 \end_inset
19522
19523
19524 \end_layout
19525
19526 \begin_layout Section
19527 Caption Placement
19528 \begin_inset LatexCommand index
19529 name "Caption ! Placement"
19530
19531 \end_inset
19532
19533
19534 \begin_inset LatexCommand index
19535 name "Floats ! Caption Placement"
19536
19537 \end_inset
19538
19539
19540 \begin_inset LatexCommand label
19541 name "sec:Caption-Placement"
19542
19543 \end_inset
19544
19545
19546 \end_layout
19547
19548 \begin_layout Standard
19549 The common caption placement rule is:
19550 \end_layout
19551
19552 \begin_layout Description
19553 Figure: Caption is set below the figure
19554 \end_layout
19555
19556 \begin_layout Description
19557 Table: Caption is set above the table
19558 \end_layout
19559
19560 \begin_layout Standard
19561 Having the caption above the table is unfortunately not supported in LaTeX's
19562  standard classes.
19563  That means if you are using the document classes 
19564 \family sans
19565 article
19566 \family default
19567
19568 \family sans
19569 book
19570 \family default
19571
19572 \family sans
19573 letter
19574 \family default
19575 , or 
19576 \family sans
19577 report
19578 \family default
19579  there will be no space between the caption and the table.
19580  To insert the needed space, add the following option to the load command
19581  of the LaTeX-package 
19582 \series bold
19583 caption
19584 \series default
19585  in your document preamble
19586 \begin_inset Foot
19587 status collapsed
19588
19589 \begin_layout Standard
19590 See section\InsetSpace ~
19591
19592 \begin_inset LatexCommand ref
19593 reference "sec:Caption-Formatting"
19594
19595 \end_inset
19596
19597  for more information of the package 
19598 \series bold
19599 caption
19600 \series default
19601 .
19602 \end_layout
19603
19604 \end_inset
19605
19606 :
19607 \end_layout
19608
19609 \begin_layout Standard
19610
19611 \series bold
19612 tableposition=top
19613 \end_layout
19614
19615 \begin_layout Standard
19616 If you are using a 
19617 \series bold
19618 koma-script
19619 \series default
19620
19621 \begin_inset LatexCommand index
19622 name "LaTeX-packages ! koma-script"
19623
19624 \end_inset
19625
19626  document class (
19627 \family sans
19628 article (koma-script)
19629 \family default
19630
19631 \family sans
19632 book (koma-script)
19633 \family default
19634
19635 \family sans
19636 letter (koma-script)
19637 \family default
19638 , or 
19639 \family sans
19640 report (koma-script)
19641 \family default
19642 \InsetSpace \thinspace{}
19643 ), you can alternatively to the 
19644 \series bold
19645 caption
19646 \series default
19647  package set the document class option 
19648 \series bold
19649 tablecaptionabove
19650 \series default
19651 , or you can use the environment 
19652 \family sans
19653 caption\InsetSpace ~
19654 above
19655 \family default
19656  instead of the 
19657 \family sans
19658 caption
19659 \family default
19660  environment.
19661 \end_layout
19662
19663 \begin_layout Standard
19664 \begin_inset VSpace bigskip
19665 \end_inset
19666
19667 It is also possible to set the caption beside a figure or table.
19668  To get this the LaTeX-package 
19669 \series bold
19670 sidecap
19671 \series default
19672
19673 \begin_inset LatexCommand index
19674 name "LaTeX-packages ! sidecap"
19675
19676 \end_inset
19677
19678  has to be loaded in the document preamble with the line
19679 \end_layout
19680
19681 \begin_layout Standard
19682
19683 \series bold
19684
19685 \backslash
19686 usepackage[option]{sidecap}
19687 \end_layout
19688
19689 \begin_layout Standard
19690 If you set no option, the caption is placed on the side of the outer page
19691  margin -- to the right on odd pages, to the left on even pages.
19692  You can change the placement to inner margin with the option 
19693 \series bold
19694 innercaption
19695 \series default
19696 .
19697  To force the placement always to the right or left, use the option 
19698 \series bold
19699 rightcaption
19700 \series default
19701  or 
19702 \series bold
19703 leftcaption
19704 \series default
19705 , respectively.
19706 \end_layout
19707
19708 \begin_layout Standard
19709 To place in LyX the caption of a float on the side, it is necessary to add
19710  these commands to the document preamble:
19711 \end_layout
19712
19713 \begin_layout Standard
19714
19715 \lyxline
19716
19717 \end_layout
19718
19719 \begin_layout Standard
19720
19721 \series bold
19722
19723 \backslash
19724 newcommand{
19725 \backslash
19726 TabBesBeg}{%
19727 \newline
19728
19729 \begin_inset ERT
19730 status collapsed
19731
19732 \begin_layout Standard
19733
19734
19735 \backslash
19736 hphantom{ }
19737 \end_layout
19738
19739 \end_inset
19740
19741
19742 \backslash
19743 let
19744 \backslash
19745 MyTable
19746 \backslash
19747 table
19748 \newline
19749
19750 \begin_inset ERT
19751 status collapsed
19752
19753 \begin_layout Standard
19754
19755
19756 \backslash
19757 hphantom{ }
19758 \end_layout
19759
19760 \end_inset
19761
19762
19763 \backslash
19764 let
19765 \backslash
19766 MyEndtable
19767 \backslash
19768 endtable
19769 \newline
19770
19771 \begin_inset ERT
19772 status collapsed
19773
19774 \begin_layout Standard
19775
19776
19777 \backslash
19778 hphantom{ }
19779 \end_layout
19780
19781 \end_inset
19782
19783
19784 \backslash
19785 renewenvironment{table}{
19786 \backslash
19787 begin{SCtable}}{
19788 \backslash
19789 end{SCtable}}}
19790 \end_layout
19791
19792 \begin_layout Standard
19793
19794 \series bold
19795
19796 \backslash
19797 newcommand{
19798 \backslash
19799 TabBesEnd}{%
19800 \newline
19801
19802 \begin_inset ERT
19803 status collapsed
19804
19805 \begin_layout Standard
19806
19807
19808 \backslash
19809 hphantom{ }
19810 \end_layout
19811
19812 \end_inset
19813
19814
19815 \backslash
19816 let
19817 \backslash
19818 table
19819 \backslash
19820 MyTable
19821 \newline
19822
19823 \begin_inset ERT
19824 status collapsed
19825
19826 \begin_layout Standard
19827
19828
19829 \backslash
19830 hphantom{ }
19831 \end_layout
19832
19833 \end_inset
19834
19835
19836 \backslash
19837 let
19838 \backslash
19839 endtable
19840 \backslash
19841 MyEndtable
19842 \end_layout
19843
19844 \begin_layout Standard
19845
19846 \series bold
19847
19848 \backslash
19849 newcommand{
19850 \backslash
19851 FigBesBeg}{%
19852 \newline
19853
19854 \begin_inset ERT
19855 status collapsed
19856
19857 \begin_layout Standard
19858
19859
19860 \backslash
19861 hphantom{ }
19862 \end_layout
19863
19864 \end_inset
19865
19866
19867 \backslash
19868 let
19869 \backslash
19870 MyFigure
19871 \backslash
19872 f\SpecialChar \textcompwordmark{}
19873 igure
19874 \newline
19875
19876 \begin_inset ERT
19877 status collapsed
19878
19879 \begin_layout Standard
19880
19881
19882 \backslash
19883 hphantom{ }
19884 \end_layout
19885
19886 \end_inset
19887
19888
19889 \backslash
19890 let
19891 \backslash
19892 MyEndf\SpecialChar \textcompwordmark{}
19893 igure
19894 \backslash
19895 endf\SpecialChar \textcompwordmark{}
19896 igure
19897 \newline
19898
19899 \begin_inset ERT
19900 status collapsed
19901
19902 \begin_layout Standard
19903
19904
19905 \backslash
19906 hphantom{ }
19907 \end_layout
19908
19909 \end_inset
19910
19911
19912 \backslash
19913 renewenvironment{f\SpecialChar \textcompwordmark{}
19914 igure}{
19915 \backslash
19916 begin{SCf\SpecialChar \textcompwordmark{}
19917 igure}}{
19918 \backslash
19919 end{SCf\SpecialChar \textcompwordmark{}
19920 igure}}}
19921 \end_layout
19922
19923 \begin_layout Standard
19924
19925 \series bold
19926
19927 \backslash
19928 newcommand{
19929 \backslash
19930 FigBesEnd}{%
19931 \newline
19932
19933 \begin_inset ERT
19934 status collapsed
19935
19936 \begin_layout Standard
19937
19938
19939 \backslash
19940 hphantom{ }
19941 \end_layout
19942
19943 \end_inset
19944
19945
19946 \backslash
19947 let
19948 \backslash
19949 f\SpecialChar \textcompwordmark{}
19950 igure
19951 \backslash
19952 MyFigure
19953 \newline
19954
19955 \begin_inset ERT
19956 status collapsed
19957
19958 \begin_layout Standard
19959
19960
19961 \backslash
19962 hphantom{ }
19963 \end_layout
19964
19965 \end_inset
19966
19967
19968 \backslash
19969 let
19970 \backslash
19971 endf\SpecialChar \textcompwordmark{}
19972 igure
19973 \backslash
19974 MyEndf\SpecialChar \textcompwordmark{}
19975 igure}
19976 \end_layout
19977
19978 \begin_layout Standard
19979
19980 \lyxline
19981
19982 \end_layout
19983
19984 \begin_layout Standard
19985 The commands allow you to redefine the floats so that the caption is set
19986  on the side.
19987  For figure floats use the command
19988 \end_layout
19989
19990 \begin_layout Standard
19991
19992 \series bold
19993
19994 \backslash
19995 FigBesBeg
19996 \end_layout
19997
19998 \begin_layout Standard
19999 in ERT before the float.
20000  Behind the float insert the command
20001 \end_layout
20002
20003 \begin_layout Standard
20004
20005 \series bold
20006
20007 \backslash
20008 FigBesEnd
20009 \end_layout
20010
20011 \begin_layout Standard
20012 in ERT to get back to the original float definition.
20013 \end_layout
20014
20015 \begin_layout Standard
20016 For table floats use the corresponding commands
20017 \end_layout
20018
20019 \begin_layout Standard
20020
20021 \series bold
20022
20023 \backslash
20024 TabBesBeg
20025 \series default
20026  and 
20027 \series bold
20028
20029 \backslash
20030 TabBesEnd
20031 \end_layout
20032
20033 \begin_layout Standard
20034 Figure\InsetSpace ~
20035
20036 \begin_inset LatexCommand ref
20037 reference "fig:cap-beside-fig"
20038
20039 \end_inset
20040
20041  and Table\InsetSpace ~
20042
20043 \begin_inset LatexCommand ref
20044 reference "tab:cap-beside-tab"
20045
20046 \end_inset
20047
20048  are examples where the caption is set beside.
20049 \end_layout
20050
20051 \begin_layout Standard
20052 You can see in the examples that the caption text appears at the top of
20053  the floats for table floats and at the bottom for figure floats.
20054  To change this, you can use the command
20055 \end_layout
20056
20057 \begin_layout Standard
20058
20059 \series bold
20060
20061 \backslash
20062 sidecaptionvpos{float type}{placement}
20063 \end_layout
20064
20065 \begin_layout Standard
20066 in the document preamble or in ERT before the float.
20067  The float type is either 
20068 \family sans
20069 figure
20070 \family default
20071  or 
20072 \family sans
20073 table
20074 \family default
20075 , the placement can be 
20076 \begin_inset Quotes eld
20077 \end_inset
20078
20079
20080 \family sans
20081 t
20082 \family default
20083
20084 \begin_inset Quotes erd
20085 \end_inset
20086
20087  for top, 
20088 \begin_inset Quotes eld
20089 \end_inset
20090
20091
20092 \family sans
20093 c
20094 \family default
20095
20096 \begin_inset Quotes erd
20097 \end_inset
20098
20099  for center, or 
20100 \begin_inset Quotes eld
20101 \end_inset
20102
20103
20104 \family sans
20105 b
20106 \family default
20107
20108 \begin_inset Quotes erd
20109 \end_inset
20110
20111  for bottom.
20112  To have for example the caption of figure floats vertically centered, use
20113  the command
20114 \end_layout
20115
20116 \begin_layout Standard
20117
20118 \series bold
20119
20120 \backslash
20121 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20122 igure}{c}
20123 \end_layout
20124
20125 \begin_layout Standard
20126 This was used for Figure\InsetSpace ~
20127
20128 \begin_inset LatexCommand ref
20129 reference "fig:cap-beside-fig-2"
20130
20131 \end_inset
20132
20133 .
20134 \end_layout
20135
20136 \begin_layout Standard
20137 \begin_inset VSpace defskip
20138 \end_inset
20139
20140 For more information about the package 
20141 \series bold
20142 sidecap
20143 \series default
20144  we refer to its documentation 
20145 \begin_inset LatexCommand cite
20146 key "sidecap"
20147
20148 \end_inset
20149
20150 .
20151 \end_layout
20152
20153 \begin_layout Standard
20154 \begin_inset Note Greyedout
20155 status open
20156
20157 \begin_layout Standard
20158
20159 \series bold
20160 Note:
20161 \series default
20162  The LaTeX-package 
20163 \series bold
20164 hypcap
20165 \series default
20166
20167 \begin_inset LatexCommand index
20168 name "LaTeX-packages ! hypcap"
20169
20170 \end_inset
20171
20172 , described in section\InsetSpace ~
20173
20174 \begin_inset LatexCommand ref
20175 reference "sub:Reference-Position"
20176
20177 \end_inset
20178
20179 , has no effect on floats with the caption set beside.
20180 \end_layout
20181
20182 \end_inset
20183
20184
20185 \end_layout
20186
20187 \begin_layout Standard
20188 \begin_inset ERT
20189 status collapsed
20190
20191 \begin_layout Standard
20192
20193
20194 \backslash
20195 FigBesBeg 
20196 \end_layout
20197
20198 \end_inset
20199
20200
20201 \end_layout
20202
20203 \begin_layout Standard
20204 \begin_inset Float figure
20205 wide false
20206 sideways false
20207 status open
20208
20209 \begin_layout Standard
20210 \begin_inset Graphics
20211         filename clipart/escher-lsd.eps
20212         scale 75
20213
20214 \end_inset
20215
20216
20217 \end_layout
20218
20219 \begin_layout Standard
20220 \begin_inset Caption
20221
20222 \begin_layout Standard
20223 \begin_inset LatexCommand label
20224 name "fig:cap-beside-fig"
20225
20226 \end_inset
20227
20228 This is a caption beside a figure.
20229 \end_layout
20230
20231 \end_inset
20232
20233
20234 \end_layout
20235
20236 \end_inset
20237
20238
20239 \end_layout
20240
20241 \begin_layout Standard
20242 \begin_inset ERT
20243 status collapsed
20244
20245 \begin_layout Standard
20246
20247
20248 \backslash
20249 TabBesBeg 
20250 \end_layout
20251
20252 \end_inset
20253
20254
20255 \end_layout
20256
20257 \begin_layout Standard
20258 \begin_inset Float table
20259 wide false
20260 sideways false
20261 status open
20262
20263 \begin_layout Standard
20264 \begin_inset Caption
20265
20266 \begin_layout Standard
20267 \begin_inset LatexCommand label
20268 name "tab:cap-beside-tab"
20269
20270 \end_inset
20271
20272 This is a caption beside a table.
20273 \end_layout
20274
20275 \end_inset
20276
20277
20278 \end_layout
20279
20280 \begin_layout Standard
20281 \begin_inset Tabular
20282 <lyxtabular version="3" rows="4" columns="5">
20283 <features>
20284 <column alignment="center" valignment="top" leftline="true" width="0">
20285 <column alignment="center" valignment="top" leftline="true" width="0">
20286 <column alignment="center" valignment="top" leftline="true" width="0">
20287 <column alignment="center" valignment="top" leftline="true" width="0">
20288 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20289 <row topline="true">
20290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20291 \begin_inset Text
20292
20293 \begin_layout Standard
20294 a
20295 \end_layout
20296
20297 \end_inset
20298 </cell>
20299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20300 \begin_inset Text
20301
20302 \begin_layout Standard
20303
20304 \end_layout
20305
20306 \end_inset
20307 </cell>
20308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20309 \begin_inset Text
20310
20311 \begin_layout Standard
20312 b
20313 \end_layout
20314
20315 \end_inset
20316 </cell>
20317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20318 \begin_inset Text
20319
20320 \begin_layout Standard
20321
20322 \end_layout
20323
20324 \end_inset
20325 </cell>
20326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20327 \begin_inset Text
20328
20329 \begin_layout Standard
20330 c
20331 \end_layout
20332
20333 \end_inset
20334 </cell>
20335 </row>
20336 <row topline="true">
20337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20338 \begin_inset Text
20339
20340 \begin_layout Standard
20341
20342 \end_layout
20343
20344 \end_inset
20345 </cell>
20346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20347 \begin_inset Text
20348
20349 \begin_layout Standard
20350 d
20351 \end_layout
20352
20353 \end_inset
20354 </cell>
20355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20356 \begin_inset Text
20357
20358 \begin_layout Standard
20359
20360 \end_layout
20361
20362 \end_inset
20363 </cell>
20364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20365 \begin_inset Text
20366
20367 \begin_layout Standard
20368 e
20369 \end_layout
20370
20371 \end_inset
20372 </cell>
20373 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20374 \begin_inset Text
20375
20376 \begin_layout Standard
20377
20378 \end_layout
20379
20380 \end_inset
20381 </cell>
20382 </row>
20383 <row topline="true">
20384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20385 \begin_inset Text
20386
20387 \begin_layout Standard
20388 f
20389 \end_layout
20390
20391 \end_inset
20392 </cell>
20393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20394 \begin_inset Text
20395
20396 \begin_layout Standard
20397
20398 \end_layout
20399
20400 \end_inset
20401 </cell>
20402 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20403 \begin_inset Text
20404
20405 \begin_layout Standard
20406 g
20407 \end_layout
20408
20409 \end_inset
20410 </cell>
20411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20412 \begin_inset Text
20413
20414 \begin_layout Standard
20415
20416 \end_layout
20417
20418 \end_inset
20419 </cell>
20420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20421 \begin_inset Text
20422
20423 \begin_layout Standard
20424 h
20425 \end_layout
20426
20427 \end_inset
20428 </cell>
20429 </row>
20430 <row topline="true" bottomline="true">
20431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20432 \begin_inset Text
20433
20434 \begin_layout Standard
20435
20436 \end_layout
20437
20438 \end_inset
20439 </cell>
20440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20441 \begin_inset Text
20442
20443 \begin_layout Standard
20444 i
20445 \end_layout
20446
20447 \end_inset
20448 </cell>
20449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20450 \begin_inset Text
20451
20452 \begin_layout Standard
20453
20454 \end_layout
20455
20456 \end_inset
20457 </cell>
20458 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20459 \begin_inset Text
20460
20461 \begin_layout Standard
20462 j
20463 \end_layout
20464
20465 \end_inset
20466 </cell>
20467 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20468 \begin_inset Text
20469
20470 \begin_layout Standard
20471
20472 \end_layout
20473
20474 \end_inset
20475 </cell>
20476 </row>
20477 </lyxtabular>
20478
20479 \end_inset
20480
20481
20482 \end_layout
20483
20484 \end_inset
20485
20486
20487 \end_layout
20488
20489 \begin_layout Standard
20490 \begin_inset ERT
20491 status collapsed
20492
20493 \begin_layout Standard
20494
20495
20496 \backslash
20497 TabBesEnd
20498 \end_layout
20499
20500 \end_inset
20501
20502
20503 \end_layout
20504
20505 \begin_layout Standard
20506 \begin_inset ERT
20507 status collapsed
20508
20509 \begin_layout Standard
20510
20511
20512 \backslash
20513 sidecaptionvpos{figure}{c}
20514 \end_layout
20515
20516 \end_inset
20517
20518
20519 \begin_inset Float figure
20520 wide false
20521 sideways false
20522 status open
20523
20524 \begin_layout Standard
20525 \begin_inset Graphics
20526         filename clipart/escher-lsd.eps
20527         scale 75
20528
20529 \end_inset
20530
20531
20532 \end_layout
20533
20534 \begin_layout Standard
20535 \begin_inset Caption
20536
20537 \begin_layout Standard
20538 \begin_inset LatexCommand label
20539 name "fig:cap-beside-fig-2"
20540
20541 \end_inset
20542
20543 This is a vertically centered caption beside a figure.
20544 \end_layout
20545
20546 \end_inset
20547
20548
20549 \end_layout
20550
20551 \end_inset
20552
20553
20554 \end_layout
20555
20556 \begin_layout Standard
20557 \begin_inset ERT
20558 status collapsed
20559
20560 \begin_layout Standard
20561
20562
20563 \backslash
20564 FigBesEnd
20565 \end_layout
20566
20567 \end_inset
20568
20569
20570 \end_layout
20571
20572 \begin_layout Section
20573 Listings of Floats
20574 \begin_inset LatexCommand label
20575 name "sec:Listings-of-Floats"
20576
20577 \end_inset
20578
20579
20580 \begin_inset LatexCommand index
20581 name "Floats ! Listings"
20582
20583 \end_inset
20584
20585
20586 \end_layout
20587
20588 \begin_layout Standard
20589 Similar to the the table of contents where the sections of the document
20590  are listed, there are listings for all float types, like the figures of
20591  the documents.
20592  You can insert them via the 
20593 \family sans
20594 Insert\SpecialChar \menuseparator
20595 List\InsetSpace ~
20596 /\InsetSpace ~
20597 TOC
20598 \family default
20599  sub menus.
20600 \end_layout
20601
20602 \begin_layout Standard
20603 The list entries are the float captions or its short title, the float number,
20604  and the page number where they appear in the document.
20605 \end_layout
20606
20607 \begin_layout Standard
20608 You can find the list of figures and tables at the end of this document.
20609 \end_layout
20610
20611 \begin_layout Chapter
20612 Notes
20613 \end_layout
20614
20615 \begin_layout Section
20616 \begin_inset ERT
20617 status collapsed
20618
20619 \begin_layout Standard
20620
20621
20622 \backslash
20623 texorpdfstring{
20624 \end_layout
20625
20626 \end_inset
20627
20628 LyX
20629 \begin_inset ERT
20630 status collapsed
20631
20632 \begin_layout Standard
20633
20634 }{LyX}
20635 \end_layout
20636
20637 \end_inset
20638
20639  Notes
20640 \begin_inset LatexCommand label
20641 name "sec:LyX-Notes"
20642
20643 \end_inset
20644
20645
20646 \begin_inset LatexCommand index
20647 name "Notes ! LyX Notes"
20648
20649 \end_inset
20650
20651
20652 \begin_inset Note Note
20653 status collapsed
20654
20655 \begin_layout Standard
20656 The command 
20657 \backslash
20658 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
20659  are displayed wrongly in PDF-bookmarks.
20660  For more information about this, have a look at 
20661 \begin_inset LatexCommand cite
20662 key "hyperref"
20663
20664 \end_inset
20665
20666 .
20667 \end_layout
20668
20669 \end_inset
20670
20671
20672 \end_layout
20673
20674 \begin_layout Standard
20675 Notes are inserted with the toolbar button 
20676 \begin_inset Graphics
20677         filename ../images/note-insert.xpm
20678         scale 85
20679
20680 \end_inset
20681
20682  or the menu 
20683 \family sans
20684 Insert\SpecialChar \menuseparator
20685 Note
20686 \family default
20687 .
20688  There are three types of notes:
20689 \end_layout
20690
20691 \begin_layout Description
20692 LyX\InsetSpace ~
20693 Note This note type is for internal notes that won't appear in the output.
20694  Its note-box looks like this:
20695 \newline
20696
20697 \newline
20698
20699 \begin_inset Graphics
20700         filename clipart/LyXNoteImageQt4.png
20701         display none
20702         scale 85
20703
20704 \end_inset
20705
20706  
20707 \begin_inset Note Note
20708 status open
20709
20710 \begin_layout Standard
20711 This is text in a note box that doesn't appear in the output.
20712 \end_layout
20713
20714 \end_inset
20715
20716
20717 \end_layout
20718
20719 \begin_layout Description
20720 Comment This note also doesn't appear in the output but it appears as LaTeX-comm
20721 ent, when you export the document to LaTeX via the menu 
20722 \family sans
20723 File\SpecialChar \menuseparator
20724 Export\SpecialChar \menuseparator
20725 LaTeX (pdflatex) / LaTeX (plain)
20726 \family default
20727 .
20728  Its note-box looks like this:
20729 \newline
20730
20731 \newline
20732
20733 \begin_inset Graphics
20734         filename clipart/CommentNoteImageQt4.png
20735         display none
20736         scale 85
20737
20738 \end_inset
20739
20740  
20741 \begin_inset Note Comment
20742 status open
20743
20744 \begin_layout Standard
20745 This is text in a note box that only appears as comment in LaTeX-files.
20746 \end_layout
20747
20748 \end_inset
20749
20750
20751 \end_layout
20752
20753 \begin_layout Description
20754 Greyed\InsetSpace ~
20755 Out This note will appear in the output as grey text.
20756  Its note-box looks like this:
20757 \newline
20758
20759 \newline
20760
20761 \begin_inset Graphics
20762         filename clipart/GreyedOutNoteImageQt4.png
20763         display none
20764         scale 85
20765
20766 \end_inset
20767
20768
20769 \newline
20770
20771 \begin_inset ERT
20772 status collapsed
20773
20774 \begin_layout Standard
20775
20776
20777 \backslash
20778 renewenvironment{lyxgreyedout}
20779 \end_layout
20780
20781 \begin_layout Standard
20782
20783 {
20784 \backslash
20785 textcolor[gray]{0.8}
20786 \backslash
20787 bgroup}{
20788 \backslash
20789 egroup}
20790 \end_layout
20791
20792 \end_inset
20793
20794
20795 \begin_inset Note Greyedout
20796 status open
20797
20798 \begin_layout Standard
20799 This is text
20800 \begin_inset Foot
20801 status open
20802
20803 \begin_layout Standard
20804 This is an example footnote within a greyed out note.
20805 \end_layout
20806
20807 \end_inset
20808
20809  of a comment that appears in the output as grey text.
20810 \end_layout
20811
20812 \end_inset
20813
20814
20815 \begin_inset ERT
20816 status collapsed
20817
20818 \begin_layout Standard
20819
20820
20821 \backslash
20822 renewenvironment{lyxgreyedout}
20823 \end_layout
20824
20825 \begin_layout Standard
20826
20827 {
20828 \backslash
20829 textcolor{blue}
20830 \backslash
20831 bgroup}{
20832 \backslash
20833 egroup}
20834 \end_layout
20835
20836 \end_inset
20837
20838
20839 \begin_inset Note Note
20840 status collapsed
20841
20842 \begin_layout Standard
20843 The greyed out note is here redefined to show it with the original LyX definitio
20844 n because greyed out notes are redefined in the preamble of this document,
20845  as described below, to have blue text.
20846 \end_layout
20847
20848 \end_inset
20849
20850
20851 \newline
20852
20853 \newline
20854 As you can see in the example, the first line of greyed out notes is a bit
20855  indented and greyed out notes can have footnotes.
20856 \end_layout
20857
20858 \begin_layout Description
20859 Framed This note will appear in the output as framed text.
20860  Its note-box looks like this:
20861 \newline
20862
20863 \newline
20864
20865 \begin_inset Graphics
20866         filename clipart/FramedNoteImageQt4.png
20867         display none
20868         scale 85
20869
20870 \end_inset
20871
20872  
20873 \begin_inset Note Framed
20874 status open
20875
20876 \begin_layout Standard
20877 This is text in a note box that appears framed in the output.
20878 \end_layout
20879
20880 \end_inset
20881
20882  In contrary to framed boxes
20883 \begin_inset Foot
20884 status collapsed
20885
20886 \begin_layout Standard
20887 Framed boxes are described in section\InsetSpace ~
20888
20889 \begin_inset LatexCommand ref
20890 reference "sec:Framed-Boxes"
20891
20892 \end_inset
20893
20894 .
20895 \end_layout
20896
20897 \end_inset
20898
20899  the frame uses always the whole text width and the note is set into its
20900  own paragraph.
20901 \end_layout
20902
20903 \begin_layout Description
20904 Shaded This note will appear in the output with red background color.
20905  Its note box looks like this:
20906 \newline
20907
20908 \newline
20909
20910 \begin_inset Graphics
20911         filename clipart/ShadedNoteImageQt4.png
20912         display none
20913         scale 85
20914
20915 \end_inset
20916
20917
20918 \begin_inset Note Shaded
20919 status open
20920
20921 \begin_layout Standard
20922 This text in a note box appears in the output with red background.
20923 \end_layout
20924
20925 \end_inset
20926
20927 In contrary to colored boxes
20928 \begin_inset Foot
20929 status collapsed
20930
20931 \begin_layout Standard
20932 Colored boxes are described in section\InsetSpace ~
20933
20934 \begin_inset LatexCommand ref
20935 reference "sec:Colored-Boxes"
20936
20937 \end_inset
20938
20939 .
20940 \end_layout
20941
20942 \end_inset
20943
20944  the note uses always the whole text width and the note is set into its
20945  own paragraph.
20946 \end_layout
20947
20948 \begin_layout Standard
20949 \begin_inset VSpace bigskip
20950 \end_inset
20951
20952 When you use the toolbar button to insert notes, a 
20953 \family sans
20954 LyX\InsetSpace ~
20955 Note
20956 \family default
20957  is inserted.
20958  You can switch between the three note types by right-clicking on the note-box.
20959  
20960 \family roman
20961 \series medium
20962 \bar no
20963 If you want to turn existing text into a note, mark it and click on the
20964  note
20965 \family default
20966 \series default
20967 \bar default
20968  toolbar 
20969 \family roman
20970 \series medium
20971 \bar no
20972 button
20973 \family default
20974 \series default
20975 \bar default
20976 .
20977 \end_layout
20978
20979 \begin_layout Standard
20980 \begin_inset VSpace bigskip
20981 \end_inset
20982
20983 You can change the text color of the greyed out notes in the preamble with
20984  the following command:
20985 \end_layout
20986
20987 \begin_layout Standard
20988
20989 \series bold
20990
20991 \backslash
20992 renewenvironment{lyxgreyedout}
20993 \newline
20994
20995 \begin_inset ERT
20996 status collapsed
20997
20998 \begin_layout Standard
20999
21000
21001 \backslash
21002 hphantom{ }
21003 \end_layout
21004
21005 \end_inset
21006
21007 {
21008 \backslash
21009 textcolor{color}
21010 \backslash
21011 bgroup}{
21012 \backslash
21013 egroup}
21014 \end_layout
21015
21016 \begin_layout Standard
21017 The available colors and the method to define own colors is explained in
21018  section\InsetSpace ~
21019
21020 \begin_inset LatexCommand ref
21021 reference "sec:Colored-Tables"
21022
21023 \end_inset
21024
21025 .
21026 \end_layout
21027
21028 \begin_layout Standard
21029 Notes that appear in blue in this document are set using greyed out notes
21030  with blue text.
21031 \end_layout
21032
21033 \begin_layout Standard
21034 \begin_inset VSpace bigskip
21035 \end_inset
21036
21037
21038 \end_layout
21039
21040 \begin_layout Standard
21041 The text style of 
21042 \family sans
21043 Framed
21044 \family default
21045  and 
21046 \family sans
21047 Shaded
21048 \family default
21049  notes can be set in the 
21050 \family sans
21051 Text Style
21052 \family default
21053  dialog.
21054 \end_layout
21055
21056 \begin_layout Standard
21057 The default frame width for 
21058 \family sans
21059 Framed
21060 \family default
21061  notes is 0.4\InsetSpace \thinspace{}
21062 pt; it can be changed by changing the size 
21063 \series bold
21064
21065 \backslash
21066 FrameRule
21067 \series default
21068 .
21069  The default space between the note content and the frame is 9\InsetSpace \thinspace{}
21070 pt; it can
21071  be changed by changing the size 
21072 \series bold
21073
21074 \backslash
21075 FrameSep
21076 \series default
21077 .
21078  For example the frame appearance of the following 
21079 \family sans
21080 Framed
21081 \family default
21082  note is set with the ERT commands
21083 \end_layout
21084
21085 \begin_layout Standard
21086
21087 \series bold
21088
21089 \backslash
21090 FrameRule 5pt 
21091 \backslash
21092 FrameSep 0.5cm
21093 \end_layout
21094
21095 \begin_layout Standard
21096 \begin_inset ERT
21097 status collapsed
21098
21099 \begin_layout Standard
21100
21101
21102 \backslash
21103 FrameRule 5pt 
21104 \backslash
21105 FrameSep 0.5cm
21106 \end_layout
21107
21108 \end_inset
21109
21110
21111 \begin_inset Note Framed
21112 status open
21113
21114 \begin_layout Standard
21115 This is text in a 
21116 \family sans
21117 Framed
21118 \family default
21119  note.
21120 \end_layout
21121
21122 \end_inset
21123
21124
21125 \begin_inset ERT
21126 status collapsed
21127
21128 \begin_layout Standard
21129
21130
21131 \backslash
21132 FrameRule 0.4pt 
21133 \backslash
21134 FrameSep 9pt
21135 \end_layout
21136
21137 \end_inset
21138
21139
21140 \end_layout
21141
21142 \begin_layout Standard
21143 \begin_inset VSpace bigskip
21144 \end_inset
21145
21146
21147 \end_layout
21148
21149 \begin_layout Standard
21150 For 
21151 \family sans
21152 Shaded
21153 \family default
21154  notes the default space between the note content and the note border is
21155  3\InsetSpace \thinspace{}
21156 pt; it can be changed by changing the size 
21157 \series bold
21158
21159 \backslash
21160 fboxsep
21161 \series default
21162 .
21163 \newline
21164 The default background color red can be changed with the command 
21165 \series bold
21166
21167 \backslash
21168 def\SpecialChar \textcompwordmark{}
21169 inecolor{shadebox}
21170 \series default
21171 .
21172  The scheme of the 
21173 \series bold
21174
21175 \backslash
21176 def\SpecialChar \textcompwordmark{}
21177 inecolor
21178 \series default
21179  command is explained in section\InsetSpace ~
21180
21181 \begin_inset LatexCommand ref
21182 reference "sec:Colored-Tables"
21183
21184 \end_inset
21185
21186
21187 \begin_inset Foot
21188 status collapsed
21189
21190 \begin_layout Standard
21191 Note that 
21192 \series bold
21193
21194 \backslash
21195 def
21196 \series default
21197 \SpecialChar \textcompwordmark{}
21198
21199 \series bold
21200 inecolor
21201 \series default
21202  requires the LaTeX-package 
21203 \series bold
21204 color
21205 \series default
21206  in the preamble, see section\InsetSpace ~
21207
21208 \begin_inset LatexCommand ref
21209 reference "sec:Colored-Boxes"
21210
21211 \end_inset
21212
21213 .
21214 \end_layout
21215
21216 \end_inset
21217
21218 .
21219 \end_layout
21220
21221 \begin_layout Standard
21222 For example the appearance of the following 
21223 \family sans
21224 Shaded
21225 \family default
21226  note is set with the ERT commands
21227 \end_layout
21228
21229 \begin_layout Standard
21230
21231 \series bold
21232
21233 \backslash
21234 fboxsep 0.5cm
21235 \series default
21236
21237 \newline
21238
21239 \series bold
21240
21241 \backslash
21242 def\SpecialChar \textcompwordmark{}
21243 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21244 \end_layout
21245
21246 \begin_layout Standard
21247 \begin_inset ERT
21248 status collapsed
21249
21250 \begin_layout Standard
21251
21252
21253 \backslash
21254 fboxsep 0.5cm
21255 \end_layout
21256
21257 \end_inset
21258
21259
21260 \begin_inset ERT
21261 status collapsed
21262
21263 \begin_layout Standard
21264
21265
21266 \backslash
21267 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21268 \end_layout
21269
21270 \end_inset
21271
21272
21273 \begin_inset Note Shaded
21274 status open
21275
21276 \begin_layout Standard
21277
21278 \color yellow
21279 This is yellow text in a
21280 \color none
21281  
21282 \family sans
21283 \color yellow
21284 Shaded
21285 \family default
21286 \color none
21287  
21288 \color yellow
21289 note with darkgreen background.
21290 \end_layout
21291
21292 \end_inset
21293
21294
21295 \begin_inset ERT
21296 status collapsed
21297
21298 \begin_layout Standard
21299
21300
21301 \backslash
21302 fboxsep 3pt
21303 \end_layout
21304
21305 \end_inset
21306
21307
21308 \begin_inset ERT
21309 status collapsed
21310
21311 \begin_layout Standard
21312
21313
21314 \backslash
21315 definecolor{shadecolor}{rgb}{1,0,0}
21316 \end_layout
21317
21318 \end_inset
21319
21320
21321 \end_layout
21322
21323 \begin_layout Section
21324 Footnotes
21325 \begin_inset LatexCommand label
21326 name "sec:Footnotes"
21327
21328 \end_inset
21329
21330
21331 \begin_inset LatexCommand index
21332 name "Notes ! Footnotes"
21333
21334 \end_inset
21335
21336
21337 \begin_inset LatexCommand index
21338 name "Footnotes"
21339
21340 \end_inset
21341
21342
21343 \end_layout
21344
21345 \begin_layout Standard
21346 Footnotes can be inserted using the toolbar button 
21347 \begin_inset Graphics
21348         filename ../images/footnote-insert.xpm
21349         scale 85
21350
21351 \end_inset
21352
21353  or the menu 
21354 \family sans
21355 Insert\SpecialChar \menuseparator
21356 Footnote
21357 \family default
21358 .
21359  
21360 \family roman
21361 \series medium
21362 \bar no
21363 You'll see
21364 \family default
21365 \series default
21366 \bar default
21367  then the following footnote-box: 
21368 \begin_inset Graphics
21369         filename clipart/footnoteQt4.png
21370         scale 80
21371
21372 \end_inset
21373
21374  
21375 \family roman
21376 \series medium
21377 \bar no
21378 where you can enter the footnote text.
21379  If you want to turn existing text into a footnote, mark it and click on
21380  the footnote
21381 \family default
21382 \series default
21383 \bar default
21384  toolbar 
21385 \family roman
21386 \series medium
21387 \bar no
21388 button
21389 \family default
21390 \series default
21391 \bar default
21392 .
21393 \end_layout
21394
21395 \begin_layout Standard
21396 Here is an example footnote:
21397 \family roman
21398 \series medium
21399 \bar no
21400
21401 \begin_inset Foot
21402 status open
21403
21404 \begin_layout Standard
21405 \begin_inset LatexCommand label
21406 name "foot:This-is-an"
21407
21408 \end_inset
21409
21410 This is an example footnote.
21411 \end_layout
21412
21413 \end_inset
21414
21415
21416 \family default
21417 \series default
21418 \bar default
21419
21420 \begin_inset ERT
21421 status collapsed
21422
21423 \begin_layout Standard
21424
21425
21426 \backslash
21427 newcounter{MyRepeatFoot}
21428 \end_layout
21429
21430 \begin_layout Standard
21431
21432
21433 \backslash
21434 setcounter{MyRepeatFoot}{
21435 \backslash
21436 thefootnote}
21437 \end_layout
21438
21439 \end_inset
21440
21441
21442 \end_layout
21443
21444 \begin_layout Standard
21445 The footnote will appear in the output as a superscript number at the text
21446  position where the footnote box is placed.
21447  The footnote text is placed at the bottom of the current page.
21448  The footnote number is calculated by LaTeX, the numbers are consecutive.
21449  It depends on your document-class, if the footnote number is reset for
21450  every chapter.
21451 \end_layout
21452
21453 \begin_layout Standard
21454 Footnotes can be referenced like floats: Insert a label into the footnote
21455  and cross-reference this label in the text as described in section\InsetSpace ~
21456
21457 \begin_inset LatexCommand ref
21458 reference "sec:Referencing-Floats"
21459
21460 \end_inset
21461
21462 .
21463 \newline
21464 This is a cross-reference of Footnote\InsetSpace ~
21465
21466 \begin_inset LatexCommand ref
21467 reference "foot:This-is-an"
21468
21469 \end_inset
21470
21471 .
21472 \newline
21473
21474 \begin_inset Note Greyedout
21475 status open
21476
21477 \begin_layout Standard
21478
21479 \series bold
21480 Note:
21481 \series default
21482  LyX doesn't provide a prefix for labels in footnotes, so you have to insert
21483  e.\InsetSpace \thinspace{}
21484 g.\InsetSpace ~
21485 the prefix 
21486 \family sans
21487
21488 \begin_inset Quotes eld
21489 \end_inset
21490
21491 foot:
21492 \family default
21493
21494 \begin_inset Quotes erd
21495 \end_inset
21496
21497  manually when you want to use the reference style 
21498 \family sans
21499 Formatted\InsetSpace ~
21500 reference
21501 \family default
21502 .
21503 \end_layout
21504
21505 \end_inset
21506
21507
21508 \end_layout
21509
21510 \begin_layout Standard
21511 \begin_inset VSpace defskip
21512 \end_inset
21513
21514 To use footnotes within tables, you have to use minipages, see section\InsetSpace ~
21515
21516 \begin_inset LatexCommand ref
21517 reference "sec:Minipages"
21518
21519 \end_inset
21520
21521 .
21522  Footnotes within longtables are described in section\InsetSpace ~
21523
21524 \begin_inset LatexCommand ref
21525 reference "sub:Footnotes-in-Longtables"
21526
21527 \end_inset
21528
21529 .
21530 \end_layout
21531
21532 \begin_layout Standard
21533 \begin_inset VSpace defskip
21534 \end_inset
21535
21536 To create only a mark for a footnote, use the command 
21537 \series bold
21538
21539 \backslash
21540 footnotemark[number]
21541 \series default
21542  in ERT.
21543  This is used when you have the same annotation several times in a text
21544  but doesn't want to print the footnote text every time.
21545 \newline
21546 As you don't know
21547  the number of the repeating footnote while you are writing the text, you
21548  have to store its number.
21549  For the following footnote mark example, these commands were inserted in
21550  ERT behind Footnote\InsetSpace ~
21551
21552 \begin_inset LatexCommand ref
21553 reference "foot:This-is-an"
21554
21555 \end_inset
21556
21557  to store the footnote number:
21558 \end_layout
21559
21560 \begin_layout Standard
21561
21562 \series bold
21563
21564 \backslash
21565 newcounter{MyRepeatFoot}
21566 \newline
21567
21568 \backslash
21569 setcounter{MyRepeatFoot}{
21570 \backslash
21571 thefootnote}
21572 \end_layout
21573
21574 \begin_layout Standard
21575 The footnote mark was then created with this command:
21576 \end_layout
21577
21578 \begin_layout Standard
21579
21580 \series bold
21581
21582 \backslash
21583 footnotemark[
21584 \backslash
21585 theMyRepeatFoot]
21586 \end_layout
21587
21588 \begin_layout Standard
21589 Here is an example footnote mark:
21590 \family roman
21591 \series medium
21592 \bar no
21593
21594 \begin_inset ERT
21595 status collapsed
21596
21597 \begin_layout Standard
21598
21599
21600 \backslash
21601 footnotemark[
21602 \backslash
21603 theMyRepeatFoot]
21604 \end_layout
21605
21606 \end_inset
21607
21608
21609 \end_layout
21610
21611 \begin_layout Subsection
21612 Footnote Numbering
21613 \begin_inset LatexCommand label
21614 name "sub:Footnote-Numbering"
21615
21616 \end_inset
21617
21618
21619 \begin_inset LatexCommand index
21620 name "Footnotes ! Numbering"
21621
21622 \end_inset
21623
21624
21625 \end_layout
21626
21627 \begin_layout Standard
21628 If you want to have footnotes numbered in the scheme 
21629 \begin_inset Quotes eld
21630 \end_inset
21631
21632 chapter.footnote
21633 \begin_inset Quotes erd
21634 \end_inset
21635
21636 , add the following command to your document preamble:
21637 \end_layout
21638
21639 \begin_layout Standard
21640
21641 \series bold
21642
21643 \backslash
21644 numberwithin{footnote}{chapter}
21645 \end_layout
21646
21647 \begin_layout Standard
21648 To be able to use the command 
21649 \series bold
21650
21651 \backslash
21652 numberwithin
21653 \series default
21654 , set in the tab 
21655 \family sans
21656 Math\InsetSpace ~
21657 Options
21658 \family default
21659  in the document settings the option 
21660 \family sans
21661 Use\InsetSpace ~
21662 AMS\InsetSpace ~
21663 math\InsetSpace ~
21664 package
21665 \family default
21666 .
21667 \end_layout
21668
21669 \begin_layout Standard
21670 \begin_inset ERT
21671 status collapsed
21672
21673 \begin_layout Standard
21674
21675
21676 \backslash
21677 numberwithin{footnote}{chapter}
21678 \end_layout
21679
21680 \end_inset
21681
21682 This is another example footnote:
21683 \series bold
21684
21685 \begin_inset Foot
21686 status open
21687
21688 \begin_layout Standard
21689 This is a footnote numbered in the scheme 
21690 \begin_inset Quotes eld
21691 \end_inset
21692
21693 chapter.footnote
21694 \begin_inset Quotes erd
21695 \end_inset
21696
21697 .
21698 \end_layout
21699
21700 \end_inset
21701
21702
21703 \series default
21704
21705 \begin_inset ERT
21706 status collapsed
21707
21708 \begin_layout Standard
21709
21710
21711 \backslash
21712 numberwithin{footnote}{part}
21713 \end_layout
21714
21715 \end_inset
21716
21717
21718 \end_layout
21719
21720 \begin_layout Standard
21721 \begin_inset VSpace bigskip
21722 \end_inset
21723
21724
21725 \end_layout
21726
21727 \begin_layout Standard
21728 To reset the footnote number back to 1 after each section
21729 \family roman
21730 , add this command to your document preamble:
21731 \end_layout
21732
21733 \begin_layout Standard
21734
21735 \series bold
21736
21737 \backslash
21738 @addtoreset{footnote}{section}
21739 \end_layout
21740
21741 \begin_layout Standard
21742 \begin_inset VSpace bigskip
21743 \end_inset
21744
21745 The following preamble command changes the footnote numbering style to small
21746  roman numerals:
21747 \end_layout
21748
21749 \begin_layout Standard
21750
21751 \series bold
21752
21753 \backslash
21754 renewcommand{
21755 \backslash
21756 thefootnote}{
21757 \backslash
21758 roman{footnote}}
21759 \end_layout
21760
21761 \begin_layout Standard
21762 \begin_inset ERT
21763 status collapsed
21764
21765 \begin_layout Standard
21766
21767
21768 \backslash
21769 renewcommand{
21770 \backslash
21771 thefootnote}{
21772 \backslash
21773 roman{footnote}}
21774 \end_layout
21775
21776 \end_inset
21777
21778  This is a footnote with roman numbering:
21779 \begin_inset Foot
21780 status open
21781
21782 \begin_layout Standard
21783 This is an example footnote with roman numbering.
21784 \end_layout
21785
21786 \end_inset
21787
21788
21789 \begin_inset ERT
21790 status collapsed
21791
21792 \begin_layout Standard
21793
21794
21795 \backslash
21796 renewcommand{
21797 \backslash
21798 thefootnote}{
21799 \backslash
21800 arabic{footnote}}
21801 \end_layout
21802
21803 \end_inset
21804
21805
21806 \end_layout
21807
21808 \begin_layout Standard
21809 To change the numbering style to capital roman numerals replace in the command
21810  above 
21811 \series bold
21812
21813 \backslash
21814 roman
21815 \series default
21816  by 
21817 \series bold
21818
21819 \backslash
21820 Roman
21821 \series default
21822 .
21823  To 
21824 \begin_inset Quotes eld
21825 \end_inset
21826
21827 number
21828 \begin_inset Quotes erd
21829 \end_inset
21830
21831  footnotes with capital or small Latin letters use 
21832 \series bold
21833
21834 \backslash
21835 Alph
21836 \series default
21837  or 
21838 \series bold
21839
21840 \backslash
21841 alph
21842 \series default
21843 , respectively.
21844  To 
21845 \begin_inset Quotes eld
21846 \end_inset
21847
21848 number
21849 \begin_inset Quotes erd
21850 \end_inset
21851
21852  footnotes with symbols use 
21853 \series bold
21854
21855 \backslash
21856 fnsymbol
21857 \series default
21858 .
21859 \end_layout
21860
21861 \begin_layout Standard
21862 \begin_inset Note Greyedout
21863 status open
21864
21865 \begin_layout Standard
21866
21867 \series bold
21868 Note:
21869 \series default
21870  You can only number 26 footnotes with Latin letters, because this numbering
21871  is limited to single letters.
21872 \end_layout
21873
21874 \end_inset
21875
21876
21877 \newline
21878
21879 \begin_inset Note Greyedout
21880 status open
21881
21882 \begin_layout Standard
21883
21884 \series bold
21885 Note:
21886 \series default
21887  You can only number 9 footnotes with symbols.
21888 \end_layout
21889
21890 \end_inset
21891
21892
21893 \end_layout
21894
21895 \begin_layout Standard
21896 To return to the default numbering style when you changed to another one,
21897  use 
21898 \series bold
21899
21900 \backslash
21901 arabic
21902 \series default
21903  instead of 
21904 \series bold
21905
21906 \backslash
21907 roman
21908 \series default
21909  in the command above.
21910 \end_layout
21911
21912 \begin_layout Subsection
21913 Footnote Placement
21914 \begin_inset LatexCommand index
21915 name "Footnotes ! Placement"
21916
21917 \end_inset
21918
21919
21920 \end_layout
21921
21922 \begin_layout Standard
21923 If you have several footnotes in one page, they appear without vertical
21924  space between them at the bottom of the page.
21925  To make them better readable you can e.\InsetSpace \thinspace{}
21926 g.\InsetSpace ~
21927 add 1.5\InsetSpace \thinspace{}
21928 mm space with the following
21929  preamble command:
21930 \end_layout
21931
21932 \begin_layout Standard
21933
21934 \series bold
21935
21936 \backslash
21937 let
21938 \backslash
21939 myFoot
21940 \backslash
21941 footnote
21942 \newline
21943
21944 \backslash
21945 renewcommand{
21946 \backslash
21947 footnote}[1]{
21948 \backslash
21949 myFoot{#1
21950 \backslash
21951 vspace{1.5mm}}}
21952 \end_layout
21953
21954 \begin_layout Standard
21955 \begin_inset VSpace bigskip
21956 \end_inset
21957
21958 In a two-column document the footnotes appear at the bottom of every column,
21959  see Figure\InsetSpace ~
21960
21961 \begin_inset LatexCommand ref
21962 reference "fig:Standard-footnote-placement"
21963
21964 \end_inset
21965
21966 .
21967  If the footnotes should only appear at the bottom of the right column,
21968  as in Figure\InsetSpace ~
21969
21970 \begin_inset LatexCommand ref
21971 reference "fig:Footnote-placement-in"
21972
21973 \end_inset
21974
21975 , use the LaTeX-package 
21976 \series bold
21977 ftnright
21978 \series default
21979
21980 \begin_inset LatexCommand index
21981 name "LaTeX-packages ! ftnright"
21982
21983 \end_inset
21984
21985  with this command in the document preamble:
21986 \end_layout
21987
21988 \begin_layout Standard
21989
21990 \series bold
21991
21992 \backslash
21993 usepackage{ftnright}
21994 \end_layout
21995
21996 \begin_layout Standard
21997 \begin_inset Float figure
21998 placement !h
21999 wide false
22000 sideways false
22001 status open
22002
22003 \begin_layout Standard
22004 \begin_inset ERT
22005 status collapsed
22006
22007 \begin_layout Standard
22008
22009
22010 \backslash
22011 framebox{
22012 \end_layout
22013
22014 \end_inset
22015
22016
22017 \begin_inset Graphics
22018         filename clipart/without_fntright.pdf
22019         width 100col%
22020
22021 \end_inset
22022
22023
22024 \begin_inset ERT
22025 status collapsed
22026
22027 \begin_layout Standard
22028
22029 }
22030 \end_layout
22031
22032 \end_inset
22033
22034
22035 \end_layout
22036
22037 \begin_layout Standard
22038 \begin_inset Caption
22039
22040 \begin_layout Standard
22041 \begin_inset LatexCommand label
22042 name "fig:Standard-footnote-placement"
22043
22044 \end_inset
22045
22046 Standard footnote placement in two-column documents.
22047 \end_layout
22048
22049 \end_inset
22050
22051
22052 \end_layout
22053
22054 \end_inset
22055
22056
22057 \end_layout
22058
22059 \begin_layout Standard
22060 \begin_inset Float figure
22061 placement !h
22062 wide false
22063 sideways false
22064 status open
22065
22066 \begin_layout Standard
22067 \begin_inset ERT
22068 status collapsed
22069
22070 \begin_layout Standard
22071
22072
22073 \backslash
22074 framebox{
22075 \end_layout
22076
22077 \end_inset
22078
22079
22080 \begin_inset Graphics
22081         filename clipart/with_fntright.pdf
22082         width 100col%
22083
22084 \end_inset
22085
22086
22087 \begin_inset ERT
22088 status collapsed
22089
22090 \begin_layout Standard
22091
22092 }
22093 \end_layout
22094
22095 \end_inset
22096
22097
22098 \end_layout
22099
22100 \begin_layout Standard
22101 \begin_inset Caption
22102
22103 \begin_layout Standard
22104 \begin_inset LatexCommand label
22105 name "fig:Footnote-placement-in"
22106
22107 \end_inset
22108
22109 Footnote placement in two-column documents when the LaTeX-package 
22110 \series bold
22111 ftnright
22112 \series default
22113  is used.
22114 \end_layout
22115
22116 \end_inset
22117
22118
22119 \end_layout
22120
22121 \end_inset
22122
22123
22124 \end_layout
22125
22126 \begin_layout Standard
22127 \begin_inset VSpace bigskip
22128 \end_inset
22129
22130 In some scientific literature it is usual to collect the footnotes and print
22131  them in a separate paragraph at the the end of a section, like in Figure\InsetSpace ~
22132
22133 \begin_inset LatexCommand ref
22134 reference "fig:Endnotes----footnotes"
22135
22136 \end_inset
22137
22138 .
22139  They are then so called 
22140 \begin_inset Quotes eld
22141 \end_inset
22142
22143 endnotes
22144 \begin_inset Quotes erd
22145 \end_inset
22146
22147 .
22148  To use endnotes instead of footnotes in your document, load the LaTeX-package
22149  
22150 \series bold
22151 endnotes
22152 \series default
22153
22154 \begin_inset LatexCommand index
22155 name "LaTeX-packages ! endnotes"
22156
22157 \end_inset
22158
22159  with the document preamble lines
22160 \end_layout
22161
22162 \begin_layout Standard
22163
22164 \series bold
22165
22166 \backslash
22167 usepackage{endnotes}
22168 \newline
22169
22170 \backslash
22171 let
22172 \backslash
22173 footnote
22174 \backslash
22175 endnote
22176 \end_layout
22177
22178 \begin_layout Standard
22179 To insert the collected footnotes, insert the command
22180 \end_layout
22181
22182 \begin_layout Standard
22183
22184 \series bold
22185
22186 \backslash
22187 theendnotes
22188 \end_layout
22189
22190 \begin_layout Standard
22191 in ERT at the the end of a section or chapter.
22192 \end_layout
22193
22194 \begin_layout Standard
22195 \begin_inset Float figure
22196 wide false
22197 sideways false
22198 status open
22199
22200 \begin_layout Standard
22201 \align center
22202 \begin_inset ERT
22203 status collapsed
22204
22205 \begin_layout Standard
22206
22207
22208 \backslash
22209 framebox{
22210 \end_layout
22211
22212 \end_inset
22213
22214
22215 \begin_inset Graphics
22216         filename clipart/endnotes.pdf
22217
22218 \end_inset
22219
22220
22221 \begin_inset ERT
22222 status collapsed
22223
22224 \begin_layout Standard
22225
22226 }
22227 \end_layout
22228
22229 \end_inset
22230
22231
22232 \end_layout
22233
22234 \begin_layout Standard
22235 \begin_inset Caption
22236
22237 \begin_layout Standard
22238 \begin_inset LatexCommand label
22239 name "fig:Endnotes----footnotes"
22240
22241 \end_inset
22242
22243 Endnotes -- footnotes are printed in a separate paragraph at the end of
22244  sections or chapters.
22245 \end_layout
22246
22247 \end_inset
22248
22249
22250 \end_layout
22251
22252 \end_inset
22253
22254
22255 \end_layout
22256
22257 \begin_layout Standard
22258 \begin_inset VSpace defskip
22259 \end_inset
22260
22261 The paragraph heading for the endnotes isn't automatically translated into
22262  the document language, this must be done manually.
22263  The following preamble command translate the default English name 
22264 \begin_inset Quotes eld
22265 \end_inset
22266
22267 Notes
22268 \begin_inset Quotes erd
22269 \end_inset
22270
22271  to the German translation 
22272 \begin_inset Quotes eld
22273 \end_inset
22274
22275 Anmerkungen
22276 \begin_inset Quotes erd
22277 \end_inset
22278
22279 :
22280 \end_layout
22281
22282 \begin_layout Standard
22283
22284 \series bold
22285
22286 \backslash
22287 renewcommand{
22288 \backslash
22289 notesname}{Anmerkungen}
22290 \end_layout
22291
22292 \begin_layout Standard
22293 \begin_inset VSpace defskip
22294 \end_inset
22295
22296 The numbering of endnotes can be changed like the footnote numbering as
22297  described in section\InsetSpace ~
22298
22299 \begin_inset LatexCommand ref
22300 reference "sub:Footnote-Numbering"
22301
22302 \end_inset
22303
22304 ; just replace the command 
22305 \series bold
22306
22307 \backslash
22308 thefootnote
22309 \series default
22310  by 
22311 \series bold
22312
22313 \backslash
22314 theendnote
22315 \series default
22316 .
22317  To reset the endnote number use the command 
22318 \series bold
22319
22320 \backslash
22321 @addtoreset
22322 \series default
22323  as described in section\InsetSpace ~
22324
22325 \begin_inset LatexCommand ref
22326 reference "sub:Footnote-Numbering"
22327
22328 \end_inset
22329
22330  and replace the command parameter 
22331 \series bold
22332 footnote
22333 \series default
22334  by 
22335 \series bold
22336 endnote
22337 \series default
22338 .
22339 \end_layout
22340
22341 \begin_layout Standard
22342 To create only a mark for an endnote, use the command 
22343 \series bold
22344
22345 \backslash
22346 endnotemark[number]
22347 \series default
22348  similar to the command 
22349 \series bold
22350
22351 \backslash
22352 footnotemark
22353 \series default
22354 , described in section\InsetSpace ~
22355
22356 \begin_inset LatexCommand ref
22357 reference "sec:Footnotes"
22358
22359 \end_inset
22360
22361 .
22362 \end_layout
22363
22364 \begin_layout Standard
22365 \begin_inset VSpace bigskip
22366 \end_inset
22367
22368 Footnotes can also be placed in the page margin and the footnote text alignment
22369  can be changed, see the LaTeX-package 
22370 \series bold
22371 footmisc
22372 \series default
22373
22374 \begin_inset LatexCommand index
22375 name "LaTeX-packages ! footmisc"
22376
22377 \end_inset
22378
22379
22380 \begin_inset LatexCommand cite
22381 key "footmisc"
22382
22383 \end_inset
22384
22385  for more information about this.
22386 \end_layout
22387
22388 \begin_layout Standard
22389 For various further footnote formatting issues have a look at LaTeX-books,
22390  
22391 \begin_inset LatexCommand cite
22392 key "latexcompanion,latexguide,latexbook"
22393
22394 \end_inset
22395
22396 .
22397 \end_layout
22398
22399 \begin_layout Section
22400 Margin Notes
22401 \begin_inset LatexCommand index
22402 name "Notes ! Margin Notes"
22403
22404 \end_inset
22405
22406
22407 \end_layout
22408
22409 \begin_layout Standard
22410 Margin notes look and behave in LyX like footnotes.
22411  They are inserted via the menu 
22412 \family sans
22413 Insert\SpecialChar \menuseparator
22414 Marginal\InsetSpace ~
22415 Note
22416 \family default
22417  or the toolbar button 
22418 \begin_inset Graphics
22419         filename ../images/marginalnote-insert.xpm
22420         scale 85
22421
22422 \end_inset
22423
22424 .
22425  A grey 
22426 \family roman
22427 \series medium
22428 box with the
22429 \family default
22430 \series default
22431  red 
22432 \family roman
22433 \series medium
22434 label 
22435 \begin_inset Quotes eld
22436 \end_inset
22437
22438 margin
22439 \begin_inset Quotes erd
22440 \end_inset
22441
22442  appears where you can enter the text of the margin note.
22443 \end_layout
22444
22445 \begin_layout Standard
22446 At the side is an example margin note.
22447 \family roman
22448 \series medium
22449
22450 \begin_inset Marginal
22451 status open
22452
22453 \begin_layout Standard
22454 This is a margin note.
22455 \end_layout
22456
22457 \end_inset
22458
22459
22460 \end_layout
22461
22462 \begin_layout Standard
22463 Margin notes appear at the right side in single-sided documents.
22464  In double-sided documents they appear in the outer margin -- left on even
22465  pages, right on odd pages.
22466  The text of margin notes is aligned opposite to the outer margin -- right-align
22467 ed when the note appears in the left margin.
22468  The first line of the margin note is placed at the position of the text
22469  line where it is inserted in the document.
22470 \end_layout
22471
22472 \begin_layout Standard
22473 \begin_inset VSpace bigskip
22474 \end_inset
22475
22476 To place the margin note in the inner margin, add the command
22477 \end_layout
22478
22479 \begin_layout Standard
22480
22481 \series bold
22482
22483 \backslash
22484 reversemarginpar
22485 \end_layout
22486
22487 \begin_layout Standard
22488 in ERT before a margin note.
22489  The new placement is valid for all following margin notes.
22490 \begin_inset ERT
22491 status collapsed
22492
22493 \begin_layout Standard
22494
22495
22496 \backslash
22497 reversemarginpar 
22498 \end_layout
22499
22500 \end_inset
22501
22502
22503 \begin_inset Marginal
22504 status open
22505
22506 \begin_layout Standard
22507 This is a margin note in the inner margin.
22508 \end_layout
22509
22510 \end_inset
22511
22512
22513 \series bold
22514
22515 \newline
22516
22517 \series default
22518
22519 \begin_inset Note Greyedout
22520 status open
22521
22522 \begin_layout Standard
22523
22524 \series bold
22525 Note:
22526 \series default
22527  There is often not enough space in the inner margin so that the notes are
22528  not correctly displayed in the output.
22529 \end_layout
22530
22531 \end_inset
22532
22533
22534 \end_layout
22535
22536 \begin_layout Standard
22537 \begin_inset ERT
22538 status collapsed
22539
22540 \begin_layout Standard
22541
22542
22543 \backslash
22544 normalmarginpar 
22545 \end_layout
22546
22547 \end_inset
22548
22549 To return to the default placement insert the command
22550 \end_layout
22551
22552 \begin_layout Standard
22553
22554 \series bold
22555
22556 \backslash
22557 normalmarginpar
22558 \end_layout
22559
22560 \begin_layout Standard
22561 in ERT.
22562  
22563 \begin_inset Note Greyedout
22564 status open
22565
22566 \begin_layout Standard
22567
22568 \series bold
22569 Note:
22570 \series default
22571  The command is ignored when it is within a paragraph where also the command
22572  
22573 \series bold
22574
22575 \backslash
22576 reversemarginpar
22577 \series default
22578  is inserted.
22579 \end_layout
22580
22581 \end_inset
22582
22583
22584 \end_layout
22585
22586 \begin_layout Standard
22587 \begin_inset VSpace bigskip
22588 \end_inset
22589
22590
22591 \family roman
22592 \series medium
22593
22594 \begin_inset Marginal
22595 status open
22596
22597 \begin_layout Standard
22598 AVeryLongMarginParWord that isn't hyphenated.
22599 \end_layout
22600
22601 \end_inset
22602
22603
22604 \family default
22605 \series default
22606 Similar to the case described in section\InsetSpace ~
22607
22608 \begin_inset LatexCommand ref
22609 reference "sub:Multiple-Lines-in"
22610
22611 \end_inset
22612
22613 , long words cannot be hyphenated when they are the first word in a margin
22614  note.
22615  To avoid this, insert the command
22616 \end_layout
22617
22618 \begin_layout Standard
22619
22620 \series bold
22621
22622 \backslash
22623 hspace{0pt}
22624 \end_layout
22625
22626 \begin_layout Standard
22627 in ERT before the word
22628 \family roman
22629 \series medium
22630 .
22631 \begin_inset Marginal
22632 status open
22633
22634 \begin_layout Standard
22635 \begin_inset ERT
22636 status collapsed
22637
22638 \begin_layout Standard
22639
22640
22641 \backslash
22642 hspace{0pt}
22643 \end_layout
22644
22645 \end_inset
22646
22647 AVeryLongMarginParWord that is hyphenated.
22648 \end_layout
22649
22650 \end_inset
22651
22652
22653 \end_layout
22654
22655 \begin_layout Standard
22656 \begin_inset VSpace bigskip
22657 \end_inset
22658
22659
22660 \end_layout
22661
22662 \begin_layout Standard
22663 \begin_inset Note Greyedout
22664 status open
22665
22666 \begin_layout Standard
22667
22668 \series bold
22669 Note:
22670 \series default
22671  Margin notes can normally not be used inside tables, floats, and footnotes.
22672 \end_layout
22673
22674 \end_inset
22675
22676
22677 \end_layout
22678
22679 \begin_layout Standard
22680 \begin_inset VSpace bigskip
22681 \end_inset
22682
22683
22684 \end_layout
22685
22686 \begin_layout Standard
22687 \begin_inset ERT
22688 status collapsed
22689
22690 \begin_layout Standard
22691
22692
22693 \backslash
22694 ifmarginnote
22695 \end_layout
22696
22697 \end_inset
22698
22699
22700 \begin_inset Note Note
22701 status open
22702
22703 \begin_layout Standard
22704 The following section will only be displayed when you have the LaTeX-package
22705  
22706 \series bold
22707 marginnote
22708 \series default
22709  is installed.
22710 \end_layout
22711
22712 \end_inset
22713
22714
22715 \end_layout
22716
22717 \begin_layout Standard
22718 This restriction can be evaded by using the LaTeX-package 
22719 \series bold
22720 marginnote
22721 \series default
22722
22723 \begin_inset LatexCommand index
22724 name "LaTeX-packages ! marginnote"
22725
22726 \end_inset
22727
22728 .
22729  By adding these two lines to your document preamble, the command used by
22730  LyX for margin notes is redefined to use the command provided by the 
22731 \series bold
22732 marginnote
22733 \series default
22734 -package:
22735 \end_layout
22736
22737 \begin_layout Standard
22738
22739 \series bold
22740
22741 \backslash
22742 usepackage{marginnote}
22743 \newline
22744
22745 \backslash
22746 let
22747 \backslash
22748 marginpar
22749 \backslash
22750 marginnote
22751 \end_layout
22752
22753 \begin_layout Standard
22754 This is also used in this document because 
22755 \series bold
22756 marginnote
22757 \series default
22758  has another useful feature: You can set a vertical offset for the note.
22759  This is often needed when too many margin notes are too close together
22760  or for a better page layout.
22761  The offset is set in LyX as ERT directly behind the margin note in the
22762  scheme
22763 \end_layout
22764
22765 \begin_layout Standard
22766
22767 \series bold
22768 [offset]
22769 \end_layout
22770
22771 \begin_layout Standard
22772 where the offset is a length with one of the units listed in Table\InsetSpace ~
22773
22774 \begin_inset LatexCommand ref
22775 reference "tab:Units"
22776
22777 \end_inset
22778
22779 .
22780  A negative value shifts the note up, a positive value shifts it down.
22781  
22782 \family roman
22783 \series medium
22784 For example the margin note beside this text line is shifted up 1.5\InsetSpace \thinspace{}
22785 cm with
22786  the ERT-command 
22787 \begin_inset Quotes eld
22788 \end_inset
22789
22790
22791 \family default
22792 \series bold
22793 [-1.5cm]
22794 \family roman
22795 \series medium
22796
22797 \begin_inset Quotes erd
22798 \end_inset
22799
22800
22801 \begin_inset Marginal
22802 status open
22803
22804 \begin_layout Standard
22805 This margin note is shifted up 1.5\InsetSpace \thinspace{}
22806 cm from its original position.
22807 \end_layout
22808
22809 \end_inset
22810
22811
22812 \family default
22813 \series default
22814
22815 \begin_inset ERT
22816 status collapsed
22817
22818 \begin_layout Standard
22819
22820 [-1.5cm]
22821 \end_layout
22822
22823 \end_inset
22824
22825
22826 \end_layout
22827
22828 \begin_layout Standard
22829 \begin_inset VSpace defskip
22830 \end_inset
22831
22832 With 
22833 \series bold
22834 marginnote
22835 \series default
22836  you can also change the alignment of the text in the margin note.
22837  For example the commands
22838 \end_layout
22839
22840 \begin_layout Standard
22841
22842 \series bold
22843
22844 \backslash
22845 renewcommand*{
22846 \backslash
22847 raggedleftmarginnote}{
22848 \backslash
22849 centering}
22850 \newline
22851
22852 \backslash
22853 renewcommand*{
22854 \backslash
22855 raggedrightmarginnote}{
22856 \backslash
22857 centering}
22858 \end_layout
22859
22860 \begin_layout Standard
22861 set the alignment to centered.
22862  
22863 \series bold
22864
22865 \backslash
22866 raggedleftmarginnote
22867 \series default
22868  denotes margin notes that appear at the left side.
22869 \family roman
22870 \series medium
22871
22872 \begin_inset ERT
22873 status collapsed
22874
22875 \begin_layout Standard
22876
22877
22878 \backslash
22879 renewcommand*{
22880 \backslash
22881 raggedleftmarginnote}{
22882 \backslash
22883 centering}
22884 \end_layout
22885
22886 \begin_layout Standard
22887
22888
22889 \backslash
22890 renewcommand*{
22891 \backslash
22892 raggedrightmarginnote}{
22893 \backslash
22894 centering}
22895 \end_layout
22896
22897 \end_inset
22898
22899
22900 \begin_inset Marginal
22901 status open
22902
22903 \begin_layout Standard
22904 The text of this margin note is centered.
22905 \end_layout
22906
22907 \end_inset
22908
22909
22910 \family default
22911 \series default
22912  The default is
22913 \end_layout
22914
22915 \begin_layout Standard
22916
22917 \series bold
22918
22919 \backslash
22920 renewcommand*{
22921 \backslash
22922 raggedleftmarginnote}{
22923 \backslash
22924 raggedleft}
22925 \newline
22926
22927 \backslash
22928 renewcommand*{
22929 \backslash
22930 raggedrightmarginnote}{
22931 \backslash
22932 raggedright}
22933 \family roman
22934 \series medium
22935
22936 \begin_inset ERT
22937 status collapsed
22938
22939 \begin_layout Standard
22940
22941
22942 \backslash
22943 renewcommand*{
22944 \backslash
22945 raggedleftmarginnote}{
22946 \backslash
22947 raggedleft}
22948 \end_layout
22949
22950 \begin_layout Standard
22951
22952
22953 \backslash
22954 renewcommand*{
22955 \backslash
22956 raggedrightmarginnote}{
22957 \backslash
22958 raggedright}
22959 \end_layout
22960
22961 \end_inset
22962
22963
22964 \end_layout
22965
22966 \begin_layout Standard
22967 \begin_inset VSpace defskip
22968 \end_inset
22969
22970 For the other features of 
22971 \series bold
22972 marginnote
22973 \series default
22974  we refer to its documentation 
22975 \begin_inset LatexCommand cite
22976 key "marginnote"
22977
22978 \end_inset
22979
22980 .
22981 \end_layout
22982
22983 \begin_layout Standard
22984 \begin_inset VSpace bigskip
22985 \end_inset
22986
22987 You can change the layout of margin notes by redefining its definition.
22988  To create for example a header for all margin notes with the underlined,
22989  sans-serif, and bold header text 
22990 \begin_inset Quotes eld
22991 \end_inset
22992
22993
22994 \family sans
22995 \series bold
22996 \bar under
22997 Attention!
22998 \family default
22999 \series default
23000 \bar default
23001
23002 \begin_inset Quotes erd
23003 \end_inset
23004
23005 , add this to your document preamble:
23006 \end_layout
23007
23008 \begin_layout Standard
23009
23010 \series bold
23011
23012 \backslash
23013 let
23014 \backslash
23015 myMarginpar
23016 \backslash
23017 marginpar
23018 \newline
23019
23020 \backslash
23021 renewcommand{
23022 \backslash
23023 marginpar}[1]{
23024 \backslash
23025 myMarginpar{%
23026 \newline
23027
23028 \begin_inset ERT
23029 status collapsed
23030
23031 \begin_layout Standard
23032
23033
23034 \backslash
23035 hphantom{ }
23036 \end_layout
23037
23038 \end_inset
23039
23040
23041 \backslash
23042 hspace{0pt}
23043 \backslash
23044 textsf{
23045 \backslash
23046 textbf{
23047 \backslash
23048 underbar{Attention!}}}%
23049 \newline
23050
23051 \begin_inset ERT
23052 status collapsed
23053
23054 \begin_layout Standard
23055
23056
23057 \backslash
23058 hphantom{ }
23059 \end_layout
23060
23061 \end_inset
23062
23063
23064 \backslash
23065 vspace{1.5mm}
23066 \backslash
23067
23068 \backslash
23069 #1}}
23070 \end_layout
23071
23072 \begin_layout Standard
23073
23074 \family roman
23075 \series medium
23076 \begin_inset ERT
23077 status collapsed
23078
23079 \begin_layout Standard
23080
23081
23082 \backslash
23083 let
23084 \backslash
23085 myMarginpar
23086 \backslash
23087 marginpar
23088 \end_layout
23089
23090 \begin_layout Standard
23091
23092
23093 \backslash
23094 renewcommand{
23095 \backslash
23096 marginpar}[1]{
23097 \backslash
23098 myMarginpar{%
23099 \end_layout
23100
23101 \begin_layout Standard
23102
23103    
23104 \backslash
23105 textsf{
23106 \backslash
23107 textbf{
23108 \backslash
23109 underbar{Attention!}}}%
23110 \end_layout
23111
23112 \begin_layout Standard
23113
23114    
23115 \backslash
23116 vspace{1.5mm}
23117 \backslash
23118
23119 \backslash
23120 #1}}
23121 \end_layout
23122
23123 \end_inset
23124
23125
23126 \begin_inset Marginal
23127 status open
23128
23129 \begin_layout Standard
23130 This is a margin note with a defined heading.
23131 \end_layout
23132
23133 \end_inset
23134
23135
23136 \family default
23137 \series default
23138
23139 \begin_inset ERT
23140 status collapsed
23141
23142 \begin_layout Standard
23143
23144 [-1.5cm]
23145 \end_layout
23146
23147 \end_inset
23148
23149
23150 \family roman
23151 \series medium
23152
23153 \begin_inset ERT
23154 status collapsed
23155
23156 \begin_layout Standard
23157
23158
23159 \backslash
23160 renewcommand{
23161 \backslash
23162 marginpar}[1]{
23163 \backslash
23164 myMarginpar{#1}}
23165 \end_layout
23166
23167 \end_inset
23168
23169
23170 \family default
23171 \series default
23172
23173 \begin_inset Note Note
23174 status collapsed
23175
23176 \begin_layout Standard
23177 The margin note format is changed only for this example.
23178 \end_layout
23179
23180 \end_inset
23181
23182
23183 \end_layout
23184
23185 \begin_layout Standard
23186 \begin_inset ERT
23187 status collapsed
23188
23189 \begin_layout Standard
23190
23191
23192 \backslash
23193 else
23194 \end_layout
23195
23196 \end_inset
23197
23198
23199 \begin_inset Note Note
23200 status open
23201
23202 \begin_layout Standard
23203 The following will be displayed when the LaTeX-package 
23204 \series bold
23205 marginnote
23206 \series default
23207  is not installed:
23208 \end_layout
23209
23210 \end_inset
23211
23212
23213 \end_layout
23214
23215 \begin_layout Standard
23216 You need to install the LaTeX-package 
23217 \series bold
23218 marginnote
23219 \series default
23220  to see the following part of this section in the output.
23221 \end_layout
23222
23223 \begin_layout Standard
23224 \begin_inset ERT
23225 status collapsed
23226
23227 \begin_layout Standard
23228
23229
23230 \backslash
23231 fi
23232 \end_layout
23233
23234 \end_inset
23235
23236
23237 \end_layout
23238
23239 \begin_layout Chapter
23240 Boxes
23241 \end_layout
23242
23243 \begin_layout Section
23244 Introduction
23245 \begin_inset LatexCommand index
23246 name "Boxes ! Introduction"
23247
23248 \end_inset
23249
23250
23251 \end_layout
23252
23253 \begin_layout Standard
23254 Boxes are used to format a block of text.
23255  Boxes can be used to write documents with multiple languages, see section\InsetSpace ~
23256
23257 \begin_inset LatexCommand ref
23258 reference "sec:Minipages"
23259
23260 \end_inset
23261
23262 , to frame texts, see section\InsetSpace ~
23263
23264 \begin_inset LatexCommand ref
23265 reference "sec:Framed-Boxes"
23266
23267 \end_inset
23268
23269 , to prevent words to be hyphenated, see section\InsetSpace ~
23270
23271 \begin_inset LatexCommand ref
23272 reference "sec:Prevent-Hyphenation"
23273
23274 \end_inset
23275
23276 , to align text, see section\InsetSpace ~
23277
23278 \begin_inset LatexCommand ref
23279 reference "sub:Vertical-Alignment"
23280
23281 \end_inset
23282
23283 , or to set the background color of texts, see section\InsetSpace ~
23284
23285 \begin_inset LatexCommand ref
23286 reference "sec:Colored-Boxes"
23287
23288 \end_inset
23289
23290 .
23291 \end_layout
23292
23293 \begin_layout Standard
23294 Boxes can be inserted with the menu 
23295 \family sans
23296 Insert\SpecialChar \menuseparator
23297 Box
23298 \family default
23299 .
23300  A grey box with the label 
23301 \family sans
23302 Box (Minipage)
23303 \family default
23304
23305 \begin_inset Graphics
23306         filename clipart/BoxInsetDefaultQt4.png
23307         scale 85
23308
23309 \end_inset
23310
23311 , will be inserted.
23312  The box type can be specified by right-clicking on the box.
23313  The appearing box dialog offers the 
23314 \family sans
23315 Inner\InsetSpace ~
23316 Box
23317 \family default
23318  types 
23319 \family sans
23320 Parbox
23321 \family default
23322  and 
23323 \family sans
23324 Minipage
23325 \family default
23326 .
23327  The type 
23328 \family sans
23329 Minipage
23330 \family default
23331  is the default for new boxes and is explained in section\InsetSpace ~
23332
23333 \begin_inset LatexCommand ref
23334 reference "sec:Minipages"
23335
23336 \end_inset
23337
23338 ; the type 
23339 \family sans
23340 Parbox
23341 \family default
23342  is described in section\InsetSpace ~
23343
23344 \begin_inset LatexCommand ref
23345 reference "sec:Parboxes"
23346
23347 \end_inset
23348
23349 .
23350 \end_layout
23351
23352 \begin_layout Standard
23353 Boxes aren't numbered and can therefore not be referenced like floats or
23354  footnotes.
23355 \end_layout
23356
23357 \begin_layout Standard
23358 \begin_inset Note Greyedout
23359 status open
23360
23361 \begin_layout Standard
23362
23363 \series bold
23364 Note:
23365 \series default
23366  Due to a bug in LyX you have to insert a protected space behind a box when
23367  you want to separate in a line the box from the following text with a space.
23368 \end_layout
23369
23370 \end_inset
23371
23372
23373 \end_layout
23374
23375 \begin_layout Standard
23376 \begin_inset Note Greyedout
23377 status open
23378
23379 \begin_layout Standard
23380
23381 \series bold
23382 Note:
23383 \series default
23384  Boxes must not be the item in an 
23385 \family sans
23386 Itemize
23387 \family default
23388  or 
23389 \family sans
23390 Description
23391 \family default
23392  environment.
23393 \end_layout
23394
23395 \end_inset
23396
23397
23398 \end_layout
23399
23400 \begin_layout Standard
23401 \begin_inset Note Greyedout
23402 status open
23403
23404 \begin_layout Standard
23405
23406 \series bold
23407 Note:
23408 \series default
23409  For an unknown reason you can only set the 
23410 \family sans
23411 Inner\InsetSpace ~
23412 Box
23413 \family default
23414  type to 
23415 \family sans
23416 None
23417 \family default
23418  when you use a framed box.
23419  Boxes without an 
23420 \family sans
23421 Inner\InsetSpace ~
23422 Box
23423 \family default
23424  type and without frames are explained in section\InsetSpace ~
23425
23426 \begin_inset LatexCommand ref
23427 reference "sec:Prevent-Hyphenation"
23428
23429 \end_inset
23430
23431 .
23432 \end_layout
23433
23434 \end_inset
23435
23436
23437 \end_layout
23438
23439 \begin_layout Section
23440 Box Dialog
23441 \begin_inset LatexCommand label
23442 name "sec:Box-Dialog"
23443
23444 \end_inset
23445
23446
23447 \begin_inset LatexCommand index
23448 name "Boxes ! Box Dialog"
23449
23450 \end_inset
23451
23452
23453 \begin_inset LatexCommand index
23454 name "Boxes ! Alignment"
23455
23456 \end_inset
23457
23458
23459 \end_layout
23460
23461 \begin_layout Standard
23462 In the box dialog you can adjust the box geometry in the fields 
23463 \family sans
23464 Width
23465 \family default
23466  and 
23467 \family sans
23468 Height
23469 \family default
23470 .
23471  The available units for the geometry are explained in Table\InsetSpace ~
23472
23473 \begin_inset LatexCommand ref
23474 reference "tab:Units"
23475
23476 \end_inset
23477
23478 .
23479  The field 
23480 \family sans
23481 Heigth
23482 \family default
23483  offers the following additional sizes:
23484 \end_layout
23485
23486 \begin_layout Description
23487 Depth This is the plain text 
23488 \begin_inset Quotes eld
23489 \end_inset
23490
23491 height
23492 \begin_inset Quotes erd
23493 \end_inset
23494
23495 .
23496  It ignores the total depth when there are multiple text lines in the box:
23497 \newline
23498
23499 \newline
23500
23501 \newline
23502
23503 \begin_inset Box Boxed
23504 position "c"
23505 hor_pos "c"
23506 has_inner_box 1
23507 inner_pos "c"
23508 use_parbox 0
23509 width "12col%"
23510 special "none"
23511 height "1in"
23512 height_special "depth"
23513 status collapsed
23514
23515 \begin_layout Standard
23516 \align center
23517 Box height set to 1\InsetSpace \thinspace{}
23518 Depth
23519 \end_layout
23520
23521 \end_inset
23522
23523
23524 \newline
23525
23526 \newline
23527
23528 \end_layout
23529
23530 \begin_layout Description
23531 Height This is the heigth of the text that is inside the box.
23532  A value of e.\InsetSpace \thinspace{}
23533 g.\InsetSpace ~
23534 2 for this size will set the box heigth to 2 times the text
23535  height: 
23536 \begin_inset Box Boxed
23537 position "c"
23538 hor_pos "c"
23539 has_inner_box 1
23540 inner_pos "c"
23541 use_parbox 0
23542 width "20col%"
23543 special "none"
23544 height "2in"
23545 height_special "height"
23546 status collapsed
23547
23548 \begin_layout Standard
23549 \align center
23550 Box height set to 2\InsetSpace \thinspace{}
23551 Height
23552 \end_layout
23553
23554 \end_inset
23555
23556
23557 \end_layout
23558
23559 \begin_layout Description
23560 Total\InsetSpace ~
23561 Height This is the Height\InsetSpace \thinspace{}
23562 +\InsetSpace \thinspace{}
23563 Depth: 
23564 \begin_inset Box Boxed
23565 position "c"
23566 hor_pos "c"
23567 has_inner_box 1
23568 inner_pos "c"
23569 use_parbox 0
23570 width "20col%"
23571 special "none"
23572 height "1in"
23573 height_special "totalheight"
23574 status collapsed
23575
23576 \begin_layout Standard
23577 \align center
23578 Box height set to 1\InsetSpace \thinspace{}
23579 Total\InsetSpace ~
23580 Height
23581 \end_layout
23582
23583 \end_inset
23584
23585
23586 \end_layout
23587
23588 \begin_layout Description
23589 Width This set the width of the box as heigth: 
23590 \begin_inset Box Boxed
23591 position "c"
23592 hor_pos "c"
23593 has_inner_box 1
23594 inner_pos "c"
23595 use_parbox 0
23596 width "12col%"
23597 special "none"
23598 height "1in"
23599 height_special "width"
23600 status collapsed
23601
23602 \begin_layout Standard
23603 \align center
23604 Box height set to 1\InsetSpace \thinspace{}
23605 Width
23606 \end_layout
23607
23608 \end_inset
23609
23610
23611 \end_layout
23612
23613 \begin_layout Standard
23614 \begin_inset VSpace bigskip
23615 \end_inset
23616
23617 When you have chosen an 
23618 \family sans
23619 Inner\InsetSpace ~
23620 Box
23621 \family default
23622 , the vertical box alignment can be:
23623 \end_layout
23624
23625 \begin_layout Description
23626 Top This is an example text line.
23627  
23628 \begin_inset Box Boxed
23629 position "t"
23630 hor_pos "c"
23631 has_inner_box 1
23632 inner_pos "c"
23633 use_parbox 0
23634 width "12col%"
23635 special "none"
23636 height "1in"
23637 height_special "totalheight"
23638 status collapsed
23639
23640 \begin_layout Standard
23641 \align center
23642 This box is top-aligned.
23643 \end_layout
23644
23645 \end_inset
23646
23647 \InsetSpace ~
23648 This is an example text line.
23649 \end_layout
23650
23651 \begin_layout Description
23652 Middle This is an example text line.
23653  
23654 \begin_inset Box Boxed
23655 position "c"
23656 hor_pos "c"
23657 has_inner_box 1
23658 inner_pos "c"
23659 use_parbox 0
23660 width "12col%"
23661 special "none"
23662 height "1in"
23663 height_special "totalheight"
23664 status collapsed
23665
23666 \begin_layout Standard
23667 \align center
23668 This box is middle-aligned.
23669 \end_layout
23670
23671 \end_inset
23672
23673 \InsetSpace ~
23674 This is an example text line.
23675 \end_layout
23676
23677 \begin_layout Description
23678 Bottom This is an example text line.
23679  
23680 \begin_inset Box Boxed
23681 position "b"
23682 hor_pos "c"
23683 has_inner_box 1
23684 inner_pos "c"
23685 use_parbox 0
23686 width "12col%"
23687 special "none"
23688 height "1in"
23689 height_special "totalheight"
23690 status collapsed
23691
23692 \begin_layout Standard
23693 \align center
23694 This box is bottom-aligned.
23695 \end_layout
23696
23697 \end_inset
23698
23699 \InsetSpace ~
23700 This is an example text line.
23701 \end_layout
23702
23703 \begin_layout Standard
23704 The horizontal box alignment can be set via LyX's paragraph dialog when
23705  you set the box into its own paragraph.
23706 \end_layout
23707
23708 \begin_layout Standard
23709 \begin_inset VSpace bigskip
23710 \end_inset
23711
23712 When you have chosen an 
23713 \family sans
23714 Inner\InsetSpace ~
23715 Box
23716 \family default
23717 , the box content can be vertical aligned to:
23718 \end_layout
23719
23720 \begin_layout Description
23721 top This is an example text line.
23722  
23723 \begin_inset Box Boxed
23724 position "c"
23725 hor_pos "c"
23726 has_inner_box 1
23727 inner_pos "t"
23728 use_parbox 0
23729 width "12col%"
23730 special "none"
23731 height "1.5in"
23732 height_special "totalheight"
23733 status collapsed
23734
23735 \begin_layout Standard
23736 \align center
23737 This box text is top-aligned.
23738 \end_layout
23739
23740 \end_inset
23741
23742 \InsetSpace ~
23743 This is an example text line.
23744 \end_layout
23745
23746 \begin_layout Description
23747 middle This is an example text line.
23748  
23749 \begin_inset Box Boxed
23750 position "c"
23751 hor_pos "c"
23752 has_inner_box 1
23753 inner_pos "c"
23754 use_parbox 0
23755 width "12col%"
23756 special "none"
23757 height "1.5in"
23758 height_special "totalheight"
23759 status collapsed
23760
23761 \begin_layout Standard
23762 \align center
23763 This box text is middle-aligned.
23764 \end_layout
23765
23766 \end_inset
23767
23768 \InsetSpace ~
23769 This is an example text line.
23770 \end_layout
23771
23772 \begin_layout Description
23773 bottom This is an example text line.
23774  
23775 \begin_inset Box Boxed
23776 position "c"
23777 hor_pos "c"
23778 has_inner_box 1
23779 inner_pos "b"
23780 use_parbox 0
23781 width "12col%"
23782 special "none"
23783 height "1.5in"
23784 height_special "totalheight"
23785 status collapsed
23786
23787 \begin_layout Standard
23788 \align center
23789 This box text is bottom-aligned.
23790 \end_layout
23791
23792 \end_inset
23793
23794 \InsetSpace ~
23795 This is an example text line.
23796 \end_layout
23797
23798 \begin_layout Description
23799 stretch This is an example text line.
23800  
23801 \begin_inset Box Boxed
23802 position "c"
23803 hor_pos "c"
23804 has_inner_box 1
23805 inner_pos "s"
23806 use_parbox 0
23807 width "12col%"
23808 special "none"
23809 height "1.5in"
23810 height_special "totalheight"
23811 status collapsed
23812
23813 \begin_layout Standard
23814 \align center
23815 This box
23816 \end_layout
23817
23818 \begin_layout Standard
23819 \align center
23820 text is
23821 \end_layout
23822
23823 \begin_layout Standard
23824 \align center
23825 stretched.
23826 \end_layout
23827
23828 \end_inset
23829
23830 \InsetSpace ~
23831 This is an example text line.
23832 \end_layout
23833
23834 \begin_layout Standard
23835 To stretch the box content, it must consist of more than one paragraph.
23836  In the example above every text line is in an own paragraph.
23837 \end_layout
23838
23839 \begin_layout Standard
23840 \begin_inset VSpace bigskip
23841 \end_inset
23842
23843 To align the box content horizontally you can use LyX's paragraph dialog
23844  when you have chosen an 
23845 \family sans
23846 Inner\InsetSpace ~
23847 Box
23848 \family default
23849 .
23850 \end_layout
23851
23852 \begin_layout Standard
23853 \align center
23854 \begin_inset Box Boxed
23855 position "c"
23856 hor_pos "c"
23857 has_inner_box 1
23858 inner_pos "s"
23859 use_parbox 0
23860 width "15col%"
23861 special "none"
23862 height "1.25in"
23863 height_special "totalheight"
23864 status collapsed
23865
23866 \begin_layout Standard
23867 \align left
23868 This box
23869 \end_layout
23870
23871 \begin_layout Standard
23872 \align center
23873 text is
23874 \end_layout
23875
23876 \begin_layout Standard
23877 \align right
23878 stretched.
23879 \end_layout
23880
23881 \end_inset
23882
23883
23884 \end_layout
23885
23886 \begin_layout Standard
23887 If you haven't set an 
23888 \family sans
23889 Inner\InsetSpace ~
23890 Box
23891 \family default
23892 , you can align the box content horizontally in the box dialog.
23893 \end_layout
23894
23895 \begin_layout Standard
23896 \align center
23897 \begin_inset Box Boxed
23898 position "c"
23899 hor_pos "s"
23900 has_inner_box 0
23901 inner_pos "s"
23902 use_parbox 0
23903 width "90col%"
23904 special "none"
23905 height "1.25in"
23906 height_special "totalheight"
23907 status collapsed
23908
23909 \begin_layout Standard
23910 \align left
23911 This box text is horizontally stretched.
23912 \end_layout
23913
23914 \end_inset
23915
23916
23917 \end_layout
23918
23919 \begin_layout Section
23920 Framed Boxes
23921 \begin_inset LatexCommand label
23922 name "sec:Framed-Boxes"
23923
23924 \end_inset
23925
23926
23927 \begin_inset LatexCommand index
23928 name "Boxes ! Frames"
23929
23930 \end_inset
23931
23932
23933 \end_layout
23934
23935 \begin_layout Standard
23936 The frame style of the box can be specified in the box-dialog in the drop-down
23937  list 
23938 \family sans
23939 Type
23940 \family default
23941 .
23942  The following frame types are possible:
23943 \end_layout
23944
23945 \begin_layout Description
23946 Rectangular\InsetSpace ~
23947 box This draws a rectangle frame around the box.
23948  The frame line thickness has the size of 
23949 \series bold
23950
23951 \backslash
23952 fboxrule
23953 \series default
23954 .
23955  
23956 \begin_inset Box Boxed
23957 position "c"
23958 hor_pos "c"
23959 has_inner_box 1
23960 inner_pos "c"
23961 use_parbox 0
23962 width "20col%"
23963 special "none"
23964 height "1in"
23965 height_special "totalheight"
23966 status collapsed
23967
23968 \begin_layout Standard
23969 \align center
23970 Rectangular box
23971 \end_layout
23972
23973 \end_inset
23974
23975
23976 \end_layout
23977
23978 \begin_layout Description
23979 Oval\InsetSpace ~
23980 box,\InsetSpace ~
23981 thin This draws an oval frame around the box.
23982  The frame line thickness has the size 0.4\InsetSpace \thinspace{}
23983 pt.
23984  
23985 \begin_inset Box ovalbox
23986 position "c"
23987 hor_pos "c"
23988 has_inner_box 1
23989 inner_pos "c"
23990 use_parbox 0
23991 width "20col%"
23992 special "none"
23993 height "1in"
23994 height_special "totalheight"
23995 status collapsed
23996
23997 \begin_layout Standard
23998 \align center
23999 Oval box, thin
24000 \end_layout
24001
24002 \end_inset
24003
24004
24005 \end_layout
24006
24007 \begin_layout Description
24008 Oval\InsetSpace ~
24009 box,\InsetSpace ~
24010 thick This draws an oval frame around the box.
24011  The frame line thickness has the size 0.8\InsetSpace \thinspace{}
24012 pt.
24013  
24014 \begin_inset Box Ovalbox
24015 position "c"
24016 hor_pos "c"
24017 has_inner_box 1
24018 inner_pos "c"
24019 use_parbox 0
24020 width "20col%"
24021 special "none"
24022 height "1in"
24023 height_special "totalheight"
24024 status collapsed
24025
24026 \begin_layout Standard
24027 \align center
24028 Oval box, thick
24029 \end_layout
24030
24031 \end_inset
24032
24033
24034 \end_layout
24035
24036 \begin_layout Description
24037 Shadow\InsetSpace ~
24038 box This draws a rectangle frame with a shadow around the box.
24039  The frame line thickness has the size of 
24040 \series bold
24041
24042 \backslash
24043 fboxrule
24044 \series default
24045 , the shadow has a width of 4\InsetSpace \thinspace{}
24046 pt.
24047  
24048 \begin_inset Box Shadowbox
24049 position "c"
24050 hor_pos "c"
24051 has_inner_box 1
24052 inner_pos "c"
24053 use_parbox 0
24054 width "20col%"
24055 special "none"
24056 height "1in"
24057 height_special "totalheight"
24058 status collapsed
24059
24060 \begin_layout Standard
24061 \align center
24062 Shadow box
24063 \end_layout
24064
24065 \end_inset
24066
24067
24068 \end_layout
24069
24070 \begin_layout Description
24071 Double\InsetSpace ~
24072 box This draws a double-line rectangle frame around the box.
24073  The line thickness of the inner frame is 0.75\InsetSpace \thinspace{}
24074
24075 \series bold
24076
24077 \backslash
24078 fboxrule
24079 \series default
24080 , the thickness of the outer frame is 1.5\InsetSpace \thinspace{}
24081
24082 \series bold
24083
24084 \backslash
24085 fboxrule
24086 \series default
24087 .
24088  The distance between the lines is 1.5\InsetSpace \thinspace{}
24089
24090 \series bold
24091
24092 \backslash
24093 fboxrule
24094 \series default
24095 \InsetSpace \thinspace{}
24096 +\InsetSpace \thinspace{}
24097 0.5\InsetSpace \thinspace{}
24098 pt.
24099  
24100 \begin_inset Box Doublebox
24101 position "c"
24102 hor_pos "c"
24103 has_inner_box 1
24104 inner_pos "c"
24105 use_parbox 0
24106 width "20col%"
24107 special "none"
24108 height "1in"
24109 height_special "totalheight"
24110 status collapsed
24111
24112 \begin_layout Standard
24113 \align center
24114 Double box
24115 \end_layout
24116
24117 \end_inset
24118
24119
24120 \end_layout
24121
24122 \begin_layout Standard
24123 \begin_inset VSpace bigskip
24124 \end_inset
24125
24126 LyX's box label will change to the used frame style when you set a frame.
24127  To be able to use the different frame styles, the LaTeX-package 
24128 \series bold
24129 fancybox
24130 \series default
24131
24132 \begin_inset LatexCommand index
24133 name "LaTeX-packages ! fancybox"
24134
24135 \end_inset
24136
24137  must be installed.
24138 \end_layout
24139
24140 \begin_layout Standard
24141 \begin_inset VSpace bigskip
24142 \end_inset
24143
24144 The default value for the size 
24145 \series bold
24146
24147 \backslash
24148 fboxrule
24149 \series default
24150  is 0.4\InsetSpace \thinspace{}
24151 pt.
24152  It can be changed with the following command in ERT to e.\InsetSpace \thinspace{}
24153 g.\InsetSpace ~
24154 2\InsetSpace \thinspace{}
24155 pt:
24156 \end_layout
24157
24158 \begin_layout Standard
24159
24160 \series bold
24161
24162 \backslash
24163 setlength{
24164 \backslash
24165 fboxrule}{2pt}
24166 \end_layout
24167
24168 \begin_layout Standard
24169 \begin_inset ERT
24170 status collapsed
24171
24172 \begin_layout Standard
24173
24174
24175 \backslash
24176 setlength{
24177 \backslash
24178 fboxrule}{2pt}
24179 \end_layout
24180
24181 \end_inset
24182
24183
24184 \begin_inset Box Boxed
24185 position "c"
24186 hor_pos "c"
24187 has_inner_box 1
24188 inner_pos "c"
24189 use_parbox 0
24190 width "25col%"
24191 special "none"
24192 height "1in"
24193 height_special "totalheight"
24194 status collapsed
24195
24196 \begin_layout Standard
24197 \align center
24198 Rectangular box with 
24199 \series bold
24200
24201 \backslash
24202 fboxrule
24203 \series default
24204 \InsetSpace \thinspace{}
24205 =\InsetSpace \thinspace{}
24206 2\InsetSpace \thinspace{}
24207 pt
24208 \end_layout
24209
24210 \end_inset
24211
24212
24213 \begin_inset ERT
24214 status collapsed
24215
24216 \begin_layout Standard
24217
24218
24219 \backslash
24220 setlength{
24221 \backslash
24222 fboxrule}{0.4pt}
24223 \end_layout
24224
24225 \end_inset
24226
24227
24228 \end_layout
24229
24230 \begin_layout Standard
24231 \begin_inset VSpace bigskip
24232 \end_inset
24233
24234 The space between the frame and the box content is for all frame styles
24235  by default 3\InsetSpace \thinspace{}
24236 pt.
24237  You can change it by setting the length 
24238 \series bold
24239
24240 \backslash
24241 fboxsep
24242 \series default
24243  to another value.
24244  For example the command
24245 \end_layout
24246
24247 \begin_layout Standard
24248
24249 \series bold
24250
24251 \backslash
24252 setlength{
24253 \backslash
24254 fboxsep}{10pt}
24255 \end_layout
24256
24257 \begin_layout Standard
24258 sets the value to 10\InsetSpace \thinspace{}
24259 pt, like for the following box:
24260 \end_layout
24261
24262 \begin_layout Standard
24263 \begin_inset ERT
24264 status collapsed
24265
24266 \begin_layout Standard
24267
24268
24269 \backslash
24270 setlength{
24271 \backslash
24272 fboxsep}{10pt}
24273 \end_layout
24274
24275 \end_inset
24276
24277
24278 \begin_inset Box Boxed
24279 position "c"
24280 hor_pos "c"
24281 has_inner_box 1
24282 inner_pos "c"
24283 use_parbox 0
24284 width "25col%"
24285 special "none"
24286 height "1in"
24287 height_special "totalheight"
24288 status collapsed
24289
24290 \begin_layout Standard
24291 \align center
24292 Rectangular box with 
24293 \series bold
24294
24295 \backslash
24296 fboxsep
24297 \series default
24298 \InsetSpace \thinspace{}
24299 =\InsetSpace \thinspace{}
24300 10\InsetSpace \thinspace{}
24301 pt
24302 \end_layout
24303
24304 \end_inset
24305
24306
24307 \begin_inset ERT
24308 status collapsed
24309
24310 \begin_layout Standard
24311
24312
24313 \backslash
24314 setlength{
24315 \backslash
24316 fboxsep}{3pt}
24317 \end_layout
24318
24319 \end_inset
24320
24321
24322 \end_layout
24323
24324 \begin_layout Standard
24325 \begin_inset VSpace bigskip
24326 \end_inset
24327
24328 The diameter of the round corners of the oval boxes can be set with the
24329  command 
24330 \series bold
24331
24332 \backslash
24333 cornersize
24334 \series default
24335 .
24336  The command
24337 \end_layout
24338
24339 \begin_layout Standard
24340
24341 \series bold
24342
24343 \backslash
24344 cornersize*{1cm}
24345 \end_layout
24346
24347 \begin_layout Standard
24348 sets the diameter to 1\InsetSpace \thinspace{}
24349 cm.
24350  The command
24351 \end_layout
24352
24353 \begin_layout Standard
24354
24355 \series bold
24356
24357 \backslash
24358 cornersize{num}
24359 \end_layout
24360
24361 \begin_layout Standard
24362 sets the diameter to 
24363 \family sans
24364 num\InsetSpace \thinspace{}
24365 ×\InsetSpace \thinspace{}
24366 minimum(width and heigth of box)
24367 \family default
24368 .
24369  The default is 
24370 \series bold
24371
24372 \backslash
24373 cornersize{0.5}
24374 \series default
24375 .
24376 \end_layout
24377
24378 \begin_layout Standard
24379 \begin_inset ERT
24380 status collapsed
24381
24382 \begin_layout Standard
24383
24384
24385 \backslash
24386 cornersize*{1.5cm}
24387 \end_layout
24388
24389 \end_inset
24390
24391
24392 \begin_inset Box Ovalbox
24393 position "c"
24394 hor_pos "c"
24395 has_inner_box 1
24396 inner_pos "c"
24397 use_parbox 0
24398 width "25col%"
24399 special "none"
24400 height "1in"
24401 height_special "totalheight"
24402 status collapsed
24403
24404 \begin_layout Standard
24405 \align center
24406 Oval box with 
24407 \series bold
24408
24409 \backslash
24410 cornersize
24411 \series default
24412 \InsetSpace \thinspace{}
24413 =\InsetSpace \thinspace{}
24414 1.5\InsetSpace \thinspace{}
24415 cm
24416 \end_layout
24417
24418 \end_inset
24419
24420
24421 \begin_inset ERT
24422 status collapsed
24423
24424 \begin_layout Standard
24425
24426
24427 \backslash
24428 cornersize{0.5}
24429 \end_layout
24430
24431 \end_inset
24432
24433
24434 \end_layout
24435
24436 \begin_layout Standard
24437 \begin_inset VSpace bigskip
24438 \end_inset
24439
24440 The size of the shadow can be adjusted by changing the length 
24441 \series bold
24442
24443 \backslash
24444 shadowsize
24445 \series default
24446 .
24447  It it set to 2\InsetSpace \thinspace{}
24448 pt for the following box by this command:
24449 \end_layout
24450
24451 \begin_layout Standard
24452
24453 \series bold
24454
24455 \backslash
24456 setlength{
24457 \backslash
24458 shadowsize}{2pt}
24459 \end_layout
24460
24461 \begin_layout Standard
24462 \begin_inset ERT
24463 status collapsed
24464
24465 \begin_layout Standard
24466
24467
24468 \backslash
24469 setlength{
24470 \backslash
24471 shadowsize}{2pt}
24472 \end_layout
24473
24474 \end_inset
24475
24476
24477 \begin_inset Box Shadowbox
24478 position "c"
24479 hor_pos "c"
24480 has_inner_box 1
24481 inner_pos "c"
24482 use_parbox 0
24483 width "25col%"
24484 special "none"
24485 height "1in"
24486 height_special "totalheight"
24487 status collapsed
24488
24489 \begin_layout Standard
24490 \align center
24491 Shadow box with 
24492 \series bold
24493
24494 \backslash
24495 shadowsize
24496 \series default
24497 \InsetSpace \thinspace{}
24498 =\InsetSpace \thinspace{}
24499 2\InsetSpace \thinspace{}
24500 pt
24501 \end_layout
24502
24503 \end_inset
24504
24505
24506 \begin_inset ERT
24507 status collapsed
24508
24509 \begin_layout Standard
24510
24511
24512 \backslash
24513 setlength{
24514 \backslash
24515 shadowsize}{4pt}
24516 \end_layout
24517
24518 \end_inset
24519
24520
24521 \end_layout
24522
24523 \begin_layout Standard
24524 \begin_inset VSpace bigskip
24525 \end_inset
24526
24527 Changed lengths and widths are valid for all boxes following the commands
24528  that change them.
24529 \end_layout
24530
24531 \begin_layout Section
24532 Minipages
24533 \begin_inset LatexCommand label
24534 name "sec:Minipages"
24535
24536 \end_inset
24537
24538
24539 \begin_inset LatexCommand index
24540 name "Boxes ! Minipages"
24541
24542 \end_inset
24543
24544
24545 \end_layout
24546
24547 \begin_layout Standard
24548 Minipages are treated by LaTeX as pages within pages and can therefore for
24549  example have their own footnotes.
24550 \end_layout
24551
24552 \begin_layout Standard
24553 Minipages are useful when you write documents with different languages.
24554 \end_layout
24555
24556 \begin_layout Standard
24557 Below are two example minipages side by side.
24558  Their width is set to 45\InsetSpace \thinspace{}
24559 col% and they are separated by a horizontal fill,
24560  that was inserted via the menu 
24561 \family sans
24562 Insert\SpecialChar \menuseparator
24563 Special\InsetSpace ~
24564 Formatting\SpecialChar \menuseparator
24565 Horizontal\InsetSpace ~
24566 Fill
24567 \family default
24568 .
24569 \end_layout
24570
24571 \begin_layout Standard
24572 \begin_inset Box Frameless
24573 position "t"
24574 hor_pos "c"
24575 has_inner_box 1
24576 inner_pos "c"
24577 use_parbox 0
24578 width "45col%"
24579 special "none"
24580 height "1in"
24581 height_special "totalheight"
24582 status open
24583
24584 \begin_layout Standard
24585
24586 \lang german
24587 Dies ist ein deutscher Text.
24588  Dies ist ein deutscher Text.
24589  Dies ist ein deutscher Text.
24590  Dies ist ein deutscher Text.
24591  Dies ist ein deutscher Text.
24592  Dies ist ein deutscher Text.
24593  Dies ist ein deutscher Text.
24594  Dies ist ein deutscher Text.
24595  Dies ist ein deutscher Text.
24596  Dies ist ein deutscher Text.
24597  Dies ist ein deutscher Text.
24598  Dies ist ein deutscher Text.
24599  Dies ist ein deutscher Text
24600 \begin_inset Foot
24601 status collapsed
24602
24603 \begin_layout Standard
24604
24605 \lang german
24606 Dies ist eine deutsche Fußnote.
24607 \end_layout
24608
24609 \end_inset
24610
24611 .
24612  Dies ist ein deutscher Text.
24613  Dies ist ein deutscher Text.
24614 \end_layout
24615
24616 \end_inset
24617
24618
24619 \hfill
24620
24621 \begin_inset Box Frameless
24622 position "t"
24623 hor_pos "c"
24624 has_inner_box 1
24625 inner_pos "c"
24626 use_parbox 0
24627 width "45col%"
24628 special "none"
24629 height "1in"
24630 height_special "totalheight"
24631 status open
24632
24633 \begin_layout Standard
24634 This is an English Text.
24635  This is an English Text.
24636  This is an English Text.
24637  This is an English Text.
24638  This is an English Text.
24639  This is an English Text.
24640  This is an English Text.
24641  This is an English Text.
24642  This is an English Text.
24643  This is an English Text.
24644  This is an English Text.
24645  This is an English Text.
24646  This is an English Text.
24647  This is an English Text.
24648  This is an English Text.
24649  This is an English Text.
24650 \begin_inset Foot
24651 status collapsed
24652
24653 \begin_layout Standard
24654 This is an English footnote.
24655 \end_layout
24656
24657 \end_inset
24658
24659  This is an English Text.
24660  
24661 \end_layout
24662
24663 \end_inset
24664
24665
24666 \end_layout
24667
24668 \begin_layout Standard
24669 \begin_inset VSpace bigskip
24670 \end_inset
24671
24672 Another application for minipages are footnotes within tables.
24673  Due to a LaTeX restriction footnotes within tables doesn't appear at the
24674  bottom of the current page.
24675  But when you put the table with the footnote to a minipage, the footnote
24676  will appear at its bottom, numbered with Latin letters.
24677  The footnote number is reset to 1 in every minipage but not outside the
24678  minipages.
24679 \end_layout
24680
24681 \begin_layout Standard
24682 The footnote of this table doesn't appear: 
24683 \begin_inset Tabular
24684 <lyxtabular version="3" rows="3" columns="4">
24685 <features>
24686 <column alignment="center" valignment="top" leftline="true" width="0pt">
24687 <column alignment="center" valignment="top" leftline="true" width="0pt">
24688 <column alignment="center" valignment="top" leftline="true" width="0pt">
24689 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24690 <row topline="true">
24691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24692 \begin_inset Text
24693
24694 \begin_layout Standard
24695 1
24696 \end_layout
24697
24698 \end_inset
24699 </cell>
24700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24701 \begin_inset Text
24702
24703 \begin_layout Standard
24704 2
24705 \end_layout
24706
24707 \end_inset
24708 </cell>
24709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24710 \begin_inset Text
24711
24712 \begin_layout Standard
24713 3
24714 \begin_inset Foot
24715 status collapsed
24716
24717 \begin_layout Standard
24718 This is a footnote within a table.
24719 \end_layout
24720
24721 \end_inset
24722
24723
24724 \end_layout
24725
24726 \end_inset
24727 </cell>
24728 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24729 \begin_inset Text
24730
24731 \begin_layout Standard
24732 4
24733 \end_layout
24734
24735 \end_inset
24736 </cell>
24737 </row>
24738 <row topline="true">
24739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24740 \begin_inset Text
24741
24742 \begin_layout Standard
24743 a
24744 \end_layout
24745
24746 \end_inset
24747 </cell>
24748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24749 \begin_inset Text
24750
24751 \begin_layout Standard
24752 b
24753 \end_layout
24754
24755 \end_inset
24756 </cell>
24757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24758 \begin_inset Text
24759
24760 \begin_layout Standard
24761 c
24762 \end_layout
24763
24764 \end_inset
24765 </cell>
24766 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24767 \begin_inset Text
24768
24769 \begin_layout Standard
24770 d
24771 \end_layout
24772
24773 \end_inset
24774 </cell>
24775 </row>
24776 <row topline="true" bottomline="true">
24777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24778 \begin_inset Text
24779
24780 \begin_layout Standard
24781 e
24782 \end_layout
24783
24784 \end_inset
24785 </cell>
24786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24787 \begin_inset Text
24788
24789 \begin_layout Standard
24790 f
24791 \end_layout
24792
24793 \end_inset
24794 </cell>
24795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24796 \begin_inset Text
24797
24798 \begin_layout Standard
24799 g
24800 \end_layout
24801
24802 \end_inset
24803 </cell>
24804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24805 \begin_inset Text
24806
24807 \begin_layout Standard
24808 h
24809 \end_layout
24810
24811 \end_inset
24812 </cell>
24813 </row>
24814 </lyxtabular>
24815
24816 \end_inset
24817
24818
24819 \end_layout
24820
24821 \begin_layout Standard
24822 \align center
24823 \begin_inset Box Frameless
24824 position "t"
24825 hor_pos "c"
24826 has_inner_box 1
24827 inner_pos "c"
24828 use_parbox 0
24829 width "30col%"
24830 special "none"
24831 height "1in"
24832 height_special "totalheight"
24833 status open
24834
24835 \begin_layout Standard
24836 \align center
24837 \begin_inset Tabular
24838 <lyxtabular version="3" rows="3" columns="4">
24839 <features>
24840 <column alignment="center" valignment="top" leftline="true" width="0pt">
24841 <column alignment="center" valignment="top" leftline="true" width="0pt">
24842 <column alignment="center" valignment="top" leftline="true" width="0pt">
24843 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24844 <row topline="true">
24845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24846 \begin_inset Text
24847
24848 \begin_layout Standard
24849 1
24850 \end_layout
24851
24852 \end_inset
24853 </cell>
24854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24855 \begin_inset Text
24856
24857 \begin_layout Standard
24858 2
24859 \end_layout
24860
24861 \end_inset
24862 </cell>
24863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24864 \begin_inset Text
24865
24866 \begin_layout Standard
24867 3
24868 \begin_inset Foot
24869 status collapsed
24870
24871 \begin_layout Standard
24872 This is a footnote within a table.
24873 \end_layout
24874
24875 \end_inset
24876
24877
24878 \end_layout
24879
24880 \end_inset
24881 </cell>
24882 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24883 \begin_inset Text
24884
24885 \begin_layout Standard
24886 4
24887 \end_layout
24888
24889 \end_inset
24890 </cell>
24891 </row>
24892 <row topline="true">
24893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24894 \begin_inset Text
24895
24896 \begin_layout Standard
24897 a
24898 \end_layout
24899
24900 \end_inset
24901 </cell>
24902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24903 \begin_inset Text
24904
24905 \begin_layout Standard
24906 b
24907 \end_layout
24908
24909 \end_inset
24910 </cell>
24911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24912 \begin_inset Text
24913
24914 \begin_layout Standard
24915 c
24916 \end_layout
24917
24918 \end_inset
24919 </cell>
24920 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24921 \begin_inset Text
24922
24923 \begin_layout Standard
24924 d
24925 \end_layout
24926
24927 \end_inset
24928 </cell>
24929 </row>
24930 <row topline="true" bottomline="true">
24931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24932 \begin_inset Text
24933
24934 \begin_layout Standard
24935 e
24936 \end_layout
24937
24938 \end_inset
24939 </cell>
24940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24941 \begin_inset Text
24942
24943 \begin_layout Standard
24944 f
24945 \end_layout
24946
24947 \end_inset
24948 </cell>
24949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24950 \begin_inset Text
24951
24952 \begin_layout Standard
24953 g
24954 \end_layout
24955
24956 \end_inset
24957 </cell>
24958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24959 \begin_inset Text
24960
24961 \begin_layout Standard
24962 h
24963 \end_layout
24964
24965 \end_inset
24966 </cell>
24967 </row>
24968 </lyxtabular>
24969
24970 \end_inset
24971
24972
24973 \end_layout
24974
24975 \end_inset
24976
24977
24978 \end_layout
24979
24980 \begin_layout Standard
24981 \begin_inset VSpace bigskip
24982 \end_inset
24983
24984 The document-wide paragraph settings are ignored within minipages.
24985  That means that there will be no space between paragraphs in minipages
24986  although you set it to e.\InsetSpace \thinspace{}
24987 g.\InsetSpace ~
24988
24989 \family sans
24990 MedSkip
24991 \family default
24992  in the document settings.
24993 \end_layout
24994
24995 \begin_layout Standard
24996 Minipages can also be used to set a background color for text parts, see
24997  section\InsetSpace ~
24998
24999 \begin_inset LatexCommand ref
25000 reference "sub:Color-for-Paragraphs"
25001
25002 \end_inset
25003
25004 .
25005 \end_layout
25006
25007 \begin_layout Standard
25008 \begin_inset Note Greyedout
25009 status open
25010
25011 \begin_layout Standard
25012
25013 \series bold
25014 Note:
25015 \series default
25016  You cannot have floats or margin notes inside minipages but minipages can
25017  be used inside tables, floats, and other boxes.
25018 \end_layout
25019
25020 \end_inset
25021
25022
25023 \end_layout
25024
25025 \begin_layout Section
25026 Parboxes
25027 \begin_inset LatexCommand label
25028 name "sec:Parboxes"
25029
25030 \end_inset
25031
25032
25033 \begin_inset LatexCommand index
25034 name "Boxes ! Parboxes"
25035
25036 \end_inset
25037
25038
25039 \end_layout
25040
25041 \begin_layout Standard
25042 Parboxes are very similar to minipages with the difference that they cannot
25043  have footnotes.
25044  The main difference to minipages is that minipages are in contrary to parboxes
25045  no real boxes but LaTeX-environments.
25046 \end_layout
25047
25048 \begin_layout Standard
25049 \align center
25050 \begin_inset Box Frameless
25051 position "t"
25052 hor_pos "c"
25053 has_inner_box 1
25054 inner_pos "t"
25055 use_parbox 1
25056 width "33col%"
25057 special "none"
25058 height "1in"
25059 height_special "totalheight"
25060 status collapsed
25061
25062 \begin_layout Standard
25063 This a text within a parbox.
25064  This a text within a parbox.
25065 \end_layout
25066
25067 \begin_layout Standard
25068 This footnote won't appear:
25069 \begin_inset Foot
25070 status collapsed
25071
25072 \begin_layout Standard
25073 This footnote is inside a parbox and will therefore not appear.
25074 \end_layout
25075
25076 \end_inset
25077
25078
25079 \end_layout
25080
25081 \end_inset
25082
25083
25084 \end_layout
25085
25086 \begin_layout Section
25087 Boxes for Words and Characters
25088 \begin_inset LatexCommand index
25089 name "Boxes ! for Characters"
25090
25091 \end_inset
25092
25093
25094 \end_layout
25095
25096 \begin_layout Subsection
25097 Prevent Hyphenation
25098 \begin_inset LatexCommand label
25099 name "sec:Prevent-Hyphenation"
25100
25101 \end_inset
25102
25103
25104 \begin_inset LatexCommand index
25105 name "Boxes ! to Prevent Hyphenation"
25106
25107 \end_inset
25108
25109
25110 \end_layout
25111
25112 \begin_layout Standard
25113 You can use a special kind of boxes to prevent words or text to be hyphenated.
25114 \newline
25115 Her
25116 e is an example text:
25117 \end_layout
25118
25119 \begin_layout Standard
25120 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25121 g.\InsetSpace ~
25122 veryver
25123 ylongwords.
25124 \end_layout
25125
25126 \begin_layout Standard
25127 To prevent the hyphenation of the word 
25128 \begin_inset Quotes eld
25129 \end_inset
25130
25131 veryverylongwords
25132 \begin_inset Quotes erd
25133 \end_inset
25134
25135 , add the command
25136 \end_layout
25137
25138 \begin_layout Standard
25139
25140 \series bold
25141
25142 \backslash
25143 mbox{
25144 \end_layout
25145
25146 \begin_layout Standard
25147 in ERT before the word.
25148  Behind the word insert a closing brace 
25149 \begin_inset Quotes eld
25150 \end_inset
25151
25152
25153 \series bold
25154 }
25155 \series default
25156
25157 \begin_inset Quotes erd
25158 \end_inset
25159
25160  in ERT.
25161 \begin_inset ERT
25162 status collapsed
25163
25164 \begin_layout Standard
25165
25166
25167 \backslash
25168 pagebreak 
25169 \end_layout
25170
25171 \end_inset
25172
25173
25174 \end_layout
25175
25176 \begin_layout Standard
25177 This is the result:
25178 \end_layout
25179
25180 \begin_layout Standard
25181 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25182 g.\InsetSpace ~
25183
25184 \begin_inset ERT
25185 status collapsed
25186
25187 \begin_layout Standard
25188
25189
25190 \backslash
25191 mbox{
25192 \end_layout
25193
25194 \end_inset
25195
25196 veryverylongwords.
25197 \begin_inset ERT
25198 status collapsed
25199
25200 \begin_layout Standard
25201
25202 }
25203 \end_layout
25204
25205 \end_inset
25206
25207
25208 \end_layout
25209
25210 \begin_layout Standard
25211 Of course the word now protrudes over the side margin.
25212  To avoid this, add via the menu 
25213 \family sans
25214 Insert\SpecialChar \menuseparator
25215 Special\InsetSpace ~
25216 Formatting\SpecialChar \menuseparator
25217 Line\InsetSpace ~
25218 Break
25219 \family default
25220  (shortcut 
25221 \series bold
25222 Ctrl-Return
25223 \series default
25224 ) a line break before the word:
25225 \end_layout
25226
25227 \begin_layout Standard
25228 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25229 g.\InsetSpace ~
25230
25231 \newline
25232
25233 \begin_inset ERT
25234 status collapsed
25235
25236 \begin_layout Standard
25237
25238
25239 \backslash
25240 mbox{
25241 \end_layout
25242
25243 \end_inset
25244
25245 veryverylongwords.
25246 \begin_inset ERT
25247 status collapsed
25248
25249 \begin_layout Standard
25250
25251 }
25252 \end_layout
25253
25254 \end_inset
25255
25256
25257 \end_layout
25258
25259 \begin_layout Subsection
25260 Vertical Alignment
25261 \begin_inset LatexCommand label
25262 name "sub:Vertical-Alignment"
25263
25264 \end_inset
25265
25266
25267 \begin_inset LatexCommand index
25268 name "Boxes ! for Vertical Alignment"
25269
25270 \end_inset
25271
25272
25273 \begin_inset LatexCommand index
25274 name "Boxes ! Raiseboxes"
25275
25276 \end_inset
25277
25278
25279 \end_layout
25280
25281 \begin_layout Standard
25282 With the help of the command 
25283 \series bold
25284
25285 \backslash
25286 raisebox
25287 \series default
25288  you can align words, characters or other boxes vertically to the surrounding
25289  text.
25290  
25291 \series bold
25292
25293 \backslash
25294 raisebox
25295 \series default
25296  is used with the following scheme:
25297 \end_layout
25298
25299 \begin_layout Standard
25300
25301 \series bold
25302
25303 \backslash
25304 raisebox{lift}[height][depth]{box content}
25305 \end_layout
25306
25307 \begin_layout Standard
25308 The lift can be a positive value to raise the box or a negative value to
25309  lower the box.
25310 \end_layout
25311
25312 \begin_layout Standard
25313 To align for example the word 
25314 \begin_inset Quotes eld
25315 \end_inset
25316
25317 preventing
25318 \begin_inset Quotes erd
25319 \end_inset
25320
25321  so that the bottom of the 
25322 \begin_inset Quotes eld
25323 \end_inset
25324
25325 deepest
25326 \begin_inset Quotes erd
25327 \end_inset
25328
25329  character 
25330 \begin_inset Quotes eld
25331 \end_inset
25332
25333 p
25334 \begin_inset Quotes erd
25335 \end_inset
25336
25337  is at the baseline, insert the command
25338 \end_layout
25339
25340 \begin_layout Standard
25341
25342 \series bold
25343
25344 \backslash
25345 raisebox{
25346 \backslash
25347 depth}{
25348 \end_layout
25349
25350 \begin_layout Standard
25351 in ERT before the word.
25352  Behind the word insert a closing brace 
25353 \begin_inset Quotes eld
25354 \end_inset
25355
25356
25357 \series bold
25358 }
25359 \series default
25360
25361 \begin_inset Quotes erd
25362 \end_inset
25363
25364  in ERT.
25365 \newline
25366 This is the result:
25367 \end_layout
25368
25369 \begin_layout Standard
25370 This is a text line with the word 
25371 \begin_inset ERT
25372 status collapsed
25373
25374 \begin_layout Standard
25375
25376
25377 \backslash
25378 raisebox{
25379 \backslash
25380 depth}{
25381 \end_layout
25382
25383 \end_inset
25384
25385
25386 \begin_inset Quotes eld
25387 \end_inset
25388
25389 preventing
25390 \begin_inset Quotes erd
25391 \end_inset
25392
25393
25394 \begin_inset ERT
25395 status collapsed
25396
25397 \begin_layout Standard
25398
25399 }
25400 \end_layout
25401
25402 \end_inset
25403
25404  as raised word.
25405 \end_layout
25406
25407 \begin_layout Standard
25408 \begin_inset VSpace bigskip
25409 \end_inset
25410
25411 When you raise or lower characters in a line, the line distance will be
25412  spread:
25413 \end_layout
25414
25415 \begin_layout Standard
25416 This is a text line with the word 
25417 \begin_inset ERT
25418 status collapsed
25419
25420 \begin_layout Standard
25421
25422
25423 \backslash
25424 raisebox{-
25425 \backslash
25426 depth}{
25427 \end_layout
25428
25429 \end_inset
25430
25431
25432 \begin_inset Quotes eld
25433 \end_inset
25434
25435 preventing
25436 \begin_inset Quotes erd
25437 \end_inset
25438
25439
25440 \begin_inset ERT
25441 status collapsed
25442
25443 \begin_layout Standard
25444
25445 }
25446 \end_layout
25447
25448 \end_inset
25449
25450  as lowered word.
25451 \newline
25452 This is a text line with the word 
25453 \begin_inset ERT
25454 status collapsed
25455
25456 \begin_layout Standard
25457
25458
25459 \backslash
25460 raisebox{0.5cm}{
25461 \end_layout
25462
25463 \end_inset
25464
25465
25466 \begin_inset Quotes eld
25467 \end_inset
25468
25469 testing
25470 \begin_inset Quotes erd
25471 \end_inset
25472
25473
25474 \begin_inset ERT
25475 status collapsed
25476
25477 \begin_layout Standard
25478
25479 }
25480 \end_layout
25481
25482 \end_inset
25483
25484  as raised word.
25485 \end_layout
25486
25487 \begin_layout Standard
25488 If you want to prevent this for a certain reason, set the box height to
25489  a zero value.
25490  For example use
25491 \end_layout
25492
25493 \begin_layout Standard
25494
25495 \series bold
25496
25497 \backslash
25498 raisebox{-
25499 \backslash
25500 depth}[0pt]{
25501 \end_layout
25502
25503 \begin_layout Standard
25504 This is a text line with the word 
25505 \begin_inset ERT
25506 status collapsed
25507
25508 \begin_layout Standard
25509
25510
25511 \backslash
25512 raisebox{-
25513 \backslash
25514 depth}[0pt]{
25515 \end_layout
25516
25517 \end_inset
25518
25519
25520 \begin_inset Quotes eld
25521 \end_inset
25522
25523 preventing
25524 \begin_inset Quotes erd
25525 \end_inset
25526
25527
25528 \begin_inset ERT
25529 status collapsed
25530
25531 \begin_layout Standard
25532
25533 }
25534 \end_layout
25535
25536 \end_inset
25537
25538  as lowered word.
25539 \newline
25540 This is a text line with the word 
25541 \begin_inset ERT
25542 status collapsed
25543
25544 \begin_layout Standard
25545
25546
25547 \backslash
25548 raisebox{0.5cm}[0pt]{
25549 \end_layout
25550
25551 \end_inset
25552
25553
25554 \begin_inset Quotes eld
25555 \end_inset
25556
25557 testing
25558 \begin_inset Quotes erd
25559 \end_inset
25560
25561
25562 \begin_inset ERT
25563 status collapsed
25564
25565 \begin_layout Standard
25566
25567 }
25568 \end_layout
25569
25570 \end_inset
25571
25572  as raised word.
25573 \end_layout
25574
25575 \begin_layout Section
25576 Colored Boxes
25577 \begin_inset LatexCommand label
25578 name "sec:Colored-Boxes"
25579
25580 \end_inset
25581
25582
25583 \begin_inset LatexCommand index
25584 name "Boxes ! Color"
25585
25586 \end_inset
25587
25588
25589 \end_layout
25590
25591 \begin_layout Subsection
25592 Color for Text
25593 \begin_inset LatexCommand index
25594 name "Color ! for Text"
25595
25596 \end_inset
25597
25598
25599 \end_layout
25600
25601 \begin_layout Standard
25602 To color the background of text the text must be put into a so called colorbox.
25603  This requires that the LaTeX-package 
25604 \series bold
25605 color
25606 \series default
25607
25608 \begin_inset LatexCommand index
25609 name "LaTeX-packages ! color"
25610
25611 \end_inset
25612
25613  is loaded in the document preamble with the command
25614 \end_layout
25615
25616 \begin_layout Standard
25617
25618 \series bold
25619
25620 \backslash
25621 @ifundef\SpecialChar \textcompwordmark{}
25622 ined{textcolor}
25623 \newline
25624
25625 \begin_inset ERT
25626 status collapsed
25627
25628 \begin_layout Standard
25629
25630
25631 \backslash
25632 hphantom{ }
25633 \end_layout
25634
25635 \end_inset
25636
25637 {
25638 \backslash
25639 usepackage{color}}{}
25640 \end_layout
25641
25642 \begin_layout Standard
25643 The package 
25644 \series bold
25645 color
25646 \series default
25647  will be loaded automatically by LyX when you color text
25648 \begin_inset Foot
25649 status collapsed
25650
25651 \begin_layout Standard
25652 To avoid that it is loaded twice the command 
25653 \series bold
25654
25655 \backslash
25656 @ifundef\SpecialChar \textcompwordmark{}
25657 ined
25658 \series default
25659  is used.
25660 \end_layout
25661
25662 \end_inset
25663
25664 .
25665 \end_layout
25666
25667 \begin_layout Standard
25668 \begin_inset VSpace medskip
25669 \end_inset
25670
25671 Colorboxes are created with the command 
25672 \series bold
25673
25674 \backslash
25675 colorbox
25676 \series default
25677 .
25678  This will be used with the following scheme:
25679 \end_layout
25680
25681 \begin_layout Standard
25682
25683 \series bold
25684
25685 \backslash
25686 colorbox{color}{box content}
25687 \end_layout
25688
25689 \begin_layout Standard
25690 The box content can also be a box and colorboxes can also be within other
25691  boxes.
25692 \end_layout
25693
25694 \begin_layout Standard
25695 The following colors are predefined:
25696 \newline
25697
25698 \family sans
25699 black
25700 \family default
25701
25702 \family sans
25703 blue
25704 \family default
25705
25706 \family sans
25707 cyan
25708 \family default
25709 \series bold
25710 ,
25711 \series default
25712  
25713 \family sans
25714 green
25715 \family default
25716
25717 \family sans
25718 magenta
25719 \family default
25720
25721 \family sans
25722 red
25723 \family default
25724
25725 \family sans
25726 white
25727 \family default
25728 , and 
25729 \family sans
25730 yellow
25731 \family default
25732 .
25733 \newline
25734 You can also define your own color as described in section\InsetSpace ~
25735
25736 \begin_inset LatexCommand ref
25737 reference "sec:Colored-Tables"
25738
25739 \end_inset
25740
25741 .
25742 \end_layout
25743
25744 \begin_layout Standard
25745 To have e.\InsetSpace \thinspace{}
25746 g.\InsetSpace ~
25747 a red background for a word, insert the command
25748 \end_layout
25749
25750 \begin_layout Standard
25751
25752 \series bold
25753
25754 \backslash
25755 colorbox{red}{
25756 \end_layout
25757
25758 \begin_layout Standard
25759 before the word in ERT.
25760  Behind the word insert a closing brace 
25761 \begin_inset Quotes eld
25762 \end_inset
25763
25764
25765 \series bold
25766 }
25767 \series default
25768
25769 \begin_inset Quotes erd
25770 \end_inset
25771
25772  in ERT.
25773 \newline
25774 This is the result:
25775 \end_layout
25776
25777 \begin_layout Standard
25778 This is a line where the word 
25779 \begin_inset ERT
25780 status collapsed
25781
25782 \begin_layout Standard
25783
25784
25785 \backslash
25786 colorbox{red}{
25787 \end_layout
25788
25789 \end_inset
25790
25791
25792 \begin_inset Quotes eld
25793 \end_inset
25794
25795 Attention!
25796 \begin_inset Quotes erd
25797 \end_inset
25798
25799
25800 \begin_inset ERT
25801 status collapsed
25802
25803 \begin_layout Standard
25804
25805 }
25806 \end_layout
25807
25808 \end_inset
25809
25810  has a red background.
25811 \end_layout
25812
25813 \begin_layout Standard
25814 \begin_inset VSpace bigskip
25815 \end_inset
25816
25817 If you would have the box frame in a different color, you can use the command
25818  
25819 \series bold
25820
25821 \backslash
25822 fcolorbox
25823 \series default
25824  with the following scheme:
25825 \end_layout
25826
25827 \begin_layout Standard
25828
25829 \series bold
25830
25831 \backslash
25832 fcolorbox{frame color}{box color}{box content}
25833 \end_layout
25834
25835 \begin_layout Standard
25836
25837 \series bold
25838
25839 \backslash
25840 fcolorbox
25841 \series default
25842  is an extension to 
25843 \series bold
25844
25845 \backslash
25846 colorbox
25847 \series default
25848 .
25849  The frame thickness and the space between the frame and the box content
25850  can be adjusted with the lengths 
25851 \series bold
25852
25853 \backslash
25854 fboxrule
25855 \series default
25856  and 
25857 \series bold
25858
25859 \backslash
25860 fboxsep
25861 \series default
25862 , respectively, as described in section\InsetSpace ~
25863
25864 \begin_inset LatexCommand ref
25865 reference "sec:Framed-Boxes"
25866
25867 \end_inset
25868
25869 .
25870 \end_layout
25871
25872 \begin_layout Standard
25873 For the following example the command
25874 \end_layout
25875
25876 \begin_layout Standard
25877
25878 \series bold
25879
25880 \backslash
25881 fcolorbox{cyan}{magenta}{
25882 \end_layout
25883
25884 \begin_layout Standard
25885 was used.
25886 \end_layout
25887
25888 \begin_layout Standard
25889 Here is an example where the frame line thickness was set to 1\InsetSpace \thinspace{}
25890 mm:
25891 \newline
25892
25893 \begin_inset ERT
25894 status collapsed
25895
25896 \begin_layout Standard
25897
25898
25899 \backslash
25900 fboxrule 1mm 
25901 \backslash
25902 fboxsep 1mm
25903 \end_layout
25904
25905 \end_inset
25906
25907
25908 \begin_inset ERT
25909 status collapsed
25910
25911 \begin_layout Standard
25912
25913
25914 \backslash
25915 fcolorbox{cyan}{magenta}{
25916 \end_layout
25917
25918 \end_inset
25919
25920 This is text within a colored, framed box.
25921 \begin_inset ERT
25922 status collapsed
25923
25924 \begin_layout Standard
25925
25926 }
25927 \end_layout
25928
25929 \end_inset
25930
25931
25932 \end_layout
25933
25934 \begin_layout Standard
25935 \begin_inset VSpace bigskip
25936 \end_inset
25937
25938 Of course you can also have colored text inside a colorbox:
25939 \newline
25940
25941 \begin_inset ERT
25942 status collapsed
25943
25944 \begin_layout Standard
25945
25946
25947 \backslash
25948 fcolorbox{cyan}{magenta}{
25949 \end_layout
25950
25951 \end_inset
25952
25953
25954 \color yellow
25955 This is colored text within a colored, framed box.
25956 \color none
25957
25958 \begin_inset ERT
25959 status collapsed
25960
25961 \begin_layout Standard
25962
25963 }
25964 \end_layout
25965
25966 \end_inset
25967
25968
25969 \begin_inset ERT
25970 status collapsed
25971
25972 \begin_layout Standard
25973
25974
25975 \backslash
25976 fboxrule 0.4pt 
25977 \backslash
25978 fboxsep 3pt
25979 \end_layout
25980
25981 \end_inset
25982
25983
25984 \end_layout
25985
25986 \begin_layout Standard
25987
25988 \series bold
25989 \begin_inset VSpace medskip
25990 \end_inset
25991
25992
25993 \end_layout
25994
25995 \begin_layout Standard
25996 \begin_inset Note Greyedout
25997 status open
25998
25999 \begin_layout Standard
26000
26001 \series bold
26002 Note:
26003 \series default
26004  Text in colorboxes cannot have line breaks.
26005  To color multiple text lines or paragraphs, use a box inside a colorbox
26006  as described in the following.
26007 \end_layout
26008
26009 \end_inset
26010
26011
26012 \end_layout
26013
26014 \begin_layout Subsection
26015 Color for Paragraphs
26016 \begin_inset LatexCommand label
26017 name "sub:Color-for-Paragraphs"
26018
26019 \end_inset
26020
26021
26022 \begin_inset LatexCommand index
26023 name "Color ! for Paragraphs"
26024
26025 \end_inset
26026
26027
26028 \end_layout
26029
26030 \begin_layout Standard
26031 To set the background color for more than one text line, put the text into
26032  a minipage.
26033  Before the minipage insert the 
26034 \series bold
26035
26036 \backslash
26037 colorbox
26038 \series default
26039  command
26040 \end_layout
26041
26042 \begin_layout Standard
26043
26044 \series bold
26045
26046 \backslash
26047 colorbox{color}{
26048 \end_layout
26049
26050 \begin_layout Standard
26051 in ERT.
26052  Behind the minipage insert a closing brace 
26053 \begin_inset Quotes eld
26054 \end_inset
26055
26056
26057 \series bold
26058 }
26059 \series default
26060
26061 \begin_inset Quotes erd
26062 \end_inset
26063
26064  in ERT.
26065 \end_layout
26066
26067 \begin_layout Standard
26068 \begin_inset ERT
26069 status collapsed
26070
26071 \begin_layout Standard
26072
26073
26074 \backslash
26075 colorbox{lightgrey}{
26076 \end_layout
26077
26078 \end_inset
26079
26080
26081 \begin_inset Box Frameless
26082 position "t"
26083 hor_pos "c"
26084 has_inner_box 1
26085 inner_pos "t"
26086 use_parbox 0
26087 width "100col%"
26088 special "none"
26089 height "1in"
26090 height_special "totalheight"
26091 status collapsed
26092
26093 \begin_layout Standard
26094 This is text with background color.
26095  This is text with background color.
26096 \end_layout
26097
26098 \begin_layout Standard
26099 \begin_inset VSpace defskip
26100 \end_inset
26101
26102 The text can have footnotes
26103 \begin_inset Foot
26104 status collapsed
26105
26106 \begin_layout Standard
26107 Another example footnote
26108 \end_layout
26109
26110 \end_inset
26111
26112  and can include tables and figures.
26113 \end_layout
26114
26115 \begin_layout Standard
26116 \align center
26117 \begin_inset Tabular
26118 <lyxtabular version="3" rows="3" columns="3">
26119 <features>
26120 <column alignment="center" valignment="top" leftline="true" width="0">
26121 <column alignment="center" valignment="top" leftline="true" width="0">
26122 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26123 <row topline="true">
26124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26125 \begin_inset Text
26126
26127 \begin_layout Standard
26128 a
26129 \end_layout
26130
26131 \end_inset
26132 </cell>
26133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26134 \begin_inset Text
26135
26136 \begin_layout Standard
26137 !
26138 \end_layout
26139
26140 \end_inset
26141 </cell>
26142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26143 \begin_inset Text
26144
26145 \begin_layout Standard
26146 3
26147 \end_layout
26148
26149 \end_inset
26150 </cell>
26151 </row>
26152 <row topline="true">
26153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26154 \begin_inset Text
26155
26156 \begin_layout Standard
26157 <
26158 \end_layout
26159
26160 \end_inset
26161 </cell>
26162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26163 \begin_inset Text
26164
26165 \begin_layout Standard
26166 b2
26167 \begin_inset Quotes erd
26168 \end_inset
26169
26170 |
26171 \end_layout
26172
26173 \end_inset
26174 </cell>
26175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26176 \begin_inset Text
26177
26178 \begin_layout Standard
26179 >
26180 \end_layout
26181
26182 \end_inset
26183 </cell>
26184 </row>
26185 <row topline="true" bottomline="true">
26186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26187 \begin_inset Text
26188
26189 \begin_layout Standard
26190 1
26191 \end_layout
26192
26193 \end_inset
26194 </cell>
26195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26196 \begin_inset Text
26197
26198 \begin_layout Standard
26199 §
26200 \end_layout
26201
26202 \end_inset
26203 </cell>
26204 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26205 \begin_inset Text
26206
26207 \begin_layout Standard
26208 c
26209 \end_layout
26210
26211 \end_inset
26212 </cell>
26213 </row>
26214 </lyxtabular>
26215
26216 \end_inset
26217
26218
26219 \end_layout
26220
26221 \end_inset
26222
26223
26224 \begin_inset ERT
26225 status collapsed
26226
26227 \begin_layout Standard
26228
26229 }
26230 \end_layout
26231
26232 \end_inset
26233
26234
26235 \end_layout
26236
26237 \begin_layout Section
26238 URLs (Uniform Resource Locators)
26239 \begin_inset LatexCommand index
26240 name "URLs"
26241
26242 \end_inset
26243
26244
26245 \end_layout
26246
26247 \begin_layout Standard
26248 Links to web pages or email addresses can be inserted via the menu 
26249 \family sans
26250 Insert\SpecialChar \menuseparator
26251 URL
26252 \family default
26253 .
26254  The appearing URL dialog has two fields; the 
26255 \family sans
26256 URL
26257 \family default
26258  field and the 
26259 \family sans
26260 Name
26261 \family default
26262  field for the URL description, which will be typeset as plain text immediately
26263  before the URL.
26264 \end_layout
26265
26266 \begin_layout Standard
26267 Here is an example URL: 
26268 \begin_inset LatexCommand url
26269 name "LyX's homepage"
26270 target "http://www.lyx.org"
26271
26272 \end_inset
26273
26274
26275 \end_layout
26276
26277 \begin_layout Standard
26278 The option 
26279 \family sans
26280 Generate\InsetSpace ~
26281 hyperlink
26282 \family default
26283  in the URL dialog has only an affect when you export your document to the
26284  format 
26285 \begin_inset Quotes eld
26286 \end_inset
26287
26288
26289 \family sans
26290 LinuxDoc
26291 \family default
26292
26293 \begin_inset Quotes erd
26294 \end_inset
26295
26296 .
26297 \end_layout
26298
26299 \begin_layout Standard
26300 You cannot change the style of the link text.
26301  The text of the 
26302 \family sans
26303 Name
26304 \family default
26305  field will have the default text style of the document while the text of
26306  the 
26307 \family sans
26308 URL
26309 \family default
26310  field will have the style 
26311 \begin_inset Quotes eld
26312 \end_inset
26313
26314
26315 \family sans
26316 Typewriter
26317 \family default
26318
26319 \begin_inset Quotes erd
26320 \end_inset
26321
26322 .
26323 \end_layout
26324
26325 \begin_layout Standard
26326 When you use the LaTeX-package 
26327 \series bold
26328 hyperref
26329 \series default
26330
26331 \begin_inset LatexCommand index
26332 name "LaTeX-packages ! hyperref"
26333
26334 \end_inset
26335
26336  to link cross-references in the output, URLs will automatically become
26337  clickable hyperlinks in DVI and PDF-output.
26338 \end_layout
26339
26340 \begin_layout Standard
26341 \begin_inset Note Greyedout
26342 status open
26343
26344 \begin_layout Standard
26345
26346 \series bold
26347 Note:
26348 \series default
26349  When you use the following characters: "%", "#", "^", you have to write
26350  them with a preceding backslash, e.\InsetSpace \thinspace{}
26351 g.\InsetSpace ~
26352
26353 \begin_inset Quotes eld
26354 \end_inset
26355
26356
26357 \backslash
26358 #
26359 \begin_inset Quotes erd
26360 \end_inset
26361
26362 .
26363  URLs must not end with a backslash.
26364 \end_layout
26365
26366 \end_inset
26367
26368
26369 \end_layout
26370
26371 \begin_layout Standard
26372 \begin_inset VSpace bigskip
26373 \end_inset
26374
26375 To create real hyperlinks without the force to write the link location to
26376  the text, you can use the command
26377 \end_layout
26378
26379 \begin_layout Standard
26380
26381 \series bold
26382
26383 \backslash
26384 href{link location}{link text}
26385 \end_layout
26386
26387 \begin_layout Standard
26388 in ERT.
26389  To get for example a link to LyX's web page, write the command
26390 \end_layout
26391
26392 \begin_layout Standard
26393
26394 \series bold
26395
26396 \backslash
26397 href{http://www.lyx.org}{
26398 \end_layout
26399
26400 \begin_layout Standard
26401 in ERT.
26402  Insert after the command the link text 
26403 \begin_inset Quotes eld
26404 \end_inset
26405
26406 LyX's homepage
26407 \begin_inset Quotes erd
26408 \end_inset
26409
26410  as normal text followed by a closing brace 
26411 \begin_inset Quotes eld
26412 \end_inset
26413
26414
26415 \series bold
26416 }
26417 \series default
26418
26419 \begin_inset Quotes erd
26420 \end_inset
26421
26422  in ERT.
26423  This is the result: 
26424 \begin_inset ERT
26425 status collapsed
26426
26427 \begin_layout Standard
26428
26429
26430 \backslash
26431 href{http://www.lyx.org}{
26432 \end_layout
26433
26434 \end_inset
26435
26436 LyX's homepage
26437 \begin_inset ERT
26438 status collapsed
26439
26440 \begin_layout Standard
26441
26442 }
26443 \end_layout
26444
26445 \end_inset
26446
26447
26448 \end_layout
26449
26450 \begin_layout Standard
26451 To link to email addresses, add the prefix 
26452 \begin_inset Quotes eld
26453 \end_inset
26454
26455
26456 \family sans
26457 mailto:
26458 \family default
26459
26460 \begin_inset Quotes erd
26461 \end_inset
26462
26463  to the link location:
26464 \newline
26465 Email to 
26466 \begin_inset ERT
26467 status collapsed
26468
26469 \begin_layout Standard
26470
26471
26472 \backslash
26473 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26474 \end_layout
26475
26476 \end_inset
26477
26478 lyx-docs mailing list
26479 \begin_inset ERT
26480 status collapsed
26481
26482 \begin_layout Standard
26483
26484 }
26485 \end_layout
26486
26487 \end_inset
26488
26489 .
26490 \end_layout
26491
26492 \begin_layout Standard
26493 Using 
26494 \series bold
26495
26496 \backslash
26497 href
26498 \series default
26499  instead of LyX's URL box has the advantage that you can specify the text
26500  style of the link text like for all other text parts.
26501  You can therefore set hyphenation points and forced linebreaks to have
26502  long link text broken at the page margin.
26503  You are furthermore able to change the text style for all URLs in your
26504  document with an option in 
26505 \series bold
26506 hyperref
26507 \series default
26508 's load command and the restrictions mentioned above doesn't apply for 
26509 \series bold
26510
26511 \backslash
26512 href
26513 \series default
26514 .
26515 \end_layout
26516
26517 \begin_layout Standard
26518
26519 \newpage
26520
26521 \end_layout
26522
26523 \begin_layout Chapter
26524 \start_of_appendix
26525 Units available in 
26526 \begin_inset ERT
26527 status collapsed
26528
26529 \begin_layout Standard
26530
26531
26532 \backslash
26533 texorpdfstring{
26534 \end_layout
26535
26536 \end_inset
26537
26538 LyX
26539 \begin_inset ERT
26540 status collapsed
26541
26542 \begin_layout Standard
26543
26544 }{LyX}
26545 \end_layout
26546
26547 \end_inset
26548
26549
26550 \begin_inset LatexCommand index
26551 name "Units"
26552
26553 \end_inset
26554
26555
26556 \begin_inset LatexCommand label
26557 name "cha:Units-available-in"
26558
26559 \end_inset
26560
26561
26562 \begin_inset Note Note
26563 status collapsed
26564
26565 \begin_layout Standard
26566 The command 
26567 \backslash
26568 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
26569  are displayed wrongly in PDF-bookmarks.
26570  For more information about this, have a look at 
26571 \begin_inset LatexCommand cite
26572 key "hyperref"
26573
26574 \end_inset
26575
26576 .
26577 \end_layout
26578
26579 \end_inset
26580
26581
26582 \end_layout
26583
26584 \begin_layout Standard
26585 To understand the units described in this documentation, Table\InsetSpace ~
26586
26587 \begin_inset LatexCommand ref
26588 reference "tab:Units"
26589
26590 \end_inset
26591
26592  explains all units available in LyX.
26593 \end_layout
26594
26595 \begin_layout Standard
26596 \begin_inset Float table
26597 placement h
26598 wide false
26599 sideways false
26600 status open
26601
26602 \begin_layout Standard
26603 \begin_inset Caption
26604
26605 \begin_layout Standard
26606 \begin_inset LatexCommand label
26607 name "tab:Units"
26608
26609 \end_inset
26610
26611 Units
26612 \end_layout
26613
26614 \end_inset
26615
26616
26617 \end_layout
26618
26619 \begin_layout Standard
26620 \begin_inset VSpace medskip
26621 \end_inset
26622
26623
26624 \end_layout
26625
26626 \begin_layout Standard
26627 \align center
26628 \begin_inset Tabular
26629 <lyxtabular version="3" rows="20" columns="2">
26630 <features>
26631 <column alignment="center" valignment="top" leftline="true" width="0">
26632 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26633 <row topline="true" bottomline="true">
26634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26635 \begin_inset Text
26636
26637 \begin_layout Standard
26638 unit
26639 \end_layout
26640
26641 \end_inset
26642 </cell>
26643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26644 \begin_inset Text
26645
26646 \begin_layout Standard
26647 name/description
26648 \end_layout
26649
26650 \end_inset
26651 </cell>
26652 </row>
26653 <row topline="true">
26654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26655 \begin_inset Text
26656
26657 \begin_layout Standard
26658 mm
26659 \end_layout
26660
26661 \end_inset
26662 </cell>
26663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26664 \begin_inset Text
26665
26666 \begin_layout Standard
26667 millimeter
26668 \end_layout
26669
26670 \end_inset
26671 </cell>
26672 </row>
26673 <row topline="true">
26674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26675 \begin_inset Text
26676
26677 \begin_layout Standard
26678 cm
26679 \end_layout
26680
26681 \end_inset
26682 </cell>
26683 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26684 \begin_inset Text
26685
26686 \begin_layout Standard
26687 centimeter
26688 \end_layout
26689
26690 \end_inset
26691 </cell>
26692 </row>
26693 <row topline="true">
26694 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26695 \begin_inset Text
26696
26697 \begin_layout Standard
26698 in
26699 \end_layout
26700
26701 \end_inset
26702 </cell>
26703 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26704 \begin_inset Text
26705
26706 \begin_layout Standard
26707 inch
26708 \end_layout
26709
26710 \end_inset
26711 </cell>
26712 </row>
26713 <row topline="true">
26714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26715 \begin_inset Text
26716
26717 \begin_layout Standard
26718 pt
26719 \end_layout
26720
26721 \end_inset
26722 </cell>
26723 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26724 \begin_inset Text
26725
26726 \begin_layout Standard
26727 point (72.27\InsetSpace \thinspace{}
26728 pt = 1\InsetSpace \thinspace{}
26729 in)
26730 \end_layout
26731
26732 \end_inset
26733 </cell>
26734 </row>
26735 <row topline="true">
26736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26737 \begin_inset Text
26738
26739 \begin_layout Standard
26740 pc
26741 \end_layout
26742
26743 \end_inset
26744 </cell>
26745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26746 \begin_inset Text
26747
26748 \begin_layout Standard
26749 pica (1\InsetSpace \thinspace{}
26750 pc = 12\InsetSpace \thinspace{}
26751 pt)
26752 \end_layout
26753
26754 \end_inset
26755 </cell>
26756 </row>
26757 <row topline="true">
26758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26759 \begin_inset Text
26760
26761 \begin_layout Standard
26762 sp
26763 \end_layout
26764
26765 \end_inset
26766 </cell>
26767 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26768 \begin_inset Text
26769
26770 \begin_layout Standard
26771 scaled point (65536\InsetSpace \thinspace{}
26772 sp = 1\InsetSpace \thinspace{}
26773 pt)
26774 \end_layout
26775
26776 \end_inset
26777 </cell>
26778 </row>
26779 <row topline="true">
26780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26781 \begin_inset Text
26782
26783 \begin_layout Standard
26784 bp
26785 \end_layout
26786
26787 \end_inset
26788 </cell>
26789 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26790 \begin_inset Text
26791
26792 \begin_layout Standard
26793 big point (72\InsetSpace \thinspace{}
26794 bp = 1\InsetSpace \thinspace{}
26795 in)
26796 \end_layout
26797
26798 \end_inset
26799 </cell>
26800 </row>
26801 <row topline="true">
26802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26803 \begin_inset Text
26804
26805 \begin_layout Standard
26806 dd
26807 \end_layout
26808
26809 \end_inset
26810 </cell>
26811 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26812 \begin_inset Text
26813
26814 \begin_layout Standard
26815 didot (72\InsetSpace \thinspace{}
26816 dd 
26817 \begin_inset Formula $\approx$
26818 \end_inset
26819
26820  37.6\InsetSpace \thinspace{}
26821 mm)
26822 \end_layout
26823
26824 \end_inset
26825 </cell>
26826 </row>
26827 <row topline="true">
26828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26829 \begin_inset Text
26830
26831 \begin_layout Standard
26832 cc
26833 \end_layout
26834
26835 \end_inset
26836 </cell>
26837 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26838 \begin_inset Text
26839
26840 \begin_layout Standard
26841 cicero (1\InsetSpace \thinspace{}
26842 cc = 12\InsetSpace \thinspace{}
26843 dd)
26844 \end_layout
26845
26846 \end_inset
26847 </cell>
26848 </row>
26849 <row topline="true">
26850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26851 \begin_inset Text
26852
26853 \begin_layout Standard
26854 Scale%
26855 \end_layout
26856
26857 \end_inset
26858 </cell>
26859 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26860 \begin_inset Text
26861
26862 \begin_layout Standard
26863 % of original image width
26864 \end_layout
26865
26866 \end_inset
26867 </cell>
26868 </row>
26869 <row topline="true">
26870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26871 \begin_inset Text
26872
26873 \begin_layout Standard
26874 text%
26875 \end_layout
26876
26877 \end_inset
26878 </cell>
26879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26880 \begin_inset Text
26881
26882 \begin_layout Standard
26883 % of text width
26884 \end_layout
26885
26886 \end_inset
26887 </cell>
26888 </row>
26889 <row topline="true">
26890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26891 \begin_inset Text
26892
26893 \begin_layout Standard
26894 col%
26895 \end_layout
26896
26897 \end_inset
26898 </cell>
26899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26900 \begin_inset Text
26901
26902 \begin_layout Standard
26903 % of column width
26904 \end_layout
26905
26906 \end_inset
26907 </cell>
26908 </row>
26909 <row topline="true">
26910 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26911 \begin_inset Text
26912
26913 \begin_layout Standard
26914 page%
26915 \end_layout
26916
26917 \end_inset
26918 </cell>
26919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26920 \begin_inset Text
26921
26922 \begin_layout Standard
26923 % of paper width
26924 \end_layout
26925
26926 \end_inset
26927 </cell>
26928 </row>
26929 <row topline="true">
26930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26931 \begin_inset Text
26932
26933 \begin_layout Standard
26934 line%
26935 \end_layout
26936
26937 \end_inset
26938 </cell>
26939 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26940 \begin_inset Text
26941
26942 \begin_layout Standard
26943 % of line width
26944 \end_layout
26945
26946 \end_inset
26947 </cell>
26948 </row>
26949 <row topline="true">
26950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26951 \begin_inset Text
26952
26953 \begin_layout Standard
26954 theight%
26955 \end_layout
26956
26957 \end_inset
26958 </cell>
26959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26960 \begin_inset Text
26961
26962 \begin_layout Standard
26963 % of text height
26964 \end_layout
26965
26966 \end_inset
26967 </cell>
26968 </row>
26969 <row topline="true">
26970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26971 \begin_inset Text
26972
26973 \begin_layout Standard
26974 pheight%
26975 \end_layout
26976
26977 \end_inset
26978 </cell>
26979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26980 \begin_inset Text
26981
26982 \begin_layout Standard
26983 % of paper height
26984 \end_layout
26985
26986 \end_inset
26987 </cell>
26988 </row>
26989 <row topline="true">
26990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26991 \begin_inset Text
26992
26993 \begin_layout Standard
26994 ex
26995 \end_layout
26996
26997 \end_inset
26998 </cell>
26999 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27000 \begin_inset Text
27001
27002 \begin_layout Standard
27003 height of letter 
27004 \emph on
27005 x
27006 \emph default
27007  in current font
27008 \end_layout
27009
27010 \end_inset
27011 </cell>
27012 </row>
27013 <row topline="true">
27014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27015 \begin_inset Text
27016
27017 \begin_layout Standard
27018 em
27019 \end_layout
27020
27021 \end_inset
27022 </cell>
27023 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27024 \begin_inset Text
27025
27026 \begin_layout Standard
27027 width of letter 
27028 \emph on
27029 M
27030 \emph default
27031  in current font
27032 \end_layout
27033
27034 \end_inset
27035 </cell>
27036 </row>
27037 <row topline="true" bottomline="true">
27038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27039 \begin_inset Text
27040
27041 \begin_layout Standard
27042 mu
27043 \end_layout
27044
27045 \end_inset
27046 </cell>
27047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27048 \begin_inset Text
27049
27050 \begin_layout Standard
27051 math unit (1\InsetSpace \thinspace{}
27052 mu = 1/18\InsetSpace \thinspace{}
27053 em)
27054 \end_layout
27055
27056 \end_inset
27057 </cell>
27058 </row>
27059 </lyxtabular>
27060
27061 \end_inset
27062
27063
27064 \end_layout
27065
27066 \end_inset
27067
27068
27069 \end_layout
27070
27071 \begin_layout Chapter
27072 Output File Formats with Graphics
27073 \begin_inset LatexCommand label
27074 name "cha:Output-File-Formats"
27075
27076 \end_inset
27077
27078
27079 \end_layout
27080
27081 \begin_layout Section
27082 DVI
27083 \begin_inset LatexCommand index
27084 name "File Formats ! DVI"
27085
27086 \end_inset
27087
27088
27089 \begin_inset LatexCommand index
27090 name "DVI|see{File Formats}"
27091
27092 \end_inset
27093
27094
27095 \end_layout
27096
27097 \begin_layout Standard
27098 This file type has the extension 
27099 \begin_inset Quotes eld
27100 \end_inset
27101
27102
27103 \family typewriter
27104 .dvi
27105 \family default
27106
27107 \begin_inset Quotes erd
27108 \end_inset
27109
27110 .
27111  It is called 
27112 \begin_inset Quotes eld
27113 \end_inset
27114
27115 device-independent
27116 \begin_inset Quotes erd
27117 \end_inset
27118
27119  (DVI), because it is completely portable; you can move them from one machine
27120  to another without needing to do any sort of conversion.
27121  At the time when this file-format was developed, this was no matter of
27122  course.
27123  DVIs are used for quick previews and as pre-stage for other output formats,
27124  like PostScript.
27125 \end_layout
27126
27127 \begin_layout Standard
27128 \begin_inset Note Greyedout
27129 status open
27130
27131 \begin_layout Standard
27132
27133 \series bold
27134 Note:
27135 \series default
27136  DVI-files doesn't contain images, they will only be a linked.
27137 \end_layout
27138
27139 \end_inset
27140
27141  So don't forget this, if you move your 
27142 \family typewriter
27143 .dvi
27144 \family default
27145  file to another computer.
27146  This property can also slow down your computer when you view the DVI.
27147  Because the DVI-viewer has to convert the image in the background to make
27148  it visible when you scroll in the DVI.
27149  So we recommend to use PDF for files with many images.
27150 \end_layout
27151
27152 \begin_layout Standard
27153 You can export your document to DVI by using the menu 
27154 \family sans
27155 File\SpecialChar \menuseparator
27156 Export\SpecialChar \menuseparator
27157 DVI
27158 \family default
27159 .
27160  You can view your document as DVI via the 
27161 \family sans
27162 View
27163 \family default
27164  menu or by using the toolbar button 
27165 \begin_inset Graphics
27166         filename ../images/buffer-view_dvi.xpm
27167         scale 85
27168
27169 \end_inset
27170
27171 .
27172 \end_layout
27173
27174 \begin_layout Section
27175 PostScript
27176 \begin_inset LatexCommand label
27177 name "sec:PostScript"
27178
27179 \end_inset
27180
27181
27182 \begin_inset LatexCommand index
27183 name "File Formats ! PostScript\\protect\\pagebreak"
27184
27185 \end_inset
27186
27187
27188 \begin_inset LatexCommand index
27189 name "PostScript|see{File Formats}"
27190
27191 \end_inset
27192
27193
27194 \end_layout
27195
27196 \begin_layout Standard
27197 This file type has the extension 
27198 \begin_inset Quotes eld
27199 \end_inset
27200
27201
27202 \family typewriter
27203 .ps
27204 \family default
27205
27206 \begin_inset Quotes erd
27207 \end_inset
27208
27209 .
27210  PostScript was developed by the company 
27211 \family typewriter
27212 Adobe
27213 \family default
27214  as printer language.
27215  The file contains therefore commands that the printer uses to print the
27216  file.
27217  PostScript can be seen as 
27218 \begin_inset Quotes eld
27219 \end_inset
27220
27221 programming language
27222 \begin_inset Quotes erd
27223 \end_inset
27224
27225 ; you can calculate with it and draw diagrams and images
27226 \begin_inset Foot
27227 status collapsed
27228
27229 \begin_layout Standard
27230 If you are interested to learn more about this, have a look at the LaTeX-package
27231  
27232 \series bold
27233 PSTricks
27234 \series default
27235  
27236 \begin_inset LatexCommand cite
27237 key "pstricks"
27238
27239 \end_inset
27240
27241 .
27242 \end_layout
27243
27244 \end_inset
27245
27246 .
27247  Due to this ability, the files are often bigger than PDFs.
27248 \end_layout
27249
27250 \begin_layout Standard
27251 PostScript can only contain images in the format 
27252 \begin_inset Quotes eld
27253 \end_inset
27254
27255 Encapsulated PostScript
27256 \begin_inset Quotes erd
27257 \end_inset
27258
27259  (EPS, file extension 
27260 \begin_inset Quotes eld
27261 \end_inset
27262
27263
27264 \family typewriter
27265 .eps
27266 \family default
27267
27268 \begin_inset Quotes erd
27269 \end_inset
27270
27271 ).
27272  As LyX allows you to use any known image format in your document, it has
27273  to convert images in the background to EPS.
27274  If you have e.g 50 images in your document, LyX has to do 50 conversions
27275  whenever you view or export your document.
27276  This will slow down your work flow with LyX drastically.
27277  So if you plan to use PostScript, you can insert your images directly as
27278  EPS to avoid this problem.
27279 \end_layout
27280
27281 \begin_layout Standard
27282 You can export your document to PostScript using the menu 
27283 \family sans
27284 File\SpecialChar \menuseparator
27285 Export\SpecialChar \menuseparator
27286 Postscript
27287 \family default
27288 .
27289  You can view your document as PostScript via the 
27290 \family sans
27291 View
27292 \family default
27293  menu or by using the toolbar button 
27294 \begin_inset Graphics
27295         filename ../images/buffer-view_ps.xpm
27296         scale 85
27297
27298 \end_inset
27299
27300 .
27301 \end_layout
27302
27303 \begin_layout Section
27304 PDF
27305 \begin_inset LatexCommand label
27306 name "sec:PDF"
27307
27308 \end_inset
27309
27310
27311 \begin_inset LatexCommand index
27312 name "File Formats ! PDF"
27313
27314 \end_inset
27315
27316
27317 \begin_inset LatexCommand index
27318 name "PDF"
27319
27320 \end_inset
27321
27322
27323 \end_layout
27324
27325 \begin_layout Standard
27326 This file type has the extension 
27327 \begin_inset Quotes eld
27328 \end_inset
27329
27330
27331 \family typewriter
27332 .pdf
27333 \family default
27334
27335 \begin_inset Quotes erd
27336 \end_inset
27337
27338 .
27339  The 
27340 \begin_inset Quotes eld
27341 \end_inset
27342
27343 Portable Document Format
27344 \begin_inset Quotes erd
27345 \end_inset
27346
27347  (PDF) is developed by 
27348 \family typewriter
27349 Adobe
27350 \family default
27351  as derivative from PostScript.
27352  It is more compressed and it uses much less commands than PostScript.
27353  As the name 
27354 \begin_inset Quotes eld
27355 \end_inset
27356
27357 portable
27358 \begin_inset Quotes erd
27359 \end_inset
27360
27361  implies, it can be processed at any computer system and the printed output
27362  looks exactly the same.
27363 \end_layout
27364
27365 \begin_layout Standard
27366 PDF can contain images in its own PDF format, in the format 
27367 \begin_inset Quotes eld
27368 \end_inset
27369
27370 Joint Photographic Experts Group
27371 \begin_inset Quotes erd
27372 \end_inset
27373
27374  (JPG, file extension 
27375 \begin_inset Quotes eld
27376 \end_inset
27377
27378
27379 \family typewriter
27380 .jpg
27381 \family default
27382
27383 \begin_inset Quotes erd
27384 \end_inset
27385
27386  or 
27387 \begin_inset Quotes eld
27388 \end_inset
27389
27390
27391 \family typewriter
27392 .jpeg
27393 \family default
27394
27395 \begin_inset Quotes erd
27396 \end_inset
27397
27398 ), and in the format 
27399 \begin_inset Quotes eld
27400 \end_inset
27401
27402 Portable Network Graphics
27403 \begin_inset Quotes erd
27404 \end_inset
27405
27406  (PNG, file extension 
27407 \begin_inset Quotes eld
27408 \end_inset
27409
27410
27411 \family typewriter
27412 .png
27413 \family default
27414
27415 \begin_inset Quotes erd
27416 \end_inset
27417
27418 ).
27419  You can although use any other image format, because LyX converts them
27420  in the background to one of these formats.
27421  But as described in the section about PostScript, the image conversion
27422  will slow down your work flow.
27423  So it is recommended to use images in one of the three mentioned formats.
27424 \end_layout
27425
27426 \begin_layout Standard
27427 You can export your document to PDF via the menu 
27428 \family sans
27429 File\SpecialChar \menuseparator
27430 Export
27431 \family default
27432  in three different ways:
27433 \end_layout
27434
27435 \begin_layout Description
27436 PDF This uses the program 
27437 \family typewriter
27438 ps2pdf
27439 \family default
27440  that creates a PDF from a PostScript-version of your file.
27441  The PostScript-version is produced by the program 
27442 \family typewriter
27443 dvips
27444 \family default
27445  which uses a DVI-version as intermediate step.
27446  So this export variant consist of three conversions.
27447 \end_layout
27448
27449 \begin_layout Description
27450 PDF\InsetSpace ~
27451 (dvipdfm) This uses the program 
27452 \family typewriter
27453 dvipdfm
27454 \family default
27455  that converts your file in the background to DVI and in a second step to
27456  PDF.
27457 \end_layout
27458
27459 \begin_layout Description
27460 PDF\InsetSpace ~
27461 (pdflatex) This uses the program 
27462 \family typewriter
27463 pdftex
27464 \family default
27465  that converts your file directly to PDF.
27466 \end_layout
27467
27468 \begin_layout Standard
27469 It is recommended to use 
27470 \family sans
27471 PDF\InsetSpace ~
27472 (pdflatex)
27473 \family default
27474  because 
27475 \family typewriter
27476 pdftex
27477 \family default
27478  supports all features of actual PDF-versions, is quick and works stable
27479  without problems.
27480  The program 
27481 \family typewriter
27482 dvipdfm
27483 \family default
27484  is not under development and therefore a bit outdated.
27485 \end_layout
27486
27487 \begin_layout Standard
27488 You can view your document as PDF via the 
27489 \family sans
27490 View
27491 \family default
27492  menu or by using the toolbar button 
27493 \begin_inset Graphics
27494         filename ../images/buffer-view_pdf2.xpm
27495         scale 85
27496
27497 \end_inset
27498
27499  
27500 \family sans
27501 (
27502 \family default
27503 that uses 
27504 \family sans
27505 PDF\InsetSpace ~
27506 (pdflatex)
27507 \family default
27508 ).
27509 \end_layout
27510
27511 \begin_layout Chapter
27512 Explanation of Equation\InsetSpace ~
27513
27514 \begin_inset LatexCommand eqref
27515 reference "eq:Wgn"
27516
27517 \end_inset
27518
27519
27520 \begin_inset LatexCommand label
27521 name "cha:Explanation-of-Equation"
27522
27523 \end_inset
27524
27525
27526 \end_layout
27527
27528 \begin_layout Standard
27529 The total width of 
27530 \emph on
27531 n
27532 \emph default
27533  table cells 
27534 \begin_inset Formula $W_{\mathrm{tot\, n}}$
27535 \end_inset
27536
27537  can be calculated to
27538 \end_layout
27539
27540 \begin_layout Standard
27541 \begin_inset Formula \begin{equation}
27542 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
27543
27544 \end_inset
27545
27546
27547 \end_layout
27548
27549 \begin_layout Standard
27550 Where 
27551 \begin_inset Formula $W_{g\, n}$
27552 \end_inset
27553
27554  is the given width of all cells.
27555  
27556 \series bold
27557
27558 \backslash
27559 tabcolsep
27560 \series default
27561  is the LaTeX-length between the cell text and the cell border, its default
27562  value is 6\InsetSpace \thinspace{}
27563 pt.
27564  
27565 \series bold
27566
27567 \backslash
27568 arrayrulewidth
27569 \series default
27570  is the thickness of the cell border line, the default is 0.4\InsetSpace \thinspace{}
27571 pt.
27572 \end_layout
27573
27574 \begin_layout Standard
27575 Following equation\InsetSpace ~
27576
27577 \begin_inset LatexCommand eqref
27578 reference "eq:Wtot_n"
27579
27580 \end_inset
27581
27582 , the total width of a multicolumn 
27583 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
27584 \end_inset
27585
27586  is
27587 \end_layout
27588
27589 \begin_layout Standard
27590 \begin_inset Formula \begin{equation}
27591 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
27592
27593 \end_inset
27594
27595
27596 \end_layout
27597
27598 \begin_layout Standard
27599 By setting equation\InsetSpace ~
27600
27601 \begin_inset LatexCommand eqref
27602 reference "eq:Wtot_n"
27603
27604 \end_inset
27605
27606  and 
27607 \begin_inset LatexCommand eqref
27608 reference "eq:Wtot_mult"
27609
27610 \end_inset
27611
27612  equal we can calculate the needed given width 
27613 \begin_inset Formula $W_{g\, n}$
27614 \end_inset
27615
27616  when 
27617 \emph on
27618 n
27619 \emph default
27620  columns are spanned, so that each column has a total width of 
27621 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
27622 \end_inset
27623
27624 :
27625 \end_layout
27626
27627 \begin_layout Standard
27628 \begin_inset Formula \begin{equation}
27629 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
27630
27631 \end_inset
27632
27633
27634 \end_layout
27635
27636 \begin_layout Bibliography
27637 \begin_inset LatexCommand bibitem
27638 key "latexcompanion"
27639
27640 \end_inset
27641
27642 Frank Mittelbach and Michel Goossens: 
27643 \emph on
27644 The LaTeX Companion Second Edition.
27645
27646 \emph default
27647  Addison-Wesley, 2004
27648 \end_layout
27649
27650 \begin_layout Bibliography
27651 \begin_inset LatexCommand bibitem
27652 key "latexguide"
27653
27654 \end_inset
27655
27656 Helmut Kopka and Patrick W.
27657  Daly: 
27658 \emph on
27659 A Guide to LaTeX Fourth Edition.
27660
27661 \emph default
27662  Addison-Wesley, 2003
27663 \end_layout
27664
27665 \begin_layout Bibliography
27666 \begin_inset LatexCommand bibitem
27667 key "latexbook"
27668
27669 \end_inset
27670
27671 Leslie Lamport: 
27672 \emph on
27673 LaTeX: A Document Preparation System.
27674
27675 \emph default
27676  Addison-Wesley, second edition, 1994
27677 \end_layout
27678
27679 \begin_layout Bibliography
27680 \begin_inset LatexCommand bibitem
27681 key "booktabs"
27682
27683 \end_inset
27684
27685
27686 \begin_inset ERT
27687 status collapsed
27688
27689 \begin_layout Standard
27690
27691
27692 \backslash
27693 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
27694 {
27695 \end_layout
27696
27697 \end_inset
27698
27699 Documentation
27700 \begin_inset ERT
27701 status collapsed
27702
27703 \begin_layout Standard
27704
27705 }
27706 \end_layout
27707
27708 \end_inset
27709
27710  of the LaTeX-package 
27711 \series bold
27712 booktabs
27713 \series default
27714
27715 \begin_inset LatexCommand index
27716 name "LaTeX-packages ! booktabs"
27717
27718 \end_inset
27719
27720
27721 \end_layout
27722
27723 \begin_layout Bibliography
27724 \begin_inset LatexCommand bibitem
27725 key "caption"
27726
27727 \end_inset
27728
27729
27730 \begin_inset ERT
27731 status collapsed
27732
27733 \begin_layout Standard
27734
27735
27736 \backslash
27737 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
27738 \end_layout
27739
27740 \end_inset
27741
27742 Documentation
27743 \begin_inset ERT
27744 status collapsed
27745
27746 \begin_layout Standard
27747
27748 }
27749 \end_layout
27750
27751 \end_inset
27752
27753  of the LaTeX-package 
27754 \series bold
27755 caption
27756 \series default
27757
27758 \begin_inset LatexCommand index
27759 name "LaTeX-packages ! caption"
27760
27761 \end_inset
27762
27763
27764 \end_layout
27765
27766 \begin_layout Bibliography
27767 \begin_inset LatexCommand bibitem
27768 key "caption-de"
27769
27770 \end_inset
27771
27772 German 
27773 \begin_inset ERT
27774 status collapsed
27775
27776 \begin_layout Standard
27777
27778
27779 \backslash
27780 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
27781 {
27782 \end_layout
27783
27784 \end_inset
27785
27786 documentation
27787 \begin_inset ERT
27788 status collapsed
27789
27790 \begin_layout Standard
27791
27792 }
27793 \end_layout
27794
27795 \end_inset
27796
27797  of the LaTeX-package 
27798 \series bold
27799 caption
27800 \end_layout
27801
27802 \begin_layout Bibliography
27803 \begin_inset LatexCommand bibitem
27804 key "endfloat"
27805
27806 \end_inset
27807
27808
27809 \begin_inset ERT
27810 status collapsed
27811
27812 \begin_layout Standard
27813
27814
27815 \backslash
27816 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
27817 {
27818 \end_layout
27819
27820 \end_inset
27821
27822 Documentation
27823 \begin_inset ERT
27824 status collapsed
27825
27826 \begin_layout Standard
27827
27828 }
27829 \end_layout
27830
27831 \end_inset
27832
27833  of the LaTeX-package 
27834 \series bold
27835 endf\SpecialChar \textcompwordmark{}
27836 loat
27837 \series default
27838
27839 \begin_inset LatexCommand index
27840 name "LaTeX-packages ! endfloat"
27841
27842 \end_inset
27843
27844
27845 \end_layout
27846
27847 \begin_layout Bibliography
27848 \begin_inset LatexCommand bibitem
27849 key "floatflt"
27850
27851 \end_inset
27852
27853
27854 \begin_inset ERT
27855 status collapsed
27856
27857 \begin_layout Standard
27858
27859
27860 \backslash
27861 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
27862 {
27863 \end_layout
27864
27865 \end_inset
27866
27867 Documentation
27868 \begin_inset ERT
27869 status collapsed
27870
27871 \begin_layout Standard
27872
27873 }
27874 \end_layout
27875
27876 \end_inset
27877
27878  of the LaTeX-package 
27879 \series bold
27880 floatf\SpecialChar \textcompwordmark{}
27881 lt
27882 \series default
27883
27884 \begin_inset LatexCommand index
27885 name "LaTeX-packages ! floatflt"
27886
27887 \end_inset
27888
27889
27890 \end_layout
27891
27892 \begin_layout Bibliography
27893 \begin_inset LatexCommand bibitem
27894 key "footmisc"
27895
27896 \end_inset
27897
27898
27899 \begin_inset ERT
27900 status collapsed
27901
27902 \begin_layout Standard
27903
27904
27905 \backslash
27906 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
27907 {
27908 \end_layout
27909
27910 \end_inset
27911
27912 Documentation
27913 \begin_inset ERT
27914 status collapsed
27915
27916 \begin_layout Standard
27917
27918 }
27919 \end_layout
27920
27921 \end_inset
27922
27923  of the LaTeX-package 
27924 \series bold
27925 footmisc
27926 \series default
27927
27928 \begin_inset LatexCommand index
27929 name "LaTeX-packages ! footmisc"
27930
27931 \end_inset
27932
27933
27934 \end_layout
27935
27936 \begin_layout Bibliography
27937 \begin_inset LatexCommand bibitem
27938 key "hypcap"
27939
27940 \end_inset
27941
27942
27943 \begin_inset ERT
27944 status collapsed
27945
27946 \begin_layout Standard
27947
27948
27949 \backslash
27950 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
27951 \end_layout
27952
27953 \end_inset
27954
27955 Documentation
27956 \begin_inset ERT
27957 status collapsed
27958
27959 \begin_layout Standard
27960
27961 }
27962 \end_layout
27963
27964 \end_inset
27965
27966  of the LaTeX-package 
27967 \series bold
27968 hypcap
27969 \series default
27970
27971 \begin_inset LatexCommand index
27972 name "LaTeX-packages ! hyperref"
27973
27974 \end_inset
27975
27976
27977 \end_layout
27978
27979 \begin_layout Bibliography
27980 \begin_inset LatexCommand bibitem
27981 key "hyperref"
27982
27983 \end_inset
27984
27985
27986 \begin_inset ERT
27987 status collapsed
27988
27989 \begin_layout Standard
27990
27991
27992 \backslash
27993 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
27994 {
27995 \end_layout
27996
27997 \end_inset
27998
27999 Documentation
28000 \begin_inset ERT
28001 status collapsed
28002
28003 \begin_layout Standard
28004
28005 }
28006 \end_layout
28007
28008 \end_inset
28009
28010  of the LaTeX-package 
28011 \series bold
28012 hyperref
28013 \series default
28014
28015 \begin_inset LatexCommand index
28016 name "LaTeX-packages ! hyperref"
28017
28018 \end_inset
28019
28020
28021 \end_layout
28022
28023 \begin_layout Bibliography
28024 \begin_inset LatexCommand bibitem
28025 key "koma-script"
28026
28027 \end_inset
28028
28029
28030 \begin_inset ERT
28031 status collapsed
28032
28033 \begin_layout Standard
28034
28035
28036 \backslash
28037 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
28038 df}{
28039 \end_layout
28040
28041 \end_inset
28042
28043 Documentation
28044 \begin_inset ERT
28045 status collapsed
28046
28047 \begin_layout Standard
28048
28049 }
28050 \end_layout
28051
28052 \end_inset
28053
28054  of the LaTeX-package 
28055 \series bold
28056 koma-script
28057 \series default
28058
28059 \begin_inset LatexCommand index
28060 name "LaTeX-packages ! koma-script"
28061
28062 \end_inset
28063
28064
28065 \end_layout
28066
28067 \begin_layout Bibliography
28068 \begin_inset LatexCommand bibitem
28069 key "koma-script-de"
28070
28071 \end_inset
28072
28073 German 
28074 \begin_inset ERT
28075 status collapsed
28076
28077 \begin_layout Standard
28078
28079
28080 \backslash
28081 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
28082 df}{
28083 \end_layout
28084
28085 \end_inset
28086
28087 documentation
28088 \begin_inset ERT
28089 status collapsed
28090
28091 \begin_layout Standard
28092
28093 }
28094 \end_layout
28095
28096 \end_inset
28097
28098  of the LaTeX-package 
28099 \series bold
28100 koma-script
28101 \series default
28102
28103 \begin_inset LatexCommand index
28104 name "LaTeX-packages ! koma-script"
28105
28106 \end_inset
28107
28108
28109 \end_layout
28110
28111 \begin_layout Bibliography
28112 \begin_inset LatexCommand bibitem
28113 key "marginnote"
28114
28115 \end_inset
28116
28117
28118 \begin_inset ERT
28119 status collapsed
28120
28121 \begin_layout Standard
28122
28123
28124 \backslash
28125 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
28126 pdf}{
28127 \end_layout
28128
28129 \end_inset
28130
28131 Documentation
28132 \begin_inset ERT
28133 status collapsed
28134
28135 \begin_layout Standard
28136
28137 }
28138 \end_layout
28139
28140 \end_inset
28141
28142  of the LaTeX-package 
28143 \series bold
28144 marginnote
28145 \series default
28146
28147 \begin_inset LatexCommand index
28148 name "LaTeX-packages ! marginnote"
28149
28150 \end_inset
28151
28152
28153 \end_layout
28154
28155 \begin_layout Bibliography
28156 \begin_inset LatexCommand bibitem
28157 key "pstricks"
28158
28159 \end_inset
28160
28161
28162 \begin_inset ERT
28163 status collapsed
28164
28165 \begin_layout Standard
28166
28167
28168 \backslash
28169 href{http://tug.org/PSTricks/main.cgi/}{
28170 \end_layout
28171
28172 \end_inset
28173
28174 Web page
28175 \begin_inset ERT
28176 status collapsed
28177
28178 \begin_layout Standard
28179
28180 }
28181 \end_layout
28182
28183 \end_inset
28184
28185  of the LaTeX-package 
28186 \series bold
28187 PSTricks
28188 \series default
28189
28190 \begin_inset LatexCommand index
28191 name "LaTeX-packages ! PSTricks"
28192
28193 \end_inset
28194
28195
28196 \end_layout
28197
28198 \begin_layout Bibliography
28199 \begin_inset LatexCommand bibitem
28200 key "sidecap"
28201
28202 \end_inset
28203
28204
28205 \begin_inset ERT
28206 status collapsed
28207
28208 \begin_layout Standard
28209
28210
28211 \backslash
28212 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
28213 \end_layout
28214
28215 \end_inset
28216
28217 Documentation
28218 \begin_inset ERT
28219 status collapsed
28220
28221 \begin_layout Standard
28222
28223 }
28224 \end_layout
28225
28226 \end_inset
28227
28228  of the LaTeX-package 
28229 \series bold
28230 sidecap
28231 \series default
28232
28233 \begin_inset LatexCommand index
28234 name "LaTeX-packages ! sidecap"
28235
28236 \end_inset
28237
28238
28239 \end_layout
28240
28241 \begin_layout Bibliography
28242 \begin_inset LatexCommand bibitem
28243 key "NewInLyX15"
28244
28245 \end_inset
28246
28247
28248 \begin_inset ERT
28249 status collapsed
28250
28251 \begin_layout Standard
28252
28253
28254 \backslash
28255 href{http://wiki.lyx.org/LyX/NewInLyX15}{
28256 \end_layout
28257
28258 \end_inset
28259
28260 Wiki page
28261 \begin_inset ERT
28262 status collapsed
28263
28264 \begin_layout Standard
28265
28266 }
28267 \end_layout
28268
28269 \end_inset
28270
28271  about new LyX-features planned for the release 
28272 \family sans
28273 LyX 1.5
28274 \family default
28275 .
28276 \end_layout
28277
28278 \begin_layout Standard
28279 \begin_inset LatexCommand printindex
28280
28281 \end_inset
28282
28283
28284 \end_layout
28285
28286 \begin_layout Standard
28287 \begin_inset FloatList figure
28288
28289 \end_inset
28290
28291
28292 \end_layout
28293
28294 \begin_layout Standard
28295 \begin_inset FloatList table
28296
28297 \end_inset
28298
28299
28300 \end_layout
28301
28302 \end_body
28303 \end_document