]> git.lyx.org Git - lyx.git/blob - lib/doc/EmbeddedObjects.lyx
thanks to Ignacio Garcia: EmbeddedObjects
[lyx.git] / lib / doc / EmbeddedObjects.lyx
1 #LyX 1.5.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 258
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  \clearpage
52  \pagenumbering{arabic}}
53
54 % provides caption formatting
55 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}
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 % use the marginnote package for margin notes
80 \usepackage{marginnote}
81 \let\marginpar\marginnote
82
83 % enables calculation of values,
84 \usepackage{calc}
85
86 % provides special table cell alignments
87 \usepackage{dcolumn}
88
89 % increase the bottom float placement fraction
90 \renewcommand{\bottomfraction}{0.5}
91
92 % avoids that floats are placed before their
93 % corresponding section starts
94 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
95
96 % speed up the longtable calculation
97 \setcounter{LTchunksize}{100}
98
99 % define a new reference format
100 \newrefformat{fig}
101  {Figure~float~\ref{#1} printed on page~\pageref{#1}}
102
103 % used for colored tables
104 \@ifundefined{textcolor}
105  {\usepackage{color}}{}
106 \usepackage{colortbl}
107 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
108 \definecolor{lightgrey}{gray}{0.8}
109
110 % used for tables with dashed lines
111 \usepackage{arydshln}
112
113 % used for multirows
114 \usepackage{multirow}
115 %\renewcommand{\multirowsetup}{\centering}
116
117 % used for book-style tables
118 \usepackage{booktabs}
119
120 % used to have extra space in table cells,
121 \setlength{\extrarowheight}{2pt}
122
123 % used for customized tables
124 % ---
125 \newcolumntype{M}[1]
126  {>{\centering\hspace{0pt}}m{#1}}
127
128 \newcolumntype{S}[2]
129  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
130
131 \newcolumntype{K}[1]
132  {>{\columncolor{#1}\hspace{0pt}}c}
133
134 \newcolumntype{V}{!{\vrule width 1.5pt}}
135
136 \newcolumntype{W}{!{\color{green}\vline}}
137 % ---
138
139 % To be able to enter the characters ° and · directly in LyX
140 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
141 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
142
143 % insert additional vertical space of
144 % 1.5 mm between footnotes
145 \let\myFoot\footnote
146 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
147
148 % enable algorithm floats to be referenced
149 \newfloat{Xalgorithm}{tbp}{loa}
150 \floatname{Xalgorithm}{Algorithm}
151 \newcommand{\theHalgorithm}{\theHXalgorithm}
152 \renewenvironment{algorithm}[1][tbp]
153  {\begin{Xalgorithm}[#1]}{\end{Xalgorithm}}
154
155 % number algorithm floats within chapters
156 \numberwithin{Xalgorithm}{chapter}
157
158 % redefine the greyed out note
159 \renewenvironment{lyxgreyedout}
160  {\textcolor{blue}\bgroup}{\egroup}
161 \end_preamble
162 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage
163 \language english
164 \inputencoding auto
165 \font_roman default
166 \font_sans default
167 \font_typewriter default
168 \font_default_family default
169 \font_sc false
170 \font_osf false
171 \font_sf_scale 100
172 \font_tt_scale 100
173 \graphics default
174 \paperfontsize 12
175 \spacing single
176 \papersize default
177 \use_geometry false
178 \use_amsmath 2
179 \use_esint 0
180 \cite_engine basic
181 \use_bibtopic false
182 \paperorientation portrait
183 \secnumdepth 3
184 \tocdepth 3
185 \paragraph_separation skip
186 \defskip medskip
187 \quotes_language english
188 \papercolumns 1
189 \papersides 2
190 \paperpagestyle default
191 \bullet 1 1 34 -1
192 \bullet 2 2 35 -1
193 \bullet 3 2 7 -1
194 \tracking_changes false
195 \output_changes true
196 \author "usti" 
197 \end_header
198
199 \begin_body
200
201 \begin_layout Title
202 LyX's detailed Figure, Table, Floats, Notes, and Boxes manual
203 \end_layout
204
205 \begin_layout Author
206 by the LyX Team
207 \begin_inset Foot
208 status collapsed
209
210 \begin_layout Standard
211 \noindent
212 If you have comments or error corrections, please send them to the LyX Documenta
213 tion mailing list: 
214 \family typewriter
215
216 \begin_inset ERT
217 status open
218
219 \begin_layout Standard
220
221
222 \backslash
223 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's ExtendedInsets manual}{
224 \end_layout
225
226 \end_inset
227
228 lyx-docs@lists.lyx.org
229 \begin_inset ERT
230 status collapsed
231
232 \begin_layout Standard
233
234 }
235 \end_layout
236
237 \end_inset
238
239
240 \end_layout
241
242 \end_inset
243
244
245 \begin_inset Note Note
246 status collapsed
247
248 \begin_layout Standard
249 original author: Uwe Stöhr <uwestoehr@web.de>
250 \end_layout
251
252 \end_inset
253
254
255 \newline
256
257 \newline
258
259 \family sans
260 Version 1.5.0-
261 \family default
262 1
263 \end_layout
264
265 \begin_layout Standard
266 \begin_inset LatexCommand tableofcontents
267
268 \end_inset
269
270
271 \end_layout
272
273 \begin_layout Standard
274 \begin_inset Note Note
275 status open
276
277 \begin_layout Standard
278 To export this document to PDF, PS, or DVI the LaTeX-packages 
279 \series bold
280 arydshln
281 \series default
282
283 \series bold
284 marginnote
285 \series default
286 , and 
287 \series bold
288 prettyref
289 \series default
290  must be installed.
291 \end_layout
292
293 \begin_layout Standard
294 The latest PDF-version of this document can be found here:
295 \newline
296
297 \series bold
298 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
299 \end_layout
300
301 \end_inset
302
303
304 \end_layout
305
306 \begin_layout Chapter
307 Figures
308 \begin_inset LatexCommand label
309 name "cha:Figures"
310
311 \end_inset
312
313
314 \begin_inset LatexCommand index
315 name "Figure"
316
317 \end_inset
318
319
320 \end_layout
321
322 \begin_layout Section
323 Graphics Dialog
324 \begin_inset LatexCommand index
325 name "Figure ! Graphics Dialog"
326
327 \end_inset
328
329
330 \end_layout
331
332 \begin_layout Standard
333 To insert an image into your document, place the cursor at the text position
334  you want and click on the toolbar icon 
335 \begin_inset Graphics
336         filename ../images/dialog-show-new-inset_graphics.xpm
337         scale 85
338
339 \end_inset
340
341  or use the menu 
342 \family sans
343 Insert\SpecialChar \menuseparator
344 Graphics
345 \family default
346 .
347  Then a dialog will appear to choose the file to load.
348  The image will appear in the output exactly at the position where it is
349  in the text.
350 \end_layout
351
352 \begin_layout Standard
353 The graphics dialog can be called at any time by right-clicking on an image.
354  This dialog has three tabs:
355 \end_layout
356
357 \begin_layout Description
358
359 \family sans
360 Graphics
361 \family default
362  Here you can choose an image file and adjust its appearance in the output.
363  The available units for the image size are explained in appendix\InsetSpace ~
364
365 \begin_inset LatexCommand ref
366 reference "cha:Units-available-in"
367
368 \end_inset
369
370 .
371 \newline
372 You can rotate images counter-clockwise by setting a rotation angle and
373  a rotation origin.
374  The image will also be rotated inside LyX.
375 \end_layout
376
377 \begin_layout Description
378
379 \family sans
380 Clipping
381 \family default
382  Alternatively to the usage of scaling units it is possible to set image
383  coordinates to adjust the height and width of the image in the output.
384  The coordinates can also be calculated automatically by pressing the button
385  
386 \family sans
387 Get\InsetSpace ~
388 from\InsetSpace ~
389 File
390 \family default
391 .
392  The option 
393 \family sans
394 Clip\InsetSpace ~
395 to\InsetSpace ~
396 bounding\InsetSpace ~
397 box
398 \family default
399  will only print the image region within the given coordinates.
400  Normally you don't need to take care about image coordinates and can ignore
401  this tab.
402 \end_layout
403
404 \begin_layout Description
405
406 \family sans
407 Extra\InsetSpace ~
408 options
409 \family default
410  In this tab you can modify the appearance of the image within LyX and set
411  the image to be a subfigure of a figure float with an own caption.
412  Subfigures are explained in section\InsetSpace ~
413
414 \begin_inset LatexCommand ref
415 reference "sec:Figure-Floats"
416
417 \end_inset
418
419 .
420 \newline
421  LaTeX experts can also specify on this tab additional LaTeX options.
422 \newline
423  The
424  option 
425 \family sans
426 Draft\InsetSpace ~
427 mode
428 \family default
429  makes the image appear in the output only as a frame with the size of the
430  image.
431 \newline
432 The 
433 \family sans
434 Don't\InsetSpace ~
435 unzip\InsetSpace ~
436 on\InsetSpace ~
437 export
438 \family default
439  option only affects zipped EPS-graphics, e.\InsetSpace \thinspace{}
440 g.\InsetSpace ~
441
442 \emph on
443 x.eps.gz
444 \emph default
445 .
446  When the option is used the images will not be unzipped on export, since
447  LaTeX can handle them as they are.
448 \newline
449 Zipped EPS-graphics are useful to save
450  disk space when you choose PostScript as output format, see appendix\InsetSpace ~
451
452 \begin_inset LatexCommand ref
453 reference "sec:PostScript"
454
455 \end_inset
456
457 .
458  To zip EPS-graphics, use the following commands in a UNIX-shell or a Windows
459  console:
460 \newline
461
462 \series bold
463 gzip x.eps
464 \series default
465
466 \newline
467
468 \series bold
469 zgrep %%Bounding x.eps.gz > x.eps.bb
470 \series default
471
472 \newline
473 The second command creates the bounding box file 
474 \begin_inset Quotes eld
475 \end_inset
476
477 x.eps.bb
478 \begin_inset Quotes erd
479 \end_inset
480
481  that is needed by LaTeX for zipped graphics.
482 \end_layout
483
484 \begin_layout Standard
485
486 \newpage
487 This is an example image in EPS format
488 \begin_inset Foot
489 status collapsed
490
491 \begin_layout Standard
492 Image formats are explained in section\InsetSpace ~
493
494 \begin_inset LatexCommand ref
495 reference "sec:Image-Formats"
496
497 \end_inset
498
499 .
500 \end_layout
501
502 \end_inset
503
504  within a separate, horizontally centered paragraph:
505 \end_layout
506
507 \begin_layout Standard
508 \align center
509 \begin_inset Graphics
510         filename mobius.eps
511         display color
512         scale 70
513         rotateOrigin center
514
515 \end_inset
516
517
518 \end_layout
519
520 \begin_layout Standard
521 This is the same image like the one above but in draft mode:
522 \end_layout
523
524 \begin_layout Standard
525 \align center
526 \begin_inset Graphics
527         filename mobius.eps
528         display color
529         scale 70
530         draft
531         rotateOrigin center
532
533 \end_inset
534
535
536 \end_layout
537
538 \begin_layout Section
539 Figure Floats
540 \begin_inset LatexCommand label
541 name "sec:Figure-Floats"
542
543 \end_inset
544
545
546 \begin_inset LatexCommand index
547 name "Floats ! Figure Floats"
548
549 \end_inset
550
551
552 \begin_inset LatexCommand index
553 name "Figure ! Floats"
554
555 \end_inset
556
557
558 \end_layout
559
560 \begin_layout Standard
561 For general explanations about floats, have a look at section\InsetSpace ~
562
563 \begin_inset LatexCommand ref
564 reference "sec:FloatIntroduction"
565
566 \end_inset
567
568 .
569 \end_layout
570
571 \begin_layout Standard
572 The toolbar button 
573 \begin_inset Graphics
574         filename ../images/float-insert_figure.xpm
575         scale 85
576
577 \end_inset
578
579  and the menu 
580 \family sans
581 Insert\SpecialChar \menuseparator
582 Float\SpecialChar \menuseparator
583 Figure 
584 \family default
585 inserts a float with the label 
586 \begin_inset Quotes eld
587 \end_inset
588
589
590 \series bold
591 Figure\InsetSpace ~
592 #:
593 \series default
594
595 \begin_inset Quotes erd
596 \end_inset
597
598 .
599  Set the cursor behind this label, press Enter and insert the image as described
600  above to get the caption printed below the image.
601  This was done for Figure\InsetSpace ~
602
603 \begin_inset LatexCommand ref
604 reference "fig:kill-plat"
605
606 \end_inset
607
608 .
609  If you want the caption to be above the image, set the cursor at the end
610  of the caption, press enter and insert the image.
611  This was done in Figure\InsetSpace ~
612
613 \begin_inset LatexCommand ref
614 reference "fig:escher"
615
616 \end_inset
617
618 .
619  More about the caption placement is described in section\InsetSpace ~
620
621 \begin_inset LatexCommand ref
622 reference "sec:Caption-Placement"
623
624 \end_inset
625
626 .
627 \end_layout
628
629 \begin_layout Standard
630 \begin_inset Float figure
631 wide false
632 sideways false
633 status open
634
635 \begin_layout Standard
636 \align center
637 \begin_inset Graphics
638         filename platypus.eps
639         display color
640         width 50col%
641         rotateOrigin center
642
643 \end_inset
644
645
646 \end_layout
647
648 \begin_layout Standard
649 \begin_inset Caption
650
651 \begin_layout Standard
652 \begin_inset LatexCommand label
653 name "fig:kill-plat"
654
655 \end_inset
656
657 A severely distorted platypus in a float.
658 \end_layout
659
660 \end_inset
661
662
663 \end_layout
664
665 \end_inset
666
667
668 \end_layout
669
670 \begin_layout Standard
671 \begin_inset Float figure
672 wide false
673 sideways false
674 status open
675
676 \begin_layout Standard
677 \begin_inset Caption
678
679 \begin_layout Standard
680 \begin_inset LatexCommand label
681 name "fig:escher"
682
683 \end_inset
684
685 M.C.
686  Escher on acid.
687 \end_layout
688
689 \end_inset
690
691
692 \end_layout
693
694 \begin_layout Standard
695 \align center
696 \begin_inset Graphics
697         filename escher-lsd.eps
698         display color
699         scale 80
700         rotateOrigin center
701
702 \end_inset
703
704
705 \end_layout
706
707 \end_inset
708
709
710 \end_layout
711
712 \begin_layout Standard
713 \begin_inset LatexCommand index
714 name "References ! to Figures"
715
716 \end_inset
717
718 Figure\InsetSpace ~
719
720 \begin_inset LatexCommand ref
721 reference "fig:kill-plat"
722
723 \end_inset
724
725  and 
726 \begin_inset LatexCommand ref
727 reference "fig:escher"
728
729 \end_inset
730
731  are an example of cross-referenced figures.
732  Figures can be cross-referenced in the text by referencing their label.
733  To do this insert a label in the caption using the menu 
734 \family sans
735 Insert\SpecialChar \menuseparator
736 Label
737 \family default
738  or the toolbar button 
739 \begin_inset Graphics
740         filename ../images/label-insert.xpm
741         scale 85
742
743 \end_inset
744
745 .
746  You can now refer to the label using the menu 
747 \family sans
748 Insert\SpecialChar \menuseparator
749 Cross\InsetSpace ~
750 reference
751 \family default
752  or the toolbar button 
753 \begin_inset Graphics
754         filename ../images/dialog-show-new-inset_ref.xpm
755         scale 85
756
757 \end_inset
758
759 .
760  It is important to use references to floats, rather than using vague references
761  like 
762 \begin_inset Quotes eld
763 \end_inset
764
765 the figure above
766 \begin_inset Quotes erd
767 \end_inset
768
769 , because as LaTeX will reposition the floats in the final document, it
770  might not be 
771 \begin_inset Quotes eld
772 \end_inset
773
774 above
775 \begin_inset Quotes erd
776 \end_inset
777
778  at all.
779 \end_layout
780
781 \begin_layout Standard
782 Normally only one image is inserted to a figure float, but sometimes you
783  might want to use two images with separate subcaptions.
784  This can be set in the tab
785 \family sans
786  Extra\InsetSpace ~
787 options
788 \family default
789  of the graphics dialog.
790  Choose there the option 
791 \family sans
792 Subfigure
793 \family default
794  and enter the subcaption for the image in the caption field.
795  Note that only the main caption of the float is added to the List of Figures.
796 \end_layout
797
798 \begin_layout Standard
799 Figure\InsetSpace ~
800
801 \begin_inset LatexCommand ref
802 reference "fig:Two-distorted-images"
803
804 \end_inset
805
806  is an example of a figure float with two images set side by side.
807  You can also set the images one below the other.
808 \end_layout
809
810 \begin_layout Standard
811 \begin_inset Float figure
812 wide false
813 sideways false
814 status open
815
816 \begin_layout Standard
817
818 \hfill
819
820 \begin_inset Graphics
821         filename escher-lsd.eps
822         width 45col%
823         subcaption
824         subcaptionText "Undefinable structure"
825
826 \end_inset
827
828
829 \hfill
830
831 \begin_inset Graphics
832         filename platypus.eps
833         lyxscale 60
834         width 45col%
835         subcaption
836         subcaptionText "Platypus"
837
838 \end_inset
839
840
841 \hfill
842
843 \end_layout
844
845 \begin_layout Standard
846 \begin_inset Caption
847
848 \begin_layout Standard
849 \begin_inset LatexCommand label
850 name "fig:Two-distorted-images"
851
852 \end_inset
853
854 Two distorted images.
855 \end_layout
856
857 \end_inset
858
859
860 \end_layout
861
862 \end_inset
863
864
865 \end_layout
866
867 \begin_layout Section
868 Image Formats
869 \begin_inset LatexCommand label
870 name "sec:Image-Formats"
871
872 \end_inset
873
874
875 \begin_inset LatexCommand index
876 name "Image Formats"
877
878 \end_inset
879
880
881 \begin_inset LatexCommand index
882 name "Figure ! Image Formats"
883
884 \end_inset
885
886
887 \end_layout
888
889 \begin_layout Standard
890 You can insert images in any known file format.
891  But as explained in appendix\InsetSpace ~
892
893 \begin_inset LatexCommand ref
894 reference "cha:Output-File-Formats"
895
896 \end_inset
897
898 , every output document format allows only a few image formats.
899  LyX uses therefore the program 
900 \family typewriter
901 Imagemagick
902 \family default
903  in the background to convert the images to the right format.
904  To increase your work flow by avoiding these conversions in the background,
905  you can use only the image formats that can directly be embedded in the
906  output file format.
907  The output file formats are explained in appendix\InsetSpace ~
908
909 \begin_inset LatexCommand ref
910 reference "cha:Output-File-Formats"
911
912 \end_inset
913
914 .
915 \end_layout
916
917 \begin_layout Standard
918 Similar to fonts there are two types of image formats:
919 \end_layout
920
921 \begin_layout Description
922 Bitmap\InsetSpace ~
923 images consist of pixel values, often in a compressed form.
924  They are therefore not fully scalable and look pixeled in large zooms.
925  Well-known bitmap image formats are 
926 \begin_inset Quotes eld
927 \end_inset
928
929 Graphics Interchange Format
930 \begin_inset Quotes erd
931 \end_inset
932
933  (GIF, file extension 
934 \begin_inset Quotes eld
935 \end_inset
936
937
938 \family typewriter
939 .gif
940 \family default
941
942 \begin_inset Quotes erd
943 \end_inset
944
945 )
946 \begin_inset LatexCommand index
947 name "GIF|see{Image formats}"
948
949 \end_inset
950
951
952 \begin_inset Quotes eld
953 \end_inset
954
955 Portable Network Graphics
956 \begin_inset Quotes erd
957 \end_inset
958
959  (PNG, file extension 
960 \begin_inset Quotes eld
961 \end_inset
962
963
964 \family typewriter
965 .png
966 \family default
967
968 \begin_inset Quotes erd
969 \end_inset
970
971 )
972 \begin_inset LatexCommand index
973 name "PNG|see{Image formats}"
974
975 \end_inset
976
977 , and 
978 \begin_inset Quotes eld
979 \end_inset
980
981 Joint Photographic Experts Group
982 \begin_inset Quotes erd
983 \end_inset
984
985  (JPG, file extension 
986 \begin_inset Quotes eld
987 \end_inset
988
989
990 \family typewriter
991 .jpg
992 \family default
993
994 \begin_inset Quotes erd
995 \end_inset
996
997  or 
998 \begin_inset Quotes eld
999 \end_inset
1000
1001
1002 \family typewriter
1003 .jpeg
1004 \family default
1005
1006 \begin_inset Quotes erd
1007 \end_inset
1008
1009 )
1010 \begin_inset LatexCommand index
1011 name "JPG|see{Image formats}"
1012
1013 \end_inset
1014
1015 .
1016 \end_layout
1017
1018 \begin_layout Description
1019 Vector\InsetSpace ~
1020 images consist of vectors and can therefore be scaled to any size
1021  without data loss.
1022  The scaling ability is necessary if you want to create presentations, because
1023  presentations are always scaled by the video projector.
1024  Scaling is also useful for online documents to let the user zoom into diagrams.
1025 \newline
1026 W
1027 ell-known scalable image formats are 
1028 \begin_inset Quotes eld
1029 \end_inset
1030
1031 Scalable Vector Graphics
1032 \begin_inset Quotes erd
1033 \end_inset
1034
1035  (SVG, file extension 
1036 \begin_inset Quotes eld
1037 \end_inset
1038
1039
1040 \family typewriter
1041 .svg
1042 \family default
1043
1044 \begin_inset Quotes erd
1045 \end_inset
1046
1047 )
1048 \begin_inset LatexCommand index
1049 name "SVG|see{Image formats}"
1050
1051 \end_inset
1052
1053
1054 \begin_inset Quotes eld
1055 \end_inset
1056
1057 Encapsulated PostScript
1058 \begin_inset Quotes erd
1059 \end_inset
1060
1061  (EPS, file extension 
1062 \begin_inset Quotes eld
1063 \end_inset
1064
1065
1066 \family typewriter
1067 .eps
1068 \family default
1069
1070 \begin_inset Quotes erd
1071 \end_inset
1072
1073 )
1074 \begin_inset LatexCommand index
1075 name "EPS|see{Image formats}"
1076
1077 \end_inset
1078
1079
1080 \begin_inset Quotes eld
1081 \end_inset
1082
1083 Portable Document Format
1084 \begin_inset Quotes erd
1085 \end_inset
1086
1087  (PDF, file extension 
1088 \begin_inset Quotes eld
1089 \end_inset
1090
1091
1092 \family typewriter
1093 .pdf
1094 \family default
1095
1096 \begin_inset Quotes erd
1097 \end_inset
1098
1099 )
1100 \begin_inset LatexCommand index
1101 name "PDF"
1102
1103 \end_inset
1104
1105 , and 
1106 \begin_inset Quotes eld
1107 \end_inset
1108
1109 Windows Metafile
1110 \begin_inset Quotes erd
1111 \end_inset
1112
1113  (WMF, file extension 
1114 \begin_inset Quotes eld
1115 \end_inset
1116
1117
1118 \family typewriter
1119 .wmf
1120 \family default
1121
1122 \begin_inset Quotes erd
1123 \end_inset
1124
1125 )
1126 \begin_inset LatexCommand index
1127 name "SVG|see{Image formats}"
1128
1129 \end_inset
1130
1131 .
1132  We wrote 
1133 \begin_inset Quotes eld
1134 \end_inset
1135
1136 can be
1137 \begin_inset Quotes erd
1138 \end_inset
1139
1140 , because you can convert any bitmap image to a PDF or EPS-image and the
1141  result will still be a bitmap image.
1142  In this cases only a header with the image properties is added to the original
1143  image
1144 \begin_inset Foot
1145 status open
1146
1147 \begin_layout Standard
1148 In the case of PDF, the original image is additionally compressed.
1149 \end_layout
1150
1151 \end_inset
1152
1153 .
1154  The PDF-files generated by 
1155 \family typewriter
1156 Adobe Photoshop
1157 \family default
1158  are for example bitmap images.
1159 \end_layout
1160
1161 \begin_layout Standard
1162 Normally it is not possible to convert a bitmap image into a scalable one,
1163  only vice versa.
1164  Only the image formats PDF and EPS can directly be embedded to PDF and
1165  PostScript output files, respectively.
1166  SVG and WMF-images are currently recalculated to bitmaps when the output
1167  file is generated because there is currently no adequate WMF/SVG
1168 \begin_inset Formula $\to$
1169 \end_inset
1170
1171 PDF/EPS converter available.
1172 \end_layout
1173
1174 \begin_layout Chapter
1175 Tables
1176 \begin_inset LatexCommand label
1177 name "cha:Tables"
1178
1179 \end_inset
1180
1181
1182 \begin_inset LatexCommand index
1183 name "Table"
1184
1185 \end_inset
1186
1187
1188 \end_layout
1189
1190 \begin_layout Section
1191 Introduction
1192 \begin_inset LatexCommand index
1193 name "Table ! Introduction"
1194
1195 \end_inset
1196
1197
1198 \end_layout
1199
1200 \begin_layout Standard
1201 You can insert a table using either the toolbar button 
1202 \begin_inset Graphics
1203         filename ../images/tabular-insert.xpm
1204         scale 85
1205
1206 \end_inset
1207
1208  or the menu 
1209 \family sans
1210 Insert\SpecialChar \menuseparator
1211 Table
1212 \family default
1213 .
1214  The toolbar button offers you a graphical selection: Move the mouse to
1215  set the column/row number of the table that should be created and then
1216  press a mouse button.
1217  When you use the menu to create a table, a dialog will appear, asking you
1218  for the number of rows and columns.
1219 \newline
1220  The default table has lines around any
1221  cell and the first row appears separated from the rest of the table.
1222  This separation occurs due to a double line: The cells of the first row
1223  have a line below them and the cells of the second row have a line above
1224  them.
1225  Here is an example table:
1226 \end_layout
1227
1228 \begin_layout Standard
1229 \align center
1230 \begin_inset Tabular
1231 <lyxtabular version="3" rows="4" columns="4">
1232 <features>
1233 <column alignment="center" valignment="top" leftline="true" width="0">
1234 <column alignment="center" valignment="top" leftline="true" width="0">
1235 <column alignment="center" valignment="top" leftline="true" width="0">
1236 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
1237 <row topline="true" bottomline="true">
1238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1239 \begin_inset Text
1240
1241 \begin_layout Standard
1242
1243 \end_layout
1244
1245 \end_inset
1246 </cell>
1247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1248 \begin_inset Text
1249
1250 \begin_layout Standard
1251
1252 \family roman
1253 \series medium
1254 \shape up
1255 \size normal
1256 \emph off
1257 \bar no
1258 \noun off
1259 \color none
1260 1
1261 \end_layout
1262
1263 \end_inset
1264 </cell>
1265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1266 \begin_inset Text
1267
1268 \begin_layout Standard
1269 2
1270 \end_layout
1271
1272 \end_inset
1273 </cell>
1274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1275 \begin_inset Text
1276
1277 \begin_layout Standard
1278 3
1279 \end_layout
1280
1281 \end_inset
1282 </cell>
1283 </row>
1284 <row topline="true">
1285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1286 \begin_inset Text
1287
1288 \begin_layout Standard
1289
1290 \family roman
1291 \series medium
1292 \shape up
1293 \size normal
1294 \emph off
1295 \bar no
1296 \noun off
1297 \color none
1298 A
1299 \end_layout
1300
1301 \end_inset
1302 </cell>
1303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1304 \begin_inset Text
1305
1306 \begin_layout Standard
1307
1308 \end_layout
1309
1310 \end_inset
1311 </cell>
1312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1313 \begin_inset Text
1314
1315 \begin_layout Standard
1316
1317 \end_layout
1318
1319 \end_inset
1320 </cell>
1321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1322 \begin_inset Text
1323
1324 \begin_layout Standard
1325
1326 \end_layout
1327
1328 \end_inset
1329 </cell>
1330 </row>
1331 <row topline="true">
1332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1333 \begin_inset Text
1334
1335 \begin_layout Standard
1336
1337 \family roman
1338 \series medium
1339 \shape up
1340 \size normal
1341 \emph off
1342 \bar no
1343 \noun off
1344 \color none
1345 B
1346 \end_layout
1347
1348 \end_inset
1349 </cell>
1350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1351 \begin_inset Text
1352
1353 \begin_layout Standard
1354
1355 \end_layout
1356
1357 \end_inset
1358 </cell>
1359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1360 \begin_inset Text
1361
1362 \begin_layout Standard
1363
1364 \end_layout
1365
1366 \end_inset
1367 </cell>
1368 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1369 \begin_inset Text
1370
1371 \begin_layout Standard
1372
1373 \end_layout
1374
1375 \end_inset
1376 </cell>
1377 </row>
1378 <row topline="true" bottomline="true">
1379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1380 \begin_inset Text
1381
1382 \begin_layout Standard
1383
1384 \family roman
1385 \series medium
1386 \shape up
1387 \size normal
1388 \emph off
1389 \bar no
1390 \noun off
1391 \color none
1392 C
1393 \end_layout
1394
1395 \end_inset
1396 </cell>
1397 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1398 \begin_inset Text
1399
1400 \begin_layout Standard
1401
1402 \end_layout
1403
1404 \end_inset
1405 </cell>
1406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1407 \begin_inset Text
1408
1409 \begin_layout Standard
1410
1411 \end_layout
1412
1413 \end_inset
1414 </cell>
1415 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1416 \begin_inset Text
1417
1418 \begin_layout Standard
1419
1420 \end_layout
1421
1422 \end_inset
1423 </cell>
1424 </row>
1425 </lyxtabular>
1426
1427 \end_inset
1428
1429
1430 \end_layout
1431
1432 \begin_layout Section
1433 Table Dialog
1434 \begin_inset LatexCommand index
1435 name "Table ! Dialog"
1436
1437 \end_inset
1438
1439
1440 \end_layout
1441
1442 \begin_layout Standard
1443 You can alter a table by clicking on it with the right mouse button, which
1444  brings up the table dialog.
1445  Here you can adjust the settings of that cell and row/column respectively
1446  where the cursor is currently placed.
1447  Most of the dialog options also work on selections.
1448  This means if you select more cells, columns or rows, the action is done
1449  for the whole selection.
1450  Note that there is a difference between selecting the 
1451 \emph on
1452 contents
1453 \emph default
1454  of the cell, and the cell itself.
1455  You can alter tables with the following tabs of the table dialog:
1456 \end_layout
1457
1458 \begin_layout Description
1459
1460 \family sans
1461 Table\InsetSpace ~
1462 Settings
1463 \family default
1464  Here you can set the horizontal alignment for the current row and the width
1465  of the current column.
1466  When you have set a width you can also adjust the vertical alignment of
1467  the current column.
1468  A given width will allow the cell to have line breaks and multiple paragraphs
1469  of text, see section\InsetSpace ~
1470
1471 \begin_inset LatexCommand ref
1472 reference "sub:Multiple-Lines-in"
1473
1474 \end_inset
1475
1476 .
1477  If you set no width, the column is as wide as their widest cell content
1478  is.
1479 \newline
1480 Furthermore, you can mark one or multiple cells of one row as a multicolumn
1481  cell, see section\InsetSpace ~
1482
1483 \begin_inset LatexCommand ref
1484 reference "sub:Multicolumns"
1485
1486 \end_inset
1487
1488 .
1489 \newline
1490 The rotate check boxes rotates the current cell, a selection, or the whole
1491  table counter-clockwise by 90°.
1492  The rotation is not shown within LyX, only in the output.
1493 \newline
1494
1495 \begin_inset Note Greyedout
1496 status open
1497
1498 \begin_layout Standard
1499
1500 \series bold
1501 Note:
1502 \series default
1503  Not all DVI-viewers are able to display rotations.
1504 \end_layout
1505
1506 \end_inset
1507
1508
1509 \newline
1510 It is also possible to enter a LaTeX-argument which is needed for special
1511  table formattings, see section\InsetSpace ~
1512
1513 \begin_inset LatexCommand ref
1514 reference "sub:Multicolumn-Calculations"
1515
1516 \end_inset
1517
1518  and 
1519 \begin_inset LatexCommand ref
1520 reference "sec:Colored-Tables"
1521
1522 \end_inset
1523
1524 .
1525 \end_layout
1526
1527 \begin_layout Description
1528
1529 \family sans
1530 Borders
1531 \family default
1532  In this tab you can add and delete border lines for the current row/column.
1533 \newline
1534 Using
1535  the style option 
1536 \family sans
1537 Formal
1538 \family default
1539  will convert the table to a formal table as described in section\InsetSpace ~
1540
1541 \begin_inset LatexCommand ref
1542 reference "sec:Formal-Tables"
1543
1544 \end_inset
1545
1546 .
1547 \newline
1548 You can also add here space to table rows as decribed in section\InsetSpace ~
1549
1550 \begin_inset LatexCommand ref
1551 reference "sub:Row-Spacing"
1552
1553 \end_inset
1554
1555 .
1556 \end_layout
1557
1558 \begin_layout Description
1559
1560 \family sans
1561 Longtable
1562 \family default
1563  This tab is to make a table a so called 
1564 \begin_inset Quotes eld
1565 \end_inset
1566
1567
1568 \emph on
1569 longtable
1570 \emph default
1571
1572 \begin_inset Quotes erd
1573 \end_inset
1574
1575  that can run over several pages.
1576  Section\InsetSpace ~
1577
1578 \begin_inset LatexCommand ref
1579 reference "sec:Longtables"
1580
1581 \end_inset
1582
1583  and 
1584 \begin_inset LatexCommand ref
1585 reference "sec:Special-Longtable-Issues"
1586
1587 \end_inset
1588
1589  describe the longtable features in detail.
1590 \end_layout
1591
1592 \begin_layout Standard
1593 When the table toolbar is opened, you can move the cursor with the arrow
1594  keys from cell to cell and the property of the current cell will immediately
1595  be displayed in the dialog.
1596 \end_layout
1597
1598 \begin_layout Section
1599 Table Toolbar
1600 \begin_inset LatexCommand index
1601 name "Table ! Toolbar"
1602
1603 \end_inset
1604
1605
1606 \end_layout
1607
1608 \begin_layout Standard
1609 The table toolbar is an alternative to the table dialog to be able to alter
1610  tables faster.
1611  It should normally appear at the bottom of LyX's main window when the cursor
1612  is inside a table.
1613  You can alternatively switch it on to appear always, by right-clicking
1614  in LyX's main menu bar.
1615 \end_layout
1616
1617 \begin_layout Standard
1618 The toolbar has the following icons:
1619 \end_layout
1620
1621 \begin_layout Labeling
1622 \labelwidthstring 00.00.0000
1623 \begin_inset Graphics
1624         filename ../images/tabular-feature_append-row.xpm
1625
1626 \end_inset
1627
1628  adds a row below the current cell or selection
1629 \end_layout
1630
1631 \begin_layout Labeling
1632 \labelwidthstring 00.00.0000
1633 \begin_inset Graphics
1634         filename ../images/tabular-feature_append-column.xpm
1635
1636 \end_inset
1637
1638  adds a column right beside the current cell or selection
1639 \end_layout
1640
1641 \begin_layout Labeling
1642 \labelwidthstring 00.00.0000
1643 \begin_inset Graphics
1644         filename ../images/tabular-feature_delete-row.xpm
1645
1646 \end_inset
1647
1648  deletes the current row or selection
1649 \end_layout
1650
1651 \begin_layout Labeling
1652 \labelwidthstring 00.00.0000
1653 \begin_inset Graphics
1654         filename ../images/tabular-feature_delete-column.xpm
1655
1656 \end_inset
1657
1658  deletes the current column or selection
1659 \end_layout
1660
1661 \begin_layout Labeling
1662 \labelwidthstring 00.00.0000
1663 \begin_inset Graphics
1664         filename ../images/tabular-feature_toggle-line-top.xpm
1665
1666 \end_inset
1667
1668  adds a line at the top of the current cell / row or of a selection
1669 \end_layout
1670
1671 \begin_layout Labeling
1672 \labelwidthstring 00.00.0000
1673 \begin_inset Graphics
1674         filename ../images/tabular-feature_toggle-line-bottom.xpm
1675
1676 \end_inset
1677
1678  adds a line at the bottom of the current cell / row or of a selection
1679 \end_layout
1680
1681 \begin_layout Labeling
1682 \labelwidthstring 00.00.0000
1683 \begin_inset Graphics
1684         filename ../images/tabular-feature_toggle-line-left.xpm
1685
1686 \end_inset
1687
1688  adds a line at the left side of the current cell / row or of a selection
1689 \end_layout
1690
1691 \begin_layout Labeling
1692 \labelwidthstring 00.00.0000
1693 \begin_inset Graphics
1694         filename ../images/tabular-feature_toggle-line-right.xpm
1695
1696 \end_inset
1697
1698  adds a line at the right side of the current cell / row or of a selection
1699 \end_layout
1700
1701 \begin_layout Labeling
1702 \labelwidthstring 00.00.0000
1703 \begin_inset Graphics
1704         filename ../images/tabular-feature_set-all-lines.xpm
1705
1706 \end_inset
1707
1708  adds lines around the current or selected cells - if the current cell no
1709  multicolumn this also affects the current row and column
1710 \end_layout
1711
1712 \begin_layout Labeling
1713 \labelwidthstring 00.00.0000
1714 \begin_inset Graphics
1715         filename ../images/tabular-feature_unset-all-lines.xpm
1716
1717 \end_inset
1718
1719  deletes all lines of the current or selected cells - if the current cell
1720  no multicolumn this also affects the current row and column
1721 \end_layout
1722
1723 \begin_layout Labeling
1724 \labelwidthstring 00.00.0000
1725 \begin_inset Graphics
1726         filename ../images/tabular-feature_align-left.xpm
1727
1728 \end_inset
1729
1730  left-aligns the content of the current cell / column
1731 \end_layout
1732
1733 \begin_layout Labeling
1734 \labelwidthstring 00.00.0000
1735 \begin_inset Graphics
1736         filename ../images/tabular-feature_align-center.xpm
1737
1738 \end_inset
1739
1740  centers the content of the current cell / column horizontally
1741 \end_layout
1742
1743 \begin_layout Labeling
1744 \labelwidthstring 00.00.0000
1745 \begin_inset Graphics
1746         filename ../images/tabular-feature_align-right.xpm
1747
1748 \end_inset
1749
1750  right-aligns the content of the current cell / column
1751 \end_layout
1752
1753 \begin_layout Labeling
1754 \labelwidthstring 00.00.0000
1755 \begin_inset Graphics
1756         filename ../images/tabular-feature_valign-top.xpm
1757
1758 \end_inset
1759
1760  aligns the content of the current cell vertically to the top
1761 \end_layout
1762
1763 \begin_layout Labeling
1764 \labelwidthstring 00.00.0000
1765 \begin_inset Graphics
1766         filename ../images/tabular-feature_valign-middle.xpm
1767
1768 \end_inset
1769
1770  centers the content of the current cell vertically
1771 \end_layout
1772
1773 \begin_layout Labeling
1774 \labelwidthstring 00.00.0000
1775 \begin_inset Graphics
1776         filename ../images/tabular-feature_valign-bottom.xpm
1777
1778 \end_inset
1779
1780  aligns the content of the current cell vertically to the bottom
1781 \end_layout
1782
1783 \begin_layout Labeling
1784 \labelwidthstring 00.00.0000
1785 \begin_inset Graphics
1786         filename ../images/tabular-feature_set-rotate-cell.xpm
1787
1788 \end_inset
1789
1790  rotates the current cell or selection counter-clockwise by 90°
1791 \end_layout
1792
1793 \begin_layout Labeling
1794 \labelwidthstring 00.00.0000
1795 \begin_inset Graphics
1796         filename ../images/tabular-feature_set-rotate-tabular.xpm
1797
1798 \end_inset
1799
1800  rotates the whole table counter-clockwise by 90°
1801 \end_layout
1802
1803 \begin_layout Labeling
1804 \labelwidthstring 00.00.0000
1805 \begin_inset Graphics
1806         filename ../images/tabular-feature_multicolumn.xpm
1807
1808 \end_inset
1809
1810  sets the current cell or selection as a multicolumn
1811 \end_layout
1812
1813 \begin_layout Section
1814 Edit Table Menu
1815 \begin_inset LatexCommand index
1816 name "Table ! Edit Menu"
1817
1818 \end_inset
1819
1820
1821 \end_layout
1822
1823 \begin_layout Standard
1824 Additionally to the table dialog and toolbar, the menu 
1825 \family sans
1826 Edit\SpecialChar \menuseparator
1827 Table
1828 \family default
1829  allows you to add and delete border lines for the current row/column and
1830  to set the current selection as multicolumn.
1831  The menu is only available when the cursor is inside a table.
1832 \end_layout
1833
1834 \begin_layout Section
1835 Table Floats
1836 \begin_inset LatexCommand label
1837 name "sec:Table-Floats"
1838
1839 \end_inset
1840
1841
1842 \begin_inset LatexCommand index
1843 name "Floats ! Tables"
1844
1845 \end_inset
1846
1847
1848 \begin_inset LatexCommand index
1849 name "Table ! Floats"
1850
1851 \end_inset
1852
1853
1854 \end_layout
1855
1856 \begin_layout Standard
1857 For general explanations about floats, have a look at section\InsetSpace ~
1858
1859 \begin_inset LatexCommand ref
1860 reference "sec:FloatIntroduction"
1861
1862 \end_inset
1863
1864 .
1865 \end_layout
1866
1867 \begin_layout Standard
1868 \begin_inset Float table
1869 placement h
1870 wide false
1871 sideways false
1872 status open
1873
1874 \begin_layout Standard
1875 \begin_inset Caption
1876
1877 \begin_layout Standard
1878 \begin_inset LatexCommand label
1879 name "tab:a table float"
1880
1881 \end_inset
1882
1883 A table float.
1884 \end_layout
1885
1886 \end_inset
1887
1888
1889 \end_layout
1890
1891 \begin_layout Standard
1892 \align center
1893 \begin_inset Tabular
1894 <lyxtabular version="3" rows="3" columns="3">
1895 <features>
1896 <column alignment="center" valignment="top" leftline="true" width="0pt">
1897 <column alignment="center" valignment="top" leftline="true" width="0pt">
1898 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1899 <row topline="true" bottomline="true">
1900 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1901 \begin_inset Text
1902
1903 \begin_layout Standard
1904
1905 \family roman
1906 \series medium
1907 \shape up
1908 \size normal
1909 \emph off
1910 \bar no
1911 \noun off
1912 \color none
1913 1
1914 \end_layout
1915
1916 \end_inset
1917 </cell>
1918 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1919 \begin_inset Text
1920
1921 \begin_layout Standard
1922
1923 \family roman
1924 \series medium
1925 \shape up
1926 \size normal
1927 \emph off
1928 \bar no
1929 \noun off
1930 \color none
1931 2
1932 \end_layout
1933
1934 \end_inset
1935 </cell>
1936 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1937 \begin_inset Text
1938
1939 \begin_layout Standard
1940
1941 \family roman
1942 \series medium
1943 \shape up
1944 \size normal
1945 \emph off
1946 \bar no
1947 \noun off
1948 \color none
1949 3
1950 \end_layout
1951
1952 \end_inset
1953 </cell>
1954 </row>
1955 <row topline="true">
1956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1957 \begin_inset Text
1958
1959 \begin_layout Standard
1960
1961 \family roman
1962 \series medium
1963 \shape up
1964 \size normal
1965 \emph off
1966 \bar no
1967 \noun off
1968 \color none
1969 Joe
1970 \end_layout
1971
1972 \end_inset
1973 </cell>
1974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1975 \begin_inset Text
1976
1977 \begin_layout Standard
1978
1979 \family roman
1980 \series medium
1981 \shape up
1982 \size normal
1983 \emph off
1984 \bar no
1985 \noun off
1986 \color none
1987 Mary
1988 \end_layout
1989
1990 \end_inset
1991 </cell>
1992 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1993 \begin_inset Text
1994
1995 \begin_layout Standard
1996
1997 \family roman
1998 \series medium
1999 \shape up
2000 \size normal
2001 \emph off
2002 \bar no
2003 \noun off
2004 \color none
2005 Ted
2006 \end_layout
2007
2008 \end_inset
2009 </cell>
2010 </row>
2011 <row topline="true" bottomline="true">
2012 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2013 \begin_inset Text
2014
2015 \begin_layout Standard
2016
2017 \family roman
2018 \series medium
2019 \shape up
2020 \size normal
2021 \emph off
2022 \bar no
2023 \noun off
2024 \color none
2025 \begin_inset Formula $\int x^{2}dx$
2026 \end_inset
2027
2028
2029 \end_layout
2030
2031 \end_inset
2032 </cell>
2033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2034 \begin_inset Text
2035
2036 \begin_layout Standard
2037
2038 \family roman
2039 \series medium
2040 \shape up
2041 \size normal
2042 \emph off
2043 \bar no
2044 \noun off
2045 \color none
2046 \begin_inset Formula $\left[\begin{array}{cc}
2047 a & b\\
2048 c & d\end{array}\right]$
2049 \end_inset
2050
2051
2052 \end_layout
2053
2054 \end_inset
2055 </cell>
2056 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2057 \begin_inset Text
2058
2059 \begin_layout Standard
2060
2061 \family roman
2062 \series medium
2063 \shape up
2064 \size normal
2065 \emph off
2066 \bar no
2067 \noun off
2068 \color none
2069 \begin_inset Formula $1+1=2$
2070 \end_inset
2071
2072
2073 \end_layout
2074
2075 \end_inset
2076 </cell>
2077 </row>
2078 </lyxtabular>
2079
2080 \end_inset
2081
2082
2083 \end_layout
2084
2085 \end_inset
2086
2087
2088 \end_layout
2089
2090 \begin_layout Standard
2091 Table floats can be inserted using the menu 
2092 \family sans
2093 Insert\SpecialChar \menuseparator
2094 Float\SpecialChar \menuseparator
2095 Table
2096 \family default
2097  or the toolbar button 
2098 \begin_inset Graphics
2099         filename ../images/float-insert_table.xpm
2100         scale 85
2101
2102 \end_inset
2103
2104 .
2105 \end_layout
2106
2107 \begin_layout Standard
2108 The float appears as a collapsible box with the label 
2109 \begin_inset Quotes eld
2110 \end_inset
2111
2112
2113 \series bold
2114 Table\InsetSpace ~
2115 #:
2116 \series default
2117
2118 \begin_inset Quotes erd
2119 \end_inset
2120
2121  inside it.
2122  The text following the label is the caption of the table.
2123  To insert a table to the the float set the cursor at the end of the caption
2124  text, press enter and insert the table.
2125  The caption is now printed above the table.
2126 \end_layout
2127
2128 \begin_layout Standard
2129 Table\InsetSpace ~
2130
2131 \begin_inset LatexCommand ref
2132 reference "tab:a table float"
2133
2134 \end_inset
2135
2136  is an example table within a table float.
2137 \end_layout
2138
2139 \begin_layout Standard
2140 Having the caption above the table is the common rule that is unfortunately
2141  not supported in LaTeX's standard classes.
2142  That means if you are using the document classes 
2143 \family sans
2144 article
2145 \family default
2146
2147 \family sans
2148 book
2149 \family default
2150
2151 \family sans
2152 letter
2153 \family default
2154 , or 
2155 \family sans
2156 report
2157 \family default
2158  there will be no space between the caption and the table.
2159  To insert the needed space, add the following option to the load command
2160  of the LaTeX-package 
2161 \series bold
2162 caption
2163 \series default
2164
2165 \begin_inset LatexCommand index
2166 name "LaTeX-packages ! caption"
2167
2168 \end_inset
2169
2170  in your document preamble
2171 \begin_inset Foot
2172 status collapsed
2173
2174 \begin_layout Standard
2175 For more information have a look at section\InsetSpace ~
2176
2177 \begin_inset LatexCommand ref
2178 reference "sec:Caption-Placement"
2179
2180 \end_inset
2181
2182 .
2183 \end_layout
2184
2185 \end_inset
2186
2187 :
2188 \end_layout
2189
2190 \begin_layout Standard
2191
2192 \series bold
2193 tableposition=top
2194 \end_layout
2195
2196 \begin_layout Standard
2197 The package 
2198 \series bold
2199 caption
2200 \series default
2201 , which is described in section\InsetSpace ~
2202
2203 \begin_inset LatexCommand ref
2204 reference "sec:Caption-Formatting"
2205
2206 \end_inset
2207
2208 , is used to adjust the caption format.
2209 \end_layout
2210
2211 \begin_layout Standard
2212 \begin_inset LatexCommand index
2213 name "References ! to Tables"
2214
2215 \end_inset
2216
2217 Tables can be cross-referenced in the text by referencing their label.
2218  To do this insert a label in the caption using the menu 
2219 \family sans
2220 Insert\SpecialChar \menuseparator
2221 Label
2222 \family default
2223  or the toolbar button 
2224 \begin_inset Graphics
2225         filename ../images/label-insert.xpm
2226         scale 85
2227
2228 \end_inset
2229
2230 .
2231  You can now refer to the label using the menu 
2232 \family sans
2233 Insert\SpecialChar \menuseparator
2234 Cross\InsetSpace ~
2235 reference
2236 \family default
2237  or the toolbar button 
2238 \begin_inset Graphics
2239         filename ../images/dialog-show-new-inset_ref.xpm
2240         scale 85
2241
2242 \end_inset
2243
2244 .
2245 \end_layout
2246
2247 \begin_layout Standard
2248
2249 \end_layout
2250
2251 \begin_layout Section
2252 Longtables
2253 \begin_inset LatexCommand label
2254 name "sec:Longtables"
2255
2256 \end_inset
2257
2258
2259 \begin_inset LatexCommand index
2260 name "Longtables"
2261
2262 \end_inset
2263
2264
2265 \begin_inset LatexCommand index
2266 name "Table ! Longtables"
2267
2268 \end_inset
2269
2270
2271 \end_layout
2272
2273 \begin_layout Standard
2274 If the table is too long to fit on one page, you can use the option 
2275 \family sans
2276 Use\InsetSpace ~
2277 long\InsetSpace ~
2278 table
2279 \family default
2280  in the tab 
2281 \family sans
2282 Longtable
2283 \family default
2284  of the table dialog to split the table automatically over more pages.
2285  Doing this enables some check boxes and you can now define:
2286 \end_layout
2287
2288 \begin_layout Description
2289
2290 \family sans
2291 Header
2292 \family default
2293 : The current row and all rows above, that don't have any special options
2294  defined, are defined to be the header rows of all pages of the longtable;
2295  except for the first page, if 
2296 \family sans
2297 First\InsetSpace ~
2298 header
2299 \family default
2300  is defined.
2301  This therefore called the main header.
2302 \end_layout
2303
2304 \begin_layout Description
2305
2306 \family sans
2307 First\InsetSpace ~
2308 header
2309 \family default
2310 : The current row and all rows above, that don't have any special options
2311  defined, are defined to be the header rows of the first page of the longtable.
2312 \end_layout
2313
2314 \begin_layout Description
2315
2316 \family sans
2317 Footer
2318 \family default
2319 : The current row and all rows below, that don't have any special options
2320  defined, are defined to be the footer rows of all pages of the longtable;
2321  except for the last page, if 
2322 \family sans
2323 Last\InsetSpace ~
2324 footer
2325 \family default
2326  is defined.
2327 \end_layout
2328
2329 \begin_layout Description
2330
2331 \family sans
2332 Last\InsetSpace ~
2333 footer
2334 \family default
2335 : The current row and all rows below, that don't have any special options
2336  defined, are defined to be the footer rows of the last page of the longtable.
2337 \end_layout
2338
2339 \begin_layout Standard
2340 You can also specify a row where the table is splitted.
2341  If you set more than one option in the same table row, you should be aware
2342  of the fact that only the first one is used in the given table row.
2343  The others will then be defined as 
2344 \emph on
2345 empty
2346 \emph default
2347 .
2348  In this context, first means first in this order: 
2349 \family sans
2350 Footer, Last\InsetSpace ~
2351 footer,
2352 \family default
2353  
2354 \family sans
2355 Header,
2356 \family default
2357  
2358 \family sans
2359 First\InsetSpace ~
2360 header.
2361
2362 \family default
2363 \emph on
2364  
2365 \emph default
2366 See the following longtable to see how it works:
2367 \end_layout
2368
2369 \begin_layout Standard
2370 \align center
2371 \begin_inset Tabular
2372 <lyxtabular version="3" rows="69" columns="3">
2373 <features islongtable="true">
2374 <column alignment="left" valignment="top" leftline="true" width="0cm">
2375 <column alignment="left" valignment="top" width="0pt">
2376 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2377 <row topline="true" bottomline="true" endfirsthead="true">
2378 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2379 \begin_inset Text
2380
2381 \begin_layout Standard
2382
2383 \series bold
2384 Example Phone List (ignore the names)
2385 \end_layout
2386
2387 \end_inset
2388 </cell>
2389 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2390 \begin_inset Text
2391
2392 \begin_layout Standard
2393
2394 \end_layout
2395
2396 \end_inset
2397 </cell>
2398 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2399 \begin_inset Text
2400
2401 \begin_layout Standard
2402
2403 \end_layout
2404
2405 \end_inset
2406 </cell>
2407 </row>
2408 <row topline="true" bottomline="true" endfirsthead="true">
2409 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2410 \begin_inset Text
2411
2412 \begin_layout Standard
2413
2414 \series bold
2415 NAME
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="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2430 \begin_inset Text
2431
2432 \begin_layout Standard
2433
2434 \series bold
2435 TEL.
2436 \end_layout
2437
2438 \end_inset
2439 </cell>
2440 </row>
2441 <row topline="true" bottomline="true" endhead="true">
2442 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2443 \begin_inset Text
2444
2445 \begin_layout Standard
2446
2447 \series bold
2448 Example Phone List
2449 \end_layout
2450
2451 \end_inset
2452 </cell>
2453 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2454 \begin_inset Text
2455
2456 \begin_layout Standard
2457
2458 \end_layout
2459
2460 \end_inset
2461 </cell>
2462 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2463 \begin_inset Text
2464
2465 \begin_layout Standard
2466
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" bottomline="true" leftline="true" usebox="none">
2474 \begin_inset Text
2475
2476 \begin_layout Standard
2477
2478 \series bold
2479 NAME
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="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2494 \begin_inset Text
2495
2496 \begin_layout Standard
2497
2498 \series bold
2499 TEL.
2500 \end_layout
2501
2502 \end_inset
2503 </cell>
2504 </row>
2505 <row topline="true" bottomline="true" endfoot="true">
2506 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2507 \begin_inset Text
2508
2509 \begin_layout Standard
2510  continued on next page
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="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2525 \begin_inset Text
2526
2527 \begin_layout Standard
2528
2529 \end_layout
2530
2531 \end_inset
2532 </cell>
2533 </row>
2534 <row>
2535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2536 \begin_inset Text
2537
2538 \begin_layout Standard
2539
2540 \series bold
2541 Annovi
2542 \end_layout
2543
2544 \end_inset
2545 </cell>
2546 <cell alignment="center" valignment="top" topline="true" usebox="none">
2547 \begin_inset Text
2548
2549 \begin_layout Standard
2550 Silvia
2551 \end_layout
2552
2553 \end_inset
2554 </cell>
2555 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2556 \begin_inset Text
2557
2558 \begin_layout Standard
2559 111
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 Bertoli
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 Stefano
2582 \end_layout
2583
2584 \end_inset
2585 </cell>
2586 <cell alignment="center" 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 Bozzi
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 Walter
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 Cachia
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 Maria
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 Maurizio
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 Cinquemani
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 Giusi
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 Colin
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 Bernard
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 Concli
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 Gianfranco
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 Dal Bosco
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 Carolina
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 Dalpiaz
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 Annamaria
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 Feliciello
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 Domenico
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 Focarelli
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 Paola
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 Galletti
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 Oreste
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 Gasparini
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 Franca
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 Rizzardi
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 Paola
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 Lassini
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 Giancarlo
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 Malfatti
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 Luciano
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 Valeriano
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 Meneguzzo
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 Roberto
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 Mezzadra
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 Pirpamer
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 Erich
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 Pochiesa
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 Paolo
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, 222
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 Radina
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 Claudio
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
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 Stuffer
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 Oskar
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 Tacchelli
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 Ugo
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 Tezzele
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 Margit
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 Unterkalmsteiner
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 Frieda
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 Vieider
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 Hilde
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 Vigna
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 Jürgen
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 Weber
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 Maurizio
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 bottomline="true">
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 Winkler
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 Franz
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 multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3497 \begin_inset Text
3498
3499 \begin_layout Standard
3500  
3501 \end_layout
3502
3503 \end_inset
3504 </cell>
3505 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3506 \begin_inset Text
3507
3508 \begin_layout Standard
3509
3510 \end_layout
3511
3512 \end_inset
3513 </cell>
3514 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3515 \begin_inset Text
3516
3517 \begin_layout Standard
3518
3519 \end_layout
3520
3521 \end_inset
3522 </cell>
3523 </row>
3524 <row>
3525 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3526 \begin_inset Text
3527
3528 \begin_layout Standard
3529
3530 \series bold
3531 Annovi
3532 \end_layout
3533
3534 \end_inset
3535 </cell>
3536 <cell alignment="center" valignment="top" topline="true" usebox="none">
3537 \begin_inset Text
3538
3539 \begin_layout Standard
3540 Silvia
3541 \end_layout
3542
3543 \end_inset
3544 </cell>
3545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3546 \begin_inset Text
3547
3548 \begin_layout Standard
3549 555
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 Bertoli
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 Stefano
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 Bozzi
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 Walter
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 Cachia
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 Maria
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 Maurizio
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 Cinquemani
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 Giusi
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 Colin
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 Bernard
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 Concli
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 Gianfranco
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 Dal Bosco
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 Carolina
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 Dalpiaz
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 Annamaria
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 Feliciello
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 Domenico
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 Focarelli
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 Paola
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 Galletti
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 Oreste
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 Gasparini
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 Franca
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 Rizzardi
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 Paola
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 Lassini
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 Giancarlo
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 Malfatti
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 Luciano
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 Valeriano
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 Meneguzzo
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 Roberto
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 Mezzadra
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 Pirpamer
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 Erich
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 Pochiesa
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 Paolo
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, 222
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 Radina
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 Claudio
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
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 Stuffer
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 Oskar
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 Tacchelli
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 Ugo
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 Tezzele
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 Margit
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 Unterkalmsteiner
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 Frieda
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 Vieider
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 Hilde
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 Vigna
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 Jürgen
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 999
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 Weber
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 Maurizio
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 555
4449 \end_layout
4450
4451 \end_inset
4452 </cell>
4453 </row>
4454 <row bottomline="true">
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 Winkler
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 Franz
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" endlastfoot="true">
4486 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4487 \begin_inset Text
4488
4489 \begin_layout Standard
4490 end
4491 \end_layout
4492
4493 \end_inset
4494 </cell>
4495 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4496 \begin_inset Text
4497
4498 \begin_layout Standard
4499
4500 \end_layout
4501
4502 \end_inset
4503 </cell>
4504 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4505 \begin_inset Text
4506
4507 \begin_layout Standard
4508
4509 \end_layout
4510
4511 \end_inset
4512 </cell>
4513 </row>
4514 </lyxtabular>
4515
4516 \end_inset
4517
4518
4519 \begin_inset ERT
4520 status collapsed
4521
4522 \begin_layout Standard
4523
4524
4525 \backslash
4526 addtocounter{table}{-1}
4527 \end_layout
4528
4529 \end_inset
4530
4531
4532 \begin_inset Note Note
4533 status collapsed
4534
4535 \begin_layout Standard
4536 See greyed-out note in section 2.6.2 for an explanation of this command.
4537 \end_layout
4538
4539 \end_inset
4540
4541
4542 \end_layout
4543
4544 \begin_layout Subsection
4545 Footnotes in Longtables
4546 \begin_inset LatexCommand label
4547 name "sub:Footnotes-in-Longtables"
4548
4549 \end_inset
4550
4551
4552 \begin_inset LatexCommand index
4553 name "Longtables ! Footnotes"
4554
4555 \end_inset
4556
4557
4558 \end_layout
4559
4560 \begin_layout Standard
4561 Footnotes can be inserted to every longtable cell.
4562  They appear at the bottom of the page where the table cell with the footnote
4563  appears.
4564  Table\InsetSpace ~
4565
4566 \begin_inset LatexCommand ref
4567 reference "tab:DiffCaptions"
4568
4569 \end_inset
4570
4571  has for example a footnote.
4572 \end_layout
4573
4574 \begin_layout Subsection
4575 Longtable Captions
4576 \begin_inset LatexCommand index
4577 name "Longtables ! Captions"
4578
4579 \end_inset
4580
4581
4582 \end_layout
4583
4584 \begin_layout Standard
4585 A longtable cannot be put into a table float because floats can only be
4586  on one page.
4587  Therefore the caption layout cannot be used for longtables.
4588 \end_layout
4589
4590 \begin_layout Standard
4591 To add a caption, a dirty hack is needed:
4592 \end_layout
4593
4594 \begin_layout Enumerate
4595 Create a longtable
4596 \end_layout
4597
4598 \begin_layout Enumerate
4599 Mark the first row an disable its upper line
4600 \end_layout
4601
4602 \begin_layout Enumerate
4603 Insert the following command as ERT into the first table cell:
4604 \newline
4605
4606 \series bold
4607
4608 \backslash
4609 caption[short title]{full title}
4610 \backslash
4611
4612 \backslash
4613 %
4614 \end_layout
4615
4616 \begin_layout Enumerate
4617 Insert a 
4618 \begin_inset Quotes eld
4619 \end_inset
4620
4621
4622 \series bold
4623 %
4624 \series default
4625
4626 \begin_inset Quotes erd
4627 \end_inset
4628
4629  as ERT into every cell of the first row
4630 \end_layout
4631
4632 \begin_layout Standard
4633 The 
4634 \series bold
4635
4636 \backslash
4637 caption
4638 \series default
4639  command is used like for normal captions, the short title that will appear
4640  in the LOT instead of the full title is optional.
4641  The 
4642 \series bold
4643 %
4644 \series default
4645  in the table cells omits the vertical line between the the cells.
4646  The first table row is now only a dummy row for the caption, the actual
4647  table starts with the second row.
4648 \end_layout
4649
4650 \begin_layout Standard
4651 Here is a short longtable to see how it works:
4652 \end_layout
4653
4654 \begin_layout Standard
4655 \begin_inset Tabular
4656 <lyxtabular version="3" rows="6" columns="5">
4657 <features islongtable="true">
4658 <column alignment="center" valignment="top" leftline="true" width="0">
4659 <column alignment="center" valignment="top" leftline="true" width="0">
4660 <column alignment="center" valignment="top" leftline="true" width="0">
4661 <column alignment="center" valignment="top" leftline="true" width="0">
4662 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4663 <row>
4664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4665 \begin_inset Text
4666
4667 \begin_layout Standard
4668 \begin_inset ERT
4669 status collapsed
4670
4671 \begin_layout Standard
4672
4673
4674 \backslash
4675 caption[Longtable]{Longtable with caption}
4676 \backslash
4677
4678 \backslash
4679 %
4680 \end_layout
4681
4682 \end_inset
4683
4684
4685 \end_layout
4686
4687 \end_inset
4688 </cell>
4689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4690 \begin_inset Text
4691
4692 \begin_layout Standard
4693 \begin_inset ERT
4694 status collapsed
4695
4696 \begin_layout Standard
4697
4698 %
4699 \end_layout
4700
4701 \end_inset
4702
4703
4704 \end_layout
4705
4706 \end_inset
4707 </cell>
4708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4709 \begin_inset Text
4710
4711 \begin_layout Standard
4712 \begin_inset ERT
4713 status collapsed
4714
4715 \begin_layout Standard
4716
4717 %
4718 \end_layout
4719
4720 \end_inset
4721
4722
4723 \end_layout
4724
4725 \end_inset
4726 </cell>
4727 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4728 \begin_inset Text
4729
4730 \begin_layout Standard
4731 \begin_inset ERT
4732 status collapsed
4733
4734 \begin_layout Standard
4735
4736 %
4737 \end_layout
4738
4739 \end_inset
4740
4741
4742 \end_layout
4743
4744 \end_inset
4745 </cell>
4746 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4747 \begin_inset Text
4748
4749 \begin_layout Standard
4750 \begin_inset ERT
4751 status collapsed
4752
4753 \begin_layout Standard
4754
4755 %
4756 \end_layout
4757
4758 \end_inset
4759
4760
4761 \end_layout
4762
4763 \end_inset
4764 </cell>
4765 </row>
4766 <row topline="true">
4767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4768 \begin_inset Text
4769
4770 \begin_layout Standard
4771 1
4772 \end_layout
4773
4774 \end_inset
4775 </cell>
4776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4777 \begin_inset Text
4778
4779 \begin_layout Standard
4780 2
4781 \end_layout
4782
4783 \end_inset
4784 </cell>
4785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4786 \begin_inset Text
4787
4788 \begin_layout Standard
4789 3
4790 \end_layout
4791
4792 \end_inset
4793 </cell>
4794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4795 \begin_inset Text
4796
4797 \begin_layout Standard
4798 4
4799 \end_layout
4800
4801 \end_inset
4802 </cell>
4803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4804 \begin_inset Text
4805
4806 \begin_layout Standard
4807 5
4808 \end_layout
4809
4810 \end_inset
4811 </cell>
4812 </row>
4813 <row topline="true">
4814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4815 \begin_inset Text
4816
4817 \begin_layout Standard
4818 asd
4819 \end_layout
4820
4821 \end_inset
4822 </cell>
4823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4824 \begin_inset Text
4825
4826 \begin_layout Standard
4827 s
4828 \end_layout
4829
4830 \end_inset
4831 </cell>
4832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4833 \begin_inset Text
4834
4835 \begin_layout Standard
4836 s
4837 \end_layout
4838
4839 \end_inset
4840 </cell>
4841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4842 \begin_inset Text
4843
4844 \begin_layout Standard
4845 s
4846 \end_layout
4847
4848 \end_inset
4849 </cell>
4850 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4851 \begin_inset Text
4852
4853 \begin_layout Standard
4854 asd
4855 \end_layout
4856
4857 \end_inset
4858 </cell>
4859 </row>
4860 <row topline="true">
4861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4862 \begin_inset Text
4863
4864 \begin_layout Standard
4865 asd
4866 \end_layout
4867
4868 \end_inset
4869 </cell>
4870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4871 \begin_inset Text
4872
4873 \begin_layout Standard
4874 s
4875 \end_layout
4876
4877 \end_inset
4878 </cell>
4879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4880 \begin_inset Text
4881
4882 \begin_layout Standard
4883 s
4884 \end_layout
4885
4886 \end_inset
4887 </cell>
4888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4889 \begin_inset Text
4890
4891 \begin_layout Standard
4892 s
4893 \end_layout
4894
4895 \end_inset
4896 </cell>
4897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4898 \begin_inset Text
4899
4900 \begin_layout Standard
4901 asd
4902 \end_layout
4903
4904 \end_inset
4905 </cell>
4906 </row>
4907 <row topline="true">
4908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4909 \begin_inset Text
4910
4911 \begin_layout Standard
4912 asd
4913 \end_layout
4914
4915 \end_inset
4916 </cell>
4917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4918 \begin_inset Text
4919
4920 \begin_layout Standard
4921 s
4922 \end_layout
4923
4924 \end_inset
4925 </cell>
4926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4927 \begin_inset Text
4928
4929 \begin_layout Standard
4930 s
4931 \end_layout
4932
4933 \end_inset
4934 </cell>
4935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4936 \begin_inset Text
4937
4938 \begin_layout Standard
4939 s
4940 \end_layout
4941
4942 \end_inset
4943 </cell>
4944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4945 \begin_inset Text
4946
4947 \begin_layout Standard
4948 asd
4949 \end_layout
4950
4951 \end_inset
4952 </cell>
4953 </row>
4954 <row topline="true" bottomline="true">
4955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4956 \begin_inset Text
4957
4958 \begin_layout Standard
4959 asd
4960 \end_layout
4961
4962 \end_inset
4963 </cell>
4964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4965 \begin_inset Text
4966
4967 \begin_layout Standard
4968 asd
4969 \end_layout
4970
4971 \end_inset
4972 </cell>
4973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4974 \begin_inset Text
4975
4976 \begin_layout Standard
4977 asd
4978 \end_layout
4979
4980 \end_inset
4981 </cell>
4982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4983 \begin_inset Text
4984
4985 \begin_layout Standard
4986 asd
4987 \end_layout
4988
4989 \end_inset
4990 </cell>
4991 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4992 \begin_inset Text
4993
4994 \begin_layout Standard
4995 asd
4996 \end_layout
4997
4998 \end_inset
4999 </cell>
5000 </row>
5001 </lyxtabular>
5002
5003 \end_inset
5004
5005
5006 \end_layout
5007
5008 \begin_layout Standard
5009 \begin_inset VSpace medskip
5010 \end_inset
5011
5012
5013 \begin_inset Note Greyedout
5014 status open
5015
5016 \begin_layout Standard
5017
5018 \series bold
5019 Note:
5020 \series default
5021  The table number is increased for every longtable, also if you didn't set
5022  a caption for it.
5023  For this reason you could have the case that e.g.
5024  Table\InsetSpace ~
5025 2.4 follows on Table\InsetSpace ~
5026 2.1 in the list of tables if there are two longtables
5027  without captions.
5028  To avoid this you can add the following command in ERT behind every longtable
5029  without a caption:
5030 \end_layout
5031
5032 \begin_layout Standard
5033
5034 \series bold
5035
5036 \backslash
5037 addtocounter{table}{-1}
5038 \end_layout
5039
5040 \end_inset
5041
5042
5043 \end_layout
5044
5045 \begin_layout Standard
5046 \begin_inset Note Greyedout
5047 status open
5048
5049 \begin_layout Standard
5050
5051 \series bold
5052 Note:
5053 \series default
5054  If you are using the LaTeX-package 
5055 \series bold
5056 hyperref
5057 \series default
5058
5059 \begin_inset LatexCommand index
5060 name "LaTeX-packages ! hyperref"
5061
5062 \end_inset
5063
5064  to link cross-references, the link to a longtable caption will always point
5065  to the beginning of the document.
5066 \end_layout
5067
5068 \end_inset
5069
5070
5071 \end_layout
5072
5073 \begin_layout Subsubsection
5074 References to Longtables
5075 \begin_inset LatexCommand index
5076 name "Longtables ! References"
5077
5078 \end_inset
5079
5080
5081 \end_layout
5082
5083 \begin_layout Standard
5084 \begin_inset Tabular
5085 <lyxtabular version="3" rows="6" columns="5">
5086 <features islongtable="true">
5087 <column alignment="center" valignment="top" leftline="true" width="0">
5088 <column alignment="center" valignment="top" leftline="true" width="0">
5089 <column alignment="center" valignment="top" leftline="true" width="0">
5090 <column alignment="center" valignment="top" leftline="true" width="0">
5091 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5092 <row>
5093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5094 \begin_inset Text
5095
5096 \begin_layout Standard
5097 \begin_inset ERT
5098 status collapsed
5099
5100 \begin_layout Standard
5101
5102
5103 \backslash
5104 caption{Referenced longtable
5105 \end_layout
5106
5107 \end_inset
5108
5109
5110 \begin_inset LatexCommand label
5111 name "tab:RefExample"
5112
5113 \end_inset
5114
5115
5116 \begin_inset ERT
5117 status collapsed
5118
5119 \begin_layout Standard
5120
5121 }
5122 \backslash
5123
5124 \backslash
5125 %
5126 \end_layout
5127
5128 \end_inset
5129
5130
5131 \end_layout
5132
5133 \end_inset
5134 </cell>
5135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5136 \begin_inset Text
5137
5138 \begin_layout Standard
5139 \begin_inset ERT
5140 status collapsed
5141
5142 \begin_layout Standard
5143
5144 %
5145 \end_layout
5146
5147 \end_inset
5148
5149
5150 \end_layout
5151
5152 \end_inset
5153 </cell>
5154 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5155 \begin_inset Text
5156
5157 \begin_layout Standard
5158 \begin_inset ERT
5159 status collapsed
5160
5161 \begin_layout Standard
5162
5163 %
5164 \end_layout
5165
5166 \end_inset
5167
5168
5169 \end_layout
5170
5171 \end_inset
5172 </cell>
5173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5174 \begin_inset Text
5175
5176 \begin_layout Standard
5177 \begin_inset ERT
5178 status collapsed
5179
5180 \begin_layout Standard
5181
5182 %
5183 \end_layout
5184
5185 \end_inset
5186
5187
5188 \end_layout
5189
5190 \end_inset
5191 </cell>
5192 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5193 \begin_inset Text
5194
5195 \begin_layout Standard
5196 \begin_inset ERT
5197 status collapsed
5198
5199 \begin_layout Standard
5200
5201 %
5202 \end_layout
5203
5204 \end_inset
5205
5206
5207 \end_layout
5208
5209 \end_inset
5210 </cell>
5211 </row>
5212 <row topline="true">
5213 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5214 \begin_inset Text
5215
5216 \begin_layout Standard
5217 1
5218 \end_layout
5219
5220 \end_inset
5221 </cell>
5222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5223 \begin_inset Text
5224
5225 \begin_layout Standard
5226 2
5227 \end_layout
5228
5229 \end_inset
5230 </cell>
5231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5232 \begin_inset Text
5233
5234 \begin_layout Standard
5235 3
5236 \end_layout
5237
5238 \end_inset
5239 </cell>
5240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5241 \begin_inset Text
5242
5243 \begin_layout Standard
5244 4
5245 \end_layout
5246
5247 \end_inset
5248 </cell>
5249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5250 \begin_inset Text
5251
5252 \begin_layout Standard
5253 5
5254 \end_layout
5255
5256 \end_inset
5257 </cell>
5258 </row>
5259 <row topline="true">
5260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5261 \begin_inset Text
5262
5263 \begin_layout Standard
5264 asd
5265 \end_layout
5266
5267 \end_inset
5268 </cell>
5269 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5270 \begin_inset Text
5271
5272 \begin_layout Standard
5273 s
5274 \end_layout
5275
5276 \end_inset
5277 </cell>
5278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5279 \begin_inset Text
5280
5281 \begin_layout Standard
5282 s
5283 \end_layout
5284
5285 \end_inset
5286 </cell>
5287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5288 \begin_inset Text
5289
5290 \begin_layout Standard
5291 s
5292 \end_layout
5293
5294 \end_inset
5295 </cell>
5296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5297 \begin_inset Text
5298
5299 \begin_layout Standard
5300 asd
5301 \end_layout
5302
5303 \end_inset
5304 </cell>
5305 </row>
5306 <row topline="true">
5307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5308 \begin_inset Text
5309
5310 \begin_layout Standard
5311 asd
5312 \end_layout
5313
5314 \end_inset
5315 </cell>
5316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5317 \begin_inset Text
5318
5319 \begin_layout Standard
5320 s
5321 \end_layout
5322
5323 \end_inset
5324 </cell>
5325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5326 \begin_inset Text
5327
5328 \begin_layout Standard
5329 s
5330 \end_layout
5331
5332 \end_inset
5333 </cell>
5334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5335 \begin_inset Text
5336
5337 \begin_layout Standard
5338 s
5339 \end_layout
5340
5341 \end_inset
5342 </cell>
5343 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5344 \begin_inset Text
5345
5346 \begin_layout Standard
5347 asd
5348 \end_layout
5349
5350 \end_inset
5351 </cell>
5352 </row>
5353 <row topline="true">
5354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5355 \begin_inset Text
5356
5357 \begin_layout Standard
5358 asd
5359 \end_layout
5360
5361 \end_inset
5362 </cell>
5363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5364 \begin_inset Text
5365
5366 \begin_layout Standard
5367 s
5368 \end_layout
5369
5370 \end_inset
5371 </cell>
5372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5373 \begin_inset Text
5374
5375 \begin_layout Standard
5376 s
5377 \end_layout
5378
5379 \end_inset
5380 </cell>
5381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5382 \begin_inset Text
5383
5384 \begin_layout Standard
5385 s
5386 \end_layout
5387
5388 \end_inset
5389 </cell>
5390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5391 \begin_inset Text
5392
5393 \begin_layout Standard
5394 asd
5395 \end_layout
5396
5397 \end_inset
5398 </cell>
5399 </row>
5400 <row topline="true" bottomline="true">
5401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5402 \begin_inset Text
5403
5404 \begin_layout Standard
5405 asd
5406 \end_layout
5407
5408 \end_inset
5409 </cell>
5410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5411 \begin_inset Text
5412
5413 \begin_layout Standard
5414 sad
5415 \end_layout
5416
5417 \end_inset
5418 </cell>
5419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5420 \begin_inset Text
5421
5422 \begin_layout Standard
5423 asd
5424 \end_layout
5425
5426 \end_inset
5427 </cell>
5428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5429 \begin_inset Text
5430
5431 \begin_layout Standard
5432 asd
5433 \end_layout
5434
5435 \end_inset
5436 </cell>
5437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5438 \begin_inset Text
5439
5440 \begin_layout Standard
5441 asd
5442 \end_layout
5443
5444 \end_inset
5445 </cell>
5446 </row>
5447 </lyxtabular>
5448
5449 \end_inset
5450
5451
5452 \end_layout
5453
5454 \begin_layout Standard
5455 To reference a longtable, insert a label into the 
5456 \series bold
5457
5458 \backslash
5459 caption
5460 \series default
5461  command.
5462  This is done by splitting the ERT of the caption command.
5463  The part of the caption command before the last closing brace
5464 \end_layout
5465
5466 \begin_layout Standard
5467
5468 \series bold
5469
5470 \backslash
5471 caption[short title]{full title
5472 \end_layout
5473
5474 \begin_layout Standard
5475 is in the first ERT box, the label is inserted behind it.
5476  Note that you have to add the label prefix 
5477 \begin_inset Quotes eld
5478 \end_inset
5479
5480
5481 \emph on
5482 tab:
5483 \emph default
5484
5485 \begin_inset Quotes eld
5486 \end_inset
5487
5488  manually in the label field.
5489  The second ERT box contains the rest of the 
5490 \backslash
5491 caption command
5492 \end_layout
5493
5494 \begin_layout Standard
5495
5496 \series bold
5497 }
5498 \backslash
5499
5500 \backslash
5501 %
5502 \end_layout
5503
5504 \begin_layout Standard
5505 and is inserted behind the label box, see Table\InsetSpace ~
5506
5507 \begin_inset LatexCommand ref
5508 reference "tab:RefExample"
5509
5510 \end_inset
5511
5512 .
5513 \end_layout
5514
5515 \begin_layout Standard
5516 The caption layout can be set together with all other caption of your document
5517  using the LaTeX-package 
5518 \series bold
5519 caption
5520 \series default
5521
5522 \begin_inset LatexCommand index
5523 name "LaTeX-packages ! caption"
5524
5525 \end_inset
5526
5527 , see section\InsetSpace ~
5528
5529 \begin_inset LatexCommand ref
5530 reference "sec:Caption-Formatting"
5531
5532 \end_inset
5533
5534 .
5535 \end_layout
5536
5537 \begin_layout Subsubsection
5538 Caption Width
5539 \begin_inset LatexCommand index
5540 name "Longtables ! Caption Width"
5541
5542 \end_inset
5543
5544
5545 \end_layout
5546
5547 \begin_layout Standard
5548 The maximal width of of caption lines is defined by the length 
5549 \series bold
5550
5551 \backslash
5552 LTcapwidth
5553 \series default
5554 .
5555  It default value is 4\InsetSpace \thinspace{}
5556 in.
5557  To change it add the following command to your document preamble or as
5558  ERT into your document before the longtable that should be affected
5559 \end_layout
5560
5561 \begin_layout Standard
5562
5563 \series bold
5564
5565 \backslash
5566 setlength{
5567 \backslash
5568 LTcapwidth}{width}
5569 \end_layout
5570
5571 \begin_layout Standard
5572 where the width could have one of the units listed in appendix\InsetSpace ~
5573
5574 \begin_inset LatexCommand ref
5575 reference "cha:Units-available-in"
5576
5577 \end_inset
5578
5579 .
5580 \end_layout
5581
5582 \begin_layout Standard
5583 The following tables show the difference:
5584 \end_layout
5585
5586 \begin_layout Standard
5587 \begin_inset Tabular
5588 <lyxtabular version="3" rows="6" columns="5">
5589 <features islongtable="true">
5590 <column alignment="center" valignment="top" leftline="true" width="0">
5591 <column alignment="center" valignment="top" leftline="true" width="0">
5592 <column alignment="center" valignment="top" leftline="true" width="0">
5593 <column alignment="center" valignment="top" leftline="true" width="0">
5594 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5595 <row>
5596 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5597 \begin_inset Text
5598
5599 \begin_layout Standard
5600 \begin_inset ERT
5601 status collapsed
5602
5603 \begin_layout Standard
5604
5605
5606 \backslash
5607 caption[caption with default width]{long full title with default width
5608 \end_layout
5609
5610 \begin_layout Standard
5611
5612 long full title with default width long full title with default width}
5613 \backslash
5614
5615 \backslash
5616 %
5617 \end_layout
5618
5619 \end_inset
5620
5621
5622 \end_layout
5623
5624 \end_inset
5625 </cell>
5626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5627 \begin_inset Text
5628
5629 \begin_layout Standard
5630 \begin_inset ERT
5631 status collapsed
5632
5633 \begin_layout Standard
5634
5635 %
5636 \end_layout
5637
5638 \end_inset
5639
5640
5641 \end_layout
5642
5643 \end_inset
5644 </cell>
5645 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5646 \begin_inset Text
5647
5648 \begin_layout Standard
5649 \begin_inset ERT
5650 status collapsed
5651
5652 \begin_layout Standard
5653
5654 %
5655 \end_layout
5656
5657 \end_inset
5658
5659
5660 \end_layout
5661
5662 \end_inset
5663 </cell>
5664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5665 \begin_inset Text
5666
5667 \begin_layout Standard
5668 \begin_inset ERT
5669 status collapsed
5670
5671 \begin_layout Standard
5672
5673 %
5674 \end_layout
5675
5676 \end_inset
5677
5678
5679 \end_layout
5680
5681 \end_inset
5682 </cell>
5683 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5684 \begin_inset Text
5685
5686 \begin_layout Standard
5687 \begin_inset ERT
5688 status collapsed
5689
5690 \begin_layout Standard
5691
5692 %
5693 \end_layout
5694
5695 \end_inset
5696
5697
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 1
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 2
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 3
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 4
5736 \end_layout
5737
5738 \end_inset
5739 </cell>
5740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5741 \begin_inset Text
5742
5743 \begin_layout Standard
5744 5
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">
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 s
5812 \end_layout
5813
5814 \end_inset
5815 </cell>
5816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5817 \begin_inset Text
5818
5819 \begin_layout Standard
5820 s
5821 \end_layout
5822
5823 \end_inset
5824 </cell>
5825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5826 \begin_inset Text
5827
5828 \begin_layout Standard
5829 s
5830 \end_layout
5831
5832 \end_inset
5833 </cell>
5834 <cell alignment="center" valignment="top" topline="true" leftline="true" 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 <row topline="true">
5845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5846 \begin_inset Text
5847
5848 \begin_layout Standard
5849 asd
5850 \end_layout
5851
5852 \end_inset
5853 </cell>
5854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5855 \begin_inset Text
5856
5857 \begin_layout Standard
5858 s
5859 \end_layout
5860
5861 \end_inset
5862 </cell>
5863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5864 \begin_inset Text
5865
5866 \begin_layout Standard
5867 s
5868 \end_layout
5869
5870 \end_inset
5871 </cell>
5872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5873 \begin_inset Text
5874
5875 \begin_layout Standard
5876 s
5877 \end_layout
5878
5879 \end_inset
5880 </cell>
5881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5882 \begin_inset Text
5883
5884 \begin_layout Standard
5885 asd
5886 \end_layout
5887
5888 \end_inset
5889 </cell>
5890 </row>
5891 <row topline="true" bottomline="true">
5892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5893 \begin_inset Text
5894
5895 \begin_layout Standard
5896 asd
5897 \end_layout
5898
5899 \end_inset
5900 </cell>
5901 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5902 \begin_inset Text
5903
5904 \begin_layout Standard
5905 sad
5906 \end_layout
5907
5908 \end_inset
5909 </cell>
5910 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5911 \begin_inset Text
5912
5913 \begin_layout Standard
5914 asd
5915 \end_layout
5916
5917 \end_inset
5918 </cell>
5919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5920 \begin_inset Text
5921
5922 \begin_layout Standard
5923 asd
5924 \end_layout
5925
5926 \end_inset
5927 </cell>
5928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5929 \begin_inset Text
5930
5931 \begin_layout Standard
5932 asd
5933 \end_layout
5934
5935 \end_inset
5936 </cell>
5937 </row>
5938 </lyxtabular>
5939
5940 \end_inset
5941
5942
5943 \end_layout
5944
5945 \begin_layout Standard
5946 \begin_inset ERT
5947 status collapsed
5948
5949 \begin_layout Standard
5950
5951
5952 \backslash
5953 setlength{
5954 \backslash
5955 LTcapwidth}{5cm}
5956 \end_layout
5957
5958 \end_inset
5959
5960
5961 \begin_inset Tabular
5962 <lyxtabular version="3" rows="6" columns="5">
5963 <features islongtable="true">
5964 <column alignment="center" valignment="top" leftline="true" width="0">
5965 <column alignment="center" valignment="top" leftline="true" width="0">
5966 <column alignment="center" valignment="top" leftline="true" width="0">
5967 <column alignment="center" valignment="top" leftline="true" width="0">
5968 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5969 <row>
5970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5971 \begin_inset Text
5972
5973 \begin_layout Standard
5974 \begin_inset ERT
5975 status collapsed
5976
5977 \begin_layout Standard
5978
5979
5980 \backslash
5981 caption[caption with width
5982 \backslash
5983 ,=
5984 \backslash
5985 ,5
5986 \backslash
5987 ,cm]{long full title with width set to 5
5988 \backslash
5989 ,cm
5990 \end_layout
5991
5992 \begin_layout Standard
5993
5994 long full title with width set to 5
5995 \backslash
5996 ,cm long full title with width set to 5
5997 \backslash
5998 ,cm}
5999 \backslash
6000
6001 \backslash
6002 %
6003 \end_layout
6004
6005 \end_inset
6006
6007
6008 \end_layout
6009
6010 \end_inset
6011 </cell>
6012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6013 \begin_inset Text
6014
6015 \begin_layout Standard
6016 \begin_inset ERT
6017 status collapsed
6018
6019 \begin_layout Standard
6020
6021 %
6022 \end_layout
6023
6024 \end_inset
6025
6026
6027 \end_layout
6028
6029 \end_inset
6030 </cell>
6031 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6032 \begin_inset Text
6033
6034 \begin_layout Standard
6035 \begin_inset ERT
6036 status collapsed
6037
6038 \begin_layout Standard
6039
6040 %
6041 \end_layout
6042
6043 \end_inset
6044
6045
6046 \end_layout
6047
6048 \end_inset
6049 </cell>
6050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6051 \begin_inset Text
6052
6053 \begin_layout Standard
6054 \begin_inset ERT
6055 status collapsed
6056
6057 \begin_layout Standard
6058
6059 %
6060 \end_layout
6061
6062 \end_inset
6063
6064
6065 \end_layout
6066
6067 \end_inset
6068 </cell>
6069 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6070 \begin_inset Text
6071
6072 \begin_layout Standard
6073 \begin_inset ERT
6074 status collapsed
6075
6076 \begin_layout Standard
6077
6078 %
6079 \end_layout
6080
6081 \end_inset
6082
6083
6084 \end_layout
6085
6086 \end_inset
6087 </cell>
6088 </row>
6089 <row topline="true">
6090 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6091 \begin_inset Text
6092
6093 \begin_layout Standard
6094 1
6095 \end_layout
6096
6097 \end_inset
6098 </cell>
6099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6100 \begin_inset Text
6101
6102 \begin_layout Standard
6103 2
6104 \end_layout
6105
6106 \end_inset
6107 </cell>
6108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6109 \begin_inset Text
6110
6111 \begin_layout Standard
6112 3
6113 \end_layout
6114
6115 \end_inset
6116 </cell>
6117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6118 \begin_inset Text
6119
6120 \begin_layout Standard
6121 4
6122 \end_layout
6123
6124 \end_inset
6125 </cell>
6126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6127 \begin_inset Text
6128
6129 \begin_layout Standard
6130 5
6131 \end_layout
6132
6133 \end_inset
6134 </cell>
6135 </row>
6136 <row topline="true">
6137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6138 \begin_inset Text
6139
6140 \begin_layout Standard
6141 asd
6142 \end_layout
6143
6144 \end_inset
6145 </cell>
6146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6147 \begin_inset Text
6148
6149 \begin_layout Standard
6150 s
6151 \end_layout
6152
6153 \end_inset
6154 </cell>
6155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6156 \begin_inset Text
6157
6158 \begin_layout Standard
6159 s
6160 \end_layout
6161
6162 \end_inset
6163 </cell>
6164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6165 \begin_inset Text
6166
6167 \begin_layout Standard
6168 s
6169 \end_layout
6170
6171 \end_inset
6172 </cell>
6173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6174 \begin_inset Text
6175
6176 \begin_layout Standard
6177 asd
6178 \end_layout
6179
6180 \end_inset
6181 </cell>
6182 </row>
6183 <row topline="true">
6184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6185 \begin_inset Text
6186
6187 \begin_layout Standard
6188 asd
6189 \end_layout
6190
6191 \end_inset
6192 </cell>
6193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6194 \begin_inset Text
6195
6196 \begin_layout Standard
6197 s
6198 \end_layout
6199
6200 \end_inset
6201 </cell>
6202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6203 \begin_inset Text
6204
6205 \begin_layout Standard
6206 s
6207 \end_layout
6208
6209 \end_inset
6210 </cell>
6211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6212 \begin_inset Text
6213
6214 \begin_layout Standard
6215 s
6216 \end_layout
6217
6218 \end_inset
6219 </cell>
6220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6221 \begin_inset Text
6222
6223 \begin_layout Standard
6224 asd
6225 \end_layout
6226
6227 \end_inset
6228 </cell>
6229 </row>
6230 <row topline="true">
6231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6232 \begin_inset Text
6233
6234 \begin_layout Standard
6235 asd
6236 \end_layout
6237
6238 \end_inset
6239 </cell>
6240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6241 \begin_inset Text
6242
6243 \begin_layout Standard
6244 s
6245 \end_layout
6246
6247 \end_inset
6248 </cell>
6249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6250 \begin_inset Text
6251
6252 \begin_layout Standard
6253 s
6254 \end_layout
6255
6256 \end_inset
6257 </cell>
6258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6259 \begin_inset Text
6260
6261 \begin_layout Standard
6262 s
6263 \end_layout
6264
6265 \end_inset
6266 </cell>
6267 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6268 \begin_inset Text
6269
6270 \begin_layout Standard
6271 asd
6272 \end_layout
6273
6274 \end_inset
6275 </cell>
6276 </row>
6277 <row topline="true" bottomline="true">
6278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6279 \begin_inset Text
6280
6281 \begin_layout Standard
6282 asd
6283 \end_layout
6284
6285 \end_inset
6286 </cell>
6287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6288 \begin_inset Text
6289
6290 \begin_layout Standard
6291 sad
6292 \end_layout
6293
6294 \end_inset
6295 </cell>
6296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6297 \begin_inset Text
6298
6299 \begin_layout Standard
6300 asd
6301 \end_layout
6302
6303 \end_inset
6304 </cell>
6305 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6306 \begin_inset Text
6307
6308 \begin_layout Standard
6309 asd
6310 \end_layout
6311
6312 \end_inset
6313 </cell>
6314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6315 \begin_inset Text
6316
6317 \begin_layout Standard
6318 asd
6319 \end_layout
6320
6321 \end_inset
6322 </cell>
6323 </row>
6324 </lyxtabular>
6325
6326 \end_inset
6327
6328
6329 \begin_inset ERT
6330 status collapsed
6331
6332 \begin_layout Standard
6333
6334
6335 \backslash
6336 setlength{
6337 \backslash
6338 LTcapwidth}{4in}
6339 \end_layout
6340
6341 \end_inset
6342
6343
6344 \end_layout
6345
6346 \begin_layout Standard
6347
6348 \end_layout
6349
6350 \begin_layout Subsubsection
6351 Different Captions for Table Pages
6352 \begin_inset LatexCommand index
6353 name "Longtables ! Different Captions for Pages"
6354
6355 \end_inset
6356
6357
6358 \end_layout
6359
6360 \begin_layout Standard
6361 When the other captions should differ from the one of the first table page,
6362  insert the 
6363 \series bold
6364
6365 \backslash
6366 caption
6367 \series default
6368  command with a non-empty short title in a dummy caption row marked as first
6369  header.
6370  The caption used for the other table pages is inserted as 
6371 \series bold
6372
6373 \backslash
6374 caption
6375 \series default
6376  command without a short title in a dummy caption row that is marked as
6377  main header.
6378  When this caption shouldn't include the table number, use the command 
6379 \series bold
6380
6381 \backslash
6382 caption*
6383 \series default
6384  instead of 
6385 \series bold
6386
6387 \backslash
6388 caption
6389 \series default
6390 .
6391  The label to reference the table is inserted into the caption of the first
6392  header.
6393  Table\InsetSpace ~
6394
6395 \begin_inset LatexCommand ref
6396 reference "tab:DiffCaptions"
6397
6398 \end_inset
6399
6400  is an example for a longtable with different heading where the second caption
6401  doesn't include the table number.
6402 \end_layout
6403
6404 \begin_layout Standard
6405 \align center
6406 \begin_inset Tabular
6407 <lyxtabular version="3" rows="60" columns="3">
6408 <features islongtable="true">
6409 <column alignment="left" valignment="top" leftline="true" width="0cm">
6410 <column alignment="left" valignment="top" rightline="true" width="0pt">
6411 <column alignment="right" valignment="top" rightline="true" width="0pt">
6412 <row endfirsthead="true">
6413 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6414 \begin_inset Text
6415
6416 \begin_layout Standard
6417 \begin_inset ERT
6418 status collapsed
6419
6420 \begin_layout Standard
6421
6422
6423 \backslash
6424 caption[Example Phone List]{Example Phone List 
6425 \end_layout
6426
6427 \end_inset
6428
6429
6430 \begin_inset LatexCommand label
6431 name "tab:DiffCaptions"
6432
6433 \end_inset
6434
6435
6436 \begin_inset ERT
6437 status collapsed
6438
6439 \begin_layout Standard
6440
6441 }
6442 \backslash
6443
6444 \backslash
6445 %
6446 \end_layout
6447
6448 \end_inset
6449
6450
6451 \end_layout
6452
6453 \end_inset
6454 </cell>
6455 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6456 \begin_inset Text
6457
6458 \begin_layout Standard
6459 \begin_inset ERT
6460 status collapsed
6461
6462 \begin_layout Standard
6463
6464 %
6465 \end_layout
6466
6467 \end_inset
6468
6469
6470 \end_layout
6471
6472 \end_inset
6473 </cell>
6474 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6475 \begin_inset Text
6476
6477 \begin_layout Standard
6478 \begin_inset ERT
6479 status collapsed
6480
6481 \begin_layout Standard
6482
6483 %
6484 \end_layout
6485
6486 \end_inset
6487
6488
6489 \end_layout
6490
6491 \end_inset
6492 </cell>
6493 </row>
6494 <row topline="true" bottomline="true" endfirsthead="true">
6495 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6496 \begin_inset Text
6497
6498 \begin_layout Standard
6499
6500 \series bold
6501 Example Phone List (ignore the names)
6502 \end_layout
6503
6504 \end_inset
6505 </cell>
6506 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6507 \begin_inset Text
6508
6509 \begin_layout Standard
6510
6511 \end_layout
6512
6513 \end_inset
6514 </cell>
6515 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6516 \begin_inset Text
6517
6518 \begin_layout Standard
6519
6520 \end_layout
6521
6522 \end_inset
6523 </cell>
6524 </row>
6525 <row topline="true" bottomline="true" endfirsthead="true">
6526 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6527 \begin_inset Text
6528
6529 \begin_layout Standard
6530
6531 \series bold
6532 NAME
6533 \end_layout
6534
6535 \end_inset
6536 </cell>
6537 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6538 \begin_inset Text
6539
6540 \begin_layout Standard
6541
6542 \end_layout
6543
6544 \end_inset
6545 </cell>
6546 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6547 \begin_inset Text
6548
6549 \begin_layout Standard
6550
6551 \series bold
6552 TEL.
6553 \end_layout
6554
6555 \end_inset
6556 </cell>
6557 </row>
6558 <row bottomline="true" endhead="true">
6559 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6560 \begin_inset Text
6561
6562 \begin_layout Standard
6563 \begin_inset ERT
6564 status collapsed
6565
6566 \begin_layout Standard
6567
6568
6569 \backslash
6570 caption*{Continued Example Phone List}
6571 \backslash
6572
6573 \backslash
6574 %
6575 \end_layout
6576
6577 \end_inset
6578
6579
6580 \end_layout
6581
6582 \end_inset
6583 </cell>
6584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6585 \begin_inset Text
6586
6587 \begin_layout Standard
6588 \begin_inset ERT
6589 status collapsed
6590
6591 \begin_layout Standard
6592
6593 %
6594 \end_layout
6595
6596 \end_inset
6597
6598
6599 \end_layout
6600
6601 \end_inset
6602 </cell>
6603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6604 \begin_inset Text
6605
6606 \begin_layout Standard
6607 \begin_inset ERT
6608 status collapsed
6609
6610 \begin_layout Standard
6611
6612 %
6613 \end_layout
6614
6615 \end_inset
6616
6617
6618 \end_layout
6619
6620 \end_inset
6621 </cell>
6622 </row>
6623 <row topline="true" bottomline="true" endhead="true">
6624 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6625 \begin_inset Text
6626
6627 \begin_layout Standard
6628
6629 \series bold
6630 Example Phone List
6631 \end_layout
6632
6633 \end_inset
6634 </cell>
6635 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6636 \begin_inset Text
6637
6638 \begin_layout Standard
6639
6640 \end_layout
6641
6642 \end_inset
6643 </cell>
6644 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6645 \begin_inset Text
6646
6647 \begin_layout Standard
6648
6649 \end_layout
6650
6651 \end_inset
6652 </cell>
6653 </row>
6654 <row topline="true" bottomline="true" endhead="true">
6655 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6656 \begin_inset Text
6657
6658 \begin_layout Standard
6659
6660 \series bold
6661 NAME
6662 \end_layout
6663
6664 \end_inset
6665 </cell>
6666 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6667 \begin_inset Text
6668
6669 \begin_layout Standard
6670
6671 \end_layout
6672
6673 \end_inset
6674 </cell>
6675 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6676 \begin_inset Text
6677
6678 \begin_layout Standard
6679
6680 \series bold
6681 TEL.
6682 \end_layout
6683
6684 \end_inset
6685 </cell>
6686 </row>
6687 <row topline="true" bottomline="true" endfoot="true">
6688 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6689 \begin_inset Text
6690
6691 \begin_layout Standard
6692 continued on next page
6693 \end_layout
6694
6695 \end_inset
6696 </cell>
6697 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6698 \begin_inset Text
6699
6700 \begin_layout Standard
6701
6702 \end_layout
6703
6704 \end_inset
6705 </cell>
6706 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6707 \begin_inset Text
6708
6709 \begin_layout Standard
6710
6711 \end_layout
6712
6713 \end_inset
6714 </cell>
6715 </row>
6716 <row>
6717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6718 \begin_inset Text
6719
6720 \begin_layout Standard
6721
6722 \series bold
6723 Annovi
6724 \end_layout
6725
6726 \end_inset
6727 </cell>
6728 <cell alignment="center" valignment="top" topline="true" usebox="none">
6729 \begin_inset Text
6730
6731 \begin_layout Standard
6732 Silvia
6733 \end_layout
6734
6735 \end_inset
6736 </cell>
6737 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6738 \begin_inset Text
6739
6740 \begin_layout Standard
6741 111
6742 \end_layout
6743
6744 \end_inset
6745 </cell>
6746 </row>
6747 <row>
6748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6749 \begin_inset Text
6750
6751 \begin_layout Standard
6752
6753 \series bold
6754 Bertoli
6755 \end_layout
6756
6757 \end_inset
6758 </cell>
6759 <cell alignment="center" valignment="top" topline="true" usebox="none">
6760 \begin_inset Text
6761
6762 \begin_layout Standard
6763 Stefano
6764 \end_layout
6765
6766 \end_inset
6767 </cell>
6768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6769 \begin_inset Text
6770
6771 \begin_layout Standard
6772 111
6773 \end_layout
6774
6775 \end_inset
6776 </cell>
6777 </row>
6778 <row>
6779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6780 \begin_inset Text
6781
6782 \begin_layout Standard
6783
6784 \series bold
6785 Bozzi
6786 \end_layout
6787
6788 \end_inset
6789 </cell>
6790 <cell alignment="center" valignment="top" topline="true" usebox="none">
6791 \begin_inset Text
6792
6793 \begin_layout Standard
6794 Walter
6795 \end_layout
6796
6797 \end_inset
6798 </cell>
6799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6800 \begin_inset Text
6801
6802 \begin_layout Standard
6803 111
6804 \end_layout
6805
6806 \end_inset
6807 </cell>
6808 </row>
6809 <row>
6810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6811 \begin_inset Text
6812
6813 \begin_layout Standard
6814
6815 \series bold
6816 Cachia
6817 \end_layout
6818
6819 \end_inset
6820 </cell>
6821 <cell alignment="center" valignment="top" topline="true" usebox="none">
6822 \begin_inset Text
6823
6824 \begin_layout Standard
6825 Maria
6826 \end_layout
6827
6828 \end_inset
6829 </cell>
6830 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6831 \begin_inset Text
6832
6833 \begin_layout Standard
6834 111
6835 \end_layout
6836
6837 \end_inset
6838 </cell>
6839 </row>
6840 <row>
6841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6842 \begin_inset Text
6843
6844 \begin_layout Standard
6845
6846 \series bold
6847 Cachia
6848 \end_layout
6849
6850 \end_inset
6851 </cell>
6852 <cell alignment="center" valignment="top" topline="true" usebox="none">
6853 \begin_inset Text
6854
6855 \begin_layout Standard
6856 Maurizio
6857 \end_layout
6858
6859 \end_inset
6860 </cell>
6861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6862 \begin_inset Text
6863
6864 \begin_layout Standard
6865 111
6866 \end_layout
6867
6868 \end_inset
6869 </cell>
6870 </row>
6871 <row>
6872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6873 \begin_inset Text
6874
6875 \begin_layout Standard
6876
6877 \series bold
6878 Cinquemani
6879 \end_layout
6880
6881 \end_inset
6882 </cell>
6883 <cell alignment="center" valignment="top" topline="true" usebox="none">
6884 \begin_inset Text
6885
6886 \begin_layout Standard
6887 Giusi
6888 \end_layout
6889
6890 \end_inset
6891 </cell>
6892 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6893 \begin_inset Text
6894
6895 \begin_layout Standard
6896 111
6897 \end_layout
6898
6899 \end_inset
6900 </cell>
6901 </row>
6902 <row>
6903 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6904 \begin_inset Text
6905
6906 \begin_layout Standard
6907
6908 \series bold
6909 Colin
6910 \end_layout
6911
6912 \end_inset
6913 </cell>
6914 <cell alignment="center" valignment="top" topline="true" usebox="none">
6915 \begin_inset Text
6916
6917 \begin_layout Standard
6918 Bernard
6919 \end_layout
6920
6921 \end_inset
6922 </cell>
6923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6924 \begin_inset Text
6925
6926 \begin_layout Standard
6927 111
6928 \end_layout
6929
6930 \end_inset
6931 </cell>
6932 </row>
6933 <row>
6934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6935 \begin_inset Text
6936
6937 \begin_layout Standard
6938
6939 \series bold
6940 Concli
6941 \end_layout
6942
6943 \end_inset
6944 </cell>
6945 <cell alignment="center" valignment="top" topline="true" usebox="none">
6946 \begin_inset Text
6947
6948 \begin_layout Standard
6949 Gianfranco
6950 \end_layout
6951
6952 \end_inset
6953 </cell>
6954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6955 \begin_inset Text
6956
6957 \begin_layout Standard
6958 111
6959 \end_layout
6960
6961 \end_inset
6962 </cell>
6963 </row>
6964 <row>
6965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6966 \begin_inset Text
6967
6968 \begin_layout Standard
6969
6970 \series bold
6971 Dal Bosco
6972 \end_layout
6973
6974 \end_inset
6975 </cell>
6976 <cell alignment="center" valignment="top" topline="true" usebox="none">
6977 \begin_inset Text
6978
6979 \begin_layout Standard
6980 Carolina
6981 \end_layout
6982
6983 \end_inset
6984 </cell>
6985 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6986 \begin_inset Text
6987
6988 \begin_layout Standard
6989 111
6990 \end_layout
6991
6992 \end_inset
6993 </cell>
6994 </row>
6995 <row>
6996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6997 \begin_inset Text
6998
6999 \begin_layout Standard
7000
7001 \series bold
7002 Dalpiaz
7003 \end_layout
7004
7005 \end_inset
7006 </cell>
7007 <cell alignment="center" valignment="top" topline="true" usebox="none">
7008 \begin_inset Text
7009
7010 \begin_layout Standard
7011 Annamaria
7012 \end_layout
7013
7014 \end_inset
7015 </cell>
7016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7017 \begin_inset Text
7018
7019 \begin_layout Standard
7020 111
7021 \end_layout
7022
7023 \end_inset
7024 </cell>
7025 </row>
7026 <row>
7027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7028 \begin_inset Text
7029
7030 \begin_layout Standard
7031
7032 \series bold
7033 Feliciello
7034 \end_layout
7035
7036 \end_inset
7037 </cell>
7038 <cell alignment="center" valignment="top" topline="true" usebox="none">
7039 \begin_inset Text
7040
7041 \begin_layout Standard
7042 Domenico
7043 \end_layout
7044
7045 \end_inset
7046 </cell>
7047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7048 \begin_inset Text
7049
7050 \begin_layout Standard
7051 111
7052 \end_layout
7053
7054 \end_inset
7055 </cell>
7056 </row>
7057 <row>
7058 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7059 \begin_inset Text
7060
7061 \begin_layout Standard
7062
7063 \series bold
7064 Focarelli
7065 \end_layout
7066
7067 \end_inset
7068 </cell>
7069 <cell alignment="center" valignment="top" topline="true" usebox="none">
7070 \begin_inset Text
7071
7072 \begin_layout Standard
7073 Paola
7074 \end_layout
7075
7076 \end_inset
7077 </cell>
7078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7079 \begin_inset Text
7080
7081 \begin_layout Standard
7082 111
7083 \end_layout
7084
7085 \end_inset
7086 </cell>
7087 </row>
7088 <row>
7089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7090 \begin_inset Text
7091
7092 \begin_layout Standard
7093
7094 \series bold
7095 Galletti
7096 \end_layout
7097
7098 \end_inset
7099 </cell>
7100 <cell alignment="center" valignment="top" topline="true" usebox="none">
7101 \begin_inset Text
7102
7103 \begin_layout Standard
7104 Oreste
7105 \end_layout
7106
7107 \end_inset
7108 </cell>
7109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7110 \begin_inset Text
7111
7112 \begin_layout Standard
7113 111
7114 \end_layout
7115
7116 \end_inset
7117 </cell>
7118 </row>
7119 <row>
7120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7121 \begin_inset Text
7122
7123 \begin_layout Standard
7124
7125 \series bold
7126 Gasparini
7127 \end_layout
7128
7129 \end_inset
7130 </cell>
7131 <cell alignment="center" valignment="top" topline="true" usebox="none">
7132 \begin_inset Text
7133
7134 \begin_layout Standard
7135 Franca
7136 \end_layout
7137
7138 \end_inset
7139 </cell>
7140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7141 \begin_inset Text
7142
7143 \begin_layout Standard
7144 111
7145 \end_layout
7146
7147 \end_inset
7148 </cell>
7149 </row>
7150 <row>
7151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7152 \begin_inset Text
7153
7154 \begin_layout Standard
7155
7156 \series bold
7157 Rizzardi
7158 \series default
7159
7160 \begin_inset Foot
7161 status collapsed
7162
7163 \begin_layout Standard
7164 Example footnote
7165 \end_layout
7166
7167 \end_inset
7168
7169
7170 \end_layout
7171
7172 \end_inset
7173 </cell>
7174 <cell alignment="center" valignment="top" topline="true" usebox="none">
7175 \begin_inset Text
7176
7177 \begin_layout Standard
7178 Paola
7179 \end_layout
7180
7181 \end_inset
7182 </cell>
7183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7184 \begin_inset Text
7185
7186 \begin_layout Standard
7187 111
7188 \end_layout
7189
7190 \end_inset
7191 </cell>
7192 </row>
7193 <row>
7194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7195 \begin_inset Text
7196
7197 \begin_layout Standard
7198
7199 \series bold
7200 Lassini
7201 \end_layout
7202
7203 \end_inset
7204 </cell>
7205 <cell alignment="center" valignment="top" topline="true" usebox="none">
7206 \begin_inset Text
7207
7208 \begin_layout Standard
7209 Giancarlo
7210 \end_layout
7211
7212 \end_inset
7213 </cell>
7214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7215 \begin_inset Text
7216
7217 \begin_layout Standard
7218 111
7219 \end_layout
7220
7221 \end_inset
7222 </cell>
7223 </row>
7224 <row>
7225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7226 \begin_inset Text
7227
7228 \begin_layout Standard
7229
7230 \series bold
7231 Malfatti
7232 \end_layout
7233
7234 \end_inset
7235 </cell>
7236 <cell alignment="center" valignment="top" topline="true" usebox="none">
7237 \begin_inset Text
7238
7239 \begin_layout Standard
7240 Luciano
7241 \end_layout
7242
7243 \end_inset
7244 </cell>
7245 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7246 \begin_inset Text
7247
7248 \begin_layout Standard
7249 111
7250 \end_layout
7251
7252 \end_inset
7253 </cell>
7254 </row>
7255 <row>
7256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7257 \begin_inset Text
7258
7259 \begin_layout Standard
7260
7261 \series bold
7262 Malfatti
7263 \end_layout
7264
7265 \end_inset
7266 </cell>
7267 <cell alignment="center" valignment="top" topline="true" usebox="none">
7268 \begin_inset Text
7269
7270 \begin_layout Standard
7271 Valeriano
7272 \end_layout
7273
7274 \end_inset
7275 </cell>
7276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7277 \begin_inset Text
7278
7279 \begin_layout Standard
7280 111
7281 \end_layout
7282
7283 \end_inset
7284 </cell>
7285 </row>
7286 <row>
7287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7288 \begin_inset Text
7289
7290 \begin_layout Standard
7291
7292 \series bold
7293 Meneguzzo
7294 \end_layout
7295
7296 \end_inset
7297 </cell>
7298 <cell alignment="center" valignment="top" topline="true" usebox="none">
7299 \begin_inset Text
7300
7301 \begin_layout Standard
7302 Roberto
7303 \end_layout
7304
7305 \end_inset
7306 </cell>
7307 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7308 \begin_inset Text
7309
7310 \begin_layout Standard
7311 111
7312 \end_layout
7313
7314 \end_inset
7315 </cell>
7316 </row>
7317 <row>
7318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7319 \begin_inset Text
7320
7321 \begin_layout Standard
7322
7323 \series bold
7324 Mezzadra
7325 \end_layout
7326
7327 \end_inset
7328 </cell>
7329 <cell alignment="center" valignment="top" topline="true" usebox="none">
7330 \begin_inset Text
7331
7332 \begin_layout Standard
7333 Roberto
7334 \end_layout
7335
7336 \end_inset
7337 </cell>
7338 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7339 \begin_inset Text
7340
7341 \begin_layout Standard
7342 111
7343 \end_layout
7344
7345 \end_inset
7346 </cell>
7347 </row>
7348 <row>
7349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7350 \begin_inset Text
7351
7352 \begin_layout Standard
7353
7354 \series bold
7355 Pirpamer
7356 \end_layout
7357
7358 \end_inset
7359 </cell>
7360 <cell alignment="center" valignment="top" topline="true" usebox="none">
7361 \begin_inset Text
7362
7363 \begin_layout Standard
7364 Erich
7365 \end_layout
7366
7367 \end_inset
7368 </cell>
7369 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7370 \begin_inset Text
7371
7372 \begin_layout Standard
7373 111
7374 \end_layout
7375
7376 \end_inset
7377 </cell>
7378 </row>
7379 <row>
7380 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7381 \begin_inset Text
7382
7383 \begin_layout Standard
7384
7385 \series bold
7386 Pochiesa
7387 \end_layout
7388
7389 \end_inset
7390 </cell>
7391 <cell alignment="center" valignment="top" topline="true" usebox="none">
7392 \begin_inset Text
7393
7394 \begin_layout Standard
7395 Paolo
7396 \end_layout
7397
7398 \end_inset
7399 </cell>
7400 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7401 \begin_inset Text
7402
7403 \begin_layout Standard
7404 111, 222
7405 \end_layout
7406
7407 \end_inset
7408 </cell>
7409 </row>
7410 <row>
7411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7412 \begin_inset Text
7413
7414 \begin_layout Standard
7415
7416 \series bold
7417 Radina
7418 \end_layout
7419
7420 \end_inset
7421 </cell>
7422 <cell alignment="center" valignment="top" topline="true" usebox="none">
7423 \begin_inset Text
7424
7425 \begin_layout Standard
7426 Claudio
7427 \end_layout
7428
7429 \end_inset
7430 </cell>
7431 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7432 \begin_inset Text
7433
7434 \begin_layout Standard
7435 111
7436 \end_layout
7437
7438 \end_inset
7439 </cell>
7440 </row>
7441 <row>
7442 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7443 \begin_inset Text
7444
7445 \begin_layout Standard
7446
7447 \series bold
7448 Stuffer
7449 \end_layout
7450
7451 \end_inset
7452 </cell>
7453 <cell alignment="center" valignment="top" topline="true" usebox="none">
7454 \begin_inset Text
7455
7456 \begin_layout Standard
7457 Oskar
7458 \end_layout
7459
7460 \end_inset
7461 </cell>
7462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7463 \begin_inset Text
7464
7465 \begin_layout Standard
7466 111
7467 \end_layout
7468
7469 \end_inset
7470 </cell>
7471 </row>
7472 <row>
7473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7474 \begin_inset Text
7475
7476 \begin_layout Standard
7477
7478 \series bold
7479 Tacchelli
7480 \end_layout
7481
7482 \end_inset
7483 </cell>
7484 <cell alignment="center" valignment="top" topline="true" usebox="none">
7485 \begin_inset Text
7486
7487 \begin_layout Standard
7488 Ugo
7489 \end_layout
7490
7491 \end_inset
7492 </cell>
7493 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7494 \begin_inset Text
7495
7496 \begin_layout Standard
7497 111
7498 \end_layout
7499
7500 \end_inset
7501 </cell>
7502 </row>
7503 <row>
7504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7505 \begin_inset Text
7506
7507 \begin_layout Standard
7508
7509 \series bold
7510 Tezzele
7511 \end_layout
7512
7513 \end_inset
7514 </cell>
7515 <cell alignment="center" valignment="top" topline="true" usebox="none">
7516 \begin_inset Text
7517
7518 \begin_layout Standard
7519 Margit
7520 \end_layout
7521
7522 \end_inset
7523 </cell>
7524 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7525 \begin_inset Text
7526
7527 \begin_layout Standard
7528 111
7529 \end_layout
7530
7531 \end_inset
7532 </cell>
7533 </row>
7534 <row>
7535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7536 \begin_inset Text
7537
7538 \begin_layout Standard
7539
7540 \series bold
7541 Unterkalmsteiner
7542 \end_layout
7543
7544 \end_inset
7545 </cell>
7546 <cell alignment="center" valignment="top" topline="true" usebox="none">
7547 \begin_inset Text
7548
7549 \begin_layout Standard
7550 Frieda
7551 \end_layout
7552
7553 \end_inset
7554 </cell>
7555 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7556 \begin_inset Text
7557
7558 \begin_layout Standard
7559 111
7560 \end_layout
7561
7562 \end_inset
7563 </cell>
7564 </row>
7565 <row>
7566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7567 \begin_inset Text
7568
7569 \begin_layout Standard
7570
7571 \series bold
7572 Vieider
7573 \end_layout
7574
7575 \end_inset
7576 </cell>
7577 <cell alignment="center" valignment="top" topline="true" usebox="none">
7578 \begin_inset Text
7579
7580 \begin_layout Standard
7581 Hilde
7582 \end_layout
7583
7584 \end_inset
7585 </cell>
7586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7587 \begin_inset Text
7588
7589 \begin_layout Standard
7590 111
7591 \end_layout
7592
7593 \end_inset
7594 </cell>
7595 </row>
7596 <row>
7597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7598 \begin_inset Text
7599
7600 \begin_layout Standard
7601
7602 \series bold
7603 Vigna
7604 \end_layout
7605
7606 \end_inset
7607 </cell>
7608 <cell alignment="center" valignment="top" topline="true" usebox="none">
7609 \begin_inset Text
7610
7611 \begin_layout Standard
7612 Jürgen
7613 \end_layout
7614
7615 \end_inset
7616 </cell>
7617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7618 \begin_inset Text
7619
7620 \begin_layout Standard
7621 111
7622 \end_layout
7623
7624 \end_inset
7625 </cell>
7626 </row>
7627 <row>
7628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7629 \begin_inset Text
7630
7631 \begin_layout Standard
7632
7633 \series bold
7634 Weber
7635 \end_layout
7636
7637 \end_inset
7638 </cell>
7639 <cell alignment="center" valignment="top" topline="true" usebox="none">
7640 \begin_inset Text
7641
7642 \begin_layout Standard
7643 Maurizio
7644 \end_layout
7645
7646 \end_inset
7647 </cell>
7648 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7649 \begin_inset Text
7650
7651 \begin_layout Standard
7652 111
7653 \end_layout
7654
7655 \end_inset
7656 </cell>
7657 </row>
7658 <row bottomline="true">
7659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7660 \begin_inset Text
7661
7662 \begin_layout Standard
7663
7664 \series bold
7665 Winkler
7666 \end_layout
7667
7668 \end_inset
7669 </cell>
7670 <cell alignment="center" valignment="top" topline="true" usebox="none">
7671 \begin_inset Text
7672
7673 \begin_layout Standard
7674 Franz
7675 \end_layout
7676
7677 \end_inset
7678 </cell>
7679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7680 \begin_inset Text
7681
7682 \begin_layout Standard
7683 111
7684 \end_layout
7685
7686 \end_inset
7687 </cell>
7688 </row>
7689 <row bottomline="true">
7690 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7691 \begin_inset Text
7692
7693 \begin_layout Standard
7694  
7695 \end_layout
7696
7697 \end_inset
7698 </cell>
7699 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7700 \begin_inset Text
7701
7702 \begin_layout Standard
7703
7704 \end_layout
7705
7706 \end_inset
7707 </cell>
7708 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7709 \begin_inset Text
7710
7711 \begin_layout Standard
7712
7713 \end_layout
7714
7715 \end_inset
7716 </cell>
7717 </row>
7718 <row>
7719 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7720 \begin_inset Text
7721
7722 \begin_layout Standard
7723
7724 \series bold
7725 Annovi
7726 \end_layout
7727
7728 \end_inset
7729 </cell>
7730 <cell alignment="center" valignment="top" topline="true" usebox="none">
7731 \begin_inset Text
7732
7733 \begin_layout Standard
7734 Silvia
7735 \end_layout
7736
7737 \end_inset
7738 </cell>
7739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7740 \begin_inset Text
7741
7742 \begin_layout Standard
7743 555
7744 \end_layout
7745
7746 \end_inset
7747 </cell>
7748 </row>
7749 <row>
7750 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7751 \begin_inset Text
7752
7753 \begin_layout Standard
7754
7755 \series bold
7756 Bertoli
7757 \end_layout
7758
7759 \end_inset
7760 </cell>
7761 <cell alignment="center" valignment="top" topline="true" usebox="none">
7762 \begin_inset Text
7763
7764 \begin_layout Standard
7765 Stefano
7766 \end_layout
7767
7768 \end_inset
7769 </cell>
7770 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7771 \begin_inset Text
7772
7773 \begin_layout Standard
7774 555
7775 \end_layout
7776
7777 \end_inset
7778 </cell>
7779 </row>
7780 <row>
7781 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7782 \begin_inset Text
7783
7784 \begin_layout Standard
7785
7786 \series bold
7787 Bozzi
7788 \end_layout
7789
7790 \end_inset
7791 </cell>
7792 <cell alignment="center" valignment="top" topline="true" usebox="none">
7793 \begin_inset Text
7794
7795 \begin_layout Standard
7796 Walter
7797 \end_layout
7798
7799 \end_inset
7800 </cell>
7801 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7802 \begin_inset Text
7803
7804 \begin_layout Standard
7805 555
7806 \end_layout
7807
7808 \end_inset
7809 </cell>
7810 </row>
7811 <row>
7812 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7813 \begin_inset Text
7814
7815 \begin_layout Standard
7816
7817 \series bold
7818 Cachia
7819 \end_layout
7820
7821 \end_inset
7822 </cell>
7823 <cell alignment="center" valignment="top" topline="true" usebox="none">
7824 \begin_inset Text
7825
7826 \begin_layout Standard
7827 Maria
7828 \end_layout
7829
7830 \end_inset
7831 </cell>
7832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7833 \begin_inset Text
7834
7835 \begin_layout Standard
7836 555
7837 \end_layout
7838
7839 \end_inset
7840 </cell>
7841 </row>
7842 <row>
7843 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7844 \begin_inset Text
7845
7846 \begin_layout Standard
7847
7848 \series bold
7849 Cachia
7850 \end_layout
7851
7852 \end_inset
7853 </cell>
7854 <cell alignment="center" valignment="top" topline="true" usebox="none">
7855 \begin_inset Text
7856
7857 \begin_layout Standard
7858 Maurizio
7859 \end_layout
7860
7861 \end_inset
7862 </cell>
7863 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7864 \begin_inset Text
7865
7866 \begin_layout Standard
7867 555
7868 \end_layout
7869
7870 \end_inset
7871 </cell>
7872 </row>
7873 <row>
7874 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7875 \begin_inset Text
7876
7877 \begin_layout Standard
7878
7879 \series bold
7880 Cinquemani
7881 \end_layout
7882
7883 \end_inset
7884 </cell>
7885 <cell alignment="center" valignment="top" topline="true" usebox="none">
7886 \begin_inset Text
7887
7888 \begin_layout Standard
7889 Giusi
7890 \end_layout
7891
7892 \end_inset
7893 </cell>
7894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7895 \begin_inset Text
7896
7897 \begin_layout Standard
7898 555
7899 \end_layout
7900
7901 \end_inset
7902 </cell>
7903 </row>
7904 <row>
7905 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7906 \begin_inset Text
7907
7908 \begin_layout Standard
7909
7910 \series bold
7911 Colin
7912 \end_layout
7913
7914 \end_inset
7915 </cell>
7916 <cell alignment="center" valignment="top" topline="true" usebox="none">
7917 \begin_inset Text
7918
7919 \begin_layout Standard
7920 Bernard
7921 \end_layout
7922
7923 \end_inset
7924 </cell>
7925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7926 \begin_inset Text
7927
7928 \begin_layout Standard
7929 555
7930 \end_layout
7931
7932 \end_inset
7933 </cell>
7934 </row>
7935 <row>
7936 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7937 \begin_inset Text
7938
7939 \begin_layout Standard
7940
7941 \series bold
7942 Concli
7943 \end_layout
7944
7945 \end_inset
7946 </cell>
7947 <cell alignment="center" valignment="top" topline="true" usebox="none">
7948 \begin_inset Text
7949
7950 \begin_layout Standard
7951 Gianfranco
7952 \end_layout
7953
7954 \end_inset
7955 </cell>
7956 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7957 \begin_inset Text
7958
7959 \begin_layout Standard
7960 555
7961 \end_layout
7962
7963 \end_inset
7964 </cell>
7965 </row>
7966 <row>
7967 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7968 \begin_inset Text
7969
7970 \begin_layout Standard
7971
7972 \series bold
7973 Dal Bosco
7974 \end_layout
7975
7976 \end_inset
7977 </cell>
7978 <cell alignment="center" valignment="top" topline="true" usebox="none">
7979 \begin_inset Text
7980
7981 \begin_layout Standard
7982 Carolina
7983 \end_layout
7984
7985 \end_inset
7986 </cell>
7987 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7988 \begin_inset Text
7989
7990 \begin_layout Standard
7991 555
7992 \end_layout
7993
7994 \end_inset
7995 </cell>
7996 </row>
7997 <row>
7998 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7999 \begin_inset Text
8000
8001 \begin_layout Standard
8002
8003 \series bold
8004 Dalpiaz
8005 \end_layout
8006
8007 \end_inset
8008 </cell>
8009 <cell alignment="center" valignment="top" topline="true" usebox="none">
8010 \begin_inset Text
8011
8012 \begin_layout Standard
8013 Annamaria
8014 \end_layout
8015
8016 \end_inset
8017 </cell>
8018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8019 \begin_inset Text
8020
8021 \begin_layout Standard
8022 555
8023 \end_layout
8024
8025 \end_inset
8026 </cell>
8027 </row>
8028 <row>
8029 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8030 \begin_inset Text
8031
8032 \begin_layout Standard
8033
8034 \series bold
8035 Feliciello
8036 \end_layout
8037
8038 \end_inset
8039 </cell>
8040 <cell alignment="center" valignment="top" topline="true" usebox="none">
8041 \begin_inset Text
8042
8043 \begin_layout Standard
8044 Domenico
8045 \end_layout
8046
8047 \end_inset
8048 </cell>
8049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8050 \begin_inset Text
8051
8052 \begin_layout Standard
8053 555
8054 \end_layout
8055
8056 \end_inset
8057 </cell>
8058 </row>
8059 <row>
8060 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8061 \begin_inset Text
8062
8063 \begin_layout Standard
8064
8065 \series bold
8066 Focarelli
8067 \end_layout
8068
8069 \end_inset
8070 </cell>
8071 <cell alignment="center" valignment="top" topline="true" usebox="none">
8072 \begin_inset Text
8073
8074 \begin_layout Standard
8075 Paola
8076 \end_layout
8077
8078 \end_inset
8079 </cell>
8080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8081 \begin_inset Text
8082
8083 \begin_layout Standard
8084 555
8085 \end_layout
8086
8087 \end_inset
8088 </cell>
8089 </row>
8090 <row>
8091 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8092 \begin_inset Text
8093
8094 \begin_layout Standard
8095
8096 \series bold
8097 Galletti
8098 \end_layout
8099
8100 \end_inset
8101 </cell>
8102 <cell alignment="center" valignment="top" topline="true" usebox="none">
8103 \begin_inset Text
8104
8105 \begin_layout Standard
8106 Oreste
8107 \end_layout
8108
8109 \end_inset
8110 </cell>
8111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8112 \begin_inset Text
8113
8114 \begin_layout Standard
8115 555
8116 \end_layout
8117
8118 \end_inset
8119 </cell>
8120 </row>
8121 <row>
8122 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8123 \begin_inset Text
8124
8125 \begin_layout Standard
8126
8127 \series bold
8128 Gasparini
8129 \end_layout
8130
8131 \end_inset
8132 </cell>
8133 <cell alignment="center" valignment="top" topline="true" usebox="none">
8134 \begin_inset Text
8135
8136 \begin_layout Standard
8137 Franca
8138 \end_layout
8139
8140 \end_inset
8141 </cell>
8142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8143 \begin_inset Text
8144
8145 \begin_layout Standard
8146 555
8147 \end_layout
8148
8149 \end_inset
8150 </cell>
8151 </row>
8152 <row>
8153 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8154 \begin_inset Text
8155
8156 \begin_layout Standard
8157
8158 \series bold
8159 Rizzardi
8160 \end_layout
8161
8162 \end_inset
8163 </cell>
8164 <cell alignment="center" valignment="top" topline="true" usebox="none">
8165 \begin_inset Text
8166
8167 \begin_layout Standard
8168 Paola
8169 \end_layout
8170
8171 \end_inset
8172 </cell>
8173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8174 \begin_inset Text
8175
8176 \begin_layout Standard
8177 555
8178 \end_layout
8179
8180 \end_inset
8181 </cell>
8182 </row>
8183 <row>
8184 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8185 \begin_inset Text
8186
8187 \begin_layout Standard
8188
8189 \series bold
8190 Lassini
8191 \end_layout
8192
8193 \end_inset
8194 </cell>
8195 <cell alignment="center" valignment="top" topline="true" usebox="none">
8196 \begin_inset Text
8197
8198 \begin_layout Standard
8199 Giancarlo
8200 \end_layout
8201
8202 \end_inset
8203 </cell>
8204 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8205 \begin_inset Text
8206
8207 \begin_layout Standard
8208 555
8209 \end_layout
8210
8211 \end_inset
8212 </cell>
8213 </row>
8214 <row>
8215 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8216 \begin_inset Text
8217
8218 \begin_layout Standard
8219
8220 \series bold
8221 Malfatti
8222 \end_layout
8223
8224 \end_inset
8225 </cell>
8226 <cell alignment="center" valignment="top" topline="true" usebox="none">
8227 \begin_inset Text
8228
8229 \begin_layout Standard
8230 Luciano
8231 \end_layout
8232
8233 \end_inset
8234 </cell>
8235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8236 \begin_inset Text
8237
8238 \begin_layout Standard
8239 555
8240 \end_layout
8241
8242 \end_inset
8243 </cell>
8244 </row>
8245 <row>
8246 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8247 \begin_inset Text
8248
8249 \begin_layout Standard
8250
8251 \series bold
8252 Malfatti
8253 \end_layout
8254
8255 \end_inset
8256 </cell>
8257 <cell alignment="center" valignment="top" topline="true" usebox="none">
8258 \begin_inset Text
8259
8260 \begin_layout Standard
8261 Valeriano
8262 \end_layout
8263
8264 \end_inset
8265 </cell>
8266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8267 \begin_inset Text
8268
8269 \begin_layout Standard
8270 555
8271 \end_layout
8272
8273 \end_inset
8274 </cell>
8275 </row>
8276 <row>
8277 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8278 \begin_inset Text
8279
8280 \begin_layout Standard
8281
8282 \series bold
8283 Meneguzzo
8284 \end_layout
8285
8286 \end_inset
8287 </cell>
8288 <cell alignment="center" valignment="top" topline="true" usebox="none">
8289 \begin_inset Text
8290
8291 \begin_layout Standard
8292 Roberto
8293 \end_layout
8294
8295 \end_inset
8296 </cell>
8297 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8298 \begin_inset Text
8299
8300 \begin_layout Standard
8301 555
8302 \end_layout
8303
8304 \end_inset
8305 </cell>
8306 </row>
8307 <row bottomline="true">
8308 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8309 \begin_inset Text
8310
8311 \begin_layout Standard
8312
8313 \series bold
8314 Mezzadra
8315 \end_layout
8316
8317 \end_inset
8318 </cell>
8319 <cell alignment="center" valignment="top" topline="true" usebox="none">
8320 \begin_inset Text
8321
8322 \begin_layout Standard
8323 Roberto
8324 \end_layout
8325
8326 \end_inset
8327 </cell>
8328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8329 \begin_inset Text
8330
8331 \begin_layout Standard
8332 555
8333 \end_layout
8334
8335 \end_inset
8336 </cell>
8337 </row>
8338 <row bottomline="true" endlastfoot="true">
8339 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8340 \begin_inset Text
8341
8342 \begin_layout Standard
8343
8344 \end_layout
8345
8346 \end_inset
8347 </cell>
8348 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8349 \begin_inset Text
8350
8351 \begin_layout Standard
8352
8353 \end_layout
8354
8355 \end_inset
8356 </cell>
8357 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8358 \begin_inset Text
8359
8360 \begin_layout Standard
8361
8362 \end_layout
8363
8364 \end_inset
8365 </cell>
8366 </row>
8367 </lyxtabular>
8368
8369 \end_inset
8370
8371
8372 \end_layout
8373
8374 \begin_layout Section
8375 Special Longtable Issues
8376 \begin_inset LatexCommand label
8377 name "sec:Special-Longtable-Issues"
8378
8379 \end_inset
8380
8381
8382 \end_layout
8383
8384 \begin_layout Subsection
8385 Longtable Calculation
8386 \begin_inset LatexCommand index
8387 name "Longtables ! Calculation"
8388
8389 \end_inset
8390
8391
8392 \end_layout
8393
8394 \begin_layout Standard
8395 LaTeX calculates the height of table pages and their page breaks using so
8396  called chunks.
8397  Chunks are pieces of the tables that are at once in LaTeX's memory.
8398  The default value is historically set to only 20 table rows.
8399  If you are using longtables with many pages this may slow down the creation
8400  of your document.
8401  You can safely increase the chunk size to values of 100-1000 by adding
8402  this command line to your document preamble:
8403 \end_layout
8404
8405 \begin_layout Standard
8406
8407 \series bold
8408
8409 \backslash
8410 setcounter{LTchunksize}{100}
8411 \end_layout
8412
8413 \begin_layout Subsection
8414 Floats and Longtables
8415 \begin_inset LatexCommand index
8416 name "Longtables ! Floats"
8417
8418 \end_inset
8419
8420
8421 \end_layout
8422
8423 \begin_layout Standard
8424 There might be problems when a float appears on the same page where a longtable
8425  starts.
8426  To avoid such situation, add the command 
8427 \series bold
8428
8429 \backslash
8430 clearpage
8431 \series default
8432  as ERT before your longtable.
8433 \end_layout
8434
8435 \begin_layout Subsection
8436 Forced Page Breaks
8437 \begin_inset LatexCommand index
8438 name "Longtables ! Forced Page Breaks"
8439
8440 \end_inset
8441
8442
8443 \end_layout
8444
8445 \begin_layout Standard
8446 By default tables are only broken between rows.
8447  If you have a cell with multiples lines and want to have a page break within
8448  the cell, insert the new line command 
8449 \begin_inset Quotes eld
8450 \end_inset
8451
8452
8453 \series bold
8454
8455 \backslash
8456
8457 \backslash
8458
8459 \series default
8460
8461 \begin_inset Quotes erd
8462 \end_inset
8463
8464  as ERT at this point of the cell where it should be broken.
8465  Before the 
8466 \series bold
8467
8468 \backslash
8469
8470 \backslash
8471
8472 \series default
8473  command you have to insert in ERT so many 
8474 \begin_inset Quotes eld
8475 \end_inset
8476
8477
8478 \series bold
8479 &
8480 \series default
8481
8482 \begin_inset Quotes erd
8483 \end_inset
8484
8485  characters like the number of the following table columns.
8486  The 
8487 \series bold
8488 &
8489 \series default
8490  is the character to separate table cells.
8491  Write in ERT after each 
8492 \series bold
8493 &
8494 \series default
8495  the content of the corresponding following cell and delete the content
8496  of these cells.
8497 \newline
8498 Behind the the 
8499 \series bold
8500
8501 \backslash
8502
8503 \backslash
8504
8505 \series default
8506  command, insert so many 
8507 \series bold
8508 &
8509 \series default
8510  characters like the number of table columns before the current column.
8511  In Table\InsetSpace ~
8512
8513 \begin_inset LatexCommand ref
8514 reference "tab:ForcedPagebreak"
8515
8516 \end_inset
8517
8518  the cell that should be broken is in the second column followed by another
8519  column.
8520  Therefore the following command was inserted in the cell as ERT behind
8521  
8522 \begin_inset Quotes eld
8523 \end_inset
8524
8525
8526 \emph on
8527 Castelchiodato,
8528 \emph default
8529
8530 \begin_inset Quotes erd
8531 \end_inset
8532
8533 :
8534 \end_layout
8535
8536 \begin_layout Standard
8537
8538 \series bold
8539 & 111
8540 \backslash
8541
8542 \backslash
8543
8544 \newline
8545 &
8546 \end_layout
8547
8548 \begin_layout Standard
8549 The 
8550 \begin_inset Quotes eld
8551 \end_inset
8552
8553 111
8554 \begin_inset Quotes erd
8555 \end_inset
8556
8557  in the third columns of the row was deleted.
8558  If your footer row of the longtable has for a certain reason no upper line
8559  but you would have a horizontal line where the cell is broken, use this
8560  command instead:
8561 \end_layout
8562
8563 \begin_layout Standard
8564
8565 \series bold
8566 & 111
8567 \backslash
8568
8569 \backslash
8570
8571 \newline
8572
8573 \backslash
8574 hline &
8575 \end_layout
8576
8577 \begin_layout Standard
8578 When the cell to be broken is in the last column, the command
8579 \end_layout
8580
8581 \begin_layout Standard
8582
8583 \series bold
8584
8585 \backslash
8586 setlength{
8587 \backslash
8588 parf\SpecialChar \textcompwordmark{}
8589 illskip}{0pt}
8590 \end_layout
8591
8592 \begin_layout Standard
8593 must be inserted as ERT at the beginning of the cell.
8594  This assures that the part of the cell that will be displayed on the new
8595  page appears with the full width.
8596  
8597 \end_layout
8598
8599 \begin_layout Standard
8600 \align center
8601 \begin_inset Tabular
8602 <lyxtabular version="3" rows="39" columns="3">
8603 <features islongtable="true">
8604 <column alignment="left" valignment="top" leftline="true" width="0cm">
8605 <column alignment="left" valignment="top" rightline="true" width="3cm">
8606 <column alignment="right" valignment="top" rightline="true" width="0pt">
8607 <row endfirsthead="true">
8608 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8609 \begin_inset Text
8610
8611 \begin_layout Standard
8612 \begin_inset ERT
8613 status collapsed
8614
8615 \begin_layout Standard
8616
8617
8618 \backslash
8619 caption[Table with forced page break in table cell]{Table with forced page
8620  break in table cell 
8621 \end_layout
8622
8623 \end_inset
8624
8625
8626 \begin_inset LatexCommand label
8627 name "tab:ForcedPagebreak"
8628
8629 \end_inset
8630
8631
8632 \begin_inset ERT
8633 status collapsed
8634
8635 \begin_layout Standard
8636
8637 }
8638 \backslash
8639
8640 \backslash
8641 %
8642 \end_layout
8643
8644 \end_inset
8645
8646
8647 \end_layout
8648
8649 \end_inset
8650 </cell>
8651 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8652 \begin_inset Text
8653
8654 \begin_layout Standard
8655 \begin_inset ERT
8656 status collapsed
8657
8658 \begin_layout Standard
8659
8660 %
8661 \end_layout
8662
8663 \end_inset
8664
8665
8666 \end_layout
8667
8668 \end_inset
8669 </cell>
8670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8671 \begin_inset Text
8672
8673 \begin_layout Standard
8674 \begin_inset ERT
8675 status collapsed
8676
8677 \begin_layout Standard
8678
8679 %
8680 \end_layout
8681
8682 \end_inset
8683
8684
8685 \end_layout
8686
8687 \end_inset
8688 </cell>
8689 </row>
8690 <row topline="true" bottomline="true" endfirsthead="true">
8691 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8692 \begin_inset Text
8693
8694 \begin_layout Standard
8695
8696 \series bold
8697 Example Phone List (ignore the names)
8698 \end_layout
8699
8700 \end_inset
8701 </cell>
8702 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8703 \begin_inset Text
8704
8705 \begin_layout Standard
8706
8707 \end_layout
8708
8709 \end_inset
8710 </cell>
8711 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8712 \begin_inset Text
8713
8714 \begin_layout Standard
8715
8716 \end_layout
8717
8718 \end_inset
8719 </cell>
8720 </row>
8721 <row topline="true" bottomline="true" endfirsthead="true">
8722 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8723 \begin_inset Text
8724
8725 \begin_layout Standard
8726
8727 \series bold
8728 NAME
8729 \end_layout
8730
8731 \end_inset
8732 </cell>
8733 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8734 \begin_inset Text
8735
8736 \begin_layout Standard
8737
8738 \end_layout
8739
8740 \end_inset
8741 </cell>
8742 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8743 \begin_inset Text
8744
8745 \begin_layout Standard
8746
8747 \series bold
8748 TEL.
8749 \end_layout
8750
8751 \end_inset
8752 </cell>
8753 </row>
8754 <row bottomline="true" endhead="true">
8755 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8756 \begin_inset Text
8757
8758 \begin_layout Standard
8759 \begin_inset ERT
8760 status collapsed
8761
8762 \begin_layout Standard
8763
8764
8765 \backslash
8766 caption{Continued table with forced page break in table cell}
8767 \backslash
8768
8769 \backslash
8770 %
8771 \end_layout
8772
8773 \end_inset
8774
8775
8776 \end_layout
8777
8778 \end_inset
8779 </cell>
8780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8781 \begin_inset Text
8782
8783 \begin_layout Standard
8784 \begin_inset ERT
8785 status collapsed
8786
8787 \begin_layout Standard
8788
8789 %
8790 \end_layout
8791
8792 \end_inset
8793
8794
8795 \end_layout
8796
8797 \end_inset
8798 </cell>
8799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8800 \begin_inset Text
8801
8802 \begin_layout Standard
8803 \begin_inset ERT
8804 status collapsed
8805
8806 \begin_layout Standard
8807
8808 %
8809 \end_layout
8810
8811 \end_inset
8812
8813
8814 \end_layout
8815
8816 \end_inset
8817 </cell>
8818 </row>
8819 <row topline="true" bottomline="true" endhead="true">
8820 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8821 \begin_inset Text
8822
8823 \begin_layout Standard
8824
8825 \series bold
8826  Example Phone List
8827 \end_layout
8828
8829 \end_inset
8830 </cell>
8831 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8832 \begin_inset Text
8833
8834 \begin_layout Standard
8835
8836 \end_layout
8837
8838 \end_inset
8839 </cell>
8840 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8841 \begin_inset Text
8842
8843 \begin_layout Standard
8844
8845 \end_layout
8846
8847 \end_inset
8848 </cell>
8849 </row>
8850 <row topline="true" bottomline="true" endhead="true">
8851 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8852 \begin_inset Text
8853
8854 \begin_layout Standard
8855
8856 \series bold
8857 NAME
8858 \end_layout
8859
8860 \end_inset
8861 </cell>
8862 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8863 \begin_inset Text
8864
8865 \begin_layout Standard
8866
8867 \end_layout
8868
8869 \end_inset
8870 </cell>
8871 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8872 \begin_inset Text
8873
8874 \begin_layout Standard
8875
8876 \series bold
8877 TEL.
8878 \end_layout
8879
8880 \end_inset
8881 </cell>
8882 </row>
8883 <row topline="true" bottomline="true" endfoot="true">
8884 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8885 \begin_inset Text
8886
8887 \begin_layout Standard
8888 continued on next page
8889 \end_layout
8890
8891 \end_inset
8892 </cell>
8893 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8894 \begin_inset Text
8895
8896 \begin_layout Standard
8897
8898 \end_layout
8899
8900 \end_inset
8901 </cell>
8902 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8903 \begin_inset Text
8904
8905 \begin_layout Standard
8906
8907 \end_layout
8908
8909 \end_inset
8910 </cell>
8911 </row>
8912 <row>
8913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8914 \begin_inset Text
8915
8916 \begin_layout Standard
8917
8918 \series bold
8919 Annovi
8920 \end_layout
8921
8922 \end_inset
8923 </cell>
8924 <cell alignment="center" valignment="top" topline="true" usebox="none">
8925 \begin_inset Text
8926
8927 \begin_layout Standard
8928 Silvia
8929 \end_layout
8930
8931 \end_inset
8932 </cell>
8933 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8934 \begin_inset Text
8935
8936 \begin_layout Standard
8937 111
8938 \end_layout
8939
8940 \end_inset
8941 </cell>
8942 </row>
8943 <row>
8944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8945 \begin_inset Text
8946
8947 \begin_layout Standard
8948
8949 \series bold
8950 Bertoli
8951 \end_layout
8952
8953 \end_inset
8954 </cell>
8955 <cell alignment="center" valignment="top" topline="true" usebox="none">
8956 \begin_inset Text
8957
8958 \begin_layout Standard
8959 Stefano
8960 \end_layout
8961
8962 \end_inset
8963 </cell>
8964 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8965 \begin_inset Text
8966
8967 \begin_layout Standard
8968 111
8969 \end_layout
8970
8971 \end_inset
8972 </cell>
8973 </row>
8974 <row>
8975 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8976 \begin_inset Text
8977
8978 \begin_layout Standard
8979
8980 \series bold
8981 Bozzi
8982 \end_layout
8983
8984 \end_inset
8985 </cell>
8986 <cell alignment="center" valignment="top" topline="true" usebox="none">
8987 \begin_inset Text
8988
8989 \begin_layout Standard
8990 Walter
8991 \end_layout
8992
8993 \end_inset
8994 </cell>
8995 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8996 \begin_inset Text
8997
8998 \begin_layout Standard
8999 111
9000 \end_layout
9001
9002 \end_inset
9003 </cell>
9004 </row>
9005 <row>
9006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9007 \begin_inset Text
9008
9009 \begin_layout Standard
9010
9011 \series bold
9012 Cachia
9013 \end_layout
9014
9015 \end_inset
9016 </cell>
9017 <cell alignment="center" valignment="top" topline="true" usebox="none">
9018 \begin_inset Text
9019
9020 \begin_layout Standard
9021 Maria
9022 \end_layout
9023
9024 \end_inset
9025 </cell>
9026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9027 \begin_inset Text
9028
9029 \begin_layout Standard
9030 111
9031 \end_layout
9032
9033 \end_inset
9034 </cell>
9035 </row>
9036 <row>
9037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9038 \begin_inset Text
9039
9040 \begin_layout Standard
9041
9042 \series bold
9043 Cachia
9044 \end_layout
9045
9046 \end_inset
9047 </cell>
9048 <cell alignment="center" valignment="top" topline="true" usebox="none">
9049 \begin_inset Text
9050
9051 \begin_layout Standard
9052 Maurizio
9053 \end_layout
9054
9055 \end_inset
9056 </cell>
9057 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9058 \begin_inset Text
9059
9060 \begin_layout Standard
9061 111
9062 \end_layout
9063
9064 \end_inset
9065 </cell>
9066 </row>
9067 <row>
9068 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9069 \begin_inset Text
9070
9071 \begin_layout Standard
9072
9073 \series bold
9074 Cinquemani
9075 \end_layout
9076
9077 \end_inset
9078 </cell>
9079 <cell alignment="center" valignment="top" topline="true" usebox="none">
9080 \begin_inset Text
9081
9082 \begin_layout Standard
9083 Giusi
9084 \end_layout
9085
9086 \end_inset
9087 </cell>
9088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9089 \begin_inset Text
9090
9091 \begin_layout Standard
9092 111
9093 \end_layout
9094
9095 \end_inset
9096 </cell>
9097 </row>
9098 <row>
9099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9100 \begin_inset Text
9101
9102 \begin_layout Standard
9103
9104 \series bold
9105 Colin
9106 \end_layout
9107
9108 \end_inset
9109 </cell>
9110 <cell alignment="center" valignment="top" topline="true" usebox="none">
9111 \begin_inset Text
9112
9113 \begin_layout Standard
9114 Bernard
9115 \end_layout
9116
9117 \end_inset
9118 </cell>
9119 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9120 \begin_inset Text
9121
9122 \begin_layout Standard
9123 111
9124 \end_layout
9125
9126 \end_inset
9127 </cell>
9128 </row>
9129 <row>
9130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9131 \begin_inset Text
9132
9133 \begin_layout Standard
9134
9135 \series bold
9136 Concli
9137 \end_layout
9138
9139 \end_inset
9140 </cell>
9141 <cell alignment="center" valignment="top" topline="true" usebox="none">
9142 \begin_inset Text
9143
9144 \begin_layout Standard
9145 Gianfranco
9146 \end_layout
9147
9148 \end_inset
9149 </cell>
9150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9151 \begin_inset Text
9152
9153 \begin_layout Standard
9154 111
9155 \end_layout
9156
9157 \end_inset
9158 </cell>
9159 </row>
9160 <row>
9161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9162 \begin_inset Text
9163
9164 \begin_layout Standard
9165
9166 \series bold
9167 Dal Bosco
9168 \end_layout
9169
9170 \end_inset
9171 </cell>
9172 <cell alignment="center" valignment="top" topline="true" usebox="none">
9173 \begin_inset Text
9174
9175 \begin_layout Standard
9176 Carolina
9177 \end_layout
9178
9179 \end_inset
9180 </cell>
9181 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9182 \begin_inset Text
9183
9184 \begin_layout Standard
9185 111
9186 \end_layout
9187
9188 \end_inset
9189 </cell>
9190 </row>
9191 <row>
9192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9193 \begin_inset Text
9194
9195 \begin_layout Standard
9196
9197 \series bold
9198 Dalpiaz
9199 \end_layout
9200
9201 \end_inset
9202 </cell>
9203 <cell alignment="center" valignment="top" topline="true" usebox="none">
9204 \begin_inset Text
9205
9206 \begin_layout Standard
9207 Annamaria
9208 \end_layout
9209
9210 \end_inset
9211 </cell>
9212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9213 \begin_inset Text
9214
9215 \begin_layout Standard
9216 111
9217 \end_layout
9218
9219 \end_inset
9220 </cell>
9221 </row>
9222 <row>
9223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9224 \begin_inset Text
9225
9226 \begin_layout Standard
9227
9228 \series bold
9229 Feliciello
9230 \end_layout
9231
9232 \end_inset
9233 </cell>
9234 <cell alignment="center" valignment="top" topline="true" usebox="none">
9235 \begin_inset Text
9236
9237 \begin_layout Standard
9238 Domenico
9239 \end_layout
9240
9241 \end_inset
9242 </cell>
9243 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9244 \begin_inset Text
9245
9246 \begin_layout Standard
9247 111
9248 \end_layout
9249
9250 \end_inset
9251 </cell>
9252 </row>
9253 <row>
9254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9255 \begin_inset Text
9256
9257 \begin_layout Standard
9258
9259 \series bold
9260 Focarelli
9261 \end_layout
9262
9263 \end_inset
9264 </cell>
9265 <cell alignment="center" valignment="top" topline="true" usebox="none">
9266 \begin_inset Text
9267
9268 \begin_layout Standard
9269 Paola
9270 \end_layout
9271
9272 \end_inset
9273 </cell>
9274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9275 \begin_inset Text
9276
9277 \begin_layout Standard
9278 111
9279 \end_layout
9280
9281 \end_inset
9282 </cell>
9283 </row>
9284 <row>
9285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9286 \begin_inset Text
9287
9288 \begin_layout Standard
9289
9290 \series bold
9291 Galletti
9292 \end_layout
9293
9294 \end_inset
9295 </cell>
9296 <cell alignment="center" valignment="top" topline="true" usebox="none">
9297 \begin_inset Text
9298
9299 \begin_layout Standard
9300 Oreste
9301 \end_layout
9302
9303 \end_inset
9304 </cell>
9305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9306 \begin_inset Text
9307
9308 \begin_layout Standard
9309 111
9310 \end_layout
9311
9312 \end_inset
9313 </cell>
9314 </row>
9315 <row>
9316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9317 \begin_inset Text
9318
9319 \begin_layout Standard
9320
9321 \series bold
9322 Gasparini
9323 \end_layout
9324
9325 \end_inset
9326 </cell>
9327 <cell alignment="center" valignment="top" topline="true" usebox="none">
9328 \begin_inset Text
9329
9330 \begin_layout Standard
9331 Franca
9332 \end_layout
9333
9334 \end_inset
9335 </cell>
9336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9337 \begin_inset Text
9338
9339 \begin_layout Standard
9340 111
9341 \end_layout
9342
9343 \end_inset
9344 </cell>
9345 </row>
9346 <row>
9347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9348 \begin_inset Text
9349
9350 \begin_layout Standard
9351
9352 \series bold
9353 Lassini
9354 \end_layout
9355
9356 \end_inset
9357 </cell>
9358 <cell alignment="center" valignment="top" topline="true" usebox="none">
9359 \begin_inset Text
9360
9361 \begin_layout Standard
9362 Giancarlo
9363 \end_layout
9364
9365 \end_inset
9366 </cell>
9367 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9368 \begin_inset Text
9369
9370 \begin_layout Standard
9371 111
9372 \end_layout
9373
9374 \end_inset
9375 </cell>
9376 </row>
9377 <row>
9378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9379 \begin_inset Text
9380
9381 \begin_layout Standard
9382
9383 \series bold
9384 Malfatti
9385 \end_layout
9386
9387 \end_inset
9388 </cell>
9389 <cell alignment="center" valignment="top" topline="true" usebox="none">
9390 \begin_inset Text
9391
9392 \begin_layout Standard
9393 Luciano
9394 \end_layout
9395
9396 \end_inset
9397 </cell>
9398 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9399 \begin_inset Text
9400
9401 \begin_layout Standard
9402 111
9403 \end_layout
9404
9405 \end_inset
9406 </cell>
9407 </row>
9408 <row>
9409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9410 \begin_inset Text
9411
9412 \begin_layout Standard
9413
9414 \series bold
9415 Malfatti
9416 \end_layout
9417
9418 \end_inset
9419 </cell>
9420 <cell alignment="center" valignment="top" topline="true" usebox="none">
9421 \begin_inset Text
9422
9423 \begin_layout Standard
9424 Valeriano
9425 \end_layout
9426
9427 \end_inset
9428 </cell>
9429 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9430 \begin_inset Text
9431
9432 \begin_layout Standard
9433 111
9434 \end_layout
9435
9436 \end_inset
9437 </cell>
9438 </row>
9439 <row>
9440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9441 \begin_inset Text
9442
9443 \begin_layout Standard
9444
9445 \series bold
9446 Meneguzzo
9447 \end_layout
9448
9449 \end_inset
9450 </cell>
9451 <cell alignment="center" valignment="top" topline="true" usebox="none">
9452 \begin_inset Text
9453
9454 \begin_layout Standard
9455 Roberto
9456 \end_layout
9457
9458 \end_inset
9459 </cell>
9460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9461 \begin_inset Text
9462
9463 \begin_layout Standard
9464 111
9465 \end_layout
9466
9467 \end_inset
9468 </cell>
9469 </row>
9470 <row>
9471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9472 \begin_inset Text
9473
9474 \begin_layout Standard
9475
9476 \series bold
9477 Mezzadra
9478 \end_layout
9479
9480 \end_inset
9481 </cell>
9482 <cell alignment="center" valignment="top" topline="true" usebox="none">
9483 \begin_inset Text
9484
9485 \begin_layout Standard
9486 Roberto
9487 \end_layout
9488
9489 \end_inset
9490 </cell>
9491 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9492 \begin_inset Text
9493
9494 \begin_layout Standard
9495 111
9496 \end_layout
9497
9498 \end_inset
9499 </cell>
9500 </row>
9501 <row>
9502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9503 \begin_inset Text
9504
9505 \begin_layout Standard
9506
9507 \series bold
9508 Pirpamer
9509 \end_layout
9510
9511 \end_inset
9512 </cell>
9513 <cell alignment="center" valignment="top" topline="true" usebox="none">
9514 \begin_inset Text
9515
9516 \begin_layout Standard
9517 Erich
9518 \end_layout
9519
9520 \end_inset
9521 </cell>
9522 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9523 \begin_inset Text
9524
9525 \begin_layout Standard
9526 111
9527 \end_layout
9528
9529 \end_inset
9530 </cell>
9531 </row>
9532 <row>
9533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9534 \begin_inset Text
9535
9536 \begin_layout Standard
9537
9538 \series bold
9539 Pochiesa
9540 \end_layout
9541
9542 \end_inset
9543 </cell>
9544 <cell alignment="center" valignment="top" topline="true" usebox="none">
9545 \begin_inset Text
9546
9547 \begin_layout Standard
9548 Paolo
9549 \end_layout
9550
9551 \end_inset
9552 </cell>
9553 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9554 \begin_inset Text
9555
9556 \begin_layout Standard
9557 111, 222
9558 \end_layout
9559
9560 \end_inset
9561 </cell>
9562 </row>
9563 <row>
9564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9565 \begin_inset Text
9566
9567 \begin_layout Standard
9568
9569 \series bold
9570 Radina
9571 \end_layout
9572
9573 \end_inset
9574 </cell>
9575 <cell alignment="center" valignment="top" topline="true" usebox="none">
9576 \begin_inset Text
9577
9578 \begin_layout Standard
9579 Claudio
9580 \end_layout
9581
9582 \end_inset
9583 </cell>
9584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9585 \begin_inset Text
9586
9587 \begin_layout Standard
9588 111
9589 \end_layout
9590
9591 \end_inset
9592 </cell>
9593 </row>
9594 <row>
9595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9596 \begin_inset Text
9597
9598 \begin_layout Standard
9599
9600 \series bold
9601 Rizzardi
9602 \end_layout
9603
9604 \end_inset
9605 </cell>
9606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9607 \begin_inset Text
9608
9609 \begin_layout Standard
9610 Paolo, 11.
9611  Fürst von Montecompatri, 11.
9612  Fürst von Sulmona und Vivaro, 10.
9613  Fürst von Rossano, 5.
9614  Herzog von Canemorte, 11.
9615  Herzog von Palombara, 5.
9616  Herzog von Castelchiodato,
9617 \begin_inset ERT
9618 status collapsed
9619
9620 \begin_layout Standard
9621
9622 & 111
9623 \backslash
9624
9625 \backslash
9626
9627 \end_layout
9628
9629 \begin_layout Standard
9630
9631 &
9632 \end_layout
9633
9634 \end_inset
9635
9636  11.
9637  Herzog von Poggionativo, 11.
9638  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9639  Graf von Valinfreda, 11.
9640  Baron von Cropalati, 11.
9641  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9642 \end_layout
9643
9644 \end_inset
9645 </cell>
9646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9647 \begin_inset Text
9648
9649 \begin_layout Standard
9650
9651 \end_layout
9652
9653 \end_inset
9654 </cell>
9655 </row>
9656 <row>
9657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9658 \begin_inset Text
9659
9660 \begin_layout Standard
9661
9662 \series bold
9663 Stuffer
9664 \end_layout
9665
9666 \end_inset
9667 </cell>
9668 <cell alignment="center" valignment="top" topline="true" usebox="none">
9669 \begin_inset Text
9670
9671 \begin_layout Standard
9672 Oskar
9673 \end_layout
9674
9675 \end_inset
9676 </cell>
9677 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9678 \begin_inset Text
9679
9680 \begin_layout Standard
9681 111
9682 \end_layout
9683
9684 \end_inset
9685 </cell>
9686 </row>
9687 <row>
9688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9689 \begin_inset Text
9690
9691 \begin_layout Standard
9692
9693 \series bold
9694 Tacchelli
9695 \end_layout
9696
9697 \end_inset
9698 </cell>
9699 <cell alignment="center" valignment="top" topline="true" usebox="none">
9700 \begin_inset Text
9701
9702 \begin_layout Standard
9703 Ugo
9704 \end_layout
9705
9706 \end_inset
9707 </cell>
9708 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9709 \begin_inset Text
9710
9711 \begin_layout Standard
9712 111
9713 \end_layout
9714
9715 \end_inset
9716 </cell>
9717 </row>
9718 <row>
9719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9720 \begin_inset Text
9721
9722 \begin_layout Standard
9723
9724 \series bold
9725 Tezzele
9726 \end_layout
9727
9728 \end_inset
9729 </cell>
9730 <cell alignment="center" valignment="top" topline="true" usebox="none">
9731 \begin_inset Text
9732
9733 \begin_layout Standard
9734 Margit
9735 \end_layout
9736
9737 \end_inset
9738 </cell>
9739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9740 \begin_inset Text
9741
9742 \begin_layout Standard
9743 111
9744 \end_layout
9745
9746 \end_inset
9747 </cell>
9748 </row>
9749 <row>
9750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9751 \begin_inset Text
9752
9753 \begin_layout Standard
9754
9755 \series bold
9756 Unterkalmsteiner
9757 \end_layout
9758
9759 \end_inset
9760 </cell>
9761 <cell alignment="center" valignment="top" topline="true" usebox="none">
9762 \begin_inset Text
9763
9764 \begin_layout Standard
9765 Frieda
9766 \end_layout
9767
9768 \end_inset
9769 </cell>
9770 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9771 \begin_inset Text
9772
9773 \begin_layout Standard
9774 111
9775 \end_layout
9776
9777 \end_inset
9778 </cell>
9779 </row>
9780 <row>
9781 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9782 \begin_inset Text
9783
9784 \begin_layout Standard
9785
9786 \series bold
9787 Vieider
9788 \end_layout
9789
9790 \end_inset
9791 </cell>
9792 <cell alignment="center" valignment="top" topline="true" usebox="none">
9793 \begin_inset Text
9794
9795 \begin_layout Standard
9796 Hilde
9797 \end_layout
9798
9799 \end_inset
9800 </cell>
9801 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9802 \begin_inset Text
9803
9804 \begin_layout Standard
9805 111
9806 \end_layout
9807
9808 \end_inset
9809 </cell>
9810 </row>
9811 <row>
9812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9813 \begin_inset Text
9814
9815 \begin_layout Standard
9816
9817 \series bold
9818 Vigna
9819 \end_layout
9820
9821 \end_inset
9822 </cell>
9823 <cell alignment="center" valignment="top" topline="true" usebox="none">
9824 \begin_inset Text
9825
9826 \begin_layout Standard
9827 Jürgen
9828 \end_layout
9829
9830 \end_inset
9831 </cell>
9832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9833 \begin_inset Text
9834
9835 \begin_layout Standard
9836 111
9837 \end_layout
9838
9839 \end_inset
9840 </cell>
9841 </row>
9842 <row>
9843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9844 \begin_inset Text
9845
9846 \begin_layout Standard
9847
9848 \series bold
9849 Weber
9850 \end_layout
9851
9852 \end_inset
9853 </cell>
9854 <cell alignment="center" valignment="top" topline="true" usebox="none">
9855 \begin_inset Text
9856
9857 \begin_layout Standard
9858 Maurizio
9859 \end_layout
9860
9861 \end_inset
9862 </cell>
9863 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9864 \begin_inset Text
9865
9866 \begin_layout Standard
9867 111
9868 \end_layout
9869
9870 \end_inset
9871 </cell>
9872 </row>
9873 <row bottomline="true">
9874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9875 \begin_inset Text
9876
9877 \begin_layout Standard
9878
9879 \series bold
9880 Winkler
9881 \end_layout
9882
9883 \end_inset
9884 </cell>
9885 <cell alignment="center" valignment="top" topline="true" usebox="none">
9886 \begin_inset Text
9887
9888 \begin_layout Standard
9889 Franz
9890 \end_layout
9891
9892 \end_inset
9893 </cell>
9894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9895 \begin_inset Text
9896
9897 \begin_layout Standard
9898 111
9899 \end_layout
9900
9901 \end_inset
9902 </cell>
9903 </row>
9904 <row endlastfoot="true">
9905 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9906 \begin_inset Text
9907
9908 \begin_layout Standard
9909
9910 \end_layout
9911
9912 \end_inset
9913 </cell>
9914 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9915 \begin_inset Text
9916
9917 \begin_layout Standard
9918
9919 \end_layout
9920
9921 \end_inset
9922 </cell>
9923 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9924 \begin_inset Text
9925
9926 \begin_layout Standard
9927
9928 \end_layout
9929
9930 \end_inset
9931 </cell>
9932 </row>
9933 </lyxtabular>
9934
9935 \end_inset
9936
9937
9938 \end_layout
9939
9940 \begin_layout Section
9941 Multiple Lines Columns and Rows
9942 \end_layout
9943
9944 \begin_layout Subsection
9945 Multiple Lines in Table Cells
9946 \begin_inset LatexCommand label
9947 name "sub:Multiple-Lines-in"
9948
9949 \end_inset
9950
9951
9952 \begin_inset LatexCommand index
9953 name "Multiple Lines in Table Cells"
9954
9955 \end_inset
9956
9957
9958 \begin_inset LatexCommand index
9959 name "Table ! Linebreaks"
9960
9961 \end_inset
9962
9963
9964 \end_layout
9965
9966 \begin_layout Standard
9967 \align center
9968 \begin_inset Float table
9969 placement H
9970 wide false
9971 sideways false
9972 status collapsed
9973
9974 \begin_layout Standard
9975 \begin_inset Caption
9976
9977 \begin_layout Standard
9978 \begin_inset LatexCommand label
9979 name "tab:Table-with-multiple"
9980
9981 \end_inset
9982
9983 Table with multiple lines in cells
9984 \end_layout
9985
9986 \end_inset
9987
9988
9989 \end_layout
9990
9991 \begin_layout Standard
9992 \align center
9993 \begin_inset Tabular
9994 <lyxtabular version="3" rows="3" columns="3">
9995 <features>
9996 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9997 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9998 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9999 <row topline="true">
10000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10001 \begin_inset Text
10002
10003 \begin_layout Standard
10004 multiple
10005 \begin_inset ERT
10006 status collapsed
10007
10008 \begin_layout Standard
10009
10010
10011 \backslash
10012 linebreak 
10013 \end_layout
10014
10015 \end_inset
10016
10017  lines
10018 \end_layout
10019
10020 \end_inset
10021 </cell>
10022 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10023 \begin_inset Text
10024
10025 \begin_layout Standard
10026 b
10027 \end_layout
10028
10029 \end_inset
10030 </cell>
10031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10032 \begin_inset Text
10033
10034 \begin_layout Standard
10035 c
10036 \end_layout
10037
10038 \end_inset
10039 </cell>
10040 </row>
10041 <row topline="true">
10042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10043 \begin_inset Text
10044
10045 \begin_layout Standard
10046 d
10047 \end_layout
10048
10049 \end_inset
10050 </cell>
10051 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10052 \begin_inset Text
10053
10054 \begin_layout Standard
10055 e
10056 \end_layout
10057
10058 \end_inset
10059 </cell>
10060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10061 \begin_inset Text
10062
10063 \begin_layout Standard
10064 f
10065 \end_layout
10066
10067 \end_inset
10068 </cell>
10069 </row>
10070 <row topline="true" bottomline="true">
10071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10072 \begin_inset Text
10073
10074 \begin_layout Standard
10075 g
10076 \end_layout
10077
10078 \end_inset
10079 </cell>
10080 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10081 \begin_inset Text
10082
10083 \begin_layout Standard
10084 h
10085 \end_layout
10086
10087 \end_inset
10088 </cell>
10089 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10090 \begin_inset Text
10091
10092 \begin_layout Standard
10093 i
10094 \end_layout
10095
10096 \end_inset
10097 </cell>
10098 </row>
10099 </lyxtabular>
10100
10101 \end_inset
10102
10103
10104 \end_layout
10105
10106 \end_inset
10107
10108
10109 \end_layout
10110
10111 \begin_layout Standard
10112 Adjusting a fixed width for a column, enables to enter text as a paragraph
10113  with multiple lines and hyphenations.
10114 \end_layout
10115
10116 \begin_layout Standard
10117 To produce Table\InsetSpace ~
10118
10119 \begin_inset LatexCommand ref
10120 reference "tab:Table-with-multiple"
10121
10122 \end_inset
10123
10124 , create a 3×3 table, mark the first cell and right-click on it.
10125  In the appearing table dialog we set a cell width of 2.5\InsetSpace \thinspace{}
10126 cm and choose centered
10127  for the vertical and horizontal alignment.
10128  As our text is smaller than than 2.5\InsetSpace \thinspace{}
10129 cm, only one line will appear.
10130  To get two lines, we add a line break with the command
10131 \end_layout
10132
10133 \begin_layout Standard
10134
10135 \series bold
10136
10137 \backslash
10138 linebreak
10139 \end_layout
10140
10141 \begin_layout Standard
10142 in ERT.
10143  If the text is wider than the set cell width it will automatically be broken
10144  to several lines.
10145 \end_layout
10146
10147 \begin_layout Standard
10148 To center the text inside the two other cells of the first row vertically,
10149  right-click in the second cell, adjust a fixed width of 0.5\InsetSpace \thinspace{}
10150 cm and choose
10151  centered alignments.
10152  Then do the same for the third cell of the row.
10153 \end_layout
10154
10155 \begin_layout Standard
10156 If you have a long word in a cell with a fixed width, it cannot be hyphenated
10157  by LaTeX if it is the first entry.
10158  Therefore you need to insert something, to make the word not being the
10159  first entry: Add the command
10160 \end_layout
10161
10162 \begin_layout Standard
10163
10164 \series bold
10165
10166 \backslash
10167 hspace{0pt}
10168 \end_layout
10169
10170 \begin_layout Standard
10171 in ERT before the word.
10172  As the space is zero, it doesn't change the output.
10173  Table\InsetSpace ~
10174
10175 \begin_inset LatexCommand ref
10176 reference "tab:Table-with-and"
10177
10178 \end_inset
10179
10180  shows the effect.
10181 \end_layout
10182
10183 \begin_layout Standard
10184 \begin_inset Float table
10185 wide false
10186 sideways false
10187 status open
10188
10189 \begin_layout Standard
10190 \begin_inset Caption
10191
10192 \begin_layout Standard
10193 \begin_inset LatexCommand label
10194 name "tab:Table-with-and"
10195
10196 \end_inset
10197
10198 Table with and without hyphenation
10199 \end_layout
10200
10201 \end_inset
10202
10203
10204 \end_layout
10205
10206 \begin_layout Standard
10207
10208 \hfill
10209
10210 \begin_inset Tabular
10211 <lyxtabular version="3" rows="3" columns="3">
10212 <features>
10213 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10214 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10215 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10216 <row topline="true">
10217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10218 \begin_inset Text
10219
10220 \begin_layout Standard
10221 verylongtablecellword
10222 \end_layout
10223
10224 \end_inset
10225 </cell>
10226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10227 \begin_inset Text
10228
10229 \begin_layout Standard
10230 b
10231 \end_layout
10232
10233 \end_inset
10234 </cell>
10235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10236 \begin_inset Text
10237
10238 \begin_layout Standard
10239 c
10240 \end_layout
10241
10242 \end_inset
10243 </cell>
10244 </row>
10245 <row topline="true">
10246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10247 \begin_inset Text
10248
10249 \begin_layout Standard
10250 d
10251 \end_layout
10252
10253 \end_inset
10254 </cell>
10255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10256 \begin_inset Text
10257
10258 \begin_layout Standard
10259 e
10260 \end_layout
10261
10262 \end_inset
10263 </cell>
10264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10265 \begin_inset Text
10266
10267 \begin_layout Standard
10268 f
10269 \end_layout
10270
10271 \end_inset
10272 </cell>
10273 </row>
10274 <row topline="true" bottomline="true">
10275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10276 \begin_inset Text
10277
10278 \begin_layout Standard
10279 g
10280 \end_layout
10281
10282 \end_inset
10283 </cell>
10284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10285 \begin_inset Text
10286
10287 \begin_layout Standard
10288 h
10289 \end_layout
10290
10291 \end_inset
10292 </cell>
10293 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10294 \begin_inset Text
10295
10296 \begin_layout Standard
10297 i
10298 \end_layout
10299
10300 \end_inset
10301 </cell>
10302 </row>
10303 </lyxtabular>
10304
10305 \end_inset
10306
10307
10308 \hfill
10309
10310 \begin_inset Tabular
10311 <lyxtabular version="3" rows="3" columns="3">
10312 <features>
10313 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10314 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10315 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10316 <row topline="true">
10317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10318 \begin_inset Text
10319
10320 \begin_layout Standard
10321 \begin_inset ERT
10322 status collapsed
10323
10324 \begin_layout Standard
10325
10326
10327 \backslash
10328 hspace{0pt}
10329 \end_layout
10330
10331 \end_inset
10332
10333 verylongtablecellword
10334 \end_layout
10335
10336 \end_inset
10337 </cell>
10338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10339 \begin_inset Text
10340
10341 \begin_layout Standard
10342 b
10343 \end_layout
10344
10345 \end_inset
10346 </cell>
10347 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10348 \begin_inset Text
10349
10350 \begin_layout Standard
10351 c
10352 \end_layout
10353
10354 \end_inset
10355 </cell>
10356 </row>
10357 <row topline="true">
10358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10359 \begin_inset Text
10360
10361 \begin_layout Standard
10362 d
10363 \end_layout
10364
10365 \end_inset
10366 </cell>
10367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10368 \begin_inset Text
10369
10370 \begin_layout Standard
10371 e
10372 \end_layout
10373
10374 \end_inset
10375 </cell>
10376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10377 \begin_inset Text
10378
10379 \begin_layout Standard
10380 f
10381 \end_layout
10382
10383 \end_inset
10384 </cell>
10385 </row>
10386 <row topline="true" bottomline="true">
10387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10388 \begin_inset Text
10389
10390 \begin_layout Standard
10391 g
10392 \end_layout
10393
10394 \end_inset
10395 </cell>
10396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10397 \begin_inset Text
10398
10399 \begin_layout Standard
10400 h
10401 \end_layout
10402
10403 \end_inset
10404 </cell>
10405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10406 \begin_inset Text
10407
10408 \begin_layout Standard
10409 i
10410 \end_layout
10411
10412 \end_inset
10413 </cell>
10414 </row>
10415 </lyxtabular>
10416
10417 \end_inset
10418
10419
10420 \hfill
10421
10422 \end_layout
10423
10424 \end_inset
10425
10426
10427 \end_layout
10428
10429 \begin_layout Standard
10430
10431 \newpage
10432
10433 \end_layout
10434
10435 \begin_layout Subsection
10436 Multicolumns
10437 \begin_inset LatexCommand label
10438 name "sub:Multicolumns"
10439
10440 \end_inset
10441
10442
10443 \begin_inset LatexCommand index
10444 name "Multicolumns"
10445
10446 \end_inset
10447
10448
10449 \begin_inset LatexCommand index
10450 name "Table ! Multicolumns"
10451
10452 \end_inset
10453
10454
10455 \end_layout
10456
10457 \begin_layout Subsubsection
10458 Multicolumn Basics
10459 \end_layout
10460
10461 \begin_layout Standard
10462 To span a cell over multiple columns, mark as much cells within a line that
10463  should be one spanned cell and use either the table-toolbar button 
10464 \begin_inset Graphics
10465         filename ../images/tabular-feature_multicolumn.xpm
10466         scale 85
10467
10468 \end_inset
10469
10470 , or the menu 
10471 \family sans
10472 Edit\SpecialChar \menuseparator
10473 Table\SpecialChar \menuseparator
10474 Multicolumn
10475 \family default
10476 , or right click on the marked cells and choose multicolumn in the appearing
10477  table dialog under the tab 
10478 \family sans
10479 Table Settings
10480 \family default
10481 .
10482 \end_layout
10483
10484 \begin_layout Standard
10485 Multicolumns have there own cell settings.
10486  That means changing cell borders, cell alignment, and the width only affects
10487  the multicolumn.
10488  Here is an example table with a multicolumn cell in the first row and one
10489  in the last row without the upper border:
10490 \end_layout
10491
10492 \begin_layout Standard
10493 \align center
10494 \begin_inset Tabular
10495 <lyxtabular version="3" rows="3" columns="4">
10496 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10497 <column alignment="center" valignment="top" leftline="true" width="0pt">
10498 <column alignment="center" valignment="middle" leftline="true" width="0">
10499 <column alignment="center" valignment="top" leftline="true" width="0in">
10500 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10501 <row topline="true" bottomline="true">
10502 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10503 \begin_inset Text
10504
10505 \begin_layout Standard
10506 abc
10507 \end_layout
10508
10509 \end_inset
10510 </cell>
10511 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10512 \begin_inset Text
10513
10514 \begin_layout Standard
10515 def
10516 \lang ngerman
10517  
10518 \lang english
10519 ghi
10520 \end_layout
10521
10522 \end_inset
10523 </cell>
10524 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10525 \begin_inset Text
10526
10527 \begin_layout Standard
10528
10529 \end_layout
10530
10531 \end_inset
10532 </cell>
10533 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10534 \begin_inset Text
10535
10536 \begin_layout Standard
10537 jkl
10538 \end_layout
10539
10540 \end_inset
10541 </cell>
10542 </row>
10543 <row topline="true">
10544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10545 \begin_inset Text
10546
10547 \begin_layout Standard
10548
10549 \family roman
10550 \series medium
10551 \shape up
10552 \size normal
10553 \emph off
10554 \bar no
10555 \noun off
10556 \color none
10557 A
10558 \end_layout
10559
10560 \end_inset
10561 </cell>
10562 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10563 \begin_inset Text
10564
10565 \begin_layout Standard
10566 B
10567 \end_layout
10568
10569 \end_inset
10570 </cell>
10571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10572 \begin_inset Text
10573
10574 \begin_layout Standard
10575 C
10576 \end_layout
10577
10578 \end_inset
10579 </cell>
10580 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10581 \begin_inset Text
10582
10583 \begin_layout Standard
10584 D
10585 \end_layout
10586
10587 \end_inset
10588 </cell>
10589 </row>
10590 <row topline="true" bottomline="true">
10591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10592 \begin_inset Text
10593
10594 \begin_layout Standard
10595 1
10596 \end_layout
10597
10598 \end_inset
10599 </cell>
10600 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10601 \begin_inset Text
10602
10603 \begin_layout Standard
10604 2
10605 \end_layout
10606
10607 \end_inset
10608 </cell>
10609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10610 \begin_inset Text
10611
10612 \begin_layout Standard
10613 3
10614 \end_layout
10615
10616 \end_inset
10617 </cell>
10618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10619 \begin_inset Text
10620
10621 \begin_layout Standard
10622 4
10623 \end_layout
10624
10625 \end_inset
10626 </cell>
10627 </row>
10628 </lyxtabular>
10629
10630 \end_inset
10631
10632
10633 \end_layout
10634
10635 \begin_layout Subsubsection
10636 Multicolumn Calculations
10637 \begin_inset LatexCommand label
10638 name "sub:Multicolumn-Calculations"
10639
10640 \end_inset
10641
10642
10643 \begin_inset LatexCommand index
10644 name "Multicolumns ! Calculations"
10645
10646 \end_inset
10647
10648
10649 \end_layout
10650
10651 \begin_layout Standard
10652 LyX supports multicolumns directly, but we have to take notice of the cell
10653  width of the columns spanned by the multicolumn cell.
10654 \end_layout
10655
10656 \begin_layout Standard
10657 \begin_inset Float table
10658 wide false
10659 sideways false
10660 status open
10661
10662 \begin_layout Standard
10663 \begin_inset Caption
10664
10665 \begin_layout Standard
10666 \begin_inset LatexCommand label
10667 name "tab:Table-with-centered"
10668
10669 \end_inset
10670
10671 Table with centered multicolumn text above two columns that have exactly
10672  half the width of the multicolumn cell
10673 \begin_inset OptArg
10674 status collapsed
10675
10676 \begin_layout Standard
10677 Perfect multicolumn table
10678 \end_layout
10679
10680 \end_inset
10681
10682
10683 \end_layout
10684
10685 \end_inset
10686
10687
10688 \end_layout
10689
10690 \begin_layout Standard
10691 \align center
10692 \begin_inset Tabular
10693 <lyxtabular version="3" rows="3" columns="3">
10694 <features>
10695 <column alignment="center" valignment="middle" leftline="true" width="0" special="|>{\centering}m{1.25cm-6.2pt}">
10696 <column alignment="center" valignment="middle" leftline="true" width="0">
10697 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10698 <row topline="true">
10699 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special="|>{\centering}m{2.5cm}|">
10700 \begin_inset Text
10701
10702 \begin_layout Standard
10703 multiple lines multicolumn
10704 \end_layout
10705
10706 \end_inset
10707 </cell>
10708 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10709 \begin_inset Text
10710
10711 \begin_layout Standard
10712
10713 \end_layout
10714
10715 \end_inset
10716 </cell>
10717 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10718 \begin_inset Text
10719
10720 \begin_layout Standard
10721 c
10722 \end_layout
10723
10724 \end_inset
10725 </cell>
10726 </row>
10727 <row topline="true">
10728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10729 \begin_inset Text
10730
10731 \begin_layout Standard
10732 d
10733 \end_layout
10734
10735 \end_inset
10736 </cell>
10737 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10738 \begin_inset Text
10739
10740 \begin_layout Standard
10741 e
10742 \end_layout
10743
10744 \end_inset
10745 </cell>
10746 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10747 \begin_inset Text
10748
10749 \begin_layout Standard
10750 f
10751 \end_layout
10752
10753 \end_inset
10754 </cell>
10755 </row>
10756 <row topline="true" bottomline="true">
10757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10758 \begin_inset Text
10759
10760 \begin_layout Standard
10761 g
10762 \end_layout
10763
10764 \end_inset
10765 </cell>
10766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10767 \begin_inset Text
10768
10769 \begin_layout Standard
10770 h
10771 \end_layout
10772
10773 \end_inset
10774 </cell>
10775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10776 \begin_inset Text
10777
10778 \begin_layout Standard
10779 i
10780 \end_layout
10781
10782 \end_inset
10783 </cell>
10784 </row>
10785 </lyxtabular>
10786
10787 \end_inset
10788
10789
10790 \end_layout
10791
10792 \end_inset
10793
10794
10795 \end_layout
10796
10797 \begin_layout Standard
10798 To create for example Table\InsetSpace ~
10799
10800 \begin_inset LatexCommand ref
10801 reference "tab:Table-with-centered"
10802
10803 \end_inset
10804
10805 , mark the first two cells in the first row a 3×3 table and right-click
10806  on them.
10807  Now choose for this cell 
10808 \emph on
10809 multicolumn
10810 \emph default
10811
10812 \emph on
10813 centered alignment
10814 \emph default
10815  and a width of 2.5\InsetSpace \thinspace{}
10816 cm in the table dialog.
10817  The spanned columns should have exactly half the width of the multicolumn
10818  cell, so that you would adjust a width of 1.25\InsetSpace \thinspace{}
10819 cm for the first column.
10820  The second column has then automatically a width of 1.25\InsetSpace \thinspace{}
10821 cm (multicolumn
10822  width - width of first column).
10823  This was done for Table\InsetSpace ~
10824
10825 \begin_inset LatexCommand ref
10826 reference "tab:Table-without-half"
10827
10828 \end_inset
10829
10830 .
10831 \end_layout
10832
10833 \begin_layout Standard
10834 \begin_inset Float table
10835 wide false
10836 sideways false
10837 status open
10838
10839 \begin_layout Standard
10840 \begin_inset Caption
10841
10842 \begin_layout Standard
10843 \begin_inset LatexCommand label
10844 name "tab:Table-without-half"
10845
10846 \end_inset
10847
10848 Table where the spanned table columns have not exactly half the width of
10849  the multicolumn cell
10850 \begin_inset OptArg
10851 status collapsed
10852
10853 \begin_layout Standard
10854 Imperfect multicolumn table
10855 \end_layout
10856
10857 \end_inset
10858
10859
10860 \end_layout
10861
10862 \end_inset
10863
10864
10865 \end_layout
10866
10867 \begin_layout Standard
10868 \align center
10869 \begin_inset Tabular
10870 <lyxtabular version="3" rows="3" columns="3">
10871 <features>
10872 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10873 <column alignment="center" valignment="top" leftline="true" width="0">
10874 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10875 <row topline="true" bottomline="true">
10876 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10877 \begin_inset Text
10878
10879 \begin_layout Standard
10880 multiple lines multicolumn
10881 \end_layout
10882
10883 \end_inset
10884 </cell>
10885 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10886 \begin_inset Text
10887
10888 \begin_layout Standard
10889
10890 \end_layout
10891
10892 \end_inset
10893 </cell>
10894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10895 \begin_inset Text
10896
10897 \begin_layout Standard
10898 c
10899 \end_layout
10900
10901 \end_inset
10902 </cell>
10903 </row>
10904 <row topline="true">
10905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10906 \begin_inset Text
10907
10908 \begin_layout Standard
10909 d
10910 \end_layout
10911
10912 \end_inset
10913 </cell>
10914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10915 \begin_inset Text
10916
10917 \begin_layout Standard
10918 e
10919 \end_layout
10920
10921 \end_inset
10922 </cell>
10923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10924 \begin_inset Text
10925
10926 \begin_layout Standard
10927 f
10928 \end_layout
10929
10930 \end_inset
10931 </cell>
10932 </row>
10933 <row topline="true" bottomline="true">
10934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10935 \begin_inset Text
10936
10937 \begin_layout Standard
10938 g
10939 \end_layout
10940
10941 \end_inset
10942 </cell>
10943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10944 \begin_inset Text
10945
10946 \begin_layout Standard
10947 h
10948 \end_layout
10949
10950 \end_inset
10951 </cell>
10952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10953 \begin_inset Text
10954
10955 \begin_layout Standard
10956 i
10957 \end_layout
10958
10959 \end_inset
10960 </cell>
10961 </row>
10962 </lyxtabular>
10963
10964 \end_inset
10965
10966
10967 \end_layout
10968
10969 \end_inset
10970
10971
10972 \end_layout
10973
10974 \begin_layout Standard
10975 You can see that the first column has not the half width of the multicolumn
10976  cell, it is a bit bigger.
10977  The reason is that the given width of a cell 
10978 \begin_inset Formula $W_{g}$
10979 \end_inset
10980
10981  is not its total width 
10982 \begin_inset Formula $W_{\mathrm{tot}}$
10983 \end_inset
10984
10985  because a cell is always a bit larger than its given width.
10986  Appendix\InsetSpace ~
10987
10988 \begin_inset LatexCommand eqref
10989 reference "cha:Explanation-of-Equation"
10990
10991 \end_inset
10992
10993  explains it in detail.
10994 \end_layout
10995
10996 \begin_layout Standard
10997 The needed given width 
10998 \begin_inset Formula $W_{g\, n}$
10999 \end_inset
11000
11001  when 
11002 \emph on
11003 n
11004 \emph default
11005  columns are spanned columns can be calculated, so that each column has
11006  a total width of 
11007 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
11008 \end_inset
11009
11010 :
11011 \begin_inset Formula \begin{equation}
11012 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
11013
11014 \end_inset
11015
11016
11017 \end_layout
11018
11019 \begin_layout Standard
11020 In our case we have 
11021 \begin_inset Formula $n=2$
11022 \end_inset
11023
11024
11025 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
11026 \end_inset
11027
11028 cm and the default values for the lengths, so that equation 
11029 \begin_inset LatexCommand ref
11030 reference "eq:Wgn"
11031
11032 \end_inset
11033
11034  becomes
11035 \begin_inset Formula \begin{equation}
11036 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
11037
11038 \end_inset
11039
11040
11041 \end_layout
11042
11043 \begin_layout Standard
11044 To enable calculations in LaTeX, the LaTeX-package 
11045 \series bold
11046 calc
11047 \series default
11048  must be loaded with the document preamble line
11049 \begin_inset LatexCommand index
11050 name "LaTeX-packages ! calc"
11051
11052 \end_inset
11053
11054
11055 \end_layout
11056
11057 \begin_layout Standard
11058
11059 \series bold
11060
11061 \backslash
11062 usepackage{calc}
11063 \end_layout
11064
11065 \begin_layout Standard
11066 LyX does not allow to calculate lengths in the width-field of the table
11067  dialog.
11068  Therefore you have to format the column by inserting a LaTeX-argument in
11069  the dialog.
11070  Here is an overview about the arguments:
11071 \end_layout
11072
11073 \begin_layout Itemize
11074
11075 \series bold
11076 p{width}
11077 \series default
11078  creates cell with a fixed width, its text is vertically top-aligned
11079 \end_layout
11080
11081 \begin_layout Itemize
11082
11083 \series bold
11084 m{width}
11085 \series default
11086  creates cell with a fixed width, its text is vertically centered
11087 \end_layout
11088
11089 \begin_layout Itemize
11090
11091 \series bold
11092 b{width}
11093 \series default
11094  creates cell with a fixed width, its text is vertically bottom-aligned
11095 \end_layout
11096
11097 \begin_layout Standard
11098 By entering a LaTeX-argument, all cell properties set in the table dialog
11099  are overwritten.
11100  
11101 \begin_inset Note Greyedout
11102 status open
11103
11104 \begin_layout Standard
11105
11106 \series bold
11107 Note:
11108 \series default
11109  Due to a bug, LyX shows the overwritten properties anyway.
11110 \end_layout
11111
11112 \end_inset
11113
11114  As the text should be horizontally centered, the command 
11115 \series bold
11116
11117 \backslash
11118 centering
11119 \series default
11120  is added.
11121  You can now enter the following LaTeX-argument for the first spanned column:
11122 \end_layout
11123
11124 \begin_layout Standard
11125
11126 \series bold
11127 |>{
11128 \backslash
11129 centering}m{1.25cm-6.2pt}
11130 \end_layout
11131
11132 \begin_layout Standard
11133 The bar 
11134 \begin_inset Quotes eld
11135 \end_inset
11136
11137
11138 \series bold
11139 |
11140 \series default
11141
11142 \begin_inset Quotes erd
11143 \end_inset
11144
11145  at the beginning draws the border line and the command 
11146 \series bold
11147 >{ }
11148 \series default
11149  means, that the commands inside the braces are applied before the cell
11150  is created.
11151 \end_layout
11152
11153 \begin_layout Standard
11154 Although we have chosen centered alignment for the text of the multicolumn
11155  cell, it is still left aligned.
11156  This is because LyX only applies the alignment to single columns.
11157  So we have to use for the multicolumn the LaTeX-argument
11158 \end_layout
11159
11160 \begin_layout Standard
11161
11162 \series bold
11163 |>{
11164 \backslash
11165 centering}m{2.5cm}|
11166 \end_layout
11167
11168 \begin_layout Subsection
11169 Multirows
11170 \begin_inset LatexCommand index
11171 name "Multirows"
11172
11173 \end_inset
11174
11175
11176 \begin_inset LatexCommand index
11177 name "Table ! Multirows"
11178
11179 \end_inset
11180
11181
11182 \begin_inset LatexCommand index
11183 name "LaTeX-packages ! multirow"
11184
11185 \end_inset
11186
11187
11188 \end_layout
11189
11190 \begin_layout Standard
11191 In contrary to multicolumns multirows are not yet supported by LyX so a
11192  bit of ERT needs to be used.
11193  To use multirows load the LaTeX-package 
11194 \series bold
11195 multirow
11196 \series default
11197  in your document preamble with the command
11198 \end_layout
11199
11200 \begin_layout Standard
11201
11202 \series bold
11203
11204 \backslash
11205 usepackage{multirow}
11206 \end_layout
11207
11208 \begin_layout Standard
11209 Multirows are created with the command
11210 \end_layout
11211
11212 \begin_layout Standard
11213
11214 \series bold
11215
11216 \backslash
11217 multirow{number of rows}{cell width}{cell entry}
11218 \end_layout
11219
11220 \begin_layout Standard
11221 To create the following table:
11222 \end_layout
11223
11224 \begin_layout Standard
11225 \align center
11226 \begin_inset ERT
11227 status collapsed
11228
11229 \begin_layout Standard
11230
11231
11232 \backslash
11233 renewcommand{
11234 \backslash
11235 multirowsetup}{
11236 \backslash
11237 centering}
11238 \end_layout
11239
11240 \end_inset
11241
11242
11243 \begin_inset Tabular
11244 <lyxtabular version="3" rows="3" columns="3">
11245 <features>
11246 <column alignment="center" valignment="top" leftline="true" width="0">
11247 <column alignment="center" valignment="top" leftline="true" width="0">
11248 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11249 <row topline="true">
11250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11251 \begin_inset Text
11252
11253 \begin_layout Standard
11254 a
11255 \end_layout
11256
11257 \end_inset
11258 </cell>
11259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11260 \begin_inset Text
11261
11262 \begin_layout Standard
11263 b
11264 \end_layout
11265
11266 \end_inset
11267 </cell>
11268 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11269 \begin_inset Text
11270
11271 \begin_layout Standard
11272 c
11273 \end_layout
11274
11275 \end_inset
11276 </cell>
11277 </row>
11278 <row topline="true">
11279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11280 \begin_inset Text
11281
11282 \begin_layout Standard
11283 \begin_inset ERT
11284 status collapsed
11285
11286 \begin_layout Standard
11287
11288
11289 \backslash
11290 multirow{2}{2.5cm}{
11291 \end_layout
11292
11293 \end_inset
11294
11295 multirow entry
11296 \begin_inset ERT
11297 status collapsed
11298
11299 \begin_layout Standard
11300
11301 }
11302 \end_layout
11303
11304 \end_inset
11305
11306
11307 \end_layout
11308
11309 \end_inset
11310 </cell>
11311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11312 \begin_inset Text
11313
11314 \begin_layout Standard
11315 e
11316 \end_layout
11317
11318 \end_inset
11319 </cell>
11320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11321 \begin_inset Text
11322
11323 \begin_layout Standard
11324 f
11325 \end_layout
11326
11327 \end_inset
11328 </cell>
11329 </row>
11330 <row topline="true" bottomline="true">
11331 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11332 \begin_inset Text
11333
11334 \begin_layout Standard
11335
11336 \end_layout
11337
11338 \end_inset
11339 </cell>
11340 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11341 \begin_inset Text
11342
11343 \begin_layout Standard
11344 h
11345 \end_layout
11346
11347 \end_inset
11348 </cell>
11349 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11350 \begin_inset Text
11351
11352 \begin_layout Standard
11353 i
11354 \end_layout
11355
11356 \end_inset
11357 </cell>
11358 </row>
11359 </lyxtabular>
11360
11361 \end_inset
11362
11363
11364 \begin_inset ERT
11365 status collapsed
11366
11367 \begin_layout Standard
11368
11369
11370 \backslash
11371 renewcommand{
11372 \backslash
11373 multirowsetup}{
11374 \backslash
11375 raggedright}
11376 \end_layout
11377
11378 \end_inset
11379
11380
11381 \end_layout
11382
11383 \begin_layout Standard
11384 create a 3×3 table.
11385  To get rid of the line above the last cell in the first column, the cell
11386  is marked as multicolumn and the upper border is unset.
11387  The multirow is now created in the second row of the first column by inserting
11388  there the command
11389 \end_layout
11390
11391 \begin_layout Standard
11392
11393 \series bold
11394
11395 \backslash
11396 multirow{2}{2.5cm}{
11397 \end_layout
11398
11399 \begin_layout Standard
11400 as ERT.
11401  According to the command parameters the multirow spans now two rows and
11402  has a width of 2.5\InsetSpace \thinspace{}
11403 cm.
11404  The content of the multirow cell follows outside the ERT box and the command
11405  is finished with a right brace 
11406 \series bold
11407 }
11408 \series default
11409  in another ERT-box behind the text.
11410 \end_layout
11411
11412 \begin_layout Standard
11413
11414 \series bold
11415
11416 \backslash
11417 multirow
11418 \series default
11419  left-aligns its content by default.
11420  To override the default, renew the command 
11421 \series bold
11422
11423 \backslash
11424 multirowsetup
11425 \series default
11426  with the command
11427 \end_layout
11428
11429 \begin_layout Standard
11430
11431 \series bold
11432
11433 \backslash
11434 renewcommand{
11435 \backslash
11436 multirowsetup}{
11437 \backslash
11438 centering}
11439 \end_layout
11440
11441 \begin_layout Standard
11442 in ERT in the document preamble.
11443  Then all entries of multirow cells in the document are centered.
11444  If centering is only needed for several tables, you can renew the command
11445  in an ERT box just before the table instead of the preamble.
11446  If the text should be right-aligned, replace 
11447 \series bold
11448
11449 \backslash
11450 centering
11451 \series default
11452  by 
11453 \series bold
11454
11455 \backslash
11456 raggedleft
11457 \series default
11458 .
11459  To return to left-alignment 
11460 \series bold
11461
11462 \backslash
11463 raggedright
11464 \series default
11465  is used.
11466 \end_layout
11467
11468 \begin_layout Section
11469 Formal Tables
11470 \begin_inset LatexCommand label
11471 name "sec:Formal-Tables"
11472
11473 \end_inset
11474
11475
11476 \begin_inset LatexCommand index
11477 name "Table ! Formal"
11478
11479 \end_inset
11480
11481
11482 \end_layout
11483
11484 \begin_layout Standard
11485 Tables are often typeset in books similar to Table\InsetSpace ~
11486
11487 \begin_inset LatexCommand ref
11488 reference "tab:Example-booktabs-table"
11489
11490 \end_inset
11491
11492 .
11493  This kind of tables is called 
11494 \begin_inset Quotes eld
11495 \end_inset
11496
11497
11498 \emph on
11499 formal
11500 \emph default
11501
11502 \begin_inset Quotes erd
11503 \end_inset
11504
11505 .
11506  To make a table a formal table use the option 
11507 \family sans
11508 Formal
11509 \family default
11510  in the 
11511 \family sans
11512 Borders
11513 \family default
11514  tab of the table dialog.
11515 \end_layout
11516
11517 \begin_layout Standard
11518 \begin_inset Float table
11519 placement h
11520 wide false
11521 sideways false
11522 status open
11523
11524 \begin_layout Standard
11525 \begin_inset Caption
11526
11527 \begin_layout Standard
11528 \begin_inset LatexCommand label
11529 name "tab:Example-booktabs-table"
11530
11531 \end_inset
11532
11533 Example booktabs-table
11534 \end_layout
11535
11536 \end_inset
11537
11538
11539 \end_layout
11540
11541 \begin_layout Standard
11542 \align center
11543 \begin_inset Tabular
11544 <lyxtabular version="3" rows="8" columns="4">
11545 <features booktabs="true">
11546 <column alignment="center" valignment="top" rightline="true" width="0">
11547 <column alignment="center" valignment="top" width="0">
11548 <column alignment="center" valignment="top" width="0">
11549 <column alignment="center" valignment="top" width="0">
11550 <row topline="true">
11551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11552 \begin_inset Text
11553
11554 \begin_layout Standard
11555 System
11556 \end_layout
11557
11558 \end_inset
11559 </cell>
11560 <cell alignment="center" valignment="top" topline="true" usebox="none">
11561 \begin_inset Text
11562
11563 \begin_layout Standard
11564 Medipix
11565 \begin_inset Formula $\,$
11566 \end_inset
11567
11568 1
11569 \end_layout
11570
11571 \end_inset
11572 </cell>
11573 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11574 \begin_inset Text
11575
11576 \begin_layout Standard
11577 Medipix
11578 \begin_inset Formula $\,$
11579 \end_inset
11580
11581 2
11582 \end_layout
11583
11584 \end_inset
11585 </cell>
11586 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11587 \begin_inset Text
11588
11589 \begin_layout Standard
11590
11591 \end_layout
11592
11593 \end_inset
11594 </cell>
11595 </row>
11596 <row>
11597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11598 \begin_inset Text
11599
11600 \begin_layout Standard
11601 \begin_inset ERT
11602 status collapsed
11603
11604 \begin_layout Standard
11605
11606
11607 \backslash
11608 cmidrule(r){2-2}
11609 \end_layout
11610
11611 \end_inset
11612
11613
11614 \begin_inset ERT
11615 status collapsed
11616
11617 \begin_layout Standard
11618
11619
11620 \backslash
11621 cmidrule(l){3-4}
11622 \end_layout
11623
11624 \end_inset
11625
11626 Detector thickness [µm]
11627 \end_layout
11628
11629 \end_inset
11630 </cell>
11631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11632 \begin_inset Text
11633
11634 \begin_layout Standard
11635 300
11636 \end_layout
11637
11638 \end_inset
11639 </cell>
11640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11641 \begin_inset Text
11642
11643 \begin_layout Standard
11644 300
11645 \end_layout
11646
11647 \end_inset
11648 </cell>
11649 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11650 \begin_inset Text
11651
11652 \begin_layout Standard
11653 700
11654 \end_layout
11655
11656 \end_inset
11657 </cell>
11658 </row>
11659 <row topline="true">
11660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11661 \begin_inset Text
11662
11663 \begin_layout Standard
11664 Edge angle [°]
11665 \end_layout
11666
11667 \end_inset
11668 </cell>
11669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11670 \begin_inset Text
11671
11672 \begin_layout Standard
11673 3.55
11674 \end_layout
11675
11676 \end_inset
11677 </cell>
11678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11679 \begin_inset Text
11680
11681 \begin_layout Standard
11682 2.71
11683 \end_layout
11684
11685 \end_inset
11686 </cell>
11687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11688 \begin_inset Text
11689
11690 \begin_layout Standard
11691 7.99
11692 \end_layout
11693
11694 \end_inset
11695 </cell>
11696 </row>
11697 <row topspace="default">
11698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11699 \begin_inset Text
11700
11701 \begin_layout Standard
11702 Spatial resolution [µm]
11703 \end_layout
11704
11705 \end_inset
11706 </cell>
11707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11708 \begin_inset Text
11709
11710 \begin_layout Standard
11711 4.26
11712 \end_layout
11713
11714 \end_inset
11715 </cell>
11716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11717 \begin_inset Text
11718
11719 \begin_layout Standard
11720 10.17
11721 \end_layout
11722
11723 \end_inset
11724 </cell>
11725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11726 \begin_inset Text
11727
11728 \begin_layout Standard
11729 10.56
11730 \end_layout
11731
11732 \end_inset
11733 </cell>
11734 </row>
11735 <row topspace="default">
11736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11737 \begin_inset Text
11738
11739 \begin_layout Standard
11740 MTF at 
11741 \begin_inset Formula $f_{\mathrm{max}}$
11742 \end_inset
11743
11744
11745 \end_layout
11746
11747 \end_inset
11748 </cell>
11749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11750 \begin_inset Text
11751
11752 \begin_layout Standard
11753 0.53
11754 \end_layout
11755
11756 \end_inset
11757 </cell>
11758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11759 \begin_inset Text
11760
11761 \begin_layout Standard
11762 0.37
11763 \end_layout
11764
11765 \end_inset
11766 </cell>
11767 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11768 \begin_inset Text
11769
11770 \begin_layout Standard
11771 0.39
11772 \end_layout
11773
11774 \end_inset
11775 </cell>
11776 </row>
11777 <row topspace="default">
11778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11779 \begin_inset Text
11780
11781 \begin_layout Standard
11782 \begin_inset ERT
11783 status collapsed
11784
11785 \begin_layout Standard
11786
11787
11788 \backslash
11789 cmidrule(l{10pt}){1-1}
11790 \end_layout
11791
11792 \end_inset
11793
11794 LSF-spatial resolution
11795 \end_layout
11796
11797 \end_inset
11798 </cell>
11799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11800 \begin_inset Text
11801
11802 \begin_layout Standard
11803
11804 \end_layout
11805
11806 \end_inset
11807 </cell>
11808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11809 \begin_inset Text
11810
11811 \begin_layout Standard
11812
11813 \end_layout
11814
11815 \end_inset
11816 </cell>
11817 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11818 \begin_inset Text
11819
11820 \begin_layout Standard
11821
11822 \end_layout
11823
11824 \end_inset
11825 </cell>
11826 </row>
11827 <row>
11828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11829 \begin_inset Text
11830
11831 \begin_layout Standard
11832 in µm
11833 \end_layout
11834
11835 \end_inset
11836 </cell>
11837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11838 \begin_inset Text
11839
11840 \begin_layout Standard
11841 129.7
11842 \end_layout
11843
11844 \end_inset
11845 </cell>
11846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11847 \begin_inset Text
11848
11849 \begin_layout Standard
11850 52.75
11851 \end_layout
11852
11853 \end_inset
11854 </cell>
11855 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11856 \begin_inset Text
11857
11858 \begin_layout Standard
11859 50.78
11860 \end_layout
11861
11862 \end_inset
11863 </cell>
11864 </row>
11865 <row bottomline="true">
11866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11867 \begin_inset Text
11868
11869 \begin_layout Standard
11870 in % of pixel size
11871 \end_layout
11872
11873 \end_inset
11874 </cell>
11875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11876 \begin_inset Text
11877
11878 \begin_layout Standard
11879 76.3
11880 \end_layout
11881
11882 \end_inset
11883 </cell>
11884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11885 \begin_inset Text
11886
11887 \begin_layout Standard
11888 95.9
11889 \end_layout
11890
11891 \end_inset
11892 </cell>
11893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11894 \begin_inset Text
11895
11896 \begin_layout Standard
11897 92.3
11898 \end_layout
11899
11900 \end_inset
11901 </cell>
11902 </row>
11903 </lyxtabular>
11904
11905 \end_inset
11906
11907
11908 \end_layout
11909
11910 \end_inset
11911
11912
11913 \end_layout
11914
11915 \begin_layout Standard
11916 Spaces to table rows can be added using the 
11917 \family sans
11918 Borders
11919 \family default
11920  tab of the table dialog as described in section\InsetSpace ~
11921
11922 \begin_inset LatexCommand ref
11923 reference "sub:Row-Spacing"
11924
11925 \end_inset
11926
11927 .
11928 \end_layout
11929
11930 \begin_layout Standard
11931 In contrary to normal tables, formal tables have no vertical table lines.
11932  The horizontal table lines can be set like for normal tables but they appear
11933  with different width in the output:
11934 \newline
11935 The first and the last table line have
11936  a default width of 0.08\InsetSpace \thinspace{}
11937 em while the other lines have a default width of
11938  0.05\InsetSpace \thinspace{}
11939 em.
11940 \end_layout
11941
11942 \begin_layout Standard
11943 The default widths can be changed with the following preamble lines
11944 \end_layout
11945
11946 \begin_layout Standard
11947
11948 \series bold
11949
11950 \backslash
11951 let
11952 \backslash
11953 mytoprule
11954 \backslash
11955 toprule
11956 \newline
11957
11958 \backslash
11959 renewcommand{
11960 \backslash
11961 toprule}{
11962 \backslash
11963 mytoprule[width]}
11964 \end_layout
11965
11966 \begin_layout Standard
11967 This example is for the first line, the so called toprule.
11968  If you want to change the width for the last line, replace 
11969 \series bold
11970 toprule
11971 \series default
11972  by 
11973 \series bold
11974 bottomrule
11975 \series default
11976 .
11977  To change the width for the other lines replace 
11978 \series bold
11979 toprule
11980 \series default
11981  by 
11982 \series bold
11983 midrule
11984 \series default
11985 .
11986  You can use all units listed in appendix\InsetSpace ~
11987
11988 \begin_inset LatexCommand ref
11989 reference "cha:Units-available-in"
11990
11991 \end_inset
11992
11993  to set the width.
11994 \end_layout
11995
11996 \begin_layout Standard
11997 Lines that don't span over all table columns can be created by setting a
11998  table line for multicolumn cells.
11999  LyX will then internally use the command 
12000 \series bold
12001
12002 \backslash
12003 cmidrule
12004 \series default
12005  to create this line.
12006  Its full scheme is
12007 \end_layout
12008
12009 \begin_layout Standard
12010
12011 \series bold
12012
12013 \backslash
12014 cmidrule[width](trim){startcol-endcol}
12015 \end_layout
12016
12017 \begin_layout Standard
12018 The options of 
12019 \series bold
12020
12021 \backslash
12022 cmidrule
12023 \series default
12024  are are currently not supported by LyX so you have to use ERT to be able
12025  to use them.
12026  
12027 \series bold
12028
12029 \backslash
12030 cmidrule
12031 \series default
12032 s can manually be created by inserting the command as ERT as first cell
12033  entry of the first cell of a row.
12034  The line is then drawn in the output above the current row.
12035 \end_layout
12036
12037 \begin_layout Standard
12038 The default for the width is 0.03\InsetSpace \thinspace{}
12039 em.
12040  Startcol is the number of the column where the line starts and endcol the
12041  column number where the line ends.
12042  The endcol always needs to be specified, also when the line should span
12043  only one column.
12044  The optional parameter trim could be either 
12045 \emph on
12046 l{trimwidth}
12047 \emph default
12048 , or 
12049 \emph on
12050 r{trimwidth}
12051 \emph default
12052  where the trimwidth is also optional.
12053  Using for example the parameter 
12054 \emph on
12055 l{2pt}
12056 \emph default
12057  means that the line is trimmed from its left end by 2\InsetSpace \thinspace{}
12058 pt.
12059  If you don't specify the trimwidth the lines are trimmed by the default
12060  of 0.5\InsetSpace \thinspace{}
12061 em.
12062 \end_layout
12063
12064 \begin_layout Standard
12065 \begin_inset VSpace bigskip
12066 \end_inset
12067
12068 Table\InsetSpace ~
12069
12070 \begin_inset LatexCommand ref
12071 reference "tab:Example-booktabs-table"
12072
12073 \end_inset
12074
12075  was created using the commands
12076 \end_layout
12077
12078 \begin_layout Standard
12079
12080 \series bold
12081
12082 \backslash
12083 cmidrule(r){2-2}
12084 \backslash
12085 cmidrule(l){3-4}
12086 \end_layout
12087
12088 \begin_layout Standard
12089 at the beginning of the in the second row and
12090 \end_layout
12091
12092 \begin_layout Standard
12093
12094 \series bold
12095
12096 \backslash
12097 cmidrule(l{10pt}){1-1}
12098 \end_layout
12099
12100 \begin_layout Standard
12101 in the sixth row.
12102 \end_layout
12103
12104 \begin_layout Standard
12105
12106 \end_layout
12107
12108 \begin_layout Standard
12109 \begin_inset VSpace bigskip
12110 \end_inset
12111
12112
12113 \end_layout
12114
12115 \begin_layout Standard
12116 You might want to have overlapping 
12117 \series bold
12118
12119 \backslash
12120 cmidrule
12121 \series default
12122 s like in Table\InsetSpace ~
12123
12124 \begin_inset LatexCommand ref
12125 reference "tab:Special-booktabs-table"
12126
12127 \end_inset
12128
12129 .
12130  This can be achieved with the ERT command
12131 \end_layout
12132
12133 \begin_layout Standard
12134
12135 \series bold
12136
12137 \backslash
12138 morecmidrules
12139 \end_layout
12140
12141 \begin_layout Standard
12142 The command that was used for the second row of Table\InsetSpace ~
12143
12144 \begin_inset LatexCommand ref
12145 reference "tab:Special-booktabs-table"
12146
12147 \end_inset
12148
12149  is
12150 \end_layout
12151
12152 \begin_layout Standard
12153
12154 \series bold
12155
12156 \backslash
12157 cmidrule(r){2-2}
12158 \backslash
12159 cmidrule(l){3-4}
12160 \backslash
12161 morecmidrules
12162 \backslash
12163 cmidrule{2-4}
12164 \end_layout
12165
12166 \begin_layout Standard
12167 The command for the sixth row is
12168 \end_layout
12169
12170 \begin_layout Standard
12171
12172 \series bold
12173
12174 \backslash
12175 midrule
12176 \backslash
12177 morecmidrules
12178 \backslash
12179 cmidrule{3-4}
12180 \end_layout
12181
12182 \begin_layout Standard
12183 \begin_inset VSpace bigskip
12184 \end_inset
12185
12186
12187 \end_layout
12188
12189 \begin_layout Standard
12190 If you are anyway not satisfied with the border line spacing, you can use
12191  the following command to produce lines that span over all table columns
12192 \series bold
12193 :
12194 \end_layout
12195
12196 \begin_layout Standard
12197
12198 \series bold
12199
12200 \backslash
12201 specialrule{width}{space above}{space below}
12202 \end_layout
12203
12204 \begin_layout Standard
12205 For more informations about these specialties, we refer to the manual of
12206  the LaTeX-package 
12207 \series bold
12208 booktabs
12209 \series default
12210  
12211 \begin_inset LatexCommand cite
12212 key "booktabs"
12213
12214 \end_inset
12215
12216 .
12217 \begin_inset LatexCommand index
12218 name "LaTeX-packages ! booktabs"
12219
12220 \end_inset
12221
12222
12223 \end_layout
12224
12225 \begin_layout Standard
12226 \begin_inset Float table
12227 placement h
12228 wide false
12229 sideways false
12230 status open
12231
12232 \begin_layout Standard
12233 \begin_inset Caption
12234
12235 \begin_layout Standard
12236 \begin_inset LatexCommand label
12237 name "tab:Special-booktabs-table"
12238
12239 \end_inset
12240
12241 Special booktabs-table
12242 \end_layout
12243
12244 \end_inset
12245
12246
12247 \end_layout
12248
12249 \begin_layout Standard
12250 \align center
12251 \begin_inset Tabular
12252 <lyxtabular version="3" rows="8" columns="4">
12253 <features booktabs="true">
12254 <column alignment="center" valignment="top" width="0">
12255 <column alignment="center" valignment="top" width="0">
12256 <column alignment="center" valignment="top" width="0">
12257 <column alignment="center" valignment="top" width="0">
12258 <row topline="true">
12259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12260 \begin_inset Text
12261
12262 \begin_layout Standard
12263 System
12264 \end_layout
12265
12266 \end_inset
12267 </cell>
12268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12269 \begin_inset Text
12270
12271 \begin_layout Standard
12272 Medipix\InsetSpace \thinspace{}
12273 1
12274 \end_layout
12275
12276 \end_inset
12277 </cell>
12278 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12279 \begin_inset Text
12280
12281 \begin_layout Standard
12282 Medipix\InsetSpace \thinspace{}
12283 2
12284 \end_layout
12285
12286 \end_inset
12287 </cell>
12288 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12289 \begin_inset Text
12290
12291 \begin_layout Standard
12292
12293 \end_layout
12294
12295 \end_inset
12296 </cell>
12297 </row>
12298 <row>
12299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12300 \begin_inset Text
12301
12302 \begin_layout Standard
12303 \begin_inset ERT
12304 status collapsed
12305
12306 \begin_layout Standard
12307
12308
12309 \backslash
12310 cmidrule(r){2-2}
12311 \end_layout
12312
12313 \end_inset
12314
12315
12316 \begin_inset ERT
12317 status collapsed
12318
12319 \begin_layout Standard
12320
12321
12322 \backslash
12323 cmidrule(l){3-4}
12324 \end_layout
12325
12326 \end_inset
12327
12328
12329 \begin_inset ERT
12330 status collapsed
12331
12332 \begin_layout Standard
12333
12334
12335 \backslash
12336 morecmidrules 
12337 \end_layout
12338
12339 \end_inset
12340
12341
12342 \begin_inset ERT
12343 status collapsed
12344
12345 \begin_layout Standard
12346
12347
12348 \backslash
12349 cmidrule{2-4}
12350 \end_layout
12351
12352 \end_inset
12353
12354 Detector thickness [µm]
12355 \end_layout
12356
12357 \end_inset
12358 </cell>
12359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12360 \begin_inset Text
12361
12362 \begin_layout Standard
12363 300
12364 \end_layout
12365
12366 \end_inset
12367 </cell>
12368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12369 \begin_inset Text
12370
12371 \begin_layout Standard
12372 300
12373 \end_layout
12374
12375 \end_inset
12376 </cell>
12377 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12378 \begin_inset Text
12379
12380 \begin_layout Standard
12381 700
12382 \end_layout
12383
12384 \end_inset
12385 </cell>
12386 </row>
12387 <row topline="true">
12388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12389 \begin_inset Text
12390
12391 \begin_layout Standard
12392 Edge angle [°]
12393 \end_layout
12394
12395 \end_inset
12396 </cell>
12397 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12398 \begin_inset Text
12399
12400 \begin_layout Standard
12401 3.55
12402 \end_layout
12403
12404 \end_inset
12405 </cell>
12406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12407 \begin_inset Text
12408
12409 \begin_layout Standard
12410 2.71
12411 \end_layout
12412
12413 \end_inset
12414 </cell>
12415 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12416 \begin_inset Text
12417
12418 \begin_layout Standard
12419 7.99
12420 \end_layout
12421
12422 \end_inset
12423 </cell>
12424 </row>
12425 <row topspace="default">
12426 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12427 \begin_inset Text
12428
12429 \begin_layout Standard
12430 Spatial resolution [µm]
12431 \end_layout
12432
12433 \end_inset
12434 </cell>
12435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12436 \begin_inset Text
12437
12438 \begin_layout Standard
12439 4.26
12440 \end_layout
12441
12442 \end_inset
12443 </cell>
12444 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12445 \begin_inset Text
12446
12447 \begin_layout Standard
12448 10.17
12449 \end_layout
12450
12451 \end_inset
12452 </cell>
12453 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12454 \begin_inset Text
12455
12456 \begin_layout Standard
12457 10.56
12458 \end_layout
12459
12460 \end_inset
12461 </cell>
12462 </row>
12463 <row topspace="default">
12464 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12465 \begin_inset Text
12466
12467 \begin_layout Standard
12468 MTF at 
12469 \begin_inset Formula $f_{\mathrm{max}}$
12470 \end_inset
12471
12472
12473 \end_layout
12474
12475 \end_inset
12476 </cell>
12477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12478 \begin_inset Text
12479
12480 \begin_layout Standard
12481 0.53
12482 \end_layout
12483
12484 \end_inset
12485 </cell>
12486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12487 \begin_inset Text
12488
12489 \begin_layout Standard
12490 0.37
12491 \end_layout
12492
12493 \end_inset
12494 </cell>
12495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12496 \begin_inset Text
12497
12498 \begin_layout Standard
12499 0.39
12500 \end_layout
12501
12502 \end_inset
12503 </cell>
12504 </row>
12505 <row topline="true">
12506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12507 \begin_inset Text
12508
12509 \begin_layout Standard
12510 \begin_inset ERT
12511 status collapsed
12512
12513 \begin_layout Standard
12514
12515
12516 \backslash
12517 morecmidrules 
12518 \end_layout
12519
12520 \end_inset
12521
12522
12523 \begin_inset ERT
12524 status collapsed
12525
12526 \begin_layout Standard
12527
12528
12529 \backslash
12530 cmidrule{3-4}
12531 \end_layout
12532
12533 \end_inset
12534
12535 LSF-spatial resolution
12536 \end_layout
12537
12538 \end_inset
12539 </cell>
12540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12541 \begin_inset Text
12542
12543 \begin_layout Standard
12544
12545 \end_layout
12546
12547 \end_inset
12548 </cell>
12549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12550 \begin_inset Text
12551
12552 \begin_layout Standard
12553
12554 \end_layout
12555
12556 \end_inset
12557 </cell>
12558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12559 \begin_inset Text
12560
12561 \begin_layout Standard
12562
12563 \end_layout
12564
12565 \end_inset
12566 </cell>
12567 </row>
12568 <row>
12569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12570 \begin_inset Text
12571
12572 \begin_layout Standard
12573 in µm
12574 \end_layout
12575
12576 \end_inset
12577 </cell>
12578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12579 \begin_inset Text
12580
12581 \begin_layout Standard
12582 129.7
12583 \end_layout
12584
12585 \end_inset
12586 </cell>
12587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12588 \begin_inset Text
12589
12590 \begin_layout Standard
12591 52.75
12592 \end_layout
12593
12594 \end_inset
12595 </cell>
12596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12597 \begin_inset Text
12598
12599 \begin_layout Standard
12600 50.78
12601 \end_layout
12602
12603 \end_inset
12604 </cell>
12605 </row>
12606 <row bottomline="true">
12607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12608 \begin_inset Text
12609
12610 \begin_layout Standard
12611 in % of pixel size
12612 \end_layout
12613
12614 \end_inset
12615 </cell>
12616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12617 \begin_inset Text
12618
12619 \begin_layout Standard
12620 76.3
12621 \end_layout
12622
12623 \end_inset
12624 </cell>
12625 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12626 \begin_inset Text
12627
12628 \begin_layout Standard
12629 95.9
12630 \end_layout
12631
12632 \end_inset
12633 </cell>
12634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12635 \begin_inset Text
12636
12637 \begin_layout Standard
12638 92.3
12639 \end_layout
12640
12641 \end_inset
12642 </cell>
12643 </row>
12644 </lyxtabular>
12645
12646 \end_inset
12647
12648
12649 \end_layout
12650
12651 \end_inset
12652
12653
12654 \end_layout
12655
12656 \begin_layout Section
12657 Vertical Table Alignment
12658 \begin_inset LatexCommand index
12659 name "Table ! Alignment"
12660
12661 \end_inset
12662
12663
12664 \end_layout
12665
12666 \begin_layout Standard
12667 To align tables vertically in a text line the table must be inside a box.
12668  The box can then be vertically aligned as described in section\InsetSpace ~
12669
12670 \begin_inset LatexCommand ref
12671 reference "sec:Box-Dialog"
12672
12673 \end_inset
12674
12675 .
12676 \end_layout
12677
12678 \begin_layout Standard
12679 In the following example the tables are inside a minipage
12680 \begin_inset Foot
12681 status collapsed
12682
12683 \begin_layout Standard
12684 Minipages are described in section\InsetSpace ~
12685
12686 \begin_inset LatexCommand ref
12687 reference "sec:Minipages"
12688
12689 \end_inset
12690
12691 .
12692 \end_layout
12693
12694 \end_inset
12695
12696  box that has a width of 15\InsetSpace \thinspace{}
12697 col%:
12698 \end_layout
12699
12700 \begin_layout Itemize
12701 test 
12702 \begin_inset Box Frameless
12703 position "t"
12704 hor_pos "c"
12705 has_inner_box 1
12706 inner_pos "c"
12707 use_parbox 0
12708 width "15col%"
12709 special "none"
12710 height "1in"
12711 height_special "totalheight"
12712 status collapsed
12713
12714 \begin_layout Standard
12715 \begin_inset Tabular
12716 <lyxtabular version="3" rows="3" columns="3">
12717 <features>
12718 <column alignment="center" valignment="top" leftline="true" width="0">
12719 <column alignment="center" valignment="top" leftline="true" width="0">
12720 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12721 <row topline="true">
12722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12723 \begin_inset Text
12724
12725 \begin_layout Standard
12726 a
12727 \end_layout
12728
12729 \end_inset
12730 </cell>
12731 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12732 \begin_inset Text
12733
12734 \begin_layout Standard
12735 d
12736 \end_layout
12737
12738 \end_inset
12739 </cell>
12740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12741 \begin_inset Text
12742
12743 \begin_layout Standard
12744 g
12745 \end_layout
12746
12747 \end_inset
12748 </cell>
12749 </row>
12750 <row topline="true">
12751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12752 \begin_inset Text
12753
12754 \begin_layout Standard
12755 b
12756 \end_layout
12757
12758 \end_inset
12759 </cell>
12760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12761 \begin_inset Text
12762
12763 \begin_layout Standard
12764 e
12765 \end_layout
12766
12767 \end_inset
12768 </cell>
12769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12770 \begin_inset Text
12771
12772 \begin_layout Standard
12773 h
12774 \end_layout
12775
12776 \end_inset
12777 </cell>
12778 </row>
12779 <row topline="true" bottomline="true">
12780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12781 \begin_inset Text
12782
12783 \begin_layout Standard
12784 c
12785 \end_layout
12786
12787 \end_inset
12788 </cell>
12789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12790 \begin_inset Text
12791
12792 \begin_layout Standard
12793 f
12794 \end_layout
12795
12796 \end_inset
12797 </cell>
12798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12799 \begin_inset Text
12800
12801 \begin_layout Standard
12802 i
12803 \end_layout
12804
12805 \end_inset
12806 </cell>
12807 </row>
12808 </lyxtabular>
12809
12810 \end_inset
12811
12812
12813 \end_layout
12814
12815 \end_inset
12816
12817  test 
12818 \begin_inset ERT
12819 status collapsed
12820
12821 \begin_layout Standard
12822
12823
12824 \backslash
12825 raisebox{0.85
12826 \backslash
12827 baselineskip}{
12828 \end_layout
12829
12830 \end_inset
12831
12832
12833 \begin_inset Box Frameless
12834 position "t"
12835 hor_pos "c"
12836 has_inner_box 1
12837 inner_pos "c"
12838 use_parbox 0
12839 width "15col%"
12840 special "none"
12841 height "1in"
12842 height_special "totalheight"
12843 status collapsed
12844
12845 \begin_layout Standard
12846 \begin_inset Tabular
12847 <lyxtabular version="3" rows="3" columns="3">
12848 <features>
12849 <column alignment="center" valignment="top" leftline="true" width="0">
12850 <column alignment="center" valignment="top" leftline="true" width="0">
12851 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12852 <row topline="true">
12853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12854 \begin_inset Text
12855
12856 \begin_layout Standard
12857 a
12858 \end_layout
12859
12860 \end_inset
12861 </cell>
12862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12863 \begin_inset Text
12864
12865 \begin_layout Standard
12866 d
12867 \end_layout
12868
12869 \end_inset
12870 </cell>
12871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12872 \begin_inset Text
12873
12874 \begin_layout Standard
12875 g
12876 \end_layout
12877
12878 \end_inset
12879 </cell>
12880 </row>
12881 <row topline="true">
12882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12883 \begin_inset Text
12884
12885 \begin_layout Standard
12886 b
12887 \end_layout
12888
12889 \end_inset
12890 </cell>
12891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12892 \begin_inset Text
12893
12894 \begin_layout Standard
12895 e
12896 \end_layout
12897
12898 \end_inset
12899 </cell>
12900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12901 \begin_inset Text
12902
12903 \begin_layout Standard
12904 h
12905 \end_layout
12906
12907 \end_inset
12908 </cell>
12909 </row>
12910 <row topline="true" bottomline="true">
12911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12912 \begin_inset Text
12913
12914 \begin_layout Standard
12915 c
12916 \end_layout
12917
12918 \end_inset
12919 </cell>
12920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12921 \begin_inset Text
12922
12923 \begin_layout Standard
12924 f
12925 \end_layout
12926
12927 \end_inset
12928 </cell>
12929 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12930 \begin_inset Text
12931
12932 \begin_layout Standard
12933 i
12934 \end_layout
12935
12936 \end_inset
12937 </cell>
12938 </row>
12939 </lyxtabular>
12940
12941 \end_inset
12942
12943
12944 \end_layout
12945
12946 \end_inset
12947
12948
12949 \begin_inset ERT
12950 status collapsed
12951
12952 \begin_layout Standard
12953
12954 }
12955 \end_layout
12956
12957 \end_inset
12958
12959
12960 \end_layout
12961
12962 \begin_layout Itemize
12963 test 
12964 \begin_inset Box Frameless
12965 position "c"
12966 hor_pos "c"
12967 has_inner_box 1
12968 inner_pos "c"
12969 use_parbox 0
12970 width "15col%"
12971 special "none"
12972 height "1in"
12973 height_special "totalheight"
12974 status collapsed
12975
12976 \begin_layout Standard
12977 \begin_inset Tabular
12978 <lyxtabular version="3" rows="3" columns="3">
12979 <features>
12980 <column alignment="center" valignment="top" leftline="true" width="0">
12981 <column alignment="center" valignment="top" leftline="true" width="0">
12982 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12983 <row topline="true">
12984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12985 \begin_inset Text
12986
12987 \begin_layout Standard
12988 a
12989 \end_layout
12990
12991 \end_inset
12992 </cell>
12993 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12994 \begin_inset Text
12995
12996 \begin_layout Standard
12997 d
12998 \end_layout
12999
13000 \end_inset
13001 </cell>
13002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13003 \begin_inset Text
13004
13005 \begin_layout Standard
13006 g
13007 \end_layout
13008
13009 \end_inset
13010 </cell>
13011 </row>
13012 <row topline="true">
13013 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13014 \begin_inset Text
13015
13016 \begin_layout Standard
13017 b
13018 \end_layout
13019
13020 \end_inset
13021 </cell>
13022 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13023 \begin_inset Text
13024
13025 \begin_layout Standard
13026 e
13027 \end_layout
13028
13029 \end_inset
13030 </cell>
13031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13032 \begin_inset Text
13033
13034 \begin_layout Standard
13035 h
13036 \end_layout
13037
13038 \end_inset
13039 </cell>
13040 </row>
13041 <row topline="true" bottomline="true">
13042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13043 \begin_inset Text
13044
13045 \begin_layout Standard
13046 c
13047 \end_layout
13048
13049 \end_inset
13050 </cell>
13051 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13052 \begin_inset Text
13053
13054 \begin_layout Standard
13055 f
13056 \end_layout
13057
13058 \end_inset
13059 </cell>
13060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13061 \begin_inset Text
13062
13063 \begin_layout Standard
13064 i
13065 \end_layout
13066
13067 \end_inset
13068 </cell>
13069 </row>
13070 </lyxtabular>
13071
13072 \end_inset
13073
13074
13075 \end_layout
13076
13077 \end_inset
13078
13079
13080 \end_layout
13081
13082 \begin_layout Itemize
13083 test 
13084 \begin_inset Box Frameless
13085 position "b"
13086 hor_pos "c"
13087 has_inner_box 1
13088 inner_pos "c"
13089 use_parbox 0
13090 width "15col%"
13091 special "none"
13092 height "1in"
13093 height_special "totalheight"
13094 status collapsed
13095
13096 \begin_layout Standard
13097 \begin_inset Tabular
13098 <lyxtabular version="3" rows="3" columns="3">
13099 <features>
13100 <column alignment="center" valignment="top" leftline="true" width="0">
13101 <column alignment="center" valignment="top" leftline="true" width="0">
13102 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13103 <row topline="true">
13104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13105 \begin_inset Text
13106
13107 \begin_layout Standard
13108 a
13109 \end_layout
13110
13111 \end_inset
13112 </cell>
13113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13114 \begin_inset Text
13115
13116 \begin_layout Standard
13117 d
13118 \end_layout
13119
13120 \end_inset
13121 </cell>
13122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13123 \begin_inset Text
13124
13125 \begin_layout Standard
13126 g
13127 \end_layout
13128
13129 \end_inset
13130 </cell>
13131 </row>
13132 <row topline="true">
13133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13134 \begin_inset Text
13135
13136 \begin_layout Standard
13137 b
13138 \end_layout
13139
13140 \end_inset
13141 </cell>
13142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13143 \begin_inset Text
13144
13145 \begin_layout Standard
13146 e
13147 \end_layout
13148
13149 \end_inset
13150 </cell>
13151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13152 \begin_inset Text
13153
13154 \begin_layout Standard
13155 h
13156 \end_layout
13157
13158 \end_inset
13159 </cell>
13160 </row>
13161 <row topline="true" bottomline="true">
13162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13163 \begin_inset Text
13164
13165 \begin_layout Standard
13166 c
13167 \end_layout
13168
13169 \end_inset
13170 </cell>
13171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13172 \begin_inset Text
13173
13174 \begin_layout Standard
13175 f
13176 \end_layout
13177
13178 \end_inset
13179 </cell>
13180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13181 \begin_inset Text
13182
13183 \begin_layout Standard
13184 i
13185 \end_layout
13186
13187 \end_inset
13188 </cell>
13189 </row>
13190 </lyxtabular>
13191
13192 \end_inset
13193
13194
13195 \end_layout
13196
13197 \end_inset
13198
13199  test 
13200 \begin_inset ERT
13201 status collapsed
13202
13203 \begin_layout Standard
13204
13205
13206 \backslash
13207 raisebox{-0.32
13208 \backslash
13209 baselineskip}{
13210 \end_layout
13211
13212 \end_inset
13213
13214
13215 \begin_inset Box Frameless
13216 position "b"
13217 hor_pos "c"
13218 has_inner_box 1
13219 inner_pos "c"
13220 use_parbox 0
13221 width "15col%"
13222 special "none"
13223 height "1in"
13224 height_special "totalheight"
13225 status collapsed
13226
13227 \begin_layout Standard
13228 \begin_inset Tabular
13229 <lyxtabular version="3" rows="3" columns="3">
13230 <features>
13231 <column alignment="center" valignment="top" leftline="true" width="0">
13232 <column alignment="center" valignment="top" leftline="true" width="0">
13233 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13234 <row topline="true">
13235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13236 \begin_inset Text
13237
13238 \begin_layout Standard
13239 a
13240 \end_layout
13241
13242 \end_inset
13243 </cell>
13244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13245 \begin_inset Text
13246
13247 \begin_layout Standard
13248 d
13249 \end_layout
13250
13251 \end_inset
13252 </cell>
13253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13254 \begin_inset Text
13255
13256 \begin_layout Standard
13257 g
13258 \end_layout
13259
13260 \end_inset
13261 </cell>
13262 </row>
13263 <row topline="true">
13264 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13265 \begin_inset Text
13266
13267 \begin_layout Standard
13268 b
13269 \end_layout
13270
13271 \end_inset
13272 </cell>
13273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13274 \begin_inset Text
13275
13276 \begin_layout Standard
13277 e
13278 \end_layout
13279
13280 \end_inset
13281 </cell>
13282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13283 \begin_inset Text
13284
13285 \begin_layout Standard
13286 h
13287 \end_layout
13288
13289 \end_inset
13290 </cell>
13291 </row>
13292 <row topline="true" bottomline="true">
13293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13294 \begin_inset Text
13295
13296 \begin_layout Standard
13297 c
13298 \end_layout
13299
13300 \end_inset
13301 </cell>
13302 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13303 \begin_inset Text
13304
13305 \begin_layout Standard
13306 f
13307 \end_layout
13308
13309 \end_inset
13310 </cell>
13311 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13312 \begin_inset Text
13313
13314 \begin_layout Standard
13315 i
13316 \end_layout
13317
13318 \end_inset
13319 </cell>
13320 </row>
13321 </lyxtabular>
13322
13323 \end_inset
13324
13325
13326 \end_layout
13327
13328 \end_inset
13329
13330
13331 \begin_inset ERT
13332 status collapsed
13333
13334 \begin_layout Standard
13335
13336 }
13337 \end_layout
13338
13339 \end_inset
13340
13341
13342 \end_layout
13343
13344 \begin_layout Standard
13345 As you can see, the content of the first and last table row is not correctly
13346  aligned with the text line where the table is in.
13347  To get this alignment, the minipage box must be set into a raisebox
13348 \begin_inset Foot
13349 status collapsed
13350
13351 \begin_layout Standard
13352 Raiseboxes are described in section\InsetSpace ~
13353
13354 \begin_inset LatexCommand ref
13355 reference "sub:Vertical-Alignment"
13356
13357 \end_inset
13358
13359 .
13360 \end_layout
13361
13362 \end_inset
13363
13364 .
13365  In the example above the second table in the first item is aligned using
13366  the ERT-command
13367 \end_layout
13368
13369 \begin_layout Standard
13370
13371 \series bold
13372
13373 \backslash
13374 raisebox{0.85
13375 \backslash
13376 baselineskip}{
13377 \end_layout
13378
13379 \begin_layout Standard
13380 before the box.
13381  Behind the box the closing brace 
13382 \series bold
13383 }
13384 \series default
13385  is inserted as ERT.
13386  For the second table in the last item the command
13387 \end_layout
13388
13389 \begin_layout Standard
13390
13391 \series bold
13392
13393 \backslash
13394 raisebox{-0.32
13395 \backslash
13396 baselineskip}{
13397 \end_layout
13398
13399 \begin_layout Standard
13400 is used.
13401 \end_layout
13402
13403 \begin_layout Standard
13404 \begin_inset Note Greyedout
13405 status open
13406
13407 \begin_layout Standard
13408
13409 \series bold
13410 Note: 
13411 \series default
13412 The alignment of the table row content to the surrounding text line is not
13413  exact.
13414  The needed factor of the 
13415 \series bold
13416
13417 \backslash
13418 raisebox
13419 \series default
13420  command for this alignment depends on the document font, the font size,
13421  and the table line thickness.
13422 \end_layout
13423
13424 \end_inset
13425
13426
13427 \end_layout
13428
13429 \begin_layout Section
13430 Colored Tables
13431 \begin_inset LatexCommand label
13432 name "sec:Colored-Tables"
13433
13434 \end_inset
13435
13436
13437 \begin_inset LatexCommand index
13438 name "Table ! Color"
13439
13440 \end_inset
13441
13442
13443 \end_layout
13444
13445 \begin_layout Subsection
13446 Colored Cells
13447 \begin_inset LatexCommand index
13448 name "Table Color ! for Cells"
13449
13450 \end_inset
13451
13452
13453 \begin_inset LatexCommand index
13454 name "Color ! for Table Cells"
13455
13456 \end_inset
13457
13458
13459 \end_layout
13460
13461 \begin_layout Standard
13462 \begin_inset Float table
13463 placement h
13464 wide false
13465 sideways false
13466 status open
13467
13468 \begin_layout Standard
13469 \begin_inset Caption
13470
13471 \begin_layout Standard
13472 \begin_inset LatexCommand label
13473 name "tab:Table-colored-without"
13474
13475 \end_inset
13476
13477 Table colored without using the package 
13478 \series bold
13479 colortbl
13480 \series default
13481
13482 \begin_inset OptArg
13483 status collapsed
13484
13485 \begin_layout Standard
13486 Table without colortbl
13487 \end_layout
13488
13489 \end_inset
13490
13491
13492 \end_layout
13493
13494 \end_inset
13495
13496
13497 \end_layout
13498
13499 \begin_layout Standard
13500 \align center
13501 \begin_inset Tabular
13502 <lyxtabular version="3" rows="3" columns="3">
13503 <features>
13504 <column alignment="center" valignment="top" leftline="true" width="0">
13505 <column alignment="center" valignment="top" leftline="true" width="0">
13506 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13507 <row topline="true">
13508 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13509 \begin_inset Text
13510
13511 \begin_layout Standard
13512
13513 \color green
13514 a
13515 \end_layout
13516
13517 \end_inset
13518 </cell>
13519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13520 \begin_inset Text
13521
13522 \begin_layout Standard
13523
13524 \color red
13525 b
13526 \end_layout
13527
13528 \end_inset
13529 </cell>
13530 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13531 \begin_inset Text
13532
13533 \begin_layout Standard
13534
13535 \color red
13536 c
13537 \end_layout
13538
13539 \end_inset
13540 </cell>
13541 </row>
13542 <row topline="true">
13543 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13544 \begin_inset Text
13545
13546 \begin_layout Standard
13547
13548 \color green
13549 d
13550 \end_layout
13551
13552 \end_inset
13553 </cell>
13554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13555 \begin_inset Text
13556
13557 \begin_layout Standard
13558
13559 \color blue
13560 e
13561 \end_layout
13562
13563 \end_inset
13564 </cell>
13565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13566 \begin_inset Text
13567
13568 \begin_layout Standard
13569
13570 \color blue
13571 f
13572 \end_layout
13573
13574 \end_inset
13575 </cell>
13576 </row>
13577 <row topline="true" bottomline="true">
13578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13579 \begin_inset Text
13580
13581 \begin_layout Standard
13582
13583 \color green
13584 g
13585 \end_layout
13586
13587 \end_inset
13588 </cell>
13589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13590 \begin_inset Text
13591
13592 \begin_layout Standard
13593
13594 \color blue
13595 h
13596 \end_layout
13597
13598 \end_inset
13599 </cell>
13600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13601 \begin_inset Text
13602
13603 \begin_layout Standard
13604
13605 \color blue
13606 i
13607 \end_layout
13608
13609 \end_inset
13610 </cell>
13611 </row>
13612 </lyxtabular>
13613
13614 \end_inset
13615
13616
13617 \end_layout
13618
13619 \end_inset
13620
13621
13622 \end_layout
13623
13624 \begin_layout Standard
13625 If you only need colored text, mark the cells and choose a color in the
13626  menu 
13627 \family sans
13628 Edit\SpecialChar \menuseparator
13629 Text\InsetSpace ~
13630 Style
13631 \family default
13632 .
13633  This was used to create Table\InsetSpace ~
13634
13635 \begin_inset LatexCommand ref
13636 reference "tab:Table-colored-without"
13637
13638 \end_inset
13639
13640 .
13641  In any other case you have to use the LaTeX-package 
13642 \series bold
13643 colortbl
13644 \series default
13645 .
13646 \begin_inset LatexCommand index
13647 name "LaTeX-packages ! colortbl"
13648
13649 \end_inset
13650
13651
13652 \end_layout
13653
13654 \begin_layout Standard
13655 To create colored tables, 
13656 \series bold
13657 colortbl
13658 \series default
13659  must be loaded in the preamble with the line
13660 \end_layout
13661
13662 \begin_layout Standard
13663
13664 \series bold
13665
13666 \backslash
13667 usepackage{colortbl}
13668 \end_layout
13669
13670 \begin_layout Standard
13671 The color of a column is adjusted with the command
13672 \end_layout
13673
13674 \begin_layout Standard
13675
13676 \series bold
13677
13678 \backslash
13679 columncolor{name of color}
13680 \end_layout
13681
13682 \begin_layout Standard
13683 inside the command 
13684 \series bold
13685 >{ }
13686 \series default
13687 .
13688  More about the command 
13689 \series bold
13690 >{}
13691 \series default
13692  is described in section\InsetSpace ~
13693
13694 \begin_inset LatexCommand ref
13695 reference "sub:Multicolumn-Calculations"
13696
13697 \end_inset
13698
13699 .
13700 \end_layout
13701
13702 \begin_layout Standard
13703 The following color names are predefined:
13704 \end_layout
13705
13706 \begin_layout Standard
13707
13708 \family sans
13709 red
13710 \family default
13711
13712 \family sans
13713 green
13714 \family default
13715
13716 \family sans
13717 yellow
13718 \family default
13719
13720 \family sans
13721 blue
13722 \family default
13723
13724 \family sans
13725 cyan
13726 \family default
13727
13728 \family sans
13729 magenta
13730 \family default
13731
13732 \family sans
13733 black
13734 \family default
13735  and 
13736 \family sans
13737 white
13738 \end_layout
13739
13740 \begin_layout Standard
13741 \begin_inset VSpace medskip
13742 \end_inset
13743
13744
13745 \end_layout
13746
13747 \begin_layout Standard
13748 You can also define your own color with the command
13749 \end_layout
13750
13751 \begin_layout Standard
13752
13753 \series bold
13754
13755 \backslash
13756 def\SpecialChar \textcompwordmark{}
13757 inecolor{color name}{color model}{color values}
13758 \end_layout
13759
13760 \begin_layout Standard
13761 The color model can be
13762 \end_layout
13763
13764 \begin_layout Labeling
13765 \labelwidthstring 00.00.0000
13766 cmyk: cyan, magenta, yellow, black
13767 \end_layout
13768
13769 \begin_layout Labeling
13770 \labelwidthstring 00.00.0000
13771 rgb: red, green blue
13772 \end_layout
13773
13774 \begin_layout Labeling
13775 \labelwidthstring 00.00.0000
13776 gray gray
13777 \end_layout
13778
13779 \begin_layout Standard
13780 and the color values are comma separated numbers between 0 and 1 describing
13781  the factor for the corresponding color of the color model.
13782 \end_layout
13783
13784 \begin_layout Standard
13785 You can e.\InsetSpace \thinspace{}
13786 g.\InsetSpace ~
13787 define the color "
13788 \emph on
13789 darkgreen
13790 \emph default
13791 " in the preamble with
13792 \end_layout
13793
13794 \begin_layout Standard
13795
13796 \series bold
13797
13798 \backslash
13799 def\SpecialChar \textcompwordmark{}
13800 inecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
13801 \end_layout
13802
13803 \begin_layout Standard
13804 and the color "
13805 \emph on
13806 lightgray
13807 \emph default
13808 " with
13809 \end_layout
13810
13811 \begin_layout Standard
13812
13813 \series bold
13814
13815 \backslash
13816 def\SpecialChar \textcompwordmark{}
13817 inecolor{lightgray}{gray}{0.8}
13818 \end_layout
13819
13820 \begin_layout Standard
13821 \begin_inset VSpace medskip
13822 \end_inset
13823
13824
13825 \end_layout
13826
13827 \begin_layout Standard
13828 Lines are colored with the command
13829 \end_layout
13830
13831 \begin_layout Standard
13832
13833 \series bold
13834
13835 \backslash
13836 rowcolor{name of color}
13837 \end_layout
13838
13839 \begin_layout Standard
13840 and cells are colored with the command
13841 \end_layout
13842
13843 \begin_layout Standard
13844
13845 \series bold
13846
13847 \backslash
13848 cellcolor{name of color}
13849 \end_layout
13850
13851 \begin_layout Standard
13852 Both commands are inserted at the beginning of a cell as ERT.
13853 \end_layout
13854
13855 \begin_layout Standard
13856 To color characters in the table, mark the cells and use the LyX menu 
13857 \family sans
13858 Edit\SpecialChar \menuseparator
13859 Text\InsetSpace ~
13860 Style
13861 \family default
13862 .
13863  If a cell contains ERT mark only the characters, otherwise the colored
13864  ERT will cause LaTeX-errors.
13865 \end_layout
13866
13867 \begin_layout Standard
13868 \begin_inset VSpace bigskip
13869 \end_inset
13870
13871
13872 \end_layout
13873
13874 \begin_layout Standard
13875 To create Table\InsetSpace ~
13876
13877 \begin_inset LatexCommand ref
13878 reference "tab:Table-colored-using"
13879
13880 \end_inset
13881
13882  do the following: The color of the first column should be 
13883 \emph on
13884 darkgreen
13885 \emph default
13886 .
13887  So insert
13888 \end_layout
13889
13890 \begin_layout Standard
13891
13892 \series bold
13893 >{
13894 \backslash
13895 columncolor{darkgreen}
13896 \backslash
13897 centering}c
13898 \end_layout
13899
13900 \begin_layout Standard
13901 as LaTeX-argument for this column.
13902  The first row should be blue, therefore the ERT command
13903 \end_layout
13904
13905 \begin_layout Standard
13906
13907 \series bold
13908
13909 \backslash
13910 rowcolow{cyan}
13911 \end_layout
13912
13913 \begin_layout Standard
13914 is inserted to the first cell of this row.
13915  Note that this overwrites the column color for the first cell.
13916  The last cell of the last row is colored magenta by inserting the ERT command
13917 \end_layout
13918
13919 \begin_layout Standard
13920
13921 \series bold
13922
13923 \backslash
13924 cellcolor{magenta}
13925 \end_layout
13926
13927 \begin_layout Standard
13928 The characters could now be colored using the menu 
13929 \family sans
13930 Edit\SpecialChar \menuseparator
13931 Text\InsetSpace ~
13932 Style
13933 \family default
13934 .
13935 \end_layout
13936
13937 \begin_layout Standard
13938 \begin_inset Float table
13939 placement h
13940 wide false
13941 sideways false
13942 status open
13943
13944 \begin_layout Standard
13945 \begin_inset Caption
13946
13947 \begin_layout Standard
13948 \begin_inset LatexCommand label
13949 name "tab:Table-colored-using"
13950
13951 \end_inset
13952
13953 Table colored using the package 
13954 \series bold
13955 colortbl
13956 \series default
13957
13958 \begin_inset OptArg
13959 status collapsed
13960
13961 \begin_layout Standard
13962 Table with colortbl
13963 \end_layout
13964
13965 \end_inset
13966
13967
13968 \end_layout
13969
13970 \end_inset
13971
13972
13973 \end_layout
13974
13975 \begin_layout Standard
13976 \align center
13977 \begin_inset Tabular
13978 <lyxtabular version="3" rows="3" columns="3">
13979 <features>
13980 <column alignment="center" valignment="top" leftline="true" width="0" special=">{\columncolor{darkgreen}\centering}c">
13981 <column alignment="center" valignment="top" width="0">
13982 <column alignment="center" valignment="top" width="0">
13983 <row>
13984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13985 \begin_inset Text
13986
13987 \begin_layout Standard
13988 \begin_inset ERT
13989 status collapsed
13990
13991 \begin_layout Standard
13992
13993
13994 \backslash
13995 rowcolor{cyan}
13996 \end_layout
13997
13998 \end_inset
13999
14000
14001 \color magenta
14002 a
14003 \end_layout
14004
14005 \end_inset
14006 </cell>
14007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14008 \begin_inset Text
14009
14010 \begin_layout Standard
14011
14012 \color red
14013 b
14014 \end_layout
14015
14016 \end_inset
14017 </cell>
14018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14019 \begin_inset Text
14020
14021 \begin_layout Standard
14022
14023 \color red
14024 c
14025 \end_layout
14026
14027 \end_inset
14028 </cell>
14029 </row>
14030 <row>
14031 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14032 \begin_inset Text
14033
14034 \begin_layout Standard
14035
14036 \color yellow
14037 d
14038 \end_layout
14039
14040 \end_inset
14041 </cell>
14042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14043 \begin_inset Text
14044
14045 \begin_layout Standard
14046
14047 \color blue
14048 e
14049 \end_layout
14050
14051 \end_inset
14052 </cell>
14053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14054 \begin_inset Text
14055
14056 \begin_layout Standard
14057
14058 \color blue
14059 f
14060 \end_layout
14061
14062 \end_inset
14063 </cell>
14064 </row>
14065 <row>
14066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14067 \begin_inset Text
14068
14069 \begin_layout Standard
14070
14071 \color yellow
14072 g
14073 \end_layout
14074
14075 \end_inset
14076 </cell>
14077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14078 \begin_inset Text
14079
14080 \begin_layout Standard
14081
14082 \color blue
14083 h
14084 \end_layout
14085
14086 \end_inset
14087 </cell>
14088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14089 \begin_inset Text
14090
14091 \begin_layout Standard
14092 \begin_inset ERT
14093 status collapsed
14094
14095 \begin_layout Standard
14096
14097
14098 \backslash
14099 cellcolor{magenta}
14100 \end_layout
14101
14102 \end_inset
14103
14104
14105 \color green
14106 i
14107 \end_layout
14108
14109 \end_inset
14110 </cell>
14111 </row>
14112 </lyxtabular>
14113
14114 \end_inset
14115
14116
14117 \end_layout
14118
14119 \end_inset
14120
14121
14122 \end_layout
14123
14124 \begin_layout Subsection
14125 Colored Lines
14126 \begin_inset LatexCommand index
14127 name "Table Color ! for Lines"
14128
14129 \end_inset
14130
14131
14132 \begin_inset LatexCommand index
14133 name "Color ! for Table Lines"
14134
14135 \end_inset
14136
14137
14138 \end_layout
14139
14140 \begin_layout Standard
14141 As described in section\InsetSpace ~
14142
14143 \begin_inset LatexCommand ref
14144 reference "sub:Line-Thickness"
14145
14146 \end_inset
14147
14148 , the line thickness for all lines in a table can be adjusted with the length
14149  
14150 \series bold
14151
14152 \backslash
14153 arrayrulewidth
14154 \series default
14155 .
14156  It is set to 1.5\InsetSpace \thinspace{}
14157 pt for all tables of this section.
14158 \begin_inset ERT
14159 status collapsed
14160
14161 \begin_layout Standard
14162
14163
14164 \backslash
14165 setlength{
14166 \backslash
14167 arrayrulewidth}{1.5pt}
14168 \end_layout
14169
14170 \end_inset
14171
14172
14173 \end_layout
14174
14175 \begin_layout Standard
14176 To color vertical lines for example with green, create the following column
14177  format in the document preamble, according to the description in section\InsetSpace ~
14178
14179 \begin_inset LatexCommand ref
14180 reference "sub:Customized-Format"
14181
14182 \end_inset
14183
14184 :
14185 \end_layout
14186
14187 \begin_layout Standard
14188
14189 \series bold
14190
14191 \backslash
14192 newcolumntype{W}{!{
14193 \backslash
14194 color{green}
14195 \backslash
14196 vline}}
14197 \end_layout
14198
14199 \begin_layout Standard
14200 For Table\InsetSpace ~
14201
14202 \begin_inset LatexCommand ref
14203 reference "tab:Table-with-vertical-colored"
14204
14205 \end_inset
14206
14207  the LaTeX-argument
14208 \end_layout
14209
14210 \begin_layout Standard
14211
14212 \series bold
14213 WcW
14214 \end_layout
14215
14216 \begin_layout Standard
14217 was used for the last column and
14218 \end_layout
14219
14220 \begin_layout Standard
14221
14222 \series bold
14223 Wc
14224 \end_layout
14225
14226 \begin_layout Standard
14227 for the other columns.
14228 \end_layout
14229
14230 \begin_layout Standard
14231 If you want to have several colors, define more column formats.
14232 \end_layout
14233
14234 \begin_layout Standard
14235 \begin_inset Float table
14236 wide false
14237 sideways false
14238 status open
14239
14240 \begin_layout Standard
14241 \begin_inset Caption
14242
14243 \begin_layout Standard
14244 \begin_inset LatexCommand label
14245 name "tab:Table-with-vertical-colored"
14246
14247 \end_inset
14248
14249 Table with colored vertical lines
14250 \end_layout
14251
14252 \end_inset
14253
14254
14255 \end_layout
14256
14257 \begin_layout Standard
14258 \align center
14259 \begin_inset Tabular
14260 <lyxtabular version="3" rows="3" columns="3">
14261 <features>
14262 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14263 <column alignment="center" valignment="top" width="0" special="Wc">
14264 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14265 <row topline="true">
14266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14267 \begin_inset Text
14268
14269 \begin_layout Standard
14270 sd
14271 \end_layout
14272
14273 \end_inset
14274 </cell>
14275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14276 \begin_inset Text
14277
14278 \begin_layout Standard
14279
14280 \end_layout
14281
14282 \end_inset
14283 </cell>
14284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14285 \begin_inset Text
14286
14287 \begin_layout Standard
14288
14289 \end_layout
14290
14291 \end_inset
14292 </cell>
14293 </row>
14294 <row topline="true">
14295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14296 \begin_inset Text
14297
14298 \begin_layout Standard
14299
14300 \end_layout
14301
14302 \end_inset
14303 </cell>
14304 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14305 \begin_inset Text
14306
14307 \begin_layout Standard
14308 sd
14309 \end_layout
14310
14311 \end_inset
14312 </cell>
14313 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14314 \begin_inset Text
14315
14316 \begin_layout Standard
14317
14318 \end_layout
14319
14320 \end_inset
14321 </cell>
14322 </row>
14323 <row topline="true" bottomline="true">
14324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14325 \begin_inset Text
14326
14327 \begin_layout Standard
14328
14329 \end_layout
14330
14331 \end_inset
14332 </cell>
14333 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14334 \begin_inset Text
14335
14336 \begin_layout Standard
14337
14338 \end_layout
14339
14340 \end_inset
14341 </cell>
14342 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14343 \begin_inset Text
14344
14345 \begin_layout Standard
14346 sd
14347 \end_layout
14348
14349 \end_inset
14350 </cell>
14351 </row>
14352 </lyxtabular>
14353
14354 \end_inset
14355
14356
14357 \end_layout
14358
14359 \end_inset
14360
14361
14362 \end_layout
14363
14364 \begin_layout Standard
14365 \begin_inset VSpace bigskip
14366 \end_inset
14367
14368 To color horizontal lines for example with red, like in Table\InsetSpace ~
14369
14370 \begin_inset LatexCommand ref
14371 reference "tab:Table-with-horizontal-colored"
14372
14373 \end_inset
14374
14375 , insert these commands in ERT before the table or table float:
14376 \end_layout
14377
14378 \begin_layout Standard
14379
14380 \series bold
14381
14382 \backslash
14383 let
14384 \backslash
14385 myHlineC
14386 \backslash
14387 hline
14388 \newline
14389
14390 \backslash
14391 renewcommand{
14392 \backslash
14393 hline}{
14394 \backslash
14395 arrayrulecolor{red}
14396 \backslash
14397 myHlineC
14398 \backslash
14399 arrayrulecolor{black}}
14400 \end_layout
14401
14402 \begin_layout Standard
14403 \begin_inset ERT
14404 status collapsed
14405
14406 \begin_layout Standard
14407
14408
14409 \backslash
14410 let
14411 \backslash
14412 myHlineC
14413 \backslash
14414 hline
14415 \end_layout
14416
14417 \begin_layout Standard
14418
14419
14420 \backslash
14421 renewcommand{
14422 \backslash
14423 hline}{
14424 \backslash
14425 arrayrulecolor{red}
14426 \backslash
14427 myHlineC
14428 \backslash
14429 arrayrulecolor{black}}
14430 \end_layout
14431
14432 \end_inset
14433
14434
14435 \begin_inset Float table
14436 wide false
14437 sideways false
14438 status open
14439
14440 \begin_layout Standard
14441 \begin_inset Caption
14442
14443 \begin_layout Standard
14444 \begin_inset LatexCommand label
14445 name "tab:Table-with-horizontal-colored"
14446
14447 \end_inset
14448
14449 Table with colored horizontal lines
14450 \end_layout
14451
14452 \end_inset
14453
14454
14455 \end_layout
14456
14457 \begin_layout Standard
14458 \align center
14459 \begin_inset Tabular
14460 <lyxtabular version="3" rows="3" columns="3">
14461 <features>
14462 <column alignment="center" valignment="top" leftline="true" width="0">
14463 <column alignment="center" valignment="top" leftline="true" width="0">
14464 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14465 <row topline="true">
14466 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14467 \begin_inset Text
14468
14469 \begin_layout Standard
14470 sd
14471 \end_layout
14472
14473 \end_inset
14474 </cell>
14475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14476 \begin_inset Text
14477
14478 \begin_layout Standard
14479
14480 \end_layout
14481
14482 \end_inset
14483 </cell>
14484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14485 \begin_inset Text
14486
14487 \begin_layout Standard
14488
14489 \end_layout
14490
14491 \end_inset
14492 </cell>
14493 </row>
14494 <row topline="true">
14495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14496 \begin_inset Text
14497
14498 \begin_layout Standard
14499
14500 \end_layout
14501
14502 \end_inset
14503 </cell>
14504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14505 \begin_inset Text
14506
14507 \begin_layout Standard
14508 sd
14509 \end_layout
14510
14511 \end_inset
14512 </cell>
14513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14514 \begin_inset Text
14515
14516 \begin_layout Standard
14517
14518 \end_layout
14519
14520 \end_inset
14521 </cell>
14522 </row>
14523 <row topline="true" bottomline="true">
14524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14525 \begin_inset Text
14526
14527 \begin_layout Standard
14528
14529 \end_layout
14530
14531 \end_inset
14532 </cell>
14533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14534 \begin_inset Text
14535
14536 \begin_layout Standard
14537
14538 \end_layout
14539
14540 \end_inset
14541 </cell>
14542 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14543 \begin_inset Text
14544
14545 \begin_layout Standard
14546 sd
14547 \end_layout
14548
14549 \end_inset
14550 </cell>
14551 </row>
14552 </lyxtabular>
14553
14554 \end_inset
14555
14556
14557 \end_layout
14558
14559 \end_inset
14560
14561
14562 \end_layout
14563
14564 \begin_layout Standard
14565 \begin_inset ERT
14566 status collapsed
14567
14568 \begin_layout Standard
14569
14570
14571 \backslash
14572 pagebreak 
14573 \end_layout
14574
14575 \end_inset
14576
14577
14578 \end_layout
14579
14580 \begin_layout Standard
14581 To return to the default line color black, insert this command in ERT behind
14582  the table or table float:
14583 \end_layout
14584
14585 \begin_layout Standard
14586
14587 \series bold
14588
14589 \backslash
14590 renewcommand{
14591 \backslash
14592 hline}{
14593 \backslash
14594 myHlineC}
14595 \end_layout
14596
14597 \begin_layout Standard
14598 Table\InsetSpace ~
14599
14600 \begin_inset LatexCommand ref
14601 reference "tab:Table-with-colored"
14602
14603 \end_inset
14604
14605  is an example with colored vertical and horizontal lines.
14606 \end_layout
14607
14608 \begin_layout Standard
14609 \begin_inset Float table
14610 wide false
14611 sideways false
14612 status open
14613
14614 \begin_layout Standard
14615 \begin_inset Caption
14616
14617 \begin_layout Standard
14618 \begin_inset LatexCommand label
14619 name "tab:Table-with-colored"
14620
14621 \end_inset
14622
14623 Table with colored lines
14624 \end_layout
14625
14626 \end_inset
14627
14628
14629 \end_layout
14630
14631 \begin_layout Standard
14632 \align center
14633 \begin_inset Tabular
14634 <lyxtabular version="3" rows="3" columns="3">
14635 <features>
14636 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14637 <column alignment="center" valignment="top" width="0" special="Wc">
14638 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14639 <row topline="true">
14640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14641 \begin_inset Text
14642
14643 \begin_layout Standard
14644 sd
14645 \end_layout
14646
14647 \end_inset
14648 </cell>
14649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14650 \begin_inset Text
14651
14652 \begin_layout Standard
14653
14654 \end_layout
14655
14656 \end_inset
14657 </cell>
14658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14659 \begin_inset Text
14660
14661 \begin_layout Standard
14662
14663 \end_layout
14664
14665 \end_inset
14666 </cell>
14667 </row>
14668 <row topline="true">
14669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14670 \begin_inset Text
14671
14672 \begin_layout Standard
14673
14674 \end_layout
14675
14676 \end_inset
14677 </cell>
14678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14679 \begin_inset Text
14680
14681 \begin_layout Standard
14682 sd
14683 \end_layout
14684
14685 \end_inset
14686 </cell>
14687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14688 \begin_inset Text
14689
14690 \begin_layout Standard
14691
14692 \end_layout
14693
14694 \end_inset
14695 </cell>
14696 </row>
14697 <row topline="true" bottomline="true" topspace="default">
14698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14699 \begin_inset Text
14700
14701 \begin_layout Standard
14702
14703 \end_layout
14704
14705 \end_inset
14706 </cell>
14707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14708 \begin_inset Text
14709
14710 \begin_layout Standard
14711
14712 \end_layout
14713
14714 \end_inset
14715 </cell>
14716 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14717 \begin_inset Text
14718
14719 \begin_layout Standard
14720 sd
14721 \end_layout
14722
14723 \end_inset
14724 </cell>
14725 </row>
14726 </lyxtabular>
14727
14728 \end_inset
14729
14730
14731 \end_layout
14732
14733 \end_inset
14734
14735
14736 \end_layout
14737
14738 \begin_layout Standard
14739 \begin_inset ERT
14740 status collapsed
14741
14742 \begin_layout Standard
14743
14744
14745 \backslash
14746 renewcommand{
14747 \backslash
14748 hline}{
14749 \backslash
14750 myHlineC}
14751 \end_layout
14752
14753 \end_inset
14754
14755
14756 \end_layout
14757
14758 \begin_layout Standard
14759 \begin_inset ERT
14760 status collapsed
14761
14762 \begin_layout Standard
14763
14764
14765 \backslash
14766 setlength{
14767 \backslash
14768 arrayrulewidth}{0.4pt}
14769 \end_layout
14770
14771 \end_inset
14772
14773
14774 \end_layout
14775
14776 \begin_layout Section
14777 Table Customization
14778 \begin_inset LatexCommand index
14779 name "Table Customization"
14780
14781 \end_inset
14782
14783
14784 \begin_inset LatexCommand index
14785 name "Table ! Customization"
14786
14787 \end_inset
14788
14789
14790 \end_layout
14791
14792 \begin_layout Subsection
14793 Row Spacing
14794 \begin_inset LatexCommand label
14795 name "sub:Row-Spacing"
14796
14797 \end_inset
14798
14799
14800 \begin_inset LatexCommand index
14801 name "Table Customization ! Row Spacing"
14802
14803 \end_inset
14804
14805
14806 \end_layout
14807
14808 \begin_layout Standard
14809 You can add vertical space to table rows in the 
14810 \family sans
14811 Borders
14812 \family default
14813  tab of the table dialog.
14814  You find there three possibilities:
14815 \end_layout
14816
14817 \begin_layout Description
14818 Top\InsetSpace ~
14819 of\InsetSpace ~
14820 row will add space above the characters of the table row.
14821  If the table is a formal table
14822 \begin_inset Foot
14823 status collapsed
14824
14825 \begin_layout Standard
14826 Formal tables are explained in section\InsetSpace ~
14827
14828 \begin_inset LatexCommand ref
14829 reference "sec:Formal-Tables"
14830
14831 \end_inset
14832
14833 .
14834 \end_layout
14835
14836 \end_inset
14837
14838  LyX will insert as default 0.5\InsetSpace \thinspace{}
14839 em space.
14840  For normal tables the inserted space will unfortunately destroy the vertical
14841  table lines as in the following table: 
14842 \begin_inset Tabular
14843 <lyxtabular version="3" rows="3" columns="1">
14844 <features>
14845 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14846 <row topline="true">
14847 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14848 \begin_inset Text
14849
14850 \begin_layout Standard
14851 A
14852 \end_layout
14853
14854 \end_inset
14855 </cell>
14856 </row>
14857 <row topline="true" topspace="3mm">
14858 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14859 \begin_inset Text
14860
14861 \begin_layout Standard
14862 3\InsetSpace \thinspace{}
14863 mm space top of row
14864 \end_layout
14865
14866 \end_inset
14867 </cell>
14868 </row>
14869 <row topline="true" bottomline="true">
14870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14871 \begin_inset Text
14872
14873 \begin_layout Standard
14874 C
14875 \end_layout
14876
14877 \end_inset
14878 </cell>
14879 </row>
14880 </lyxtabular>
14881
14882 \end_inset
14883
14884
14885 \newline
14886 So inserting space to the top of row for normal tables is only useful when
14887  you don't have vertical lines.
14888 \end_layout
14889
14890 \begin_layout Description
14891 Bottom\InsetSpace ~
14892 of\InsetSpace ~
14893 row will add space below the characters of the table row.
14894  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14895 em space, for
14896  normal tables the default size is 2\InsetSpace \thinspace{}
14897 pt.
14898 \end_layout
14899
14900 \begin_layout Description
14901 Between\InsetSpace ~
14902 rows only has an effect when you have selected the whole table row
14903  before.
14904  The space is added between the current and the following row.
14905  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14906 em space.
14907  For normal tables the inserted space will unfortunately destroy the vertical
14908  table lines as in the following table: 
14909 \begin_inset Tabular
14910 <lyxtabular version="3" rows="3" columns="1">
14911 <features>
14912 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14913 <row topline="true">
14914 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14915 \begin_inset Text
14916
14917 \begin_layout Standard
14918 A
14919 \end_layout
14920
14921 \end_inset
14922 </cell>
14923 </row>
14924 <row topline="true" interlinespace="3mm">
14925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14926 \begin_inset Text
14927
14928 \begin_layout Standard
14929 \begin_inset Formula $\downarrow$
14930 \end_inset
14931
14932  3\InsetSpace \thinspace{}
14933 mm space between row 
14934 \begin_inset Formula $\downarrow$
14935 \end_inset
14936
14937
14938 \end_layout
14939
14940 \end_inset
14941 </cell>
14942 </row>
14943 <row topline="true" bottomline="true">
14944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14945 \begin_inset Text
14946
14947 \begin_layout Standard
14948 \begin_inset Formula $\uparrow$
14949 \end_inset
14950
14951  3\InsetSpace \thinspace{}
14952 mm space between row 
14953 \begin_inset Formula $\uparrow$
14954 \end_inset
14955
14956
14957 \end_layout
14958
14959 \end_inset
14960 </cell>
14961 </row>
14962 </lyxtabular>
14963
14964 \end_inset
14965
14966
14967 \newline
14968 So inserting space to the top of row for normal tables is only useful when
14969  you don't have vertical lines.
14970 \end_layout
14971
14972 \begin_layout Standard
14973 When you want to add extra height to all cells of all tables, you can do
14974  this with the following preamble line:
14975 \end_layout
14976
14977 \begin_layout Standard
14978
14979 \series bold
14980
14981 \backslash
14982 setlength{
14983 \backslash
14984 extrarowheight}{height}
14985 \end_layout
14986
14987 \begin_layout Standard
14988 But this has the disadvantage that the cell texts are no longer exactly
14989  vertically centered.
14990 \end_layout
14991
14992 \begin_layout Subsection
14993 Special Cell Alignment
14994 \begin_inset LatexCommand index
14995 name "Table Customization ! Special Cell Alignment"
14996
14997 \end_inset
14998
14999
15000 \end_layout
15001
15002 \begin_layout Standard
15003 Sometimes it looks better when the cell entries of a column are aligned
15004  with a special character, e.\InsetSpace \thinspace{}
15005 g.\InsetSpace ~
15006 with the decimal separator as in Table\InsetSpace ~
15007
15008 \begin_inset LatexCommand ref
15009 reference "tab:Table-cells-of"
15010
15011 \end_inset
15012
15013 .
15014 \end_layout
15015
15016 \begin_layout Standard
15017 \begin_inset Float table
15018 placement h
15019 wide false
15020 sideways false
15021 status open
15022
15023 \begin_layout Standard
15024 \begin_inset Caption
15025
15026 \begin_layout Standard
15027 \begin_inset LatexCommand label
15028 name "tab:Table-cells-of"
15029
15030 \end_inset
15031
15032 Table cells of a column aligned with the decimal separator.
15033 \end_layout
15034
15035 \end_inset
15036
15037
15038 \end_layout
15039
15040 \begin_layout Standard
15041 \align center
15042 \begin_inset Tabular
15043 <lyxtabular version="3" rows="4" columns="2">
15044 <features>
15045 <column alignment="right" valignment="top" width="0">
15046 <column alignment="left" valignment="top" width="0" special="@{}l">
15047 <row bottomline="true">
15048 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15049 \begin_inset Text
15050
15051 \begin_layout Standard
15052 heading
15053 \end_layout
15054
15055 \end_inset
15056 </cell>
15057 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15058 \begin_inset Text
15059
15060 \begin_layout Standard
15061
15062 \end_layout
15063
15064 \end_inset
15065 </cell>
15066 </row>
15067 <row>
15068 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15069 \begin_inset Text
15070
15071 \begin_layout Standard
15072 12.
15073 \end_layout
15074
15075 \end_inset
15076 </cell>
15077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15078 \begin_inset Text
15079
15080 \begin_layout Standard
15081 6
15082 \end_layout
15083
15084 \end_inset
15085 </cell>
15086 </row>
15087 <row>
15088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15089 \begin_inset Text
15090
15091 \begin_layout Standard
15092 0.
15093 \end_layout
15094
15095 \end_inset
15096 </cell>
15097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15098 \begin_inset Text
15099
15100 \begin_layout Standard
15101 68
15102 \end_layout
15103
15104 \end_inset
15105 </cell>
15106 </row>
15107 <row>
15108 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15109 \begin_inset Text
15110
15111 \begin_layout Standard
15112 -123.
15113 \end_layout
15114
15115 \end_inset
15116 </cell>
15117 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15118 \begin_inset Text
15119
15120 \begin_layout Standard
15121 0
15122 \end_layout
15123
15124 \end_inset
15125 </cell>
15126 </row>
15127 </lyxtabular>
15128
15129 \end_inset
15130
15131
15132 \end_layout
15133
15134 \end_inset
15135
15136
15137 \end_layout
15138
15139 \begin_layout Standard
15140 This table was created with a 4×2 table.
15141  The heading is a centered multicolumn.
15142  The first column is right-aligned and contains the digits before the decimal
15143  point and the decimal point.
15144  The second column is left aligned and contains the digits after the decimal
15145  point.
15146  To omit the space that is normally between two table columns, use the following
15147  LaTeX-argument for the second column:
15148 \end_layout
15149
15150 \begin_layout Standard
15151
15152 \series bold
15153 @{}l
15154 \end_layout
15155
15156 \begin_layout Standard
15157 If you need a vertical line right beside the second column, use this LaTeX-argum
15158 ent instead: 
15159 \series bold
15160 @{}l|
15161 \end_layout
15162
15163 \begin_layout Standard
15164 Table\InsetSpace ~
15165
15166 \begin_inset LatexCommand ref
15167 reference "tab:Several-table-cell"
15168
15169 \end_inset
15170
15171  shows some example alignments.
15172  For the alignment with the relation sign, you must add the second smallest
15173  math-space at the beginning of the last column to get the correct space
15174  surrounding the relation sign.
15175 \end_layout
15176
15177 \begin_layout Standard
15178 \begin_inset Float table
15179 wide false
15180 sideways false
15181 status open
15182
15183 \begin_layout Standard
15184 \begin_inset Caption
15185
15186 \begin_layout Standard
15187 \begin_inset LatexCommand label
15188 name "tab:Several-table-cell"
15189
15190 \end_inset
15191
15192 Several table cell alignments.
15193 \end_layout
15194
15195 \end_inset
15196
15197
15198 \end_layout
15199
15200 \begin_layout Standard
15201 \align center
15202 \begin_inset Tabular
15203 <lyxtabular version="3" rows="4" columns="6">
15204 <features>
15205 <column alignment="right" valignment="top" width="0">
15206 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15207 <column alignment="right" valignment="top" width="0">
15208 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15209 <column alignment="right" valignment="top" width="0">
15210 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15211 <row bottomline="true">
15212 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15213 \begin_inset Text
15214
15215 \begin_layout Standard
15216 units
15217 \end_layout
15218
15219 \end_inset
15220 </cell>
15221 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15222 \begin_inset Text
15223
15224 \begin_layout Standard
15225
15226 \end_layout
15227
15228 \end_inset
15229 </cell>
15230 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15231 \begin_inset Text
15232
15233 \begin_layout Standard
15234 exponents
15235 \end_layout
15236
15237 \end_inset
15238 </cell>
15239 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15240 \begin_inset Text
15241
15242 \begin_layout Standard
15243
15244 \end_layout
15245
15246 \end_inset
15247 </cell>
15248 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15249 \begin_inset Text
15250
15251 \begin_layout Standard
15252 relations
15253 \end_layout
15254
15255 \end_inset
15256 </cell>
15257 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15258 \begin_inset Text
15259
15260 \begin_layout Standard
15261
15262 \end_layout
15263
15264 \end_inset
15265 </cell>
15266 </row>
15267 <row>
15268 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15269 \begin_inset Text
15270
15271 \begin_layout Standard
15272 12×
15273 \end_layout
15274
15275 \end_inset
15276 </cell>
15277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15278 \begin_inset Text
15279
15280 \begin_layout Standard
15281 24\InsetSpace \thinspace{}
15282 bottles
15283 \end_layout
15284
15285 \end_inset
15286 </cell>
15287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15288 \begin_inset Text
15289
15290 \begin_layout Standard
15291 \begin_inset Formula $10\cdot$
15292 \end_inset
15293
15294
15295 \end_layout
15296
15297 \end_inset
15298 </cell>
15299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15300 \begin_inset Text
15301
15302 \begin_layout Standard
15303 \begin_inset Formula $10^{\mbox{-}17}$
15304 \end_inset
15305
15306
15307 \end_layout
15308
15309 \end_inset
15310 </cell>
15311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15312 \begin_inset Text
15313
15314 \begin_layout Standard
15315 \begin_inset Formula $\Gamma(t)\propto$
15316 \end_inset
15317
15318
15319 \end_layout
15320
15321 \end_inset
15322 </cell>
15323 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15324 \begin_inset Text
15325
15326 \begin_layout Standard
15327 \begin_inset Formula $\:\Upsilon(t)$
15328 \end_inset
15329
15330
15331 \end_layout
15332
15333 \end_inset
15334 </cell>
15335 </row>
15336 <row>
15337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15338 \begin_inset Text
15339
15340 \begin_layout Standard
15341 1024×
15342 \end_layout
15343
15344 \end_inset
15345 </cell>
15346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15347 \begin_inset Text
15348
15349 \begin_layout Standard
15350 768\InsetSpace \thinspace{}
15351 Pixels
15352 \end_layout
15353
15354 \end_inset
15355 </cell>
15356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15357 \begin_inset Text
15358
15359 \begin_layout Standard
15360 \begin_inset Formula $5.78\cdot$
15361 \end_inset
15362
15363
15364 \end_layout
15365
15366 \end_inset
15367 </cell>
15368 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15369 \begin_inset Text
15370
15371 \begin_layout Standard
15372 \begin_inset Formula $10^{7}$
15373 \end_inset
15374
15375
15376 \end_layout
15377
15378 \end_inset
15379 </cell>
15380 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15381 \begin_inset Text
15382
15383 \begin_layout Standard
15384 \begin_inset Formula $A\ne$
15385 \end_inset
15386
15387
15388 \end_layout
15389
15390 \end_inset
15391 </cell>
15392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15393 \begin_inset Text
15394
15395 \begin_layout Standard
15396 \begin_inset Formula $\: B_{\mathrm{red}}$
15397 \end_inset
15398
15399
15400 \end_layout
15401
15402 \end_inset
15403 </cell>
15404 </row>
15405 <row>
15406 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15407 \begin_inset Text
15408
15409 \begin_layout Standard
15410 32×
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 6\InsetSpace \thinspace{}
15420 cm
15421 \end_layout
15422
15423 \end_inset
15424 </cell>
15425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15426 \begin_inset Text
15427
15428 \begin_layout Standard
15429 -
15430 \begin_inset Formula $33.5\cdot$
15431 \end_inset
15432
15433
15434 \end_layout
15435
15436 \end_inset
15437 </cell>
15438 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15439 \begin_inset Text
15440
15441 \begin_layout Standard
15442 \begin_inset Formula $10^{4}$
15443 \end_inset
15444
15445
15446 \end_layout
15447
15448 \end_inset
15449 </cell>
15450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15451 \begin_inset Text
15452
15453 \begin_layout Standard
15454 \begin_inset Formula $\sin(\alpha)\ge$
15455 \end_inset
15456
15457
15458 \end_layout
15459
15460 \end_inset
15461 </cell>
15462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15463 \begin_inset Text
15464
15465 \begin_layout Standard
15466 \begin_inset Formula $\:\sin(\beta)$
15467 \end_inset
15468
15469
15470 \end_layout
15471
15472 \end_inset
15473 </cell>
15474 </row>
15475 </lyxtabular>
15476
15477 \end_inset
15478
15479
15480 \end_layout
15481
15482 \end_inset
15483
15484
15485 \end_layout
15486
15487 \begin_layout Standard
15488 \begin_inset VSpace bigskip
15489 \end_inset
15490
15491 There is also the LaTeX-package 
15492 \series bold
15493 dcolumn
15494 \series default
15495
15496 \begin_inset LatexCommand index
15497 name "LaTeX-packages ! dcolumn"
15498
15499 \end_inset
15500
15501  that provides table cell alignments.
15502  But this unfortunately treats the cell entries as math and doesn't allow
15503  formulas in table cells: The first column of Table\InsetSpace ~
15504
15505 \begin_inset LatexCommand ref
15506 reference "tab:Several-table-cell"
15507
15508 \end_inset
15509
15510  will look with 
15511 \series bold
15512 dcolumn
15513 \series default
15514  like the first column in Table\InsetSpace ~
15515
15516 \begin_inset LatexCommand ref
15517 reference "tab:Alignments-when"
15518
15519 \end_inset
15520
15521  and only with some tricks like the expected.
15522  The alignment of the second and third column of Table\InsetSpace ~
15523
15524 \begin_inset LatexCommand ref
15525 reference "tab:Several-table-cell"
15526
15527 \end_inset
15528
15529  is not possible with 
15530 \series bold
15531 dcolumn
15532 \series default
15533 .
15534 \end_layout
15535
15536 \begin_layout Standard
15537 \begin_inset Float table
15538 placement h
15539 wide false
15540 sideways false
15541 status open
15542
15543 \begin_layout Standard
15544 \begin_inset Caption
15545
15546 \begin_layout Standard
15547 \begin_inset LatexCommand label
15548 name "tab:Alignments-when"
15549
15550 \end_inset
15551
15552 Alignments when LaTeX-package dcolumn is used.
15553  For the second and third alignment some tricks were used.
15554 \end_layout
15555
15556 \end_inset
15557
15558
15559 \end_layout
15560
15561 \begin_layout Standard
15562 \align center
15563 \begin_inset Tabular
15564 <lyxtabular version="3" rows="4" columns="3">
15565 <features>
15566 <column alignment="center" valignment="top" rightline="true" width="0" special="D{×}{\times}{-1}|">
15567 <column alignment="center" valignment="top" width="0" special="D{×}{\times}{4.9}|">
15568 <column alignment="center" valignment="top" rightline="true" width="0" special="D{~}{\,}{9.7}">
15569 <row bottomline="true">
15570 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15571 \begin_inset Text
15572
15573 \begin_layout Standard
15574 units
15575 \end_layout
15576
15577 \end_inset
15578 </cell>
15579 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15580 \begin_inset Text
15581
15582 \begin_layout Standard
15583 units
15584 \end_layout
15585
15586 \end_inset
15587 </cell>
15588 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15589 \begin_inset Text
15590
15591 \begin_layout Standard
15592 units
15593 \end_layout
15594
15595 \end_inset
15596 </cell>
15597 </row>
15598 <row>
15599 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15600 \begin_inset Text
15601
15602 \begin_layout Standard
15603 12×24\InsetSpace \thinspace{}
15604 bottles
15605 \end_layout
15606
15607 \end_inset
15608 </cell>
15609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15610 \begin_inset Text
15611
15612 \begin_layout Standard
15613 12×24\InsetSpace \thinspace{}
15614
15615 \begin_inset Formula $\mbox{bottles}$
15616 \end_inset
15617
15618
15619 \end_layout
15620
15621 \end_inset
15622 </cell>
15623 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15624 \begin_inset Text
15625
15626 \begin_layout Standard
15627 12×24~
15628 \begin_inset Formula $\mbox{bottles}$
15629 \end_inset
15630
15631
15632 \end_layout
15633
15634 \end_inset
15635 </cell>
15636 </row>
15637 <row>
15638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15639 \begin_inset Text
15640
15641 \begin_layout Standard
15642 1024×768\InsetSpace \thinspace{}
15643 Pixels
15644 \end_layout
15645
15646 \end_inset
15647 </cell>
15648 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15649 \begin_inset Text
15650
15651 \begin_layout Standard
15652 1024×768\InsetSpace \thinspace{}
15653
15654 \begin_inset Formula $\mbox{Pixels}$
15655 \end_inset
15656
15657
15658 \end_layout
15659
15660 \end_inset
15661 </cell>
15662 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15663 \begin_inset Text
15664
15665 \begin_layout Standard
15666 1024×768~
15667 \begin_inset Formula $\mbox{Pixels}$
15668 \end_inset
15669
15670
15671 \end_layout
15672
15673 \end_inset
15674 </cell>
15675 </row>
15676 <row>
15677 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15678 \begin_inset Text
15679
15680 \begin_layout Standard
15681 32×6\InsetSpace \thinspace{}
15682 cm
15683 \end_layout
15684
15685 \end_inset
15686 </cell>
15687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15688 \begin_inset Text
15689
15690 \begin_layout Standard
15691 32×6\InsetSpace \thinspace{}
15692
15693 \begin_inset Formula $\mbox{cm}$
15694 \end_inset
15695
15696
15697 \end_layout
15698
15699 \end_inset
15700 </cell>
15701 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15702 \begin_inset Text
15703
15704 \begin_layout Standard
15705 32×6~
15706 \begin_inset Formula $\mbox{cm}$
15707 \end_inset
15708
15709
15710 \end_layout
15711
15712 \end_inset
15713 </cell>
15714 </row>
15715 </lyxtabular>
15716
15717 \end_inset
15718
15719
15720 \end_layout
15721
15722 \end_inset
15723
15724
15725 \end_layout
15726
15727 \begin_layout Subsection
15728 Customized Cell/Column Format
15729 \begin_inset LatexCommand label
15730 name "sub:Customized-Format"
15731
15732 \end_inset
15733
15734
15735 \begin_inset LatexCommand index
15736 name "Table Customization ! Cell/Column Format"
15737
15738 \end_inset
15739
15740
15741 \end_layout
15742
15743 \begin_layout Standard
15744 Calculating the needed width for spanned columns like in section\InsetSpace ~
15745
15746 \begin_inset LatexCommand ref
15747 reference "sub:Multicolumn-Calculations"
15748
15749 \end_inset
15750
15751  is very annoying if you have several tables with multicolumn cells.
15752  To make life easier, you can define a cell/column format in the preamble,
15753  so that it can be used in all tables of the document.
15754  The format is defined with the command
15755 \end_layout
15756
15757 \begin_layout Standard
15758
15759 \series bold
15760
15761 \backslash
15762 newcolumntype{name of format}[number of arguments]{commands}
15763 \end_layout
15764
15765 \begin_layout Standard
15766 The format name may only consist of one letter.
15767  The letters 
15768 \emph on
15769 b
15770 \emph default
15771
15772 \emph on
15773 c
15774 \emph default
15775
15776 \emph on
15777 l
15778 \emph default
15779
15780 \emph on
15781 m
15782 \emph default
15783
15784 \emph on
15785 p
15786 \emph default
15787  and 
15788 \emph on
15789 r
15790 \emph default
15791  are predefined and cannot be used.
15792  But all letters are allowed as capitals.
15793 \end_layout
15794
15795 \begin_layout Standard
15796 \begin_inset VSpace medskip
15797 \end_inset
15798
15799
15800 \end_layout
15801
15802 \begin_layout Standard
15803 For vertically and horizontally centered multicolumn cells with a fixed
15804  width you can define the cell format
15805 \end_layout
15806
15807 \begin_layout Standard
15808
15809 \series bold
15810
15811 \backslash
15812 newcolumntype{M}[1]{>{
15813 \backslash
15814 centering
15815 \backslash
15816 hspace{0pt}}m{#1}}
15817 \end_layout
15818
15819 \begin_layout Standard
15820 where 
15821 \series bold
15822
15823 \backslash
15824 hspace{0pt}
15825 \series default
15826  avoids the problem of hyphenating the first word, as described in section\InsetSpace ~
15827
15828 \begin_inset LatexCommand ref
15829 reference "sub:Multiple-Lines-in"
15830
15831 \end_inset
15832
15833 .
15834  Now you can simply enter
15835 \end_layout
15836
15837 \begin_layout Standard
15838
15839 \series bold
15840 |M{width}
15841 \end_layout
15842
15843 \begin_layout Standard
15844 as LaTeX-argument in the table dialog to create a multicolumn.
15845 \end_layout
15846
15847 \begin_layout Standard
15848 \begin_inset VSpace bigskip
15849 \end_inset
15850
15851
15852 \end_layout
15853
15854 \begin_layout Standard
15855 For cells spanned by a multicolumn cell, you can define the format
15856 \end_layout
15857
15858 \begin_layout Standard
15859
15860 \series bold
15861
15862 \backslash
15863 newcolumntype{S}[2]{>{
15864 \backslash
15865 centering
15866 \backslash
15867 hspace{0pt}}
15868 \newline
15869
15870 \begin_inset ERT
15871 status collapsed
15872
15873 \begin_layout Standard
15874
15875
15876 \backslash
15877 phantom{
15878 \end_layout
15879
15880 \end_inset
15881
15882
15883 \backslash
15884 newcolumntype{S}[2]
15885 \begin_inset ERT
15886 status collapsed
15887
15888 \begin_layout Standard
15889
15890 }
15891 \end_layout
15892
15893 \end_inset
15894
15895 m{(#1+(2
15896 \backslash
15897 tabcolsep+
15898 \backslash
15899 arrayrulewidth)*(1-#2))/#2}}
15900 \end_layout
15901
15902 \begin_layout Standard
15903 This format uses equation 
15904 \begin_inset LatexCommand eqref
15905 reference "eq:Wgn"
15906
15907 \end_inset
15908
15909  to calculate the needed width so that each spanned cell has the same width.
15910 \end_layout
15911
15912 \begin_layout Standard
15913 You can now enter
15914 \end_layout
15915
15916 \begin_layout Standard
15917
15918 \series bold
15919 |S{width of multicolumn cell}{number of spanned columns}
15920 \end_layout
15921
15922 \begin_layout Standard
15923 as LaTeX-argument of the column.
15924 \end_layout
15925
15926 \begin_layout Standard
15927 \begin_inset VSpace bigskip
15928 \end_inset
15929
15930
15931 \end_layout
15932
15933 \begin_layout Standard
15934 For colored columns, you can define
15935 \end_layout
15936
15937 \begin_layout Standard
15938
15939 \series bold
15940
15941 \backslash
15942 newcolumntype{K}[1]{>{
15943 \backslash
15944 columncolor{#1}
15945 \backslash
15946 hspace{0pt}}c}
15947 \end_layout
15948
15949 \begin_layout Standard
15950 The 
15951 \begin_inset Quotes eld
15952 \end_inset
15953
15954 c
15955 \begin_inset Quotes erd
15956 \end_inset
15957
15958  at the end creates a column with a flexible width whose text is horizontally
15959  centered.
15960  You can now enter
15961 \end_layout
15962
15963 \begin_layout Standard
15964
15965 \series bold
15966 K{color name}
15967 \end_layout
15968
15969 \begin_layout Standard
15970 as LaTeX-argument.
15971 \end_layout
15972
15973 \begin_layout Standard
15974 \begin_inset VSpace bigskip
15975 \end_inset
15976
15977
15978 \end_layout
15979
15980 \begin_layout Standard
15981 To create Table\InsetSpace ~
15982
15983 \begin_inset LatexCommand ref
15984 reference "tab:Table-using-user-defined"
15985
15986 \end_inset
15987
15988  use the LaTeX-arguments
15989 \end_layout
15990
15991 \begin_layout Standard
15992
15993 \series bold
15994 |M{2.5cm}
15995 \end_layout
15996
15997 \begin_layout Standard
15998 for the first column and the multicolumn,
15999 \end_layout
16000
16001 \begin_layout Standard
16002
16003 \series bold
16004 |K{red}|
16005 \end_layout
16006
16007 \begin_layout Standard
16008 for the the last column, and
16009 \end_layout
16010
16011 \begin_layout Standard
16012
16013 \series bold
16014 |S{2.5cm}{2}
16015 \end_layout
16016
16017 \begin_layout Standard
16018 for the cells in the second column.
16019 \end_layout
16020
16021 \begin_layout Standard
16022 \begin_inset Float table
16023 placement h
16024 wide false
16025 sideways false
16026 status open
16027
16028 \begin_layout Standard
16029 \begin_inset Caption
16030
16031 \begin_layout Standard
16032 \begin_inset LatexCommand label
16033 name "tab:Table-using-user-defined"
16034
16035 \end_inset
16036
16037 Table using user-defined table formats
16038 \end_layout
16039
16040 \end_inset
16041
16042
16043 \end_layout
16044
16045 \begin_layout Standard
16046 \align center
16047 \begin_inset Tabular
16048 <lyxtabular version="3" rows="3" columns="4">
16049 <features>
16050 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="|M{2.5cm}">
16051 <column alignment="center" valignment="middle" leftline="true" width="0" special="|S{2.5cm}{2}">
16052 <column alignment="center" valignment="middle" leftline="true" width="0">
16053 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="|K{red}|">
16054 <row topline="true">
16055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16056 \begin_inset Text
16057
16058 \begin_layout Standard
16059 verylongtablecellword
16060 \end_layout
16061
16062 \end_inset
16063 </cell>
16064 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}|">
16065 \begin_inset Text
16066
16067 \begin_layout Standard
16068 multiple lines multicolumn
16069 \end_layout
16070
16071 \end_inset
16072 </cell>
16073 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16074 \begin_inset Text
16075
16076 \begin_layout Standard
16077
16078 \end_layout
16079
16080 \end_inset
16081 </cell>
16082 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16083 \begin_inset Text
16084
16085 \begin_layout Standard
16086 c
16087 \end_layout
16088
16089 \end_inset
16090 </cell>
16091 </row>
16092 <row topline="true">
16093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16094 \begin_inset Text
16095
16096 \begin_layout Standard
16097 d
16098 \end_layout
16099
16100 \end_inset
16101 </cell>
16102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16103 \begin_inset Text
16104
16105 \begin_layout Standard
16106 e
16107 \end_layout
16108
16109 \end_inset
16110 </cell>
16111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16112 \begin_inset Text
16113
16114 \begin_layout Standard
16115 f
16116 \end_layout
16117
16118 \end_inset
16119 </cell>
16120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16121 \begin_inset Text
16122
16123 \begin_layout Standard
16124 g
16125 \end_layout
16126
16127 \end_inset
16128 </cell>
16129 </row>
16130 <row topline="true" bottomline="true">
16131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16132 \begin_inset Text
16133
16134 \begin_layout Standard
16135 h
16136 \end_layout
16137
16138 \end_inset
16139 </cell>
16140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16141 \begin_inset Text
16142
16143 \begin_layout Standard
16144 i
16145 \end_layout
16146
16147 \end_inset
16148 </cell>
16149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16150 \begin_inset Text
16151
16152 \begin_layout Standard
16153 j
16154 \end_layout
16155
16156 \end_inset
16157 </cell>
16158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16159 \begin_inset Text
16160
16161 \begin_layout Standard
16162 k
16163 \end_layout
16164
16165 \end_inset
16166 </cell>
16167 </row>
16168 </lyxtabular>
16169
16170 \end_inset
16171
16172
16173 \end_layout
16174
16175 \end_inset
16176
16177
16178 \end_layout
16179
16180 \begin_layout Subsection
16181 Line Thickness
16182 \begin_inset LatexCommand label
16183 name "sub:Line-Thickness"
16184
16185 \end_inset
16186
16187
16188 \begin_inset LatexCommand index
16189 name "Table Customization ! Line Thickness"
16190
16191 \end_inset
16192
16193
16194 \end_layout
16195
16196 \begin_layout Standard
16197 The line thickness for all lines in a table can be adjusted with the length
16198  
16199 \series bold
16200
16201 \backslash
16202 arrayrulewidth
16203 \series default
16204 .
16205  To set for example a line thickness of 1.5\InsetSpace \thinspace{}
16206 pt, like in Table\InsetSpace ~
16207
16208 \begin_inset LatexCommand ref
16209 reference "tab:Table-with-1.5"
16210
16211 \end_inset
16212
16213 , insert the command
16214 \end_layout
16215
16216 \begin_layout Standard
16217
16218 \series bold
16219
16220 \backslash
16221 setlength{
16222 \backslash
16223 arrayrulewidth}{1.5pt}
16224 \end_layout
16225
16226 \begin_layout Standard
16227 in ERT before the table or table float.
16228  The changed thickness is valid for all following tables.
16229  To use the default value again, set 
16230 \series bold
16231
16232 \backslash
16233 arrayrulewidth
16234 \series default
16235  to 0.4\InsetSpace \thinspace{}
16236 pt in ERT behind the table or table float.
16237 \end_layout
16238
16239 \begin_layout Standard
16240 \begin_inset ERT
16241 status collapsed
16242
16243 \begin_layout Standard
16244
16245
16246 \backslash
16247 setlength{
16248 \backslash
16249 arrayrulewidth}{1.5pt}
16250 \end_layout
16251
16252 \end_inset
16253
16254
16255 \begin_inset Float table
16256 wide false
16257 sideways false
16258 status open
16259
16260 \begin_layout Standard
16261 \begin_inset Caption
16262
16263 \begin_layout Standard
16264 \begin_inset LatexCommand label
16265 name "tab:Table-with-1.5"
16266
16267 \end_inset
16268
16269 Table with 1.5\InsetSpace \thinspace{}
16270 pt thick lines
16271 \end_layout
16272
16273 \end_inset
16274
16275
16276 \end_layout
16277
16278 \begin_layout Standard
16279 \align center
16280 \begin_inset Tabular
16281 <lyxtabular version="3" rows="3" columns="3">
16282 <features>
16283 <column alignment="center" valignment="top" leftline="true" width="0">
16284 <column alignment="center" valignment="top" leftline="true" width="0">
16285 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16286 <row topline="true">
16287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16288 \begin_inset Text
16289
16290 \begin_layout Standard
16291 sd
16292 \end_layout
16293
16294 \end_inset
16295 </cell>
16296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16297 \begin_inset Text
16298
16299 \begin_layout Standard
16300
16301 \end_layout
16302
16303 \end_inset
16304 </cell>
16305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16306 \begin_inset Text
16307
16308 \begin_layout Standard
16309
16310 \end_layout
16311
16312 \end_inset
16313 </cell>
16314 </row>
16315 <row topline="true">
16316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16317 \begin_inset Text
16318
16319 \begin_layout Standard
16320
16321 \end_layout
16322
16323 \end_inset
16324 </cell>
16325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16326 \begin_inset Text
16327
16328 \begin_layout Standard
16329 sd
16330 \end_layout
16331
16332 \end_inset
16333 </cell>
16334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16335 \begin_inset Text
16336
16337 \begin_layout Standard
16338
16339 \end_layout
16340
16341 \end_inset
16342 </cell>
16343 </row>
16344 <row topline="true" bottomline="true">
16345 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16346 \begin_inset Text
16347
16348 \begin_layout Standard
16349
16350 \end_layout
16351
16352 \end_inset
16353 </cell>
16354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16355 \begin_inset Text
16356
16357 \begin_layout Standard
16358
16359 \end_layout
16360
16361 \end_inset
16362 </cell>
16363 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16364 \begin_inset Text
16365
16366 \begin_layout Standard
16367 sd
16368 \end_layout
16369
16370 \end_inset
16371 </cell>
16372 </row>
16373 </lyxtabular>
16374
16375 \end_inset
16376
16377
16378 \end_layout
16379
16380 \end_inset
16381
16382
16383 \begin_inset ERT
16384 status collapsed
16385
16386 \begin_layout Standard
16387
16388
16389 \backslash
16390 setlength{
16391 \backslash
16392 arrayrulewidth}{0.4pt}
16393 \end_layout
16394
16395 \end_inset
16396
16397
16398 \end_layout
16399
16400 \begin_layout Standard
16401 \begin_inset VSpace bigskip
16402 \end_inset
16403
16404 To set the line thickness to 1.5\InsetSpace \thinspace{}
16405 pt only for horizontal lines, like in Table\InsetSpace ~
16406
16407 \begin_inset LatexCommand ref
16408 reference "tab:Table-with-horizontal"
16409
16410 \end_inset
16411
16412 , insert these commands in ERT before the table or table float:
16413 \end_layout
16414
16415 \begin_layout Standard
16416
16417 \series bold
16418
16419 \backslash
16420 let
16421 \backslash
16422 myHline
16423 \backslash
16424 hline
16425 \newline
16426
16427 \backslash
16428 renewcommand{
16429 \backslash
16430 hline}
16431 \newline
16432  {
16433 \backslash
16434 noalign{
16435 \backslash
16436 global
16437 \backslash
16438 arrayrulewidth 1.5pt}
16439 \newline
16440   
16441 \backslash
16442 myHline
16443 \backslash
16444 noalign{
16445 \backslash
16446 global
16447 \backslash
16448 arrayrulewidth 0.4pt}}
16449 \end_layout
16450
16451 \begin_layout Standard
16452 To return to the default line thickness, insert this command in ERT behind
16453  the table or table float:
16454 \end_layout
16455
16456 \begin_layout Standard
16457
16458 \series bold
16459
16460 \backslash
16461 renewcommand{
16462 \backslash
16463 hline}{
16464 \backslash
16465 myHline}
16466 \end_layout
16467
16468 \begin_layout Standard
16469 \begin_inset ERT
16470 status collapsed
16471
16472 \begin_layout Standard
16473
16474
16475 \backslash
16476 let
16477 \backslash
16478 myHline
16479 \backslash
16480 hline
16481 \end_layout
16482
16483 \begin_layout Standard
16484
16485
16486 \backslash
16487 renewcommand{
16488 \backslash
16489 hline}
16490 \end_layout
16491
16492 \begin_layout Standard
16493
16494  {
16495 \backslash
16496 noalign{
16497 \backslash
16498 global
16499 \backslash
16500 arrayrulewidth 1.5pt}
16501 \end_layout
16502
16503 \begin_layout Standard
16504
16505   
16506 \backslash
16507 myHline
16508 \backslash
16509 noalign{
16510 \backslash
16511 global
16512 \backslash
16513 arrayrulewidth 0.4pt}}
16514 \end_layout
16515
16516 \end_inset
16517
16518
16519 \begin_inset Float table
16520 wide false
16521 sideways false
16522 status open
16523
16524 \begin_layout Standard
16525 \begin_inset Caption
16526
16527 \begin_layout Standard
16528 \begin_inset LatexCommand label
16529 name "tab:Table-with-horizontal"
16530
16531 \end_inset
16532
16533 Table with 1.5\InsetSpace \thinspace{}
16534 pt thick horizontal lines
16535 \end_layout
16536
16537 \end_inset
16538
16539
16540 \end_layout
16541
16542 \begin_layout Standard
16543 \align center
16544 \begin_inset Tabular
16545 <lyxtabular version="3" rows="3" columns="3">
16546 <features>
16547 <column alignment="center" valignment="top" leftline="true" width="0">
16548 <column alignment="center" valignment="top" leftline="true" width="0">
16549 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16550 <row topline="true">
16551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16552 \begin_inset Text
16553
16554 \begin_layout Standard
16555 sd
16556 \end_layout
16557
16558 \end_inset
16559 </cell>
16560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16561 \begin_inset Text
16562
16563 \begin_layout Standard
16564
16565 \end_layout
16566
16567 \end_inset
16568 </cell>
16569 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16570 \begin_inset Text
16571
16572 \begin_layout Standard
16573
16574 \end_layout
16575
16576 \end_inset
16577 </cell>
16578 </row>
16579 <row topline="true">
16580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16581 \begin_inset Text
16582
16583 \begin_layout Standard
16584
16585 \end_layout
16586
16587 \end_inset
16588 </cell>
16589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16590 \begin_inset Text
16591
16592 \begin_layout Standard
16593 sd
16594 \end_layout
16595
16596 \end_inset
16597 </cell>
16598 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16599 \begin_inset Text
16600
16601 \begin_layout Standard
16602
16603 \end_layout
16604
16605 \end_inset
16606 </cell>
16607 </row>
16608 <row topline="true" bottomline="true">
16609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16610 \begin_inset Text
16611
16612 \begin_layout Standard
16613
16614 \end_layout
16615
16616 \end_inset
16617 </cell>
16618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16619 \begin_inset Text
16620
16621 \begin_layout Standard
16622
16623 \end_layout
16624
16625 \end_inset
16626 </cell>
16627 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16628 \begin_inset Text
16629
16630 \begin_layout Standard
16631 sd
16632 \end_layout
16633
16634 \end_inset
16635 </cell>
16636 </row>
16637 </lyxtabular>
16638
16639 \end_inset
16640
16641
16642 \end_layout
16643
16644 \end_inset
16645
16646
16647 \begin_inset ERT
16648 status collapsed
16649
16650 \begin_layout Standard
16651
16652
16653 \backslash
16654 renewcommand{
16655 \backslash
16656 hline}{
16657 \backslash
16658 myHline}
16659 \end_layout
16660
16661 \end_inset
16662
16663
16664 \end_layout
16665
16666 \begin_layout Standard
16667 \begin_inset VSpace bigskip
16668 \end_inset
16669
16670 To set the line thickness to 1.5\InsetSpace \thinspace{}
16671 pt only for vertical lines, create the following
16672  column format in the document preamble, according to the description in
16673  section\InsetSpace ~
16674
16675 \begin_inset LatexCommand ref
16676 reference "sub:Customized-Format"
16677
16678 \end_inset
16679
16680 :
16681 \end_layout
16682
16683 \begin_layout Standard
16684
16685 \series bold
16686
16687 \backslash
16688 newcolumntype{V}{!{
16689 \backslash
16690 vrule width 1.5pt}}
16691 \end_layout
16692
16693 \begin_layout Standard
16694 For Table\InsetSpace ~
16695
16696 \begin_inset LatexCommand ref
16697 reference "tab:Table-with-vertical"
16698
16699 \end_inset
16700
16701  the LaTeX-argument
16702 \end_layout
16703
16704 \begin_layout Standard
16705
16706 \series bold
16707 VcV
16708 \end_layout
16709
16710 \begin_layout Standard
16711 was used for the last column and
16712 \end_layout
16713
16714 \begin_layout Standard
16715
16716 \series bold
16717 Vc
16718 \end_layout
16719
16720 \begin_layout Standard
16721 for the other columns.
16722 \end_layout
16723
16724 \begin_layout Standard
16725 \begin_inset Float table
16726 wide false
16727 sideways false
16728 status open
16729
16730 \begin_layout Standard
16731 \begin_inset Caption
16732
16733 \begin_layout Standard
16734 \begin_inset LatexCommand label
16735 name "tab:Table-with-vertical"
16736
16737 \end_inset
16738
16739 Table with 1.5\InsetSpace \thinspace{}
16740 pt thick vertical lines
16741 \end_layout
16742
16743 \end_inset
16744
16745
16746 \end_layout
16747
16748 \begin_layout Standard
16749 \align center
16750 \begin_inset Tabular
16751 <lyxtabular version="3" rows="3" columns="3">
16752 <features>
16753 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16754 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16755 <column alignment="center" valignment="top" leftline="true" width="0" special="VcV">
16756 <row topline="true">
16757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16758 \begin_inset Text
16759
16760 \begin_layout Standard
16761 sd
16762 \end_layout
16763
16764 \end_inset
16765 </cell>
16766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16767 \begin_inset Text
16768
16769 \begin_layout Standard
16770
16771 \end_layout
16772
16773 \end_inset
16774 </cell>
16775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16776 \begin_inset Text
16777
16778 \begin_layout Standard
16779
16780 \end_layout
16781
16782 \end_inset
16783 </cell>
16784 </row>
16785 <row topline="true">
16786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16787 \begin_inset Text
16788
16789 \begin_layout Standard
16790
16791 \end_layout
16792
16793 \end_inset
16794 </cell>
16795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16796 \begin_inset Text
16797
16798 \begin_layout Standard
16799 sd
16800 \end_layout
16801
16802 \end_inset
16803 </cell>
16804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16805 \begin_inset Text
16806
16807 \begin_layout Standard
16808
16809 \end_layout
16810
16811 \end_inset
16812 </cell>
16813 </row>
16814 <row topline="true" bottomline="true">
16815 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16816 \begin_inset Text
16817
16818 \begin_layout Standard
16819
16820 \end_layout
16821
16822 \end_inset
16823 </cell>
16824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16825 \begin_inset Text
16826
16827 \begin_layout Standard
16828
16829 \end_layout
16830
16831 \end_inset
16832 </cell>
16833 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16834 \begin_inset Text
16835
16836 \begin_layout Standard
16837 sd
16838 \end_layout
16839
16840 \end_inset
16841 </cell>
16842 </row>
16843 </lyxtabular>
16844
16845 \end_inset
16846
16847
16848 \end_layout
16849
16850 \end_inset
16851
16852
16853 \end_layout
16854
16855 \begin_layout Subsection
16856 Dashed Lines
16857 \begin_inset LatexCommand index
16858 name "Table Customization ! Dashed Lines"
16859
16860 \end_inset
16861
16862
16863 \end_layout
16864
16865 \begin_layout Standard
16866 \begin_inset Float table
16867 placement H
16868 wide false
16869 sideways false
16870 status open
16871
16872 \begin_layout Standard
16873 \begin_inset Caption
16874
16875 \begin_layout Standard
16876 \begin_inset LatexCommand label
16877 name "tab:Table-with-dashed"
16878
16879 \end_inset
16880
16881 Table with dashed lines
16882 \end_layout
16883
16884 \end_inset
16885
16886
16887 \end_layout
16888
16889 \begin_layout Standard
16890 \align center
16891 \begin_inset Tabular
16892 <lyxtabular version="3" rows="5" columns="5">
16893 <features>
16894 <column alignment="center" valignment="top" leftline="true" width="0">
16895 <column alignment="center" valignment="top" leftline="true" width="0">
16896 <column alignment="center" valignment="top" width="0" special=":c">
16897 <column alignment="center" valignment="top" leftline="true" width="0">
16898 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16899 <row topline="true" bottomline="true">
16900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16901 \begin_inset Text
16902
16903 \begin_layout Standard
16904 a
16905 \end_layout
16906
16907 \end_inset
16908 </cell>
16909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16910 \begin_inset Text
16911
16912 \begin_layout Standard
16913 b
16914 \end_layout
16915
16916 \end_inset
16917 </cell>
16918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16919 \begin_inset Text
16920
16921 \begin_layout Standard
16922 c
16923 \end_layout
16924
16925 \end_inset
16926 </cell>
16927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16928 \begin_inset Text
16929
16930 \begin_layout Standard
16931 d
16932 \end_layout
16933
16934 \end_inset
16935 </cell>
16936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16937 \begin_inset Text
16938
16939 \begin_layout Standard
16940 e
16941 \end_layout
16942
16943 \end_inset
16944 </cell>
16945 </row>
16946 <row topline="true">
16947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16948 \begin_inset Text
16949
16950 \begin_layout Standard
16951 f
16952 \end_layout
16953
16954 \end_inset
16955 </cell>
16956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16957 \begin_inset Text
16958
16959 \begin_layout Standard
16960 g
16961 \end_layout
16962
16963 \end_inset
16964 </cell>
16965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16966 \begin_inset Text
16967
16968 \begin_layout Standard
16969 h
16970 \end_layout
16971
16972 \end_inset
16973 </cell>
16974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16975 \begin_inset Text
16976
16977 \begin_layout Standard
16978 i
16979 \end_layout
16980
16981 \end_inset
16982 </cell>
16983 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16984 \begin_inset Text
16985
16986 \begin_layout Standard
16987 j
16988 \end_layout
16989
16990 \end_inset
16991 </cell>
16992 </row>
16993 <row>
16994 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16995 \begin_inset Text
16996
16997 \begin_layout Standard
16998 \begin_inset ERT
16999 status collapsed
17000
17001 \begin_layout Standard
17002
17003
17004 \backslash
17005 hdashline 
17006 \end_layout
17007
17008 \end_inset
17009
17010 k
17011 \end_layout
17012
17013 \end_inset
17014 </cell>
17015 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17016 \begin_inset Text
17017
17018 \begin_layout Standard
17019 l
17020 \end_layout
17021
17022 \end_inset
17023 </cell>
17024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17025 \begin_inset Text
17026
17027 \begin_layout Standard
17028 m
17029 \end_layout
17030
17031 \end_inset
17032 </cell>
17033 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17034 \begin_inset Text
17035
17036 \begin_layout Standard
17037 n
17038 \end_layout
17039
17040 \end_inset
17041 </cell>
17042 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17043 \begin_inset Text
17044
17045 \begin_layout Standard
17046 o
17047 \end_layout
17048
17049 \end_inset
17050 </cell>
17051 </row>
17052 <row topline="true">
17053 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17054 \begin_inset Text
17055
17056 \begin_layout Standard
17057 \begin_inset ERT
17058 status collapsed
17059
17060 \begin_layout Standard
17061
17062
17063 \backslash
17064 cdashline{4-5}
17065 \end_layout
17066
17067 \end_inset
17068
17069 p
17070 \end_layout
17071
17072 \end_inset
17073 </cell>
17074 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17075 \begin_inset Text
17076
17077 \begin_layout Standard
17078 q
17079 \end_layout
17080
17081 \end_inset
17082 </cell>
17083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
17084 \begin_inset Text
17085
17086 \begin_layout Standard
17087 r
17088 \end_layout
17089
17090 \end_inset
17091 </cell>
17092 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
17093 \begin_inset Text
17094
17095 \begin_layout Standard
17096 s
17097 \end_layout
17098
17099 \end_inset
17100 </cell>
17101 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17102 \begin_inset Text
17103
17104 \begin_layout Standard
17105
17106 \end_layout
17107
17108 \end_inset
17109 </cell>
17110 </row>
17111 <row topline="true" bottomline="true">
17112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17113 \begin_inset Text
17114
17115 \begin_layout Standard
17116 t
17117 \end_layout
17118
17119 \end_inset
17120 </cell>
17121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17122 \begin_inset Text
17123
17124 \begin_layout Standard
17125 u
17126 \end_layout
17127
17128 \end_inset
17129 </cell>
17130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17131 \begin_inset Text
17132
17133 \begin_layout Standard
17134 v
17135 \end_layout
17136
17137 \end_inset
17138 </cell>
17139 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17140 \begin_inset Text
17141
17142 \begin_layout Standard
17143 w
17144 \end_layout
17145
17146 \end_inset
17147 </cell>
17148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17149 \begin_inset Text
17150
17151 \begin_layout Standard
17152 x
17153 \end_layout
17154
17155 \end_inset
17156 </cell>
17157 </row>
17158 </lyxtabular>
17159
17160 \end_inset
17161
17162
17163 \end_layout
17164
17165 \end_inset
17166
17167
17168 \end_layout
17169
17170 \begin_layout Standard
17171 LyX doesn't natively support dashed lines, so you have to use ERT.
17172  As prerequisite the LaTeX-package 
17173 \series bold
17174 arydshln
17175 \series default
17176
17177 \begin_inset LatexCommand index
17178 name "LaTeX-packages ! arydshln"
17179
17180 \end_inset
17181
17182  must be loaded in the document preamble with the command
17183 \end_layout
17184
17185 \begin_layout Standard
17186
17187 \series bold
17188
17189 \backslash
17190 usepackage{arydshln}
17191 \end_layout
17192
17193 \begin_layout Standard
17194 To make a vertical line dashed, enter the colon 
17195 \begin_inset Quotes eld
17196 \end_inset
17197
17198 :
17199 \begin_inset Quotes erd
17200 \end_inset
17201
17202  together with the character for the horizontal alignment as LaTeX-argument
17203  in the table cell dialog.
17204 \end_layout
17205
17206 \begin_layout Standard
17207 For a horizontal dashed line add the command
17208 \end_layout
17209
17210 \begin_layout Standard
17211
17212 \series bold
17213
17214 \backslash
17215 hdashline
17216 \end_layout
17217
17218 \begin_layout Standard
17219 in ERT as first element of the first cell in the table row.
17220 \end_layout
17221
17222 \begin_layout Standard
17223 For dashed multicolumn lines use the command
17224 \end_layout
17225
17226 \begin_layout Standard
17227
17228 \series bold
17229
17230 \backslash
17231 cdashline{line number
17232 \series default
17233 }
17234 \end_layout
17235
17236 \begin_layout Standard
17237 in ERT as first element of the first cell in the table row.
17238  If you have for example a multicolumn spanning over columns 2 to 4 and
17239  you want to have a dashed line above, add the command
17240 \end_layout
17241
17242 \begin_layout Standard
17243
17244 \series bold
17245
17246 \backslash
17247 cdashline{2-4}
17248 \end_layout
17249
17250 \begin_layout Standard
17251 as first element of the first cell in the row of the multicolumn.
17252 \end_layout
17253
17254 \begin_layout Standard
17255 \begin_inset VSpace bigskip
17256 \end_inset
17257
17258
17259 \end_layout
17260
17261 \begin_layout Standard
17262 Table\InsetSpace ~
17263
17264 \begin_inset LatexCommand ref
17265 reference "tab:Table-with-dashed"
17266
17267 \end_inset
17268
17269  was created using 
17270 \begin_inset Quotes eld
17271 \end_inset
17272
17273
17274 \series bold
17275 :c
17276 \series default
17277
17278 \begin_inset Quotes erd
17279 \end_inset
17280
17281  as LaTeX-argument of the third column.
17282  The ERT command 
17283 \series bold
17284
17285 \backslash
17286 hdashline
17287 \series default
17288  was inserted to the first cell of the third row and the the ERT command
17289 \newline
17290
17291  
17292 \series bold
17293
17294 \backslash
17295 cdashline{4-5}
17296 \series default
17297  was inserted to the first cell of the fourth row.
17298 \end_layout
17299
17300 \begin_layout Standard
17301 \begin_inset Note Greyedout
17302 status open
17303
17304 \begin_layout Standard
17305
17306 \series bold
17307 Note:
17308 \series default
17309  The used LaTeX-package 
17310 \series bold
17311 arydshln
17312 \series default
17313  is apparently not compatible with the LaTeX-package 
17314 \series bold
17315 colortbl
17316 \series default
17317
17318 \begin_inset LatexCommand index
17319 name "LaTeX-packages ! colortbl"
17320
17321 \end_inset
17322
17323  that is used for colored tables in section\InsetSpace ~
17324
17325 \begin_inset LatexCommand ref
17326 reference "sec:Colored-Tables"
17327
17328 \end_inset
17329
17330 .
17331  That means colored tables cannot have dashed lines.
17332 \end_layout
17333
17334 \end_inset
17335
17336
17337 \end_layout
17338
17339 \begin_layout Chapter
17340 Floats
17341 \begin_inset LatexCommand index
17342 name "Floats"
17343
17344 \end_inset
17345
17346
17347 \begin_inset LatexCommand label
17348 name "cha:Floats"
17349
17350 \end_inset
17351
17352
17353 \end_layout
17354
17355 \begin_layout Section
17356 Introduction
17357 \begin_inset LatexCommand label
17358 name "sec:FloatIntroduction"
17359
17360 \end_inset
17361
17362
17363 \begin_inset LatexCommand index
17364 name "Floats ! Introduction"
17365
17366 \end_inset
17367
17368
17369 \end_layout
17370
17371 \begin_layout Standard
17372 A float is a block of text associated with some sort of label, which doesn't
17373  have a fixed location.
17374  It can 
17375 \begin_inset Quotes eld
17376 \end_inset
17377
17378 float
17379 \begin_inset Quotes erd
17380 \end_inset
17381
17382  forward or backward a page or two, to wherever it fits best.
17383  
17384 \family sans
17385 Footnotes
17386 \family default
17387  and 
17388 \family sans
17389 Margin\InsetSpace ~
17390 Notes
17391 \family default
17392  are also floats, because they can float to the next page when there are
17393  too many notes at the page.
17394 \end_layout
17395
17396 \begin_layout Standard
17397 Floats allow a high quality layout.
17398  Images and tables can evenly be spread to the pages to avoid white space
17399  and pages without text.
17400  As the floating often destroys the context between the text and the image/table
17401 , every float can be referenced in the text.
17402  Floats are therefore numbered.
17403  Referencing is described in section\InsetSpace ~
17404
17405 \begin_inset LatexCommand ref
17406 reference "sec:Referencing-Floats"
17407
17408 \end_inset
17409
17410 .
17411 \end_layout
17412
17413 \begin_layout Standard
17414 To insert a float, use the menu 
17415 \family sans
17416 Insert\SpecialChar \menuseparator
17417 Floats
17418 \family default
17419 .
17420  This inserts a box with a label in the 
17421 \family sans
17422 Caption
17423 \family default
17424  environment
17425 \begin_inset Foot
17426 status collapsed
17427
17428 \begin_layout Standard
17429 The 
17430 \family sans
17431 Caption
17432 \family default
17433  environment is described in LyX's 
17434 \emph on
17435 Userguide
17436 \emph default
17437 .
17438 \end_layout
17439
17440 \end_inset
17441
17442  into your document.
17443  Every label ends with the character 
17444 \begin_inset Quotes eld
17445 \end_inset
17446
17447 #
17448 \begin_inset Quotes erd
17449 \end_inset
17450
17451  as placeholder for the float number in the output.
17452  The label will automatically be translated to the document language in
17453  the output.
17454  Behind the label you can insert the caption text.
17455  The image or table is inserted above or below the caption in a separate
17456  paragraph within the float.
17457  More about the caption placement is described in section\InsetSpace ~
17458
17459 \begin_inset LatexCommand ref
17460 reference "sec:Caption-Placement"
17461
17462 \end_inset
17463
17464 .
17465  To keep your LyX-document readable, you can open and close the float box
17466  by left-clicking on the box label.
17467  A closed float box looks like this: 
17468 \begin_inset Graphics
17469         filename ../clipart/floatQt4.png
17470         scale 70
17471
17472 \end_inset
17473
17474  -- a gray button with a red label.
17475 \end_layout
17476
17477 \begin_layout Standard
17478 It is recommended to insert floats as a separate paragraph to avoid possible
17479  LaTeX-errors that can occur when the surrounding text is specially formatted.
17480 \end_layout
17481
17482 \begin_layout Standard
17483 Existing figures or tables can be put into a float by marking them and then
17484  pressing the corresponding toolbar button for a new float.
17485 \end_layout
17486
17487 \begin_layout Section
17488 Float Types
17489 \end_layout
17490
17491 \begin_layout Standard
17492 Besides figure and table floats that are described in section\InsetSpace ~
17493
17494 \begin_inset LatexCommand ref
17495 reference "sec:Figure-Floats"
17496
17497 \end_inset
17498
17499  and 
17500 \begin_inset LatexCommand ref
17501 reference "sec:Table-Floats"
17502
17503 \end_inset
17504
17505 , respectively, LyX offers the float types 
17506 \series bold
17507 Algorithm
17508 \series default
17509  and 
17510 \series bold
17511 Text\InsetSpace ~
17512 Wrap\InsetSpace ~
17513 Float
17514 \series default
17515 .
17516 \end_layout
17517
17518 \begin_layout Subsection
17519 Algorithm Floats
17520 \begin_inset LatexCommand index
17521 name "Floats ! Algorithm Floats"
17522
17523 \end_inset
17524
17525
17526 \end_layout
17527
17528 \begin_layout Standard
17529 \begin_inset Float algorithm
17530 placement h
17531 wide false
17532 sideways false
17533 status open
17534
17535 \begin_layout Standard
17536 \begin_inset Caption
17537
17538 \begin_layout Standard
17539 \begin_inset LatexCommand label
17540 name "alg:Example-Algorithm-float"
17541
17542 \end_inset
17543
17544 Example Algorithm float
17545 \end_layout
17546
17547 \end_inset
17548
17549
17550 \end_layout
17551
17552 \begin_layout LyX-Code
17553 for I in 1..N loop
17554 \newline
17555  Sum:= Sum + A(I); /*senseless comment*/
17556 \newline
17557 end loop
17558 \begin_inset VSpace -4mm
17559 \end_inset
17560
17561
17562 \end_layout
17563
17564 \end_inset
17565
17566
17567 \end_layout
17568
17569 \begin_layout Standard
17570 This float type is inserted with the menu 
17571 \family sans
17572 Insert\SpecialChar \menuseparator
17573 Floats\SpecialChar \menuseparator
17574 Algorithm
17575 \family default
17576 .
17577  It is used for program codes and descriptions of algorithms.
17578  A possible environment for algorithms is the 
17579 \family sans
17580 LyX-Code
17581 \family default
17582 , described in LyX's 
17583 \emph on
17584 Userguide
17585 \emph default
17586 .
17587  Algorithm\InsetSpace ~
17588
17589 \begin_inset LatexCommand ref
17590 reference "alg:Example-Algorithm-float"
17591
17592 \end_inset
17593
17594  is an example of an algorithm float where -4\InsetSpace \thinspace{}
17595 mm vertical space was added
17596  at the end of the float to have the bottom rule exactly below the last
17597  text line.
17598 \end_layout
17599
17600 \begin_layout Standard
17601 The float label is not automatically translated into the document language.
17602  If your document is not in English, you have to do this manually by adding
17603  the following line
17604 \series bold
17605  
17606 \series default
17607 to the document preamble
17608 \series bold
17609 :
17610 \end_layout
17611
17612 \begin_layout Standard
17613
17614 \series bold
17615
17616 \backslash
17617 floatname{algorithm}{your\InsetSpace ~
17618 name}
17619 \end_layout
17620
17621 \begin_layout Standard
17622
17623 \family sans
17624 your\InsetSpace ~
17625 name
17626 \family default
17627  is the word 
17628 \begin_inset Quotes eld
17629 \end_inset
17630
17631
17632 \emph on
17633 algorithm
17634 \emph default
17635
17636 \begin_inset Quotes erd
17637 \end_inset
17638
17639  in your language.
17640 \end_layout
17641
17642 \begin_layout Description
17643
17644 \series bold
17645 Note:
17646 \series default
17647  When the LaTeX-package 
17648 \series bold
17649 hyperref
17650 \series default
17651
17652 \begin_inset LatexCommand index
17653 name "LaTeX-packages ! hyperref"
17654
17655 \end_inset
17656
17657  is used to link cross-references to floats in the PDF-output, it must be
17658  loaded in the document preamble before the definition of floats to be able
17659  to reference floats.
17660  As LyX sets the float definition for algorithm floats automatically before
17661  the user editable part of the document preamble, you need to insert the
17662  following preamble lines 
17663 \emph on
17664 after
17665 \emph default
17666  the loading command of 
17667 \series bold
17668 hyperref
17669 \series default
17670 :
17671 \series bold
17672
17673 \begin_inset VSpace defskip
17674 \end_inset
17675
17676
17677 \newline
17678
17679 \backslash
17680 newfloat{Xalgorithm}{tbp}{loa}
17681 \newline
17682
17683 \backslash
17684 floatname{Xalgorithm}{your\InsetSpace ~
17685 name}
17686 \newline
17687
17688 \backslash
17689 newcommand{
17690 \backslash
17691 theHalgorithm}{
17692 \backslash
17693 theHXalgorithm}
17694 \newline
17695
17696 \backslash
17697 renewenvironment{algorithm}[1][tbp]
17698 \newline
17699
17700 \begin_inset ERT
17701 status collapsed
17702
17703 \begin_layout Standard
17704
17705
17706 \backslash
17707 hphantom{ }
17708 \end_layout
17709
17710 \end_inset
17711
17712 {
17713 \backslash
17714 begin{Xalgorithm}[#1]}{
17715 \backslash
17716 end{Xalgorithm}}
17717 \begin_inset VSpace defskip
17718 \end_inset
17719
17720
17721 \series default
17722
17723 \newline
17724 Where 
17725 \family sans
17726 your\InsetSpace ~
17727 name
17728 \family default
17729  is the word 
17730 \begin_inset Quotes eld
17731 \end_inset
17732
17733
17734 \emph on
17735 algorithm
17736 \emph default
17737
17738 \begin_inset Quotes erd
17739 \end_inset
17740
17741  in your language.
17742 \end_layout
17743
17744 \begin_layout Standard
17745 Algorithm floats are not by default numbered in the scheme 
17746 \begin_inset Quotes eld
17747 \end_inset
17748
17749 chapter.algorithm
17750 \begin_inset Quotes erd
17751 \end_inset
17752
17753  like it is the case for table and figure floats in many document-classes.
17754  To number algorithm floats in the same scheme, add this command to your
17755  document preamble:
17756 \end_layout
17757
17758 \begin_layout Standard
17759
17760 \series bold
17761
17762 \backslash
17763 numberwithin{algorithm}{chapter}
17764 \end_layout
17765
17766 \begin_layout Standard
17767 If you use the LaTeX-package 
17768 \series bold
17769 hyperref
17770 \series default
17771 , add this line instead 
17772 \emph on
17773 after
17774 \emph default
17775  the definition of 
17776 \family sans
17777 Xalgorithm
17778 \family default
17779  (the commands from above) to the preamble:
17780 \end_layout
17781
17782 \begin_layout Standard
17783
17784 \series bold
17785
17786 \backslash
17787 numberwithin{Xalgorithm}{chapter}
17788 \end_layout
17789
17790 \begin_layout Standard
17791 To be able to use the command 
17792 \series bold
17793
17794 \backslash
17795 numberwithin
17796 \series default
17797 , set in the tab 
17798 \family sans
17799 Math\InsetSpace ~
17800 Options
17801 \family default
17802  in the document settings the option 
17803 \family sans
17804 Use\InsetSpace ~
17805 AMS\InsetSpace ~
17806 math\InsetSpace ~
17807 package
17808 \family default
17809 .
17810 \end_layout
17811
17812 \begin_layout Subsection
17813 Text Wrap Floats
17814 \begin_inset LatexCommand index
17815 name "Floats ! Text Wrap Floats"
17816
17817 \end_inset
17818
17819
17820 \begin_inset LatexCommand label
17821 name "sub:floatflt-wrap-float"
17822
17823 \end_inset
17824
17825
17826 \end_layout
17827
17828 \begin_layout Standard
17829 This float type is used if you want to 
17830 \begin_inset Quotes eld
17831 \end_inset
17832
17833 wrap
17834 \begin_inset Quotes erd
17835 \end_inset
17836
17837  text around a figure so that it only occupies some fraction of the column
17838  width.
17839  It can be inserted using the menu 
17840 \begin_inset Wrap figure
17841 placement l
17842 width "40col%"
17843 status open
17844
17845 \begin_layout Standard
17846 \begin_inset Graphics
17847         filename mobius.eps
17848         display color
17849         width 40col%
17850         rotateOrigin center
17851
17852 \end_inset
17853
17854
17855 \end_layout
17856
17857 \begin_layout Standard
17858 \begin_inset Caption
17859
17860 \begin_layout Standard
17861 \begin_inset LatexCommand label
17862 name "fig:This-is-a"
17863
17864 \end_inset
17865
17866 This is a wrapped figure, and this is the brilliant caption that describes
17867  it.
17868 \begin_inset VSpace medskip
17869 \end_inset
17870
17871
17872 \end_layout
17873
17874 \end_inset
17875
17876
17877 \end_layout
17878
17879 \end_inset
17880
17881  
17882 \family sans
17883 Insert\SpecialChar \menuseparator
17884 Floats\SpecialChar \menuseparator
17885 Text\InsetSpace ~
17886 Wrap\InsetSpace ~
17887 Float
17888 \family default
17889  if the LaTeX-package 
17890 \series bold
17891 floatflt
17892 \series default
17893
17894 \begin_inset LatexCommand index
17895 name "LaTeX-packages ! floatflt"
17896
17897 \end_inset
17898
17899  is installed.
17900 \begin_inset Foot
17901 status collapsed
17902
17903 \begin_layout Standard
17904 Installing a LaTeX-package is explained it in the 
17905 \emph on
17906 LaTeX\InsetSpace ~
17907 Configuration
17908 \emph default
17909  manual.
17910 \end_layout
17911
17912 \end_inset
17913
17914  The width and placement of the float is adjusted by right-clicking on the
17915  float box.
17916  Figure\InsetSpace ~
17917
17918 \begin_inset LatexCommand ref
17919 reference "fig:This-is-a"
17920
17921 \end_inset
17922
17923  is an example text wrap float with a width of 40
17924 \begin_inset Formula $\,$
17925 \end_inset
17926
17927 col%.
17928 \begin_inset Foot
17929 status collapsed
17930
17931 \begin_layout Standard
17932 Available units are explained in 
17933 \begin_inset LatexCommand ref
17934 reference "cha:Units-available-in"
17935
17936 \end_inset
17937
17938 .
17939 \end_layout
17940
17941 \end_inset
17942
17943  Some space was added under the caption to separate it better from the surroundi
17944 ng text.
17945 \end_layout
17946
17947 \begin_layout Standard
17948 The LaTeX-package 
17949 \series bold
17950 floatflt
17951 \series default
17952  also supports table wrap floats, but they are not yet supported by LyX.
17953  If you need this, read the documentation of 
17954 \series bold
17955 floatflt
17956 \series default
17957  
17958 \begin_inset LatexCommand cite
17959 key "floatflt"
17960
17961 \end_inset
17962
17963 .
17964 \end_layout
17965
17966 \begin_layout Standard
17967 \begin_inset Note Greyedout
17968 status open
17969
17970 \begin_layout Standard
17971
17972 \series bold
17973 Note:
17974 \series default
17975  Text\InsetSpace ~
17976 wrap float floats are fragile! E.\InsetSpace \thinspace{}
17977 g.\InsetSpace ~
17978 having a figure too close to the bottom
17979  of the page can mess things up in the way that the float doesn't appear
17980  in the output or that it is placed over some other text.
17981 \begin_inset Foot
17982 status open
17983
17984 \begin_layout Standard
17985 The better solution is to use the LaTeX-package 
17986 \series bold
17987 wrapf\SpecialChar \textcompwordmark{}
17988 ig
17989 \series default
17990
17991 \begin_inset LatexCommand index
17992 name "LaTeX-packages ! wrapfig\\vspace{4mm}"
17993
17994 \end_inset
17995
17996  instead of 
17997 \series bold
17998 floatf\SpecialChar \textcompwordmark{}
17999 lt
18000 \series default
18001 , but it is currently not supported by LyX.
18002 \end_layout
18003
18004 \end_inset
18005
18006
18007 \end_layout
18008
18009 \end_inset
18010
18011
18012 \end_layout
18013
18014 \begin_layout Standard
18015 In general:
18016 \end_layout
18017
18018 \begin_layout Itemize
18019 Wrap floats should not be placed in paragraphs that run over a page break.
18020  That means that wrap floats should better be inserted to the exact place
18021  when the document is nearly ready and you are able to estimate where page
18022  breaks will appear.
18023 \end_layout
18024
18025 \begin_layout Itemize
18026 Wrap floats should either be placed in an own paragraph before the paragraph
18027  where they should wrap into or within a paragraph.
18028 \end_layout
18029
18030 \begin_layout Itemize
18031 Wrap floats in consecutive paragraphs may cause troubles, so assure that
18032  there is a text paragraph between them as separator.
18033 \end_layout
18034
18035 \begin_layout Itemize
18036 Wrap floats are not allowed in section headings or tables.
18037 \end_layout
18038
18039 \begin_layout Section
18040 Referencing Floats
18041 \begin_inset LatexCommand label
18042 name "sec:Referencing-Floats"
18043
18044 \end_inset
18045
18046
18047 \begin_inset LatexCommand index
18048 name "Floats ! References"
18049
18050 \end_inset
18051
18052
18053 \begin_inset LatexCommand index
18054 name "References"
18055
18056 \end_inset
18057
18058
18059 \end_layout
18060
18061 \begin_layout Standard
18062 To reference a float, insert a label into its caption using the menu 
18063 \family sans
18064 Insert\SpecialChar \menuseparator
18065 Label
18066 \family default
18067  or the toolbar button 
18068 \begin_inset Graphics
18069         filename ../images/label-insert.xpm
18070         scale 85
18071
18072 \end_inset
18073
18074 .
18075  A grey label box like this one: 
18076 \begin_inset Graphics
18077         filename ../clipart/labelQt4.png
18078         scale 85
18079
18080 \end_inset
18081
18082  will be inserted and the label window pops up asking for the label text.
18083  LyX offers as text the first words of the caption with a prefix.
18084  The prefix depends on the float type, e.\InsetSpace \thinspace{}
18085 g.\InsetSpace ~
18086 for figure floats the prefix will
18087  be "
18088 \family sans
18089 fig:
18090 \family default
18091 ".
18092 \end_layout
18093
18094 \begin_layout Standard
18095 The label is used as anchor and name for the reference.
18096  You can refer to the label using the menu 
18097 \family sans
18098 Insert\SpecialChar \menuseparator
18099 Cross-reference
18100 \family default
18101  or the toolbar button 
18102 \begin_inset Graphics
18103         filename ../images/dialog-show-new-inset_ref.xpm
18104         scale 85
18105
18106 \end_inset
18107
18108 .
18109  A grey cross-reference box like this one: 
18110 \begin_inset Graphics
18111         filename ../clipart/referenceQt4.png
18112         scale 85
18113
18114 \end_inset
18115
18116  will be inserted and the cross-reference window appear showing all labels
18117  of the document.
18118  If you have multiple LyX-documents opened, choose the one you are working
18119  on from the drop-list at the top of the dialog.
18120  You can now sort the labels alphabetically and then choose one.
18121  At the position of the cross-reference box the float number will appear
18122  in the output.
18123 \end_layout
18124
18125 \begin_layout Standard
18126 It is recommended to use a protected space between the cross-reference name
18127  and its number to avoid line breaks between them.
18128  If a cross-reference refers to a non-existing label, you will see two question
18129  marks in the output instead of the reference.
18130 \end_layout
18131
18132 \begin_layout Standard
18133 You can change labels at any time by clicking on the label box.
18134  References to the changed label will automatically change its link to the
18135  new label text, so that you don't need to take care about this.
18136 \end_layout
18137
18138 \begin_layout Standard
18139 The button 
18140 \family sans
18141 Go\InsetSpace ~
18142 to\InsetSpace ~
18143 Label
18144 \family default
18145  in the cross-reference window sets the cursor before the referred label.
18146  The button text changes then to Go\InsetSpace ~
18147 Back and you can use it to set the cursor
18148  back to the cross-reference.
18149  Right-clicking on a cross-reference box also sets the cursor before the
18150  referenced label but without a possibility to go back.
18151 \end_layout
18152
18153 \begin_layout Subsection
18154 Cross-reference formats
18155 \begin_inset LatexCommand label
18156 name "sub:Cross-reference-formats"
18157
18158 \end_inset
18159
18160
18161 \begin_inset LatexCommand index
18162 name "References ! Formats"
18163
18164 \end_inset
18165
18166
18167 \end_layout
18168
18169 \begin_layout Standard
18170 There are six varieties of cross-references:
18171 \end_layout
18172
18173 \begin_layout Description
18174 <reference>: prints the float number, this is the default: 
18175 \begin_inset LatexCommand ref
18176 reference "fig:Two-distorted-images"
18177
18178 \end_inset
18179
18180
18181 \end_layout
18182
18183 \begin_layout Description
18184 (<reference>): prints the float number within two parentheses, this is the
18185  style normally used to reference formulas, especially when the reference
18186  name 
18187 \begin_inset Quotes eld
18188 \end_inset
18189
18190 Equation
18191 \begin_inset Quotes erd
18192 \end_inset
18193
18194  is omitted: 
18195 \begin_inset LatexCommand eqref
18196 reference "eq:Wgn"
18197
18198 \end_inset
18199
18200
18201 \end_layout
18202
18203 \begin_layout Description
18204 <page>: prints the page number: Page\InsetSpace ~
18205
18206 \begin_inset LatexCommand pageref
18207 reference "fig:Two-distorted-images"
18208
18209 \end_inset
18210
18211
18212 \end_layout
18213
18214 \begin_layout Description
18215 on\InsetSpace ~
18216 page\InsetSpace ~
18217 <page>: prints the text "on page" and the page number: 
18218 \begin_inset LatexCommand vpageref
18219 reference "fig:Two-distorted-images"
18220
18221 \end_inset
18222
18223
18224 \end_layout
18225
18226 \begin_layout Description
18227 <reference>\InsetSpace ~
18228 on\InsetSpace ~
18229 page\InsetSpace ~
18230 <page>: prints the float number, the text "on page", and
18231  the page number: 
18232 \begin_inset LatexCommand vref
18233 reference "fig:Two-distorted-images"
18234
18235 \end_inset
18236
18237
18238 \end_layout
18239
18240 \begin_layout Description
18241 Formatted\InsetSpace ~
18242 reference: prints a self defined cross-reference format:
18243 \newline
18244
18245 \begin_inset LatexCommand prettyref
18246 reference "fig:Two-distorted-images"
18247
18248 \end_inset
18249
18250
18251 \end_layout
18252
18253 \begin_layout Standard
18254 Note that the style <page> won't print the page number if the label is on
18255  the previous, the same, or the next page.
18256  You will e.\InsetSpace \thinspace{}
18257 g.\InsetSpace ~
18258 see the text 
18259 \begin_inset Quotes eld
18260 \end_inset
18261
18262
18263 \family sans
18264 on this page
18265 \family default
18266
18267 \begin_inset Quotes erd
18268 \end_inset
18269
18270  instead.
18271 \end_layout
18272
18273 \begin_layout Standard
18274 The number and current page of the referred document part in the output,
18275  is automatically calculated by LaTeX.
18276  The varieties are adjusted in the field 
18277 \family sans
18278 Format
18279 \family default
18280  of the cross-reference window, that appear when you click on the cross-referenc
18281 e box.
18282 \begin_inset VSpace bigskip
18283 \end_inset
18284
18285
18286 \end_layout
18287
18288 \begin_layout Standard
18289 To define a format for the 
18290 \family sans
18291 Formatted\InsetSpace ~
18292 reference
18293 \family default
18294  style, you have to use the following command in the document preamble:
18295 \end_layout
18296
18297 \begin_layout Standard
18298
18299 \series bold
18300
18301 \backslash
18302 newrefformat{prefix}{text}
18303 \end_layout
18304
18305 \begin_layout Standard
18306 This formatting command affects all references to labels with the same prefix.
18307  To get the format of the 
18308 \family sans
18309 Formatted\InsetSpace ~
18310 reference
18311 \family default
18312  example above, this command was used:
18313 \end_layout
18314
18315 \begin_layout Standard
18316
18317 \series bold
18318
18319 \backslash
18320 newrefformat{fig}
18321 \newline
18322
18323 \begin_inset ERT
18324 status collapsed
18325
18326 \begin_layout Standard
18327
18328
18329 \backslash
18330 hphantom{ }
18331 \end_layout
18332
18333 \end_inset
18334
18335 {Figure~float~
18336 \backslash
18337 ref{#1} printed on page~
18338 \backslash
18339 pageref{#1}}
18340 \end_layout
18341
18342 \begin_layout Standard
18343 The tilde "~" is the LaTeX equivalent for the protected space.
18344  The command 
18345 \series bold
18346
18347 \backslash
18348 ref{#1}
18349 \series default
18350  refers to the float number, the command 
18351 \series bold
18352
18353 \backslash
18354 pageref{#1}
18355 \series default
18356  to the page number.
18357 \end_layout
18358
18359 \begin_layout Subsection
18360 Automatic Reference Naming
18361 \begin_inset LatexCommand index
18362 name "References ! Automatic Reference Naming"
18363
18364 \end_inset
18365
18366
18367 \end_layout
18368
18369 \begin_layout Standard
18370 The LaTeX-package 
18371 \series bold
18372 hyperref
18373 \series default
18374  provides a very useful feature that cross-references automatically include
18375  the name of the referenced floats (or text parts like sections).
18376  You save to write e.\InsetSpace \thinspace{}
18377 g.\InsetSpace ~
18378 the name 
18379 \begin_inset Quotes eld
18380 \end_inset
18381
18382 Figure
18383 \begin_inset Quotes erd
18384 \end_inset
18385
18386  before every reference box.
18387  To get this automatic reference naming, you have to load the LaTeX-package
18388  
18389 \series bold
18390 hyperref
18391 \series default
18392
18393 \begin_inset LatexCommand index
18394 name "LaTeX-packages ! hyperref"
18395
18396 \end_inset
18397
18398  in the document preamble with
18399 \end_layout
18400
18401 \begin_layout Standard
18402
18403 \series bold
18404
18405 \backslash
18406 usepackage[pdfborder={0 0 0}]{hyperref}
18407 \newline
18408
18409 \backslash
18410 AtBeginDocument{
18411 \backslash
18412 renewcommand{
18413 \backslash
18414 ref}[1]{
18415 \backslash
18416 mbox{
18417 \backslash
18418 autoref{#1}}}}
18419 \end_layout
18420
18421 \begin_layout Standard
18422
18423 \series bold
18424 hyperref
18425 \series default
18426  is used to link cross-references in the DVI- and PDF-output, this means
18427  that the reader of your document will be able to click on a table of content
18428  (TOC) entry or on a reference and he will be shown the referenced document
18429  part.
18430  
18431 \series bold
18432 hyperref
18433 \series default
18434  also creates PDF-bookmarks for every section of your document to make it
18435  easier for readers to navigate through the document.
18436  This is also used in this document but when you have a look in the document
18437  preamble you will find various options in the load command of 
18438 \series bold
18439 hyperref
18440 \series default
18441 .
18442  To learn more about the 
18443 \series bold
18444 hyperref
18445 \series default
18446  package, we refer to its documentation 
18447 \begin_inset LatexCommand cite
18448 key "hyperref"
18449
18450 \end_inset
18451
18452 .
18453 \end_layout
18454
18455 \begin_layout Standard
18456 \begin_inset Note Greyedout
18457 status open
18458
18459 \begin_layout Standard
18460
18461 \series bold
18462 Note:
18463 \series default
18464  Automatic reference naming cannot be used when you use cross-references
18465  in the 
18466 \family sans
18467 Formatted\InsetSpace ~
18468 reference
18469 \family default
18470  style, described in section\InsetSpace ~
18471
18472 \begin_inset LatexCommand ref
18473 reference "sub:Cross-reference-formats"
18474
18475 \end_inset
18476
18477 .
18478  That is the reason why it is not used in this document.
18479 \end_layout
18480
18481 \end_inset
18482
18483
18484 \end_layout
18485
18486 \begin_layout Subsection
18487 Reference Position
18488 \begin_inset LatexCommand label
18489 name "sub:Reference-Position"
18490
18491 \end_inset
18492
18493
18494 \begin_inset LatexCommand index
18495 name "References ! Reference Position"
18496
18497 \end_inset
18498
18499
18500 \end_layout
18501
18502 \begin_layout Standard
18503 If you use 
18504 \series bold
18505 hyperref
18506 \series default
18507
18508 \begin_inset LatexCommand index
18509 name "LaTeX-packages ! hyperref"
18510
18511 \end_inset
18512
18513  to link cross-references in the output, you will see that clicking on an
18514  image float reference jumps to the image label.
18515  The caption will be the first text part on the screen, so that you cannot
18516  see the image without scrolling.
18517  This is because the reference link anchor is placed at the position of
18518  the label.
18519  With the use of the package 
18520 \series bold
18521 hypcap
18522 \series default
18523
18524 \begin_inset LatexCommand index
18525 name "LaTeX-packages ! hypcap"
18526
18527 \end_inset
18528
18529 , which is part of the LaTeX-package 
18530 \series bold
18531 oberdiek
18532 \series default
18533
18534 \begin_inset LatexCommand index
18535 name "LaTeX-packages ! oberdiek"
18536
18537 \end_inset
18538
18539 , the link anchor is placed at the beginning of a float.
18540  To use this feature for figure floats, load 
18541 \series bold
18542 hypcap
18543 \series default
18544  in the document preamble with the line
18545 \end_layout
18546
18547 \begin_layout Standard
18548
18549 \series bold
18550
18551 \backslash
18552 usepackage[f\SpecialChar \textcompwordmark{}
18553 igure]{hypcap}
18554 \end_layout
18555
18556 \begin_layout Standard
18557 You can also use 
18558 \series bold
18559 hypcap
18560 \series default
18561  for all floats but this isn't recommended for stability reasons.
18562  For more informations, have a look at 
18563 \series bold
18564 hypcap
18565 \series default
18566 's manual 
18567 \begin_inset LatexCommand cite
18568 key "hypcap"
18569
18570 \end_inset
18571
18572 .
18573 \end_layout
18574
18575 \begin_layout Standard
18576 \begin_inset Note Greyedout
18577 status open
18578
18579 \begin_layout Standard
18580
18581 \series bold
18582 Note:
18583 \series default
18584  
18585 \series bold
18586 hypcap
18587 \series default
18588  must be loaded after 
18589 \series bold
18590 hyperref
18591 \series default
18592  in the document preamble.
18593 \end_layout
18594
18595 \end_inset
18596
18597
18598 \end_layout
18599
18600 \begin_layout Section
18601 Float Placement
18602 \begin_inset LatexCommand label
18603 name "sec:Float-Placement"
18604
18605 \end_inset
18606
18607
18608 \begin_inset LatexCommand index
18609 name "Floats ! Placement"
18610
18611 \end_inset
18612
18613
18614 \end_layout
18615
18616 \begin_layout Standard
18617 Right-clicking on a float-box opens a dialog where you can alter the placement
18618  options that LaTeX uses for positioning the float.
18619 \newline
18620 The option 
18621 \family sans
18622 Span\InsetSpace ~
18623 columns
18624 \family default
18625  is only useful for two-column documents: If you select it, the float will
18626  span across both columns on the page instead of being confined to just
18627  one.
18628 \newline
18629 The option 
18630 \family sans
18631 Rotate\InsetSpace ~
18632 sideways
18633 \family default
18634  is used to rotate floats, see section 
18635 \begin_inset LatexCommand ref
18636 reference "sec:Rotated-Floats"
18637
18638 \end_inset
18639
18640 .
18641 \end_layout
18642
18643 \begin_layout Standard
18644 You can use one ore more of the following options in the float dialog to
18645  set the placement for a particular float when you uncheck the option 
18646 \family sans
18647 Use\InsetSpace ~
18648 default\InsetSpace ~
18649 placement
18650 \family default
18651 :
18652 \end_layout
18653
18654 \begin_layout Description
18655 Here\InsetSpace ~
18656 if\InsetSpace ~
18657 possible: try to place the float on the position where it is inserted
18658 \end_layout
18659
18660 \begin_layout Description
18661 Top\InsetSpace ~
18662 of\InsetSpace ~
18663 page: try to place the float on the top of the current page
18664 \end_layout
18665
18666 \begin_layout Description
18667 Bottom\InsetSpace ~
18668 of\InsetSpace ~
18669 page: try to place the float on the bottom of the current page
18670 \end_layout
18671
18672 \begin_layout Description
18673 Page\InsetSpace ~
18674 of\InsetSpace ~
18675 floats: try to place the float on an own page 
18676 \end_layout
18677
18678 \begin_layout Standard
18679 The order of the above option is 
18680 \emph on
18681 always
18682 \emph default
18683  used by LaTeX.
18684  That means, if you use the default placement, LaTeX will first try out
18685  
18686 \family sans
18687 Here\InsetSpace ~
18688 if\InsetSpace ~
18689 possible
18690 \family default
18691 , then 
18692 \family sans
18693 Top\InsetSpace ~
18694 of\InsetSpace ~
18695 page
18696 \family default
18697 , and then the others.
18698  If you don't use the default, LaTeX will try only the checked options but
18699  in the same order.
18700  If none of the 4 placements are possible the procedure is internally repeated
18701  but it is tried to put the float on the following page.
18702 \end_layout
18703
18704 \begin_layout Standard
18705 By default, each options has its own rules:
18706 \end_layout
18707
18708 \begin_layout Labeling
18709 \labelwidthstring 00.00.0000
18710
18711 \family sans
18712 Top\InsetSpace ~
18713 of\InsetSpace ~
18714 page
18715 \family default
18716  only floats occupying less than 70\InsetSpace \thinspace{}
18717 % of the page can be placed at the top
18718  of a page (
18719 \series bold
18720
18721 \backslash
18722 topfraction
18723 \series default
18724 )
18725 \end_layout
18726
18727 \begin_layout Labeling
18728 \labelwidthstring 00.00.0000
18729
18730 \family sans
18731 Bottom\InsetSpace ~
18732 of\InsetSpace ~
18733 page
18734 \family default
18735 : only floats occupying less than 30\InsetSpace \thinspace{}
18736 % of the page can be placed at the bottom
18737  of a page.
18738  (
18739 \series bold
18740
18741 \backslash
18742 bottomfraction
18743 \series default
18744 )
18745 \end_layout
18746
18747 \begin_layout Labeling
18748 \labelwidthstring 00.00.0000
18749
18750 \family sans
18751 Page\InsetSpace ~
18752 of\InsetSpace ~
18753 floats
18754 \family default
18755 : only if more than 50\InsetSpace \thinspace{}
18756 % of the page are occupied by floats, several floats
18757  can be set together on a page.
18758  (
18759 \series bold
18760
18761 \backslash
18762 floatpagefraction
18763 \series default
18764 )
18765 \end_layout
18766
18767 \begin_layout Standard
18768 If you don't like these rules, you can ignore them by using the additional
18769  option 
18770 \family sans
18771 Ignore\InsetSpace ~
18772 LaTeX\InsetSpace ~
18773 rules
18774 \family default
18775 .
18776 \newline
18777 You can also redefine the rules with LaTeX-commands that are given in parenthese
18778 s behind the rules description above.
18779  To increase for example the often too small default of the bottom-rule
18780  to 50\InsetSpace \thinspace{}
18781 % of the page, add this line to your document preamble:
18782 \end_layout
18783
18784 \begin_layout Standard
18785
18786 \series bold
18787
18788 \backslash
18789 renewcommand{
18790 \backslash
18791 bottomfraction}{0.5}
18792 \end_layout
18793
18794 \begin_layout Standard
18795 Sometimes you might need, under all circumstances, a float to be placed
18796  exactly at the position where it is inserted.
18797  For this case you can use the option 
18798 \family sans
18799 Here\InsetSpace ~
18800 definitely
18801 \family default
18802 .
18803  Use this option very rarely and only if the document is nearly ready to
18804  be printed.
18805  Because the float is then no longer able to 
18806 \begin_inset Quotes eld
18807 \end_inset
18808
18809 float
18810 \begin_inset Quotes erd
18811 \end_inset
18812
18813  when you change your document and this will often destroy the page layout.
18814 \end_layout
18815
18816 \begin_layout Standard
18817 There are no placement options for text wrap floats, because they are always
18818  surrounded by the text of a certain paragraph.
18819 \begin_inset VSpace bigskip
18820 \end_inset
18821
18822
18823 \end_layout
18824
18825 \begin_layout Standard
18826 Sometimes you have the problem that a float is placed at the top of a page
18827  while its corresponding section starts at the middle of the page, so that
18828  the reader could think the float is part of the previous section.
18829  To avoid this the LaTeX-command 
18830 \series bold
18831
18832 \backslash
18833 suppressf\SpecialChar \textcompwordmark{}
18834 loats
18835 \series default
18836  can be used.
18837  It suppresses a given float placement for the page where it is inserted
18838  and can therefore be used to avoid that floats could be set before a section
18839  starts.
18840  To get this, add these commands to your document preamble:
18841 \end_layout
18842
18843 \begin_layout Standard
18844
18845 \series bold
18846
18847 \backslash
18848 let
18849 \backslash
18850 mySection
18851 \backslash
18852 section
18853 \newline
18854
18855 \backslash
18856 renewcommand{
18857 \backslash
18858 section}{
18859 \backslash
18860 suppressf\SpecialChar \textcompwordmark{}
18861 loats[t]
18862 \backslash
18863 mySection}
18864 \end_layout
18865
18866 \begin_layout Standard
18867 You can define the same for all section headings, like chapters and subsections.
18868  This definition is not recommended to be used for small text parts like
18869  subsubsections because LaTeX may then have problems to find a suitable
18870  placement.
18871 \end_layout
18872
18873 \begin_layout Standard
18874 \begin_inset VSpace bigskip
18875 \end_inset
18876
18877 In some cases it is required to have all figures/tables at the end of the
18878  document.
18879  For this purpose the LaTeX-package 
18880 \series bold
18881 endf\SpecialChar \textcompwordmark{}
18882 loat
18883 \series default
18884
18885 \begin_inset LatexCommand index
18886 name "LaTeX-packages ! endfloat"
18887
18888 \end_inset
18889
18890  was developed.
18891  It puts all figure and table floats at the end of the document into own
18892  sections.
18893  At the original float position a text hint like 
18894 \begin_inset Quotes eld
18895 \end_inset
18896
18897
18898 \family sans
18899 [Figure\InsetSpace ~
18900 3.2 about here.]
18901 \family default
18902
18903 \begin_inset Quotes erd
18904 \end_inset
18905
18906  is inserted.
18907  The endfloat-package is loaded in the preamble with the line
18908 \end_layout
18909
18910 \begin_layout Standard
18911
18912 \series bold
18913
18914 \backslash
18915 usepackage[options]{endf\SpecialChar \textcompwordmark{}
18916 loat}
18917 \end_layout
18918
18919 \begin_layout Standard
18920 There are various package options to format the created figure/table sections.
18921  For more information we refer to the 
18922 \series bold
18923 endf\SpecialChar \textcompwordmark{}
18924 loat
18925 \series default
18926  documentation 
18927 \begin_inset LatexCommand cite
18928 key "endfloat"
18929
18930 \end_inset
18931
18932 .
18933 \newline
18934
18935 \begin_inset Note Greyedout
18936 status open
18937
18938 \begin_layout Standard
18939
18940 \series bold
18941 Note: endf\SpecialChar \textcompwordmark{}
18942 loat
18943 \series default
18944  doesn't provide an automatic translation for the text hint, you have to
18945  do this manually, see section\InsetSpace ~
18946 4 in 
18947 \begin_inset LatexCommand cite
18948 key "endfloat"
18949
18950 \end_inset
18951
18952 .
18953 \end_layout
18954
18955 \end_inset
18956
18957
18958 \newline
18959
18960 \begin_inset Note Greyedout
18961 status open
18962
18963 \begin_layout Standard
18964
18965 \series bold
18966 Note:
18967 \series default
18968  There is currently a bug in 
18969 \series bold
18970 endf\SpecialChar \textcompwordmark{}
18971 loat
18972 \series default
18973  when the caption contains a German 
18974 \begin_inset Quotes eld
18975 \end_inset
18976
18977 ß
18978 \begin_inset Quotes erd
18979 \end_inset
18980
18981 .
18982  Use in this case the command 
18983 \begin_inset Quotes eld
18984 \end_inset
18985
18986
18987 \series bold
18988
18989 \backslash
18990 ss
18991 \series default
18992
18993 \begin_inset Quotes erd
18994 \end_inset
18995
18996  in ERT instead of 
18997 \begin_inset Quotes eld
18998 \end_inset
18999
19000 ß
19001 \begin_inset Quotes erd
19002 \end_inset
19003
19004 .
19005 \end_layout
19006
19007 \end_inset
19008
19009
19010 \end_layout
19011
19012 \begin_layout Standard
19013 \begin_inset VSpace bigskip
19014 \end_inset
19015
19016 For more details about float placements, have a look at LaTeX books, 
19017 \begin_inset LatexCommand cite
19018 key "latexcompanion,latexguide,latexbook"
19019
19020 \end_inset
19021
19022 .
19023 \end_layout
19024
19025 \begin_layout Section
19026 Rotated Floats
19027 \begin_inset LatexCommand label
19028 name "sec:Rotated-Floats"
19029
19030 \end_inset
19031
19032
19033 \begin_inset LatexCommand index
19034 name "Floats ! Rotating"
19035
19036 \end_inset
19037
19038
19039 \end_layout
19040
19041 \begin_layout Standard
19042 Especially for wide tables you might have floats rotated.
19043  To rotate a whole float including the caption, right-click on the float-box
19044  and use the option 
19045 \family sans
19046 Rotate\InsetSpace ~
19047 sideways
19048 \family default
19049 .
19050 \end_layout
19051
19052 \begin_layout Standard
19053 Rotated floats are always placed on its own page (or column, when you have
19054  a two-column document).
19055  They are normally rotated so that you can read them from the outside margin
19056  -- to the left on even pages, to the right on odd pages.
19057 \end_layout
19058
19059 \begin_layout Standard
19060 Referencing rotated floats is the same like for normal floats, the caption
19061  format is also the same: Table\InsetSpace ~
19062
19063 \begin_inset LatexCommand ref
19064 reference "tab:Rotated-table"
19065
19066 \end_inset
19067
19068  is an example of a rotated table float.
19069 \end_layout
19070
19071 \begin_layout Standard
19072 \begin_inset Note Greyedout
19073 status open
19074
19075 \begin_layout Standard
19076
19077 \series bold
19078 Note:
19079 \series default
19080  Not all DVI-viewers are able to display rotated floats.
19081 \end_layout
19082
19083 \end_inset
19084
19085
19086 \end_layout
19087
19088 \begin_layout Standard
19089 \begin_inset Float table
19090 wide false
19091 sideways true
19092 status open
19093
19094 \begin_layout Standard
19095 \begin_inset Caption
19096
19097 \begin_layout Standard
19098 \begin_inset LatexCommand label
19099 name "tab:Rotated-table"
19100
19101 \end_inset
19102
19103  Rotated table
19104 \end_layout
19105
19106 \end_inset
19107
19108
19109 \end_layout
19110
19111 \begin_layout Standard
19112 \align center
19113 \begin_inset Tabular
19114 <lyxtabular version="3" rows="1" columns="5">
19115 <features>
19116 <column alignment="center" valignment="top" leftline="true" width="0">
19117 <column alignment="center" valignment="top" leftline="true" width="0">
19118 <column alignment="center" valignment="top" leftline="true" width="0">
19119 <column alignment="center" valignment="top" leftline="true" width="0">
19120 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19121 <row topline="true" bottomline="true">
19122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19123 \begin_inset Text
19124
19125 \begin_layout Standard
19126 test
19127 \end_layout
19128
19129 \end_inset
19130 </cell>
19131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19132 \begin_inset Text
19133
19134 \begin_layout Standard
19135 b
19136 \end_layout
19137
19138 \end_inset
19139 </cell>
19140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19141 \begin_inset Text
19142
19143 \begin_layout Standard
19144 c
19145 \end_layout
19146
19147 \end_inset
19148 </cell>
19149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19150 \begin_inset Text
19151
19152 \begin_layout Standard
19153 d
19154 \end_layout
19155
19156 \end_inset
19157 </cell>
19158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19159 \begin_inset Text
19160
19161 \begin_layout Standard
19162 e
19163 \end_layout
19164
19165 \end_inset
19166 </cell>
19167 </row>
19168 </lyxtabular>
19169
19170 \end_inset
19171
19172
19173 \end_layout
19174
19175 \end_inset
19176
19177
19178 \end_layout
19179
19180 \begin_layout Section
19181 Caption Formatting
19182 \begin_inset LatexCommand index
19183 name "Caption ! Formatting"
19184
19185 \end_inset
19186
19187
19188 \begin_inset LatexCommand index
19189 name "Floats ! Caption Formatting"
19190
19191 \end_inset
19192
19193
19194 \begin_inset LatexCommand index
19195 name "LaTeX-packages ! caption"
19196
19197 \end_inset
19198
19199
19200 \begin_inset LatexCommand label
19201 name "sec:Caption-Formatting"
19202
19203 \end_inset
19204
19205
19206 \end_layout
19207
19208 \begin_layout Standard
19209 The 
19210 \family sans
19211 Caption
19212 \family default
19213  environment is the default paragraph environment for 
19214 \family sans
19215 Floats
19216 \family default
19217 .
19218  On the LyX screen captions appear as label, e.\InsetSpace \thinspace{}
19219 g.\InsetSpace ~
19220
19221 \begin_inset Quotes eld
19222 \end_inset
19223
19224
19225 \family sans
19226 Figure #:
19227 \family default
19228
19229 \begin_inset Quotes erd
19230 \end_inset
19231
19232  followed by the caption text.
19233  The number sign 
19234 \begin_inset Quotes eld
19235 \end_inset
19236
19237 #
19238 \begin_inset Quotes erd
19239 \end_inset
19240
19241  is substituted in the printed output by the actual reference number.
19242  By default the label and the number are in the same font as the caption
19243  text and a colon follows the number to divide then label from the text.
19244  This caption format is not suitable for all document formats.
19245  
19246 \end_layout
19247
19248 \begin_layout Standard
19249 To change the default caption format, load the LaTeX-package 
19250 \series bold
19251 caption
19252 \series default
19253
19254 \begin_inset LatexCommand index
19255 name "LaTeX-packages ! caption"
19256
19257 \end_inset
19258
19259  in the document preamble with this line:
19260 \end_layout
19261
19262 \begin_layout Standard
19263
19264 \series bold
19265
19266 \backslash
19267 usepackage[format definition]{caption}
19268 \end_layout
19269
19270 \begin_layout Standard
19271 To have for example the label and the number in sans-serif bold font and
19272  the table captions always above the table like in this document, use the
19273  following command:
19274 \end_layout
19275
19276 \begin_layout Standard
19277
19278 \series bold
19279
19280 \backslash
19281 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19282 \end_layout
19283
19284 \begin_layout Standard
19285 You can also define different caption formats for the different float types.
19286  In this case load the 
19287 \series bold
19288 caption
19289 \series default
19290  package without format specific options and define the different formats
19291  with the help of the command
19292 \end_layout
19293
19294 \begin_layout Standard
19295
19296 \series bold
19297
19298 \backslash
19299 captionsetup[float type]{format definition}
19300 \end_layout
19301
19302 \begin_layout Standard
19303 in the document preamble.
19304  For example the caption formats of Figure\InsetSpace ~
19305
19306 \begin_inset LatexCommand ref
19307 reference "fig:This-is-an-fig"
19308
19309 \end_inset
19310
19311  and Table\InsetSpace ~
19312
19313 \begin_inset LatexCommand ref
19314 reference "tab:This-is-an-tab"
19315
19316 \end_inset
19317
19318  can be created using these commands in the document preamble:
19319 \end_layout
19320
19321 \begin_layout Standard
19322
19323 \series bold
19324
19325 \backslash
19326 usepackage[tableposition=top]{caption}
19327 \series default
19328
19329 \newline
19330
19331 \series bold
19332
19333 \backslash
19334 captionsetup[f\SpecialChar \textcompwordmark{}
19335 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19336 \newline
19337
19338 \begin_inset ERT
19339 status collapsed
19340
19341 \begin_layout Standard
19342
19343
19344 \backslash
19345 hphantom{
19346 \backslash
19347
19348 \backslash
19349 captionsetup[figure]
19350 \backslash
19351 {}
19352 \end_layout
19353
19354 \end_inset
19355
19356  labelsep=period}
19357 \newline
19358
19359 \backslash
19360 captionsetup[table]{labelfont={bf,sf}}
19361 \end_layout
19362
19363 \begin_layout Standard
19364 For more information about the package 
19365 \series bold
19366 caption
19367 \series default
19368  we refer to its documentation 
19369 \begin_inset LatexCommand cite
19370 key "caption,caption-de"
19371
19372 \end_inset
19373
19374 .
19375 \end_layout
19376
19377 \begin_layout Standard
19378 \begin_inset VSpace bigskip
19379 \end_inset
19380
19381 If you are using a 
19382 \series bold
19383 koma-script
19384 \series default
19385
19386 \begin_inset LatexCommand index
19387 name "LaTeX-packages ! koma-script"
19388
19389 \end_inset
19390
19391  document class (
19392 \family sans
19393 article (koma-script)
19394 \family default
19395
19396 \family sans
19397 book (koma-script)
19398 \family default
19399
19400 \family sans
19401 letter (koma-script)
19402 \family default
19403 , or 
19404 \family sans
19405 report (koma-script)
19406 \family default
19407 \InsetSpace \thinspace{}
19408 ), you can alternatively to the 
19409 \series bold
19410 caption
19411 \series default
19412  package use 
19413 \series bold
19414 koma-script
19415 \series default
19416 's built-in command 
19417 \series bold
19418
19419 \backslash
19420 setkomafont
19421 \series default
19422 .
19423  For example, to have the caption label in bold, add this command to your
19424  document preamble:
19425 \end_layout
19426
19427 \begin_layout Standard
19428
19429 \series bold
19430
19431 \backslash
19432 setkomafont{captionlabel}{
19433 \backslash
19434 bfseries}
19435 \end_layout
19436
19437 \begin_layout Standard
19438 For more information about 
19439 \series bold
19440
19441 \backslash
19442 setkomafont
19443 \series default
19444  we refer to the 
19445 \series bold
19446 koma-script
19447 \series default
19448  documentation 
19449 \begin_inset LatexCommand cite
19450 key "koma-script,koma-script-de"
19451
19452 \end_inset
19453
19454 .
19455 \end_layout
19456
19457 \begin_layout Standard
19458 \begin_inset ERT
19459 status collapsed
19460
19461 \begin_layout Standard
19462
19463
19464 \backslash
19465 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19466 }
19467 \end_layout
19468
19469 \end_inset
19470
19471
19472 \begin_inset Note Note
19473 status open
19474
19475 \begin_layout Standard
19476 The caption format is changed only for this example.
19477 \end_layout
19478
19479 \end_inset
19480
19481
19482 \end_layout
19483
19484 \begin_layout Standard
19485 \begin_inset Float figure
19486 placement !p
19487 wide false
19488 sideways false
19489 status open
19490
19491 \begin_layout Standard
19492 \align center
19493 \begin_inset Graphics
19494         filename mobius.eps
19495         lyxscale 50
19496         scale 50
19497
19498 \end_inset
19499
19500
19501 \end_layout
19502
19503 \begin_layout Standard
19504 \begin_inset Caption
19505
19506 \begin_layout Standard
19507 \begin_inset LatexCommand label
19508 name "fig:This-is-an-fig"
19509
19510 \end_inset
19511
19512 This is an example figure caption that is longer than one line to show the
19513  different caption format.
19514  Here a self-defined caption format is used.
19515 \end_layout
19516
19517 \end_inset
19518
19519
19520 \end_layout
19521
19522 \end_inset
19523
19524
19525 \end_layout
19526
19527 \begin_layout Standard
19528 \begin_inset ERT
19529 status collapsed
19530
19531 \begin_layout Standard
19532
19533
19534 \backslash
19535 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19536 on}
19537 \end_layout
19538
19539 \end_inset
19540
19541
19542 \end_layout
19543
19544 \begin_layout Standard
19545 \begin_inset Float table
19546 placement !p
19547 wide false
19548 sideways false
19549 status open
19550
19551 \begin_layout Standard
19552 \begin_inset Caption
19553
19554 \begin_layout Standard
19555 \begin_inset LatexCommand label
19556 name "tab:This-is-an-tab"
19557
19558 \end_inset
19559
19560 This is an example table caption that is longer than one line to show the
19561  different caption format.
19562  Here the standard caption format for tables in this document is used.
19563 \end_layout
19564
19565 \end_inset
19566
19567
19568 \end_layout
19569
19570 \begin_layout Standard
19571 \align center
19572 \begin_inset Tabular
19573 <lyxtabular version="3" rows="1" columns="5">
19574 <features>
19575 <column alignment="center" valignment="top" leftline="true" width="0">
19576 <column alignment="center" valignment="top" leftline="true" width="0">
19577 <column alignment="center" valignment="top" leftline="true" width="0">
19578 <column alignment="center" valignment="top" leftline="true" width="0">
19579 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19580 <row topline="true" bottomline="true">
19581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19582 \begin_inset Text
19583
19584 \begin_layout Standard
19585 a
19586 \end_layout
19587
19588 \end_inset
19589 </cell>
19590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19591 \begin_inset Text
19592
19593 \begin_layout Standard
19594 b
19595 \end_layout
19596
19597 \end_inset
19598 </cell>
19599 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19600 \begin_inset Text
19601
19602 \begin_layout Standard
19603 c
19604 \end_layout
19605
19606 \end_inset
19607 </cell>
19608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19609 \begin_inset Text
19610
19611 \begin_layout Standard
19612 d
19613 \end_layout
19614
19615 \end_inset
19616 </cell>
19617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19618 \begin_inset Text
19619
19620 \begin_layout Standard
19621 e
19622 \end_layout
19623
19624 \end_inset
19625 </cell>
19626 </row>
19627 </lyxtabular>
19628
19629 \end_inset
19630
19631
19632 \end_layout
19633
19634 \end_inset
19635
19636
19637 \end_layout
19638
19639 \begin_layout Section
19640 Caption Placement
19641 \begin_inset LatexCommand index
19642 name "Caption ! Placement"
19643
19644 \end_inset
19645
19646
19647 \begin_inset LatexCommand index
19648 name "Floats ! Caption Placement"
19649
19650 \end_inset
19651
19652
19653 \begin_inset LatexCommand label
19654 name "sec:Caption-Placement"
19655
19656 \end_inset
19657
19658
19659 \end_layout
19660
19661 \begin_layout Standard
19662 The common caption placement rule is:
19663 \end_layout
19664
19665 \begin_layout Description
19666 Figure: Caption is set below the figure
19667 \end_layout
19668
19669 \begin_layout Description
19670 Table: Caption is set above the table
19671 \end_layout
19672
19673 \begin_layout Standard
19674 Having the caption above the table is unfortunately not supported in LaTeX's
19675  standard classes.
19676  That means if you are using the document classes 
19677 \family sans
19678 article
19679 \family default
19680
19681 \family sans
19682 book
19683 \family default
19684
19685 \family sans
19686 letter
19687 \family default
19688 , or 
19689 \family sans
19690 report
19691 \family default
19692  there will be no space between the caption and the table.
19693  To insert the needed space, add the following option to the load command
19694  of the LaTeX-package 
19695 \series bold
19696 caption
19697 \series default
19698  in your document preamble
19699 \begin_inset Foot
19700 status collapsed
19701
19702 \begin_layout Standard
19703 See section\InsetSpace ~
19704
19705 \begin_inset LatexCommand ref
19706 reference "sec:Caption-Formatting"
19707
19708 \end_inset
19709
19710  for more information of the package 
19711 \series bold
19712 caption
19713 \series default
19714 .
19715 \end_layout
19716
19717 \end_inset
19718
19719 :
19720 \end_layout
19721
19722 \begin_layout Standard
19723
19724 \series bold
19725 tableposition=top
19726 \end_layout
19727
19728 \begin_layout Standard
19729 If you are using a 
19730 \series bold
19731 koma-script
19732 \series default
19733
19734 \begin_inset LatexCommand index
19735 name "LaTeX-packages ! koma-script"
19736
19737 \end_inset
19738
19739  document class (
19740 \family sans
19741 article (koma-script)
19742 \family default
19743
19744 \family sans
19745 book (koma-script)
19746 \family default
19747
19748 \family sans
19749 letter (koma-script)
19750 \family default
19751 , or 
19752 \family sans
19753 report (koma-script)
19754 \family default
19755 \InsetSpace \thinspace{}
19756 ), you can alternatively to the 
19757 \series bold
19758 caption
19759 \series default
19760  package set the document class option 
19761 \series bold
19762 tablecaptionabove
19763 \series default
19764 , or you can use the environment 
19765 \family sans
19766 caption\InsetSpace ~
19767 above
19768 \family default
19769  instead of the 
19770 \family sans
19771 caption
19772 \family default
19773  environment.
19774 \end_layout
19775
19776 \begin_layout Standard
19777 \begin_inset VSpace bigskip
19778 \end_inset
19779
19780 It is also possible to set the caption beside a figure or table.
19781  To get this the LaTeX-package 
19782 \series bold
19783 sidecap
19784 \series default
19785
19786 \begin_inset LatexCommand index
19787 name "LaTeX-packages ! sidecap"
19788
19789 \end_inset
19790
19791  has to be loaded in the document preamble with the line
19792 \end_layout
19793
19794 \begin_layout Standard
19795
19796 \series bold
19797
19798 \backslash
19799 usepackage[option]{sidecap}
19800 \end_layout
19801
19802 \begin_layout Standard
19803 If you set no option, the caption is placed on the side of the outer page
19804  margin -- to the right on odd pages, to the left on even pages.
19805  You can change the placement to inner margin with the option 
19806 \series bold
19807 innercaption
19808 \series default
19809 .
19810  To force the placement always to the right or left, use the option 
19811 \series bold
19812 rightcaption
19813 \series default
19814  or 
19815 \series bold
19816 leftcaption
19817 \series default
19818 , respectively.
19819 \end_layout
19820
19821 \begin_layout Standard
19822 To place in LyX the caption of a float on the side, it is necessary to add
19823  these commands to the document preamble:
19824 \end_layout
19825
19826 \begin_layout Standard
19827
19828 \lyxline
19829
19830 \end_layout
19831
19832 \begin_layout Standard
19833
19834 \series bold
19835
19836 \backslash
19837 newcommand{
19838 \backslash
19839 TabBesBeg}{%
19840 \newline
19841
19842 \begin_inset ERT
19843 status collapsed
19844
19845 \begin_layout Standard
19846
19847
19848 \backslash
19849 hphantom{ }
19850 \end_layout
19851
19852 \end_inset
19853
19854
19855 \backslash
19856 let
19857 \backslash
19858 MyTable
19859 \backslash
19860 table
19861 \newline
19862
19863 \begin_inset ERT
19864 status collapsed
19865
19866 \begin_layout Standard
19867
19868
19869 \backslash
19870 hphantom{ }
19871 \end_layout
19872
19873 \end_inset
19874
19875
19876 \backslash
19877 let
19878 \backslash
19879 MyEndtable
19880 \backslash
19881 endtable
19882 \newline
19883
19884 \begin_inset ERT
19885 status collapsed
19886
19887 \begin_layout Standard
19888
19889
19890 \backslash
19891 hphantom{ }
19892 \end_layout
19893
19894 \end_inset
19895
19896
19897 \backslash
19898 renewenvironment{table}{
19899 \backslash
19900 begin{SCtable}}{
19901 \backslash
19902 end{SCtable}}}
19903 \end_layout
19904
19905 \begin_layout Standard
19906
19907 \series bold
19908
19909 \backslash
19910 newcommand{
19911 \backslash
19912 TabBesEnd}{%
19913 \newline
19914
19915 \begin_inset ERT
19916 status collapsed
19917
19918 \begin_layout Standard
19919
19920
19921 \backslash
19922 hphantom{ }
19923 \end_layout
19924
19925 \end_inset
19926
19927
19928 \backslash
19929 let
19930 \backslash
19931 table
19932 \backslash
19933 MyTable
19934 \newline
19935
19936 \begin_inset ERT
19937 status collapsed
19938
19939 \begin_layout Standard
19940
19941
19942 \backslash
19943 hphantom{ }
19944 \end_layout
19945
19946 \end_inset
19947
19948
19949 \backslash
19950 let
19951 \backslash
19952 endtable
19953 \backslash
19954 MyEndtable
19955 \end_layout
19956
19957 \begin_layout Standard
19958
19959 \series bold
19960
19961 \backslash
19962 newcommand{
19963 \backslash
19964 FigBesBeg}{%
19965 \newline
19966
19967 \begin_inset ERT
19968 status collapsed
19969
19970 \begin_layout Standard
19971
19972
19973 \backslash
19974 hphantom{ }
19975 \end_layout
19976
19977 \end_inset
19978
19979
19980 \backslash
19981 let
19982 \backslash
19983 MyFigure
19984 \backslash
19985 f\SpecialChar \textcompwordmark{}
19986 igure
19987 \newline
19988
19989 \begin_inset ERT
19990 status collapsed
19991
19992 \begin_layout Standard
19993
19994
19995 \backslash
19996 hphantom{ }
19997 \end_layout
19998
19999 \end_inset
20000
20001
20002 \backslash
20003 let
20004 \backslash
20005 MyEndf\SpecialChar \textcompwordmark{}
20006 igure
20007 \backslash
20008 endf\SpecialChar \textcompwordmark{}
20009 igure
20010 \newline
20011
20012 \begin_inset ERT
20013 status collapsed
20014
20015 \begin_layout Standard
20016
20017
20018 \backslash
20019 hphantom{ }
20020 \end_layout
20021
20022 \end_inset
20023
20024
20025 \backslash
20026 renewenvironment{f\SpecialChar \textcompwordmark{}
20027 igure}{
20028 \backslash
20029 begin{SCf\SpecialChar \textcompwordmark{}
20030 igure}}{
20031 \backslash
20032 end{SCf\SpecialChar \textcompwordmark{}
20033 igure}}}
20034 \end_layout
20035
20036 \begin_layout Standard
20037
20038 \series bold
20039
20040 \backslash
20041 newcommand{
20042 \backslash
20043 FigBesEnd}{%
20044 \newline
20045
20046 \begin_inset ERT
20047 status collapsed
20048
20049 \begin_layout Standard
20050
20051
20052 \backslash
20053 hphantom{ }
20054 \end_layout
20055
20056 \end_inset
20057
20058
20059 \backslash
20060 let
20061 \backslash
20062 f\SpecialChar \textcompwordmark{}
20063 igure
20064 \backslash
20065 MyFigure
20066 \newline
20067
20068 \begin_inset ERT
20069 status collapsed
20070
20071 \begin_layout Standard
20072
20073
20074 \backslash
20075 hphantom{ }
20076 \end_layout
20077
20078 \end_inset
20079
20080
20081 \backslash
20082 let
20083 \backslash
20084 endf\SpecialChar \textcompwordmark{}
20085 igure
20086 \backslash
20087 MyEndf\SpecialChar \textcompwordmark{}
20088 igure}
20089 \end_layout
20090
20091 \begin_layout Standard
20092
20093 \lyxline
20094
20095 \end_layout
20096
20097 \begin_layout Standard
20098 The commands allow you to redefine the floats so that the caption is set
20099  on the side.
20100  For figure floats use the command
20101 \end_layout
20102
20103 \begin_layout Standard
20104
20105 \series bold
20106
20107 \backslash
20108 FigBesBeg
20109 \end_layout
20110
20111 \begin_layout Standard
20112 in ERT before the float.
20113  Behind the float insert the command
20114 \end_layout
20115
20116 \begin_layout Standard
20117
20118 \series bold
20119
20120 \backslash
20121 FigBesEnd
20122 \end_layout
20123
20124 \begin_layout Standard
20125 in ERT to get back to the original float definition.
20126 \end_layout
20127
20128 \begin_layout Standard
20129 For table floats use the corresponding commands
20130 \end_layout
20131
20132 \begin_layout Standard
20133
20134 \series bold
20135
20136 \backslash
20137 TabBesBeg
20138 \series default
20139  and 
20140 \series bold
20141
20142 \backslash
20143 TabBesEnd
20144 \end_layout
20145
20146 \begin_layout Standard
20147 Figure\InsetSpace ~
20148
20149 \begin_inset LatexCommand ref
20150 reference "fig:cap-beside-fig"
20151
20152 \end_inset
20153
20154  and Table\InsetSpace ~
20155
20156 \begin_inset LatexCommand ref
20157 reference "tab:cap-beside-tab"
20158
20159 \end_inset
20160
20161  are examples where the caption is set beside.
20162 \end_layout
20163
20164 \begin_layout Standard
20165 You can see in the examples that the caption text appears at the top of
20166  the floats for table floats and at the bottom for figure floats.
20167  To change this, you can use the command
20168 \end_layout
20169
20170 \begin_layout Standard
20171
20172 \series bold
20173
20174 \backslash
20175 sidecaptionvpos{float type}{placement}
20176 \end_layout
20177
20178 \begin_layout Standard
20179 in the document preamble or in ERT before the float.
20180  The float type is either 
20181 \family sans
20182 figure
20183 \family default
20184  or 
20185 \family sans
20186 table
20187 \family default
20188 , the placement can be 
20189 \begin_inset Quotes eld
20190 \end_inset
20191
20192
20193 \family sans
20194 t
20195 \family default
20196
20197 \begin_inset Quotes erd
20198 \end_inset
20199
20200  for top, 
20201 \begin_inset Quotes eld
20202 \end_inset
20203
20204
20205 \family sans
20206 c
20207 \family default
20208
20209 \begin_inset Quotes erd
20210 \end_inset
20211
20212  for center, or 
20213 \begin_inset Quotes eld
20214 \end_inset
20215
20216
20217 \family sans
20218 b
20219 \family default
20220
20221 \begin_inset Quotes erd
20222 \end_inset
20223
20224  for bottom.
20225  To have for example the caption of figure floats vertically centered, use
20226  the command
20227 \end_layout
20228
20229 \begin_layout Standard
20230
20231 \series bold
20232
20233 \backslash
20234 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20235 igure}{c}
20236 \end_layout
20237
20238 \begin_layout Standard
20239 This was used for Figure\InsetSpace ~
20240
20241 \begin_inset LatexCommand ref
20242 reference "fig:cap-beside-fig-2"
20243
20244 \end_inset
20245
20246 .
20247 \end_layout
20248
20249 \begin_layout Standard
20250 \begin_inset VSpace defskip
20251 \end_inset
20252
20253 For more information about the package 
20254 \series bold
20255 sidecap
20256 \series default
20257  we refer to its documentation 
20258 \begin_inset LatexCommand cite
20259 key "sidecap"
20260
20261 \end_inset
20262
20263 .
20264 \end_layout
20265
20266 \begin_layout Standard
20267 \begin_inset Note Greyedout
20268 status open
20269
20270 \begin_layout Standard
20271
20272 \series bold
20273 Note:
20274 \series default
20275  The LaTeX-package 
20276 \series bold
20277 hypcap
20278 \series default
20279
20280 \begin_inset LatexCommand index
20281 name "LaTeX-packages ! hypcap"
20282
20283 \end_inset
20284
20285 , described in section\InsetSpace ~
20286
20287 \begin_inset LatexCommand ref
20288 reference "sub:Reference-Position"
20289
20290 \end_inset
20291
20292 , has no effect on floats with the caption set beside.
20293 \end_layout
20294
20295 \end_inset
20296
20297
20298 \end_layout
20299
20300 \begin_layout Standard
20301 \begin_inset ERT
20302 status collapsed
20303
20304 \begin_layout Standard
20305
20306
20307 \backslash
20308 FigBesBeg 
20309 \end_layout
20310
20311 \end_inset
20312
20313
20314 \end_layout
20315
20316 \begin_layout Standard
20317 \begin_inset Float figure
20318 wide false
20319 sideways false
20320 status open
20321
20322 \begin_layout Standard
20323 \begin_inset Graphics
20324         filename escher-lsd.eps
20325         scale 75
20326
20327 \end_inset
20328
20329
20330 \end_layout
20331
20332 \begin_layout Standard
20333 \begin_inset Caption
20334
20335 \begin_layout Standard
20336 \begin_inset LatexCommand label
20337 name "fig:cap-beside-fig"
20338
20339 \end_inset
20340
20341 This is a caption beside a figure.
20342 \end_layout
20343
20344 \end_inset
20345
20346
20347 \end_layout
20348
20349 \end_inset
20350
20351
20352 \end_layout
20353
20354 \begin_layout Standard
20355 \begin_inset ERT
20356 status collapsed
20357
20358 \begin_layout Standard
20359
20360
20361 \backslash
20362 TabBesBeg 
20363 \end_layout
20364
20365 \end_inset
20366
20367
20368 \end_layout
20369
20370 \begin_layout Standard
20371 \begin_inset Float table
20372 wide false
20373 sideways false
20374 status open
20375
20376 \begin_layout Standard
20377 \begin_inset Caption
20378
20379 \begin_layout Standard
20380 \begin_inset LatexCommand label
20381 name "tab:cap-beside-tab"
20382
20383 \end_inset
20384
20385 This is a caption beside a table.
20386 \end_layout
20387
20388 \end_inset
20389
20390
20391 \end_layout
20392
20393 \begin_layout Standard
20394 \begin_inset Tabular
20395 <lyxtabular version="3" rows="4" columns="5">
20396 <features>
20397 <column alignment="center" valignment="top" leftline="true" width="0">
20398 <column alignment="center" valignment="top" leftline="true" width="0">
20399 <column alignment="center" valignment="top" leftline="true" width="0">
20400 <column alignment="center" valignment="top" leftline="true" width="0">
20401 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20402 <row topline="true">
20403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20404 \begin_inset Text
20405
20406 \begin_layout Standard
20407 a
20408 \end_layout
20409
20410 \end_inset
20411 </cell>
20412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20413 \begin_inset Text
20414
20415 \begin_layout Standard
20416
20417 \end_layout
20418
20419 \end_inset
20420 </cell>
20421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20422 \begin_inset Text
20423
20424 \begin_layout Standard
20425 b
20426 \end_layout
20427
20428 \end_inset
20429 </cell>
20430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20431 \begin_inset Text
20432
20433 \begin_layout Standard
20434
20435 \end_layout
20436
20437 \end_inset
20438 </cell>
20439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20440 \begin_inset Text
20441
20442 \begin_layout Standard
20443 c
20444 \end_layout
20445
20446 \end_inset
20447 </cell>
20448 </row>
20449 <row topline="true">
20450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20451 \begin_inset Text
20452
20453 \begin_layout Standard
20454
20455 \end_layout
20456
20457 \end_inset
20458 </cell>
20459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20460 \begin_inset Text
20461
20462 \begin_layout Standard
20463 d
20464 \end_layout
20465
20466 \end_inset
20467 </cell>
20468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20469 \begin_inset Text
20470
20471 \begin_layout Standard
20472
20473 \end_layout
20474
20475 \end_inset
20476 </cell>
20477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20478 \begin_inset Text
20479
20480 \begin_layout Standard
20481 e
20482 \end_layout
20483
20484 \end_inset
20485 </cell>
20486 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20487 \begin_inset Text
20488
20489 \begin_layout Standard
20490
20491 \end_layout
20492
20493 \end_inset
20494 </cell>
20495 </row>
20496 <row topline="true">
20497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20498 \begin_inset Text
20499
20500 \begin_layout Standard
20501 f
20502 \end_layout
20503
20504 \end_inset
20505 </cell>
20506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20507 \begin_inset Text
20508
20509 \begin_layout Standard
20510
20511 \end_layout
20512
20513 \end_inset
20514 </cell>
20515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20516 \begin_inset Text
20517
20518 \begin_layout Standard
20519 g
20520 \end_layout
20521
20522 \end_inset
20523 </cell>
20524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20525 \begin_inset Text
20526
20527 \begin_layout Standard
20528
20529 \end_layout
20530
20531 \end_inset
20532 </cell>
20533 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20534 \begin_inset Text
20535
20536 \begin_layout Standard
20537 h
20538 \end_layout
20539
20540 \end_inset
20541 </cell>
20542 </row>
20543 <row topline="true" bottomline="true">
20544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20545 \begin_inset Text
20546
20547 \begin_layout Standard
20548
20549 \end_layout
20550
20551 \end_inset
20552 </cell>
20553 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20554 \begin_inset Text
20555
20556 \begin_layout Standard
20557 i
20558 \end_layout
20559
20560 \end_inset
20561 </cell>
20562 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20563 \begin_inset Text
20564
20565 \begin_layout Standard
20566
20567 \end_layout
20568
20569 \end_inset
20570 </cell>
20571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20572 \begin_inset Text
20573
20574 \begin_layout Standard
20575 j
20576 \end_layout
20577
20578 \end_inset
20579 </cell>
20580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20581 \begin_inset Text
20582
20583 \begin_layout Standard
20584
20585 \end_layout
20586
20587 \end_inset
20588 </cell>
20589 </row>
20590 </lyxtabular>
20591
20592 \end_inset
20593
20594
20595 \end_layout
20596
20597 \end_inset
20598
20599
20600 \end_layout
20601
20602 \begin_layout Standard
20603 \begin_inset ERT
20604 status collapsed
20605
20606 \begin_layout Standard
20607
20608
20609 \backslash
20610 TabBesEnd
20611 \end_layout
20612
20613 \end_inset
20614
20615
20616 \end_layout
20617
20618 \begin_layout Standard
20619 \begin_inset ERT
20620 status collapsed
20621
20622 \begin_layout Standard
20623
20624
20625 \backslash
20626 sidecaptionvpos{figure}{c}
20627 \end_layout
20628
20629 \end_inset
20630
20631
20632 \begin_inset Float figure
20633 wide false
20634 sideways false
20635 status open
20636
20637 \begin_layout Standard
20638 \begin_inset Graphics
20639         filename escher-lsd.eps
20640         scale 75
20641
20642 \end_inset
20643
20644
20645 \end_layout
20646
20647 \begin_layout Standard
20648 \begin_inset Caption
20649
20650 \begin_layout Standard
20651 \begin_inset LatexCommand label
20652 name "fig:cap-beside-fig-2"
20653
20654 \end_inset
20655
20656 This is a vertically centered caption beside a figure.
20657 \end_layout
20658
20659 \end_inset
20660
20661
20662 \end_layout
20663
20664 \end_inset
20665
20666
20667 \end_layout
20668
20669 \begin_layout Standard
20670 \begin_inset ERT
20671 status collapsed
20672
20673 \begin_layout Standard
20674
20675
20676 \backslash
20677 FigBesEnd
20678 \end_layout
20679
20680 \end_inset
20681
20682
20683 \end_layout
20684
20685 \begin_layout Section
20686 Listings of Floats
20687 \begin_inset LatexCommand label
20688 name "sec:Listings-of-Floats"
20689
20690 \end_inset
20691
20692
20693 \begin_inset LatexCommand index
20694 name "Floats ! Listings"
20695
20696 \end_inset
20697
20698
20699 \end_layout
20700
20701 \begin_layout Standard
20702 Similar to the the table of contents where the sections of the document
20703  are listed, there are listings for all float types, like the figures of
20704  the documents.
20705  You can insert them via the 
20706 \family sans
20707 Insert\SpecialChar \menuseparator
20708 List\InsetSpace ~
20709 /\InsetSpace ~
20710 TOC
20711 \family default
20712  sub menus.
20713 \end_layout
20714
20715 \begin_layout Standard
20716 The list entries are the float captions or its short title, the float number,
20717  and the page number where they appear in the document.
20718 \end_layout
20719
20720 \begin_layout Standard
20721 You can find the list of figures and tables at the end of this document.
20722 \end_layout
20723
20724 \begin_layout Chapter
20725 Notes
20726 \end_layout
20727
20728 \begin_layout Section
20729 \begin_inset ERT
20730 status collapsed
20731
20732 \begin_layout Standard
20733
20734
20735 \backslash
20736 texorpdfstring{
20737 \end_layout
20738
20739 \end_inset
20740
20741 LyX
20742 \begin_inset ERT
20743 status collapsed
20744
20745 \begin_layout Standard
20746
20747 }{LyX}
20748 \end_layout
20749
20750 \end_inset
20751
20752  Notes
20753 \begin_inset LatexCommand label
20754 name "sec:LyX-Notes"
20755
20756 \end_inset
20757
20758
20759 \begin_inset LatexCommand index
20760 name "Notes ! LyX Notes"
20761
20762 \end_inset
20763
20764
20765 \begin_inset Note Note
20766 status collapsed
20767
20768 \begin_layout Standard
20769 The command 
20770 \backslash
20771 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
20772  are displayed wrongly in PDF-bookmarks.
20773  For more information about this, have a look at 
20774 \begin_inset LatexCommand cite
20775 key "hyperref"
20776
20777 \end_inset
20778
20779 .
20780 \end_layout
20781
20782 \end_inset
20783
20784
20785 \end_layout
20786
20787 \begin_layout Standard
20788 Notes are inserted with the toolbar button 
20789 \begin_inset Graphics
20790         filename ../images/note-insert.xpm
20791         scale 85
20792
20793 \end_inset
20794
20795  or the menu 
20796 \family sans
20797 Insert\SpecialChar \menuseparator
20798 Note
20799 \family default
20800 .
20801  There are three types of notes:
20802 \end_layout
20803
20804 \begin_layout Description
20805 LyX\InsetSpace ~
20806 Note This note type is for internal notes that won't appear in the output.
20807  Its note-box looks like this:
20808 \newline
20809
20810 \newline
20811
20812 \begin_inset Graphics
20813         filename ../clipart/LyXNoteImageQt4.png
20814         display none
20815         scale 85
20816
20817 \end_inset
20818
20819  
20820 \begin_inset Note Note
20821 status open
20822
20823 \begin_layout Standard
20824 This is text in a note box that doesn't appear in the output.
20825 \end_layout
20826
20827 \end_inset
20828
20829
20830 \end_layout
20831
20832 \begin_layout Description
20833 Comment This note also doesn't appear in the output but it appears as LaTeX-comm
20834 ent, when you export the document to LaTeX via the menu 
20835 \family sans
20836 File\SpecialChar \menuseparator
20837 Export\SpecialChar \menuseparator
20838 LaTeX (pdflatex) / LaTeX (plain)
20839 \family default
20840 .
20841  Its note-box looks like this:
20842 \newline
20843
20844 \newline
20845
20846 \begin_inset Graphics
20847         filename ../clipart/CommentNoteImageQt4.png
20848         display none
20849         scale 85
20850
20851 \end_inset
20852
20853  
20854 \begin_inset Note Comment
20855 status open
20856
20857 \begin_layout Standard
20858 This is text in a note box that only appears as comment in LaTeX-files.
20859 \end_layout
20860
20861 \end_inset
20862
20863
20864 \end_layout
20865
20866 \begin_layout Description
20867 Greyed\InsetSpace ~
20868 Out This note will appear in the output as grey text.
20869  Its note-box looks like this:
20870 \newline
20871
20872 \newline
20873
20874 \begin_inset Graphics
20875         filename ../clipart/GreyedOutNoteImageQt4.png
20876         display none
20877         scale 85
20878
20879 \end_inset
20880
20881
20882 \newline
20883
20884 \begin_inset ERT
20885 status collapsed
20886
20887 \begin_layout Standard
20888
20889
20890 \backslash
20891 renewenvironment{lyxgreyedout}
20892 \end_layout
20893
20894 \begin_layout Standard
20895
20896 {
20897 \backslash
20898 textcolor[gray]{0.8}
20899 \backslash
20900 bgroup}{
20901 \backslash
20902 egroup}
20903 \end_layout
20904
20905 \end_inset
20906
20907
20908 \begin_inset Note Greyedout
20909 status open
20910
20911 \begin_layout Standard
20912 This is text
20913 \begin_inset Foot
20914 status open
20915
20916 \begin_layout Standard
20917 This is an example footnote within a greyed out note.
20918 \end_layout
20919
20920 \end_inset
20921
20922  of a comment that appears in the output as grey text.
20923 \end_layout
20924
20925 \end_inset
20926
20927
20928 \begin_inset ERT
20929 status collapsed
20930
20931 \begin_layout Standard
20932
20933
20934 \backslash
20935 renewenvironment{lyxgreyedout}
20936 \end_layout
20937
20938 \begin_layout Standard
20939
20940 {
20941 \backslash
20942 textcolor{blue}
20943 \backslash
20944 bgroup}{
20945 \backslash
20946 egroup}
20947 \end_layout
20948
20949 \end_inset
20950
20951
20952 \begin_inset Note Note
20953 status collapsed
20954
20955 \begin_layout Standard
20956 The greyed out note is here redefined to show it with the original LyX definitio
20957 n because greyed out notes are redefined in the preamble of this document,
20958  as described below, to have blue text.
20959 \end_layout
20960
20961 \end_inset
20962
20963
20964 \newline
20965
20966 \newline
20967 As you can see in the example, the first line of greyed out notes is a bit
20968  indented and greyed out notes can have footnotes.
20969 \end_layout
20970
20971 \begin_layout Description
20972 Framed This note will appear in the output as framed text.
20973  Its note-box looks like this:
20974 \newline
20975
20976 \newline
20977
20978 \begin_inset Graphics
20979         filename ../clipart/FramedNoteImageQt4.png
20980         display none
20981         scale 85
20982
20983 \end_inset
20984
20985  
20986 \begin_inset Note Framed
20987 status open
20988
20989 \begin_layout Standard
20990 This is text in a note box that appears framed in the output.
20991 \end_layout
20992
20993 \end_inset
20994
20995  In contrary to framed boxes
20996 \begin_inset Foot
20997 status collapsed
20998
20999 \begin_layout Standard
21000 Framed boxes are described in section\InsetSpace ~
21001
21002 \begin_inset LatexCommand ref
21003 reference "sec:Framed-Boxes"
21004
21005 \end_inset
21006
21007 .
21008 \end_layout
21009
21010 \end_inset
21011
21012  the frame uses always the whole text width and the note is set into its
21013  own paragraph.
21014 \end_layout
21015
21016 \begin_layout Description
21017 Shaded This note will appear in the output with red background color.
21018  Its note box looks like this:
21019 \newline
21020
21021 \newline
21022
21023 \begin_inset Graphics
21024         filename ../clipart/ShadedNoteImageQt4.png
21025         display none
21026         scale 85
21027
21028 \end_inset
21029
21030
21031 \begin_inset Note Shaded
21032 status open
21033
21034 \begin_layout Standard
21035 This text in a note box appears in the output with red background.
21036 \end_layout
21037
21038 \end_inset
21039
21040 In contrary to colored boxes
21041 \begin_inset Foot
21042 status collapsed
21043
21044 \begin_layout Standard
21045 Colored boxes are described in section\InsetSpace ~
21046
21047 \begin_inset LatexCommand ref
21048 reference "sec:Colored-Boxes"
21049
21050 \end_inset
21051
21052 .
21053 \end_layout
21054
21055 \end_inset
21056
21057  the note uses always the whole text width and the note is set into its
21058  own paragraph.
21059 \end_layout
21060
21061 \begin_layout Standard
21062 \begin_inset VSpace bigskip
21063 \end_inset
21064
21065 When you use the toolbar button to insert notes, a 
21066 \family sans
21067 LyX\InsetSpace ~
21068 Note
21069 \family default
21070  is inserted.
21071  You can switch between the three note types by right-clicking on the note-box.
21072  
21073 \family roman
21074 \series medium
21075 \bar no
21076 If you want to turn existing text into a note, mark it and click on the
21077  note 
21078 \family default
21079 \series default
21080 \bar default
21081 toolbar 
21082 \family roman
21083 \series medium
21084 \bar no
21085 button
21086 \family default
21087 \series default
21088 \bar default
21089 .
21090 \end_layout
21091
21092 \begin_layout Standard
21093 \begin_inset VSpace bigskip
21094 \end_inset
21095
21096 You can change the text color of the greyed out notes in the preamble with
21097  the following command:
21098 \end_layout
21099
21100 \begin_layout Standard
21101
21102 \series bold
21103
21104 \backslash
21105 renewenvironment{lyxgreyedout}
21106 \newline
21107
21108 \begin_inset ERT
21109 status collapsed
21110
21111 \begin_layout Standard
21112
21113
21114 \backslash
21115 hphantom{ }
21116 \end_layout
21117
21118 \end_inset
21119
21120 {
21121 \backslash
21122 textcolor{color}
21123 \backslash
21124 bgroup}{
21125 \backslash
21126 egroup}
21127 \end_layout
21128
21129 \begin_layout Standard
21130 The available colors and the method to define own colors is explained in
21131  section\InsetSpace ~
21132
21133 \begin_inset LatexCommand ref
21134 reference "sec:Colored-Tables"
21135
21136 \end_inset
21137
21138 .
21139 \end_layout
21140
21141 \begin_layout Standard
21142 Notes that appear in blue in this document are set using greyed out notes
21143  with blue text.
21144 \end_layout
21145
21146 \begin_layout Standard
21147 \begin_inset VSpace bigskip
21148 \end_inset
21149
21150
21151 \end_layout
21152
21153 \begin_layout Standard
21154 The text style of 
21155 \family sans
21156 Framed
21157 \family default
21158  and 
21159 \family sans
21160 Shaded
21161 \family default
21162  notes can be set in the 
21163 \family sans
21164 Text Style
21165 \family default
21166  dialog.
21167 \end_layout
21168
21169 \begin_layout Standard
21170 The default frame width for 
21171 \family sans
21172 Framed
21173 \family default
21174  notes is 0.4\InsetSpace \thinspace{}
21175 pt; it can be changed by changing the size 
21176 \series bold
21177
21178 \backslash
21179 FrameRule
21180 \series default
21181 .
21182  The default space between the note content and the frame is 9\InsetSpace \thinspace{}
21183 pt; it can
21184  be changed by changing the size 
21185 \series bold
21186
21187 \backslash
21188 FrameSep
21189 \series default
21190 .
21191  For example the frame appearance of the following 
21192 \family sans
21193 Framed
21194 \family default
21195  note is set with the ERT commands
21196 \end_layout
21197
21198 \begin_layout Standard
21199
21200 \series bold
21201
21202 \backslash
21203 FrameRule 5pt 
21204 \backslash
21205 FrameSep 0.5cm
21206 \end_layout
21207
21208 \begin_layout Standard
21209 \begin_inset ERT
21210 status collapsed
21211
21212 \begin_layout Standard
21213
21214
21215 \backslash
21216 FrameRule 5pt 
21217 \backslash
21218 FrameSep 0.5cm
21219 \end_layout
21220
21221 \end_inset
21222
21223
21224 \begin_inset Note Framed
21225 status open
21226
21227 \begin_layout Standard
21228 This is text in a 
21229 \family sans
21230 Framed
21231 \family default
21232  note.
21233 \end_layout
21234
21235 \end_inset
21236
21237
21238 \begin_inset ERT
21239 status collapsed
21240
21241 \begin_layout Standard
21242
21243
21244 \backslash
21245 FrameRule 0.4pt 
21246 \backslash
21247 FrameSep 9pt
21248 \end_layout
21249
21250 \end_inset
21251
21252
21253 \end_layout
21254
21255 \begin_layout Standard
21256 \begin_inset VSpace bigskip
21257 \end_inset
21258
21259
21260 \end_layout
21261
21262 \begin_layout Standard
21263 For 
21264 \family sans
21265 Shaded
21266 \family default
21267  notes the default space between the note content and the note border is
21268  3\InsetSpace \thinspace{}
21269 pt; it can be changed by changing the size 
21270 \series bold
21271
21272 \backslash
21273 fboxsep
21274 \series default
21275 .
21276 \newline
21277 The default background color red can be changed with the command 
21278 \series bold
21279
21280 \backslash
21281 def\SpecialChar \textcompwordmark{}
21282 inecolor{shadebox}
21283 \series default
21284 .
21285  The scheme of the 
21286 \series bold
21287
21288 \backslash
21289 def\SpecialChar \textcompwordmark{}
21290 inecolor
21291 \series default
21292  command is explained in section\InsetSpace ~
21293
21294 \begin_inset LatexCommand ref
21295 reference "sec:Colored-Tables"
21296
21297 \end_inset
21298
21299
21300 \begin_inset Foot
21301 status collapsed
21302
21303 \begin_layout Standard
21304 Note that 
21305 \series bold
21306
21307 \backslash
21308 def
21309 \series default
21310 \SpecialChar \textcompwordmark{}
21311
21312 \series bold
21313 inecolor
21314 \series default
21315  requires the LaTeX-package 
21316 \series bold
21317 color
21318 \series default
21319  in the preamble, see section\InsetSpace ~
21320
21321 \begin_inset LatexCommand ref
21322 reference "sec:Colored-Boxes"
21323
21324 \end_inset
21325
21326 .
21327 \end_layout
21328
21329 \end_inset
21330
21331 .
21332 \end_layout
21333
21334 \begin_layout Standard
21335 For example the appearance of the following 
21336 \family sans
21337 Shaded
21338 \family default
21339  note is set with the ERT commands
21340 \end_layout
21341
21342 \begin_layout Standard
21343
21344 \series bold
21345
21346 \backslash
21347 fboxsep 0.5cm
21348 \series default
21349
21350 \newline
21351
21352 \series bold
21353
21354 \backslash
21355 def\SpecialChar \textcompwordmark{}
21356 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21357 \end_layout
21358
21359 \begin_layout Standard
21360 \begin_inset ERT
21361 status collapsed
21362
21363 \begin_layout Standard
21364
21365
21366 \backslash
21367 fboxsep 0.5cm
21368 \end_layout
21369
21370 \end_inset
21371
21372
21373 \begin_inset ERT
21374 status collapsed
21375
21376 \begin_layout Standard
21377
21378
21379 \backslash
21380 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21381 \end_layout
21382
21383 \end_inset
21384
21385
21386 \begin_inset Note Shaded
21387 status open
21388
21389 \begin_layout Standard
21390
21391 \color yellow
21392 This is yellow text in a 
21393 \family sans
21394 Shaded
21395 \family default
21396  note with darkgreen background.
21397 \end_layout
21398
21399 \end_inset
21400
21401
21402 \begin_inset ERT
21403 status collapsed
21404
21405 \begin_layout Standard
21406
21407
21408 \backslash
21409 fboxsep 3pt
21410 \end_layout
21411
21412 \end_inset
21413
21414
21415 \begin_inset ERT
21416 status collapsed
21417
21418 \begin_layout Standard
21419
21420
21421 \backslash
21422 definecolor{shadecolor}{rgb}{1,0,0}
21423 \end_layout
21424
21425 \end_inset
21426
21427
21428 \end_layout
21429
21430 \begin_layout Section
21431 Footnotes
21432 \begin_inset LatexCommand label
21433 name "sec:Footnotes"
21434
21435 \end_inset
21436
21437
21438 \begin_inset LatexCommand index
21439 name "Notes ! Footnotes"
21440
21441 \end_inset
21442
21443
21444 \begin_inset LatexCommand index
21445 name "Footnotes"
21446
21447 \end_inset
21448
21449
21450 \end_layout
21451
21452 \begin_layout Standard
21453 Footnotes can be inserted using the toolbar button 
21454 \begin_inset Graphics
21455         filename ../images/footnote-insert.xpm
21456         scale 85
21457
21458 \end_inset
21459
21460  or the menu 
21461 \family sans
21462 Insert\SpecialChar \menuseparator
21463 Footnote
21464 \family default
21465 .
21466  
21467 \family roman
21468 \series medium
21469 \bar no
21470 You'll see 
21471 \family default
21472 \series default
21473 \bar default
21474 then the following footnote-box: 
21475 \begin_inset Graphics
21476         filename ../clipart/footnoteQt4.png
21477         scale 80
21478
21479 \end_inset
21480
21481
21482 \family roman
21483 \series medium
21484 \bar no
21485  where you can enter the footnote text.
21486  If you want to turn existing text into a footnote, mark it and click on
21487  the footnote 
21488 \family default
21489 \series default
21490 \bar default
21491 toolbar 
21492 \family roman
21493 \series medium
21494 \bar no
21495 button
21496 \family default
21497 \series default
21498 \bar default
21499 .
21500 \end_layout
21501
21502 \begin_layout Standard
21503 Here is an example footnote:
21504 \family roman
21505 \series medium
21506 \bar no
21507
21508 \begin_inset Foot
21509 status open
21510
21511 \begin_layout Standard
21512 \begin_inset LatexCommand label
21513 name "foot:This-is-an"
21514
21515 \end_inset
21516
21517 This is an example footnote.
21518 \end_layout
21519
21520 \end_inset
21521
21522
21523 \family default
21524 \series default
21525 \bar default
21526
21527 \begin_inset ERT
21528 status collapsed
21529
21530 \begin_layout Standard
21531
21532
21533 \backslash
21534 newcounter{MyRepeatFoot}
21535 \end_layout
21536
21537 \begin_layout Standard
21538
21539
21540 \backslash
21541 setcounter{MyRepeatFoot}{
21542 \backslash
21543 thefootnote}
21544 \end_layout
21545
21546 \end_inset
21547
21548
21549 \end_layout
21550
21551 \begin_layout Standard
21552 The footnote will appear in the output as a superscript number at the text
21553  position where the footnote box is placed.
21554  The footnote text is placed at the bottom of the current page.
21555  The footnote number is calculated by LaTeX, the numbers are consecutive.
21556  It depends on your document-class, if the footnote number is reset for
21557  every chapter.
21558 \end_layout
21559
21560 \begin_layout Standard
21561 Footnotes can be referenced like floats: Insert a label into the footnote
21562  and cross-reference this label in the text as described in section\InsetSpace ~
21563
21564 \begin_inset LatexCommand ref
21565 reference "sec:Referencing-Floats"
21566
21567 \end_inset
21568
21569 .
21570 \newline
21571 This is a cross-reference of Footnote\InsetSpace ~
21572
21573 \begin_inset LatexCommand prettyref
21574 reference "foot:This-is-an"
21575
21576 \end_inset
21577
21578 .
21579 \newline
21580
21581 \begin_inset Note Greyedout
21582 status open
21583
21584 \begin_layout Standard
21585
21586 \series bold
21587 Note:
21588 \series default
21589  LyX doesn't provide a prefix for labels in footnotes, so you have to insert
21590  e.\InsetSpace \thinspace{}
21591 g.\InsetSpace ~
21592 the prefix 
21593 \family sans
21594
21595 \begin_inset Quotes eld
21596 \end_inset
21597
21598 foot:
21599 \family default
21600
21601 \begin_inset Quotes erd
21602 \end_inset
21603
21604  manually when you want to use the reference style 
21605 \family sans
21606 Formatted\InsetSpace ~
21607 reference
21608 \family default
21609 .
21610 \end_layout
21611
21612 \end_inset
21613
21614
21615 \end_layout
21616
21617 \begin_layout Standard
21618 \begin_inset VSpace defskip
21619 \end_inset
21620
21621 To use footnotes within tables, you have to use minipages, see section\InsetSpace ~
21622
21623 \begin_inset LatexCommand ref
21624 reference "sec:Minipages"
21625
21626 \end_inset
21627
21628 .
21629  Footnotes within longtables are described in section\InsetSpace ~
21630
21631 \begin_inset LatexCommand ref
21632 reference "sub:Footnotes-in-Longtables"
21633
21634 \end_inset
21635
21636 .
21637 \end_layout
21638
21639 \begin_layout Standard
21640 \begin_inset VSpace defskip
21641 \end_inset
21642
21643 To create only a mark for a footnote, use the command 
21644 \series bold
21645
21646 \backslash
21647 footnotemark[number]
21648 \series default
21649  in ERT.
21650  This is used when you have the same annotation several times in a text
21651  but doesn't want to print the footnote text every time.
21652 \newline
21653 As you don't know
21654  the number of the repeating footnote while you are writing the text, you
21655  have to store its number.
21656  For the following footnote mark example, these commands were inserted in
21657  ERT behind Footnote\InsetSpace ~
21658
21659 \begin_inset LatexCommand ref
21660 reference "foot:This-is-an"
21661
21662 \end_inset
21663
21664  to store the footnote number:
21665 \end_layout
21666
21667 \begin_layout Standard
21668
21669 \series bold
21670
21671 \backslash
21672 newcounter{MyRepeatFoot}
21673 \newline
21674
21675 \backslash
21676 setcounter{MyRepeatFoot}{
21677 \backslash
21678 thefootnote}
21679 \end_layout
21680
21681 \begin_layout Standard
21682 The footnote mark was then created with this command:
21683 \end_layout
21684
21685 \begin_layout Standard
21686
21687 \series bold
21688
21689 \backslash
21690 footnotemark[
21691 \backslash
21692 theMyRepeatFoot]
21693 \end_layout
21694
21695 \begin_layout Standard
21696 Here is an example footnote mark:
21697 \family roman
21698 \series medium
21699 \bar no
21700
21701 \begin_inset ERT
21702 status collapsed
21703
21704 \begin_layout Standard
21705
21706
21707 \backslash
21708 footnotemark[
21709 \backslash
21710 theMyRepeatFoot]
21711 \end_layout
21712
21713 \end_inset
21714
21715
21716 \end_layout
21717
21718 \begin_layout Subsection
21719 Footnote Numbering
21720 \begin_inset LatexCommand label
21721 name "sub:Footnote-Numbering"
21722
21723 \end_inset
21724
21725
21726 \begin_inset LatexCommand index
21727 name "Footnotes ! Numbering"
21728
21729 \end_inset
21730
21731
21732 \end_layout
21733
21734 \begin_layout Standard
21735 If you want to have footnotes numbered in the scheme 
21736 \begin_inset Quotes eld
21737 \end_inset
21738
21739 chapter.footnote
21740 \begin_inset Quotes erd
21741 \end_inset
21742
21743 , add the following command to your document preamble:
21744 \end_layout
21745
21746 \begin_layout Standard
21747
21748 \series bold
21749
21750 \backslash
21751 numberwithin{footnote}{chapter}
21752 \end_layout
21753
21754 \begin_layout Standard
21755 To be able to use the command 
21756 \series bold
21757
21758 \backslash
21759 numberwithin
21760 \series default
21761 , set in the tab 
21762 \family sans
21763 Math\InsetSpace ~
21764 Options
21765 \family default
21766  in the document settings the option 
21767 \family sans
21768 Use\InsetSpace ~
21769 AMS\InsetSpace ~
21770 math\InsetSpace ~
21771 package
21772 \family default
21773 .
21774 \end_layout
21775
21776 \begin_layout Standard
21777 \begin_inset ERT
21778 status collapsed
21779
21780 \begin_layout Standard
21781
21782
21783 \backslash
21784 numberwithin{footnote}{chapter}
21785 \end_layout
21786
21787 \end_inset
21788
21789 This is another example footnote:
21790 \series bold
21791
21792 \begin_inset Foot
21793 status open
21794
21795 \begin_layout Standard
21796 This is a footnote numbered in the scheme 
21797 \begin_inset Quotes eld
21798 \end_inset
21799
21800 chapter.footnote
21801 \begin_inset Quotes erd
21802 \end_inset
21803
21804 .
21805 \end_layout
21806
21807 \end_inset
21808
21809
21810 \series default
21811
21812 \begin_inset ERT
21813 status collapsed
21814
21815 \begin_layout Standard
21816
21817
21818 \backslash
21819 numberwithin{footnote}{part}
21820 \end_layout
21821
21822 \end_inset
21823
21824
21825 \end_layout
21826
21827 \begin_layout Standard
21828 \begin_inset VSpace bigskip
21829 \end_inset
21830
21831
21832 \end_layout
21833
21834 \begin_layout Standard
21835 To reset the footnote number back to 1 after each section
21836 \family roman
21837 , add this command to your document preamble:
21838 \end_layout
21839
21840 \begin_layout Standard
21841
21842 \series bold
21843
21844 \backslash
21845 @addtoreset{footnote}{section}
21846 \end_layout
21847
21848 \begin_layout Standard
21849 \begin_inset VSpace bigskip
21850 \end_inset
21851
21852 The following preamble command changes the footnote numbering style to small
21853  roman numerals:
21854 \end_layout
21855
21856 \begin_layout Standard
21857
21858 \series bold
21859
21860 \backslash
21861 renewcommand{
21862 \backslash
21863 thefootnote}{
21864 \backslash
21865 roman{footnote}}
21866 \end_layout
21867
21868 \begin_layout Standard
21869 \begin_inset ERT
21870 status collapsed
21871
21872 \begin_layout Standard
21873
21874
21875 \backslash
21876 renewcommand{
21877 \backslash
21878 thefootnote}{
21879 \backslash
21880 roman{footnote}}
21881 \end_layout
21882
21883 \end_inset
21884
21885  This is a footnote with roman numbering:
21886 \begin_inset Foot
21887 status open
21888
21889 \begin_layout Standard
21890 This is an example footnote with roman numbering.
21891 \end_layout
21892
21893 \end_inset
21894
21895
21896 \begin_inset ERT
21897 status collapsed
21898
21899 \begin_layout Standard
21900
21901
21902 \backslash
21903 renewcommand{
21904 \backslash
21905 thefootnote}{
21906 \backslash
21907 arabic{footnote}}
21908 \end_layout
21909
21910 \end_inset
21911
21912
21913 \end_layout
21914
21915 \begin_layout Standard
21916 To change the numbering style to capital roman numerals replace in the command
21917  above 
21918 \series bold
21919
21920 \backslash
21921 roman
21922 \series default
21923  by 
21924 \series bold
21925
21926 \backslash
21927 Roman
21928 \series default
21929 .
21930  To 
21931 \begin_inset Quotes eld
21932 \end_inset
21933
21934 number
21935 \begin_inset Quotes erd
21936 \end_inset
21937
21938  footnotes with capital or small Latin letters use 
21939 \series bold
21940
21941 \backslash
21942 Alph
21943 \series default
21944  or 
21945 \series bold
21946
21947 \backslash
21948 alph
21949 \series default
21950 , respectively.
21951  To 
21952 \begin_inset Quotes eld
21953 \end_inset
21954
21955 number
21956 \begin_inset Quotes erd
21957 \end_inset
21958
21959  footnotes with symbols use 
21960 \series bold
21961
21962 \backslash
21963 fnsymbol
21964 \series default
21965 .
21966 \end_layout
21967
21968 \begin_layout Standard
21969 \begin_inset Note Greyedout
21970 status open
21971
21972 \begin_layout Standard
21973
21974 \series bold
21975 Note:
21976 \series medium
21977  
21978 \series default
21979 You can only number 26 footnotes with Latin letters, because this numbering
21980  is limited to single letters.
21981 \end_layout
21982
21983 \end_inset
21984
21985
21986 \newline
21987
21988 \begin_inset Note Greyedout
21989 status open
21990
21991 \begin_layout Standard
21992
21993 \series bold
21994 Note:
21995 \series default
21996  You can only number 9 footnotes with symbols.
21997 \end_layout
21998
21999 \end_inset
22000
22001
22002 \end_layout
22003
22004 \begin_layout Standard
22005 To return to the default numbering style when you changed to another one,
22006  use 
22007 \series bold
22008
22009 \backslash
22010 arabic
22011 \series default
22012  instead of 
22013 \series bold
22014
22015 \backslash
22016 roman
22017 \series default
22018  in the command above.
22019 \end_layout
22020
22021 \begin_layout Subsection
22022 Footnote Placement
22023 \begin_inset LatexCommand index
22024 name "Footnotes ! Placement"
22025
22026 \end_inset
22027
22028
22029 \end_layout
22030
22031 \begin_layout Standard
22032 If you have several footnotes in one page, they appear without vertical
22033  space between them at the bottom of the page.
22034  To make them better readable you can e.\InsetSpace \thinspace{}
22035 g.\InsetSpace ~
22036 add 1.5\InsetSpace \thinspace{}
22037 mm space with the following
22038  preamble command:
22039 \end_layout
22040
22041 \begin_layout Standard
22042
22043 \series bold
22044
22045 \backslash
22046 let
22047 \backslash
22048 myFoot
22049 \backslash
22050 footnote
22051 \newline
22052
22053 \backslash
22054 renewcommand{
22055 \backslash
22056 footnote}[1]{
22057 \backslash
22058 myFoot{#1
22059 \backslash
22060 vspace{1.5mm}}}
22061 \end_layout
22062
22063 \begin_layout Standard
22064 \begin_inset VSpace bigskip
22065 \end_inset
22066
22067 In a two-column document the footnotes appear at the bottom of every column,
22068  see Figure\InsetSpace ~
22069
22070 \begin_inset LatexCommand ref
22071 reference "fig:Standard-footnote-placement"
22072
22073 \end_inset
22074
22075 .
22076  If the footnotes should only appear at the bottom of the right column,
22077  as in Figure\InsetSpace ~
22078
22079 \begin_inset LatexCommand ref
22080 reference "fig:Footnote-placement-in"
22081
22082 \end_inset
22083
22084 , use the LaTeX-package 
22085 \series bold
22086 ftnright
22087 \series default
22088
22089 \begin_inset LatexCommand index
22090 name "LaTeX-packages ! ftnright"
22091
22092 \end_inset
22093
22094  with this command in the document preamble:
22095 \end_layout
22096
22097 \begin_layout Standard
22098
22099 \series bold
22100
22101 \backslash
22102 usepackage{ftnright}
22103 \end_layout
22104
22105 \begin_layout Standard
22106 \begin_inset Float figure
22107 placement !h
22108 wide false
22109 sideways false
22110 status open
22111
22112 \begin_layout Standard
22113 \begin_inset ERT
22114 status collapsed
22115
22116 \begin_layout Standard
22117
22118
22119 \backslash
22120 framebox{
22121 \end_layout
22122
22123 \end_inset
22124
22125
22126 \begin_inset Graphics
22127         filename ../clipart/without_fntright.pdf
22128         width 100col%
22129
22130 \end_inset
22131
22132
22133 \begin_inset ERT
22134 status collapsed
22135
22136 \begin_layout Standard
22137
22138 }
22139 \end_layout
22140
22141 \end_inset
22142
22143
22144 \end_layout
22145
22146 \begin_layout Standard
22147 \begin_inset Caption
22148
22149 \begin_layout Standard
22150 \begin_inset LatexCommand label
22151 name "fig:Standard-footnote-placement"
22152
22153 \end_inset
22154
22155 Standard footnote placement in two-column documents.
22156 \end_layout
22157
22158 \end_inset
22159
22160
22161 \end_layout
22162
22163 \end_inset
22164
22165
22166 \end_layout
22167
22168 \begin_layout Standard
22169 \begin_inset Float figure
22170 placement !h
22171 wide false
22172 sideways false
22173 status open
22174
22175 \begin_layout Standard
22176 \begin_inset ERT
22177 status collapsed
22178
22179 \begin_layout Standard
22180
22181
22182 \backslash
22183 framebox{
22184 \end_layout
22185
22186 \end_inset
22187
22188
22189 \begin_inset Graphics
22190         filename ../clipart/with_fntright.pdf
22191         width 100col%
22192
22193 \end_inset
22194
22195
22196 \begin_inset ERT
22197 status collapsed
22198
22199 \begin_layout Standard
22200
22201 }
22202 \end_layout
22203
22204 \end_inset
22205
22206
22207 \end_layout
22208
22209 \begin_layout Standard
22210 \begin_inset Caption
22211
22212 \begin_layout Standard
22213 \begin_inset LatexCommand label
22214 name "fig:Footnote-placement-in"
22215
22216 \end_inset
22217
22218 Footnote placement in two-column documents when the LaTeX-package 
22219 \series bold
22220 ftnright
22221 \series default
22222  is used.
22223 \end_layout
22224
22225 \end_inset
22226
22227
22228 \end_layout
22229
22230 \end_inset
22231
22232
22233 \end_layout
22234
22235 \begin_layout Standard
22236 \begin_inset VSpace bigskip
22237 \end_inset
22238
22239 In some scientific literature it is usual to collect the footnotes and print
22240  them in a separate paragraph at the the end of a section, like in Figure\InsetSpace ~
22241
22242 \begin_inset LatexCommand ref
22243 reference "fig:Endnotes----footnotes"
22244
22245 \end_inset
22246
22247 .
22248  They are then so called 
22249 \begin_inset Quotes eld
22250 \end_inset
22251
22252 endnotes
22253 \begin_inset Quotes erd
22254 \end_inset
22255
22256 .
22257  To use endnotes instead of footnotes in your document, load the LaTeX-package
22258  
22259 \series bold
22260 endnotes
22261 \series default
22262
22263 \begin_inset LatexCommand index
22264 name "LaTeX-packages ! endnotes"
22265
22266 \end_inset
22267
22268  with the document preamble lines
22269 \end_layout
22270
22271 \begin_layout Standard
22272
22273 \series bold
22274
22275 \backslash
22276 usepackage{endnotes}
22277 \newline
22278
22279 \backslash
22280 let
22281 \backslash
22282 footnote
22283 \backslash
22284 endnote
22285 \end_layout
22286
22287 \begin_layout Standard
22288 To insert the collected footnotes, insert the command
22289 \end_layout
22290
22291 \begin_layout Standard
22292
22293 \series bold
22294
22295 \backslash
22296 theendnotes
22297 \end_layout
22298
22299 \begin_layout Standard
22300 in ERT at the the end of a section or chapter.
22301 \end_layout
22302
22303 \begin_layout Standard
22304 \begin_inset Float figure
22305 wide false
22306 sideways false
22307 status open
22308
22309 \begin_layout Standard
22310 \align center
22311 \begin_inset ERT
22312 status collapsed
22313
22314 \begin_layout Standard
22315
22316
22317 \backslash
22318 framebox{
22319 \end_layout
22320
22321 \end_inset
22322
22323
22324 \begin_inset Graphics
22325         filename ../clipart/endnotes.pdf
22326
22327 \end_inset
22328
22329
22330 \begin_inset ERT
22331 status collapsed
22332
22333 \begin_layout Standard
22334
22335 }
22336 \end_layout
22337
22338 \end_inset
22339
22340
22341 \end_layout
22342
22343 \begin_layout Standard
22344 \begin_inset Caption
22345
22346 \begin_layout Standard
22347 \begin_inset LatexCommand label
22348 name "fig:Endnotes----footnotes"
22349
22350 \end_inset
22351
22352 Endnotes -- footnotes are printed in a separate paragraph at the end of
22353  sections or chapters.
22354 \end_layout
22355
22356 \end_inset
22357
22358
22359 \end_layout
22360
22361 \end_inset
22362
22363
22364 \end_layout
22365
22366 \begin_layout Standard
22367 \begin_inset VSpace defskip
22368 \end_inset
22369
22370 The paragraph heading for the endnotes isn't automatically translated into
22371  the document language, this must be done manually.
22372  The following preamble command translate the default English name 
22373 \begin_inset Quotes eld
22374 \end_inset
22375
22376 Notes
22377 \begin_inset Quotes erd
22378 \end_inset
22379
22380  to the German translation 
22381 \begin_inset Quotes eld
22382 \end_inset
22383
22384 Anmerkungen
22385 \begin_inset Quotes erd
22386 \end_inset
22387
22388 :
22389 \end_layout
22390
22391 \begin_layout Standard
22392
22393 \series bold
22394
22395 \backslash
22396 renewcommand{
22397 \backslash
22398 notesname}{Anmerkungen}
22399 \end_layout
22400
22401 \begin_layout Standard
22402 \begin_inset VSpace defskip
22403 \end_inset
22404
22405 The numbering of endnotes can be changed like the footnote numbering as
22406  described in section\InsetSpace ~
22407
22408 \begin_inset LatexCommand ref
22409 reference "sub:Footnote-Numbering"
22410
22411 \end_inset
22412
22413 ; just replace the command 
22414 \series bold
22415
22416 \backslash
22417 thefootnote
22418 \series default
22419  by 
22420 \series bold
22421
22422 \backslash
22423 theendnote
22424 \series default
22425 .
22426  To reset the endnote number use the command 
22427 \series bold
22428
22429 \backslash
22430 @addtoreset 
22431 \series default
22432 as described in section\InsetSpace ~
22433
22434 \begin_inset LatexCommand ref
22435 reference "sub:Footnote-Numbering"
22436
22437 \end_inset
22438
22439  and replace the command parameter 
22440 \series bold
22441 footnote
22442 \series default
22443  by 
22444 \series bold
22445 endnote
22446 \series default
22447 .
22448 \end_layout
22449
22450 \begin_layout Standard
22451 To create only a mark for an endnote, use the command 
22452 \series bold
22453
22454 \backslash
22455 endnotemark[number]
22456 \series default
22457  similar to the command 
22458 \series bold
22459
22460 \backslash
22461 footnotemark
22462 \series default
22463 , described in section\InsetSpace ~
22464
22465 \begin_inset LatexCommand ref
22466 reference "sec:Footnotes"
22467
22468 \end_inset
22469
22470 .
22471 \end_layout
22472
22473 \begin_layout Standard
22474 \begin_inset VSpace bigskip
22475 \end_inset
22476
22477 Footnotes can also be placed in the page margin and the footnote text alignment
22478  can be changed, see the LaTeX-package 
22479 \series bold
22480 footmisc
22481 \series default
22482
22483 \begin_inset LatexCommand index
22484 name "LaTeX-packages ! footmisc"
22485
22486 \end_inset
22487
22488
22489 \begin_inset LatexCommand cite
22490 key "footmisc"
22491
22492 \end_inset
22493
22494  for more information about this.
22495 \end_layout
22496
22497 \begin_layout Standard
22498 For various further footnote formatting issues have a look at LaTeX-books,
22499  
22500 \begin_inset LatexCommand cite
22501 key "latexcompanion,latexguide,latexbook"
22502
22503 \end_inset
22504
22505 .
22506 \end_layout
22507
22508 \begin_layout Section
22509 Margin Notes
22510 \begin_inset LatexCommand index
22511 name "Notes ! Margin Notes"
22512
22513 \end_inset
22514
22515
22516 \end_layout
22517
22518 \begin_layout Standard
22519 Margin notes look and behave in LyX like footnotes.
22520  They are inserted via the menu 
22521 \family sans
22522 Insert\SpecialChar \menuseparator
22523 Marginal\InsetSpace ~
22524 Note
22525 \family default
22526  or the toolbar button 
22527 \begin_inset Graphics
22528         filename ../images/marginalnote-insert.xpm
22529         scale 85
22530
22531 \end_inset
22532
22533 .
22534  A
22535 \family roman
22536 \series medium
22537  
22538 \family default
22539 \series default
22540 grey
22541 \family roman
22542 \series medium
22543  box with the 
22544 \family default
22545 \series default
22546 red 
22547 \family roman
22548 \series medium
22549 label 
22550 \begin_inset Quotes eld
22551 \end_inset
22552
22553 margin
22554 \begin_inset Quotes erd
22555 \end_inset
22556
22557  appears where you can enter the text of the margin note.
22558 \end_layout
22559
22560 \begin_layout Standard
22561 At the side is an example margin note.
22562 \family roman
22563 \series medium
22564
22565 \begin_inset Marginal
22566 status open
22567
22568 \begin_layout Standard
22569 This is a margin note.
22570 \end_layout
22571
22572 \end_inset
22573
22574
22575 \end_layout
22576
22577 \begin_layout Standard
22578 Margin notes appear at the right side in single-sided documents.
22579  In double-sided documents they appear in the outer margin -- left on even
22580  pages, right on odd pages.
22581  The text of margin notes is aligned opposite to the outer margin -- right-align
22582 ed when the note appears in the left margin.
22583  The first line of the margin note is placed at the position of the text
22584  line where it is inserted in the document.
22585 \end_layout
22586
22587 \begin_layout Standard
22588 \begin_inset VSpace bigskip
22589 \end_inset
22590
22591 To place the margin note in the inner margin, add the command
22592 \end_layout
22593
22594 \begin_layout Standard
22595
22596 \series bold
22597
22598 \backslash
22599 reversemarginpar
22600 \end_layout
22601
22602 \begin_layout Standard
22603 in ERT before a margin note.
22604  The new placement is valid for all following margin notes.
22605 \begin_inset ERT
22606 status collapsed
22607
22608 \begin_layout Standard
22609
22610
22611 \backslash
22612 reversemarginpar 
22613 \end_layout
22614
22615 \end_inset
22616
22617
22618 \begin_inset Marginal
22619 status open
22620
22621 \begin_layout Standard
22622 This is a margin note in the inner margin.
22623 \end_layout
22624
22625 \end_inset
22626
22627
22628 \series bold
22629
22630 \newline
22631
22632 \series default
22633
22634 \begin_inset Note Greyedout
22635 status open
22636
22637 \begin_layout Standard
22638
22639 \series bold
22640 Note:
22641 \series default
22642  There is often not enough space in the inner margin so that the notes are
22643  not correctly displayed in the output.
22644 \end_layout
22645
22646 \end_inset
22647
22648
22649 \end_layout
22650
22651 \begin_layout Standard
22652 \begin_inset ERT
22653 status collapsed
22654
22655 \begin_layout Standard
22656
22657
22658 \backslash
22659 normalmarginpar 
22660 \end_layout
22661
22662 \end_inset
22663
22664 To return to the default placement insert the command
22665 \end_layout
22666
22667 \begin_layout Standard
22668
22669 \series bold
22670
22671 \backslash
22672 normalmarginpar
22673 \end_layout
22674
22675 \begin_layout Standard
22676 in ERT.
22677  
22678 \begin_inset Note Greyedout
22679 status open
22680
22681 \begin_layout Standard
22682
22683 \series bold
22684 Note:
22685 \series default
22686  The command is ignored when it is within a paragraph where also the command
22687  
22688 \series bold
22689
22690 \backslash
22691 reversemarginpar
22692 \series default
22693  is inserted.
22694 \end_layout
22695
22696 \end_inset
22697
22698
22699 \end_layout
22700
22701 \begin_layout Standard
22702 \begin_inset VSpace bigskip
22703 \end_inset
22704
22705
22706 \family roman
22707 \series medium
22708
22709 \begin_inset Marginal
22710 status open
22711
22712 \begin_layout Standard
22713 AVeryLongMarginParWord that isn't hyphenated.
22714 \end_layout
22715
22716 \end_inset
22717
22718
22719 \family default
22720 \series default
22721 Similar to the case described in section\InsetSpace ~
22722
22723 \begin_inset LatexCommand ref
22724 reference "sub:Multiple-Lines-in"
22725
22726 \end_inset
22727
22728 , long words cannot be hyphenated when they are the first word in a margin
22729  note.
22730  To avoid this, insert the command
22731 \end_layout
22732
22733 \begin_layout Standard
22734
22735 \series bold
22736
22737 \backslash
22738 hspace{0pt}
22739 \end_layout
22740
22741 \begin_layout Standard
22742 in ERT before the word
22743 \family roman
22744 \series medium
22745 .
22746 \begin_inset Marginal
22747 status open
22748
22749 \begin_layout Standard
22750 \begin_inset ERT
22751 status collapsed
22752
22753 \begin_layout Standard
22754
22755
22756 \backslash
22757 hspace{0pt}
22758 \end_layout
22759
22760 \end_inset
22761
22762 AVeryLongMarginParWord that is hyphenated.
22763 \end_layout
22764
22765 \end_inset
22766
22767
22768 \end_layout
22769
22770 \begin_layout Standard
22771 \begin_inset VSpace bigskip
22772 \end_inset
22773
22774
22775 \end_layout
22776
22777 \begin_layout Standard
22778 \begin_inset Note Greyedout
22779 status open
22780
22781 \begin_layout Standard
22782
22783 \series bold
22784 Note:
22785 \series default
22786  Margin notes can normally not be used inside tables, floats, and footnotes.
22787 \end_layout
22788
22789 \end_inset
22790
22791
22792 \end_layout
22793
22794 \begin_layout Standard
22795 This restriction can be evaded by using the LaTeX-package 
22796 \series bold
22797 marginnote
22798 \series default
22799
22800 \begin_inset LatexCommand index
22801 name "LaTeX-packages ! marginnote"
22802
22803 \end_inset
22804
22805 .
22806  By adding these two lines to your document preamble, the command used by
22807  LyX for margin notes is redefined to use the command provided by the 
22808 \series bold
22809 marginnote
22810 \series default
22811 -package:
22812 \end_layout
22813
22814 \begin_layout Standard
22815
22816 \series bold
22817
22818 \backslash
22819 usepackage{marginnote}
22820 \newline
22821
22822 \backslash
22823 let
22824 \backslash
22825 marginpar
22826 \backslash
22827 marginnote
22828 \end_layout
22829
22830 \begin_layout Standard
22831 This is also used in this document because 
22832 \series bold
22833 marginnote
22834 \series default
22835  has another useful feature: You can set a vertical offset for the note.
22836  This is often needed when too many margin notes are too close together
22837  or for a better page layout.
22838  The offset is set in LyX as ERT directly behind the margin note in the
22839  scheme
22840 \end_layout
22841
22842 \begin_layout Standard
22843
22844 \series bold
22845 [offset]
22846 \end_layout
22847
22848 \begin_layout Standard
22849 where the offset is a length with one of the units listed in Table\InsetSpace ~
22850
22851 \begin_inset LatexCommand ref
22852 reference "tab:Units"
22853
22854 \end_inset
22855
22856 .
22857  A negative value shifts the note up, a positive value shifts it down.
22858
22859 \family roman
22860 \series medium
22861  For example the margin note beside this text line is shifted up 1.5\InsetSpace \thinspace{}
22862 cm with
22863  the ERT-command 
22864 \begin_inset Quotes eld
22865 \end_inset
22866
22867
22868 \family default
22869 \series bold
22870 [-1.5cm]
22871 \family roman
22872 \series medium
22873
22874 \begin_inset Quotes erd
22875 \end_inset
22876
22877
22878 \begin_inset Marginal
22879 status open
22880
22881 \begin_layout Standard
22882 This margin note is shifted up 1.5\InsetSpace \thinspace{}
22883 cm from its original position.
22884 \end_layout
22885
22886 \end_inset
22887
22888
22889 \family default
22890 \series default
22891
22892 \begin_inset ERT
22893 status collapsed
22894
22895 \begin_layout Standard
22896
22897 [-1.5cm]
22898 \end_layout
22899
22900 \end_inset
22901
22902
22903 \end_layout
22904
22905 \begin_layout Standard
22906 \begin_inset VSpace defskip
22907 \end_inset
22908
22909 With 
22910 \series bold
22911 marginnote
22912 \series default
22913  you can also change the alignment of the text in the margin note.
22914  For example the commands
22915 \end_layout
22916
22917 \begin_layout Standard
22918
22919 \series bold
22920
22921 \backslash
22922 renewcommand*{
22923 \backslash
22924 raggedleftmarginnote}{
22925 \backslash
22926 centering}
22927 \newline
22928
22929 \backslash
22930 renewcommand*{
22931 \backslash
22932 raggedrightmarginnote}{
22933 \backslash
22934 centering}
22935 \end_layout
22936
22937 \begin_layout Standard
22938 set the alignment to centered.
22939  
22940 \series bold
22941
22942 \backslash
22943 raggedleftmarginnote
22944 \series default
22945  denotes margin notes that appear at the left side.
22946 \family roman
22947 \series medium
22948
22949 \begin_inset ERT
22950 status collapsed
22951
22952 \begin_layout Standard
22953
22954
22955 \backslash
22956 renewcommand*{
22957 \backslash
22958 raggedleftmarginnote}{
22959 \backslash
22960 centering}
22961 \end_layout
22962
22963 \begin_layout Standard
22964
22965
22966 \backslash
22967 renewcommand*{
22968 \backslash
22969 raggedrightmarginnote}{
22970 \backslash
22971 centering}
22972 \end_layout
22973
22974 \end_inset
22975
22976
22977 \begin_inset Marginal
22978 status open
22979
22980 \begin_layout Standard
22981 The text of this margin note is centered.
22982 \end_layout
22983
22984 \end_inset
22985
22986  
22987 \family default
22988 \series default
22989 The default is
22990 \end_layout
22991
22992 \begin_layout Standard
22993
22994 \series bold
22995
22996 \backslash
22997 renewcommand*{
22998 \backslash
22999 raggedleftmarginnote}{
23000 \backslash
23001 raggedleft}
23002 \newline
23003
23004 \backslash
23005 renewcommand*{
23006 \backslash
23007 raggedrightmarginnote}{
23008 \backslash
23009 raggedright}
23010 \family roman
23011 \series medium
23012
23013 \begin_inset ERT
23014 status collapsed
23015
23016 \begin_layout Standard
23017
23018
23019 \backslash
23020 renewcommand*{
23021 \backslash
23022 raggedleftmarginnote}{
23023 \backslash
23024 raggedleft}
23025 \end_layout
23026
23027 \begin_layout Standard
23028
23029
23030 \backslash
23031 renewcommand*{
23032 \backslash
23033 raggedrightmarginnote}{
23034 \backslash
23035 raggedright}
23036 \end_layout
23037
23038 \end_inset
23039
23040
23041 \end_layout
23042
23043 \begin_layout Standard
23044 \begin_inset VSpace defskip
23045 \end_inset
23046
23047 For the other features of 
23048 \series bold
23049 marginnote
23050 \series default
23051  we refer to its documentation 
23052 \begin_inset LatexCommand cite
23053 key "marginnote"
23054
23055 \end_inset
23056
23057 .
23058 \end_layout
23059
23060 \begin_layout Standard
23061 \begin_inset VSpace bigskip
23062 \end_inset
23063
23064 You can change the layout of margin notes by redefining its definition.
23065  To create for example a header for all margin notes with the underlined,
23066  sans-serif, and bold header text 
23067 \begin_inset Quotes eld
23068 \end_inset
23069
23070
23071 \family sans
23072 \series bold
23073 \bar under
23074 Attention!
23075 \family default
23076 \series default
23077 \bar default
23078
23079 \begin_inset Quotes erd
23080 \end_inset
23081
23082 , add this to your document preamble:
23083 \end_layout
23084
23085 \begin_layout Standard
23086
23087 \series bold
23088
23089 \backslash
23090 let
23091 \backslash
23092 myMarginpar
23093 \backslash
23094 marginpar
23095 \newline
23096
23097 \backslash
23098 renewcommand{
23099 \backslash
23100 marginpar}[1]{
23101 \backslash
23102 myMarginpar{%
23103 \newline
23104
23105 \begin_inset ERT
23106 status collapsed
23107
23108 \begin_layout Standard
23109
23110
23111 \backslash
23112 hphantom{ }
23113 \end_layout
23114
23115 \end_inset
23116
23117
23118 \backslash
23119 hspace{0pt}
23120 \backslash
23121 textsf{
23122 \backslash
23123 textbf{
23124 \backslash
23125 underbar{Attention!}}}%
23126 \newline
23127
23128 \begin_inset ERT
23129 status collapsed
23130
23131 \begin_layout Standard
23132
23133
23134 \backslash
23135 hphantom{ }
23136 \end_layout
23137
23138 \end_inset
23139
23140
23141 \backslash
23142 vspace{1.5mm}
23143 \backslash
23144
23145 \backslash
23146 #1}}
23147 \end_layout
23148
23149 \begin_layout Standard
23150
23151 \family roman
23152 \series medium
23153 \begin_inset ERT
23154 status collapsed
23155
23156 \begin_layout Standard
23157
23158
23159 \backslash
23160 let
23161 \backslash
23162 myMarginpar
23163 \backslash
23164 marginpar
23165 \end_layout
23166
23167 \begin_layout Standard
23168
23169
23170 \backslash
23171 renewcommand{
23172 \backslash
23173 marginpar}[1]{
23174 \backslash
23175 myMarginpar{%
23176 \end_layout
23177
23178 \begin_layout Standard
23179
23180    
23181 \backslash
23182 textsf{
23183 \backslash
23184 textbf{
23185 \backslash
23186 underbar{Attention!}}}%
23187 \end_layout
23188
23189 \begin_layout Standard
23190
23191    
23192 \backslash
23193 vspace{1.5mm}
23194 \backslash
23195
23196 \backslash
23197 #1}}
23198 \end_layout
23199
23200 \end_inset
23201
23202
23203 \begin_inset Marginal
23204 status open
23205
23206 \begin_layout Standard
23207 This is a margin note with a defined heading.
23208 \end_layout
23209
23210 \end_inset
23211
23212
23213 \family default
23214 \series default
23215
23216 \begin_inset ERT
23217 status collapsed
23218
23219 \begin_layout Standard
23220
23221 [-1.5cm]
23222 \end_layout
23223
23224 \end_inset
23225
23226
23227 \family roman
23228 \series medium
23229
23230 \begin_inset ERT
23231 status collapsed
23232
23233 \begin_layout Standard
23234
23235
23236 \backslash
23237 renewcommand{
23238 \backslash
23239 marginpar}[1]{
23240 \backslash
23241 myMarginpar{#1}}
23242 \end_layout
23243
23244 \end_inset
23245
23246
23247 \family default
23248 \series default
23249
23250 \begin_inset Note Note
23251 status open
23252
23253 \begin_layout Standard
23254 The margin note format is changed only for this example.
23255 \end_layout
23256
23257 \end_inset
23258
23259
23260 \end_layout
23261
23262 \begin_layout Chapter
23263 Boxes
23264 \end_layout
23265
23266 \begin_layout Section
23267 Introduction
23268 \begin_inset LatexCommand index
23269 name "Boxes ! Introduction"
23270
23271 \end_inset
23272
23273
23274 \end_layout
23275
23276 \begin_layout Standard
23277 Boxes are used to format a block of text.
23278  Boxes can be used to write documents with multiple languages, see section\InsetSpace ~
23279
23280 \begin_inset LatexCommand ref
23281 reference "sec:Minipages"
23282
23283 \end_inset
23284
23285 , to frame texts, see section\InsetSpace ~
23286
23287 \begin_inset LatexCommand ref
23288 reference "sec:Framed-Boxes"
23289
23290 \end_inset
23291
23292 , to prevent words to be hyphenated, see section\InsetSpace ~
23293
23294 \begin_inset LatexCommand ref
23295 reference "sec:Prevent-Hyphenation"
23296
23297 \end_inset
23298
23299 , to align text, see section\InsetSpace ~
23300
23301 \begin_inset LatexCommand ref
23302 reference "sub:Vertical-Alignment"
23303
23304 \end_inset
23305
23306 , or to set the background color of texts, see section\InsetSpace ~
23307
23308 \begin_inset LatexCommand ref
23309 reference "sec:Colored-Boxes"
23310
23311 \end_inset
23312
23313 .
23314 \end_layout
23315
23316 \begin_layout Standard
23317 Boxes can be inserted with the menu 
23318 \family sans
23319 Insert\SpecialChar \menuseparator
23320 Box
23321 \family default
23322 .
23323  A grey box with the label 
23324 \family sans
23325 Box (Minipage)
23326 \family default
23327
23328 \begin_inset Graphics
23329         filename ../clipart/BoxInsetDefaultQt4.png
23330         scale 85
23331
23332 \end_inset
23333
23334 , will be inserted.
23335  The box type can be specified by right-clicking on the box.
23336  The appearing box dialog offers the 
23337 \family sans
23338 Inner\InsetSpace ~
23339 Box
23340 \family default
23341  types 
23342 \family sans
23343 Parbox
23344 \family default
23345  and 
23346 \family sans
23347 Minipage
23348 \family default
23349 .
23350  The type 
23351 \family sans
23352 Minipage
23353 \family default
23354  is the default for new boxes and is explained in section\InsetSpace ~
23355
23356 \begin_inset LatexCommand ref
23357 reference "sec:Minipages"
23358
23359 \end_inset
23360
23361 ; the type 
23362 \family sans
23363 Parbox
23364 \family default
23365  is described in section\InsetSpace ~
23366
23367 \begin_inset LatexCommand ref
23368 reference "sec:Parboxes"
23369
23370 \end_inset
23371
23372 .
23373 \end_layout
23374
23375 \begin_layout Standard
23376 Boxes aren't numbered and can therefore not be referenced like floats or
23377  footnotes.
23378 \end_layout
23379
23380 \begin_layout Standard
23381 \begin_inset Note Greyedout
23382 status open
23383
23384 \begin_layout Standard
23385
23386 \series bold
23387 Note:
23388 \series default
23389  Due to a bug in LyX you have to insert a protected space behind a box when
23390  you want to separate in a line the box from the following text with a space.
23391 \end_layout
23392
23393 \end_inset
23394
23395
23396 \end_layout
23397
23398 \begin_layout Standard
23399 \begin_inset Note Greyedout
23400 status open
23401
23402 \begin_layout Standard
23403
23404 \series bold
23405 Note:
23406 \series default
23407  Boxes must not be the item in an 
23408 \family sans
23409 Itemize
23410 \family default
23411  or 
23412 \family sans
23413 Description
23414 \family default
23415  environment.
23416 \end_layout
23417
23418 \end_inset
23419
23420
23421 \end_layout
23422
23423 \begin_layout Standard
23424 \begin_inset Note Greyedout
23425 status open
23426
23427 \begin_layout Standard
23428
23429 \series bold
23430 Note:
23431 \series default
23432  For an unknown reason you can only set the 
23433 \family sans
23434 Inner\InsetSpace ~
23435 Box
23436 \family default
23437  type to 
23438 \family sans
23439 None
23440 \family default
23441  when you use a framed box.
23442  Boxes without an 
23443 \family sans
23444 Inner\InsetSpace ~
23445 Box
23446 \family default
23447  type and without frames are explained in section\InsetSpace ~
23448
23449 \begin_inset LatexCommand ref
23450 reference "sec:Prevent-Hyphenation"
23451
23452 \end_inset
23453
23454 .
23455 \end_layout
23456
23457 \end_inset
23458
23459
23460 \end_layout
23461
23462 \begin_layout Section
23463 Box Dialog
23464 \begin_inset LatexCommand label
23465 name "sec:Box-Dialog"
23466
23467 \end_inset
23468
23469
23470 \begin_inset LatexCommand index
23471 name "Boxes ! Box Dialog"
23472
23473 \end_inset
23474
23475
23476 \begin_inset LatexCommand index
23477 name "Boxes ! Alignment"
23478
23479 \end_inset
23480
23481
23482 \end_layout
23483
23484 \begin_layout Standard
23485 In the box dialog you can adjust the box geometry in the fields 
23486 \family sans
23487 Width
23488 \family default
23489  and 
23490 \family sans
23491 Height
23492 \family default
23493 .
23494  The available units for the geometry are explained in Table\InsetSpace ~
23495
23496 \begin_inset LatexCommand ref
23497 reference "tab:Units"
23498
23499 \end_inset
23500
23501 .
23502  The field 
23503 \family sans
23504 Heigth
23505 \family default
23506  offers the following additional sizes:
23507 \end_layout
23508
23509 \begin_layout Description
23510 Depth This is the plain text 
23511 \begin_inset Quotes eld
23512 \end_inset
23513
23514 height
23515 \begin_inset Quotes erd
23516 \end_inset
23517
23518 .
23519  It ignores the total depth when there are multiple text lines in the box:
23520 \newline
23521
23522 \newline
23523
23524 \newline
23525
23526 \begin_inset Box Boxed
23527 position "c"
23528 hor_pos "c"
23529 has_inner_box 1
23530 inner_pos "c"
23531 use_parbox 0
23532 width "12col%"
23533 special "none"
23534 height "1in"
23535 height_special "depth"
23536 status collapsed
23537
23538 \begin_layout Standard
23539 \align center
23540 Box height set to 1\InsetSpace \thinspace{}
23541 Depth
23542 \end_layout
23543
23544 \end_inset
23545
23546
23547 \newline
23548
23549 \newline
23550
23551 \end_layout
23552
23553 \begin_layout Description
23554 Height This is the heigth of the text that is inside the box.
23555  A value of e.\InsetSpace \thinspace{}
23556 g.\InsetSpace ~
23557 2 for this size will set the box heigth to 2 times the text
23558  height: 
23559 \begin_inset Box Boxed
23560 position "c"
23561 hor_pos "c"
23562 has_inner_box 1
23563 inner_pos "c"
23564 use_parbox 0
23565 width "20col%"
23566 special "none"
23567 height "2in"
23568 height_special "height"
23569 status collapsed
23570
23571 \begin_layout Standard
23572 \align center
23573 Box height set to 2\InsetSpace \thinspace{}
23574 Height
23575 \end_layout
23576
23577 \end_inset
23578
23579
23580 \end_layout
23581
23582 \begin_layout Description
23583 Total\InsetSpace ~
23584 Height This is the Height\InsetSpace \thinspace{}
23585 +\InsetSpace \thinspace{}
23586 Depth: 
23587 \begin_inset Box Boxed
23588 position "c"
23589 hor_pos "c"
23590 has_inner_box 1
23591 inner_pos "c"
23592 use_parbox 0
23593 width "20col%"
23594 special "none"
23595 height "1in"
23596 height_special "totalheight"
23597 status collapsed
23598
23599 \begin_layout Standard
23600 \align center
23601 Box height set to 1\InsetSpace \thinspace{}
23602 Total\InsetSpace ~
23603 Height
23604 \end_layout
23605
23606 \end_inset
23607
23608
23609 \end_layout
23610
23611 \begin_layout Description
23612 Width This set the width of the box as heigth: 
23613 \begin_inset Box Boxed
23614 position "c"
23615 hor_pos "c"
23616 has_inner_box 1
23617 inner_pos "c"
23618 use_parbox 0
23619 width "12col%"
23620 special "none"
23621 height "1in"
23622 height_special "width"
23623 status collapsed
23624
23625 \begin_layout Standard
23626 \align center
23627 Box height set to 1\InsetSpace \thinspace{}
23628 Width
23629 \end_layout
23630
23631 \end_inset
23632
23633
23634 \end_layout
23635
23636 \begin_layout Standard
23637 \begin_inset VSpace bigskip
23638 \end_inset
23639
23640 When you have chosen an 
23641 \family sans
23642 Inner\InsetSpace ~
23643 Box
23644 \family default
23645 , the vertical box alignment can be:
23646 \end_layout
23647
23648 \begin_layout Description
23649 Top This is an example text line.
23650  
23651 \begin_inset Box Boxed
23652 position "t"
23653 hor_pos "c"
23654 has_inner_box 1
23655 inner_pos "c"
23656 use_parbox 0
23657 width "12col%"
23658 special "none"
23659 height "1in"
23660 height_special "totalheight"
23661 status collapsed
23662
23663 \begin_layout Standard
23664 \align center
23665 This box is top-aligned.
23666 \end_layout
23667
23668 \end_inset
23669
23670 \InsetSpace ~
23671 This is an example text line.
23672 \end_layout
23673
23674 \begin_layout Description
23675 Middle This is an example text line.
23676  
23677 \begin_inset Box Boxed
23678 position "c"
23679 hor_pos "c"
23680 has_inner_box 1
23681 inner_pos "c"
23682 use_parbox 0
23683 width "12col%"
23684 special "none"
23685 height "1in"
23686 height_special "totalheight"
23687 status collapsed
23688
23689 \begin_layout Standard
23690 \align center
23691 This box is middle-aligned.
23692 \end_layout
23693
23694 \end_inset
23695
23696 \InsetSpace ~
23697 This is an example text line.
23698 \end_layout
23699
23700 \begin_layout Description
23701 Bottom This is an example text line.
23702  
23703 \begin_inset Box Boxed
23704 position "b"
23705 hor_pos "c"
23706 has_inner_box 1
23707 inner_pos "c"
23708 use_parbox 0
23709 width "12col%"
23710 special "none"
23711 height "1in"
23712 height_special "totalheight"
23713 status collapsed
23714
23715 \begin_layout Standard
23716 \align center
23717 This box is bottom-aligned.
23718 \end_layout
23719
23720 \end_inset
23721
23722 \InsetSpace ~
23723 This is an example text line.
23724 \end_layout
23725
23726 \begin_layout Standard
23727 The horizontal box alignment can be set via LyX's paragraph dialog when
23728  you set the box into its own paragraph.
23729 \end_layout
23730
23731 \begin_layout Standard
23732 \begin_inset VSpace bigskip
23733 \end_inset
23734
23735 When you have chosen an 
23736 \family sans
23737 Inner\InsetSpace ~
23738 Box
23739 \family default
23740 , the box content can be vertical aligned to:
23741 \end_layout
23742
23743 \begin_layout Description
23744 top This is an example text line.
23745  
23746 \begin_inset Box Boxed
23747 position "c"
23748 hor_pos "c"
23749 has_inner_box 1
23750 inner_pos "t"
23751 use_parbox 0
23752 width "12col%"
23753 special "none"
23754 height "1.5in"
23755 height_special "totalheight"
23756 status collapsed
23757
23758 \begin_layout Standard
23759 \align center
23760 This box text is top-aligned.
23761 \end_layout
23762
23763 \end_inset
23764
23765 \InsetSpace ~
23766 This is an example text line.
23767 \end_layout
23768
23769 \begin_layout Description
23770 middle This is an example text line.
23771  
23772 \begin_inset Box Boxed
23773 position "c"
23774 hor_pos "c"
23775 has_inner_box 1
23776 inner_pos "c"
23777 use_parbox 0
23778 width "12col%"
23779 special "none"
23780 height "1.5in"
23781 height_special "totalheight"
23782 status collapsed
23783
23784 \begin_layout Standard
23785 \align center
23786 This box text is middle-aligned.
23787 \end_layout
23788
23789 \end_inset
23790
23791 \InsetSpace ~
23792 This is an example text line.
23793 \end_layout
23794
23795 \begin_layout Description
23796 bottom This is an example text line.
23797  
23798 \begin_inset Box Boxed
23799 position "c"
23800 hor_pos "c"
23801 has_inner_box 1
23802 inner_pos "b"
23803 use_parbox 0
23804 width "12col%"
23805 special "none"
23806 height "1.5in"
23807 height_special "totalheight"
23808 status collapsed
23809
23810 \begin_layout Standard
23811 \align center
23812 This box text is bottom-aligned.
23813 \end_layout
23814
23815 \end_inset
23816
23817 \InsetSpace ~
23818 This is an example text line.
23819 \end_layout
23820
23821 \begin_layout Description
23822 stretch This is an example text line.
23823  
23824 \begin_inset Box Boxed
23825 position "c"
23826 hor_pos "c"
23827 has_inner_box 1
23828 inner_pos "s"
23829 use_parbox 0
23830 width "12col%"
23831 special "none"
23832 height "1.5in"
23833 height_special "totalheight"
23834 status collapsed
23835
23836 \begin_layout Standard
23837 \align center
23838 This box
23839 \end_layout
23840
23841 \begin_layout Standard
23842 \align center
23843 text is
23844 \end_layout
23845
23846 \begin_layout Standard
23847 \align center
23848 stretched.
23849 \end_layout
23850
23851 \end_inset
23852
23853 \InsetSpace ~
23854 This is an example text line.
23855 \end_layout
23856
23857 \begin_layout Standard
23858 To stretch the box content, it must consist of more than one paragraph.
23859  In the example above every text line is in an own paragraph.
23860 \end_layout
23861
23862 \begin_layout Standard
23863 \begin_inset VSpace bigskip
23864 \end_inset
23865
23866 To align the box content horizontally you can use LyX's paragraph dialog
23867  when you have chosen an 
23868 \family sans
23869 Inner\InsetSpace ~
23870 Box
23871 \family default
23872 .
23873 \end_layout
23874
23875 \begin_layout Standard
23876 \align center
23877 \begin_inset Box Boxed
23878 position "c"
23879 hor_pos "c"
23880 has_inner_box 1
23881 inner_pos "s"
23882 use_parbox 0
23883 width "15col%"
23884 special "none"
23885 height "1.25in"
23886 height_special "totalheight"
23887 status collapsed
23888
23889 \begin_layout Standard
23890 \align left
23891 This box
23892 \end_layout
23893
23894 \begin_layout Standard
23895 \align center
23896 text is
23897 \end_layout
23898
23899 \begin_layout Standard
23900 \align right
23901 stretched.
23902 \end_layout
23903
23904 \end_inset
23905
23906
23907 \end_layout
23908
23909 \begin_layout Standard
23910 If you haven't set an 
23911 \family sans
23912 Inner\InsetSpace ~
23913 Box
23914 \family default
23915 , you can align the box content horizontally in the box dialog.
23916 \end_layout
23917
23918 \begin_layout Standard
23919 \align center
23920 \begin_inset Box Boxed
23921 position "c"
23922 hor_pos "s"
23923 has_inner_box 0
23924 inner_pos "s"
23925 use_parbox 0
23926 width "90col%"
23927 special "none"
23928 height "1.25in"
23929 height_special "totalheight"
23930 status collapsed
23931
23932 \begin_layout Standard
23933 \align left
23934 This box text is horizontally stretched.
23935 \end_layout
23936
23937 \end_inset
23938
23939
23940 \end_layout
23941
23942 \begin_layout Section
23943 Framed Boxes
23944 \begin_inset LatexCommand label
23945 name "sec:Framed-Boxes"
23946
23947 \end_inset
23948
23949
23950 \begin_inset LatexCommand index
23951 name "Boxes ! Frames"
23952
23953 \end_inset
23954
23955
23956 \end_layout
23957
23958 \begin_layout Standard
23959 The frame style of the box can be specified in the box-dialog in the drop-down
23960  list 
23961 \family sans
23962 Type
23963 \family default
23964 .
23965  The following frame types are possible:
23966 \end_layout
23967
23968 \begin_layout Description
23969 Rectangular\InsetSpace ~
23970 box This draws a rectangle frame around the box.
23971  The frame line thickness has the size of 
23972 \series bold
23973
23974 \backslash
23975 fboxrule
23976 \series default
23977 .
23978  
23979 \begin_inset Box Boxed
23980 position "c"
23981 hor_pos "c"
23982 has_inner_box 1
23983 inner_pos "c"
23984 use_parbox 0
23985 width "20col%"
23986 special "none"
23987 height "1in"
23988 height_special "totalheight"
23989 status collapsed
23990
23991 \begin_layout Standard
23992 \align center
23993 Rectangular box
23994 \end_layout
23995
23996 \end_inset
23997
23998
23999 \end_layout
24000
24001 \begin_layout Description
24002 Oval\InsetSpace ~
24003 box,\InsetSpace ~
24004 thin This draws an oval frame around the box.
24005  The frame line thickness has the size 0.4\InsetSpace \thinspace{}
24006 pt.
24007  
24008 \begin_inset Box ovalbox
24009 position "c"
24010 hor_pos "c"
24011 has_inner_box 1
24012 inner_pos "c"
24013 use_parbox 0
24014 width "20col%"
24015 special "none"
24016 height "1in"
24017 height_special "totalheight"
24018 status collapsed
24019
24020 \begin_layout Standard
24021 \align center
24022 Oval box, thin
24023 \end_layout
24024
24025 \end_inset
24026
24027
24028 \end_layout
24029
24030 \begin_layout Description
24031 Oval\InsetSpace ~
24032 box,\InsetSpace ~
24033 thick This draws an oval frame around the box.
24034  The frame line thickness has the size 0.8\InsetSpace \thinspace{}
24035 pt.
24036  
24037 \begin_inset Box Ovalbox
24038 position "c"
24039 hor_pos "c"
24040 has_inner_box 1
24041 inner_pos "c"
24042 use_parbox 0
24043 width "20col%"
24044 special "none"
24045 height "1in"
24046 height_special "totalheight"
24047 status collapsed
24048
24049 \begin_layout Standard
24050 \align center
24051 Oval box, thick
24052 \end_layout
24053
24054 \end_inset
24055
24056
24057 \end_layout
24058
24059 \begin_layout Description
24060 Shadow\InsetSpace ~
24061 box This draws a rectangle frame with a shadow around the box.
24062  The frame line thickness has the size of 
24063 \series bold
24064
24065 \backslash
24066 fboxrule
24067 \series default
24068 , the shadow has a width of 4\InsetSpace \thinspace{}
24069 pt.
24070  
24071 \begin_inset Box Shadowbox
24072 position "c"
24073 hor_pos "c"
24074 has_inner_box 1
24075 inner_pos "c"
24076 use_parbox 0
24077 width "20col%"
24078 special "none"
24079 height "1in"
24080 height_special "totalheight"
24081 status collapsed
24082
24083 \begin_layout Standard
24084 \align center
24085 Shadow box
24086 \end_layout
24087
24088 \end_inset
24089
24090
24091 \end_layout
24092
24093 \begin_layout Description
24094 Double\InsetSpace ~
24095 box This draws a double-line rectangle frame around the box.
24096  The line thickness of the inner frame is 0.75\InsetSpace \thinspace{}
24097
24098 \series bold
24099
24100 \backslash
24101 fboxrule
24102 \series default
24103 , the thickness of the outer frame is 1.5\InsetSpace \thinspace{}
24104
24105 \series bold
24106
24107 \backslash
24108 fboxrule
24109 \series default
24110 .
24111  The distance between the lines is 1.5\InsetSpace \thinspace{}
24112
24113 \series bold
24114
24115 \backslash
24116 fboxrule
24117 \series default
24118 \InsetSpace \thinspace{}
24119 +\InsetSpace \thinspace{}
24120 0.5\InsetSpace \thinspace{}
24121 pt.
24122  
24123 \begin_inset Box Doublebox
24124 position "c"
24125 hor_pos "c"
24126 has_inner_box 1
24127 inner_pos "c"
24128 use_parbox 0
24129 width "20col%"
24130 special "none"
24131 height "1in"
24132 height_special "totalheight"
24133 status collapsed
24134
24135 \begin_layout Standard
24136 \align center
24137 Double box
24138 \end_layout
24139
24140 \end_inset
24141
24142
24143 \end_layout
24144
24145 \begin_layout Standard
24146 \begin_inset VSpace bigskip
24147 \end_inset
24148
24149 LyX's box label will change to the used frame style when you set a frame.
24150  To be able to use the different frame styles, the LaTeX-package 
24151 \series bold
24152 fancybox
24153 \series default
24154
24155 \begin_inset LatexCommand index
24156 name "LaTeX-packages ! fancybox"
24157
24158 \end_inset
24159
24160  must be installed.
24161 \end_layout
24162
24163 \begin_layout Standard
24164 \begin_inset VSpace bigskip
24165 \end_inset
24166
24167 The default value for the size 
24168 \series bold
24169
24170 \backslash
24171 fboxrule
24172 \series default
24173  is 0.4\InsetSpace \thinspace{}
24174 pt.
24175  It can be changed with the following command in ERT to e.\InsetSpace \thinspace{}
24176 g.\InsetSpace ~
24177 2\InsetSpace \thinspace{}
24178 pt:
24179 \end_layout
24180
24181 \begin_layout Standard
24182
24183 \series bold
24184
24185 \backslash
24186 setlength{
24187 \backslash
24188 fboxrule}{2pt}
24189 \end_layout
24190
24191 \begin_layout Standard
24192 \begin_inset ERT
24193 status collapsed
24194
24195 \begin_layout Standard
24196
24197
24198 \backslash
24199 setlength{
24200 \backslash
24201 fboxrule}{2pt}
24202 \end_layout
24203
24204 \end_inset
24205
24206
24207 \begin_inset Box Boxed
24208 position "c"
24209 hor_pos "c"
24210 has_inner_box 1
24211 inner_pos "c"
24212 use_parbox 0
24213 width "25col%"
24214 special "none"
24215 height "1in"
24216 height_special "totalheight"
24217 status collapsed
24218
24219 \begin_layout Standard
24220 \align center
24221 Rectangular box with 
24222 \series bold
24223
24224 \backslash
24225 fboxrule
24226 \series default
24227 \InsetSpace \thinspace{}
24228 =\InsetSpace \thinspace{}
24229 2\InsetSpace \thinspace{}
24230 pt
24231 \end_layout
24232
24233 \end_inset
24234
24235
24236 \begin_inset ERT
24237 status collapsed
24238
24239 \begin_layout Standard
24240
24241
24242 \backslash
24243 setlength{
24244 \backslash
24245 fboxrule}{0.4pt}
24246 \end_layout
24247
24248 \end_inset
24249
24250
24251 \end_layout
24252
24253 \begin_layout Standard
24254 \begin_inset VSpace bigskip
24255 \end_inset
24256
24257 The space between the frame and the box content is for all frame styles
24258  by default 3\InsetSpace \thinspace{}
24259 pt.
24260  You can change it by setting the length 
24261 \series bold
24262
24263 \backslash
24264 fboxsep
24265 \series default
24266  to another value.
24267  For example the command
24268 \end_layout
24269
24270 \begin_layout Standard
24271
24272 \series bold
24273
24274 \backslash
24275 setlength{
24276 \backslash
24277 fboxsep}{10pt}
24278 \end_layout
24279
24280 \begin_layout Standard
24281 sets the value to 10\InsetSpace \thinspace{}
24282 pt, like for the following box:
24283 \end_layout
24284
24285 \begin_layout Standard
24286 \begin_inset ERT
24287 status collapsed
24288
24289 \begin_layout Standard
24290
24291
24292 \backslash
24293 setlength{
24294 \backslash
24295 fboxsep}{10pt}
24296 \end_layout
24297
24298 \end_inset
24299
24300
24301 \begin_inset Box Boxed
24302 position "c"
24303 hor_pos "c"
24304 has_inner_box 1
24305 inner_pos "c"
24306 use_parbox 0
24307 width "25col%"
24308 special "none"
24309 height "1in"
24310 height_special "totalheight"
24311 status collapsed
24312
24313 \begin_layout Standard
24314 \align center
24315 Rectangular box with 
24316 \series bold
24317
24318 \backslash
24319 fboxsep
24320 \series default
24321 \InsetSpace \thinspace{}
24322 =\InsetSpace \thinspace{}
24323 10\InsetSpace \thinspace{}
24324 pt
24325 \end_layout
24326
24327 \end_inset
24328
24329
24330 \begin_inset ERT
24331 status collapsed
24332
24333 \begin_layout Standard
24334
24335
24336 \backslash
24337 setlength{
24338 \backslash
24339 fboxsep}{3pt}
24340 \end_layout
24341
24342 \end_inset
24343
24344
24345 \end_layout
24346
24347 \begin_layout Standard
24348 \begin_inset VSpace bigskip
24349 \end_inset
24350
24351 The diameter of the round corners of the oval boxes can be set with the
24352  command 
24353 \series bold
24354
24355 \backslash
24356 cornersize
24357 \series default
24358 .
24359  The command
24360 \end_layout
24361
24362 \begin_layout Standard
24363
24364 \series bold
24365
24366 \backslash
24367 cornersize*{1cm}
24368 \end_layout
24369
24370 \begin_layout Standard
24371 sets the diameter to 1\InsetSpace \thinspace{}
24372 cm.
24373  The command
24374 \end_layout
24375
24376 \begin_layout Standard
24377
24378 \series bold
24379
24380 \backslash
24381 cornersize{num}
24382 \end_layout
24383
24384 \begin_layout Standard
24385 sets the diameter to 
24386 \family sans
24387 num\InsetSpace \thinspace{}
24388 ×\InsetSpace \thinspace{}
24389 minimum(width and heigth of box)
24390 \family default
24391 .
24392  The default is 
24393 \series bold
24394
24395 \backslash
24396 cornersize{0.5}
24397 \series default
24398 .
24399 \end_layout
24400
24401 \begin_layout Standard
24402 \begin_inset ERT
24403 status collapsed
24404
24405 \begin_layout Standard
24406
24407
24408 \backslash
24409 cornersize*{1.5cm}
24410 \end_layout
24411
24412 \end_inset
24413
24414
24415 \begin_inset Box Ovalbox
24416 position "c"
24417 hor_pos "c"
24418 has_inner_box 1
24419 inner_pos "c"
24420 use_parbox 0
24421 width "25col%"
24422 special "none"
24423 height "1in"
24424 height_special "totalheight"
24425 status collapsed
24426
24427 \begin_layout Standard
24428 \align center
24429 Oval box with 
24430 \series bold
24431
24432 \backslash
24433 cornersize
24434 \series default
24435 \InsetSpace \thinspace{}
24436 =\InsetSpace \thinspace{}
24437 1.5\InsetSpace \thinspace{}
24438 cm
24439 \end_layout
24440
24441 \end_inset
24442
24443
24444 \begin_inset ERT
24445 status collapsed
24446
24447 \begin_layout Standard
24448
24449
24450 \backslash
24451 cornersize{0.5}
24452 \end_layout
24453
24454 \end_inset
24455
24456
24457 \end_layout
24458
24459 \begin_layout Standard
24460 \begin_inset VSpace bigskip
24461 \end_inset
24462
24463 The size of the shadow can be adjusted by changing the length 
24464 \series bold
24465
24466 \backslash
24467 shadowsize
24468 \series default
24469 .
24470  It it set to 2\InsetSpace \thinspace{}
24471 pt for the following box by this command:
24472 \end_layout
24473
24474 \begin_layout Standard
24475
24476 \series bold
24477
24478 \backslash
24479 setlength{
24480 \backslash
24481 shadowsize}{2pt}
24482 \end_layout
24483
24484 \begin_layout Standard
24485 \begin_inset ERT
24486 status collapsed
24487
24488 \begin_layout Standard
24489
24490
24491 \backslash
24492 setlength{
24493 \backslash
24494 shadowsize}{2pt}
24495 \end_layout
24496
24497 \end_inset
24498
24499
24500 \begin_inset Box Shadowbox
24501 position "c"
24502 hor_pos "c"
24503 has_inner_box 1
24504 inner_pos "c"
24505 use_parbox 0
24506 width "25col%"
24507 special "none"
24508 height "1in"
24509 height_special "totalheight"
24510 status collapsed
24511
24512 \begin_layout Standard
24513 \align center
24514 Shadow box with 
24515 \series bold
24516
24517 \backslash
24518 shadowsize
24519 \series default
24520 \InsetSpace \thinspace{}
24521 =\InsetSpace \thinspace{}
24522 2\InsetSpace \thinspace{}
24523 pt
24524 \end_layout
24525
24526 \end_inset
24527
24528
24529 \begin_inset ERT
24530 status collapsed
24531
24532 \begin_layout Standard
24533
24534
24535 \backslash
24536 setlength{
24537 \backslash
24538 shadowsize}{4pt}
24539 \end_layout
24540
24541 \end_inset
24542
24543
24544 \end_layout
24545
24546 \begin_layout Standard
24547 \begin_inset VSpace bigskip
24548 \end_inset
24549
24550 Changed lengths and widths are valid for all boxes following the commands
24551  that change them.
24552 \end_layout
24553
24554 \begin_layout Section
24555 Minipages
24556 \begin_inset LatexCommand label
24557 name "sec:Minipages"
24558
24559 \end_inset
24560
24561
24562 \begin_inset LatexCommand index
24563 name "Boxes ! Minipages"
24564
24565 \end_inset
24566
24567
24568 \end_layout
24569
24570 \begin_layout Standard
24571 Minipages are treated by LaTeX as pages within pages and can therefore for
24572  example have their own footnotes.
24573 \end_layout
24574
24575 \begin_layout Standard
24576 Minipages are useful when you write documents with different languages.
24577 \end_layout
24578
24579 \begin_layout Standard
24580 Below are two example minipages side by side.
24581  Their width is set to 45\InsetSpace \thinspace{}
24582 col% and they are separated by a horizontal fill,
24583  that was inserted via the menu 
24584 \family sans
24585 Insert\SpecialChar \menuseparator
24586 Special\InsetSpace ~
24587 Formatting\SpecialChar \menuseparator
24588 Horizontal\InsetSpace ~
24589 Fill
24590 \family default
24591 .
24592 \end_layout
24593
24594 \begin_layout Standard
24595 \begin_inset Box Frameless
24596 position "t"
24597 hor_pos "c"
24598 has_inner_box 1
24599 inner_pos "c"
24600 use_parbox 0
24601 width "45col%"
24602 special "none"
24603 height "1in"
24604 height_special "totalheight"
24605 status open
24606
24607 \begin_layout Standard
24608
24609 \lang german
24610 Dies ist ein deutscher Text.
24611  Dies ist ein deutscher Text.
24612  Dies ist ein deutscher Text.
24613  Dies ist ein deutscher Text.
24614  Dies ist ein deutscher Text.
24615  Dies ist ein deutscher Text.
24616  Dies ist ein deutscher Text.
24617  Dies ist ein deutscher Text.
24618  Dies ist ein deutscher Text.
24619  Dies ist ein deutscher Text.
24620  Dies ist ein deutscher Text.
24621  Dies ist ein deutscher Text.
24622  Dies ist ein deutscher Text
24623 \begin_inset Foot
24624 status collapsed
24625
24626 \begin_layout Standard
24627
24628 \lang german
24629 Dies ist eine deutsche Fußnote.
24630 \end_layout
24631
24632 \end_inset
24633
24634 .
24635  Dies ist ein deutscher Text.
24636  Dies ist ein deutscher Text.
24637 \end_layout
24638
24639 \end_inset
24640
24641
24642 \hfill
24643
24644 \begin_inset Box Frameless
24645 position "t"
24646 hor_pos "c"
24647 has_inner_box 1
24648 inner_pos "c"
24649 use_parbox 0
24650 width "45col%"
24651 special "none"
24652 height "1in"
24653 height_special "totalheight"
24654 status open
24655
24656 \begin_layout Standard
24657 This is an English Text.
24658  This is an English Text.
24659  This is an English Text.
24660  This is an English Text.
24661  This is an English Text.
24662  This is an English Text.
24663  This is an English Text.
24664  This is an English Text.
24665  This is an English Text.
24666  This is an English Text.
24667  This is an English Text.
24668  This is an English Text.
24669  This is an English Text.
24670  This is an English Text.
24671  This is an English Text.
24672  This is an English Text.
24673 \begin_inset Foot
24674 status collapsed
24675
24676 \begin_layout Standard
24677 This is an English footnote.
24678 \end_layout
24679
24680 \end_inset
24681
24682  This is an English Text.
24683  
24684 \end_layout
24685
24686 \end_inset
24687
24688
24689 \end_layout
24690
24691 \begin_layout Standard
24692 \begin_inset VSpace bigskip
24693 \end_inset
24694
24695 Another application for minipages are footnotes within tables.
24696  Due to a LaTeX restriction footnotes within tables doesn't appear at the
24697  bottom of the current page.
24698  But when you put the table with the footnote to a minipage, the footnote
24699  will appear at its bottom, numbered with Latin letters.
24700  The footnote number is reset to 1 in every minipage but not outside the
24701  minipages.
24702 \end_layout
24703
24704 \begin_layout Standard
24705 The footnote of this table doesn't appear: 
24706 \begin_inset Tabular
24707 <lyxtabular version="3" rows="3" columns="4">
24708 <features>
24709 <column alignment="center" valignment="top" leftline="true" width="0pt">
24710 <column alignment="center" valignment="top" leftline="true" width="0pt">
24711 <column alignment="center" valignment="top" leftline="true" width="0pt">
24712 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24713 <row topline="true">
24714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24715 \begin_inset Text
24716
24717 \begin_layout Standard
24718 1
24719 \end_layout
24720
24721 \end_inset
24722 </cell>
24723 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24724 \begin_inset Text
24725
24726 \begin_layout Standard
24727 2
24728 \end_layout
24729
24730 \end_inset
24731 </cell>
24732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24733 \begin_inset Text
24734
24735 \begin_layout Standard
24736 3
24737 \begin_inset Foot
24738 status collapsed
24739
24740 \begin_layout Standard
24741 This is a footnote within a table.
24742 \end_layout
24743
24744 \end_inset
24745
24746
24747 \end_layout
24748
24749 \end_inset
24750 </cell>
24751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24752 \begin_inset Text
24753
24754 \begin_layout Standard
24755 4
24756 \end_layout
24757
24758 \end_inset
24759 </cell>
24760 </row>
24761 <row topline="true">
24762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24763 \begin_inset Text
24764
24765 \begin_layout Standard
24766 a
24767 \end_layout
24768
24769 \end_inset
24770 </cell>
24771 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24772 \begin_inset Text
24773
24774 \begin_layout Standard
24775 b
24776 \end_layout
24777
24778 \end_inset
24779 </cell>
24780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24781 \begin_inset Text
24782
24783 \begin_layout Standard
24784 c
24785 \end_layout
24786
24787 \end_inset
24788 </cell>
24789 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24790 \begin_inset Text
24791
24792 \begin_layout Standard
24793 d
24794 \end_layout
24795
24796 \end_inset
24797 </cell>
24798 </row>
24799 <row topline="true" bottomline="true">
24800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24801 \begin_inset Text
24802
24803 \begin_layout Standard
24804 e
24805 \end_layout
24806
24807 \end_inset
24808 </cell>
24809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24810 \begin_inset Text
24811
24812 \begin_layout Standard
24813 f
24814 \end_layout
24815
24816 \end_inset
24817 </cell>
24818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24819 \begin_inset Text
24820
24821 \begin_layout Standard
24822 g
24823 \end_layout
24824
24825 \end_inset
24826 </cell>
24827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24828 \begin_inset Text
24829
24830 \begin_layout Standard
24831 h
24832 \end_layout
24833
24834 \end_inset
24835 </cell>
24836 </row>
24837 </lyxtabular>
24838
24839 \end_inset
24840
24841
24842 \end_layout
24843
24844 \begin_layout Standard
24845 \align center
24846 \begin_inset Box Frameless
24847 position "t"
24848 hor_pos "c"
24849 has_inner_box 1
24850 inner_pos "c"
24851 use_parbox 0
24852 width "30col%"
24853 special "none"
24854 height "1in"
24855 height_special "totalheight"
24856 status open
24857
24858 \begin_layout Standard
24859 \align center
24860 \begin_inset Tabular
24861 <lyxtabular version="3" rows="3" columns="4">
24862 <features>
24863 <column alignment="center" valignment="top" leftline="true" width="0pt">
24864 <column alignment="center" valignment="top" leftline="true" width="0pt">
24865 <column alignment="center" valignment="top" leftline="true" width="0pt">
24866 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24867 <row topline="true">
24868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24869 \begin_inset Text
24870
24871 \begin_layout Standard
24872 1
24873 \end_layout
24874
24875 \end_inset
24876 </cell>
24877 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24878 \begin_inset Text
24879
24880 \begin_layout Standard
24881 2
24882 \end_layout
24883
24884 \end_inset
24885 </cell>
24886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24887 \begin_inset Text
24888
24889 \begin_layout Standard
24890 3
24891 \begin_inset Foot
24892 status collapsed
24893
24894 \begin_layout Standard
24895 This is a footnote within a table.
24896 \end_layout
24897
24898 \end_inset
24899
24900
24901 \end_layout
24902
24903 \end_inset
24904 </cell>
24905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24906 \begin_inset Text
24907
24908 \begin_layout Standard
24909 4
24910 \end_layout
24911
24912 \end_inset
24913 </cell>
24914 </row>
24915 <row topline="true">
24916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24917 \begin_inset Text
24918
24919 \begin_layout Standard
24920 a
24921 \end_layout
24922
24923 \end_inset
24924 </cell>
24925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24926 \begin_inset Text
24927
24928 \begin_layout Standard
24929 b
24930 \end_layout
24931
24932 \end_inset
24933 </cell>
24934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24935 \begin_inset Text
24936
24937 \begin_layout Standard
24938 c
24939 \end_layout
24940
24941 \end_inset
24942 </cell>
24943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24944 \begin_inset Text
24945
24946 \begin_layout Standard
24947 d
24948 \end_layout
24949
24950 \end_inset
24951 </cell>
24952 </row>
24953 <row topline="true" bottomline="true">
24954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24955 \begin_inset Text
24956
24957 \begin_layout Standard
24958 e
24959 \end_layout
24960
24961 \end_inset
24962 </cell>
24963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24964 \begin_inset Text
24965
24966 \begin_layout Standard
24967 f
24968 \end_layout
24969
24970 \end_inset
24971 </cell>
24972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24973 \begin_inset Text
24974
24975 \begin_layout Standard
24976 g
24977 \end_layout
24978
24979 \end_inset
24980 </cell>
24981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24982 \begin_inset Text
24983
24984 \begin_layout Standard
24985 h
24986 \end_layout
24987
24988 \end_inset
24989 </cell>
24990 </row>
24991 </lyxtabular>
24992
24993 \end_inset
24994
24995
24996 \end_layout
24997
24998 \end_inset
24999
25000
25001 \end_layout
25002
25003 \begin_layout Standard
25004 \begin_inset VSpace bigskip
25005 \end_inset
25006
25007 The document-wide paragraph settings are ignored within minipages.
25008  That means that there will be no space between paragraphs in minipages
25009  although you set it to e.\InsetSpace \thinspace{}
25010 g.\InsetSpace ~
25011
25012 \family sans
25013 MedSkip
25014 \family default
25015  in the document settings.
25016 \end_layout
25017
25018 \begin_layout Standard
25019 Minipages can also be used to set a background color for text parts, see
25020  section\InsetSpace ~
25021
25022 \begin_inset LatexCommand ref
25023 reference "sub:Color-for-Paragraphs"
25024
25025 \end_inset
25026
25027 .
25028 \end_layout
25029
25030 \begin_layout Standard
25031 \begin_inset Note Greyedout
25032 status open
25033
25034 \begin_layout Standard
25035
25036 \series bold
25037 Note:
25038 \series default
25039  You cannot have floats or margin notes inside minipages but minipages can
25040  be used inside tables, floats, and other boxes.
25041 \end_layout
25042
25043 \end_inset
25044
25045
25046 \end_layout
25047
25048 \begin_layout Section
25049 Parboxes
25050 \begin_inset LatexCommand label
25051 name "sec:Parboxes"
25052
25053 \end_inset
25054
25055
25056 \begin_inset LatexCommand index
25057 name "Boxes ! Parboxes"
25058
25059 \end_inset
25060
25061
25062 \end_layout
25063
25064 \begin_layout Standard
25065 Parboxes are very similar to minipages with the difference that they cannot
25066  have footnotes.
25067  The main difference to minipages is that minipages are in contrary to parboxes
25068  no real boxes but LaTeX-environments.
25069 \end_layout
25070
25071 \begin_layout Standard
25072 \align center
25073 \begin_inset Box Frameless
25074 position "t"
25075 hor_pos "c"
25076 has_inner_box 1
25077 inner_pos "t"
25078 use_parbox 1
25079 width "33col%"
25080 special "none"
25081 height "1in"
25082 height_special "totalheight"
25083 status collapsed
25084
25085 \begin_layout Standard
25086 This a text within a parbox.
25087  This a text within a parbox.
25088 \end_layout
25089
25090 \begin_layout Standard
25091 This footnote won't appear:
25092 \begin_inset Foot
25093 status collapsed
25094
25095 \begin_layout Standard
25096 This footnote is inside a parbox and will therefore not appear.
25097 \end_layout
25098
25099 \end_inset
25100
25101
25102 \end_layout
25103
25104 \end_inset
25105
25106
25107 \end_layout
25108
25109 \begin_layout Section
25110 Boxes for Words and Characters
25111 \begin_inset LatexCommand index
25112 name "Boxes ! for Characters"
25113
25114 \end_inset
25115
25116
25117 \end_layout
25118
25119 \begin_layout Subsection
25120 Prevent Hyphenation
25121 \begin_inset LatexCommand label
25122 name "sec:Prevent-Hyphenation"
25123
25124 \end_inset
25125
25126
25127 \begin_inset LatexCommand index
25128 name "Boxes ! to Prevent Hyphenation"
25129
25130 \end_inset
25131
25132
25133 \end_layout
25134
25135 \begin_layout Standard
25136 You can use a special kind of boxes to prevent words or text to be hyphenated.
25137 \newline
25138 Her
25139 e is an example text:
25140 \end_layout
25141
25142 \begin_layout Standard
25143 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25144 g.\InsetSpace ~
25145 veryver
25146 ylongwords.
25147 \end_layout
25148
25149 \begin_layout Standard
25150 To prevent the hyphenation of the word 
25151 \begin_inset Quotes eld
25152 \end_inset
25153
25154 veryverylongwords
25155 \begin_inset Quotes erd
25156 \end_inset
25157
25158 , add the command
25159 \end_layout
25160
25161 \begin_layout Standard
25162
25163 \series bold
25164
25165 \backslash
25166 mbox{
25167 \end_layout
25168
25169 \begin_layout Standard
25170 in ERT before the word.
25171  Behind the word insert a closing brace 
25172 \begin_inset Quotes eld
25173 \end_inset
25174
25175
25176 \series bold
25177 }
25178 \series default
25179
25180 \begin_inset Quotes erd
25181 \end_inset
25182
25183  in ERT.
25184 \begin_inset ERT
25185 status collapsed
25186
25187 \begin_layout Standard
25188
25189
25190 \backslash
25191 pagebreak 
25192 \end_layout
25193
25194 \end_inset
25195
25196
25197 \end_layout
25198
25199 \begin_layout Standard
25200 This is the result:
25201 \end_layout
25202
25203 \begin_layout Standard
25204 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25205 g.\InsetSpace ~
25206
25207 \begin_inset ERT
25208 status collapsed
25209
25210 \begin_layout Standard
25211
25212
25213 \backslash
25214 mbox{
25215 \end_layout
25216
25217 \end_inset
25218
25219 veryverylongwords.
25220 \begin_inset ERT
25221 status collapsed
25222
25223 \begin_layout Standard
25224
25225 }
25226 \end_layout
25227
25228 \end_inset
25229
25230
25231 \end_layout
25232
25233 \begin_layout Standard
25234 Of course the word now protrudes over the side margin.
25235  To avoid this, add via the menu 
25236 \family sans
25237 Insert\SpecialChar \menuseparator
25238 Special\InsetSpace ~
25239 Formatting\SpecialChar \menuseparator
25240 Line\InsetSpace ~
25241 Break
25242 \family default
25243  (shortcut 
25244 \series bold
25245 Ctrl-Return
25246 \series default
25247 ) a line break before the word:
25248 \end_layout
25249
25250 \begin_layout Standard
25251 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25252 g.\InsetSpace ~
25253
25254 \newline
25255
25256 \begin_inset ERT
25257 status collapsed
25258
25259 \begin_layout Standard
25260
25261
25262 \backslash
25263 mbox{
25264 \end_layout
25265
25266 \end_inset
25267
25268 veryverylongwords.
25269 \begin_inset ERT
25270 status collapsed
25271
25272 \begin_layout Standard
25273
25274 }
25275 \end_layout
25276
25277 \end_inset
25278
25279
25280 \end_layout
25281
25282 \begin_layout Subsection
25283 Vertical Alignment
25284 \begin_inset LatexCommand label
25285 name "sub:Vertical-Alignment"
25286
25287 \end_inset
25288
25289
25290 \begin_inset LatexCommand index
25291 name "Boxes ! for Vertical Alignment"
25292
25293 \end_inset
25294
25295
25296 \begin_inset LatexCommand index
25297 name "Boxes ! Raiseboxes"
25298
25299 \end_inset
25300
25301
25302 \end_layout
25303
25304 \begin_layout Standard
25305 With the help of the command 
25306 \series bold
25307
25308 \backslash
25309 raisebox
25310 \series default
25311  you can align words, characters or other boxes vertically to the surrounding
25312  text.
25313  
25314 \series bold
25315
25316 \backslash
25317 raisebox
25318 \series default
25319  is used with the following scheme:
25320 \end_layout
25321
25322 \begin_layout Standard
25323
25324 \series bold
25325
25326 \backslash
25327 raisebox{lift}[height][depth]{box content}
25328 \end_layout
25329
25330 \begin_layout Standard
25331 The lift can be a positive value to raise the box or a negative value to
25332  lower the box.
25333 \end_layout
25334
25335 \begin_layout Standard
25336 To align for example the word 
25337 \begin_inset Quotes eld
25338 \end_inset
25339
25340 preventing
25341 \begin_inset Quotes erd
25342 \end_inset
25343
25344  so that the bottom of the 
25345 \begin_inset Quotes eld
25346 \end_inset
25347
25348 deepest
25349 \begin_inset Quotes erd
25350 \end_inset
25351
25352  character 
25353 \begin_inset Quotes eld
25354 \end_inset
25355
25356 p
25357 \begin_inset Quotes erd
25358 \end_inset
25359
25360  is at the baseline, insert the command
25361 \end_layout
25362
25363 \begin_layout Standard
25364
25365 \series bold
25366
25367 \backslash
25368 raisebox{
25369 \backslash
25370 depth}{
25371 \end_layout
25372
25373 \begin_layout Standard
25374 in ERT before the word.
25375  Behind the word insert a closing brace 
25376 \begin_inset Quotes eld
25377 \end_inset
25378
25379
25380 \series bold
25381 }
25382 \series default
25383
25384 \begin_inset Quotes erd
25385 \end_inset
25386
25387  in ERT.
25388 \newline
25389 This is the result:
25390 \end_layout
25391
25392 \begin_layout Standard
25393 This is a text line with the word 
25394 \begin_inset ERT
25395 status collapsed
25396
25397 \begin_layout Standard
25398
25399
25400 \backslash
25401 raisebox{
25402 \backslash
25403 depth}{
25404 \end_layout
25405
25406 \end_inset
25407
25408
25409 \begin_inset Quotes eld
25410 \end_inset
25411
25412 preventing
25413 \begin_inset Quotes erd
25414 \end_inset
25415
25416
25417 \begin_inset ERT
25418 status collapsed
25419
25420 \begin_layout Standard
25421
25422 }
25423 \end_layout
25424
25425 \end_inset
25426
25427  as raised word.
25428 \end_layout
25429
25430 \begin_layout Standard
25431 \begin_inset VSpace bigskip
25432 \end_inset
25433
25434 When you raise or lower characters in a line, the line distance will be
25435  spread:
25436 \end_layout
25437
25438 \begin_layout Standard
25439 This is a text line with the word 
25440 \begin_inset ERT
25441 status collapsed
25442
25443 \begin_layout Standard
25444
25445
25446 \backslash
25447 raisebox{-
25448 \backslash
25449 depth}{
25450 \end_layout
25451
25452 \end_inset
25453
25454
25455 \begin_inset Quotes eld
25456 \end_inset
25457
25458 preventing
25459 \begin_inset Quotes erd
25460 \end_inset
25461
25462
25463 \begin_inset ERT
25464 status collapsed
25465
25466 \begin_layout Standard
25467
25468 }
25469 \end_layout
25470
25471 \end_inset
25472
25473  as lowered word.
25474 \newline
25475 This is a text line with the word 
25476 \begin_inset ERT
25477 status collapsed
25478
25479 \begin_layout Standard
25480
25481
25482 \backslash
25483 raisebox{0.5cm}{
25484 \end_layout
25485
25486 \end_inset
25487
25488
25489 \begin_inset Quotes eld
25490 \end_inset
25491
25492 testing
25493 \begin_inset Quotes erd
25494 \end_inset
25495
25496
25497 \begin_inset ERT
25498 status collapsed
25499
25500 \begin_layout Standard
25501
25502 }
25503 \end_layout
25504
25505 \end_inset
25506
25507  as raised word.
25508 \end_layout
25509
25510 \begin_layout Standard
25511 If you want to prevent this for a certain reason, set the box height to
25512  a zero value.
25513  For example use
25514 \end_layout
25515
25516 \begin_layout Standard
25517
25518 \series bold
25519
25520 \backslash
25521 raisebox{-
25522 \backslash
25523 depth}[0pt]{
25524 \end_layout
25525
25526 \begin_layout Standard
25527 This is a text line with the word 
25528 \begin_inset ERT
25529 status collapsed
25530
25531 \begin_layout Standard
25532
25533
25534 \backslash
25535 raisebox{-
25536 \backslash
25537 depth}[0pt]{
25538 \end_layout
25539
25540 \end_inset
25541
25542
25543 \begin_inset Quotes eld
25544 \end_inset
25545
25546 preventing
25547 \begin_inset Quotes erd
25548 \end_inset
25549
25550
25551 \begin_inset ERT
25552 status collapsed
25553
25554 \begin_layout Standard
25555
25556 }
25557 \end_layout
25558
25559 \end_inset
25560
25561  as lowered word.
25562 \newline
25563 This is a text line with the word 
25564 \begin_inset ERT
25565 status collapsed
25566
25567 \begin_layout Standard
25568
25569
25570 \backslash
25571 raisebox{0.5cm}[0pt]{
25572 \end_layout
25573
25574 \end_inset
25575
25576
25577 \begin_inset Quotes eld
25578 \end_inset
25579
25580 testing
25581 \begin_inset Quotes erd
25582 \end_inset
25583
25584
25585 \begin_inset ERT
25586 status collapsed
25587
25588 \begin_layout Standard
25589
25590 }
25591 \end_layout
25592
25593 \end_inset
25594
25595  as raised word.
25596 \end_layout
25597
25598 \begin_layout Section
25599 Colored Boxes
25600 \begin_inset LatexCommand label
25601 name "sec:Colored-Boxes"
25602
25603 \end_inset
25604
25605
25606 \begin_inset LatexCommand index
25607 name "Boxes ! Color"
25608
25609 \end_inset
25610
25611
25612 \end_layout
25613
25614 \begin_layout Subsection
25615 Color for Text
25616 \begin_inset LatexCommand index
25617 name "Color ! for Text"
25618
25619 \end_inset
25620
25621
25622 \end_layout
25623
25624 \begin_layout Standard
25625 To color the background of text the text must be put into a so called colorbox.
25626  This requires that the LaTeX-package 
25627 \series bold
25628 color
25629 \series default
25630
25631 \begin_inset LatexCommand index
25632 name "LaTeX-packages ! color"
25633
25634 \end_inset
25635
25636  is loaded in the document preamble with the command
25637 \end_layout
25638
25639 \begin_layout Standard
25640
25641 \series bold
25642
25643 \backslash
25644 @ifundef\SpecialChar \textcompwordmark{}
25645 ined{textcolor}
25646 \newline
25647
25648 \begin_inset ERT
25649 status collapsed
25650
25651 \begin_layout Standard
25652
25653
25654 \backslash
25655 hphantom{ }
25656 \end_layout
25657
25658 \end_inset
25659
25660 {
25661 \backslash
25662 usepackage{color}}{}
25663 \end_layout
25664
25665 \begin_layout Standard
25666 The package 
25667 \series bold
25668 color
25669 \series default
25670  will be loaded automatically by LyX when you color text
25671 \begin_inset Foot
25672 status collapsed
25673
25674 \begin_layout Standard
25675 To avoid that it is loaded twice the command 
25676 \series bold
25677
25678 \backslash
25679 @ifundef\SpecialChar \textcompwordmark{}
25680 ined
25681 \series default
25682  is used.
25683 \end_layout
25684
25685 \end_inset
25686
25687 .
25688 \end_layout
25689
25690 \begin_layout Standard
25691 \begin_inset VSpace medskip
25692 \end_inset
25693
25694 Colorboxes are created with the command 
25695 \series bold
25696
25697 \backslash
25698 colorbox
25699 \series default
25700 .
25701  This will be used with the following scheme:
25702 \end_layout
25703
25704 \begin_layout Standard
25705
25706 \series bold
25707
25708 \backslash
25709 colorbox{color}{box content}
25710 \end_layout
25711
25712 \begin_layout Standard
25713 The box content can also be a box and colorboxes can also be within other
25714  boxes.
25715 \end_layout
25716
25717 \begin_layout Standard
25718 The following colors are predefined:
25719 \newline
25720
25721 \family sans
25722 black
25723 \family default
25724
25725 \family sans
25726 blue
25727 \family default
25728
25729 \family sans
25730 cyan
25731 \family default
25732 \series bold
25733
25734 \family sans
25735 \series default
25736 green
25737 \family default
25738
25739 \family sans
25740 magenta
25741 \family default
25742
25743 \family sans
25744 red
25745 \family default
25746
25747 \family sans
25748 white
25749 \family default
25750 , and 
25751 \family sans
25752 yellow
25753 \family default
25754 .
25755 \newline
25756 You can also define your own color as described in section\InsetSpace ~
25757
25758 \begin_inset LatexCommand ref
25759 reference "sec:Colored-Tables"
25760
25761 \end_inset
25762
25763 .
25764 \end_layout
25765
25766 \begin_layout Standard
25767 To have e.\InsetSpace \thinspace{}
25768 g.\InsetSpace ~
25769 a red background for a word, insert the command
25770 \end_layout
25771
25772 \begin_layout Standard
25773
25774 \series bold
25775
25776 \backslash
25777 colorbox{red}{
25778 \end_layout
25779
25780 \begin_layout Standard
25781 before the word in ERT.
25782  Behind the word insert a closing brace 
25783 \begin_inset Quotes eld
25784 \end_inset
25785
25786
25787 \series bold
25788 }
25789 \series default
25790
25791 \begin_inset Quotes erd
25792 \end_inset
25793
25794  in ERT.
25795 \newline
25796 This is the result:
25797 \end_layout
25798
25799 \begin_layout Standard
25800 This is a line where the word 
25801 \begin_inset ERT
25802 status collapsed
25803
25804 \begin_layout Standard
25805
25806
25807 \backslash
25808 colorbox{red}{
25809 \end_layout
25810
25811 \end_inset
25812
25813
25814 \begin_inset Quotes eld
25815 \end_inset
25816
25817 Attention!
25818 \begin_inset Quotes erd
25819 \end_inset
25820
25821
25822 \begin_inset ERT
25823 status collapsed
25824
25825 \begin_layout Standard
25826
25827 }
25828 \end_layout
25829
25830 \end_inset
25831
25832  has a red background.
25833 \end_layout
25834
25835 \begin_layout Standard
25836 \begin_inset VSpace bigskip
25837 \end_inset
25838
25839 If you would have the box frame in a different color, you can use the command
25840  
25841 \series bold
25842
25843 \backslash
25844 fcolorbox
25845 \series default
25846  with the following scheme:
25847 \end_layout
25848
25849 \begin_layout Standard
25850
25851 \series bold
25852
25853 \backslash
25854 fcolorbox{frame color}{box color}{box content}
25855 \end_layout
25856
25857 \begin_layout Standard
25858
25859 \series bold
25860
25861 \backslash
25862 fcolorbox
25863 \series default
25864  is an extension to 
25865 \series bold
25866
25867 \backslash
25868 colorbox
25869 \series default
25870 .
25871  The frame thickness and the space between the frame and the box content
25872  can be adjusted with the lengths 
25873 \series bold
25874
25875 \backslash
25876 fboxrule
25877 \series default
25878  and 
25879 \series bold
25880
25881 \backslash
25882 fboxsep
25883 \series default
25884 , respectively, as described in section\InsetSpace ~
25885
25886 \begin_inset LatexCommand ref
25887 reference "sec:Framed-Boxes"
25888
25889 \end_inset
25890
25891 .
25892 \end_layout
25893
25894 \begin_layout Standard
25895 For the following example the command
25896 \end_layout
25897
25898 \begin_layout Standard
25899
25900 \series bold
25901
25902 \backslash
25903 fcolorbox{cyan}{magenta}{
25904 \end_layout
25905
25906 \begin_layout Standard
25907 was used.
25908 \end_layout
25909
25910 \begin_layout Standard
25911 Here is an example where the frame line thickness was set to 1\InsetSpace \thinspace{}
25912 mm:
25913 \newline
25914
25915 \begin_inset ERT
25916 status collapsed
25917
25918 \begin_layout Standard
25919
25920
25921 \backslash
25922 fboxrule 1mm 
25923 \backslash
25924 fboxsep 1mm
25925 \end_layout
25926
25927 \end_inset
25928
25929
25930 \begin_inset ERT
25931 status collapsed
25932
25933 \begin_layout Standard
25934
25935
25936 \backslash
25937 fcolorbox{cyan}{magenta}{
25938 \end_layout
25939
25940 \end_inset
25941
25942 This is text within a colored, framed box.
25943 \begin_inset ERT
25944 status collapsed
25945
25946 \begin_layout Standard
25947
25948 }
25949 \end_layout
25950
25951 \end_inset
25952
25953
25954 \end_layout
25955
25956 \begin_layout Standard
25957 \begin_inset VSpace bigskip
25958 \end_inset
25959
25960 Of course you can also have colored text inside a colorbox:
25961 \newline
25962
25963 \begin_inset ERT
25964 status collapsed
25965
25966 \begin_layout Standard
25967
25968
25969 \backslash
25970 fcolorbox{cyan}{magenta}{
25971 \end_layout
25972
25973 \end_inset
25974
25975
25976 \color yellow
25977 This is colored text within a colored, framed box.
25978 \color none
25979
25980 \begin_inset ERT
25981 status collapsed
25982
25983 \begin_layout Standard
25984
25985 }
25986 \end_layout
25987
25988 \end_inset
25989
25990
25991 \begin_inset ERT
25992 status collapsed
25993
25994 \begin_layout Standard
25995
25996
25997 \backslash
25998 fboxrule 0.4pt 
25999 \backslash
26000 fboxsep 3pt
26001 \end_layout
26002
26003 \end_inset
26004
26005
26006 \end_layout
26007
26008 \begin_layout Standard
26009
26010 \series bold
26011 \begin_inset VSpace medskip
26012 \end_inset
26013
26014
26015 \end_layout
26016
26017 \begin_layout Standard
26018 \begin_inset Note Greyedout
26019 status open
26020
26021 \begin_layout Standard
26022
26023 \series bold
26024 Note:
26025 \series default
26026  Text in colorboxes cannot have line breaks.
26027  To color multiple text lines or paragraphs, use a box inside a colorbox
26028  as described in the following.
26029 \end_layout
26030
26031 \end_inset
26032
26033
26034 \end_layout
26035
26036 \begin_layout Subsection
26037 Color for Paragraphs
26038 \begin_inset LatexCommand label
26039 name "sub:Color-for-Paragraphs"
26040
26041 \end_inset
26042
26043
26044 \begin_inset LatexCommand index
26045 name "Color ! for Paragraphs"
26046
26047 \end_inset
26048
26049
26050 \end_layout
26051
26052 \begin_layout Standard
26053 To set the background color for more than one text line, put the text into
26054  a minipage.
26055  Before the minipage insert the 
26056 \series bold
26057
26058 \backslash
26059 colorbox
26060 \series default
26061  command
26062 \end_layout
26063
26064 \begin_layout Standard
26065
26066 \series bold
26067
26068 \backslash
26069 colorbox{color}{
26070 \end_layout
26071
26072 \begin_layout Standard
26073 in ERT.
26074  Behind the minipage insert a closing brace 
26075 \begin_inset Quotes eld
26076 \end_inset
26077
26078
26079 \series bold
26080 }
26081 \series default
26082
26083 \begin_inset Quotes erd
26084 \end_inset
26085
26086  in ERT.
26087 \end_layout
26088
26089 \begin_layout Standard
26090 \begin_inset ERT
26091 status collapsed
26092
26093 \begin_layout Standard
26094
26095
26096 \backslash
26097 colorbox{lightgrey}{
26098 \end_layout
26099
26100 \end_inset
26101
26102
26103 \begin_inset Box Frameless
26104 position "t"
26105 hor_pos "c"
26106 has_inner_box 1
26107 inner_pos "t"
26108 use_parbox 0
26109 width "100col%"
26110 special "none"
26111 height "1in"
26112 height_special "totalheight"
26113 status collapsed
26114
26115 \begin_layout Standard
26116 This is text with background color.
26117  This is text with background color.
26118 \end_layout
26119
26120 \begin_layout Standard
26121 \begin_inset VSpace defskip
26122 \end_inset
26123
26124 The text can have footnotes
26125 \begin_inset Foot
26126 status collapsed
26127
26128 \begin_layout Standard
26129 Another example footnote
26130 \end_layout
26131
26132 \end_inset
26133
26134  and can include tables and figures.
26135 \end_layout
26136
26137 \begin_layout Standard
26138 \align center
26139 \begin_inset Tabular
26140 <lyxtabular version="3" rows="3" columns="3">
26141 <features>
26142 <column alignment="center" valignment="top" leftline="true" width="0">
26143 <column alignment="center" valignment="top" leftline="true" width="0">
26144 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26145 <row topline="true">
26146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26147 \begin_inset Text
26148
26149 \begin_layout Standard
26150 a
26151 \end_layout
26152
26153 \end_inset
26154 </cell>
26155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26156 \begin_inset Text
26157
26158 \begin_layout Standard
26159 !
26160 \end_layout
26161
26162 \end_inset
26163 </cell>
26164 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26165 \begin_inset Text
26166
26167 \begin_layout Standard
26168 3
26169 \end_layout
26170
26171 \end_inset
26172 </cell>
26173 </row>
26174 <row topline="true">
26175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26176 \begin_inset Text
26177
26178 \begin_layout Standard
26179 <
26180 \end_layout
26181
26182 \end_inset
26183 </cell>
26184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26185 \begin_inset Text
26186
26187 \begin_layout Standard
26188 b2
26189 \begin_inset Quotes erd
26190 \end_inset
26191
26192 |
26193 \end_layout
26194
26195 \end_inset
26196 </cell>
26197 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26198 \begin_inset Text
26199
26200 \begin_layout Standard
26201 >
26202 \end_layout
26203
26204 \end_inset
26205 </cell>
26206 </row>
26207 <row topline="true" bottomline="true">
26208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26209 \begin_inset Text
26210
26211 \begin_layout Standard
26212 1
26213 \end_layout
26214
26215 \end_inset
26216 </cell>
26217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26218 \begin_inset Text
26219
26220 \begin_layout Standard
26221 §
26222 \end_layout
26223
26224 \end_inset
26225 </cell>
26226 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26227 \begin_inset Text
26228
26229 \begin_layout Standard
26230 c
26231 \end_layout
26232
26233 \end_inset
26234 </cell>
26235 </row>
26236 </lyxtabular>
26237
26238 \end_inset
26239
26240
26241 \end_layout
26242
26243 \end_inset
26244
26245
26246 \begin_inset ERT
26247 status collapsed
26248
26249 \begin_layout Standard
26250
26251 }
26252 \end_layout
26253
26254 \end_inset
26255
26256
26257 \end_layout
26258
26259 \begin_layout Section
26260 URLs (Uniform Resource Locators)
26261 \begin_inset LatexCommand index
26262 name "URLs"
26263
26264 \end_inset
26265
26266
26267 \end_layout
26268
26269 \begin_layout Standard
26270 Links to web pages or email addresses can be inserted via the menu 
26271 \family sans
26272 Insert\SpecialChar \menuseparator
26273 URL
26274 \family default
26275 .
26276  The appearing URL dialog has two fields; the 
26277 \family sans
26278 URL
26279 \family default
26280  field and the 
26281 \family sans
26282 Name
26283 \family default
26284  field for the URL description, which will be typeset as plain text immediately
26285  before the URL.
26286 \end_layout
26287
26288 \begin_layout Standard
26289 Here is an example URL: 
26290 \begin_inset LatexCommand url
26291 name "LyX's homepage"
26292 target "http://www.lyx.org"
26293
26294 \end_inset
26295
26296
26297 \end_layout
26298
26299 \begin_layout Standard
26300 The option 
26301 \family sans
26302 Generate\InsetSpace ~
26303 hyperlink
26304 \family default
26305  in the URL dialog has only an affect when you export your document to the
26306  format 
26307 \begin_inset Quotes eld
26308 \end_inset
26309
26310
26311 \family sans
26312 LinuxDoc
26313 \family default
26314
26315 \begin_inset Quotes erd
26316 \end_inset
26317
26318 .
26319 \end_layout
26320
26321 \begin_layout Standard
26322 You cannot change the style of the link text.
26323  The text of the 
26324 \family sans
26325 Name
26326 \family default
26327  field will have the default text style of the document while the text of
26328  the 
26329 \family sans
26330 URL
26331 \family default
26332  field will have the style 
26333 \begin_inset Quotes eld
26334 \end_inset
26335
26336
26337 \family sans
26338 Typewriter
26339 \family default
26340
26341 \begin_inset Quotes erd
26342 \end_inset
26343
26344 .
26345 \end_layout
26346
26347 \begin_layout Standard
26348 When you use the LaTeX-package 
26349 \series bold
26350 hyperref
26351 \series default
26352
26353 \begin_inset LatexCommand index
26354 name "LaTeX-packages ! hyperref"
26355
26356 \end_inset
26357
26358  to link cross-references in the output, URLs will automatically become
26359  clickable hyperlinks in DVI and PDF-output.
26360 \end_layout
26361
26362 \begin_layout Standard
26363 \begin_inset Note Greyedout
26364 status open
26365
26366 \begin_layout Standard
26367
26368 \series bold
26369 Note: 
26370 \series default
26371 When you use the following characters: "%", "#", "^", you have to write
26372  them with a preceding backslash, e.\InsetSpace \thinspace{}
26373 g.\InsetSpace ~
26374
26375 \begin_inset Quotes eld
26376 \end_inset
26377
26378
26379 \backslash
26380 #
26381 \begin_inset Quotes erd
26382 \end_inset
26383
26384 .
26385  URLs must not end with a backslash.
26386 \end_layout
26387
26388 \end_inset
26389
26390
26391 \end_layout
26392
26393 \begin_layout Standard
26394 \begin_inset VSpace bigskip
26395 \end_inset
26396
26397 To create real hyperlinks without the force to write the link location to
26398  the text, you can use the command
26399 \end_layout
26400
26401 \begin_layout Standard
26402
26403 \series bold
26404
26405 \backslash
26406 href{link location}{link text}
26407 \end_layout
26408
26409 \begin_layout Standard
26410 in ERT.
26411  To get for example a link to LyX's web page, write the command
26412 \end_layout
26413
26414 \begin_layout Standard
26415
26416 \series bold
26417
26418 \backslash
26419 href{http://www.lyx.org}{
26420 \end_layout
26421
26422 \begin_layout Standard
26423 in ERT.
26424  Insert after the command the link text 
26425 \begin_inset Quotes eld
26426 \end_inset
26427
26428 LyX's homepage
26429 \begin_inset Quotes erd
26430 \end_inset
26431
26432  as normal text followed by a closing brace 
26433 \begin_inset Quotes eld
26434 \end_inset
26435
26436
26437 \series bold
26438 }
26439 \series default
26440
26441 \begin_inset Quotes erd
26442 \end_inset
26443
26444  in ERT.
26445  This is the result: 
26446 \begin_inset ERT
26447 status collapsed
26448
26449 \begin_layout Standard
26450
26451
26452 \backslash
26453 href{http://www.lyx.org}{
26454 \end_layout
26455
26456 \end_inset
26457
26458 LyX's homepage
26459 \begin_inset ERT
26460 status collapsed
26461
26462 \begin_layout Standard
26463
26464 }
26465 \end_layout
26466
26467 \end_inset
26468
26469
26470 \end_layout
26471
26472 \begin_layout Standard
26473 To link to email addresses, add the prefix 
26474 \begin_inset Quotes eld
26475 \end_inset
26476
26477
26478 \family sans
26479 mailto:
26480 \family default
26481
26482 \begin_inset Quotes erd
26483 \end_inset
26484
26485  to the link location:
26486 \newline
26487 Email to 
26488 \begin_inset ERT
26489 status collapsed
26490
26491 \begin_layout Standard
26492
26493
26494 \backslash
26495 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26496 \end_layout
26497
26498 \end_inset
26499
26500 lyx-docs mailing list
26501 \begin_inset ERT
26502 status collapsed
26503
26504 \begin_layout Standard
26505
26506 }
26507 \end_layout
26508
26509 \end_inset
26510
26511 .
26512 \end_layout
26513
26514 \begin_layout Standard
26515 Using 
26516 \series bold
26517
26518 \backslash
26519 href
26520 \series default
26521  instead of LyX's URL box has the advantage that you can specify the text
26522  style of the link text like for all other text parts.
26523  You can therefore set hyphenation points and forced linebreaks to have
26524  long link text broken at the page margin.
26525  You are furthermore able to change the text style for all URLs in your
26526  document with an option in 
26527 \series bold
26528 hyperref
26529 \series default
26530 's load command and the restrictions mentioned above doesn't apply for 
26531 \series bold
26532
26533 \backslash
26534 href
26535 \series default
26536 .
26537 \end_layout
26538
26539 \begin_layout Standard
26540
26541 \newpage
26542
26543 \end_layout
26544
26545 \begin_layout Chapter
26546 \start_of_appendix
26547 Units available in 
26548 \begin_inset ERT
26549 status collapsed
26550
26551 \begin_layout Standard
26552
26553
26554 \backslash
26555 texorpdfstring{
26556 \end_layout
26557
26558 \end_inset
26559
26560 LyX
26561 \begin_inset ERT
26562 status collapsed
26563
26564 \begin_layout Standard
26565
26566 }{LyX}
26567 \end_layout
26568
26569 \end_inset
26570
26571
26572 \begin_inset LatexCommand index
26573 name "Units"
26574
26575 \end_inset
26576
26577
26578 \begin_inset LatexCommand label
26579 name "cha:Units-available-in"
26580
26581 \end_inset
26582
26583
26584 \begin_inset Note Note
26585 status collapsed
26586
26587 \begin_layout Standard
26588 The command 
26589 \backslash
26590 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
26591  are displayed wrongly in PDF-bookmarks.
26592  For more information about this, have a look at 
26593 \begin_inset LatexCommand cite
26594 key "hyperref"
26595
26596 \end_inset
26597
26598 .
26599 \end_layout
26600
26601 \end_inset
26602
26603
26604 \end_layout
26605
26606 \begin_layout Standard
26607 To understand the units described in this documentation, Table\InsetSpace ~
26608
26609 \begin_inset LatexCommand ref
26610 reference "tab:Units"
26611
26612 \end_inset
26613
26614  explains all units available in LyX.
26615 \end_layout
26616
26617 \begin_layout Standard
26618 \begin_inset Float table
26619 placement h
26620 wide false
26621 sideways false
26622 status open
26623
26624 \begin_layout Standard
26625 \begin_inset Caption
26626
26627 \begin_layout Standard
26628 \begin_inset LatexCommand label
26629 name "tab:Units"
26630
26631 \end_inset
26632
26633 Units
26634 \end_layout
26635
26636 \end_inset
26637
26638
26639 \end_layout
26640
26641 \begin_layout Standard
26642 \begin_inset VSpace medskip
26643 \end_inset
26644
26645
26646 \end_layout
26647
26648 \begin_layout Standard
26649 \align center
26650 \begin_inset Tabular
26651 <lyxtabular version="3" rows="20" columns="2">
26652 <features>
26653 <column alignment="center" valignment="top" leftline="true" width="0">
26654 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26655 <row topline="true" bottomline="true">
26656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26657 \begin_inset Text
26658
26659 \begin_layout Standard
26660 unit
26661 \end_layout
26662
26663 \end_inset
26664 </cell>
26665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26666 \begin_inset Text
26667
26668 \begin_layout Standard
26669 name/description
26670 \end_layout
26671
26672 \end_inset
26673 </cell>
26674 </row>
26675 <row topline="true">
26676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26677 \begin_inset Text
26678
26679 \begin_layout Standard
26680 mm
26681 \end_layout
26682
26683 \end_inset
26684 </cell>
26685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26686 \begin_inset Text
26687
26688 \begin_layout Standard
26689 millimeter
26690 \end_layout
26691
26692 \end_inset
26693 </cell>
26694 </row>
26695 <row topline="true">
26696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26697 \begin_inset Text
26698
26699 \begin_layout Standard
26700 cm
26701 \end_layout
26702
26703 \end_inset
26704 </cell>
26705 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26706 \begin_inset Text
26707
26708 \begin_layout Standard
26709 centimeter
26710 \end_layout
26711
26712 \end_inset
26713 </cell>
26714 </row>
26715 <row topline="true">
26716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26717 \begin_inset Text
26718
26719 \begin_layout Standard
26720 in
26721 \end_layout
26722
26723 \end_inset
26724 </cell>
26725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26726 \begin_inset Text
26727
26728 \begin_layout Standard
26729 inch
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 pt
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 point (72.27\InsetSpace \thinspace{}
26750 pt = 1\InsetSpace \thinspace{}
26751 in)
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 pc
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 pica (1\InsetSpace \thinspace{}
26772 pc = 12\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 sp
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 scaled point (65536\InsetSpace \thinspace{}
26794 sp = 1\InsetSpace \thinspace{}
26795 pt)
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 bp
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 big point (72\InsetSpace \thinspace{}
26816 bp = 1\InsetSpace \thinspace{}
26817 in)
26818 \end_layout
26819
26820 \end_inset
26821 </cell>
26822 </row>
26823 <row topline="true">
26824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26825 \begin_inset Text
26826
26827 \begin_layout Standard
26828 dd
26829 \end_layout
26830
26831 \end_inset
26832 </cell>
26833 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26834 \begin_inset Text
26835
26836 \begin_layout Standard
26837 didot (72\InsetSpace \thinspace{}
26838 dd 
26839 \begin_inset Formula $\approx$
26840 \end_inset
26841
26842  37.6\InsetSpace \thinspace{}
26843 mm)
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 cc
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 cicero (1\InsetSpace \thinspace{}
26864 cc = 12\InsetSpace \thinspace{}
26865 dd)
26866 \end_layout
26867
26868 \end_inset
26869 </cell>
26870 </row>
26871 <row topline="true">
26872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26873 \begin_inset Text
26874
26875 \begin_layout Standard
26876 Scale%
26877 \end_layout
26878
26879 \end_inset
26880 </cell>
26881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26882 \begin_inset Text
26883
26884 \begin_layout Standard
26885 % of original image width
26886 \end_layout
26887
26888 \end_inset
26889 </cell>
26890 </row>
26891 <row topline="true">
26892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26893 \begin_inset Text
26894
26895 \begin_layout Standard
26896 text%
26897 \end_layout
26898
26899 \end_inset
26900 </cell>
26901 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26902 \begin_inset Text
26903
26904 \begin_layout Standard
26905 % of text width
26906 \end_layout
26907
26908 \end_inset
26909 </cell>
26910 </row>
26911 <row topline="true">
26912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26913 \begin_inset Text
26914
26915 \begin_layout Standard
26916 col%
26917 \end_layout
26918
26919 \end_inset
26920 </cell>
26921 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26922 \begin_inset Text
26923
26924 \begin_layout Standard
26925 % of column width
26926 \end_layout
26927
26928 \end_inset
26929 </cell>
26930 </row>
26931 <row topline="true">
26932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26933 \begin_inset Text
26934
26935 \begin_layout Standard
26936 page%
26937 \end_layout
26938
26939 \end_inset
26940 </cell>
26941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26942 \begin_inset Text
26943
26944 \begin_layout Standard
26945 % of paper width
26946 \end_layout
26947
26948 \end_inset
26949 </cell>
26950 </row>
26951 <row topline="true">
26952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26953 \begin_inset Text
26954
26955 \begin_layout Standard
26956 line%
26957 \end_layout
26958
26959 \end_inset
26960 </cell>
26961 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26962 \begin_inset Text
26963
26964 \begin_layout Standard
26965 % of line width
26966 \end_layout
26967
26968 \end_inset
26969 </cell>
26970 </row>
26971 <row topline="true">
26972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26973 \begin_inset Text
26974
26975 \begin_layout Standard
26976 theight%
26977 \end_layout
26978
26979 \end_inset
26980 </cell>
26981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26982 \begin_inset Text
26983
26984 \begin_layout Standard
26985 % of text height
26986 \end_layout
26987
26988 \end_inset
26989 </cell>
26990 </row>
26991 <row topline="true">
26992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26993 \begin_inset Text
26994
26995 \begin_layout Standard
26996 pheight%
26997 \end_layout
26998
26999 \end_inset
27000 </cell>
27001 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27002 \begin_inset Text
27003
27004 \begin_layout Standard
27005 % of paper height
27006 \end_layout
27007
27008 \end_inset
27009 </cell>
27010 </row>
27011 <row topline="true">
27012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27013 \begin_inset Text
27014
27015 \begin_layout Standard
27016 ex
27017 \end_layout
27018
27019 \end_inset
27020 </cell>
27021 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27022 \begin_inset Text
27023
27024 \begin_layout Standard
27025 height of letter 
27026 \emph on
27027 x
27028 \emph default
27029  in current font
27030 \end_layout
27031
27032 \end_inset
27033 </cell>
27034 </row>
27035 <row topline="true">
27036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27037 \begin_inset Text
27038
27039 \begin_layout Standard
27040 em
27041 \end_layout
27042
27043 \end_inset
27044 </cell>
27045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27046 \begin_inset Text
27047
27048 \begin_layout Standard
27049 width of letter 
27050 \emph on
27051 M
27052 \emph default
27053  in current font
27054 \end_layout
27055
27056 \end_inset
27057 </cell>
27058 </row>
27059 <row topline="true" bottomline="true">
27060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27061 \begin_inset Text
27062
27063 \begin_layout Standard
27064 mu
27065 \end_layout
27066
27067 \end_inset
27068 </cell>
27069 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27070 \begin_inset Text
27071
27072 \begin_layout Standard
27073 math unit (1\InsetSpace \thinspace{}
27074 mu = 1/18\InsetSpace \thinspace{}
27075 em)
27076 \end_layout
27077
27078 \end_inset
27079 </cell>
27080 </row>
27081 </lyxtabular>
27082
27083 \end_inset
27084
27085
27086 \end_layout
27087
27088 \end_inset
27089
27090
27091 \end_layout
27092
27093 \begin_layout Chapter
27094 Output File Formats with Graphics
27095 \begin_inset LatexCommand label
27096 name "cha:Output-File-Formats"
27097
27098 \end_inset
27099
27100
27101 \end_layout
27102
27103 \begin_layout Section
27104 DVI
27105 \begin_inset LatexCommand index
27106 name "File Formats ! DVI"
27107
27108 \end_inset
27109
27110
27111 \begin_inset LatexCommand index
27112 name "DVI|see{File Formats}"
27113
27114 \end_inset
27115
27116
27117 \end_layout
27118
27119 \begin_layout Standard
27120 This file type has the extension 
27121 \begin_inset Quotes eld
27122 \end_inset
27123
27124
27125 \family typewriter
27126 .dvi
27127 \family default
27128
27129 \begin_inset Quotes erd
27130 \end_inset
27131
27132 .
27133  It is called 
27134 \begin_inset Quotes eld
27135 \end_inset
27136
27137 device-independent
27138 \begin_inset Quotes erd
27139 \end_inset
27140
27141  (DVI), because it is completely portable; you can move them from one machine
27142  to another without needing to do any sort of conversion.
27143  At the time when this file-format was developed, this was no matter of
27144  course.
27145  DVIs are used for quick previews and as pre-stage for other output formats,
27146  like PostScript.
27147 \end_layout
27148
27149 \begin_layout Standard
27150 \begin_inset Note Greyedout
27151 status open
27152
27153 \begin_layout Standard
27154
27155 \series bold
27156 Note:
27157 \series default
27158  DVI-files doesn't contain images, they will only be a linked.
27159 \end_layout
27160
27161 \end_inset
27162
27163  So don't forget this, if you move your 
27164 \family typewriter
27165 .dvi
27166 \family default
27167  file to another computer.
27168  This property can also slow down your computer when you view the DVI.
27169  Because the DVI-viewer has to convert the image in the background to make
27170  it visible when you scroll in the DVI.
27171  So we recommend to use PDF for files with many images.
27172 \end_layout
27173
27174 \begin_layout Standard
27175 You can export your document to DVI by using the menu 
27176 \family sans
27177 File\SpecialChar \menuseparator
27178 Export\SpecialChar \menuseparator
27179 DVI
27180 \family default
27181 .
27182  You can view your document as PostScript via the 
27183 \family sans
27184 View
27185 \family default
27186  menu or by using the toolbar button 
27187 \begin_inset Graphics
27188         filename ../images/buffer-view_dvi.xpm
27189         scale 85
27190
27191 \end_inset
27192
27193 .
27194 \end_layout
27195
27196 \begin_layout Section
27197 PostScript
27198 \begin_inset LatexCommand label
27199 name "sec:PostScript"
27200
27201 \end_inset
27202
27203
27204 \begin_inset LatexCommand index
27205 name "File Formats ! PostScript\\protect\\pagebreak"
27206
27207 \end_inset
27208
27209
27210 \begin_inset LatexCommand index
27211 name "PostScript|see{File Formats}"
27212
27213 \end_inset
27214
27215
27216 \end_layout
27217
27218 \begin_layout Standard
27219 This file type has the extension 
27220 \begin_inset Quotes eld
27221 \end_inset
27222
27223
27224 \family typewriter
27225 .ps
27226 \family default
27227
27228 \begin_inset Quotes erd
27229 \end_inset
27230
27231 .
27232  PostScript was developed by the company 
27233 \family typewriter
27234 Adobe
27235 \family default
27236  as printer language.
27237  The file contains therefore commands that the printer uses to print the
27238  file.
27239  PostScript can be seen as 
27240 \begin_inset Quotes eld
27241 \end_inset
27242
27243 programming language
27244 \begin_inset Quotes erd
27245 \end_inset
27246
27247 ; you can calculate with it and draw diagrams and images
27248 \begin_inset Foot
27249 status collapsed
27250
27251 \begin_layout Standard
27252 If you are interested to learn more about this, have a look at the LaTeX-package
27253  
27254 \series bold
27255 PSTricks
27256 \series default
27257  
27258 \begin_inset LatexCommand cite
27259 key "pstricks"
27260
27261 \end_inset
27262
27263 .
27264 \end_layout
27265
27266 \end_inset
27267
27268 .
27269  Due to this ability, the files are often bigger than PDFs.
27270 \end_layout
27271
27272 \begin_layout Standard
27273 PostScript can only contain images in the format 
27274 \begin_inset Quotes eld
27275 \end_inset
27276
27277 Encapsulated PostScript
27278 \begin_inset Quotes erd
27279 \end_inset
27280
27281  (EPS, file extension 
27282 \begin_inset Quotes eld
27283 \end_inset
27284
27285
27286 \family typewriter
27287 .eps
27288 \family default
27289
27290 \begin_inset Quotes erd
27291 \end_inset
27292
27293 ).
27294  As LyX allows you to use any known image format in your document, it has
27295  to convert images in the background to EPS.
27296  If you have e.g 50 images in your document, LyX has to do 50 conversions
27297  whenever you view or export your document.
27298  This will slow down your work flow with LyX drastically.
27299  So if you plan to use PostScript, you can insert your images directly as
27300  EPS to avoid this problem.
27301 \end_layout
27302
27303 \begin_layout Standard
27304 You can export your document to PostScript using the menu 
27305 \family sans
27306 File\SpecialChar \menuseparator
27307 Export\SpecialChar \menuseparator
27308 Postscript
27309 \family default
27310 .
27311  You can view your document as PostScript via the 
27312 \family sans
27313 View
27314 \family default
27315  menu or by using the toolbar button 
27316 \begin_inset Graphics
27317         filename ../images/buffer-view_ps.xpm
27318         scale 85
27319
27320 \end_inset
27321
27322 .
27323 \end_layout
27324
27325 \begin_layout Section
27326 PDF
27327 \begin_inset LatexCommand label
27328 name "sec:PDF"
27329
27330 \end_inset
27331
27332
27333 \begin_inset LatexCommand index
27334 name "File Formats ! PDF"
27335
27336 \end_inset
27337
27338
27339 \begin_inset LatexCommand index
27340 name "PDF"
27341
27342 \end_inset
27343
27344
27345 \end_layout
27346
27347 \begin_layout Standard
27348 This file type has the extension 
27349 \begin_inset Quotes eld
27350 \end_inset
27351
27352
27353 \family typewriter
27354 .pdf
27355 \family default
27356
27357 \begin_inset Quotes erd
27358 \end_inset
27359
27360 .
27361  The 
27362 \begin_inset Quotes eld
27363 \end_inset
27364
27365 Portable Document Format
27366 \begin_inset Quotes erd
27367 \end_inset
27368
27369  (PDF) is developed by 
27370 \family typewriter
27371 Adobe
27372 \family default
27373  as derivative from PostScript.
27374  It is more compressed and it uses much less commands than PostScript.
27375  As the name 
27376 \begin_inset Quotes eld
27377 \end_inset
27378
27379 portable
27380 \begin_inset Quotes erd
27381 \end_inset
27382
27383  implies, it can be processed at any computer system and the printed output
27384  looks exactly the same.
27385 \end_layout
27386
27387 \begin_layout Standard
27388 PDF can contain images in its own PDF format, in the format 
27389 \begin_inset Quotes eld
27390 \end_inset
27391
27392 Joint Photographic Experts Group
27393 \begin_inset Quotes erd
27394 \end_inset
27395
27396  (JPG, file extension 
27397 \begin_inset Quotes eld
27398 \end_inset
27399
27400
27401 \family typewriter
27402 .jpg
27403 \family default
27404
27405 \begin_inset Quotes erd
27406 \end_inset
27407
27408  or 
27409 \begin_inset Quotes eld
27410 \end_inset
27411
27412
27413 \family typewriter
27414 .jpeg
27415 \family default
27416
27417 \begin_inset Quotes erd
27418 \end_inset
27419
27420 ), and in the format 
27421 \begin_inset Quotes eld
27422 \end_inset
27423
27424 Portable Network Graphics
27425 \begin_inset Quotes erd
27426 \end_inset
27427
27428  (PNG, file extension 
27429 \begin_inset Quotes eld
27430 \end_inset
27431
27432
27433 \family typewriter
27434 .png
27435 \family default
27436
27437 \begin_inset Quotes erd
27438 \end_inset
27439
27440 ).
27441  You can although use any other image format, because LyX converts them
27442  in the background to one of these formats.
27443  But as described in the section about PostScript, the image conversion
27444  will slow down your work flow.
27445  So it is recommended to use images in one of the three mentioned formats.
27446 \end_layout
27447
27448 \begin_layout Standard
27449 You can export your document to PDF via the menu 
27450 \family sans
27451 File\SpecialChar \menuseparator
27452 Export
27453 \family default
27454  in three different ways:
27455 \end_layout
27456
27457 \begin_layout Description
27458 PDF This uses the program 
27459 \family typewriter
27460 ps2pdf
27461 \family default
27462  that creates a PDF from a PostScript-version of your file.
27463  The PostScript-version is produced by the program 
27464 \family typewriter
27465 dvips
27466 \family default
27467  which uses a DVI-version as intermediate step.
27468  So this export variant consist of three conversions.
27469 \end_layout
27470
27471 \begin_layout Description
27472 PDF\InsetSpace ~
27473 (dvipdfm) This uses the program 
27474 \family typewriter
27475 dvipdfm
27476 \family default
27477  that converts your file in the background to DVI and in a second step to
27478  PDF.
27479 \end_layout
27480
27481 \begin_layout Description
27482 PDF\InsetSpace ~
27483 (pdflatex) This uses the program 
27484 \family typewriter
27485 pdftex
27486 \family default
27487  that converts your file directly to PDF.
27488 \end_layout
27489
27490 \begin_layout Standard
27491 It is recommended to use 
27492 \family sans
27493 PDF\InsetSpace ~
27494 (pdflatex)
27495 \family default
27496  because 
27497 \family typewriter
27498 pdftex
27499 \family default
27500  supports all features of actual PDF-versions, is quick and works stable
27501  without problems.
27502  The program 
27503 \family typewriter
27504 dvipdfm
27505 \family default
27506  is not under development and therefore a bit outdated.
27507 \end_layout
27508
27509 \begin_layout Standard
27510 You can view your document as PDF via the 
27511 \family sans
27512 View
27513 \family default
27514  menu or by using the toolbar button 
27515 \begin_inset Graphics
27516         filename ../images/buffer-view_pdf2.xpm
27517         scale 85
27518
27519 \end_inset
27520
27521  
27522 \family sans
27523 (
27524 \family default
27525 that uses 
27526 \family sans
27527 PDF\InsetSpace ~
27528 (pdflatex)
27529 \family default
27530 ).
27531 \end_layout
27532
27533 \begin_layout Chapter
27534 Explanation of Equation\InsetSpace ~
27535
27536 \begin_inset LatexCommand eqref
27537 reference "eq:Wgn"
27538
27539 \end_inset
27540
27541
27542 \begin_inset LatexCommand label
27543 name "cha:Explanation-of-Equation"
27544
27545 \end_inset
27546
27547
27548 \end_layout
27549
27550 \begin_layout Standard
27551 The total width of 
27552 \emph on
27553 n
27554 \emph default
27555  table cells 
27556 \begin_inset Formula $W_{\mathrm{tot\, n}}$
27557 \end_inset
27558
27559  can be calculated to
27560 \end_layout
27561
27562 \begin_layout Standard
27563 \begin_inset Formula \begin{equation}
27564 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
27565
27566 \end_inset
27567
27568
27569 \end_layout
27570
27571 \begin_layout Standard
27572 Where 
27573 \begin_inset Formula $W_{g\, n}$
27574 \end_inset
27575
27576  is the given width of all cells.
27577  
27578 \series bold
27579
27580 \backslash
27581 tabcolsep
27582 \series default
27583  is the LaTeX-length between the cell text and the cell border, its default
27584  value is 6\InsetSpace \thinspace{}
27585 pt.
27586  
27587 \series bold
27588
27589 \backslash
27590 arrayrulewidth
27591 \series default
27592  is the thickness of the cell border line, the default is 0.4\InsetSpace \thinspace{}
27593 pt.
27594 \end_layout
27595
27596 \begin_layout Standard
27597 Following equation\InsetSpace ~
27598
27599 \begin_inset LatexCommand eqref
27600 reference "eq:Wtot_n"
27601
27602 \end_inset
27603
27604 , the total width of a multicolumn 
27605 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
27606 \end_inset
27607
27608  is
27609 \end_layout
27610
27611 \begin_layout Standard
27612 \begin_inset Formula \begin{equation}
27613 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
27614
27615 \end_inset
27616
27617
27618 \end_layout
27619
27620 \begin_layout Standard
27621 By setting equation\InsetSpace ~
27622
27623 \begin_inset LatexCommand eqref
27624 reference "eq:Wtot_n"
27625
27626 \end_inset
27627
27628  and 
27629 \begin_inset LatexCommand eqref
27630 reference "eq:Wtot_mult"
27631
27632 \end_inset
27633
27634  equal we can calculate the needed given width 
27635 \begin_inset Formula $W_{g\, n}$
27636 \end_inset
27637
27638  when 
27639 \emph on
27640 n
27641 \emph default
27642  columns are spanned, so that each column has a total width of 
27643 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
27644 \end_inset
27645
27646 :
27647 \end_layout
27648
27649 \begin_layout Standard
27650 \begin_inset Formula \begin{equation}
27651 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
27652
27653 \end_inset
27654
27655
27656 \end_layout
27657
27658 \begin_layout Bibliography
27659 \begin_inset LatexCommand bibitem
27660 key "latexcompanion"
27661
27662 \end_inset
27663
27664 Frank Mittelbach and Michel Goossens: 
27665 \emph on
27666 The LaTeX Companion Second Edition.
27667  
27668 \emph default
27669 Addison-Wesley, 2004
27670 \end_layout
27671
27672 \begin_layout Bibliography
27673 \begin_inset LatexCommand bibitem
27674 key "latexguide"
27675
27676 \end_inset
27677
27678 Helmut Kopka and Patrick W.
27679  Daly: 
27680 \emph on
27681 A Guide to LaTeX Fourth Edition.
27682  
27683 \emph default
27684 Addison-Wesley, 2003
27685 \end_layout
27686
27687 \begin_layout Bibliography
27688 \begin_inset LatexCommand bibitem
27689 key "latexbook"
27690
27691 \end_inset
27692
27693 Leslie Lamport: 
27694 \emph on
27695 LaTeX: A Document Preparation System.
27696  
27697 \emph default
27698 Addison-Wesley, second edition, 1994
27699 \end_layout
27700
27701 \begin_layout Bibliography
27702 \begin_inset LatexCommand bibitem
27703 key "booktabs"
27704
27705 \end_inset
27706
27707
27708 \begin_inset ERT
27709 status collapsed
27710
27711 \begin_layout Standard
27712
27713
27714 \backslash
27715 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
27716 {
27717 \end_layout
27718
27719 \end_inset
27720
27721 Documentation
27722 \begin_inset ERT
27723 status collapsed
27724
27725 \begin_layout Standard
27726
27727 }
27728 \end_layout
27729
27730 \end_inset
27731
27732  of the LaTeX-package 
27733 \series bold
27734 booktabs
27735 \series default
27736
27737 \begin_inset LatexCommand index
27738 name "LaTeX-packages ! booktabs"
27739
27740 \end_inset
27741
27742
27743 \end_layout
27744
27745 \begin_layout Bibliography
27746 \begin_inset LatexCommand bibitem
27747 key "caption"
27748
27749 \end_inset
27750
27751
27752 \begin_inset ERT
27753 status collapsed
27754
27755 \begin_layout Standard
27756
27757
27758 \backslash
27759 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
27760 \end_layout
27761
27762 \end_inset
27763
27764 Documentation
27765 \begin_inset ERT
27766 status collapsed
27767
27768 \begin_layout Standard
27769
27770 }
27771 \end_layout
27772
27773 \end_inset
27774
27775  of the LaTeX-package 
27776 \series bold
27777 caption
27778 \series default
27779
27780 \begin_inset LatexCommand index
27781 name "LaTeX-packages ! caption"
27782
27783 \end_inset
27784
27785
27786 \end_layout
27787
27788 \begin_layout Bibliography
27789 \begin_inset LatexCommand bibitem
27790 key "caption-de"
27791
27792 \end_inset
27793
27794 German 
27795 \begin_inset ERT
27796 status collapsed
27797
27798 \begin_layout Standard
27799
27800
27801 \backslash
27802 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
27803 {
27804 \end_layout
27805
27806 \end_inset
27807
27808 documentation
27809 \begin_inset ERT
27810 status collapsed
27811
27812 \begin_layout Standard
27813
27814 }
27815 \end_layout
27816
27817 \end_inset
27818
27819  of the LaTeX-package 
27820 \series bold
27821 caption
27822 \end_layout
27823
27824 \begin_layout Bibliography
27825 \begin_inset LatexCommand bibitem
27826 key "endfloat"
27827
27828 \end_inset
27829
27830
27831 \begin_inset ERT
27832 status collapsed
27833
27834 \begin_layout Standard
27835
27836
27837 \backslash
27838 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
27839 {
27840 \end_layout
27841
27842 \end_inset
27843
27844 Documentation
27845 \begin_inset ERT
27846 status collapsed
27847
27848 \begin_layout Standard
27849
27850 }
27851 \end_layout
27852
27853 \end_inset
27854
27855  of the LaTeX-package 
27856 \series bold
27857 endf\SpecialChar \textcompwordmark{}
27858 loat
27859 \series default
27860
27861 \begin_inset LatexCommand index
27862 name "LaTeX-packages ! endfloat"
27863
27864 \end_inset
27865
27866
27867 \end_layout
27868
27869 \begin_layout Bibliography
27870 \begin_inset LatexCommand bibitem
27871 key "floatflt"
27872
27873 \end_inset
27874
27875
27876 \begin_inset ERT
27877 status collapsed
27878
27879 \begin_layout Standard
27880
27881
27882 \backslash
27883 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
27884 {
27885 \end_layout
27886
27887 \end_inset
27888
27889 Documentation
27890 \begin_inset ERT
27891 status collapsed
27892
27893 \begin_layout Standard
27894
27895 }
27896 \end_layout
27897
27898 \end_inset
27899
27900  of the LaTeX-package 
27901 \series bold
27902 floatf\SpecialChar \textcompwordmark{}
27903 lt
27904 \series default
27905
27906 \begin_inset LatexCommand index
27907 name "LaTeX-packages ! floatflt"
27908
27909 \end_inset
27910
27911
27912 \end_layout
27913
27914 \begin_layout Bibliography
27915 \begin_inset LatexCommand bibitem
27916 key "footmisc"
27917
27918 \end_inset
27919
27920
27921 \begin_inset ERT
27922 status collapsed
27923
27924 \begin_layout Standard
27925
27926
27927 \backslash
27928 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
27929 {
27930 \end_layout
27931
27932 \end_inset
27933
27934 Documentation
27935 \begin_inset ERT
27936 status collapsed
27937
27938 \begin_layout Standard
27939
27940 }
27941 \end_layout
27942
27943 \end_inset
27944
27945  of the LaTeX-package 
27946 \series bold
27947 footmisc
27948 \series default
27949
27950 \begin_inset LatexCommand index
27951 name "LaTeX-packages ! footmisc"
27952
27953 \end_inset
27954
27955
27956 \end_layout
27957
27958 \begin_layout Bibliography
27959 \begin_inset LatexCommand bibitem
27960 key "hypcap"
27961
27962 \end_inset
27963
27964
27965 \begin_inset ERT
27966 status collapsed
27967
27968 \begin_layout Standard
27969
27970
27971 \backslash
27972 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
27973 \end_layout
27974
27975 \end_inset
27976
27977 Documentation
27978 \begin_inset ERT
27979 status collapsed
27980
27981 \begin_layout Standard
27982
27983 }
27984 \end_layout
27985
27986 \end_inset
27987
27988  of the LaTeX-package 
27989 \series bold
27990 hypcap
27991 \series default
27992
27993 \begin_inset LatexCommand index
27994 name "LaTeX-packages ! hyperref"
27995
27996 \end_inset
27997
27998
27999 \end_layout
28000
28001 \begin_layout Bibliography
28002 \begin_inset LatexCommand bibitem
28003 key "hyperref"
28004
28005 \end_inset
28006
28007
28008 \begin_inset ERT
28009 status collapsed
28010
28011 \begin_layout Standard
28012
28013
28014 \backslash
28015 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
28016 {
28017 \end_layout
28018
28019 \end_inset
28020
28021 Documentation
28022 \begin_inset ERT
28023 status collapsed
28024
28025 \begin_layout Standard
28026
28027 }
28028 \end_layout
28029
28030 \end_inset
28031
28032  of the LaTeX-package 
28033 \series bold
28034 hyperref
28035 \series default
28036
28037 \begin_inset LatexCommand index
28038 name "LaTeX-packages ! hyperref"
28039
28040 \end_inset
28041
28042
28043 \end_layout
28044
28045 \begin_layout Bibliography
28046 \begin_inset LatexCommand bibitem
28047 key "koma-script"
28048
28049 \end_inset
28050
28051
28052 \begin_inset ERT
28053 status collapsed
28054
28055 \begin_layout Standard
28056
28057
28058 \backslash
28059 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
28060 df}{
28061 \end_layout
28062
28063 \end_inset
28064
28065 Documentation
28066 \begin_inset ERT
28067 status collapsed
28068
28069 \begin_layout Standard
28070
28071 }
28072 \end_layout
28073
28074 \end_inset
28075
28076  of the LaTeX-package 
28077 \series bold
28078 koma-script
28079 \series default
28080
28081 \begin_inset LatexCommand index
28082 name "LaTeX-packages ! koma-script"
28083
28084 \end_inset
28085
28086
28087 \end_layout
28088
28089 \begin_layout Bibliography
28090 \begin_inset LatexCommand bibitem
28091 key "koma-script-de"
28092
28093 \end_inset
28094
28095 German 
28096 \begin_inset ERT
28097 status collapsed
28098
28099 \begin_layout Standard
28100
28101
28102 \backslash
28103 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
28104 df}{
28105 \end_layout
28106
28107 \end_inset
28108
28109 documentation
28110 \begin_inset ERT
28111 status collapsed
28112
28113 \begin_layout Standard
28114
28115 }
28116 \end_layout
28117
28118 \end_inset
28119
28120  of the LaTeX-package 
28121 \series bold
28122 koma-script
28123 \series default
28124
28125 \begin_inset LatexCommand index
28126 name "LaTeX-packages ! koma-script"
28127
28128 \end_inset
28129
28130
28131 \end_layout
28132
28133 \begin_layout Bibliography
28134 \begin_inset LatexCommand bibitem
28135 key "marginnote"
28136
28137 \end_inset
28138
28139
28140 \begin_inset ERT
28141 status collapsed
28142
28143 \begin_layout Standard
28144
28145
28146 \backslash
28147 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
28148 pdf}{
28149 \end_layout
28150
28151 \end_inset
28152
28153 Documentation
28154 \begin_inset ERT
28155 status collapsed
28156
28157 \begin_layout Standard
28158
28159 }
28160 \end_layout
28161
28162 \end_inset
28163
28164  of the LaTeX-package 
28165 \series bold
28166 marginnote
28167 \series default
28168
28169 \begin_inset LatexCommand index
28170 name "LaTeX-packages ! marginnote"
28171
28172 \end_inset
28173
28174
28175 \end_layout
28176
28177 \begin_layout Bibliography
28178 \begin_inset LatexCommand bibitem
28179 key "pstricks"
28180
28181 \end_inset
28182
28183
28184 \begin_inset ERT
28185 status collapsed
28186
28187 \begin_layout Standard
28188
28189
28190 \backslash
28191 href{http://tug.org/PSTricks/main.cgi/}{
28192 \end_layout
28193
28194 \end_inset
28195
28196 Web page
28197 \begin_inset ERT
28198 status collapsed
28199
28200 \begin_layout Standard
28201
28202 }
28203 \end_layout
28204
28205 \end_inset
28206
28207  of the LaTeX-package 
28208 \series bold
28209 PSTricks
28210 \series default
28211
28212 \begin_inset LatexCommand index
28213 name "LaTeX-packages ! PSTricks"
28214
28215 \end_inset
28216
28217
28218 \end_layout
28219
28220 \begin_layout Bibliography
28221 \begin_inset LatexCommand bibitem
28222 key "sidecap"
28223
28224 \end_inset
28225
28226
28227 \begin_inset ERT
28228 status collapsed
28229
28230 \begin_layout Standard
28231
28232
28233 \backslash
28234 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
28235 \end_layout
28236
28237 \end_inset
28238
28239 Documentation
28240 \begin_inset ERT
28241 status collapsed
28242
28243 \begin_layout Standard
28244
28245 }
28246 \end_layout
28247
28248 \end_inset
28249
28250  of the LaTeX-package 
28251 \series bold
28252 sidecap
28253 \series default
28254
28255 \begin_inset LatexCommand index
28256 name "LaTeX-packages ! sidecap"
28257
28258 \end_inset
28259
28260
28261 \end_layout
28262
28263 \begin_layout Bibliography
28264 \begin_inset LatexCommand bibitem
28265 key "NewInLyX15"
28266
28267 \end_inset
28268
28269
28270 \begin_inset ERT
28271 status collapsed
28272
28273 \begin_layout Standard
28274
28275
28276 \backslash
28277 href{http://wiki.lyx.org/LyX/NewInLyX15}{
28278 \end_layout
28279
28280 \end_inset
28281
28282 Wiki page
28283 \begin_inset ERT
28284 status collapsed
28285
28286 \begin_layout Standard
28287
28288 }
28289 \end_layout
28290
28291 \end_inset
28292
28293  about new LyX-features planned for the release 
28294 \family sans
28295 LyX 1.5
28296 \family default
28297 .
28298 \end_layout
28299
28300 \begin_layout Standard
28301 \begin_inset LatexCommand printindex
28302
28303 \end_inset
28304
28305
28306 \end_layout
28307
28308 \begin_layout Standard
28309 \begin_inset FloatList figure
28310
28311 \end_inset
28312
28313
28314 \end_layout
28315
28316 \begin_layout Standard
28317 \begin_inset FloatList table
28318
28319 \end_inset
28320
28321
28322 \end_layout
28323
28324 \end_body
28325 \end_document