]> git.lyx.org Git - lyx.git/blob - lib/doc/EmbeddedObjects.lyx
135dc1da999b6b717de7e128596d0f48fd75ac06
[lyx.git] / lib / doc / EmbeddedObjects.lyx
1 #LyX 1.5.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 274
3 \begin_document
4 \begin_header
5 \textclass scrbook
6 \begin_preamble
7 % if pdflatex is used
8 \usepackage{ifpdf}
9 \ifpdf
10
11 % set fonts for nicer pdf view
12 \IfFileExists{lmodern.sty}
13  {\usepackage{lmodern}} % if it exists
14  {% if it exists not
15   \usepackage[scaled=0.92]{helvet}
16   \usepackage{mathptmx}
17   \usepackage{courier}
18  } % end if it exists not
19
20 % link all cross references and URLs
21 % in pdf output
22  \usepackage[colorlinks=true, bookmarks, bookmarksnumbered, bookmarksopen, bookmarksopenlevel=1,
23   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,
24   pdfpagelayout=OneColumn, pdfnewwindow=true,
25   pdfstartview=XYZ, plainpages=false, pdfpagelabels,
26   pdfauthor={LyX Team}, pdftex,
27   pdftitle={LyX's Figure, Table, Floats, Notes, and Boxes manual},
28   pdfsubject={LyX-documentation about figures, tables, floats, notes, and boxes},
29   pdfkeywords={LyX, Tables, Figures, Floats, Boxes, Notes}]{hyperref}
30  
31 \else % if dvi or ps is produced
32
33  % link all cross references and URLs in DVI output
34  \usepackage[ps2pdf, colorlinks=true,
35   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue]{hyperref}
36
37 \fi % end if pdflatex is used
38
39 % that links to image floats jumps
40 % to the beginning of the float and 
41 % not to its caption
42 \usepackage[figure]{hypcap}
43
44 % the pages of the TOC are numbered roman
45 % and a PDF-bookmark for the TOC is added
46 \pagenumbering{roman}
47 \let\myTOC\tableofcontents
48 \renewcommand{\tableofcontents}{%
49  \pdfbookmark[1]{Contents}{}
50  \myTOC
51  \cleardoublepage
52  \pagenumbering{arabic}}
53
54 % provides caption formatting
55 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}[2004/07/16]
56
57 % provides commands to set caption
58 % beside tables/images
59 \usepackage{sidecap}
60
61 \newcommand{\TabBesBeg}{%
62  \let\MyTable\table
63  \let\MyEndtable\endtable
64  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
65
66 \newcommand{\TabBesEnd}{%
67  \let\table\MyTable
68  \let\endtable\MyEndtable}
69
70 \newcommand{\FigBesBeg}{%
71  \let\MyFigure\figure
72  \let\MyEndfigure\endfigure
73  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
74
75 \newcommand{\FigBesEnd}{%
76  \let\figure\MyFigure
77  \let\endfigure\MyEndfigure}
78
79 % enables calculation of values,
80 \usepackage{calc}
81
82 % provides special table cell alignments
83 \usepackage{dcolumn}
84
85 % increase the bottom float placement fraction
86 \renewcommand{\bottomfraction}{0.5}
87
88 % avoids that floats are placed before their
89 % corresponding section starts
90 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
91
92 % speed up the longtable calculation
93 \setcounter{LTchunksize}{100}
94
95 % used for colored tables
96 \@ifundefined{textcolor}
97  {\usepackage{color}}{}
98 \usepackage{colortbl}
99 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
100 \definecolor{lightgrey}{gray}{0.8}
101
102 % used for multirows
103 \usepackage{multirow}
104 %\renewcommand{\multirowsetup}{\centering}
105
106 % used for book-style tables
107 \usepackage{booktabs}
108
109 % used to have extra space in table cells,
110 \setlength{\extrarowheight}{2pt}
111
112 % used for customized tables
113 % ---
114 \newcolumntype{M}[1]
115  {>{\centering\hspace{0pt}}m{#1}}
116
117 \newcolumntype{S}[2]
118  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
119
120 \newcolumntype{K}[1]
121  {>{\columncolor{#1}\hspace{0pt}}c}
122
123 \newcolumntype{V}{!{\vrule width 1.5pt}}
124
125 \newcolumntype{W}{!{\color{green}\vline}}
126 % ---
127
128 % To be able to enter the characters ° and · directly in LyX
129 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
130 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
131
132 % insert additional vertical space of
133 % 1.5 mm between footnotes
134 \let\myFoot\footnote
135 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
136
137 % enable algorithm floats to be referenced
138 \newfloat{Xalgorithm}{tbp}{loa}
139 \floatname{Xalgorithm}{Algorithm}
140 \newcommand{\theHalgorithm}{\theHXalgorithm}
141 \renewenvironment{algorithm}[1][tbp]
142  {\begin{Xalgorithm}[#1]}{\end{Xalgorithm}}
143
144 % number algorithm floats within chapters
145 \numberwithin{Xalgorithm}{chapter}
146
147 % redefine the greyed out note
148 \renewenvironment{lyxgreyedout}
149  {\textcolor{blue}\bgroup}{\egroup}
150
151 % ------------------------------------
152 % used to check for needed LaTeX packages
153 \usepackage{ifthen}
154
155 % check for package arydshln
156 % used for tables with dashed lines
157 \newboolean{arydshln}
158 \IfFileExists{arydshln.sty}
159  {\usepackage{arydshln}
160   \setboolean{arydshln}{true}}
161  {\setboolean{arydshln}{false}}
162
163 % check for package marginnote
164 % used for margin notes
165 \newboolean{marginnote}
166 \IfFileExists{marginnote.sty}
167  {\usepackage{marginnote}
168   \let\marginpar\marginnote
169   \setboolean{marginnote}{true}}
170  {\setboolean{marginnote}{false}}
171 \end_preamble
172 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
173 \language english
174 \inputencoding auto
175 \font_roman default
176 \font_sans default
177 \font_typewriter default
178 \font_default_family default
179 \font_sc false
180 \font_osf false
181 \font_sf_scale 100
182 \font_tt_scale 100
183 \graphics default
184 \paperfontsize 12
185 \spacing single
186 \papersize default
187 \use_geometry false
188 \use_amsmath 2
189 \use_esint 0
190 \cite_engine basic
191 \use_bibtopic false
192 \paperorientation portrait
193 \secnumdepth 3
194 \tocdepth 3
195 \paragraph_separation skip
196 \defskip medskip
197 \quotes_language english
198 \papercolumns 1
199 \papersides 2
200 \paperpagestyle default
201 \bullet 1 1 34 -1
202 \bullet 2 2 35 -1
203 \bullet 3 2 7 -1
204 \tracking_changes false
205 \output_changes false
206 \author "usti" 
207 \author "Bo Peng" 
208 \author "muso" 
209 \author "Uwe Stöhr" 
210 \end_header
211
212 \begin_body
213
214 \begin_layout Title
215 LyX's detailed Figure, Table, Floats, Notes, Boxes and External Material
216  manual
217 \end_layout
218
219 \begin_layout Author
220 by the LyX Team
221 \begin_inset Foot
222 status collapsed
223
224 \begin_layout Standard
225 \noindent
226 If you have comments or error corrections, please send them to the LyX Documenta
227 tion mailing list: 
228 \family typewriter
229
230 \begin_inset ERT
231 status open
232
233 \begin_layout Standard
234
235
236 \backslash
237 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's ExtendedInsets manual}{
238 \end_layout
239
240 \end_inset
241
242 lyx-docs@lists.lyx.org
243 \begin_inset ERT
244 status collapsed
245
246 \begin_layout Standard
247
248 }
249 \end_layout
250
251 \end_inset
252
253
254 \end_layout
255
256 \end_inset
257
258
259 \begin_inset Note Note
260 status collapsed
261
262 \begin_layout Standard
263 original author: Uwe Stöhr
264 \end_layout
265
266 \end_inset
267
268
269 \newline
270
271 \newline
272
273 \family sans
274 Version 1.5.0-
275 \family default
276 1
277 \end_layout
278
279 \begin_layout Standard
280 \begin_inset LatexCommand tableofcontents
281
282 \end_inset
283
284
285 \end_layout
286
287 \begin_layout Standard
288 \begin_inset Note Note
289 status open
290
291 \begin_layout Standard
292 To export all parts of this document to PDF, PS, or DVI the LaTeX-packages
293  
294 \series bold
295 arydshln
296 \series default
297  and 
298 \series bold
299 marginnote
300 \series default
301  must be installed.
302  If they are not installed you can export the document anyway but the sections
303  where the packages are required won't appear in the output.
304 \end_layout
305
306 \begin_layout Standard
307 The latest PDF-version of this document can be found here:
308 \newline
309
310 \series bold
311 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
312 \end_layout
313
314 \end_inset
315
316
317 \end_layout
318
319 \begin_layout Chapter
320 Figures
321 \begin_inset LatexCommand label
322 name "cha:Figures"
323
324 \end_inset
325
326
327 \begin_inset LatexCommand index
328 name "Figures"
329
330 \end_inset
331
332
333 \begin_inset LatexCommand index
334 name "Graphics|see{Figures}"
335
336 \end_inset
337
338
339 \end_layout
340
341 \begin_layout Section
342 Graphics Dialog
343 \begin_inset LatexCommand index
344 name "Figures ! Graphics Dialog"
345
346 \end_inset
347
348
349 \begin_inset LatexCommand label
350 name "sec:Graphics-Dialog"
351
352 \end_inset
353
354
355 \end_layout
356
357 \begin_layout Standard
358 To insert an image into your document, place the cursor at the text position
359  you want and click on the toolbar icon 
360 \begin_inset Graphics
361         filename ../images/dialog-show-new-inset_graphics.xpm
362         scale 85
363
364 \end_inset
365
366  or use the menu 
367 \family sans
368 Insert\SpecialChar \menuseparator
369 Graphics
370 \family default
371 .
372  Then a dialog will appear to choose the file to load.
373  The image will appear in the output exactly at the position where it is
374  in the text.
375 \end_layout
376
377 \begin_layout Standard
378 The graphics dialog can be called at any time by right-clicking on an image.
379  This dialog has three tabs:
380 \end_layout
381
382 \begin_layout Description
383
384 \family sans
385 Graphics
386 \family default
387  Here you can choose an image file and adjust its appearance in the output.
388  The available units for the image size are explained in appendix\InsetSpace ~
389
390 \begin_inset LatexCommand ref
391 reference "cha:Units-available-in"
392
393 \end_inset
394
395 .
396 \newline
397 You can rotate images counter-clockwise by setting a rotation angle and
398  a rotation origin.
399  The image will also be rotated inside LyX.
400 \newline
401 Images can be scaled by using
402  a percentage value or by setting the width and height explicitly.
403  If you set only the width or only the height, the other size will be determined
404  automatically.
405  If you set both, then the image will be transformed to the given size,
406  possibly distorting it.
407  To prevent the image from distortion, use the option 
408 \family sans
409 Maintain aspect ratio
410 \family default
411 .
412  The image will then be scaled so that its width and height don't exceed
413  the specified dimensions.
414 \newline
415 Images can be opened in a program of your choice
416  when pressing the 
417 \family sans
418 Edit
419 \family default
420  button.
421  The program can be set for every image format in the file format settings
422  in LyX's preferences.
423 \end_layout
424
425 \begin_layout Description
426
427 \family sans
428 Clipping
429 \family default
430  Alternatively to the usage of scaling units it is possible to set image
431  coordinates to adjust the height and width of the image in the output.
432  The coordinates can also be calculated automatically by pressing the button
433  
434 \family sans
435 Get\InsetSpace ~
436 from\InsetSpace ~
437 File
438 \family default
439 .
440  The option 
441 \family sans
442 Clip\InsetSpace ~
443 to\InsetSpace ~
444 bounding\InsetSpace ~
445 box
446 \family default
447  will only print the image region within the given coordinates.
448  Normally you don't need to take care about image coordinates and can ignore
449  this tab.
450 \end_layout
451
452 \begin_layout Description
453
454 \family sans
455 Extra\InsetSpace ~
456 options
457 \family default
458  In this tab you can modify the appearance of the image within LyX and set
459  the image to be a subfigure of a figure float with an own caption.
460  Subfigures are explained in section\InsetSpace ~
461
462 \begin_inset LatexCommand ref
463 reference "sec:Figure-Floats"
464
465 \end_inset
466
467 .
468 \newline
469  LaTeX experts can also specify on this tab additional LaTeX options.
470 \newline
471  The
472  option 
473 \family sans
474 Draft\InsetSpace ~
475 mode
476 \family default
477  makes the image appear in the output only as a frame with the size of the
478  image.
479 \newline
480 The 
481 \family sans
482 Don't\InsetSpace ~
483 unzip\InsetSpace ~
484 on\InsetSpace ~
485 export
486 \family default
487  option only affects zipped EPS-graphics, e.\InsetSpace \thinspace{}
488 g.\InsetSpace ~
489
490 \emph on
491 x.eps.gz
492 \emph default
493 .
494  When the option is used the images will not be unzipped on export, since
495  LaTeX can handle them as they are.
496 \newline
497 Zipped EPS-graphics are useful to save
498  disk space when you choose PostScript as output format, see appendix\InsetSpace ~
499
500 \begin_inset LatexCommand ref
501 reference "sec:PostScript"
502
503 \end_inset
504
505 .
506  To zip EPS-graphics, use the following commands in a UNIX-shell or a Windows
507  console:
508 \newline
509
510 \series bold
511 gzip x.eps
512 \series default
513
514 \newline
515
516 \series bold
517 zgrep %%Bounding x.eps.gz > x.eps.bb
518 \series default
519
520 \newline
521 The second command creates the bounding box file 
522 \begin_inset Quotes eld
523 \end_inset
524
525 x.eps.bb
526 \begin_inset Quotes erd
527 \end_inset
528
529  that is needed by LaTeX for zipped graphics.
530 \end_layout
531
532 \begin_layout Standard
533 \begin_inset VSpace bigskip
534 \end_inset
535
536
537 \end_layout
538
539 \begin_layout Standard
540 This is an example image in EPS format
541 \begin_inset Foot
542 status collapsed
543
544 \begin_layout Standard
545 Image formats are explained in section\InsetSpace ~
546
547 \begin_inset LatexCommand ref
548 reference "sec:Image-Formats"
549
550 \end_inset
551
552 .
553 \end_layout
554
555 \end_inset
556
557  within a separate, horizontally centered paragraph:
558 \end_layout
559
560 \begin_layout Standard
561 \align center
562 \begin_inset Graphics
563         filename clipart/mobius.eps
564         display color
565         scale 70
566         rotateOrigin center
567
568 \end_inset
569
570
571 \end_layout
572
573 \begin_layout Standard
574 This is the same image like the one above but in draft mode:
575 \end_layout
576
577 \begin_layout Standard
578 \align center
579 \begin_inset Graphics
580         filename clipart/mobius.eps
581         display color
582         scale 70
583         draft
584         rotateOrigin center
585
586 \end_inset
587
588
589 \end_layout
590
591 \begin_layout Section
592 Figure Floats
593 \begin_inset LatexCommand label
594 name "sec:Figure-Floats"
595
596 \end_inset
597
598
599 \begin_inset LatexCommand index
600 name "Floats ! Figures"
601
602 \end_inset
603
604
605 \begin_inset LatexCommand index
606 name "Figures ! Floats"
607
608 \end_inset
609
610
611 \end_layout
612
613 \begin_layout Standard
614 For general explanations about floats, have a look at section\InsetSpace ~
615
616 \begin_inset LatexCommand ref
617 reference "sec:FloatIntroduction"
618
619 \end_inset
620
621 .
622 \end_layout
623
624 \begin_layout Standard
625 The toolbar button 
626 \begin_inset Graphics
627         filename ../images/float-insert_figure.xpm
628         scale 85
629
630 \end_inset
631
632  and the menu 
633 \family sans
634 Insert\SpecialChar \menuseparator
635 Float\SpecialChar \menuseparator
636 Figure
637 \family default
638  inserts a float with a caption that has the label 
639 \begin_inset Quotes eld
640 \end_inset
641
642 Figure\InsetSpace ~
643 #:
644 \begin_inset Quotes erd
645 \end_inset
646
647  (# is the actual number).
648  You can insert the image above the caption, like in Figure\InsetSpace ~
649
650 \begin_inset LatexCommand ref
651 reference "fig:kill-plat"
652
653 \end_inset
654
655  or below the caption, like in Figure\InsetSpace ~
656
657 \begin_inset LatexCommand ref
658 reference "fig:escher"
659
660 \end_inset
661
662 .
663  More about the caption placement is described in section\InsetSpace ~
664
665 \begin_inset LatexCommand ref
666 reference "sec:Caption-Placement"
667
668 \end_inset
669
670 .
671 \end_layout
672
673 \begin_layout Standard
674 \begin_inset Float figure
675 wide false
676 sideways false
677 status open
678
679 \begin_layout Standard
680 \align center
681 \begin_inset Graphics
682         filename clipart/platypus.eps
683         display color
684         width 50col%
685         rotateOrigin center
686
687 \end_inset
688
689
690 \end_layout
691
692 \begin_layout Standard
693 \begin_inset Caption
694
695 \begin_layout Standard
696 \begin_inset LatexCommand label
697 name "fig:kill-plat"
698
699 \end_inset
700
701 A severely distorted platypus in a float.
702 \end_layout
703
704 \end_inset
705
706
707 \end_layout
708
709 \end_inset
710
711
712 \end_layout
713
714 \begin_layout Standard
715 \begin_inset Float figure
716 wide false
717 sideways false
718 status open
719
720 \begin_layout Standard
721 \begin_inset Caption
722
723 \begin_layout Standard
724 \begin_inset LatexCommand label
725 name "fig:escher"
726
727 \end_inset
728
729 M.C.
730  Escher on acid.
731 \end_layout
732
733 \end_inset
734
735
736 \end_layout
737
738 \begin_layout Standard
739 \align center
740 \begin_inset Graphics
741         filename clipart/escher-lsd.eps
742         display color
743         scale 80
744         rotateOrigin center
745
746 \end_inset
747
748
749 \end_layout
750
751 \end_inset
752
753
754 \end_layout
755
756 \begin_layout Standard
757 \begin_inset LatexCommand index
758 name "References ! to Figures"
759
760 \end_inset
761
762 Figure\InsetSpace ~
763
764 \begin_inset LatexCommand ref
765 reference "fig:kill-plat"
766
767 \end_inset
768
769  and 
770 \begin_inset LatexCommand ref
771 reference "fig:escher"
772
773 \end_inset
774
775  are examples of referenced figures.
776  Figures can be referenced in the text by referencing their label.
777  To do this insert a label in the caption using the menu 
778 \family sans
779 Insert\SpecialChar \menuseparator
780 Label
781 \family default
782  or the toolbar button 
783 \begin_inset Graphics
784         filename ../images/label-insert.xpm
785         scale 85
786
787 \end_inset
788
789 .
790  You can now refer to the label using the menu 
791 \family sans
792 Insert\SpecialChar \menuseparator
793 Cross\InsetSpace ~
794 reference
795 \family default
796  or the toolbar button 
797 \begin_inset Graphics
798         filename ../images/dialog-show-new-inset_ref.xpm
799         scale 85
800
801 \end_inset
802
803 .
804  It is important to use references to floats, rather than using vague references
805  like 
806 \begin_inset Quotes eld
807 \end_inset
808
809 the figure above
810 \begin_inset Quotes erd
811 \end_inset
812
813 , because as LaTeX will reposition the floats in the final document, it
814  might not be 
815 \begin_inset Quotes eld
816 \end_inset
817
818 above
819 \begin_inset Quotes erd
820 \end_inset
821
822  at all.
823 \newline
824 Referencing is explained in detail in section\InsetSpace ~
825
826 \begin_inset LatexCommand ref
827 reference "sec:Referencing-Floats"
828
829 \end_inset
830
831 .
832 \end_layout
833
834 \begin_layout Standard
835 Normally only one image is inserted to a figure float, but sometimes you
836  might want to use two images with separate subcaptions.
837  This can be set in the tab 
838 \family sans
839 Extra\InsetSpace ~
840 options
841 \family default
842  of the graphics dialog.
843  Choose there the option 
844 \family sans
845 Subfigure
846 \family default
847  and enter the subcaption for the image in the caption field.
848  Note that only the main caption of the float is added to the List of Figures.
849 \newline
850 Ref
851 erencing subfigures is explained in section\InsetSpace ~
852
853 \begin_inset LatexCommand ref
854 reference "sub:Referencing-Subfigures"
855
856 \end_inset
857
858 .
859 \end_layout
860
861 \begin_layout Standard
862 Figure\InsetSpace ~
863
864 \begin_inset LatexCommand ref
865 reference "fig:Two-distorted-images"
866
867 \end_inset
868
869  is an example of a figure float with two images set side by side.
870  You can also set the images one below the other.
871 \end_layout
872
873 \begin_layout Standard
874 \begin_inset Float figure
875 wide false
876 sideways false
877 status open
878
879 \begin_layout Standard
880
881 \hfill
882
883 \begin_inset Graphics
884         filename clipart/escher-lsd.eps
885         width 45col%
886         subcaption
887         subcaptionText "Undefinable structure"
888
889 \end_inset
890
891
892 \hfill
893
894 \begin_inset Graphics
895         filename clipart/platypus.eps
896         lyxscale 60
897         width 45col%
898         subcaption
899         subcaptionText "\label{fig:Platypus} Platypus"
900
901 \end_inset
902
903
904 \hfill
905
906 \end_layout
907
908 \begin_layout Standard
909 \begin_inset Caption
910
911 \begin_layout Standard
912 \begin_inset LatexCommand label
913 name "fig:Two-distorted-images"
914
915 \end_inset
916
917 Two distorted images.
918 \end_layout
919
920 \end_inset
921
922
923 \end_layout
924
925 \end_inset
926
927
928 \end_layout
929
930 \begin_layout Section
931 Image Formats
932 \begin_inset LatexCommand label
933 name "sec:Image-Formats"
934
935 \end_inset
936
937
938 \begin_inset LatexCommand index
939 name "Image Formats"
940
941 \end_inset
942
943
944 \begin_inset LatexCommand index
945 name "Figures ! Image Formats"
946
947 \end_inset
948
949
950 \end_layout
951
952 \begin_layout Standard
953 You can insert images in any known file format.
954  But as explained in appendix\InsetSpace ~
955
956 \begin_inset LatexCommand ref
957 reference "cha:Output-File-Formats"
958
959 \end_inset
960
961 , every output document format allows only a few image formats.
962  LyX uses therefore the program 
963 \family typewriter
964 Imagemagick
965 \family default
966  in the background to convert the images to the right format.
967  To increase your work flow by avoiding these conversions in the background,
968  you can use only the image formats that can directly be embedded in the
969  output file format.
970  The output file formats are explained in appendix\InsetSpace ~
971
972 \begin_inset LatexCommand ref
973 reference "cha:Output-File-Formats"
974
975 \end_inset
976
977 .
978 \end_layout
979
980 \begin_layout Standard
981 Similar to fonts there are two types of image formats:
982 \end_layout
983
984 \begin_layout Description
985 Bitmap\InsetSpace ~
986 images consist of pixel values, often in a compressed form.
987  They are therefore not fully scalable and look pixeled in large zooms.
988  Well-known bitmap image formats are 
989 \begin_inset Quotes eld
990 \end_inset
991
992 Graphics Interchange Format
993 \begin_inset Quotes erd
994 \end_inset
995
996  (GIF, file extension 
997 \begin_inset Quotes eld
998 \end_inset
999
1000
1001 \family typewriter
1002 .gif
1003 \family default
1004
1005 \begin_inset Quotes erd
1006 \end_inset
1007
1008 )
1009 \begin_inset LatexCommand index
1010 name "GIF|see{Image formats}"
1011
1012 \end_inset
1013
1014
1015 \begin_inset Quotes eld
1016 \end_inset
1017
1018 Portable Network Graphics
1019 \begin_inset Quotes erd
1020 \end_inset
1021
1022  (PNG, file extension 
1023 \begin_inset Quotes eld
1024 \end_inset
1025
1026
1027 \family typewriter
1028 .png
1029 \family default
1030
1031 \begin_inset Quotes erd
1032 \end_inset
1033
1034 )
1035 \begin_inset LatexCommand index
1036 name "PNG|see{Image formats}"
1037
1038 \end_inset
1039
1040 , and 
1041 \begin_inset Quotes eld
1042 \end_inset
1043
1044 Joint Photographic Experts Group
1045 \begin_inset Quotes erd
1046 \end_inset
1047
1048  (JPG, file extension 
1049 \begin_inset Quotes eld
1050 \end_inset
1051
1052
1053 \family typewriter
1054 .jpg
1055 \family default
1056
1057 \begin_inset Quotes erd
1058 \end_inset
1059
1060  or 
1061 \begin_inset Quotes eld
1062 \end_inset
1063
1064
1065 \family typewriter
1066 .jpeg
1067 \family default
1068
1069 \begin_inset Quotes erd
1070 \end_inset
1071
1072 )
1073 \begin_inset LatexCommand index
1074 name "JPG|see{Image formats}"
1075
1076 \end_inset
1077
1078 .
1079 \end_layout
1080
1081 \begin_layout Description
1082 Vector\InsetSpace ~
1083 images consist of vectors and can therefore be scaled to any size
1084  without data loss.
1085  The scaling ability is necessary if you want to create presentations, because
1086  presentations are always scaled by the video projector.
1087  Scaling is also useful for online documents to let the user zoom into diagrams.
1088 \newline
1089 W
1090 ell-known scalable image formats are 
1091 \begin_inset Quotes eld
1092 \end_inset
1093
1094 Scalable Vector Graphics
1095 \begin_inset Quotes erd
1096 \end_inset
1097
1098  (SVG, file extension 
1099 \begin_inset Quotes eld
1100 \end_inset
1101
1102
1103 \family typewriter
1104 .svg
1105 \family default
1106
1107 \begin_inset Quotes erd
1108 \end_inset
1109
1110 )
1111 \begin_inset LatexCommand index
1112 name "SVG|see{Image formats}"
1113
1114 \end_inset
1115
1116
1117 \begin_inset Quotes eld
1118 \end_inset
1119
1120 Encapsulated PostScript
1121 \begin_inset Quotes erd
1122 \end_inset
1123
1124  (EPS, file extension 
1125 \begin_inset Quotes eld
1126 \end_inset
1127
1128
1129 \family typewriter
1130 .eps
1131 \family default
1132
1133 \begin_inset Quotes erd
1134 \end_inset
1135
1136 )
1137 \begin_inset LatexCommand index
1138 name "EPS|see{Image formats}"
1139
1140 \end_inset
1141
1142
1143 \begin_inset Quotes eld
1144 \end_inset
1145
1146 Portable Document Format
1147 \begin_inset Quotes erd
1148 \end_inset
1149
1150  (PDF, file extension 
1151 \begin_inset Quotes eld
1152 \end_inset
1153
1154
1155 \family typewriter
1156 .pdf
1157 \family default
1158
1159 \begin_inset Quotes erd
1160 \end_inset
1161
1162 )
1163 \begin_inset LatexCommand index
1164 name "PDF"
1165
1166 \end_inset
1167
1168 , and 
1169 \begin_inset Quotes eld
1170 \end_inset
1171
1172 Windows Metafile
1173 \begin_inset Quotes erd
1174 \end_inset
1175
1176  (WMF, file extension 
1177 \begin_inset Quotes eld
1178 \end_inset
1179
1180
1181 \family typewriter
1182 .wmf
1183 \family default
1184
1185 \begin_inset Quotes erd
1186 \end_inset
1187
1188 )
1189 \begin_inset LatexCommand index
1190 name "SVG|see{Image formats}"
1191
1192 \end_inset
1193
1194 .
1195  We wrote 
1196 \begin_inset Quotes eld
1197 \end_inset
1198
1199 can be
1200 \begin_inset Quotes erd
1201 \end_inset
1202
1203 , because you can convert any bitmap image to a PDF or EPS-image and the
1204  result will still be a bitmap image.
1205  In this cases only a header with the image properties is added to the original
1206  image
1207 \begin_inset Foot
1208 status open
1209
1210 \begin_layout Standard
1211 In the case of PDF, the original image is additionally compressed.
1212 \end_layout
1213
1214 \end_inset
1215
1216 .
1217  The PDF-files generated by 
1218 \family typewriter
1219 Adobe Photoshop
1220 \family default
1221  are for example bitmap images.
1222 \end_layout
1223
1224 \begin_layout Standard
1225 Normally it is not possible to convert a bitmap image into a scalable one,
1226  only vice versa.
1227  Only the image formats PDF and EPS can directly be embedded to PDF and
1228  PostScript output files, respectively.
1229  SVG and WMF-images are currently recalculated to bitmaps when the output
1230  file is generated because there is currently no adequate WMF/SVG
1231 \begin_inset Formula $\to$
1232 \end_inset
1233
1234 PDF/EPS converter available.
1235 \end_layout
1236
1237 \begin_layout Chapter
1238 Tables
1239 \begin_inset LatexCommand label
1240 name "cha:Tables"
1241
1242 \end_inset
1243
1244
1245 \begin_inset LatexCommand index
1246 name "Table"
1247
1248 \end_inset
1249
1250
1251 \end_layout
1252
1253 \begin_layout Section
1254 Introduction
1255 \begin_inset LatexCommand index
1256 name "Table ! Introduction"
1257
1258 \end_inset
1259
1260
1261 \end_layout
1262
1263 \begin_layout Standard
1264 You can insert a table using either the toolbar button 
1265 \begin_inset Graphics
1266         filename ../images/tabular-insert.xpm
1267         scale 85
1268
1269 \end_inset
1270
1271  or the menu 
1272 \family sans
1273 Insert\SpecialChar \menuseparator
1274 Table
1275 \family default
1276 .
1277  The toolbar button offers you a graphical selection: Move the mouse to
1278  set the column/row number of the table that should be created and then
1279  press a mouse button.
1280  When you use the menu to create a table, a dialog will appear, asking you
1281  for the number of rows and columns.
1282 \newline
1283  The default table has lines around any
1284  cell and the first row appears separated from the rest of the table.
1285  This separation occurs due to a double line: The cells of the first row
1286  have a line below them and the cells of the second row have a line above
1287  them.
1288  Here is an example table:
1289 \end_layout
1290
1291 \begin_layout Standard
1292 \align center
1293 \begin_inset Tabular
1294 <lyxtabular version="3" rows="4" columns="4">
1295 <features>
1296 <column alignment="center" valignment="top" leftline="true" width="0">
1297 <column alignment="center" valignment="top" leftline="true" width="0">
1298 <column alignment="center" valignment="top" leftline="true" width="0">
1299 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
1300 <row topline="true" bottomline="true">
1301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1302 \begin_inset Text
1303
1304 \begin_layout Standard
1305
1306 \end_layout
1307
1308 \end_inset
1309 </cell>
1310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1311 \begin_inset Text
1312
1313 \begin_layout Standard
1314
1315 \family roman
1316 \series medium
1317 \shape up
1318 \size normal
1319 \emph off
1320 \bar no
1321 \noun off
1322 \color none
1323 1
1324 \end_layout
1325
1326 \end_inset
1327 </cell>
1328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1329 \begin_inset Text
1330
1331 \begin_layout Standard
1332 2
1333 \end_layout
1334
1335 \end_inset
1336 </cell>
1337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1338 \begin_inset Text
1339
1340 \begin_layout Standard
1341 3
1342 \end_layout
1343
1344 \end_inset
1345 </cell>
1346 </row>
1347 <row topline="true">
1348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1349 \begin_inset Text
1350
1351 \begin_layout Standard
1352
1353 \family roman
1354 \series medium
1355 \shape up
1356 \size normal
1357 \emph off
1358 \bar no
1359 \noun off
1360 \color none
1361 A
1362 \end_layout
1363
1364 \end_inset
1365 </cell>
1366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1367 \begin_inset Text
1368
1369 \begin_layout Standard
1370
1371 \end_layout
1372
1373 \end_inset
1374 </cell>
1375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1376 \begin_inset Text
1377
1378 \begin_layout Standard
1379
1380 \end_layout
1381
1382 \end_inset
1383 </cell>
1384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1385 \begin_inset Text
1386
1387 \begin_layout Standard
1388
1389 \end_layout
1390
1391 \end_inset
1392 </cell>
1393 </row>
1394 <row topline="true">
1395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1396 \begin_inset Text
1397
1398 \begin_layout Standard
1399
1400 \family roman
1401 \series medium
1402 \shape up
1403 \size normal
1404 \emph off
1405 \bar no
1406 \noun off
1407 \color none
1408 B
1409 \end_layout
1410
1411 \end_inset
1412 </cell>
1413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1414 \begin_inset Text
1415
1416 \begin_layout Standard
1417
1418 \end_layout
1419
1420 \end_inset
1421 </cell>
1422 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1423 \begin_inset Text
1424
1425 \begin_layout Standard
1426
1427 \end_layout
1428
1429 \end_inset
1430 </cell>
1431 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1432 \begin_inset Text
1433
1434 \begin_layout Standard
1435
1436 \end_layout
1437
1438 \end_inset
1439 </cell>
1440 </row>
1441 <row topline="true" bottomline="true">
1442 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1443 \begin_inset Text
1444
1445 \begin_layout Standard
1446
1447 \family roman
1448 \series medium
1449 \shape up
1450 \size normal
1451 \emph off
1452 \bar no
1453 \noun off
1454 \color none
1455 C
1456 \end_layout
1457
1458 \end_inset
1459 </cell>
1460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1461 \begin_inset Text
1462
1463 \begin_layout Standard
1464
1465 \end_layout
1466
1467 \end_inset
1468 </cell>
1469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1470 \begin_inset Text
1471
1472 \begin_layout Standard
1473
1474 \end_layout
1475
1476 \end_inset
1477 </cell>
1478 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1479 \begin_inset Text
1480
1481 \begin_layout Standard
1482
1483 \end_layout
1484
1485 \end_inset
1486 </cell>
1487 </row>
1488 </lyxtabular>
1489
1490 \end_inset
1491
1492
1493 \end_layout
1494
1495 \begin_layout Section
1496 Table Dialog
1497 \begin_inset LatexCommand index
1498 name "Table ! Dialog"
1499
1500 \end_inset
1501
1502
1503 \end_layout
1504
1505 \begin_layout Standard
1506 You can alter a table by clicking on it with the right mouse button, which
1507  brings up the table dialog.
1508  Here you can adjust the settings of that cell and row/column respectively
1509  where the cursor is currently placed.
1510  Most of the dialog options also work on selections.
1511  This means if you select more cells, columns or rows, the action is done
1512  for the whole selection.
1513  Note that there is a difference between selecting the 
1514 \emph on
1515 contents
1516 \emph default
1517  of the cell, and the cell itself.
1518  You can alter tables with the following tabs of the table dialog:
1519 \end_layout
1520
1521 \begin_layout Description
1522
1523 \family sans
1524 Table\InsetSpace ~
1525 Settings
1526 \family default
1527  Here you can set the horizontal alignment and the width of the current
1528  column.
1529  When you have set a width you can also adjust the vertical alignment of
1530  the current row.
1531  A given width will allow the cell to have line breaks and multiple paragraphs
1532  of text, see section\InsetSpace ~
1533
1534 \begin_inset LatexCommand ref
1535 reference "sub:Multiple-Lines-in"
1536
1537 \end_inset
1538
1539 .
1540  If you set no width, the column is as wide as their widest cell content
1541  is.
1542 \newline
1543 Furthermore, you can mark one or multiple cells of one row as a multicolumn
1544  cell, see section\InsetSpace ~
1545
1546 \begin_inset LatexCommand ref
1547 reference "sub:Multicolumns"
1548
1549 \end_inset
1550
1551 .
1552 \newline
1553 The rotate check boxes rotates the current cell, a selection, or the whole
1554  table counter-clockwise by 90°.
1555  The rotation is not shown within LyX, only in the output.
1556 \newline
1557
1558 \begin_inset Note Greyedout
1559 status open
1560
1561 \begin_layout Standard
1562
1563 \series bold
1564 Note:
1565 \series default
1566  Not all DVI-viewers are able to display rotations.
1567 \end_layout
1568
1569 \end_inset
1570
1571
1572 \newline
1573 It is also possible to enter a LaTeX-argument which is needed for special
1574  table formattings, see section\InsetSpace ~
1575
1576 \begin_inset LatexCommand ref
1577 reference "sub:Multicolumn-Calculations"
1578
1579 \end_inset
1580
1581  and 
1582 \begin_inset LatexCommand ref
1583 reference "sec:Colored-Tables"
1584
1585 \end_inset
1586
1587 .
1588 \end_layout
1589
1590 \begin_layout Description
1591
1592 \family sans
1593 Borders
1594 \family default
1595  In this tab you can add and delete border lines for the current row/column.
1596 \newline
1597 Using
1598  the style option 
1599 \family sans
1600 Formal
1601 \family default
1602  will convert the table to a formal table as described in section\InsetSpace ~
1603
1604 \begin_inset LatexCommand ref
1605 reference "sec:Formal-Tables"
1606
1607 \end_inset
1608
1609 .
1610 \newline
1611 You can also add here space to table rows as decribed in section\InsetSpace ~
1612
1613 \begin_inset LatexCommand ref
1614 reference "sub:Row-Spacing"
1615
1616 \end_inset
1617
1618 .
1619 \end_layout
1620
1621 \begin_layout Description
1622
1623 \family sans
1624 Longtable
1625 \family default
1626  This tab is to make a table a so called 
1627 \begin_inset Quotes eld
1628 \end_inset
1629
1630
1631 \emph on
1632 longtable
1633 \emph default
1634
1635 \begin_inset Quotes erd
1636 \end_inset
1637
1638  that can run over several pages.
1639  Section\InsetSpace ~
1640
1641 \begin_inset LatexCommand ref
1642 reference "sec:Longtables"
1643
1644 \end_inset
1645
1646  and 
1647 \begin_inset LatexCommand ref
1648 reference "sec:Special-Longtable-Issues"
1649
1650 \end_inset
1651
1652  describe the longtable features in detail.
1653 \end_layout
1654
1655 \begin_layout Standard
1656 When the table toolbar is opened, you can move the cursor with the arrow
1657  keys from cell to cell and the property of the current cell will immediately
1658  be displayed in the dialog.
1659 \end_layout
1660
1661 \begin_layout Section
1662 Table Toolbar
1663 \begin_inset LatexCommand index
1664 name "Table ! Toolbar"
1665
1666 \end_inset
1667
1668
1669 \end_layout
1670
1671 \begin_layout Standard
1672 The table toolbar is an alternative to the table dialog to be able to alter
1673  tables faster.
1674  It should normally appear at the bottom of LyX's main window when the cursor
1675  is inside a table.
1676  You can alternatively switch it on to appear always, by right-clicking
1677  in LyX's main menu bar.
1678 \end_layout
1679
1680 \begin_layout Standard
1681 The toolbar has the following icons:
1682 \end_layout
1683
1684 \begin_layout Labeling
1685 \labelwidthstring 00.00.0000
1686 \begin_inset Graphics
1687         filename ../images/tabular-feature_append-row.xpm
1688
1689 \end_inset
1690
1691  adds a row below the current cell or selection
1692 \end_layout
1693
1694 \begin_layout Labeling
1695 \labelwidthstring 00.00.0000
1696 \begin_inset Graphics
1697         filename ../images/tabular-feature_append-column.xpm
1698
1699 \end_inset
1700
1701  adds a column right beside the current cell or selection
1702 \end_layout
1703
1704 \begin_layout Labeling
1705 \labelwidthstring 00.00.0000
1706 \begin_inset Graphics
1707         filename ../images/tabular-feature_delete-row.xpm
1708
1709 \end_inset
1710
1711  deletes the current row or selection
1712 \end_layout
1713
1714 \begin_layout Labeling
1715 \labelwidthstring 00.00.0000
1716 \begin_inset Graphics
1717         filename ../images/tabular-feature_delete-column.xpm
1718
1719 \end_inset
1720
1721  deletes the current column or selection
1722 \end_layout
1723
1724 \begin_layout Labeling
1725 \labelwidthstring 00.00.0000
1726 \begin_inset Graphics
1727         filename ../images/tabular-feature_toggle-line-top.xpm
1728
1729 \end_inset
1730
1731  adds a line at the top of the current cell / row or of a selection
1732 \end_layout
1733
1734 \begin_layout Labeling
1735 \labelwidthstring 00.00.0000
1736 \begin_inset Graphics
1737         filename ../images/tabular-feature_toggle-line-bottom.xpm
1738
1739 \end_inset
1740
1741  adds a line at the bottom of the current cell / row or of a selection
1742 \end_layout
1743
1744 \begin_layout Labeling
1745 \labelwidthstring 00.00.0000
1746 \begin_inset Graphics
1747         filename ../images/tabular-feature_toggle-line-left.xpm
1748
1749 \end_inset
1750
1751  adds a line at the left side of the current cell / row or of a selection
1752 \end_layout
1753
1754 \begin_layout Labeling
1755 \labelwidthstring 00.00.0000
1756 \begin_inset Graphics
1757         filename ../images/tabular-feature_toggle-line-right.xpm
1758
1759 \end_inset
1760
1761  adds a line at the right side of the current cell / row or of a selection
1762 \end_layout
1763
1764 \begin_layout Labeling
1765 \labelwidthstring 00.00.0000
1766 \begin_inset Graphics
1767         filename ../images/tabular-feature_set-all-lines.xpm
1768
1769 \end_inset
1770
1771  adds lines around the current or selected cells - if the current cell no
1772  multicolumn this also affects the current row and column
1773 \end_layout
1774
1775 \begin_layout Labeling
1776 \labelwidthstring 00.00.0000
1777 \begin_inset Graphics
1778         filename ../images/tabular-feature_unset-all-lines.xpm
1779
1780 \end_inset
1781
1782  deletes all lines of the current or selected cells - if the current cell
1783  no multicolumn this also affects the current row and column
1784 \end_layout
1785
1786 \begin_layout Labeling
1787 \labelwidthstring 00.00.0000
1788 \begin_inset Graphics
1789         filename ../images/tabular-feature_align-left.xpm
1790
1791 \end_inset
1792
1793  left-aligns the content of the current cell / column
1794 \end_layout
1795
1796 \begin_layout Labeling
1797 \labelwidthstring 00.00.0000
1798 \begin_inset Graphics
1799         filename ../images/tabular-feature_align-center.xpm
1800
1801 \end_inset
1802
1803  centers the content of the current cell / column horizontally
1804 \end_layout
1805
1806 \begin_layout Labeling
1807 \labelwidthstring 00.00.0000
1808 \begin_inset Graphics
1809         filename ../images/tabular-feature_align-right.xpm
1810
1811 \end_inset
1812
1813  right-aligns the content of the current cell / column
1814 \end_layout
1815
1816 \begin_layout Labeling
1817 \labelwidthstring 00.00.0000
1818 \begin_inset Graphics
1819         filename ../images/tabular-feature_valign-top.xpm
1820
1821 \end_inset
1822
1823  aligns the content of the current cell vertically to the top
1824 \end_layout
1825
1826 \begin_layout Labeling
1827 \labelwidthstring 00.00.0000
1828 \begin_inset Graphics
1829         filename ../images/tabular-feature_valign-middle.xpm
1830
1831 \end_inset
1832
1833  centers the content of the current cell vertically
1834 \end_layout
1835
1836 \begin_layout Labeling
1837 \labelwidthstring 00.00.0000
1838 \begin_inset Graphics
1839         filename ../images/tabular-feature_valign-bottom.xpm
1840
1841 \end_inset
1842
1843  aligns the content of the current cell vertically to the bottom
1844 \end_layout
1845
1846 \begin_layout Labeling
1847 \labelwidthstring 00.00.0000
1848 \begin_inset Graphics
1849         filename ../images/tabular-feature_set-rotate-cell.xpm
1850
1851 \end_inset
1852
1853  rotates the current cell or selection counter-clockwise by 90°
1854 \end_layout
1855
1856 \begin_layout Labeling
1857 \labelwidthstring 00.00.0000
1858 \begin_inset Graphics
1859         filename ../images/tabular-feature_set-rotate-tabular.xpm
1860
1861 \end_inset
1862
1863  rotates the whole table counter-clockwise by 90°
1864 \end_layout
1865
1866 \begin_layout Labeling
1867 \labelwidthstring 00.00.0000
1868 \begin_inset Graphics
1869         filename ../images/tabular-feature_multicolumn.xpm
1870
1871 \end_inset
1872
1873  sets the current cell or selection as a multicolumn
1874 \end_layout
1875
1876 \begin_layout Standard
1877 \begin_inset Note Greyedout
1878 status open
1879
1880 \begin_layout Standard
1881
1882 \series bold
1883 Note:
1884 \series default
1885  For the output the vertical alignment of the first cell in a row is used
1886  for all following cells in the row.
1887 \end_layout
1888
1889 \end_inset
1890
1891
1892 \end_layout
1893
1894 \begin_layout Section
1895 Edit Table Menu
1896 \begin_inset LatexCommand index
1897 name "Table ! Edit Menu"
1898
1899 \end_inset
1900
1901
1902 \end_layout
1903
1904 \begin_layout Standard
1905 Additionally to the table dialog and toolbar, the menu 
1906 \family sans
1907 Edit\SpecialChar \menuseparator
1908 Table
1909 \family default
1910  allows you to add and delete border lines for the current row/column and
1911  to set the current selection as multicolumn.
1912  The menu is only available when the cursor is inside a table.
1913 \end_layout
1914
1915 \begin_layout Section
1916 Table Floats
1917 \begin_inset LatexCommand label
1918 name "sec:Table-Floats"
1919
1920 \end_inset
1921
1922
1923 \begin_inset LatexCommand index
1924 name "Floats ! Tables"
1925
1926 \end_inset
1927
1928
1929 \begin_inset LatexCommand index
1930 name "Table ! Floats"
1931
1932 \end_inset
1933
1934
1935 \end_layout
1936
1937 \begin_layout Standard
1938 For general explanations about floats, have a look at section\InsetSpace ~
1939
1940 \begin_inset LatexCommand ref
1941 reference "sec:FloatIntroduction"
1942
1943 \end_inset
1944
1945 .
1946 \end_layout
1947
1948 \begin_layout Standard
1949 \begin_inset Float table
1950 placement h
1951 wide false
1952 sideways false
1953 status open
1954
1955 \begin_layout Standard
1956 \begin_inset Caption
1957
1958 \begin_layout Standard
1959 \begin_inset LatexCommand label
1960 name "tab:a table float"
1961
1962 \end_inset
1963
1964 A table float.
1965 \end_layout
1966
1967 \end_inset
1968
1969
1970 \end_layout
1971
1972 \begin_layout Standard
1973 \align center
1974 \begin_inset Tabular
1975 <lyxtabular version="3" rows="3" columns="3">
1976 <features>
1977 <column alignment="center" valignment="top" leftline="true" width="0pt">
1978 <column alignment="center" valignment="top" leftline="true" width="0pt">
1979 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1980 <row topline="true" bottomline="true">
1981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1982 \begin_inset Text
1983
1984 \begin_layout Standard
1985
1986 \family roman
1987 \series medium
1988 \shape up
1989 \size normal
1990 \emph off
1991 \bar no
1992 \noun off
1993 \color none
1994 1
1995 \end_layout
1996
1997 \end_inset
1998 </cell>
1999 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2000 \begin_inset Text
2001
2002 \begin_layout Standard
2003
2004 \family roman
2005 \series medium
2006 \shape up
2007 \size normal
2008 \emph off
2009 \bar no
2010 \noun off
2011 \color none
2012 2
2013 \end_layout
2014
2015 \end_inset
2016 </cell>
2017 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2018 \begin_inset Text
2019
2020 \begin_layout Standard
2021
2022 \family roman
2023 \series medium
2024 \shape up
2025 \size normal
2026 \emph off
2027 \bar no
2028 \noun off
2029 \color none
2030 3
2031 \end_layout
2032
2033 \end_inset
2034 </cell>
2035 </row>
2036 <row topline="true">
2037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2038 \begin_inset Text
2039
2040 \begin_layout Standard
2041
2042 \family roman
2043 \series medium
2044 \shape up
2045 \size normal
2046 \emph off
2047 \bar no
2048 \noun off
2049 \color none
2050 Joe
2051 \end_layout
2052
2053 \end_inset
2054 </cell>
2055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2056 \begin_inset Text
2057
2058 \begin_layout Standard
2059
2060 \family roman
2061 \series medium
2062 \shape up
2063 \size normal
2064 \emph off
2065 \bar no
2066 \noun off
2067 \color none
2068 Mary
2069 \end_layout
2070
2071 \end_inset
2072 </cell>
2073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2074 \begin_inset Text
2075
2076 \begin_layout Standard
2077
2078 \family roman
2079 \series medium
2080 \shape up
2081 \size normal
2082 \emph off
2083 \bar no
2084 \noun off
2085 \color none
2086 Ted
2087 \end_layout
2088
2089 \end_inset
2090 </cell>
2091 </row>
2092 <row topline="true" bottomline="true">
2093 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2094 \begin_inset Text
2095
2096 \begin_layout Standard
2097
2098 \family roman
2099 \series medium
2100 \shape up
2101 \size normal
2102 \emph off
2103 \bar no
2104 \noun off
2105 \color none
2106 \begin_inset Formula $\int x^{2}dx$
2107 \end_inset
2108
2109
2110 \end_layout
2111
2112 \end_inset
2113 </cell>
2114 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2115 \begin_inset Text
2116
2117 \begin_layout Standard
2118
2119 \family roman
2120 \series medium
2121 \shape up
2122 \size normal
2123 \emph off
2124 \bar no
2125 \noun off
2126 \color none
2127 \begin_inset Formula $\left[\begin{array}{cc}
2128 a & b\\
2129 c & d\end{array}\right]$
2130 \end_inset
2131
2132
2133 \end_layout
2134
2135 \end_inset
2136 </cell>
2137 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2138 \begin_inset Text
2139
2140 \begin_layout Standard
2141
2142 \family roman
2143 \series medium
2144 \shape up
2145 \size normal
2146 \emph off
2147 \bar no
2148 \noun off
2149 \color none
2150 \begin_inset Formula $1+1=2$
2151 \end_inset
2152
2153
2154 \end_layout
2155
2156 \end_inset
2157 </cell>
2158 </row>
2159 </lyxtabular>
2160
2161 \end_inset
2162
2163
2164 \end_layout
2165
2166 \end_inset
2167
2168
2169 \end_layout
2170
2171 \begin_layout Standard
2172 Table floats can be inserted using the menu 
2173 \family sans
2174 Insert\SpecialChar \menuseparator
2175 Float\SpecialChar \menuseparator
2176 Table
2177 \family default
2178  or the toolbar button 
2179 \begin_inset Graphics
2180         filename ../images/float-insert_table.xpm
2181         scale 85
2182
2183 \end_inset
2184
2185 .
2186 \end_layout
2187
2188 \begin_layout Standard
2189 The float appears as a collapsible box with a caption that has the label
2190  
2191 \begin_inset Quotes eld
2192 \end_inset
2193
2194 Table\InsetSpace ~
2195 #:
2196 \begin_inset Quotes erd
2197 \end_inset
2198
2199  (# is the actual table number).
2200  You can insert tables to the float above or below the caption.
2201 \end_layout
2202
2203 \begin_layout Standard
2204 Table\InsetSpace ~
2205
2206 \begin_inset LatexCommand ref
2207 reference "tab:a table float"
2208
2209 \end_inset
2210
2211  is an example table within a table float.
2212 \end_layout
2213
2214 \begin_layout Standard
2215 Having the caption above the table is the common rule that is unfortunately
2216  not supported in LaTeX's standard classes.
2217  That means if you are using the document classes 
2218 \family sans
2219 article
2220 \family default
2221
2222 \family sans
2223 book
2224 \family default
2225
2226 \family sans
2227 letter
2228 \family default
2229 , or 
2230 \family sans
2231 report
2232 \family default
2233  there will be no space between the caption and the table.
2234  To insert the needed space, add the following option to the load command
2235  of the LaTeX-package 
2236 \series bold
2237 caption
2238 \series default
2239
2240 \begin_inset LatexCommand index
2241 name "LaTeX-packages ! caption"
2242
2243 \end_inset
2244
2245  in your document preamble
2246 \begin_inset Foot
2247 status collapsed
2248
2249 \begin_layout Standard
2250 For more information have a look at section\InsetSpace ~
2251
2252 \begin_inset LatexCommand ref
2253 reference "sec:Caption-Placement"
2254
2255 \end_inset
2256
2257 .
2258 \end_layout
2259
2260 \end_inset
2261
2262 :
2263 \end_layout
2264
2265 \begin_layout Standard
2266
2267 \series bold
2268 tableposition=top
2269 \end_layout
2270
2271 \begin_layout Standard
2272 The package 
2273 \series bold
2274 caption
2275 \series default
2276 , which is described in section\InsetSpace ~
2277
2278 \begin_inset LatexCommand ref
2279 reference "sec:Caption-Formatting"
2280
2281 \end_inset
2282
2283 , is used to adjust the caption format.
2284 \end_layout
2285
2286 \begin_layout Standard
2287 \begin_inset LatexCommand index
2288 name "References ! to Tables"
2289
2290 \end_inset
2291
2292 Tables can be cross-referenced in the text by referencing their label.
2293  To do this insert a label in the caption using the menu 
2294 \family sans
2295 Insert\SpecialChar \menuseparator
2296 Label
2297 \family default
2298  or the toolbar button 
2299 \begin_inset Graphics
2300         filename ../images/label-insert.xpm
2301         scale 85
2302
2303 \end_inset
2304
2305 .
2306  You can now refer to the label using the menu 
2307 \family sans
2308 Insert\SpecialChar \menuseparator
2309 Cross\InsetSpace ~
2310 reference
2311 \family default
2312  or the toolbar button 
2313 \begin_inset Graphics
2314         filename ../images/dialog-show-new-inset_ref.xpm
2315         scale 85
2316
2317 \end_inset
2318
2319 .
2320 \newline
2321 Referencing is explained in detail in section\InsetSpace ~
2322
2323 \begin_inset LatexCommand ref
2324 reference "sec:Referencing-Floats"
2325
2326 \end_inset
2327
2328 .
2329 \end_layout
2330
2331 \begin_layout Section
2332 Longtables
2333 \begin_inset LatexCommand label
2334 name "sec:Longtables"
2335
2336 \end_inset
2337
2338
2339 \begin_inset LatexCommand index
2340 name "Longtables"
2341
2342 \end_inset
2343
2344
2345 \begin_inset LatexCommand index
2346 name "Table ! Longtables"
2347
2348 \end_inset
2349
2350
2351 \end_layout
2352
2353 \begin_layout Standard
2354 If the table is too long to fit on one page, you can use the option 
2355 \family sans
2356 Use\InsetSpace ~
2357 long\InsetSpace ~
2358 table
2359 \family default
2360  in the tab 
2361 \family sans
2362 Longtable
2363 \family default
2364  of the table dialog to split the table automatically over more pages.
2365  Doing this enables some check boxes and you can now define:
2366 \end_layout
2367
2368 \begin_layout Description
2369
2370 \family sans
2371 Header
2372 \family default
2373 : The current row and all rows above, that don't have any special options
2374  defined, are defined to be the header rows of all pages of the longtable;
2375  except for the first page, if 
2376 \family sans
2377 First\InsetSpace ~
2378 header
2379 \family default
2380  is defined.
2381  This therefore called the main header.
2382 \end_layout
2383
2384 \begin_layout Description
2385
2386 \family sans
2387 First\InsetSpace ~
2388 header
2389 \family default
2390 : The current row and all rows above, that don't have any special options
2391  defined, are defined to be the header rows of the first page of the longtable.
2392 \end_layout
2393
2394 \begin_layout Description
2395
2396 \family sans
2397 Footer
2398 \family default
2399 : The current row and all rows below, that don't have any special options
2400  defined, are defined to be the footer rows of all pages of the longtable;
2401  except for the last page, if 
2402 \family sans
2403 Last\InsetSpace ~
2404 footer
2405 \family default
2406  is defined.
2407 \end_layout
2408
2409 \begin_layout Description
2410
2411 \family sans
2412 Last\InsetSpace ~
2413 footer
2414 \family default
2415 : The current row and all rows below, that don't have any special options
2416  defined, are defined to be the footer rows of the last page of the longtable.
2417 \end_layout
2418
2419 \begin_layout Standard
2420 You can also specify a row where the table is splitted.
2421  If you set more than one option in the same table row, you should be aware
2422  of the fact that only the first one is used in the given table row.
2423  The others will then be defined as 
2424 \emph on
2425 empty
2426 \emph default
2427 .
2428  In this context, first means first in this order: 
2429 \family sans
2430 Header,
2431 \family default
2432  
2433 \family sans
2434 First\InsetSpace ~
2435 header, Footer, Last\InsetSpace ~
2436 footer.
2437
2438 \family default
2439  See the following longtable to see how it works:
2440 \end_layout
2441
2442 \begin_layout Standard
2443 \align center
2444 \begin_inset Tabular
2445 <lyxtabular version="3" rows="69" columns="3">
2446 <features islongtable="true">
2447 <column alignment="left" valignment="top" leftline="true" width="0cm">
2448 <column alignment="left" valignment="top" width="0pt">
2449 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2450 <row topline="true" bottomline="true" endfirsthead="true">
2451 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2452 \begin_inset Text
2453
2454 \begin_layout Standard
2455
2456 \series bold
2457 Example Phone List (ignore the names)
2458 \end_layout
2459
2460 \end_inset
2461 </cell>
2462 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2463 \begin_inset Text
2464
2465 \begin_layout Standard
2466
2467 \end_layout
2468
2469 \end_inset
2470 </cell>
2471 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2472 \begin_inset Text
2473
2474 \begin_layout Standard
2475
2476 \end_layout
2477
2478 \end_inset
2479 </cell>
2480 </row>
2481 <row topline="true" bottomline="true" endfirsthead="true">
2482 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2483 \begin_inset Text
2484
2485 \begin_layout Standard
2486
2487 \series bold
2488 NAME
2489 \end_layout
2490
2491 \end_inset
2492 </cell>
2493 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2494 \begin_inset Text
2495
2496 \begin_layout Standard
2497
2498 \end_layout
2499
2500 \end_inset
2501 </cell>
2502 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2503 \begin_inset Text
2504
2505 \begin_layout Standard
2506
2507 \series bold
2508 TEL.
2509 \end_layout
2510
2511 \end_inset
2512 </cell>
2513 </row>
2514 <row topline="true" bottomline="true" endhead="true">
2515 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2516 \begin_inset Text
2517
2518 \begin_layout Standard
2519
2520 \series bold
2521 Example Phone List
2522 \end_layout
2523
2524 \end_inset
2525 </cell>
2526 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2527 \begin_inset Text
2528
2529 \begin_layout Standard
2530
2531 \end_layout
2532
2533 \end_inset
2534 </cell>
2535 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2536 \begin_inset Text
2537
2538 \begin_layout Standard
2539
2540 \end_layout
2541
2542 \end_inset
2543 </cell>
2544 </row>
2545 <row topline="true" bottomline="true" endhead="true">
2546 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2547 \begin_inset Text
2548
2549 \begin_layout Standard
2550
2551 \series bold
2552 NAME
2553 \end_layout
2554
2555 \end_inset
2556 </cell>
2557 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2558 \begin_inset Text
2559
2560 \begin_layout Standard
2561
2562 \end_layout
2563
2564 \end_inset
2565 </cell>
2566 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2567 \begin_inset Text
2568
2569 \begin_layout Standard
2570
2571 \series bold
2572 TEL.
2573 \end_layout
2574
2575 \end_inset
2576 </cell>
2577 </row>
2578 <row topline="true" bottomline="true" endfoot="true">
2579 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2580 \begin_inset Text
2581
2582 \begin_layout Standard
2583  continued on next page
2584 \end_layout
2585
2586 \end_inset
2587 </cell>
2588 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2589 \begin_inset Text
2590
2591 \begin_layout Standard
2592
2593 \end_layout
2594
2595 \end_inset
2596 </cell>
2597 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2598 \begin_inset Text
2599
2600 \begin_layout Standard
2601
2602 \end_layout
2603
2604 \end_inset
2605 </cell>
2606 </row>
2607 <row>
2608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2609 \begin_inset Text
2610
2611 \begin_layout Standard
2612
2613 \series bold
2614 Annovi
2615 \end_layout
2616
2617 \end_inset
2618 </cell>
2619 <cell alignment="center" valignment="top" topline="true" usebox="none">
2620 \begin_inset Text
2621
2622 \begin_layout Standard
2623 Silvia
2624 \end_layout
2625
2626 \end_inset
2627 </cell>
2628 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2629 \begin_inset Text
2630
2631 \begin_layout Standard
2632 111
2633 \end_layout
2634
2635 \end_inset
2636 </cell>
2637 </row>
2638 <row>
2639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2640 \begin_inset Text
2641
2642 \begin_layout Standard
2643
2644 \series bold
2645 Bertoli
2646 \end_layout
2647
2648 \end_inset
2649 </cell>
2650 <cell alignment="center" valignment="top" topline="true" usebox="none">
2651 \begin_inset Text
2652
2653 \begin_layout Standard
2654 Stefano
2655 \end_layout
2656
2657 \end_inset
2658 </cell>
2659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2660 \begin_inset Text
2661
2662 \begin_layout Standard
2663 111
2664 \end_layout
2665
2666 \end_inset
2667 </cell>
2668 </row>
2669 <row>
2670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2671 \begin_inset Text
2672
2673 \begin_layout Standard
2674
2675 \series bold
2676 Bozzi
2677 \end_layout
2678
2679 \end_inset
2680 </cell>
2681 <cell alignment="center" valignment="top" topline="true" usebox="none">
2682 \begin_inset Text
2683
2684 \begin_layout Standard
2685 Walter
2686 \end_layout
2687
2688 \end_inset
2689 </cell>
2690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2691 \begin_inset Text
2692
2693 \begin_layout Standard
2694 111
2695 \end_layout
2696
2697 \end_inset
2698 </cell>
2699 </row>
2700 <row>
2701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2702 \begin_inset Text
2703
2704 \begin_layout Standard
2705
2706 \series bold
2707 Cachia
2708 \end_layout
2709
2710 \end_inset
2711 </cell>
2712 <cell alignment="center" valignment="top" topline="true" usebox="none">
2713 \begin_inset Text
2714
2715 \begin_layout Standard
2716 Maria
2717 \end_layout
2718
2719 \end_inset
2720 </cell>
2721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2722 \begin_inset Text
2723
2724 \begin_layout Standard
2725 111
2726 \end_layout
2727
2728 \end_inset
2729 </cell>
2730 </row>
2731 <row>
2732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2733 \begin_inset Text
2734
2735 \begin_layout Standard
2736
2737 \series bold
2738 Cachia
2739 \end_layout
2740
2741 \end_inset
2742 </cell>
2743 <cell alignment="center" valignment="top" topline="true" usebox="none">
2744 \begin_inset Text
2745
2746 \begin_layout Standard
2747 Maurizio
2748 \end_layout
2749
2750 \end_inset
2751 </cell>
2752 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2753 \begin_inset Text
2754
2755 \begin_layout Standard
2756 111
2757 \end_layout
2758
2759 \end_inset
2760 </cell>
2761 </row>
2762 <row>
2763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2764 \begin_inset Text
2765
2766 \begin_layout Standard
2767
2768 \series bold
2769 Cinquemani
2770 \end_layout
2771
2772 \end_inset
2773 </cell>
2774 <cell alignment="center" valignment="top" topline="true" usebox="none">
2775 \begin_inset Text
2776
2777 \begin_layout Standard
2778 Giusi
2779 \end_layout
2780
2781 \end_inset
2782 </cell>
2783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2784 \begin_inset Text
2785
2786 \begin_layout Standard
2787 111
2788 \end_layout
2789
2790 \end_inset
2791 </cell>
2792 </row>
2793 <row>
2794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2795 \begin_inset Text
2796
2797 \begin_layout Standard
2798
2799 \series bold
2800 Colin
2801 \end_layout
2802
2803 \end_inset
2804 </cell>
2805 <cell alignment="center" valignment="top" topline="true" usebox="none">
2806 \begin_inset Text
2807
2808 \begin_layout Standard
2809 Bernard
2810 \end_layout
2811
2812 \end_inset
2813 </cell>
2814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2815 \begin_inset Text
2816
2817 \begin_layout Standard
2818 111
2819 \end_layout
2820
2821 \end_inset
2822 </cell>
2823 </row>
2824 <row>
2825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2826 \begin_inset Text
2827
2828 \begin_layout Standard
2829
2830 \series bold
2831 Concli
2832 \end_layout
2833
2834 \end_inset
2835 </cell>
2836 <cell alignment="center" valignment="top" topline="true" usebox="none">
2837 \begin_inset Text
2838
2839 \begin_layout Standard
2840 Gianfranco
2841 \end_layout
2842
2843 \end_inset
2844 </cell>
2845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2846 \begin_inset Text
2847
2848 \begin_layout Standard
2849 111
2850 \end_layout
2851
2852 \end_inset
2853 </cell>
2854 </row>
2855 <row>
2856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2857 \begin_inset Text
2858
2859 \begin_layout Standard
2860
2861 \series bold
2862 Dal Bosco
2863 \end_layout
2864
2865 \end_inset
2866 </cell>
2867 <cell alignment="center" valignment="top" topline="true" usebox="none">
2868 \begin_inset Text
2869
2870 \begin_layout Standard
2871 Carolina
2872 \end_layout
2873
2874 \end_inset
2875 </cell>
2876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2877 \begin_inset Text
2878
2879 \begin_layout Standard
2880 111
2881 \end_layout
2882
2883 \end_inset
2884 </cell>
2885 </row>
2886 <row>
2887 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2888 \begin_inset Text
2889
2890 \begin_layout Standard
2891
2892 \series bold
2893 Dalpiaz
2894 \end_layout
2895
2896 \end_inset
2897 </cell>
2898 <cell alignment="center" valignment="top" topline="true" usebox="none">
2899 \begin_inset Text
2900
2901 \begin_layout Standard
2902 Annamaria
2903 \end_layout
2904
2905 \end_inset
2906 </cell>
2907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2908 \begin_inset Text
2909
2910 \begin_layout Standard
2911 111
2912 \end_layout
2913
2914 \end_inset
2915 </cell>
2916 </row>
2917 <row>
2918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2919 \begin_inset Text
2920
2921 \begin_layout Standard
2922
2923 \series bold
2924 Feliciello
2925 \end_layout
2926
2927 \end_inset
2928 </cell>
2929 <cell alignment="center" valignment="top" topline="true" usebox="none">
2930 \begin_inset Text
2931
2932 \begin_layout Standard
2933 Domenico
2934 \end_layout
2935
2936 \end_inset
2937 </cell>
2938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2939 \begin_inset Text
2940
2941 \begin_layout Standard
2942 111
2943 \end_layout
2944
2945 \end_inset
2946 </cell>
2947 </row>
2948 <row>
2949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2950 \begin_inset Text
2951
2952 \begin_layout Standard
2953
2954 \series bold
2955 Focarelli
2956 \end_layout
2957
2958 \end_inset
2959 </cell>
2960 <cell alignment="center" valignment="top" topline="true" usebox="none">
2961 \begin_inset Text
2962
2963 \begin_layout Standard
2964 Paola
2965 \end_layout
2966
2967 \end_inset
2968 </cell>
2969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2970 \begin_inset Text
2971
2972 \begin_layout Standard
2973 111
2974 \end_layout
2975
2976 \end_inset
2977 </cell>
2978 </row>
2979 <row>
2980 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2981 \begin_inset Text
2982
2983 \begin_layout Standard
2984
2985 \series bold
2986 Galletti
2987 \end_layout
2988
2989 \end_inset
2990 </cell>
2991 <cell alignment="center" valignment="top" topline="true" usebox="none">
2992 \begin_inset Text
2993
2994 \begin_layout Standard
2995 Oreste
2996 \end_layout
2997
2998 \end_inset
2999 </cell>
3000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3001 \begin_inset Text
3002
3003 \begin_layout Standard
3004 111
3005 \end_layout
3006
3007 \end_inset
3008 </cell>
3009 </row>
3010 <row>
3011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3012 \begin_inset Text
3013
3014 \begin_layout Standard
3015
3016 \series bold
3017 Gasparini
3018 \end_layout
3019
3020 \end_inset
3021 </cell>
3022 <cell alignment="center" valignment="top" topline="true" usebox="none">
3023 \begin_inset Text
3024
3025 \begin_layout Standard
3026 Franca
3027 \end_layout
3028
3029 \end_inset
3030 </cell>
3031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3032 \begin_inset Text
3033
3034 \begin_layout Standard
3035 111
3036 \end_layout
3037
3038 \end_inset
3039 </cell>
3040 </row>
3041 <row>
3042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3043 \begin_inset Text
3044
3045 \begin_layout Standard
3046
3047 \series bold
3048 Rizzardi
3049 \end_layout
3050
3051 \end_inset
3052 </cell>
3053 <cell alignment="center" valignment="top" topline="true" usebox="none">
3054 \begin_inset Text
3055
3056 \begin_layout Standard
3057 Paola
3058 \end_layout
3059
3060 \end_inset
3061 </cell>
3062 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3063 \begin_inset Text
3064
3065 \begin_layout Standard
3066 111
3067 \end_layout
3068
3069 \end_inset
3070 </cell>
3071 </row>
3072 <row>
3073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3074 \begin_inset Text
3075
3076 \begin_layout Standard
3077
3078 \series bold
3079 Lassini
3080 \end_layout
3081
3082 \end_inset
3083 </cell>
3084 <cell alignment="center" valignment="top" topline="true" usebox="none">
3085 \begin_inset Text
3086
3087 \begin_layout Standard
3088 Giancarlo
3089 \end_layout
3090
3091 \end_inset
3092 </cell>
3093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3094 \begin_inset Text
3095
3096 \begin_layout Standard
3097 111
3098 \end_layout
3099
3100 \end_inset
3101 </cell>
3102 </row>
3103 <row>
3104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3105 \begin_inset Text
3106
3107 \begin_layout Standard
3108
3109 \series bold
3110 Malfatti
3111 \end_layout
3112
3113 \end_inset
3114 </cell>
3115 <cell alignment="center" valignment="top" topline="true" usebox="none">
3116 \begin_inset Text
3117
3118 \begin_layout Standard
3119 Luciano
3120 \end_layout
3121
3122 \end_inset
3123 </cell>
3124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3125 \begin_inset Text
3126
3127 \begin_layout Standard
3128 111
3129 \end_layout
3130
3131 \end_inset
3132 </cell>
3133 </row>
3134 <row>
3135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3136 \begin_inset Text
3137
3138 \begin_layout Standard
3139
3140 \series bold
3141 Malfatti
3142 \end_layout
3143
3144 \end_inset
3145 </cell>
3146 <cell alignment="center" valignment="top" topline="true" usebox="none">
3147 \begin_inset Text
3148
3149 \begin_layout Standard
3150 Valeriano
3151 \end_layout
3152
3153 \end_inset
3154 </cell>
3155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3156 \begin_inset Text
3157
3158 \begin_layout Standard
3159 111
3160 \end_layout
3161
3162 \end_inset
3163 </cell>
3164 </row>
3165 <row>
3166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3167 \begin_inset Text
3168
3169 \begin_layout Standard
3170
3171 \series bold
3172 Meneguzzo
3173 \end_layout
3174
3175 \end_inset
3176 </cell>
3177 <cell alignment="center" valignment="top" topline="true" usebox="none">
3178 \begin_inset Text
3179
3180 \begin_layout Standard
3181 Roberto
3182 \end_layout
3183
3184 \end_inset
3185 </cell>
3186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3187 \begin_inset Text
3188
3189 \begin_layout Standard
3190 111
3191 \end_layout
3192
3193 \end_inset
3194 </cell>
3195 </row>
3196 <row>
3197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3198 \begin_inset Text
3199
3200 \begin_layout Standard
3201
3202 \series bold
3203 Mezzadra
3204 \end_layout
3205
3206 \end_inset
3207 </cell>
3208 <cell alignment="center" valignment="top" topline="true" usebox="none">
3209 \begin_inset Text
3210
3211 \begin_layout Standard
3212 Roberto
3213 \end_layout
3214
3215 \end_inset
3216 </cell>
3217 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3218 \begin_inset Text
3219
3220 \begin_layout Standard
3221 111
3222 \end_layout
3223
3224 \end_inset
3225 </cell>
3226 </row>
3227 <row>
3228 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3229 \begin_inset Text
3230
3231 \begin_layout Standard
3232
3233 \series bold
3234 Pirpamer
3235 \end_layout
3236
3237 \end_inset
3238 </cell>
3239 <cell alignment="center" valignment="top" topline="true" usebox="none">
3240 \begin_inset Text
3241
3242 \begin_layout Standard
3243 Erich
3244 \end_layout
3245
3246 \end_inset
3247 </cell>
3248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3249 \begin_inset Text
3250
3251 \begin_layout Standard
3252 111
3253 \end_layout
3254
3255 \end_inset
3256 </cell>
3257 </row>
3258 <row>
3259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3260 \begin_inset Text
3261
3262 \begin_layout Standard
3263
3264 \series bold
3265 Pochiesa
3266 \end_layout
3267
3268 \end_inset
3269 </cell>
3270 <cell alignment="center" valignment="top" topline="true" usebox="none">
3271 \begin_inset Text
3272
3273 \begin_layout Standard
3274 Paolo
3275 \end_layout
3276
3277 \end_inset
3278 </cell>
3279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3280 \begin_inset Text
3281
3282 \begin_layout Standard
3283 111, 222
3284 \end_layout
3285
3286 \end_inset
3287 </cell>
3288 </row>
3289 <row>
3290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3291 \begin_inset Text
3292
3293 \begin_layout Standard
3294
3295 \series bold
3296 Radina
3297 \end_layout
3298
3299 \end_inset
3300 </cell>
3301 <cell alignment="center" valignment="top" topline="true" usebox="none">
3302 \begin_inset Text
3303
3304 \begin_layout Standard
3305 Claudio
3306 \end_layout
3307
3308 \end_inset
3309 </cell>
3310 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3311 \begin_inset Text
3312
3313 \begin_layout Standard
3314 111
3315 \end_layout
3316
3317 \end_inset
3318 </cell>
3319 </row>
3320 <row>
3321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3322 \begin_inset Text
3323
3324 \begin_layout Standard
3325
3326 \series bold
3327 Stuffer
3328 \end_layout
3329
3330 \end_inset
3331 </cell>
3332 <cell alignment="center" valignment="top" topline="true" usebox="none">
3333 \begin_inset Text
3334
3335 \begin_layout Standard
3336 Oskar
3337 \end_layout
3338
3339 \end_inset
3340 </cell>
3341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3342 \begin_inset Text
3343
3344 \begin_layout Standard
3345 111
3346 \end_layout
3347
3348 \end_inset
3349 </cell>
3350 </row>
3351 <row>
3352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3353 \begin_inset Text
3354
3355 \begin_layout Standard
3356
3357 \series bold
3358 Tacchelli
3359 \end_layout
3360
3361 \end_inset
3362 </cell>
3363 <cell alignment="center" valignment="top" topline="true" usebox="none">
3364 \begin_inset Text
3365
3366 \begin_layout Standard
3367 Ugo
3368 \end_layout
3369
3370 \end_inset
3371 </cell>
3372 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3373 \begin_inset Text
3374
3375 \begin_layout Standard
3376 111
3377 \end_layout
3378
3379 \end_inset
3380 </cell>
3381 </row>
3382 <row>
3383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3384 \begin_inset Text
3385
3386 \begin_layout Standard
3387
3388 \series bold
3389 Tezzele
3390 \end_layout
3391
3392 \end_inset
3393 </cell>
3394 <cell alignment="center" valignment="top" topline="true" usebox="none">
3395 \begin_inset Text
3396
3397 \begin_layout Standard
3398 Margit
3399 \end_layout
3400
3401 \end_inset
3402 </cell>
3403 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3404 \begin_inset Text
3405
3406 \begin_layout Standard
3407 111
3408 \end_layout
3409
3410 \end_inset
3411 </cell>
3412 </row>
3413 <row>
3414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3415 \begin_inset Text
3416
3417 \begin_layout Standard
3418
3419 \series bold
3420 Unterkalmsteiner
3421 \end_layout
3422
3423 \end_inset
3424 </cell>
3425 <cell alignment="center" valignment="top" topline="true" usebox="none">
3426 \begin_inset Text
3427
3428 \begin_layout Standard
3429 Frieda
3430 \end_layout
3431
3432 \end_inset
3433 </cell>
3434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3435 \begin_inset Text
3436
3437 \begin_layout Standard
3438 111
3439 \end_layout
3440
3441 \end_inset
3442 </cell>
3443 </row>
3444 <row>
3445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3446 \begin_inset Text
3447
3448 \begin_layout Standard
3449
3450 \series bold
3451 Vieider
3452 \end_layout
3453
3454 \end_inset
3455 </cell>
3456 <cell alignment="center" valignment="top" topline="true" usebox="none">
3457 \begin_inset Text
3458
3459 \begin_layout Standard
3460 Hilde
3461 \end_layout
3462
3463 \end_inset
3464 </cell>
3465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3466 \begin_inset Text
3467
3468 \begin_layout Standard
3469 111
3470 \end_layout
3471
3472 \end_inset
3473 </cell>
3474 </row>
3475 <row>
3476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3477 \begin_inset Text
3478
3479 \begin_layout Standard
3480
3481 \series bold
3482 Vigna
3483 \end_layout
3484
3485 \end_inset
3486 </cell>
3487 <cell alignment="center" valignment="top" topline="true" usebox="none">
3488 \begin_inset Text
3489
3490 \begin_layout Standard
3491 Jürgen
3492 \end_layout
3493
3494 \end_inset
3495 </cell>
3496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3497 \begin_inset Text
3498
3499 \begin_layout Standard
3500 111
3501 \end_layout
3502
3503 \end_inset
3504 </cell>
3505 </row>
3506 <row>
3507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3508 \begin_inset Text
3509
3510 \begin_layout Standard
3511
3512 \series bold
3513 Weber
3514 \end_layout
3515
3516 \end_inset
3517 </cell>
3518 <cell alignment="center" valignment="top" topline="true" usebox="none">
3519 \begin_inset Text
3520
3521 \begin_layout Standard
3522 Maurizio
3523 \end_layout
3524
3525 \end_inset
3526 </cell>
3527 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3528 \begin_inset Text
3529
3530 \begin_layout Standard
3531 111
3532 \end_layout
3533
3534 \end_inset
3535 </cell>
3536 </row>
3537 <row bottomline="true">
3538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3539 \begin_inset Text
3540
3541 \begin_layout Standard
3542
3543 \series bold
3544 Winkler
3545 \end_layout
3546
3547 \end_inset
3548 </cell>
3549 <cell alignment="center" valignment="top" topline="true" usebox="none">
3550 \begin_inset Text
3551
3552 \begin_layout Standard
3553 Franz
3554 \end_layout
3555
3556 \end_inset
3557 </cell>
3558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3559 \begin_inset Text
3560
3561 \begin_layout Standard
3562 111
3563 \end_layout
3564
3565 \end_inset
3566 </cell>
3567 </row>
3568 <row bottomline="true">
3569 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3570 \begin_inset Text
3571
3572 \begin_layout Standard
3573  
3574 \end_layout
3575
3576 \end_inset
3577 </cell>
3578 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3579 \begin_inset Text
3580
3581 \begin_layout Standard
3582
3583 \end_layout
3584
3585 \end_inset
3586 </cell>
3587 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3588 \begin_inset Text
3589
3590 \begin_layout Standard
3591
3592 \end_layout
3593
3594 \end_inset
3595 </cell>
3596 </row>
3597 <row>
3598 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3599 \begin_inset Text
3600
3601 \begin_layout Standard
3602
3603 \series bold
3604 Annovi
3605 \end_layout
3606
3607 \end_inset
3608 </cell>
3609 <cell alignment="center" valignment="top" topline="true" usebox="none">
3610 \begin_inset Text
3611
3612 \begin_layout Standard
3613 Silvia
3614 \end_layout
3615
3616 \end_inset
3617 </cell>
3618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3619 \begin_inset Text
3620
3621 \begin_layout Standard
3622 555
3623 \end_layout
3624
3625 \end_inset
3626 </cell>
3627 </row>
3628 <row>
3629 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3630 \begin_inset Text
3631
3632 \begin_layout Standard
3633
3634 \series bold
3635 Bertoli
3636 \end_layout
3637
3638 \end_inset
3639 </cell>
3640 <cell alignment="center" valignment="top" topline="true" usebox="none">
3641 \begin_inset Text
3642
3643 \begin_layout Standard
3644 Stefano
3645 \end_layout
3646
3647 \end_inset
3648 </cell>
3649 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3650 \begin_inset Text
3651
3652 \begin_layout Standard
3653 555
3654 \end_layout
3655
3656 \end_inset
3657 </cell>
3658 </row>
3659 <row>
3660 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3661 \begin_inset Text
3662
3663 \begin_layout Standard
3664
3665 \series bold
3666 Bozzi
3667 \end_layout
3668
3669 \end_inset
3670 </cell>
3671 <cell alignment="center" valignment="top" topline="true" usebox="none">
3672 \begin_inset Text
3673
3674 \begin_layout Standard
3675 Walter
3676 \end_layout
3677
3678 \end_inset
3679 </cell>
3680 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3681 \begin_inset Text
3682
3683 \begin_layout Standard
3684 555
3685 \end_layout
3686
3687 \end_inset
3688 </cell>
3689 </row>
3690 <row>
3691 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3692 \begin_inset Text
3693
3694 \begin_layout Standard
3695
3696 \series bold
3697 Cachia
3698 \end_layout
3699
3700 \end_inset
3701 </cell>
3702 <cell alignment="center" valignment="top" topline="true" usebox="none">
3703 \begin_inset Text
3704
3705 \begin_layout Standard
3706 Maria
3707 \end_layout
3708
3709 \end_inset
3710 </cell>
3711 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3712 \begin_inset Text
3713
3714 \begin_layout Standard
3715 555
3716 \end_layout
3717
3718 \end_inset
3719 </cell>
3720 </row>
3721 <row>
3722 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3723 \begin_inset Text
3724
3725 \begin_layout Standard
3726
3727 \series bold
3728 Cachia
3729 \end_layout
3730
3731 \end_inset
3732 </cell>
3733 <cell alignment="center" valignment="top" topline="true" usebox="none">
3734 \begin_inset Text
3735
3736 \begin_layout Standard
3737 Maurizio
3738 \end_layout
3739
3740 \end_inset
3741 </cell>
3742 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3743 \begin_inset Text
3744
3745 \begin_layout Standard
3746 555
3747 \end_layout
3748
3749 \end_inset
3750 </cell>
3751 </row>
3752 <row>
3753 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3754 \begin_inset Text
3755
3756 \begin_layout Standard
3757
3758 \series bold
3759 Cinquemani
3760 \end_layout
3761
3762 \end_inset
3763 </cell>
3764 <cell alignment="center" valignment="top" topline="true" usebox="none">
3765 \begin_inset Text
3766
3767 \begin_layout Standard
3768 Giusi
3769 \end_layout
3770
3771 \end_inset
3772 </cell>
3773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3774 \begin_inset Text
3775
3776 \begin_layout Standard
3777 555
3778 \end_layout
3779
3780 \end_inset
3781 </cell>
3782 </row>
3783 <row>
3784 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3785 \begin_inset Text
3786
3787 \begin_layout Standard
3788
3789 \series bold
3790 Colin
3791 \end_layout
3792
3793 \end_inset
3794 </cell>
3795 <cell alignment="center" valignment="top" topline="true" usebox="none">
3796 \begin_inset Text
3797
3798 \begin_layout Standard
3799 Bernard
3800 \end_layout
3801
3802 \end_inset
3803 </cell>
3804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3805 \begin_inset Text
3806
3807 \begin_layout Standard
3808 555
3809 \end_layout
3810
3811 \end_inset
3812 </cell>
3813 </row>
3814 <row>
3815 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3816 \begin_inset Text
3817
3818 \begin_layout Standard
3819
3820 \series bold
3821 Concli
3822 \end_layout
3823
3824 \end_inset
3825 </cell>
3826 <cell alignment="center" valignment="top" topline="true" usebox="none">
3827 \begin_inset Text
3828
3829 \begin_layout Standard
3830 Gianfranco
3831 \end_layout
3832
3833 \end_inset
3834 </cell>
3835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3836 \begin_inset Text
3837
3838 \begin_layout Standard
3839 555
3840 \end_layout
3841
3842 \end_inset
3843 </cell>
3844 </row>
3845 <row>
3846 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3847 \begin_inset Text
3848
3849 \begin_layout Standard
3850
3851 \series bold
3852 Dal Bosco
3853 \end_layout
3854
3855 \end_inset
3856 </cell>
3857 <cell alignment="center" valignment="top" topline="true" usebox="none">
3858 \begin_inset Text
3859
3860 \begin_layout Standard
3861 Carolina
3862 \end_layout
3863
3864 \end_inset
3865 </cell>
3866 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3867 \begin_inset Text
3868
3869 \begin_layout Standard
3870 555
3871 \end_layout
3872
3873 \end_inset
3874 </cell>
3875 </row>
3876 <row>
3877 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3878 \begin_inset Text
3879
3880 \begin_layout Standard
3881
3882 \series bold
3883 Dalpiaz
3884 \end_layout
3885
3886 \end_inset
3887 </cell>
3888 <cell alignment="center" valignment="top" topline="true" usebox="none">
3889 \begin_inset Text
3890
3891 \begin_layout Standard
3892 Annamaria
3893 \end_layout
3894
3895 \end_inset
3896 </cell>
3897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3898 \begin_inset Text
3899
3900 \begin_layout Standard
3901 555
3902 \end_layout
3903
3904 \end_inset
3905 </cell>
3906 </row>
3907 <row>
3908 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3909 \begin_inset Text
3910
3911 \begin_layout Standard
3912
3913 \series bold
3914 Feliciello
3915 \end_layout
3916
3917 \end_inset
3918 </cell>
3919 <cell alignment="center" valignment="top" topline="true" usebox="none">
3920 \begin_inset Text
3921
3922 \begin_layout Standard
3923 Domenico
3924 \end_layout
3925
3926 \end_inset
3927 </cell>
3928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3929 \begin_inset Text
3930
3931 \begin_layout Standard
3932 555
3933 \end_layout
3934
3935 \end_inset
3936 </cell>
3937 </row>
3938 <row>
3939 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3940 \begin_inset Text
3941
3942 \begin_layout Standard
3943
3944 \series bold
3945 Focarelli
3946 \end_layout
3947
3948 \end_inset
3949 </cell>
3950 <cell alignment="center" valignment="top" topline="true" usebox="none">
3951 \begin_inset Text
3952
3953 \begin_layout Standard
3954 Paola
3955 \end_layout
3956
3957 \end_inset
3958 </cell>
3959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3960 \begin_inset Text
3961
3962 \begin_layout Standard
3963 555
3964 \end_layout
3965
3966 \end_inset
3967 </cell>
3968 </row>
3969 <row>
3970 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3971 \begin_inset Text
3972
3973 \begin_layout Standard
3974
3975 \series bold
3976 Galletti
3977 \end_layout
3978
3979 \end_inset
3980 </cell>
3981 <cell alignment="center" valignment="top" topline="true" usebox="none">
3982 \begin_inset Text
3983
3984 \begin_layout Standard
3985 Oreste
3986 \end_layout
3987
3988 \end_inset
3989 </cell>
3990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3991 \begin_inset Text
3992
3993 \begin_layout Standard
3994 555
3995 \end_layout
3996
3997 \end_inset
3998 </cell>
3999 </row>
4000 <row>
4001 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4002 \begin_inset Text
4003
4004 \begin_layout Standard
4005
4006 \series bold
4007 Gasparini
4008 \end_layout
4009
4010 \end_inset
4011 </cell>
4012 <cell alignment="center" valignment="top" topline="true" usebox="none">
4013 \begin_inset Text
4014
4015 \begin_layout Standard
4016 Franca
4017 \end_layout
4018
4019 \end_inset
4020 </cell>
4021 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4022 \begin_inset Text
4023
4024 \begin_layout Standard
4025 555
4026 \end_layout
4027
4028 \end_inset
4029 </cell>
4030 </row>
4031 <row>
4032 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4033 \begin_inset Text
4034
4035 \begin_layout Standard
4036
4037 \series bold
4038 Rizzardi
4039 \end_layout
4040
4041 \end_inset
4042 </cell>
4043 <cell alignment="center" valignment="top" topline="true" usebox="none">
4044 \begin_inset Text
4045
4046 \begin_layout Standard
4047 Paola
4048 \end_layout
4049
4050 \end_inset
4051 </cell>
4052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4053 \begin_inset Text
4054
4055 \begin_layout Standard
4056 555
4057 \end_layout
4058
4059 \end_inset
4060 </cell>
4061 </row>
4062 <row>
4063 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4064 \begin_inset Text
4065
4066 \begin_layout Standard
4067
4068 \series bold
4069 Lassini
4070 \end_layout
4071
4072 \end_inset
4073 </cell>
4074 <cell alignment="center" valignment="top" topline="true" usebox="none">
4075 \begin_inset Text
4076
4077 \begin_layout Standard
4078 Giancarlo
4079 \end_layout
4080
4081 \end_inset
4082 </cell>
4083 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4084 \begin_inset Text
4085
4086 \begin_layout Standard
4087 555
4088 \end_layout
4089
4090 \end_inset
4091 </cell>
4092 </row>
4093 <row>
4094 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4095 \begin_inset Text
4096
4097 \begin_layout Standard
4098
4099 \series bold
4100 Malfatti
4101 \end_layout
4102
4103 \end_inset
4104 </cell>
4105 <cell alignment="center" valignment="top" topline="true" usebox="none">
4106 \begin_inset Text
4107
4108 \begin_layout Standard
4109 Luciano
4110 \end_layout
4111
4112 \end_inset
4113 </cell>
4114 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4115 \begin_inset Text
4116
4117 \begin_layout Standard
4118 555
4119 \end_layout
4120
4121 \end_inset
4122 </cell>
4123 </row>
4124 <row>
4125 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4126 \begin_inset Text
4127
4128 \begin_layout Standard
4129
4130 \series bold
4131 Malfatti
4132 \end_layout
4133
4134 \end_inset
4135 </cell>
4136 <cell alignment="center" valignment="top" topline="true" usebox="none">
4137 \begin_inset Text
4138
4139 \begin_layout Standard
4140 Valeriano
4141 \end_layout
4142
4143 \end_inset
4144 </cell>
4145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4146 \begin_inset Text
4147
4148 \begin_layout Standard
4149 555
4150 \end_layout
4151
4152 \end_inset
4153 </cell>
4154 </row>
4155 <row>
4156 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4157 \begin_inset Text
4158
4159 \begin_layout Standard
4160
4161 \series bold
4162 Meneguzzo
4163 \end_layout
4164
4165 \end_inset
4166 </cell>
4167 <cell alignment="center" valignment="top" topline="true" usebox="none">
4168 \begin_inset Text
4169
4170 \begin_layout Standard
4171 Roberto
4172 \end_layout
4173
4174 \end_inset
4175 </cell>
4176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4177 \begin_inset Text
4178
4179 \begin_layout Standard
4180 555
4181 \end_layout
4182
4183 \end_inset
4184 </cell>
4185 </row>
4186 <row>
4187 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4188 \begin_inset Text
4189
4190 \begin_layout Standard
4191
4192 \series bold
4193 Mezzadra
4194 \end_layout
4195
4196 \end_inset
4197 </cell>
4198 <cell alignment="center" valignment="top" topline="true" usebox="none">
4199 \begin_inset Text
4200
4201 \begin_layout Standard
4202 Roberto
4203 \end_layout
4204
4205 \end_inset
4206 </cell>
4207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4208 \begin_inset Text
4209
4210 \begin_layout Standard
4211 555
4212 \end_layout
4213
4214 \end_inset
4215 </cell>
4216 </row>
4217 <row>
4218 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4219 \begin_inset Text
4220
4221 \begin_layout Standard
4222
4223 \series bold
4224 Pirpamer
4225 \end_layout
4226
4227 \end_inset
4228 </cell>
4229 <cell alignment="center" valignment="top" topline="true" usebox="none">
4230 \begin_inset Text
4231
4232 \begin_layout Standard
4233 Erich
4234 \end_layout
4235
4236 \end_inset
4237 </cell>
4238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4239 \begin_inset Text
4240
4241 \begin_layout Standard
4242 555
4243 \end_layout
4244
4245 \end_inset
4246 </cell>
4247 </row>
4248 <row>
4249 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4250 \begin_inset Text
4251
4252 \begin_layout Standard
4253
4254 \series bold
4255 Pochiesa
4256 \end_layout
4257
4258 \end_inset
4259 </cell>
4260 <cell alignment="center" valignment="top" topline="true" usebox="none">
4261 \begin_inset Text
4262
4263 \begin_layout Standard
4264 Paolo
4265 \end_layout
4266
4267 \end_inset
4268 </cell>
4269 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4270 \begin_inset Text
4271
4272 \begin_layout Standard
4273 555, 222
4274 \end_layout
4275
4276 \end_inset
4277 </cell>
4278 </row>
4279 <row>
4280 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4281 \begin_inset Text
4282
4283 \begin_layout Standard
4284
4285 \series bold
4286 Radina
4287 \end_layout
4288
4289 \end_inset
4290 </cell>
4291 <cell alignment="center" valignment="top" topline="true" usebox="none">
4292 \begin_inset Text
4293
4294 \begin_layout Standard
4295 Claudio
4296 \end_layout
4297
4298 \end_inset
4299 </cell>
4300 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4301 \begin_inset Text
4302
4303 \begin_layout Standard
4304 555
4305 \end_layout
4306
4307 \end_inset
4308 </cell>
4309 </row>
4310 <row>
4311 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4312 \begin_inset Text
4313
4314 \begin_layout Standard
4315
4316 \series bold
4317 Stuffer
4318 \end_layout
4319
4320 \end_inset
4321 </cell>
4322 <cell alignment="center" valignment="top" topline="true" usebox="none">
4323 \begin_inset Text
4324
4325 \begin_layout Standard
4326 Oskar
4327 \end_layout
4328
4329 \end_inset
4330 </cell>
4331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4332 \begin_inset Text
4333
4334 \begin_layout Standard
4335 555
4336 \end_layout
4337
4338 \end_inset
4339 </cell>
4340 </row>
4341 <row>
4342 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4343 \begin_inset Text
4344
4345 \begin_layout Standard
4346
4347 \series bold
4348 Tacchelli
4349 \end_layout
4350
4351 \end_inset
4352 </cell>
4353 <cell alignment="center" valignment="top" topline="true" usebox="none">
4354 \begin_inset Text
4355
4356 \begin_layout Standard
4357 Ugo
4358 \end_layout
4359
4360 \end_inset
4361 </cell>
4362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4363 \begin_inset Text
4364
4365 \begin_layout Standard
4366 555
4367 \end_layout
4368
4369 \end_inset
4370 </cell>
4371 </row>
4372 <row>
4373 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4374 \begin_inset Text
4375
4376 \begin_layout Standard
4377
4378 \series bold
4379 Tezzele
4380 \end_layout
4381
4382 \end_inset
4383 </cell>
4384 <cell alignment="center" valignment="top" topline="true" usebox="none">
4385 \begin_inset Text
4386
4387 \begin_layout Standard
4388 Margit
4389 \end_layout
4390
4391 \end_inset
4392 </cell>
4393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4394 \begin_inset Text
4395
4396 \begin_layout Standard
4397 555
4398 \end_layout
4399
4400 \end_inset
4401 </cell>
4402 </row>
4403 <row>
4404 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4405 \begin_inset Text
4406
4407 \begin_layout Standard
4408
4409 \series bold
4410 Unterkalmsteiner
4411 \end_layout
4412
4413 \end_inset
4414 </cell>
4415 <cell alignment="center" valignment="top" topline="true" usebox="none">
4416 \begin_inset Text
4417
4418 \begin_layout Standard
4419 Frieda
4420 \end_layout
4421
4422 \end_inset
4423 </cell>
4424 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4425 \begin_inset Text
4426
4427 \begin_layout Standard
4428 555
4429 \end_layout
4430
4431 \end_inset
4432 </cell>
4433 </row>
4434 <row>
4435 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4436 \begin_inset Text
4437
4438 \begin_layout Standard
4439
4440 \series bold
4441 Vieider
4442 \end_layout
4443
4444 \end_inset
4445 </cell>
4446 <cell alignment="center" valignment="top" topline="true" usebox="none">
4447 \begin_inset Text
4448
4449 \begin_layout Standard
4450 Hilde
4451 \end_layout
4452
4453 \end_inset
4454 </cell>
4455 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4456 \begin_inset Text
4457
4458 \begin_layout Standard
4459 555
4460 \end_layout
4461
4462 \end_inset
4463 </cell>
4464 </row>
4465 <row>
4466 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4467 \begin_inset Text
4468
4469 \begin_layout Standard
4470
4471 \series bold
4472 Vigna
4473 \end_layout
4474
4475 \end_inset
4476 </cell>
4477 <cell alignment="center" valignment="top" topline="true" usebox="none">
4478 \begin_inset Text
4479
4480 \begin_layout Standard
4481 Jürgen
4482 \end_layout
4483
4484 \end_inset
4485 </cell>
4486 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4487 \begin_inset Text
4488
4489 \begin_layout Standard
4490 999
4491 \end_layout
4492
4493 \end_inset
4494 </cell>
4495 </row>
4496 <row>
4497 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4498 \begin_inset Text
4499
4500 \begin_layout Standard
4501
4502 \series bold
4503 Weber
4504 \end_layout
4505
4506 \end_inset
4507 </cell>
4508 <cell alignment="center" valignment="top" topline="true" usebox="none">
4509 \begin_inset Text
4510
4511 \begin_layout Standard
4512 Maurizio
4513 \end_layout
4514
4515 \end_inset
4516 </cell>
4517 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4518 \begin_inset Text
4519
4520 \begin_layout Standard
4521 555
4522 \end_layout
4523
4524 \end_inset
4525 </cell>
4526 </row>
4527 <row bottomline="true">
4528 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4529 \begin_inset Text
4530
4531 \begin_layout Standard
4532
4533 \series bold
4534 Winkler
4535 \end_layout
4536
4537 \end_inset
4538 </cell>
4539 <cell alignment="center" valignment="top" topline="true" usebox="none">
4540 \begin_inset Text
4541
4542 \begin_layout Standard
4543 Franz
4544 \end_layout
4545
4546 \end_inset
4547 </cell>
4548 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4549 \begin_inset Text
4550
4551 \begin_layout Standard
4552 555
4553 \end_layout
4554
4555 \end_inset
4556 </cell>
4557 </row>
4558 <row bottomline="true" endlastfoot="true">
4559 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4560 \begin_inset Text
4561
4562 \begin_layout Standard
4563 end
4564 \end_layout
4565
4566 \end_inset
4567 </cell>
4568 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4569 \begin_inset Text
4570
4571 \begin_layout Standard
4572
4573 \end_layout
4574
4575 \end_inset
4576 </cell>
4577 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4578 \begin_inset Text
4579
4580 \begin_layout Standard
4581
4582 \end_layout
4583
4584 \end_inset
4585 </cell>
4586 </row>
4587 </lyxtabular>
4588
4589 \end_inset
4590
4591
4592 \begin_inset ERT
4593 status collapsed
4594
4595 \begin_layout Standard
4596
4597
4598 \backslash
4599 addtocounter{table}{-1}
4600 \end_layout
4601
4602 \end_inset
4603
4604
4605 \begin_inset Note Note
4606 status collapsed
4607
4608 \begin_layout Standard
4609 See greyed-out note in section 2.6.2 for an explanation of this command.
4610 \end_layout
4611
4612 \end_inset
4613
4614
4615 \end_layout
4616
4617 \begin_layout Subsection
4618 Footnotes in Longtables
4619 \begin_inset LatexCommand label
4620 name "sub:Footnotes-in-Longtables"
4621
4622 \end_inset
4623
4624
4625 \begin_inset LatexCommand index
4626 name "Longtables ! Footnotes"
4627
4628 \end_inset
4629
4630
4631 \end_layout
4632
4633 \begin_layout Standard
4634 Footnotes can be inserted to every longtable cell.
4635  They appear at the bottom of the page where the table cell with the footnote
4636  appears.
4637  Table\InsetSpace ~
4638
4639 \begin_inset LatexCommand ref
4640 reference "tab:DiffCaptions"
4641
4642 \end_inset
4643
4644  has for example a footnote.
4645 \end_layout
4646
4647 \begin_layout Subsection
4648 Longtable Captions
4649 \begin_inset LatexCommand index
4650 name "Longtables ! Captions"
4651
4652 \end_inset
4653
4654
4655 \end_layout
4656
4657 \begin_layout Standard
4658 A longtable cannot be put into a table float because floats can only be
4659  on one page but the caption environment of floats can also be used for
4660  longtables.
4661 \end_layout
4662
4663 \begin_layout Standard
4664 As LyX does not yet fully support captions in longtables, a hack is needed
4665  to create them:
4666 \end_layout
4667
4668 \begin_layout Enumerate
4669 Create a longtable
4670 \family sans
4671 .
4672 \end_layout
4673
4674 \begin_layout Enumerate
4675 Mark the first row and disable its upper line.
4676 \end_layout
4677
4678 \begin_layout Enumerate
4679 Insert a caption via the menu 
4680 \family sans
4681 Insert\SpecialChar \menuseparator
4682 Caption
4683 \family default
4684  into the first table cell.
4685 \newline
4686 You can also add a short title for the caption.
4687 \end_layout
4688
4689 \begin_layout Enumerate
4690 Insert a 
4691 \begin_inset Quotes eld
4692 \end_inset
4693
4694
4695 \series bold
4696
4697 \backslash
4698
4699 \backslash
4700 %
4701 \series default
4702
4703 \begin_inset Quotes erd
4704 \end_inset
4705
4706  as ERT behind the caption.
4707 \end_layout
4708
4709 \begin_layout Standard
4710 A short title that will appear in the LOT instead of the full title.
4711  The 
4712 \series bold
4713
4714 \backslash
4715
4716 \backslash
4717 %
4718 \series default
4719  behind the caption omits the vertical lines between the following cells
4720  in the row.
4721  The first table row is now only a dummy row for the caption, the actual
4722  table starts with the second row.
4723 \end_layout
4724
4725 \begin_layout Standard
4726 Here is a short longtable to see how it works:
4727 \end_layout
4728
4729 \begin_layout Standard
4730 \begin_inset Tabular
4731 <lyxtabular version="3" rows="6" columns="5">
4732 <features islongtable="true">
4733 <column alignment="center" valignment="top" leftline="true" width="0">
4734 <column alignment="center" valignment="top" leftline="true" width="0">
4735 <column alignment="center" valignment="top" leftline="true" width="0">
4736 <column alignment="center" valignment="top" leftline="true" width="0">
4737 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4738 <row>
4739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4740 \begin_inset Text
4741
4742 \begin_layout Standard
4743 \begin_inset Caption
4744
4745 \begin_layout Standard
4746 Longtable with caption
4747 \begin_inset OptArg
4748 status open
4749
4750 \begin_layout Standard
4751 Longtable
4752 \end_layout
4753
4754 \end_inset
4755
4756
4757 \end_layout
4758
4759 \end_inset
4760
4761
4762 \begin_inset ERT
4763 status collapsed
4764
4765 \begin_layout Standard
4766
4767
4768 \backslash
4769
4770 \backslash
4771 %
4772 \end_layout
4773
4774 \end_inset
4775
4776
4777 \end_layout
4778
4779 \end_inset
4780 </cell>
4781 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4782 \begin_inset Text
4783
4784 \begin_layout Standard
4785
4786 \end_layout
4787
4788 \end_inset
4789 </cell>
4790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4791 \begin_inset Text
4792
4793 \begin_layout Standard
4794
4795 \end_layout
4796
4797 \end_inset
4798 </cell>
4799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4800 \begin_inset Text
4801
4802 \begin_layout Standard
4803
4804 \end_layout
4805
4806 \end_inset
4807 </cell>
4808 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4809 \begin_inset Text
4810
4811 \begin_layout Standard
4812
4813 \end_layout
4814
4815 \end_inset
4816 </cell>
4817 </row>
4818 <row topline="true">
4819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4820 \begin_inset Text
4821
4822 \begin_layout Standard
4823 1
4824 \end_layout
4825
4826 \end_inset
4827 </cell>
4828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4829 \begin_inset Text
4830
4831 \begin_layout Standard
4832 2
4833 \end_layout
4834
4835 \end_inset
4836 </cell>
4837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4838 \begin_inset Text
4839
4840 \begin_layout Standard
4841 3
4842 \end_layout
4843
4844 \end_inset
4845 </cell>
4846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4847 \begin_inset Text
4848
4849 \begin_layout Standard
4850 4
4851 \end_layout
4852
4853 \end_inset
4854 </cell>
4855 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4856 \begin_inset Text
4857
4858 \begin_layout Standard
4859 5
4860 \end_layout
4861
4862 \end_inset
4863 </cell>
4864 </row>
4865 <row topline="true">
4866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4867 \begin_inset Text
4868
4869 \begin_layout Standard
4870 asd
4871 \end_layout
4872
4873 \end_inset
4874 </cell>
4875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4876 \begin_inset Text
4877
4878 \begin_layout Standard
4879 s
4880 \end_layout
4881
4882 \end_inset
4883 </cell>
4884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4885 \begin_inset Text
4886
4887 \begin_layout Standard
4888 s
4889 \end_layout
4890
4891 \end_inset
4892 </cell>
4893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4894 \begin_inset Text
4895
4896 \begin_layout Standard
4897 s
4898 \end_layout
4899
4900 \end_inset
4901 </cell>
4902 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4903 \begin_inset Text
4904
4905 \begin_layout Standard
4906 asd
4907 \end_layout
4908
4909 \end_inset
4910 </cell>
4911 </row>
4912 <row topline="true">
4913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4914 \begin_inset Text
4915
4916 \begin_layout Standard
4917 asd
4918 \end_layout
4919
4920 \end_inset
4921 </cell>
4922 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4923 \begin_inset Text
4924
4925 \begin_layout Standard
4926 s
4927 \end_layout
4928
4929 \end_inset
4930 </cell>
4931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4932 \begin_inset Text
4933
4934 \begin_layout Standard
4935 s
4936 \end_layout
4937
4938 \end_inset
4939 </cell>
4940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4941 \begin_inset Text
4942
4943 \begin_layout Standard
4944 s
4945 \end_layout
4946
4947 \end_inset
4948 </cell>
4949 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4950 \begin_inset Text
4951
4952 \begin_layout Standard
4953 asd
4954 \end_layout
4955
4956 \end_inset
4957 </cell>
4958 </row>
4959 <row topline="true">
4960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4961 \begin_inset Text
4962
4963 \begin_layout Standard
4964 asd
4965 \end_layout
4966
4967 \end_inset
4968 </cell>
4969 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4970 \begin_inset Text
4971
4972 \begin_layout Standard
4973 s
4974 \end_layout
4975
4976 \end_inset
4977 </cell>
4978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4979 \begin_inset Text
4980
4981 \begin_layout Standard
4982 s
4983 \end_layout
4984
4985 \end_inset
4986 </cell>
4987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4988 \begin_inset Text
4989
4990 \begin_layout Standard
4991 s
4992 \end_layout
4993
4994 \end_inset
4995 </cell>
4996 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4997 \begin_inset Text
4998
4999 \begin_layout Standard
5000 asd
5001 \end_layout
5002
5003 \end_inset
5004 </cell>
5005 </row>
5006 <row topline="true" bottomline="true">
5007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5008 \begin_inset Text
5009
5010 \begin_layout Standard
5011 asd
5012 \end_layout
5013
5014 \end_inset
5015 </cell>
5016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5017 \begin_inset Text
5018
5019 \begin_layout Standard
5020 asd
5021 \end_layout
5022
5023 \end_inset
5024 </cell>
5025 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5026 \begin_inset Text
5027
5028 \begin_layout Standard
5029 asd
5030 \end_layout
5031
5032 \end_inset
5033 </cell>
5034 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5035 \begin_inset Text
5036
5037 \begin_layout Standard
5038 asd
5039 \end_layout
5040
5041 \end_inset
5042 </cell>
5043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5044 \begin_inset Text
5045
5046 \begin_layout Standard
5047 asd
5048 \end_layout
5049
5050 \end_inset
5051 </cell>
5052 </row>
5053 </lyxtabular>
5054
5055 \end_inset
5056
5057
5058 \end_layout
5059
5060 \begin_layout Standard
5061 \begin_inset VSpace medskip
5062 \end_inset
5063
5064
5065 \begin_inset Note Greyedout
5066 status open
5067
5068 \begin_layout Standard
5069
5070 \series bold
5071 Note:
5072 \series default
5073  The table number is increased for every longtable, also if you didn't set
5074  a caption for it.
5075  For this reason you could have the case that e.g.
5076  Table\InsetSpace ~
5077 2.4 follows on Table\InsetSpace ~
5078 2.1 in the list of tables if there are two longtables
5079  without captions.
5080  To avoid this you can add the following command in ERT behind every longtable
5081  without a caption:
5082 \end_layout
5083
5084 \begin_layout Standard
5085
5086 \series bold
5087
5088 \backslash
5089 addtocounter{table}{-1}
5090 \end_layout
5091
5092 \end_inset
5093
5094
5095 \end_layout
5096
5097 \begin_layout Standard
5098 \begin_inset Note Greyedout
5099 status open
5100
5101 \begin_layout Standard
5102
5103 \series bold
5104 Note:
5105 \series default
5106  If you are using the LaTeX-package 
5107 \series bold
5108 hyperref
5109 \series default
5110
5111 \begin_inset LatexCommand index
5112 name "LaTeX-packages ! hyperref"
5113
5114 \end_inset
5115
5116  to link cross-references, the link to a longtable caption will always point
5117  to the beginning of the document.
5118 \end_layout
5119
5120 \end_inset
5121
5122
5123 \end_layout
5124
5125 \begin_layout Subsubsection
5126 References to Longtables
5127 \begin_inset LatexCommand index
5128 name "Longtables ! References"
5129
5130 \end_inset
5131
5132
5133 \end_layout
5134
5135 \begin_layout Standard
5136 \begin_inset Tabular
5137 <lyxtabular version="3" rows="6" columns="5">
5138 <features islongtable="true">
5139 <column alignment="center" valignment="top" leftline="true" width="0">
5140 <column alignment="center" valignment="top" leftline="true" width="0">
5141 <column alignment="center" valignment="top" leftline="true" width="0">
5142 <column alignment="center" valignment="top" leftline="true" width="0">
5143 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5144 <row>
5145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5146 \begin_inset Text
5147
5148 \begin_layout Standard
5149 \begin_inset Caption
5150
5151 \begin_layout Standard
5152 Referenced longtable
5153 \begin_inset LatexCommand label
5154 name "tab:RefExample"
5155
5156 \end_inset
5157
5158
5159 \end_layout
5160
5161 \end_inset
5162
5163
5164 \begin_inset ERT
5165 status collapsed
5166
5167 \begin_layout Standard
5168
5169
5170 \backslash
5171
5172 \backslash
5173 %
5174 \end_layout
5175
5176 \end_inset
5177
5178
5179 \end_layout
5180
5181 \end_inset
5182 </cell>
5183 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5184 \begin_inset Text
5185
5186 \begin_layout Standard
5187
5188 \end_layout
5189
5190 \end_inset
5191 </cell>
5192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5193 \begin_inset Text
5194
5195 \begin_layout Standard
5196
5197 \end_layout
5198
5199 \end_inset
5200 </cell>
5201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5202 \begin_inset Text
5203
5204 \begin_layout Standard
5205
5206 \end_layout
5207
5208 \end_inset
5209 </cell>
5210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5211 \begin_inset Text
5212
5213 \begin_layout Standard
5214
5215 \end_layout
5216
5217 \end_inset
5218 </cell>
5219 </row>
5220 <row topline="true">
5221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5222 \begin_inset Text
5223
5224 \begin_layout Standard
5225 1
5226 \end_layout
5227
5228 \end_inset
5229 </cell>
5230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5231 \begin_inset Text
5232
5233 \begin_layout Standard
5234 2
5235 \end_layout
5236
5237 \end_inset
5238 </cell>
5239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5240 \begin_inset Text
5241
5242 \begin_layout Standard
5243 3
5244 \end_layout
5245
5246 \end_inset
5247 </cell>
5248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5249 \begin_inset Text
5250
5251 \begin_layout Standard
5252 4
5253 \end_layout
5254
5255 \end_inset
5256 </cell>
5257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5258 \begin_inset Text
5259
5260 \begin_layout Standard
5261 5
5262 \end_layout
5263
5264 \end_inset
5265 </cell>
5266 </row>
5267 <row topline="true">
5268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5269 \begin_inset Text
5270
5271 \begin_layout Standard
5272 asd
5273 \end_layout
5274
5275 \end_inset
5276 </cell>
5277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5278 \begin_inset Text
5279
5280 \begin_layout Standard
5281 s
5282 \end_layout
5283
5284 \end_inset
5285 </cell>
5286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5287 \begin_inset Text
5288
5289 \begin_layout Standard
5290 s
5291 \end_layout
5292
5293 \end_inset
5294 </cell>
5295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5296 \begin_inset Text
5297
5298 \begin_layout Standard
5299 s
5300 \end_layout
5301
5302 \end_inset
5303 </cell>
5304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5305 \begin_inset Text
5306
5307 \begin_layout Standard
5308 asd
5309 \end_layout
5310
5311 \end_inset
5312 </cell>
5313 </row>
5314 <row topline="true">
5315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5316 \begin_inset Text
5317
5318 \begin_layout Standard
5319 asd
5320 \end_layout
5321
5322 \end_inset
5323 </cell>
5324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5325 \begin_inset Text
5326
5327 \begin_layout Standard
5328 s
5329 \end_layout
5330
5331 \end_inset
5332 </cell>
5333 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5334 \begin_inset Text
5335
5336 \begin_layout Standard
5337 s
5338 \end_layout
5339
5340 \end_inset
5341 </cell>
5342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5343 \begin_inset Text
5344
5345 \begin_layout Standard
5346 s
5347 \end_layout
5348
5349 \end_inset
5350 </cell>
5351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5352 \begin_inset Text
5353
5354 \begin_layout Standard
5355 asd
5356 \end_layout
5357
5358 \end_inset
5359 </cell>
5360 </row>
5361 <row topline="true">
5362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5363 \begin_inset Text
5364
5365 \begin_layout Standard
5366 asd
5367 \end_layout
5368
5369 \end_inset
5370 </cell>
5371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5372 \begin_inset Text
5373
5374 \begin_layout Standard
5375 s
5376 \end_layout
5377
5378 \end_inset
5379 </cell>
5380 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5381 \begin_inset Text
5382
5383 \begin_layout Standard
5384 s
5385 \end_layout
5386
5387 \end_inset
5388 </cell>
5389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5390 \begin_inset Text
5391
5392 \begin_layout Standard
5393 s
5394 \end_layout
5395
5396 \end_inset
5397 </cell>
5398 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5399 \begin_inset Text
5400
5401 \begin_layout Standard
5402 asd
5403 \end_layout
5404
5405 \end_inset
5406 </cell>
5407 </row>
5408 <row topline="true" bottomline="true">
5409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5410 \begin_inset Text
5411
5412 \begin_layout Standard
5413 asd
5414 \end_layout
5415
5416 \end_inset
5417 </cell>
5418 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5419 \begin_inset Text
5420
5421 \begin_layout Standard
5422 sad
5423 \end_layout
5424
5425 \end_inset
5426 </cell>
5427 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5428 \begin_inset Text
5429
5430 \begin_layout Standard
5431 asd
5432 \end_layout
5433
5434 \end_inset
5435 </cell>
5436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5437 \begin_inset Text
5438
5439 \begin_layout Standard
5440 asd
5441 \end_layout
5442
5443 \end_inset
5444 </cell>
5445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5446 \begin_inset Text
5447
5448 \begin_layout Standard
5449 asd
5450 \end_layout
5451
5452 \end_inset
5453 </cell>
5454 </row>
5455 </lyxtabular>
5456
5457 \end_inset
5458
5459
5460 \end_layout
5461
5462 \begin_layout Standard
5463 To reference a longtable, insert a label into the caption.
5464  Note that you have to add the label prefix 
5465 \begin_inset Quotes eld
5466 \end_inset
5467
5468
5469 \emph on
5470 tab:
5471 \emph default
5472
5473 \begin_inset Quotes eld
5474 \end_inset
5475
5476  manually in the label field.
5477 \end_layout
5478
5479 \begin_layout Standard
5480 This is a reference to Table\InsetSpace ~
5481
5482 \begin_inset LatexCommand ref
5483 reference "tab:RefExample"
5484
5485 \end_inset
5486
5487 .
5488 \end_layout
5489
5490 \begin_layout Standard
5491 The caption layout can be set together with all other caption of your document
5492  using the LaTeX-package 
5493 \series bold
5494 caption
5495 \series default
5496
5497 \begin_inset LatexCommand index
5498 name "LaTeX-packages ! caption"
5499
5500 \end_inset
5501
5502 , see section\InsetSpace ~
5503
5504 \begin_inset LatexCommand ref
5505 reference "sec:Caption-Formatting"
5506
5507 \end_inset
5508
5509 .
5510 \end_layout
5511
5512 \begin_layout Subsubsection
5513 Caption Width
5514 \begin_inset LatexCommand index
5515 name "Longtables ! Caption Width"
5516
5517 \end_inset
5518
5519
5520 \end_layout
5521
5522 \begin_layout Standard
5523 The maximal width of of caption lines is defined by the length 
5524 \series bold
5525
5526 \backslash
5527 LTcapwidth
5528 \series default
5529 .
5530  Its default value is 4\InsetSpace \thinspace{}
5531 in.
5532  To change it add the following command to your document preamble or as
5533  ERT into your document before the longtable that should be affected
5534 \end_layout
5535
5536 \begin_layout Standard
5537
5538 \series bold
5539
5540 \backslash
5541 setlength{
5542 \backslash
5543 LTcapwidth}{width}
5544 \end_layout
5545
5546 \begin_layout Standard
5547 where the width could have one of the units listed in appendix\InsetSpace ~
5548
5549 \begin_inset LatexCommand ref
5550 reference "cha:Units-available-in"
5551
5552 \end_inset
5553
5554 .
5555 \end_layout
5556
5557 \begin_layout Standard
5558 The following tables show the difference:
5559 \end_layout
5560
5561 \begin_layout Standard
5562 \begin_inset Tabular
5563 <lyxtabular version="3" rows="6" columns="5">
5564 <features islongtable="true">
5565 <column alignment="center" valignment="top" leftline="true" width="0">
5566 <column alignment="center" valignment="top" leftline="true" width="0">
5567 <column alignment="center" valignment="top" leftline="true" width="0">
5568 <column alignment="center" valignment="top" leftline="true" width="0">
5569 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5570 <row>
5571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5572 \begin_inset Text
5573
5574 \begin_layout Standard
5575 \begin_inset Caption
5576
5577 \begin_layout Standard
5578 long full title with default width long full title with default width long
5579  full title with default width
5580 \begin_inset OptArg
5581 status collapsed
5582
5583 \begin_layout Standard
5584 caption with default width
5585 \end_layout
5586
5587 \end_inset
5588
5589
5590 \end_layout
5591
5592 \end_inset
5593
5594
5595 \begin_inset ERT
5596 status collapsed
5597
5598 \begin_layout Standard
5599
5600
5601 \backslash
5602
5603 \backslash
5604 %
5605 \end_layout
5606
5607 \end_inset
5608
5609
5610 \end_layout
5611
5612 \end_inset
5613 </cell>
5614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5615 \begin_inset Text
5616
5617 \begin_layout Standard
5618
5619 \end_layout
5620
5621 \end_inset
5622 </cell>
5623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5624 \begin_inset Text
5625
5626 \begin_layout Standard
5627
5628 \end_layout
5629
5630 \end_inset
5631 </cell>
5632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5633 \begin_inset Text
5634
5635 \begin_layout Standard
5636
5637 \end_layout
5638
5639 \end_inset
5640 </cell>
5641 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5642 \begin_inset Text
5643
5644 \begin_layout Standard
5645
5646 \end_layout
5647
5648 \end_inset
5649 </cell>
5650 </row>
5651 <row topline="true">
5652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5653 \begin_inset Text
5654
5655 \begin_layout Standard
5656 1
5657 \end_layout
5658
5659 \end_inset
5660 </cell>
5661 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5662 \begin_inset Text
5663
5664 \begin_layout Standard
5665 2
5666 \end_layout
5667
5668 \end_inset
5669 </cell>
5670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5671 \begin_inset Text
5672
5673 \begin_layout Standard
5674 3
5675 \end_layout
5676
5677 \end_inset
5678 </cell>
5679 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5680 \begin_inset Text
5681
5682 \begin_layout Standard
5683 4
5684 \end_layout
5685
5686 \end_inset
5687 </cell>
5688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5689 \begin_inset Text
5690
5691 \begin_layout Standard
5692 5
5693 \end_layout
5694
5695 \end_inset
5696 </cell>
5697 </row>
5698 <row topline="true">
5699 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5700 \begin_inset Text
5701
5702 \begin_layout Standard
5703 asd
5704 \end_layout
5705
5706 \end_inset
5707 </cell>
5708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5709 \begin_inset Text
5710
5711 \begin_layout Standard
5712 s
5713 \end_layout
5714
5715 \end_inset
5716 </cell>
5717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5718 \begin_inset Text
5719
5720 \begin_layout Standard
5721 s
5722 \end_layout
5723
5724 \end_inset
5725 </cell>
5726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5727 \begin_inset Text
5728
5729 \begin_layout Standard
5730 s
5731 \end_layout
5732
5733 \end_inset
5734 </cell>
5735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5736 \begin_inset Text
5737
5738 \begin_layout Standard
5739 asd
5740 \end_layout
5741
5742 \end_inset
5743 </cell>
5744 </row>
5745 <row topline="true">
5746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5747 \begin_inset Text
5748
5749 \begin_layout Standard
5750 asd
5751 \end_layout
5752
5753 \end_inset
5754 </cell>
5755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5756 \begin_inset Text
5757
5758 \begin_layout Standard
5759 s
5760 \end_layout
5761
5762 \end_inset
5763 </cell>
5764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5765 \begin_inset Text
5766
5767 \begin_layout Standard
5768 s
5769 \end_layout
5770
5771 \end_inset
5772 </cell>
5773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5774 \begin_inset Text
5775
5776 \begin_layout Standard
5777 s
5778 \end_layout
5779
5780 \end_inset
5781 </cell>
5782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5783 \begin_inset Text
5784
5785 \begin_layout Standard
5786 asd
5787 \end_layout
5788
5789 \end_inset
5790 </cell>
5791 </row>
5792 <row topline="true">
5793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5794 \begin_inset Text
5795
5796 \begin_layout Standard
5797 asd
5798 \end_layout
5799
5800 \end_inset
5801 </cell>
5802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5803 \begin_inset Text
5804
5805 \begin_layout Standard
5806 s
5807 \end_layout
5808
5809 \end_inset
5810 </cell>
5811 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5812 \begin_inset Text
5813
5814 \begin_layout Standard
5815 s
5816 \end_layout
5817
5818 \end_inset
5819 </cell>
5820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5821 \begin_inset Text
5822
5823 \begin_layout Standard
5824 s
5825 \end_layout
5826
5827 \end_inset
5828 </cell>
5829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5830 \begin_inset Text
5831
5832 \begin_layout Standard
5833 asd
5834 \end_layout
5835
5836 \end_inset
5837 </cell>
5838 </row>
5839 <row topline="true" bottomline="true">
5840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5841 \begin_inset Text
5842
5843 \begin_layout Standard
5844 asd
5845 \end_layout
5846
5847 \end_inset
5848 </cell>
5849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5850 \begin_inset Text
5851
5852 \begin_layout Standard
5853 sad
5854 \end_layout
5855
5856 \end_inset
5857 </cell>
5858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5859 \begin_inset Text
5860
5861 \begin_layout Standard
5862 asd
5863 \end_layout
5864
5865 \end_inset
5866 </cell>
5867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5868 \begin_inset Text
5869
5870 \begin_layout Standard
5871 asd
5872 \end_layout
5873
5874 \end_inset
5875 </cell>
5876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5877 \begin_inset Text
5878
5879 \begin_layout Standard
5880 asd
5881 \end_layout
5882
5883 \end_inset
5884 </cell>
5885 </row>
5886 </lyxtabular>
5887
5888 \end_inset
5889
5890
5891 \end_layout
5892
5893 \begin_layout Standard
5894 \begin_inset ERT
5895 status collapsed
5896
5897 \begin_layout Standard
5898
5899
5900 \backslash
5901 setlength{
5902 \backslash
5903 LTcapwidth}{5cm}
5904 \end_layout
5905
5906 \end_inset
5907
5908
5909 \begin_inset Tabular
5910 <lyxtabular version="3" rows="6" columns="5">
5911 <features islongtable="true">
5912 <column alignment="center" valignment="top" leftline="true" width="0">
5913 <column alignment="center" valignment="top" leftline="true" width="0">
5914 <column alignment="center" valignment="top" leftline="true" width="0">
5915 <column alignment="center" valignment="top" leftline="true" width="0">
5916 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5917 <row>
5918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5919 \begin_inset Text
5920
5921 \begin_layout Standard
5922 \begin_inset Caption
5923
5924 \begin_layout Standard
5925 long full title with width set to 5\InsetSpace \thinspace{}
5926 cm long full title with width set to
5927  5\InsetSpace \thinspace{}
5928 cm long full title with width set to 5\InsetSpace \thinspace{}
5929 cm
5930 \begin_inset OptArg
5931 status collapsed
5932
5933 \begin_layout Standard
5934 caption with width\InsetSpace \thinspace{}
5935 =\InsetSpace \thinspace{}
5936 5\InsetSpace \thinspace{}
5937 cm
5938 \end_layout
5939
5940 \end_inset
5941
5942
5943 \end_layout
5944
5945 \end_inset
5946
5947
5948 \begin_inset ERT
5949 status collapsed
5950
5951 \begin_layout Standard
5952
5953
5954 \backslash
5955
5956 \backslash
5957 %
5958 \end_layout
5959
5960 \end_inset
5961
5962
5963 \end_layout
5964
5965 \end_inset
5966 </cell>
5967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5968 \begin_inset Text
5969
5970 \begin_layout Standard
5971
5972 \end_layout
5973
5974 \end_inset
5975 </cell>
5976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5977 \begin_inset Text
5978
5979 \begin_layout Standard
5980
5981 \end_layout
5982
5983 \end_inset
5984 </cell>
5985 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5986 \begin_inset Text
5987
5988 \begin_layout Standard
5989
5990 \end_layout
5991
5992 \end_inset
5993 </cell>
5994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5995 \begin_inset Text
5996
5997 \begin_layout Standard
5998
5999 \end_layout
6000
6001 \end_inset
6002 </cell>
6003 </row>
6004 <row topline="true">
6005 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6006 \begin_inset Text
6007
6008 \begin_layout Standard
6009 1
6010 \end_layout
6011
6012 \end_inset
6013 </cell>
6014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6015 \begin_inset Text
6016
6017 \begin_layout Standard
6018 2
6019 \end_layout
6020
6021 \end_inset
6022 </cell>
6023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6024 \begin_inset Text
6025
6026 \begin_layout Standard
6027 3
6028 \end_layout
6029
6030 \end_inset
6031 </cell>
6032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6033 \begin_inset Text
6034
6035 \begin_layout Standard
6036 4
6037 \end_layout
6038
6039 \end_inset
6040 </cell>
6041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6042 \begin_inset Text
6043
6044 \begin_layout Standard
6045 5
6046 \end_layout
6047
6048 \end_inset
6049 </cell>
6050 </row>
6051 <row topline="true">
6052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6053 \begin_inset Text
6054
6055 \begin_layout Standard
6056 asd
6057 \end_layout
6058
6059 \end_inset
6060 </cell>
6061 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6062 \begin_inset Text
6063
6064 \begin_layout Standard
6065 s
6066 \end_layout
6067
6068 \end_inset
6069 </cell>
6070 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6071 \begin_inset Text
6072
6073 \begin_layout Standard
6074 s
6075 \end_layout
6076
6077 \end_inset
6078 </cell>
6079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6080 \begin_inset Text
6081
6082 \begin_layout Standard
6083 s
6084 \end_layout
6085
6086 \end_inset
6087 </cell>
6088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6089 \begin_inset Text
6090
6091 \begin_layout Standard
6092 asd
6093 \end_layout
6094
6095 \end_inset
6096 </cell>
6097 </row>
6098 <row topline="true">
6099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6100 \begin_inset Text
6101
6102 \begin_layout Standard
6103 asd
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 s
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 s
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 s
6131 \end_layout
6132
6133 \end_inset
6134 </cell>
6135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6136 \begin_inset Text
6137
6138 \begin_layout Standard
6139 asd
6140 \end_layout
6141
6142 \end_inset
6143 </cell>
6144 </row>
6145 <row topline="true">
6146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6147 \begin_inset Text
6148
6149 \begin_layout Standard
6150 asd
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" usebox="none">
6174 \begin_inset Text
6175
6176 \begin_layout Standard
6177 s
6178 \end_layout
6179
6180 \end_inset
6181 </cell>
6182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6183 \begin_inset Text
6184
6185 \begin_layout Standard
6186 asd
6187 \end_layout
6188
6189 \end_inset
6190 </cell>
6191 </row>
6192 <row topline="true" bottomline="true">
6193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6194 \begin_inset Text
6195
6196 \begin_layout Standard
6197 asd
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 sad
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 asd
6216 \end_layout
6217
6218 \end_inset
6219 </cell>
6220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6221 \begin_inset Text
6222
6223 \begin_layout Standard
6224 asd
6225 \end_layout
6226
6227 \end_inset
6228 </cell>
6229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6230 \begin_inset Text
6231
6232 \begin_layout Standard
6233 asd
6234 \end_layout
6235
6236 \end_inset
6237 </cell>
6238 </row>
6239 </lyxtabular>
6240
6241 \end_inset
6242
6243
6244 \end_layout
6245
6246 \begin_layout Standard
6247 \begin_inset ERT
6248 status collapsed
6249
6250 \begin_layout Standard
6251
6252
6253 \backslash
6254 setlength{
6255 \backslash
6256 LTcapwidth}{4in}
6257 \end_layout
6258
6259 \end_inset
6260
6261
6262 \end_layout
6263
6264 \begin_layout Standard
6265 \begin_inset Note Greyedout
6266 status open
6267
6268 \begin_layout Standard
6269
6270 \series bold
6271 Note:
6272 \series default
6273  When the LaTeX-package 
6274 \series bold
6275 caption
6276 \series default
6277
6278 \begin_inset LatexCommand index
6279 name "LaTeX-packages ! caption"
6280
6281 \end_inset
6282
6283  is used, as in this document, the full page width is used for the caption
6284  when you use the default value of 4\InsetSpace \thinspace{}
6285 in for 
6286 \series bold
6287
6288 \backslash
6289 LTcapwidth
6290 \series default
6291 .
6292  To get in this case exactly a 4\InsetSpace \thinspace{}
6293 in wide caption, you can either use a value
6294  slightly different from 4.0\InsetSpace \thinspace{}
6295 in, e.g.
6296  3.99\InsetSpace \thinspace{}
6297 in, or the LaTeX-command 
6298 \series bold
6299
6300 \backslash
6301 captionsetup{width=value}
6302 \series default
6303  that is provided by the 
6304 \series bold
6305 caption
6306 \series default
6307 -package.
6308 \end_layout
6309
6310 \end_inset
6311
6312
6313 \end_layout
6314
6315 \begin_layout Subsubsection
6316 Different Captions for Table Pages
6317 \begin_inset LatexCommand index
6318 name "Longtables ! Different Captions for Pages"
6319
6320 \end_inset
6321
6322
6323 \end_layout
6324
6325 \begin_layout Standard
6326 When the other captions should differ from the one of the first table page,
6327  insert a caption with a non-empty short title in a dummy caption row marked
6328  as first header.
6329  The caption used for the other table pages is inserted as caption without
6330  a short title in a dummy caption row that is marked as main header.
6331  When this caption shouldn't include the table number, use the command
6332 \end_layout
6333
6334 \begin_layout Standard
6335
6336 \series bold
6337
6338 \backslash
6339 caption*{caption text}
6340 \end_layout
6341
6342 \begin_layout Standard
6343 instead of LyX's caption box.
6344  The label to reference the table is inserted into the caption of the first
6345  header.
6346  Table\InsetSpace ~
6347
6348 \begin_inset LatexCommand ref
6349 reference "tab:DiffCaptions"
6350
6351 \end_inset
6352
6353  is an example for a longtable with different heading where the second caption
6354  doesn't include the table number.
6355 \end_layout
6356
6357 \begin_layout Standard
6358 \align center
6359 \begin_inset Tabular
6360 <lyxtabular version="3" rows="60" columns="3">
6361 <features islongtable="true">
6362 <column alignment="left" valignment="top" leftline="true" width="0cm">
6363 <column alignment="left" valignment="top" rightline="true" width="0pt">
6364 <column alignment="right" valignment="top" rightline="true" width="0pt">
6365 <row endfirsthead="true">
6366 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6367 \begin_inset Text
6368
6369 \begin_layout Standard
6370 \begin_inset Caption
6371
6372 \begin_layout Standard
6373 Example Phone List
6374 \begin_inset LatexCommand label
6375 name "tab:DiffCaptions"
6376
6377 \end_inset
6378
6379
6380 \begin_inset OptArg
6381 status collapsed
6382
6383 \begin_layout Standard
6384 Example Phone List
6385 \end_layout
6386
6387 \end_inset
6388
6389
6390 \end_layout
6391
6392 \end_inset
6393
6394
6395 \begin_inset ERT
6396 status collapsed
6397
6398 \begin_layout Standard
6399
6400
6401 \backslash
6402
6403 \backslash
6404 %
6405 \end_layout
6406
6407 \end_inset
6408
6409
6410 \end_layout
6411
6412 \end_inset
6413 </cell>
6414 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6415 \begin_inset Text
6416
6417 \begin_layout Standard
6418
6419 \end_layout
6420
6421 \end_inset
6422 </cell>
6423 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6424 \begin_inset Text
6425
6426 \begin_layout Standard
6427
6428 \end_layout
6429
6430 \end_inset
6431 </cell>
6432 </row>
6433 <row topline="true" bottomline="true" endfirsthead="true">
6434 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6435 \begin_inset Text
6436
6437 \begin_layout Standard
6438
6439 \series bold
6440 Example Phone List (ignore the names)
6441 \end_layout
6442
6443 \end_inset
6444 </cell>
6445 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6446 \begin_inset Text
6447
6448 \begin_layout Standard
6449
6450 \end_layout
6451
6452 \end_inset
6453 </cell>
6454 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6455 \begin_inset Text
6456
6457 \begin_layout Standard
6458
6459 \end_layout
6460
6461 \end_inset
6462 </cell>
6463 </row>
6464 <row topline="true" bottomline="true" endfirsthead="true">
6465 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6466 \begin_inset Text
6467
6468 \begin_layout Standard
6469
6470 \series bold
6471 NAME
6472 \end_layout
6473
6474 \end_inset
6475 </cell>
6476 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6477 \begin_inset Text
6478
6479 \begin_layout Standard
6480
6481 \end_layout
6482
6483 \end_inset
6484 </cell>
6485 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6486 \begin_inset Text
6487
6488 \begin_layout Standard
6489
6490 \series bold
6491 TEL.
6492 \end_layout
6493
6494 \end_inset
6495 </cell>
6496 </row>
6497 <row bottomline="true" endhead="true">
6498 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6499 \begin_inset Text
6500
6501 \begin_layout Standard
6502 \begin_inset ERT
6503 status collapsed
6504
6505 \begin_layout Standard
6506
6507
6508 \backslash
6509 caption*{Continued Example Phone List}
6510 \backslash
6511
6512 \backslash
6513 %
6514 \end_layout
6515
6516 \end_inset
6517
6518
6519 \end_layout
6520
6521 \end_inset
6522 </cell>
6523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6524 \begin_inset Text
6525
6526 \begin_layout Standard
6527
6528 \end_layout
6529
6530 \end_inset
6531 </cell>
6532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6533 \begin_inset Text
6534
6535 \begin_layout Standard
6536
6537 \end_layout
6538
6539 \end_inset
6540 </cell>
6541 </row>
6542 <row topline="true" bottomline="true" endhead="true">
6543 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6544 \begin_inset Text
6545
6546 \begin_layout Standard
6547
6548 \series bold
6549 Example Phone List
6550 \end_layout
6551
6552 \end_inset
6553 </cell>
6554 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6555 \begin_inset Text
6556
6557 \begin_layout Standard
6558
6559 \end_layout
6560
6561 \end_inset
6562 </cell>
6563 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6564 \begin_inset Text
6565
6566 \begin_layout Standard
6567
6568 \end_layout
6569
6570 \end_inset
6571 </cell>
6572 </row>
6573 <row topline="true" bottomline="true" endhead="true">
6574 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6575 \begin_inset Text
6576
6577 \begin_layout Standard
6578
6579 \series bold
6580 NAME
6581 \end_layout
6582
6583 \end_inset
6584 </cell>
6585 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6586 \begin_inset Text
6587
6588 \begin_layout Standard
6589
6590 \end_layout
6591
6592 \end_inset
6593 </cell>
6594 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6595 \begin_inset Text
6596
6597 \begin_layout Standard
6598
6599 \series bold
6600 TEL.
6601 \end_layout
6602
6603 \end_inset
6604 </cell>
6605 </row>
6606 <row topline="true" bottomline="true" endfoot="true">
6607 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6608 \begin_inset Text
6609
6610 \begin_layout Standard
6611 continued on next page
6612 \end_layout
6613
6614 \end_inset
6615 </cell>
6616 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6617 \begin_inset Text
6618
6619 \begin_layout Standard
6620
6621 \end_layout
6622
6623 \end_inset
6624 </cell>
6625 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6626 \begin_inset Text
6627
6628 \begin_layout Standard
6629
6630 \end_layout
6631
6632 \end_inset
6633 </cell>
6634 </row>
6635 <row>
6636 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6637 \begin_inset Text
6638
6639 \begin_layout Standard
6640
6641 \series bold
6642 Annovi
6643 \end_layout
6644
6645 \end_inset
6646 </cell>
6647 <cell alignment="center" valignment="top" topline="true" usebox="none">
6648 \begin_inset Text
6649
6650 \begin_layout Standard
6651 Silvia
6652 \end_layout
6653
6654 \end_inset
6655 </cell>
6656 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6657 \begin_inset Text
6658
6659 \begin_layout Standard
6660 111
6661 \end_layout
6662
6663 \end_inset
6664 </cell>
6665 </row>
6666 <row>
6667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6668 \begin_inset Text
6669
6670 \begin_layout Standard
6671
6672 \series bold
6673 Bertoli
6674 \end_layout
6675
6676 \end_inset
6677 </cell>
6678 <cell alignment="center" valignment="top" topline="true" usebox="none">
6679 \begin_inset Text
6680
6681 \begin_layout Standard
6682 Stefano
6683 \end_layout
6684
6685 \end_inset
6686 </cell>
6687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6688 \begin_inset Text
6689
6690 \begin_layout Standard
6691 111
6692 \end_layout
6693
6694 \end_inset
6695 </cell>
6696 </row>
6697 <row>
6698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6699 \begin_inset Text
6700
6701 \begin_layout Standard
6702
6703 \series bold
6704 Bozzi
6705 \end_layout
6706
6707 \end_inset
6708 </cell>
6709 <cell alignment="center" valignment="top" topline="true" usebox="none">
6710 \begin_inset Text
6711
6712 \begin_layout Standard
6713 Walter
6714 \end_layout
6715
6716 \end_inset
6717 </cell>
6718 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6719 \begin_inset Text
6720
6721 \begin_layout Standard
6722 111
6723 \end_layout
6724
6725 \end_inset
6726 </cell>
6727 </row>
6728 <row>
6729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6730 \begin_inset Text
6731
6732 \begin_layout Standard
6733
6734 \series bold
6735 Cachia
6736 \end_layout
6737
6738 \end_inset
6739 </cell>
6740 <cell alignment="center" valignment="top" topline="true" usebox="none">
6741 \begin_inset Text
6742
6743 \begin_layout Standard
6744 Maria
6745 \end_layout
6746
6747 \end_inset
6748 </cell>
6749 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6750 \begin_inset Text
6751
6752 \begin_layout Standard
6753 111
6754 \end_layout
6755
6756 \end_inset
6757 </cell>
6758 </row>
6759 <row>
6760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6761 \begin_inset Text
6762
6763 \begin_layout Standard
6764
6765 \series bold
6766 Cachia
6767 \end_layout
6768
6769 \end_inset
6770 </cell>
6771 <cell alignment="center" valignment="top" topline="true" usebox="none">
6772 \begin_inset Text
6773
6774 \begin_layout Standard
6775 Maurizio
6776 \end_layout
6777
6778 \end_inset
6779 </cell>
6780 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6781 \begin_inset Text
6782
6783 \begin_layout Standard
6784 111
6785 \end_layout
6786
6787 \end_inset
6788 </cell>
6789 </row>
6790 <row>
6791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6792 \begin_inset Text
6793
6794 \begin_layout Standard
6795
6796 \series bold
6797 Cinquemani
6798 \end_layout
6799
6800 \end_inset
6801 </cell>
6802 <cell alignment="center" valignment="top" topline="true" usebox="none">
6803 \begin_inset Text
6804
6805 \begin_layout Standard
6806 Giusi
6807 \end_layout
6808
6809 \end_inset
6810 </cell>
6811 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6812 \begin_inset Text
6813
6814 \begin_layout Standard
6815 111
6816 \end_layout
6817
6818 \end_inset
6819 </cell>
6820 </row>
6821 <row>
6822 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6823 \begin_inset Text
6824
6825 \begin_layout Standard
6826
6827 \series bold
6828 Colin
6829 \end_layout
6830
6831 \end_inset
6832 </cell>
6833 <cell alignment="center" valignment="top" topline="true" usebox="none">
6834 \begin_inset Text
6835
6836 \begin_layout Standard
6837 Bernard
6838 \end_layout
6839
6840 \end_inset
6841 </cell>
6842 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6843 \begin_inset Text
6844
6845 \begin_layout Standard
6846 111
6847 \end_layout
6848
6849 \end_inset
6850 </cell>
6851 </row>
6852 <row>
6853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6854 \begin_inset Text
6855
6856 \begin_layout Standard
6857
6858 \series bold
6859 Concli
6860 \end_layout
6861
6862 \end_inset
6863 </cell>
6864 <cell alignment="center" valignment="top" topline="true" usebox="none">
6865 \begin_inset Text
6866
6867 \begin_layout Standard
6868 Gianfranco
6869 \end_layout
6870
6871 \end_inset
6872 </cell>
6873 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6874 \begin_inset Text
6875
6876 \begin_layout Standard
6877 111
6878 \end_layout
6879
6880 \end_inset
6881 </cell>
6882 </row>
6883 <row>
6884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6885 \begin_inset Text
6886
6887 \begin_layout Standard
6888
6889 \series bold
6890 Dal Bosco
6891 \end_layout
6892
6893 \end_inset
6894 </cell>
6895 <cell alignment="center" valignment="top" topline="true" usebox="none">
6896 \begin_inset Text
6897
6898 \begin_layout Standard
6899 Carolina
6900 \end_layout
6901
6902 \end_inset
6903 </cell>
6904 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6905 \begin_inset Text
6906
6907 \begin_layout Standard
6908 111
6909 \end_layout
6910
6911 \end_inset
6912 </cell>
6913 </row>
6914 <row>
6915 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6916 \begin_inset Text
6917
6918 \begin_layout Standard
6919
6920 \series bold
6921 Dalpiaz
6922 \end_layout
6923
6924 \end_inset
6925 </cell>
6926 <cell alignment="center" valignment="top" topline="true" usebox="none">
6927 \begin_inset Text
6928
6929 \begin_layout Standard
6930 Annamaria
6931 \end_layout
6932
6933 \end_inset
6934 </cell>
6935 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6936 \begin_inset Text
6937
6938 \begin_layout Standard
6939 111
6940 \end_layout
6941
6942 \end_inset
6943 </cell>
6944 </row>
6945 <row>
6946 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6947 \begin_inset Text
6948
6949 \begin_layout Standard
6950
6951 \series bold
6952 Feliciello
6953 \end_layout
6954
6955 \end_inset
6956 </cell>
6957 <cell alignment="center" valignment="top" topline="true" usebox="none">
6958 \begin_inset Text
6959
6960 \begin_layout Standard
6961 Domenico
6962 \end_layout
6963
6964 \end_inset
6965 </cell>
6966 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6967 \begin_inset Text
6968
6969 \begin_layout Standard
6970 111
6971 \end_layout
6972
6973 \end_inset
6974 </cell>
6975 </row>
6976 <row>
6977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6978 \begin_inset Text
6979
6980 \begin_layout Standard
6981
6982 \series bold
6983 Focarelli
6984 \end_layout
6985
6986 \end_inset
6987 </cell>
6988 <cell alignment="center" valignment="top" topline="true" usebox="none">
6989 \begin_inset Text
6990
6991 \begin_layout Standard
6992 Paola
6993 \end_layout
6994
6995 \end_inset
6996 </cell>
6997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6998 \begin_inset Text
6999
7000 \begin_layout Standard
7001 111
7002 \end_layout
7003
7004 \end_inset
7005 </cell>
7006 </row>
7007 <row>
7008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7009 \begin_inset Text
7010
7011 \begin_layout Standard
7012
7013 \series bold
7014 Galletti
7015 \end_layout
7016
7017 \end_inset
7018 </cell>
7019 <cell alignment="center" valignment="top" topline="true" usebox="none">
7020 \begin_inset Text
7021
7022 \begin_layout Standard
7023 Oreste
7024 \end_layout
7025
7026 \end_inset
7027 </cell>
7028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7029 \begin_inset Text
7030
7031 \begin_layout Standard
7032 111
7033 \end_layout
7034
7035 \end_inset
7036 </cell>
7037 </row>
7038 <row>
7039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7040 \begin_inset Text
7041
7042 \begin_layout Standard
7043
7044 \series bold
7045 Gasparini
7046 \end_layout
7047
7048 \end_inset
7049 </cell>
7050 <cell alignment="center" valignment="top" topline="true" usebox="none">
7051 \begin_inset Text
7052
7053 \begin_layout Standard
7054 Franca
7055 \end_layout
7056
7057 \end_inset
7058 </cell>
7059 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7060 \begin_inset Text
7061
7062 \begin_layout Standard
7063 111
7064 \end_layout
7065
7066 \end_inset
7067 </cell>
7068 </row>
7069 <row>
7070 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7071 \begin_inset Text
7072
7073 \begin_layout Standard
7074
7075 \series bold
7076 Rizzardi
7077 \series default
7078
7079 \begin_inset Foot
7080 status collapsed
7081
7082 \begin_layout Standard
7083 Example footnote
7084 \end_layout
7085
7086 \end_inset
7087
7088
7089 \end_layout
7090
7091 \end_inset
7092 </cell>
7093 <cell alignment="center" valignment="top" topline="true" usebox="none">
7094 \begin_inset Text
7095
7096 \begin_layout Standard
7097 Paola
7098 \end_layout
7099
7100 \end_inset
7101 </cell>
7102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7103 \begin_inset Text
7104
7105 \begin_layout Standard
7106 111
7107 \end_layout
7108
7109 \end_inset
7110 </cell>
7111 </row>
7112 <row>
7113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7114 \begin_inset Text
7115
7116 \begin_layout Standard
7117
7118 \series bold
7119 Lassini
7120 \end_layout
7121
7122 \end_inset
7123 </cell>
7124 <cell alignment="center" valignment="top" topline="true" usebox="none">
7125 \begin_inset Text
7126
7127 \begin_layout Standard
7128 Giancarlo
7129 \end_layout
7130
7131 \end_inset
7132 </cell>
7133 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7134 \begin_inset Text
7135
7136 \begin_layout Standard
7137 111
7138 \end_layout
7139
7140 \end_inset
7141 </cell>
7142 </row>
7143 <row>
7144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7145 \begin_inset Text
7146
7147 \begin_layout Standard
7148
7149 \series bold
7150 Malfatti
7151 \end_layout
7152
7153 \end_inset
7154 </cell>
7155 <cell alignment="center" valignment="top" topline="true" usebox="none">
7156 \begin_inset Text
7157
7158 \begin_layout Standard
7159 Luciano
7160 \end_layout
7161
7162 \end_inset
7163 </cell>
7164 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7165 \begin_inset Text
7166
7167 \begin_layout Standard
7168 111
7169 \end_layout
7170
7171 \end_inset
7172 </cell>
7173 </row>
7174 <row>
7175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7176 \begin_inset Text
7177
7178 \begin_layout Standard
7179
7180 \series bold
7181 Malfatti
7182 \end_layout
7183
7184 \end_inset
7185 </cell>
7186 <cell alignment="center" valignment="top" topline="true" usebox="none">
7187 \begin_inset Text
7188
7189 \begin_layout Standard
7190 Valeriano
7191 \end_layout
7192
7193 \end_inset
7194 </cell>
7195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7196 \begin_inset Text
7197
7198 \begin_layout Standard
7199 111
7200 \end_layout
7201
7202 \end_inset
7203 </cell>
7204 </row>
7205 <row>
7206 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7207 \begin_inset Text
7208
7209 \begin_layout Standard
7210
7211 \series bold
7212 Meneguzzo
7213 \end_layout
7214
7215 \end_inset
7216 </cell>
7217 <cell alignment="center" valignment="top" topline="true" usebox="none">
7218 \begin_inset Text
7219
7220 \begin_layout Standard
7221 Roberto
7222 \end_layout
7223
7224 \end_inset
7225 </cell>
7226 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7227 \begin_inset Text
7228
7229 \begin_layout Standard
7230 111
7231 \end_layout
7232
7233 \end_inset
7234 </cell>
7235 </row>
7236 <row>
7237 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7238 \begin_inset Text
7239
7240 \begin_layout Standard
7241
7242 \series bold
7243 Mezzadra
7244 \end_layout
7245
7246 \end_inset
7247 </cell>
7248 <cell alignment="center" valignment="top" topline="true" usebox="none">
7249 \begin_inset Text
7250
7251 \begin_layout Standard
7252 Roberto
7253 \end_layout
7254
7255 \end_inset
7256 </cell>
7257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7258 \begin_inset Text
7259
7260 \begin_layout Standard
7261 111
7262 \end_layout
7263
7264 \end_inset
7265 </cell>
7266 </row>
7267 <row>
7268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7269 \begin_inset Text
7270
7271 \begin_layout Standard
7272
7273 \series bold
7274 Pirpamer
7275 \end_layout
7276
7277 \end_inset
7278 </cell>
7279 <cell alignment="center" valignment="top" topline="true" usebox="none">
7280 \begin_inset Text
7281
7282 \begin_layout Standard
7283 Erich
7284 \end_layout
7285
7286 \end_inset
7287 </cell>
7288 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7289 \begin_inset Text
7290
7291 \begin_layout Standard
7292 111
7293 \end_layout
7294
7295 \end_inset
7296 </cell>
7297 </row>
7298 <row>
7299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7300 \begin_inset Text
7301
7302 \begin_layout Standard
7303
7304 \series bold
7305 Pochiesa
7306 \end_layout
7307
7308 \end_inset
7309 </cell>
7310 <cell alignment="center" valignment="top" topline="true" usebox="none">
7311 \begin_inset Text
7312
7313 \begin_layout Standard
7314 Paolo
7315 \end_layout
7316
7317 \end_inset
7318 </cell>
7319 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7320 \begin_inset Text
7321
7322 \begin_layout Standard
7323 111, 222
7324 \end_layout
7325
7326 \end_inset
7327 </cell>
7328 </row>
7329 <row>
7330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7331 \begin_inset Text
7332
7333 \begin_layout Standard
7334
7335 \series bold
7336 Radina
7337 \end_layout
7338
7339 \end_inset
7340 </cell>
7341 <cell alignment="center" valignment="top" topline="true" usebox="none">
7342 \begin_inset Text
7343
7344 \begin_layout Standard
7345 Claudio
7346 \end_layout
7347
7348 \end_inset
7349 </cell>
7350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7351 \begin_inset Text
7352
7353 \begin_layout Standard
7354 111
7355 \end_layout
7356
7357 \end_inset
7358 </cell>
7359 </row>
7360 <row>
7361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7362 \begin_inset Text
7363
7364 \begin_layout Standard
7365
7366 \series bold
7367 Stuffer
7368 \end_layout
7369
7370 \end_inset
7371 </cell>
7372 <cell alignment="center" valignment="top" topline="true" usebox="none">
7373 \begin_inset Text
7374
7375 \begin_layout Standard
7376 Oskar
7377 \end_layout
7378
7379 \end_inset
7380 </cell>
7381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7382 \begin_inset Text
7383
7384 \begin_layout Standard
7385 111
7386 \end_layout
7387
7388 \end_inset
7389 </cell>
7390 </row>
7391 <row>
7392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7393 \begin_inset Text
7394
7395 \begin_layout Standard
7396
7397 \series bold
7398 Tacchelli
7399 \end_layout
7400
7401 \end_inset
7402 </cell>
7403 <cell alignment="center" valignment="top" topline="true" usebox="none">
7404 \begin_inset Text
7405
7406 \begin_layout Standard
7407 Ugo
7408 \end_layout
7409
7410 \end_inset
7411 </cell>
7412 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7413 \begin_inset Text
7414
7415 \begin_layout Standard
7416 111
7417 \end_layout
7418
7419 \end_inset
7420 </cell>
7421 </row>
7422 <row>
7423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7424 \begin_inset Text
7425
7426 \begin_layout Standard
7427
7428 \series bold
7429 Tezzele
7430 \end_layout
7431
7432 \end_inset
7433 </cell>
7434 <cell alignment="center" valignment="top" topline="true" usebox="none">
7435 \begin_inset Text
7436
7437 \begin_layout Standard
7438 Margit
7439 \end_layout
7440
7441 \end_inset
7442 </cell>
7443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7444 \begin_inset Text
7445
7446 \begin_layout Standard
7447 111
7448 \end_layout
7449
7450 \end_inset
7451 </cell>
7452 </row>
7453 <row>
7454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7455 \begin_inset Text
7456
7457 \begin_layout Standard
7458
7459 \series bold
7460 Unterkalmsteiner
7461 \end_layout
7462
7463 \end_inset
7464 </cell>
7465 <cell alignment="center" valignment="top" topline="true" usebox="none">
7466 \begin_inset Text
7467
7468 \begin_layout Standard
7469 Frieda
7470 \end_layout
7471
7472 \end_inset
7473 </cell>
7474 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7475 \begin_inset Text
7476
7477 \begin_layout Standard
7478 111
7479 \end_layout
7480
7481 \end_inset
7482 </cell>
7483 </row>
7484 <row>
7485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7486 \begin_inset Text
7487
7488 \begin_layout Standard
7489
7490 \series bold
7491 Vieider
7492 \end_layout
7493
7494 \end_inset
7495 </cell>
7496 <cell alignment="center" valignment="top" topline="true" usebox="none">
7497 \begin_inset Text
7498
7499 \begin_layout Standard
7500 Hilde
7501 \end_layout
7502
7503 \end_inset
7504 </cell>
7505 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7506 \begin_inset Text
7507
7508 \begin_layout Standard
7509 111
7510 \end_layout
7511
7512 \end_inset
7513 </cell>
7514 </row>
7515 <row>
7516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7517 \begin_inset Text
7518
7519 \begin_layout Standard
7520
7521 \series bold
7522 Vigna
7523 \end_layout
7524
7525 \end_inset
7526 </cell>
7527 <cell alignment="center" valignment="top" topline="true" usebox="none">
7528 \begin_inset Text
7529
7530 \begin_layout Standard
7531 Jürgen
7532 \end_layout
7533
7534 \end_inset
7535 </cell>
7536 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7537 \begin_inset Text
7538
7539 \begin_layout Standard
7540 111
7541 \end_layout
7542
7543 \end_inset
7544 </cell>
7545 </row>
7546 <row>
7547 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7548 \begin_inset Text
7549
7550 \begin_layout Standard
7551
7552 \series bold
7553 Weber
7554 \end_layout
7555
7556 \end_inset
7557 </cell>
7558 <cell alignment="center" valignment="top" topline="true" usebox="none">
7559 \begin_inset Text
7560
7561 \begin_layout Standard
7562 Maurizio
7563 \end_layout
7564
7565 \end_inset
7566 </cell>
7567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7568 \begin_inset Text
7569
7570 \begin_layout Standard
7571 111
7572 \end_layout
7573
7574 \end_inset
7575 </cell>
7576 </row>
7577 <row bottomline="true">
7578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7579 \begin_inset Text
7580
7581 \begin_layout Standard
7582
7583 \series bold
7584 Winkler
7585 \end_layout
7586
7587 \end_inset
7588 </cell>
7589 <cell alignment="center" valignment="top" topline="true" usebox="none">
7590 \begin_inset Text
7591
7592 \begin_layout Standard
7593 Franz
7594 \end_layout
7595
7596 \end_inset
7597 </cell>
7598 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7599 \begin_inset Text
7600
7601 \begin_layout Standard
7602 111
7603 \end_layout
7604
7605 \end_inset
7606 </cell>
7607 </row>
7608 <row bottomline="true">
7609 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7610 \begin_inset Text
7611
7612 \begin_layout Standard
7613  
7614 \end_layout
7615
7616 \end_inset
7617 </cell>
7618 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7619 \begin_inset Text
7620
7621 \begin_layout Standard
7622
7623 \end_layout
7624
7625 \end_inset
7626 </cell>
7627 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7628 \begin_inset Text
7629
7630 \begin_layout Standard
7631
7632 \end_layout
7633
7634 \end_inset
7635 </cell>
7636 </row>
7637 <row>
7638 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7639 \begin_inset Text
7640
7641 \begin_layout Standard
7642
7643 \series bold
7644 Annovi
7645 \end_layout
7646
7647 \end_inset
7648 </cell>
7649 <cell alignment="center" valignment="top" topline="true" usebox="none">
7650 \begin_inset Text
7651
7652 \begin_layout Standard
7653 Silvia
7654 \end_layout
7655
7656 \end_inset
7657 </cell>
7658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7659 \begin_inset Text
7660
7661 \begin_layout Standard
7662 555
7663 \end_layout
7664
7665 \end_inset
7666 </cell>
7667 </row>
7668 <row>
7669 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7670 \begin_inset Text
7671
7672 \begin_layout Standard
7673
7674 \series bold
7675 Bertoli
7676 \end_layout
7677
7678 \end_inset
7679 </cell>
7680 <cell alignment="center" valignment="top" topline="true" usebox="none">
7681 \begin_inset Text
7682
7683 \begin_layout Standard
7684 Stefano
7685 \end_layout
7686
7687 \end_inset
7688 </cell>
7689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7690 \begin_inset Text
7691
7692 \begin_layout Standard
7693 555
7694 \end_layout
7695
7696 \end_inset
7697 </cell>
7698 </row>
7699 <row>
7700 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7701 \begin_inset Text
7702
7703 \begin_layout Standard
7704
7705 \series bold
7706 Bozzi
7707 \end_layout
7708
7709 \end_inset
7710 </cell>
7711 <cell alignment="center" valignment="top" topline="true" usebox="none">
7712 \begin_inset Text
7713
7714 \begin_layout Standard
7715 Walter
7716 \end_layout
7717
7718 \end_inset
7719 </cell>
7720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7721 \begin_inset Text
7722
7723 \begin_layout Standard
7724 555
7725 \end_layout
7726
7727 \end_inset
7728 </cell>
7729 </row>
7730 <row>
7731 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7732 \begin_inset Text
7733
7734 \begin_layout Standard
7735
7736 \series bold
7737 Cachia
7738 \end_layout
7739
7740 \end_inset
7741 </cell>
7742 <cell alignment="center" valignment="top" topline="true" usebox="none">
7743 \begin_inset Text
7744
7745 \begin_layout Standard
7746 Maria
7747 \end_layout
7748
7749 \end_inset
7750 </cell>
7751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7752 \begin_inset Text
7753
7754 \begin_layout Standard
7755 555
7756 \end_layout
7757
7758 \end_inset
7759 </cell>
7760 </row>
7761 <row>
7762 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7763 \begin_inset Text
7764
7765 \begin_layout Standard
7766
7767 \series bold
7768 Cachia
7769 \end_layout
7770
7771 \end_inset
7772 </cell>
7773 <cell alignment="center" valignment="top" topline="true" usebox="none">
7774 \begin_inset Text
7775
7776 \begin_layout Standard
7777 Maurizio
7778 \end_layout
7779
7780 \end_inset
7781 </cell>
7782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7783 \begin_inset Text
7784
7785 \begin_layout Standard
7786 555
7787 \end_layout
7788
7789 \end_inset
7790 </cell>
7791 </row>
7792 <row>
7793 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7794 \begin_inset Text
7795
7796 \begin_layout Standard
7797
7798 \series bold
7799 Cinquemani
7800 \end_layout
7801
7802 \end_inset
7803 </cell>
7804 <cell alignment="center" valignment="top" topline="true" usebox="none">
7805 \begin_inset Text
7806
7807 \begin_layout Standard
7808 Giusi
7809 \end_layout
7810
7811 \end_inset
7812 </cell>
7813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7814 \begin_inset Text
7815
7816 \begin_layout Standard
7817 555
7818 \end_layout
7819
7820 \end_inset
7821 </cell>
7822 </row>
7823 <row>
7824 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7825 \begin_inset Text
7826
7827 \begin_layout Standard
7828
7829 \series bold
7830 Colin
7831 \end_layout
7832
7833 \end_inset
7834 </cell>
7835 <cell alignment="center" valignment="top" topline="true" usebox="none">
7836 \begin_inset Text
7837
7838 \begin_layout Standard
7839 Bernard
7840 \end_layout
7841
7842 \end_inset
7843 </cell>
7844 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7845 \begin_inset Text
7846
7847 \begin_layout Standard
7848 555
7849 \end_layout
7850
7851 \end_inset
7852 </cell>
7853 </row>
7854 <row>
7855 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7856 \begin_inset Text
7857
7858 \begin_layout Standard
7859
7860 \series bold
7861 Concli
7862 \end_layout
7863
7864 \end_inset
7865 </cell>
7866 <cell alignment="center" valignment="top" topline="true" usebox="none">
7867 \begin_inset Text
7868
7869 \begin_layout Standard
7870 Gianfranco
7871 \end_layout
7872
7873 \end_inset
7874 </cell>
7875 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7876 \begin_inset Text
7877
7878 \begin_layout Standard
7879 555
7880 \end_layout
7881
7882 \end_inset
7883 </cell>
7884 </row>
7885 <row>
7886 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7887 \begin_inset Text
7888
7889 \begin_layout Standard
7890
7891 \series bold
7892 Dal Bosco
7893 \end_layout
7894
7895 \end_inset
7896 </cell>
7897 <cell alignment="center" valignment="top" topline="true" usebox="none">
7898 \begin_inset Text
7899
7900 \begin_layout Standard
7901 Carolina
7902 \end_layout
7903
7904 \end_inset
7905 </cell>
7906 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7907 \begin_inset Text
7908
7909 \begin_layout Standard
7910 555
7911 \end_layout
7912
7913 \end_inset
7914 </cell>
7915 </row>
7916 <row>
7917 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7918 \begin_inset Text
7919
7920 \begin_layout Standard
7921
7922 \series bold
7923 Dalpiaz
7924 \end_layout
7925
7926 \end_inset
7927 </cell>
7928 <cell alignment="center" valignment="top" topline="true" usebox="none">
7929 \begin_inset Text
7930
7931 \begin_layout Standard
7932 Annamaria
7933 \end_layout
7934
7935 \end_inset
7936 </cell>
7937 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7938 \begin_inset Text
7939
7940 \begin_layout Standard
7941 555
7942 \end_layout
7943
7944 \end_inset
7945 </cell>
7946 </row>
7947 <row>
7948 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7949 \begin_inset Text
7950
7951 \begin_layout Standard
7952
7953 \series bold
7954 Feliciello
7955 \end_layout
7956
7957 \end_inset
7958 </cell>
7959 <cell alignment="center" valignment="top" topline="true" usebox="none">
7960 \begin_inset Text
7961
7962 \begin_layout Standard
7963 Domenico
7964 \end_layout
7965
7966 \end_inset
7967 </cell>
7968 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7969 \begin_inset Text
7970
7971 \begin_layout Standard
7972 555
7973 \end_layout
7974
7975 \end_inset
7976 </cell>
7977 </row>
7978 <row>
7979 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7980 \begin_inset Text
7981
7982 \begin_layout Standard
7983
7984 \series bold
7985 Focarelli
7986 \end_layout
7987
7988 \end_inset
7989 </cell>
7990 <cell alignment="center" valignment="top" topline="true" usebox="none">
7991 \begin_inset Text
7992
7993 \begin_layout Standard
7994 Paola
7995 \end_layout
7996
7997 \end_inset
7998 </cell>
7999 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8000 \begin_inset Text
8001
8002 \begin_layout Standard
8003 555
8004 \end_layout
8005
8006 \end_inset
8007 </cell>
8008 </row>
8009 <row>
8010 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8011 \begin_inset Text
8012
8013 \begin_layout Standard
8014
8015 \series bold
8016 Galletti
8017 \end_layout
8018
8019 \end_inset
8020 </cell>
8021 <cell alignment="center" valignment="top" topline="true" usebox="none">
8022 \begin_inset Text
8023
8024 \begin_layout Standard
8025 Oreste
8026 \end_layout
8027
8028 \end_inset
8029 </cell>
8030 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8031 \begin_inset Text
8032
8033 \begin_layout Standard
8034 555
8035 \end_layout
8036
8037 \end_inset
8038 </cell>
8039 </row>
8040 <row>
8041 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8042 \begin_inset Text
8043
8044 \begin_layout Standard
8045
8046 \series bold
8047 Gasparini
8048 \end_layout
8049
8050 \end_inset
8051 </cell>
8052 <cell alignment="center" valignment="top" topline="true" usebox="none">
8053 \begin_inset Text
8054
8055 \begin_layout Standard
8056 Franca
8057 \end_layout
8058
8059 \end_inset
8060 </cell>
8061 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8062 \begin_inset Text
8063
8064 \begin_layout Standard
8065 555
8066 \end_layout
8067
8068 \end_inset
8069 </cell>
8070 </row>
8071 <row>
8072 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8073 \begin_inset Text
8074
8075 \begin_layout Standard
8076
8077 \series bold
8078 Rizzardi
8079 \end_layout
8080
8081 \end_inset
8082 </cell>
8083 <cell alignment="center" valignment="top" topline="true" usebox="none">
8084 \begin_inset Text
8085
8086 \begin_layout Standard
8087 Paola
8088 \end_layout
8089
8090 \end_inset
8091 </cell>
8092 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8093 \begin_inset Text
8094
8095 \begin_layout Standard
8096 555
8097 \end_layout
8098
8099 \end_inset
8100 </cell>
8101 </row>
8102 <row>
8103 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8104 \begin_inset Text
8105
8106 \begin_layout Standard
8107
8108 \series bold
8109 Lassini
8110 \end_layout
8111
8112 \end_inset
8113 </cell>
8114 <cell alignment="center" valignment="top" topline="true" usebox="none">
8115 \begin_inset Text
8116
8117 \begin_layout Standard
8118 Giancarlo
8119 \end_layout
8120
8121 \end_inset
8122 </cell>
8123 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8124 \begin_inset Text
8125
8126 \begin_layout Standard
8127 555
8128 \end_layout
8129
8130 \end_inset
8131 </cell>
8132 </row>
8133 <row>
8134 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8135 \begin_inset Text
8136
8137 \begin_layout Standard
8138
8139 \series bold
8140 Malfatti
8141 \end_layout
8142
8143 \end_inset
8144 </cell>
8145 <cell alignment="center" valignment="top" topline="true" usebox="none">
8146 \begin_inset Text
8147
8148 \begin_layout Standard
8149 Luciano
8150 \end_layout
8151
8152 \end_inset
8153 </cell>
8154 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8155 \begin_inset Text
8156
8157 \begin_layout Standard
8158 555
8159 \end_layout
8160
8161 \end_inset
8162 </cell>
8163 </row>
8164 <row>
8165 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8166 \begin_inset Text
8167
8168 \begin_layout Standard
8169
8170 \series bold
8171 Malfatti
8172 \end_layout
8173
8174 \end_inset
8175 </cell>
8176 <cell alignment="center" valignment="top" topline="true" usebox="none">
8177 \begin_inset Text
8178
8179 \begin_layout Standard
8180 Valeriano
8181 \end_layout
8182
8183 \end_inset
8184 </cell>
8185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8186 \begin_inset Text
8187
8188 \begin_layout Standard
8189 555
8190 \end_layout
8191
8192 \end_inset
8193 </cell>
8194 </row>
8195 <row>
8196 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8197 \begin_inset Text
8198
8199 \begin_layout Standard
8200
8201 \series bold
8202 Meneguzzo
8203 \end_layout
8204
8205 \end_inset
8206 </cell>
8207 <cell alignment="center" valignment="top" topline="true" usebox="none">
8208 \begin_inset Text
8209
8210 \begin_layout Standard
8211 Roberto
8212 \end_layout
8213
8214 \end_inset
8215 </cell>
8216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8217 \begin_inset Text
8218
8219 \begin_layout Standard
8220 555
8221 \end_layout
8222
8223 \end_inset
8224 </cell>
8225 </row>
8226 <row bottomline="true">
8227 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8228 \begin_inset Text
8229
8230 \begin_layout Standard
8231
8232 \series bold
8233 Mezzadra
8234 \end_layout
8235
8236 \end_inset
8237 </cell>
8238 <cell alignment="center" valignment="top" topline="true" usebox="none">
8239 \begin_inset Text
8240
8241 \begin_layout Standard
8242 Roberto
8243 \end_layout
8244
8245 \end_inset
8246 </cell>
8247 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8248 \begin_inset Text
8249
8250 \begin_layout Standard
8251 555
8252 \end_layout
8253
8254 \end_inset
8255 </cell>
8256 </row>
8257 <row bottomline="true" endlastfoot="true">
8258 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8259 \begin_inset Text
8260
8261 \begin_layout Standard
8262
8263 \end_layout
8264
8265 \end_inset
8266 </cell>
8267 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8268 \begin_inset Text
8269
8270 \begin_layout Standard
8271
8272 \end_layout
8273
8274 \end_inset
8275 </cell>
8276 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8277 \begin_inset Text
8278
8279 \begin_layout Standard
8280
8281 \end_layout
8282
8283 \end_inset
8284 </cell>
8285 </row>
8286 </lyxtabular>
8287
8288 \end_inset
8289
8290
8291 \end_layout
8292
8293 \begin_layout Section
8294 Special Longtable Issues
8295 \begin_inset LatexCommand label
8296 name "sec:Special-Longtable-Issues"
8297
8298 \end_inset
8299
8300
8301 \end_layout
8302
8303 \begin_layout Subsection
8304 Longtable Calculation
8305 \begin_inset LatexCommand index
8306 name "Longtables ! Calculation"
8307
8308 \end_inset
8309
8310
8311 \end_layout
8312
8313 \begin_layout Standard
8314 LaTeX calculates the height of table pages and their page breaks using so
8315  called chunks.
8316  Chunks are pieces of the tables that are at once in LaTeX's memory.
8317  The default value is historically set to only 20 table rows.
8318  If you are using longtables with many pages this may slow down the creation
8319  of your document.
8320  You can safely increase the chunk size to values of 100-1000 by adding
8321  this command line to your document preamble:
8322 \end_layout
8323
8324 \begin_layout Standard
8325
8326 \series bold
8327
8328 \backslash
8329 setcounter{LTchunksize}{100}
8330 \end_layout
8331
8332 \begin_layout Subsection
8333 Floats and Longtables
8334 \begin_inset LatexCommand index
8335 name "Longtables ! Floats"
8336
8337 \end_inset
8338
8339
8340 \end_layout
8341
8342 \begin_layout Standard
8343 There might be problems when a float appears on the same page where a longtable
8344  starts.
8345  To avoid such situation, add the command 
8346 \series bold
8347
8348 \backslash
8349 clearpage
8350 \series default
8351  as ERT before your longtable.
8352 \end_layout
8353
8354 \begin_layout Subsection
8355 Forced Page Breaks
8356 \begin_inset LatexCommand index
8357 name "Longtables ! Forced Page Breaks"
8358
8359 \end_inset
8360
8361
8362 \end_layout
8363
8364 \begin_layout Standard
8365 By default tables are only broken between rows.
8366  If you have a cell with multiples lines and want to have a page break within
8367  the cell, insert the new line command 
8368 \begin_inset Quotes eld
8369 \end_inset
8370
8371
8372 \series bold
8373
8374 \backslash
8375
8376 \backslash
8377
8378 \series default
8379
8380 \begin_inset Quotes erd
8381 \end_inset
8382
8383  as ERT at this point of the cell where it should be broken.
8384  Before the 
8385 \series bold
8386
8387 \backslash
8388
8389 \backslash
8390
8391 \series default
8392  command you have to insert in ERT so many 
8393 \begin_inset Quotes eld
8394 \end_inset
8395
8396
8397 \series bold
8398 &
8399 \series default
8400
8401 \begin_inset Quotes erd
8402 \end_inset
8403
8404  characters like the number of the following table columns.
8405  The 
8406 \series bold
8407 &
8408 \series default
8409  is the character to separate table cells.
8410  Write in ERT after each 
8411 \series bold
8412 &
8413 \series default
8414  the content of the corresponding following cell and delete the content
8415  of these cells.
8416 \newline
8417 Behind the the 
8418 \series bold
8419
8420 \backslash
8421
8422 \backslash
8423
8424 \series default
8425  command, insert so many 
8426 \series bold
8427 &
8428 \series default
8429  characters like the number of table columns before the current column.
8430  In Table\InsetSpace ~
8431
8432 \begin_inset LatexCommand ref
8433 reference "tab:ForcedPagebreak"
8434
8435 \end_inset
8436
8437  the cell that should be broken is in the second column followed by another
8438  column.
8439  Therefore the following command was inserted in the cell as ERT behind
8440  
8441 \begin_inset Quotes eld
8442 \end_inset
8443
8444
8445 \emph on
8446 Castelchiodato,
8447 \emph default
8448
8449 \begin_inset Quotes erd
8450 \end_inset
8451
8452 :
8453 \end_layout
8454
8455 \begin_layout Standard
8456
8457 \series bold
8458 & 111
8459 \backslash
8460
8461 \backslash
8462
8463 \newline
8464 &
8465 \end_layout
8466
8467 \begin_layout Standard
8468 The 
8469 \begin_inset Quotes eld
8470 \end_inset
8471
8472 111
8473 \begin_inset Quotes erd
8474 \end_inset
8475
8476  in the third columns of the row was deleted.
8477  If your footer row of the longtable has for a certain reason no upper line
8478  but you would have a horizontal line where the cell is broken, use this
8479  command instead:
8480 \end_layout
8481
8482 \begin_layout Standard
8483
8484 \series bold
8485 & 111
8486 \backslash
8487
8488 \backslash
8489
8490 \newline
8491
8492 \backslash
8493 hline &
8494 \end_layout
8495
8496 \begin_layout Standard
8497 When the cell to be broken is in the last column, the command
8498 \end_layout
8499
8500 \begin_layout Standard
8501
8502 \series bold
8503
8504 \backslash
8505 setlength{
8506 \backslash
8507 parf\SpecialChar \textcompwordmark{}
8508 illskip}{0pt}
8509 \end_layout
8510
8511 \begin_layout Standard
8512 must be inserted as ERT at the beginning of the cell.
8513  This assures that the part of the cell that will be displayed on the new
8514  page appears with the full width.
8515  
8516 \end_layout
8517
8518 \begin_layout Standard
8519 \align center
8520 \begin_inset Tabular
8521 <lyxtabular version="3" rows="39" columns="3">
8522 <features islongtable="true">
8523 <column alignment="left" valignment="top" leftline="true" width="0cm">
8524 <column alignment="left" valignment="top" rightline="true" width="3cm">
8525 <column alignment="right" valignment="top" rightline="true" width="0pt">
8526 <row endfirsthead="true">
8527 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8528 \begin_inset Text
8529
8530 \begin_layout Standard
8531 \begin_inset Caption
8532
8533 \begin_layout Standard
8534 Table with forced page break in table cell
8535 \begin_inset LatexCommand label
8536 name "tab:ForcedPagebreak"
8537
8538 \end_inset
8539
8540
8541 \begin_inset OptArg
8542 status collapsed
8543
8544 \begin_layout Standard
8545 Table with forced page break in table cell
8546 \end_layout
8547
8548 \end_inset
8549
8550
8551 \end_layout
8552
8553 \end_inset
8554
8555
8556 \begin_inset ERT
8557 status collapsed
8558
8559 \begin_layout Standard
8560
8561
8562 \backslash
8563
8564 \backslash
8565 %
8566 \end_layout
8567
8568 \end_inset
8569
8570
8571 \end_layout
8572
8573 \end_inset
8574 </cell>
8575 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8576 \begin_inset Text
8577
8578 \begin_layout Standard
8579
8580 \end_layout
8581
8582 \end_inset
8583 </cell>
8584 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8585 \begin_inset Text
8586
8587 \begin_layout Standard
8588
8589 \end_layout
8590
8591 \end_inset
8592 </cell>
8593 </row>
8594 <row topline="true" bottomline="true" endfirsthead="true">
8595 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8596 \begin_inset Text
8597
8598 \begin_layout Standard
8599
8600 \series bold
8601 Example Phone List (ignore the names)
8602 \end_layout
8603
8604 \end_inset
8605 </cell>
8606 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8607 \begin_inset Text
8608
8609 \begin_layout Standard
8610
8611 \end_layout
8612
8613 \end_inset
8614 </cell>
8615 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8616 \begin_inset Text
8617
8618 \begin_layout Standard
8619
8620 \end_layout
8621
8622 \end_inset
8623 </cell>
8624 </row>
8625 <row topline="true" bottomline="true" endfirsthead="true">
8626 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8627 \begin_inset Text
8628
8629 \begin_layout Standard
8630
8631 \series bold
8632 NAME
8633 \end_layout
8634
8635 \end_inset
8636 </cell>
8637 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8638 \begin_inset Text
8639
8640 \begin_layout Standard
8641
8642 \end_layout
8643
8644 \end_inset
8645 </cell>
8646 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8647 \begin_inset Text
8648
8649 \begin_layout Standard
8650
8651 \series bold
8652 TEL.
8653 \end_layout
8654
8655 \end_inset
8656 </cell>
8657 </row>
8658 <row bottomline="true" endhead="true">
8659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8660 \begin_inset Text
8661
8662 \begin_layout Standard
8663 \begin_inset ERT
8664 status collapsed
8665
8666 \begin_layout Standard
8667
8668
8669 \backslash
8670 caption*{Continued table with forced page break in table cell}
8671 \backslash
8672
8673 \backslash
8674 %
8675 \end_layout
8676
8677 \end_inset
8678
8679
8680 \end_layout
8681
8682 \end_inset
8683 </cell>
8684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8685 \begin_inset Text
8686
8687 \begin_layout Standard
8688
8689 \end_layout
8690
8691 \end_inset
8692 </cell>
8693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8694 \begin_inset Text
8695
8696 \begin_layout Standard
8697
8698 \end_layout
8699
8700 \end_inset
8701 </cell>
8702 </row>
8703 <row topline="true" bottomline="true" endhead="true">
8704 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8705 \begin_inset Text
8706
8707 \begin_layout Standard
8708  
8709 \series bold
8710 Example Phone List
8711 \end_layout
8712
8713 \end_inset
8714 </cell>
8715 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8716 \begin_inset Text
8717
8718 \begin_layout Standard
8719
8720 \end_layout
8721
8722 \end_inset
8723 </cell>
8724 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8725 \begin_inset Text
8726
8727 \begin_layout Standard
8728
8729 \end_layout
8730
8731 \end_inset
8732 </cell>
8733 </row>
8734 <row topline="true" bottomline="true" endhead="true">
8735 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8736 \begin_inset Text
8737
8738 \begin_layout Standard
8739
8740 \series bold
8741 NAME
8742 \end_layout
8743
8744 \end_inset
8745 </cell>
8746 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8747 \begin_inset Text
8748
8749 \begin_layout Standard
8750
8751 \end_layout
8752
8753 \end_inset
8754 </cell>
8755 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8756 \begin_inset Text
8757
8758 \begin_layout Standard
8759
8760 \series bold
8761 TEL.
8762 \end_layout
8763
8764 \end_inset
8765 </cell>
8766 </row>
8767 <row topline="true" bottomline="true" endfoot="true">
8768 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8769 \begin_inset Text
8770
8771 \begin_layout Standard
8772 continued on next page
8773 \end_layout
8774
8775 \end_inset
8776 </cell>
8777 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8778 \begin_inset Text
8779
8780 \begin_layout Standard
8781
8782 \end_layout
8783
8784 \end_inset
8785 </cell>
8786 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8787 \begin_inset Text
8788
8789 \begin_layout Standard
8790
8791 \end_layout
8792
8793 \end_inset
8794 </cell>
8795 </row>
8796 <row>
8797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8798 \begin_inset Text
8799
8800 \begin_layout Standard
8801
8802 \series bold
8803 Annovi
8804 \end_layout
8805
8806 \end_inset
8807 </cell>
8808 <cell alignment="center" valignment="top" topline="true" usebox="none">
8809 \begin_inset Text
8810
8811 \begin_layout Standard
8812 Silvia
8813 \end_layout
8814
8815 \end_inset
8816 </cell>
8817 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8818 \begin_inset Text
8819
8820 \begin_layout Standard
8821 111
8822 \end_layout
8823
8824 \end_inset
8825 </cell>
8826 </row>
8827 <row>
8828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8829 \begin_inset Text
8830
8831 \begin_layout Standard
8832
8833 \series bold
8834 Bertoli
8835 \end_layout
8836
8837 \end_inset
8838 </cell>
8839 <cell alignment="center" valignment="top" topline="true" usebox="none">
8840 \begin_inset Text
8841
8842 \begin_layout Standard
8843 Stefano
8844 \end_layout
8845
8846 \end_inset
8847 </cell>
8848 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8849 \begin_inset Text
8850
8851 \begin_layout Standard
8852 111
8853 \end_layout
8854
8855 \end_inset
8856 </cell>
8857 </row>
8858 <row>
8859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8860 \begin_inset Text
8861
8862 \begin_layout Standard
8863
8864 \series bold
8865 Bozzi
8866 \end_layout
8867
8868 \end_inset
8869 </cell>
8870 <cell alignment="center" valignment="top" topline="true" usebox="none">
8871 \begin_inset Text
8872
8873 \begin_layout Standard
8874 Walter
8875 \end_layout
8876
8877 \end_inset
8878 </cell>
8879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8880 \begin_inset Text
8881
8882 \begin_layout Standard
8883 111
8884 \end_layout
8885
8886 \end_inset
8887 </cell>
8888 </row>
8889 <row>
8890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8891 \begin_inset Text
8892
8893 \begin_layout Standard
8894
8895 \series bold
8896 Cachia
8897 \end_layout
8898
8899 \end_inset
8900 </cell>
8901 <cell alignment="center" valignment="top" topline="true" usebox="none">
8902 \begin_inset Text
8903
8904 \begin_layout Standard
8905 Maria
8906 \end_layout
8907
8908 \end_inset
8909 </cell>
8910 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8911 \begin_inset Text
8912
8913 \begin_layout Standard
8914 111
8915 \end_layout
8916
8917 \end_inset
8918 </cell>
8919 </row>
8920 <row>
8921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8922 \begin_inset Text
8923
8924 \begin_layout Standard
8925
8926 \series bold
8927 Cachia
8928 \end_layout
8929
8930 \end_inset
8931 </cell>
8932 <cell alignment="center" valignment="top" topline="true" usebox="none">
8933 \begin_inset Text
8934
8935 \begin_layout Standard
8936 Maurizio
8937 \end_layout
8938
8939 \end_inset
8940 </cell>
8941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8942 \begin_inset Text
8943
8944 \begin_layout Standard
8945 111
8946 \end_layout
8947
8948 \end_inset
8949 </cell>
8950 </row>
8951 <row>
8952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8953 \begin_inset Text
8954
8955 \begin_layout Standard
8956
8957 \series bold
8958 Cinquemani
8959 \end_layout
8960
8961 \end_inset
8962 </cell>
8963 <cell alignment="center" valignment="top" topline="true" usebox="none">
8964 \begin_inset Text
8965
8966 \begin_layout Standard
8967 Giusi
8968 \end_layout
8969
8970 \end_inset
8971 </cell>
8972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8973 \begin_inset Text
8974
8975 \begin_layout Standard
8976 111
8977 \end_layout
8978
8979 \end_inset
8980 </cell>
8981 </row>
8982 <row>
8983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8984 \begin_inset Text
8985
8986 \begin_layout Standard
8987
8988 \series bold
8989 Colin
8990 \end_layout
8991
8992 \end_inset
8993 </cell>
8994 <cell alignment="center" valignment="top" topline="true" usebox="none">
8995 \begin_inset Text
8996
8997 \begin_layout Standard
8998 Bernard
8999 \end_layout
9000
9001 \end_inset
9002 </cell>
9003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9004 \begin_inset Text
9005
9006 \begin_layout Standard
9007 111
9008 \end_layout
9009
9010 \end_inset
9011 </cell>
9012 </row>
9013 <row>
9014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9015 \begin_inset Text
9016
9017 \begin_layout Standard
9018
9019 \series bold
9020 Concli
9021 \end_layout
9022
9023 \end_inset
9024 </cell>
9025 <cell alignment="center" valignment="top" topline="true" usebox="none">
9026 \begin_inset Text
9027
9028 \begin_layout Standard
9029 Gianfranco
9030 \end_layout
9031
9032 \end_inset
9033 </cell>
9034 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9035 \begin_inset Text
9036
9037 \begin_layout Standard
9038 111
9039 \end_layout
9040
9041 \end_inset
9042 </cell>
9043 </row>
9044 <row>
9045 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9046 \begin_inset Text
9047
9048 \begin_layout Standard
9049
9050 \series bold
9051 Dal Bosco
9052 \end_layout
9053
9054 \end_inset
9055 </cell>
9056 <cell alignment="center" valignment="top" topline="true" usebox="none">
9057 \begin_inset Text
9058
9059 \begin_layout Standard
9060 Carolina
9061 \end_layout
9062
9063 \end_inset
9064 </cell>
9065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9066 \begin_inset Text
9067
9068 \begin_layout Standard
9069 111
9070 \end_layout
9071
9072 \end_inset
9073 </cell>
9074 </row>
9075 <row>
9076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9077 \begin_inset Text
9078
9079 \begin_layout Standard
9080
9081 \series bold
9082 Dalpiaz
9083 \end_layout
9084
9085 \end_inset
9086 </cell>
9087 <cell alignment="center" valignment="top" topline="true" usebox="none">
9088 \begin_inset Text
9089
9090 \begin_layout Standard
9091 Annamaria
9092 \end_layout
9093
9094 \end_inset
9095 </cell>
9096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9097 \begin_inset Text
9098
9099 \begin_layout Standard
9100 111
9101 \end_layout
9102
9103 \end_inset
9104 </cell>
9105 </row>
9106 <row>
9107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9108 \begin_inset Text
9109
9110 \begin_layout Standard
9111
9112 \series bold
9113 Feliciello
9114 \end_layout
9115
9116 \end_inset
9117 </cell>
9118 <cell alignment="center" valignment="top" topline="true" usebox="none">
9119 \begin_inset Text
9120
9121 \begin_layout Standard
9122 Domenico
9123 \end_layout
9124
9125 \end_inset
9126 </cell>
9127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9128 \begin_inset Text
9129
9130 \begin_layout Standard
9131 111
9132 \end_layout
9133
9134 \end_inset
9135 </cell>
9136 </row>
9137 <row>
9138 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9139 \begin_inset Text
9140
9141 \begin_layout Standard
9142
9143 \series bold
9144 Focarelli
9145 \end_layout
9146
9147 \end_inset
9148 </cell>
9149 <cell alignment="center" valignment="top" topline="true" usebox="none">
9150 \begin_inset Text
9151
9152 \begin_layout Standard
9153 Paola
9154 \end_layout
9155
9156 \end_inset
9157 </cell>
9158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9159 \begin_inset Text
9160
9161 \begin_layout Standard
9162 111
9163 \end_layout
9164
9165 \end_inset
9166 </cell>
9167 </row>
9168 <row>
9169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9170 \begin_inset Text
9171
9172 \begin_layout Standard
9173
9174 \series bold
9175 Galletti
9176 \end_layout
9177
9178 \end_inset
9179 </cell>
9180 <cell alignment="center" valignment="top" topline="true" usebox="none">
9181 \begin_inset Text
9182
9183 \begin_layout Standard
9184 Oreste
9185 \end_layout
9186
9187 \end_inset
9188 </cell>
9189 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9190 \begin_inset Text
9191
9192 \begin_layout Standard
9193 111
9194 \end_layout
9195
9196 \end_inset
9197 </cell>
9198 </row>
9199 <row>
9200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9201 \begin_inset Text
9202
9203 \begin_layout Standard
9204
9205 \series bold
9206 Gasparini
9207 \end_layout
9208
9209 \end_inset
9210 </cell>
9211 <cell alignment="center" valignment="top" topline="true" usebox="none">
9212 \begin_inset Text
9213
9214 \begin_layout Standard
9215 Franca
9216 \end_layout
9217
9218 \end_inset
9219 </cell>
9220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9221 \begin_inset Text
9222
9223 \begin_layout Standard
9224 111
9225 \end_layout
9226
9227 \end_inset
9228 </cell>
9229 </row>
9230 <row>
9231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9232 \begin_inset Text
9233
9234 \begin_layout Standard
9235
9236 \series bold
9237 Lassini
9238 \end_layout
9239
9240 \end_inset
9241 </cell>
9242 <cell alignment="center" valignment="top" topline="true" usebox="none">
9243 \begin_inset Text
9244
9245 \begin_layout Standard
9246 Giancarlo
9247 \end_layout
9248
9249 \end_inset
9250 </cell>
9251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9252 \begin_inset Text
9253
9254 \begin_layout Standard
9255 111
9256 \end_layout
9257
9258 \end_inset
9259 </cell>
9260 </row>
9261 <row>
9262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9263 \begin_inset Text
9264
9265 \begin_layout Standard
9266
9267 \series bold
9268 Malfatti
9269 \end_layout
9270
9271 \end_inset
9272 </cell>
9273 <cell alignment="center" valignment="top" topline="true" usebox="none">
9274 \begin_inset Text
9275
9276 \begin_layout Standard
9277 Luciano
9278 \end_layout
9279
9280 \end_inset
9281 </cell>
9282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9283 \begin_inset Text
9284
9285 \begin_layout Standard
9286 111
9287 \end_layout
9288
9289 \end_inset
9290 </cell>
9291 </row>
9292 <row>
9293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9294 \begin_inset Text
9295
9296 \begin_layout Standard
9297
9298 \series bold
9299 Malfatti
9300 \end_layout
9301
9302 \end_inset
9303 </cell>
9304 <cell alignment="center" valignment="top" topline="true" usebox="none">
9305 \begin_inset Text
9306
9307 \begin_layout Standard
9308 Valeriano
9309 \end_layout
9310
9311 \end_inset
9312 </cell>
9313 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9314 \begin_inset Text
9315
9316 \begin_layout Standard
9317 111
9318 \end_layout
9319
9320 \end_inset
9321 </cell>
9322 </row>
9323 <row>
9324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9325 \begin_inset Text
9326
9327 \begin_layout Standard
9328
9329 \series bold
9330 Meneguzzo
9331 \end_layout
9332
9333 \end_inset
9334 </cell>
9335 <cell alignment="center" valignment="top" topline="true" usebox="none">
9336 \begin_inset Text
9337
9338 \begin_layout Standard
9339 Roberto
9340 \end_layout
9341
9342 \end_inset
9343 </cell>
9344 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9345 \begin_inset Text
9346
9347 \begin_layout Standard
9348 111
9349 \end_layout
9350
9351 \end_inset
9352 </cell>
9353 </row>
9354 <row>
9355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9356 \begin_inset Text
9357
9358 \begin_layout Standard
9359
9360 \series bold
9361 Mezzadra
9362 \end_layout
9363
9364 \end_inset
9365 </cell>
9366 <cell alignment="center" valignment="top" topline="true" usebox="none">
9367 \begin_inset Text
9368
9369 \begin_layout Standard
9370 Roberto
9371 \end_layout
9372
9373 \end_inset
9374 </cell>
9375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9376 \begin_inset Text
9377
9378 \begin_layout Standard
9379 111
9380 \end_layout
9381
9382 \end_inset
9383 </cell>
9384 </row>
9385 <row>
9386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9387 \begin_inset Text
9388
9389 \begin_layout Standard
9390
9391 \series bold
9392 Pirpamer
9393 \end_layout
9394
9395 \end_inset
9396 </cell>
9397 <cell alignment="center" valignment="top" topline="true" usebox="none">
9398 \begin_inset Text
9399
9400 \begin_layout Standard
9401 Erich
9402 \end_layout
9403
9404 \end_inset
9405 </cell>
9406 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9407 \begin_inset Text
9408
9409 \begin_layout Standard
9410 111
9411 \end_layout
9412
9413 \end_inset
9414 </cell>
9415 </row>
9416 <row>
9417 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9418 \begin_inset Text
9419
9420 \begin_layout Standard
9421
9422 \series bold
9423 Pochiesa
9424 \end_layout
9425
9426 \end_inset
9427 </cell>
9428 <cell alignment="center" valignment="top" topline="true" usebox="none">
9429 \begin_inset Text
9430
9431 \begin_layout Standard
9432 Paolo
9433 \end_layout
9434
9435 \end_inset
9436 </cell>
9437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9438 \begin_inset Text
9439
9440 \begin_layout Standard
9441 111, 222
9442 \end_layout
9443
9444 \end_inset
9445 </cell>
9446 </row>
9447 <row>
9448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9449 \begin_inset Text
9450
9451 \begin_layout Standard
9452
9453 \series bold
9454 Radina
9455 \end_layout
9456
9457 \end_inset
9458 </cell>
9459 <cell alignment="center" valignment="top" topline="true" usebox="none">
9460 \begin_inset Text
9461
9462 \begin_layout Standard
9463 Claudio
9464 \end_layout
9465
9466 \end_inset
9467 </cell>
9468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9469 \begin_inset Text
9470
9471 \begin_layout Standard
9472 111
9473 \end_layout
9474
9475 \end_inset
9476 </cell>
9477 </row>
9478 <row>
9479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9480 \begin_inset Text
9481
9482 \begin_layout Standard
9483
9484 \series bold
9485 Rizzardi
9486 \end_layout
9487
9488 \end_inset
9489 </cell>
9490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9491 \begin_inset Text
9492
9493 \begin_layout Standard
9494 Paolo, 11.
9495  Fürst von Montecompatri, 11.
9496  Fürst von Sulmona und Vivaro, 10.
9497  Fürst von Rossano, 5.
9498  Herzog von Canemorte, 11.
9499  Herzog von Palombara, 5.
9500  Herzog von Castelchiodato,
9501 \begin_inset ERT
9502 status collapsed
9503
9504 \begin_layout Standard
9505
9506 & 111
9507 \backslash
9508
9509 \backslash
9510
9511 \end_layout
9512
9513 \begin_layout Standard
9514
9515 &
9516 \end_layout
9517
9518 \end_inset
9519
9520  11.
9521  Herzog von Poggionativo, 11.
9522  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9523  Graf von Valinfreda, 11.
9524  Baron von Cropalati, 11.
9525  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9526 \end_layout
9527
9528 \end_inset
9529 </cell>
9530 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9531 \begin_inset Text
9532
9533 \begin_layout Standard
9534
9535 \end_layout
9536
9537 \end_inset
9538 </cell>
9539 </row>
9540 <row>
9541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9542 \begin_inset Text
9543
9544 \begin_layout Standard
9545
9546 \series bold
9547 Stuffer
9548 \end_layout
9549
9550 \end_inset
9551 </cell>
9552 <cell alignment="center" valignment="top" topline="true" usebox="none">
9553 \begin_inset Text
9554
9555 \begin_layout Standard
9556 Oskar
9557 \end_layout
9558
9559 \end_inset
9560 </cell>
9561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9562 \begin_inset Text
9563
9564 \begin_layout Standard
9565 111
9566 \end_layout
9567
9568 \end_inset
9569 </cell>
9570 </row>
9571 <row>
9572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9573 \begin_inset Text
9574
9575 \begin_layout Standard
9576
9577 \series bold
9578 Tacchelli
9579 \end_layout
9580
9581 \end_inset
9582 </cell>
9583 <cell alignment="center" valignment="top" topline="true" usebox="none">
9584 \begin_inset Text
9585
9586 \begin_layout Standard
9587 Ugo
9588 \end_layout
9589
9590 \end_inset
9591 </cell>
9592 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9593 \begin_inset Text
9594
9595 \begin_layout Standard
9596 111
9597 \end_layout
9598
9599 \end_inset
9600 </cell>
9601 </row>
9602 <row>
9603 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9604 \begin_inset Text
9605
9606 \begin_layout Standard
9607
9608 \series bold
9609 Tezzele
9610 \end_layout
9611
9612 \end_inset
9613 </cell>
9614 <cell alignment="center" valignment="top" topline="true" usebox="none">
9615 \begin_inset Text
9616
9617 \begin_layout Standard
9618 Margit
9619 \end_layout
9620
9621 \end_inset
9622 </cell>
9623 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9624 \begin_inset Text
9625
9626 \begin_layout Standard
9627 111
9628 \end_layout
9629
9630 \end_inset
9631 </cell>
9632 </row>
9633 <row>
9634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9635 \begin_inset Text
9636
9637 \begin_layout Standard
9638
9639 \series bold
9640 Unterkalmsteiner
9641 \end_layout
9642
9643 \end_inset
9644 </cell>
9645 <cell alignment="center" valignment="top" topline="true" usebox="none">
9646 \begin_inset Text
9647
9648 \begin_layout Standard
9649 Frieda
9650 \end_layout
9651
9652 \end_inset
9653 </cell>
9654 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9655 \begin_inset Text
9656
9657 \begin_layout Standard
9658 111
9659 \end_layout
9660
9661 \end_inset
9662 </cell>
9663 </row>
9664 <row>
9665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9666 \begin_inset Text
9667
9668 \begin_layout Standard
9669
9670 \series bold
9671 Vieider
9672 \end_layout
9673
9674 \end_inset
9675 </cell>
9676 <cell alignment="center" valignment="top" topline="true" usebox="none">
9677 \begin_inset Text
9678
9679 \begin_layout Standard
9680 Hilde
9681 \end_layout
9682
9683 \end_inset
9684 </cell>
9685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9686 \begin_inset Text
9687
9688 \begin_layout Standard
9689 111
9690 \end_layout
9691
9692 \end_inset
9693 </cell>
9694 </row>
9695 <row>
9696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9697 \begin_inset Text
9698
9699 \begin_layout Standard
9700
9701 \series bold
9702 Vigna
9703 \end_layout
9704
9705 \end_inset
9706 </cell>
9707 <cell alignment="center" valignment="top" topline="true" usebox="none">
9708 \begin_inset Text
9709
9710 \begin_layout Standard
9711 Jürgen
9712 \end_layout
9713
9714 \end_inset
9715 </cell>
9716 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9717 \begin_inset Text
9718
9719 \begin_layout Standard
9720 111
9721 \end_layout
9722
9723 \end_inset
9724 </cell>
9725 </row>
9726 <row>
9727 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9728 \begin_inset Text
9729
9730 \begin_layout Standard
9731
9732 \series bold
9733 Weber
9734 \end_layout
9735
9736 \end_inset
9737 </cell>
9738 <cell alignment="center" valignment="top" topline="true" usebox="none">
9739 \begin_inset Text
9740
9741 \begin_layout Standard
9742 Maurizio
9743 \end_layout
9744
9745 \end_inset
9746 </cell>
9747 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9748 \begin_inset Text
9749
9750 \begin_layout Standard
9751 111
9752 \end_layout
9753
9754 \end_inset
9755 </cell>
9756 </row>
9757 <row bottomline="true">
9758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9759 \begin_inset Text
9760
9761 \begin_layout Standard
9762
9763 \series bold
9764 Winkler
9765 \end_layout
9766
9767 \end_inset
9768 </cell>
9769 <cell alignment="center" valignment="top" topline="true" usebox="none">
9770 \begin_inset Text
9771
9772 \begin_layout Standard
9773 Franz
9774 \end_layout
9775
9776 \end_inset
9777 </cell>
9778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9779 \begin_inset Text
9780
9781 \begin_layout Standard
9782 111
9783 \end_layout
9784
9785 \end_inset
9786 </cell>
9787 </row>
9788 <row endlastfoot="true">
9789 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9790 \begin_inset Text
9791
9792 \begin_layout Standard
9793
9794 \end_layout
9795
9796 \end_inset
9797 </cell>
9798 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9799 \begin_inset Text
9800
9801 \begin_layout Standard
9802
9803 \end_layout
9804
9805 \end_inset
9806 </cell>
9807 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9808 \begin_inset Text
9809
9810 \begin_layout Standard
9811
9812 \end_layout
9813
9814 \end_inset
9815 </cell>
9816 </row>
9817 </lyxtabular>
9818
9819 \end_inset
9820
9821
9822 \end_layout
9823
9824 \begin_layout Section
9825 Multiple Lines Columns and Rows
9826 \end_layout
9827
9828 \begin_layout Subsection
9829 Multiple Lines in Table Cells
9830 \begin_inset LatexCommand label
9831 name "sub:Multiple-Lines-in"
9832
9833 \end_inset
9834
9835
9836 \begin_inset LatexCommand index
9837 name "Multiple Lines in Table Cells"
9838
9839 \end_inset
9840
9841
9842 \begin_inset LatexCommand index
9843 name "Table ! Linebreaks"
9844
9845 \end_inset
9846
9847
9848 \end_layout
9849
9850 \begin_layout Standard
9851 \align center
9852 \begin_inset Float table
9853 placement H
9854 wide false
9855 sideways false
9856 status open
9857
9858 \begin_layout Standard
9859 \begin_inset Caption
9860
9861 \begin_layout Standard
9862 \begin_inset LatexCommand label
9863 name "tab:Table-with-multiple"
9864
9865 \end_inset
9866
9867 Table with multiple lines in cells
9868 \end_layout
9869
9870 \end_inset
9871
9872
9873 \end_layout
9874
9875 \begin_layout Standard
9876 \align center
9877 \begin_inset Tabular
9878 <lyxtabular version="3" rows="3" columns="3">
9879 <features>
9880 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9881 <column alignment="center" valignment="middle" leftline="true" width="0">
9882 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0">
9883 <row topline="true">
9884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9885 \begin_inset Text
9886
9887 \begin_layout Standard
9888 multiple
9889 \begin_inset ERT
9890 status collapsed
9891
9892 \begin_layout Standard
9893
9894
9895 \backslash
9896 linebreak 
9897 \end_layout
9898
9899 \end_inset
9900
9901  lines
9902 \end_layout
9903
9904 \end_inset
9905 </cell>
9906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9907 \begin_inset Text
9908
9909 \begin_layout Standard
9910 b
9911 \end_layout
9912
9913 \end_inset
9914 </cell>
9915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9916 \begin_inset Text
9917
9918 \begin_layout Standard
9919 c
9920 \end_layout
9921
9922 \end_inset
9923 </cell>
9924 </row>
9925 <row topline="true">
9926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9927 \begin_inset Text
9928
9929 \begin_layout Standard
9930 d
9931 \end_layout
9932
9933 \end_inset
9934 </cell>
9935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9936 \begin_inset Text
9937
9938 \begin_layout Standard
9939 e
9940 \end_layout
9941
9942 \end_inset
9943 </cell>
9944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9945 \begin_inset Text
9946
9947 \begin_layout Standard
9948 f
9949 \end_layout
9950
9951 \end_inset
9952 </cell>
9953 </row>
9954 <row topline="true" bottomline="true">
9955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9956 \begin_inset Text
9957
9958 \begin_layout Standard
9959 g
9960 \end_layout
9961
9962 \end_inset
9963 </cell>
9964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9965 \begin_inset Text
9966
9967 \begin_layout Standard
9968 h
9969 \end_layout
9970
9971 \end_inset
9972 </cell>
9973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9974 \begin_inset Text
9975
9976 \begin_layout Standard
9977 i
9978 \end_layout
9979
9980 \end_inset
9981 </cell>
9982 </row>
9983 </lyxtabular>
9984
9985 \end_inset
9986
9987
9988 \end_layout
9989
9990 \end_inset
9991
9992
9993 \end_layout
9994
9995 \begin_layout Standard
9996 Adjusting a fixed width for a column, enables to enter text as a paragraph
9997  with multiple lines and hyphenations.
9998 \end_layout
9999
10000 \begin_layout Standard
10001 To produce Table\InsetSpace ~
10002
10003 \begin_inset LatexCommand ref
10004 reference "tab:Table-with-multiple"
10005
10006 \end_inset
10007
10008 , create a 3×3 table, mark the first cell and right-click on it.
10009  In the appearing table dialog we set a cell width of 2.5\InsetSpace \thinspace{}
10010 cm and choose centered
10011  for the vertical and horizontal alignment.
10012  The vertical alignment is used for all cells of the row.
10013  As our text is smaller than than 2.5\InsetSpace \thinspace{}
10014 cm, only one line will appear.
10015  To get two lines, we add a line break with the command
10016 \end_layout
10017
10018 \begin_layout Standard
10019
10020 \series bold
10021
10022 \backslash
10023 linebreak
10024 \end_layout
10025
10026 \begin_layout Standard
10027 in ERT.
10028  If the text is wider than the set cell width it will automatically be broken
10029  to several lines.
10030 \end_layout
10031
10032 \begin_layout Standard
10033 If you have a long word in a cell with a fixed width, it cannot be hyphenated
10034  by LaTeX if it is the first entry.
10035  Therefore you need to insert something, to make the word not being the
10036  first entry: Add the command
10037 \end_layout
10038
10039 \begin_layout Standard
10040
10041 \series bold
10042
10043 \backslash
10044 hspace{0pt}
10045 \end_layout
10046
10047 \begin_layout Standard
10048 in ERT before the word.
10049  As the space is zero, it doesn't change the output.
10050  Table\InsetSpace ~
10051
10052 \begin_inset LatexCommand ref
10053 reference "tab:Table-with-and"
10054
10055 \end_inset
10056
10057  shows the effect.
10058 \end_layout
10059
10060 \begin_layout Standard
10061 \begin_inset Float table
10062 placement h
10063 wide false
10064 sideways false
10065 status open
10066
10067 \begin_layout Standard
10068 \begin_inset Caption
10069
10070 \begin_layout Standard
10071 \begin_inset LatexCommand label
10072 name "tab:Table-with-and"
10073
10074 \end_inset
10075
10076 Table with and without hyphenation
10077 \end_layout
10078
10079 \end_inset
10080
10081
10082 \end_layout
10083
10084 \begin_layout Standard
10085
10086 \hfill
10087
10088 \begin_inset Tabular
10089 <lyxtabular version="3" rows="3" columns="3">
10090 <features>
10091 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10092 <column alignment="center" valignment="middle" leftline="true" width="0">
10093 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0">
10094 <row topline="true">
10095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10096 \begin_inset Text
10097
10098 \begin_layout Standard
10099 verylongtablecellword
10100 \end_layout
10101
10102 \end_inset
10103 </cell>
10104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10105 \begin_inset Text
10106
10107 \begin_layout Standard
10108 b
10109 \end_layout
10110
10111 \end_inset
10112 </cell>
10113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10114 \begin_inset Text
10115
10116 \begin_layout Standard
10117 c
10118 \end_layout
10119
10120 \end_inset
10121 </cell>
10122 </row>
10123 <row topline="true">
10124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10125 \begin_inset Text
10126
10127 \begin_layout Standard
10128 d
10129 \end_layout
10130
10131 \end_inset
10132 </cell>
10133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10134 \begin_inset Text
10135
10136 \begin_layout Standard
10137 e
10138 \end_layout
10139
10140 \end_inset
10141 </cell>
10142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10143 \begin_inset Text
10144
10145 \begin_layout Standard
10146 f
10147 \end_layout
10148
10149 \end_inset
10150 </cell>
10151 </row>
10152 <row topline="true" bottomline="true">
10153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10154 \begin_inset Text
10155
10156 \begin_layout Standard
10157 g
10158 \end_layout
10159
10160 \end_inset
10161 </cell>
10162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10163 \begin_inset Text
10164
10165 \begin_layout Standard
10166 h
10167 \end_layout
10168
10169 \end_inset
10170 </cell>
10171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10172 \begin_inset Text
10173
10174 \begin_layout Standard
10175 i
10176 \end_layout
10177
10178 \end_inset
10179 </cell>
10180 </row>
10181 </lyxtabular>
10182
10183 \end_inset
10184
10185
10186 \hfill
10187
10188 \begin_inset Tabular
10189 <lyxtabular version="3" rows="3" columns="3">
10190 <features>
10191 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10192 <column alignment="center" valignment="middle" leftline="true" width="0">
10193 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0">
10194 <row topline="true">
10195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10196 \begin_inset Text
10197
10198 \begin_layout Standard
10199 \begin_inset ERT
10200 status collapsed
10201
10202 \begin_layout Standard
10203
10204
10205 \backslash
10206 hspace{0pt}
10207 \end_layout
10208
10209 \end_inset
10210
10211 verylongtablecellword
10212 \end_layout
10213
10214 \end_inset
10215 </cell>
10216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10217 \begin_inset Text
10218
10219 \begin_layout Standard
10220 b
10221 \end_layout
10222
10223 \end_inset
10224 </cell>
10225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10226 \begin_inset Text
10227
10228 \begin_layout Standard
10229 c
10230 \end_layout
10231
10232 \end_inset
10233 </cell>
10234 </row>
10235 <row topline="true">
10236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10237 \begin_inset Text
10238
10239 \begin_layout Standard
10240 d
10241 \end_layout
10242
10243 \end_inset
10244 </cell>
10245 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10246 \begin_inset Text
10247
10248 \begin_layout Standard
10249 e
10250 \end_layout
10251
10252 \end_inset
10253 </cell>
10254 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10255 \begin_inset Text
10256
10257 \begin_layout Standard
10258 f
10259 \end_layout
10260
10261 \end_inset
10262 </cell>
10263 </row>
10264 <row topline="true" bottomline="true">
10265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10266 \begin_inset Text
10267
10268 \begin_layout Standard
10269 g
10270 \end_layout
10271
10272 \end_inset
10273 </cell>
10274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10275 \begin_inset Text
10276
10277 \begin_layout Standard
10278 h
10279 \end_layout
10280
10281 \end_inset
10282 </cell>
10283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10284 \begin_inset Text
10285
10286 \begin_layout Standard
10287 i
10288 \end_layout
10289
10290 \end_inset
10291 </cell>
10292 </row>
10293 </lyxtabular>
10294
10295 \end_inset
10296
10297
10298 \hfill
10299
10300 \end_layout
10301
10302 \end_inset
10303
10304
10305 \end_layout
10306
10307 \begin_layout Standard
10308
10309 \newpage
10310
10311 \end_layout
10312
10313 \begin_layout Subsection
10314 Multicolumns
10315 \begin_inset LatexCommand label
10316 name "sub:Multicolumns"
10317
10318 \end_inset
10319
10320
10321 \begin_inset LatexCommand index
10322 name "Multicolumns"
10323
10324 \end_inset
10325
10326
10327 \begin_inset LatexCommand index
10328 name "Table ! Multicolumns"
10329
10330 \end_inset
10331
10332
10333 \end_layout
10334
10335 \begin_layout Subsubsection
10336 Multicolumn Basics
10337 \end_layout
10338
10339 \begin_layout Standard
10340 To span a cell over multiple columns, mark as much cells within a line that
10341  should be one spanned cell and use either the table-toolbar button 
10342 \begin_inset Graphics
10343         filename ../images/tabular-feature_multicolumn.xpm
10344         scale 85
10345
10346 \end_inset
10347
10348 , or the menu 
10349 \family sans
10350 Edit\SpecialChar \menuseparator
10351 Table\SpecialChar \menuseparator
10352 Multicolumn
10353 \family default
10354 , or right click on the marked cells and choose multicolumn in the appearing
10355  table dialog under the tab 
10356 \family sans
10357 Table Settings
10358 \family default
10359 .
10360 \end_layout
10361
10362 \begin_layout Standard
10363 Multicolumns have there own cell settings.
10364  That means changing cell borders, cell alignment, and the width only affects
10365  the multicolumn.
10366  Here is an example table with a multicolumn cell in the first row and one
10367  in the last row without the upper border:
10368 \end_layout
10369
10370 \begin_layout Standard
10371 \align center
10372 \begin_inset Tabular
10373 <lyxtabular version="3" rows="3" columns="4">
10374 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10375 <column alignment="center" valignment="top" leftline="true" width="0pt">
10376 <column alignment="center" valignment="middle" leftline="true" width="0">
10377 <column alignment="center" valignment="top" leftline="true" width="0in">
10378 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10379 <row topline="true" bottomline="true">
10380 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10381 \begin_inset Text
10382
10383 \begin_layout Standard
10384 abc
10385 \end_layout
10386
10387 \end_inset
10388 </cell>
10389 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10390 \begin_inset Text
10391
10392 \begin_layout Standard
10393 def ghi
10394 \end_layout
10395
10396 \end_inset
10397 </cell>
10398 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10399 \begin_inset Text
10400
10401 \begin_layout Standard
10402
10403 \end_layout
10404
10405 \end_inset
10406 </cell>
10407 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10408 \begin_inset Text
10409
10410 \begin_layout Standard
10411 jkl
10412 \end_layout
10413
10414 \end_inset
10415 </cell>
10416 </row>
10417 <row topline="true">
10418 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10419 \begin_inset Text
10420
10421 \begin_layout Standard
10422
10423 \family roman
10424 \series medium
10425 \shape up
10426 \size normal
10427 \emph off
10428 \bar no
10429 \noun off
10430 \color none
10431 A
10432 \end_layout
10433
10434 \end_inset
10435 </cell>
10436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10437 \begin_inset Text
10438
10439 \begin_layout Standard
10440 B
10441 \end_layout
10442
10443 \end_inset
10444 </cell>
10445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10446 \begin_inset Text
10447
10448 \begin_layout Standard
10449 C
10450 \end_layout
10451
10452 \end_inset
10453 </cell>
10454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10455 \begin_inset Text
10456
10457 \begin_layout Standard
10458 D
10459 \end_layout
10460
10461 \end_inset
10462 </cell>
10463 </row>
10464 <row topline="true" bottomline="true">
10465 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10466 \begin_inset Text
10467
10468 \begin_layout Standard
10469 1
10470 \end_layout
10471
10472 \end_inset
10473 </cell>
10474 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10475 \begin_inset Text
10476
10477 \begin_layout Standard
10478 2
10479 \end_layout
10480
10481 \end_inset
10482 </cell>
10483 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10484 \begin_inset Text
10485
10486 \begin_layout Standard
10487 3
10488 \end_layout
10489
10490 \end_inset
10491 </cell>
10492 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10493 \begin_inset Text
10494
10495 \begin_layout Standard
10496 4
10497 \end_layout
10498
10499 \end_inset
10500 </cell>
10501 </row>
10502 </lyxtabular>
10503
10504 \end_inset
10505
10506
10507 \end_layout
10508
10509 \begin_layout Subsubsection
10510 Multicolumn Calculations
10511 \begin_inset LatexCommand label
10512 name "sub:Multicolumn-Calculations"
10513
10514 \end_inset
10515
10516
10517 \begin_inset LatexCommand index
10518 name "Multicolumns ! Calculations"
10519
10520 \end_inset
10521
10522
10523 \end_layout
10524
10525 \begin_layout Standard
10526 LyX supports multicolumns directly, but we have to take notice of the cell
10527  width of the columns spanned by the multicolumn cell.
10528 \end_layout
10529
10530 \begin_layout Standard
10531 \begin_inset Float table
10532 wide false
10533 sideways false
10534 status open
10535
10536 \begin_layout Standard
10537 \begin_inset Caption
10538
10539 \begin_layout Standard
10540 \begin_inset LatexCommand label
10541 name "tab:Table-with-centered"
10542
10543 \end_inset
10544
10545 Table with centered multicolumn text above two columns that have exactly
10546  half the width of the multicolumn cell
10547 \begin_inset OptArg
10548 status collapsed
10549
10550 \begin_layout Standard
10551 Perfect multicolumn table
10552 \end_layout
10553
10554 \end_inset
10555
10556
10557 \end_layout
10558
10559 \end_inset
10560
10561
10562 \end_layout
10563
10564 \begin_layout Standard
10565 \align center
10566 \begin_inset Tabular
10567 <lyxtabular version="3" rows="3" columns="3">
10568 <features>
10569 <column alignment="center" valignment="middle" leftline="true" width="0" special=">{\centering}m{1.25cm-6.2pt}">
10570 <column alignment="center" valignment="middle" leftline="true" width="0">
10571 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10572 <row topline="true">
10573 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special=">{\centering}m{2.5cm}">
10574 \begin_inset Text
10575
10576 \begin_layout Standard
10577 multiple lines multicolumn
10578 \end_layout
10579
10580 \end_inset
10581 </cell>
10582 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10583 \begin_inset Text
10584
10585 \begin_layout Standard
10586
10587 \end_layout
10588
10589 \end_inset
10590 </cell>
10591 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10592 \begin_inset Text
10593
10594 \begin_layout Standard
10595 c
10596 \end_layout
10597
10598 \end_inset
10599 </cell>
10600 </row>
10601 <row topline="true">
10602 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10603 \begin_inset Text
10604
10605 \begin_layout Standard
10606 d
10607 \end_layout
10608
10609 \end_inset
10610 </cell>
10611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10612 \begin_inset Text
10613
10614 \begin_layout Standard
10615 e
10616 \end_layout
10617
10618 \end_inset
10619 </cell>
10620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10621 \begin_inset Text
10622
10623 \begin_layout Standard
10624 f
10625 \end_layout
10626
10627 \end_inset
10628 </cell>
10629 </row>
10630 <row topline="true" bottomline="true">
10631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10632 \begin_inset Text
10633
10634 \begin_layout Standard
10635 g
10636 \end_layout
10637
10638 \end_inset
10639 </cell>
10640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10641 \begin_inset Text
10642
10643 \begin_layout Standard
10644 h
10645 \end_layout
10646
10647 \end_inset
10648 </cell>
10649 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10650 \begin_inset Text
10651
10652 \begin_layout Standard
10653 i
10654 \end_layout
10655
10656 \end_inset
10657 </cell>
10658 </row>
10659 </lyxtabular>
10660
10661 \end_inset
10662
10663
10664 \end_layout
10665
10666 \end_inset
10667
10668
10669 \end_layout
10670
10671 \begin_layout Standard
10672 To create for example Table\InsetSpace ~
10673
10674 \begin_inset LatexCommand ref
10675 reference "tab:Table-with-centered"
10676
10677 \end_inset
10678
10679 , mark the first two cells in the first row of a 3×3 table and right-click
10680  on them.
10681  Now choose for this cell 
10682 \emph on
10683 multicolumn
10684 \emph default
10685
10686 \emph on
10687 centered alignment
10688 \emph default
10689  and a width of 2.5\InsetSpace \thinspace{}
10690 cm in the table dialog.
10691  The spanned columns should have exactly half the width of the multicolumn
10692  cell, so that you would adjust a width of 1.25\InsetSpace \thinspace{}
10693 cm for the first column.
10694  The second column has then automatically a width of 1.25\InsetSpace \thinspace{}
10695 cm (multicolumn
10696  width - width of first column).
10697  This was done for Table\InsetSpace ~
10698
10699 \begin_inset LatexCommand ref
10700 reference "tab:Table-without-half"
10701
10702 \end_inset
10703
10704 .
10705 \end_layout
10706
10707 \begin_layout Standard
10708 \begin_inset Float table
10709 wide false
10710 sideways false
10711 status open
10712
10713 \begin_layout Standard
10714 \begin_inset Caption
10715
10716 \begin_layout Standard
10717 \begin_inset LatexCommand label
10718 name "tab:Table-without-half"
10719
10720 \end_inset
10721
10722 Table where the spanned table columns have not exactly half the width of
10723  the multicolumn cell
10724 \begin_inset OptArg
10725 status collapsed
10726
10727 \begin_layout Standard
10728 Imperfect multicolumn table
10729 \end_layout
10730
10731 \end_inset
10732
10733
10734 \end_layout
10735
10736 \end_inset
10737
10738
10739 \end_layout
10740
10741 \begin_layout Standard
10742 \align center
10743 \begin_inset Tabular
10744 <lyxtabular version="3" rows="3" columns="3">
10745 <features>
10746 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10747 <column alignment="center" valignment="top" leftline="true" width="0">
10748 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10749 <row topline="true" bottomline="true">
10750 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10751 \begin_inset Text
10752
10753 \begin_layout Standard
10754 multiple lines multicolumn
10755 \end_layout
10756
10757 \end_inset
10758 </cell>
10759 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10760 \begin_inset Text
10761
10762 \begin_layout Standard
10763
10764 \end_layout
10765
10766 \end_inset
10767 </cell>
10768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10769 \begin_inset Text
10770
10771 \begin_layout Standard
10772 c
10773 \end_layout
10774
10775 \end_inset
10776 </cell>
10777 </row>
10778 <row topline="true">
10779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10780 \begin_inset Text
10781
10782 \begin_layout Standard
10783 d
10784 \end_layout
10785
10786 \end_inset
10787 </cell>
10788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10789 \begin_inset Text
10790
10791 \begin_layout Standard
10792 e
10793 \end_layout
10794
10795 \end_inset
10796 </cell>
10797 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10798 \begin_inset Text
10799
10800 \begin_layout Standard
10801 f
10802 \end_layout
10803
10804 \end_inset
10805 </cell>
10806 </row>
10807 <row topline="true" bottomline="true">
10808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10809 \begin_inset Text
10810
10811 \begin_layout Standard
10812 g
10813 \end_layout
10814
10815 \end_inset
10816 </cell>
10817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10818 \begin_inset Text
10819
10820 \begin_layout Standard
10821 h
10822 \end_layout
10823
10824 \end_inset
10825 </cell>
10826 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10827 \begin_inset Text
10828
10829 \begin_layout Standard
10830 i
10831 \end_layout
10832
10833 \end_inset
10834 </cell>
10835 </row>
10836 </lyxtabular>
10837
10838 \end_inset
10839
10840
10841 \end_layout
10842
10843 \end_inset
10844
10845
10846 \end_layout
10847
10848 \begin_layout Standard
10849 You can see that the first column has not the half width of the multicolumn
10850  cell, it is a bit bigger.
10851  The reason is that the given width of a cell 
10852 \begin_inset Formula $W_{g}$
10853 \end_inset
10854
10855  is not its total width 
10856 \begin_inset Formula $W_{\mathrm{tot}}$
10857 \end_inset
10858
10859  because a cell is always a bit larger than its given width.
10860  Appendix\InsetSpace ~
10861
10862 \begin_inset LatexCommand eqref
10863 reference "cha:Explanation-of-Equation"
10864
10865 \end_inset
10866
10867  explains it in detail.
10868 \end_layout
10869
10870 \begin_layout Standard
10871 The needed given width 
10872 \begin_inset Formula $W_{g\, n}$
10873 \end_inset
10874
10875  when 
10876 \emph on
10877 n
10878 \emph default
10879  columns are spanned can be calculated, so that each column has a total
10880  width of 
10881 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10882 \end_inset
10883
10884 :
10885 \begin_inset Formula \begin{equation}
10886 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10887
10888 \end_inset
10889
10890
10891 \end_layout
10892
10893 \begin_layout Standard
10894 In our case we have 
10895 \begin_inset Formula $n=2$
10896 \end_inset
10897
10898
10899 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10900 \end_inset
10901
10902 cm and the default values for the lengths, so that equation 
10903 \begin_inset LatexCommand ref
10904 reference "eq:Wgn"
10905
10906 \end_inset
10907
10908  becomes
10909 \begin_inset Formula \begin{equation}
10910 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10911
10912 \end_inset
10913
10914
10915 \end_layout
10916
10917 \begin_layout Standard
10918 To enable calculations in LaTeX, the LaTeX-package 
10919 \series bold
10920 calc
10921 \series default
10922  must be loaded with the document preamble line
10923 \begin_inset LatexCommand index
10924 name "LaTeX-packages ! calc"
10925
10926 \end_inset
10927
10928
10929 \end_layout
10930
10931 \begin_layout Standard
10932
10933 \series bold
10934
10935 \backslash
10936 usepackage{calc}
10937 \end_layout
10938
10939 \begin_layout Standard
10940 LyX does not allow to calculate lengths in the width-field of the table
10941  dialog.
10942  Therefore you have to format the column by inserting a LaTeX-argument in
10943  the dialog.
10944  Here is an overview about the arguments:
10945 \end_layout
10946
10947 \begin_layout Itemize
10948
10949 \series bold
10950 p{width}
10951 \series default
10952  creates cell with a fixed width, its text is vertically top-aligned
10953 \end_layout
10954
10955 \begin_layout Itemize
10956
10957 \series bold
10958 m{width}
10959 \series default
10960  creates cell with a fixed width, its text is vertically centered
10961 \end_layout
10962
10963 \begin_layout Itemize
10964
10965 \series bold
10966 b{width}
10967 \series default
10968  creates cell with a fixed width, its text is vertically bottom-aligned
10969 \end_layout
10970
10971 \begin_layout Standard
10972 By entering a LaTeX-argument, all cell properties set in the table dialog
10973  are overwritten.
10974  
10975 \begin_inset Note Greyedout
10976 status open
10977
10978 \begin_layout Standard
10979
10980 \series bold
10981 Note:
10982 \series default
10983  Due to a bug, LyX shows the overwritten properties anyway.
10984 \end_layout
10985
10986 \end_inset
10987
10988  As the text should be horizontally centered, the command 
10989 \series bold
10990
10991 \backslash
10992 centering
10993 \series default
10994  is added.
10995  You can now enter the following LaTeX-argument for the first spanned column:
10996 \end_layout
10997
10998 \begin_layout Standard
10999
11000 \series bold
11001 >{
11002 \backslash
11003 centering}m{1.25cm-6.2pt}
11004 \end_layout
11005
11006 \begin_layout Standard
11007 The command 
11008 \series bold
11009 >{ }
11010 \series default
11011  means, that the commands inside the braces are applied before the cell
11012  is created.
11013 \end_layout
11014
11015 \begin_layout Standard
11016 Although we have chosen centered alignment for the text of the multicolumn
11017  cell, it is still left aligned.
11018  This is because LyX only applies the alignment to single columns.
11019  So we have to use for the multicolumn the LaTeX-argument
11020 \end_layout
11021
11022 \begin_layout Standard
11023
11024 \series bold
11025 >{
11026 \backslash
11027 centering}m{2.5cm}
11028 \end_layout
11029
11030 \begin_layout Subsection
11031 Multirows
11032 \begin_inset LatexCommand index
11033 name "Multirows"
11034
11035 \end_inset
11036
11037
11038 \begin_inset LatexCommand index
11039 name "Table ! Multirows"
11040
11041 \end_inset
11042
11043
11044 \begin_inset LatexCommand index
11045 name "LaTeX-packages ! multirow"
11046
11047 \end_inset
11048
11049
11050 \end_layout
11051
11052 \begin_layout Standard
11053 In contrary to multicolumns multirows are not yet supported by LyX so a
11054  bit of ERT needs to be used.
11055  To use multirows load the LaTeX-package 
11056 \series bold
11057 multirow
11058 \series default
11059  in your document preamble with the command
11060 \end_layout
11061
11062 \begin_layout Standard
11063
11064 \series bold
11065
11066 \backslash
11067 usepackage{multirow}
11068 \end_layout
11069
11070 \begin_layout Standard
11071 Multirows are created with the command
11072 \end_layout
11073
11074 \begin_layout Standard
11075
11076 \series bold
11077
11078 \backslash
11079 multirow{number of rows}{cell width}{cell entry}
11080 \end_layout
11081
11082 \begin_layout Standard
11083 To create the following table:
11084 \end_layout
11085
11086 \begin_layout Standard
11087 \align center
11088 \begin_inset ERT
11089 status collapsed
11090
11091 \begin_layout Standard
11092
11093
11094 \backslash
11095 renewcommand{
11096 \backslash
11097 multirowsetup}{
11098 \backslash
11099 centering}
11100 \end_layout
11101
11102 \end_inset
11103
11104
11105 \begin_inset Tabular
11106 <lyxtabular version="3" rows="3" columns="3">
11107 <features>
11108 <column alignment="center" valignment="top" leftline="true" width="0">
11109 <column alignment="center" valignment="top" leftline="true" width="0">
11110 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11111 <row topline="true">
11112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11113 \begin_inset Text
11114
11115 \begin_layout Standard
11116 a
11117 \end_layout
11118
11119 \end_inset
11120 </cell>
11121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11122 \begin_inset Text
11123
11124 \begin_layout Standard
11125 b
11126 \end_layout
11127
11128 \end_inset
11129 </cell>
11130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11131 \begin_inset Text
11132
11133 \begin_layout Standard
11134 c
11135 \end_layout
11136
11137 \end_inset
11138 </cell>
11139 </row>
11140 <row topline="true">
11141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11142 \begin_inset Text
11143
11144 \begin_layout Standard
11145 \begin_inset ERT
11146 status collapsed
11147
11148 \begin_layout Standard
11149
11150
11151 \backslash
11152 multirow{2}{2.5cm}{
11153 \end_layout
11154
11155 \end_inset
11156
11157 multirow entry
11158 \begin_inset ERT
11159 status collapsed
11160
11161 \begin_layout Standard
11162
11163 }
11164 \end_layout
11165
11166 \end_inset
11167
11168
11169 \end_layout
11170
11171 \end_inset
11172 </cell>
11173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11174 \begin_inset Text
11175
11176 \begin_layout Standard
11177 e
11178 \end_layout
11179
11180 \end_inset
11181 </cell>
11182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11183 \begin_inset Text
11184
11185 \begin_layout Standard
11186 f
11187 \end_layout
11188
11189 \end_inset
11190 </cell>
11191 </row>
11192 <row topline="true" bottomline="true">
11193 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11194 \begin_inset Text
11195
11196 \begin_layout Standard
11197
11198 \end_layout
11199
11200 \end_inset
11201 </cell>
11202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11203 \begin_inset Text
11204
11205 \begin_layout Standard
11206 h
11207 \end_layout
11208
11209 \end_inset
11210 </cell>
11211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11212 \begin_inset Text
11213
11214 \begin_layout Standard
11215 i
11216 \end_layout
11217
11218 \end_inset
11219 </cell>
11220 </row>
11221 </lyxtabular>
11222
11223 \end_inset
11224
11225
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 raggedright}
11238 \end_layout
11239
11240 \end_inset
11241
11242
11243 \end_layout
11244
11245 \begin_layout Standard
11246 create a 3×3 table.
11247  To get rid of the line above the last cell in the first column, the cell
11248  is marked as multicolumn and the upper border is unset.
11249  The multirow is now created in the second row of the first column by inserting
11250  there the command
11251 \end_layout
11252
11253 \begin_layout Standard
11254
11255 \series bold
11256
11257 \backslash
11258 multirow{2}{2.5cm}{
11259 \end_layout
11260
11261 \begin_layout Standard
11262 as ERT.
11263  According to the command parameters the multirow spans now two rows and
11264  has a width of 2.5\InsetSpace \thinspace{}
11265 cm.
11266  The content of the multirow cell follows outside the ERT box and the command
11267  is finished with a right brace 
11268 \series bold
11269 }
11270 \series default
11271  in another ERT-box behind the text.
11272 \end_layout
11273
11274 \begin_layout Standard
11275
11276 \series bold
11277
11278 \backslash
11279 multirow
11280 \series default
11281  left-aligns its content by default.
11282  To override the default, renew the command 
11283 \series bold
11284
11285 \backslash
11286 multirowsetup
11287 \series default
11288  with the command
11289 \end_layout
11290
11291 \begin_layout Standard
11292
11293 \series bold
11294
11295 \backslash
11296 renewcommand{
11297 \backslash
11298 multirowsetup}{
11299 \backslash
11300 centering}
11301 \end_layout
11302
11303 \begin_layout Standard
11304 in ERT in the document preamble.
11305  Then all entries of multirow cells in the document are centered.
11306  If centering is only needed for several tables, you can renew the command
11307  in an ERT box just before the table instead of the preamble.
11308  If the text should be right-aligned, replace 
11309 \series bold
11310
11311 \backslash
11312 centering
11313 \series default
11314  by 
11315 \series bold
11316
11317 \backslash
11318 raggedleft
11319 \series default
11320 .
11321  To return to left-alignment 
11322 \series bold
11323
11324 \backslash
11325 raggedright
11326 \series default
11327  is used.
11328 \end_layout
11329
11330 \begin_layout Section
11331 Formal Tables
11332 \begin_inset LatexCommand label
11333 name "sec:Formal-Tables"
11334
11335 \end_inset
11336
11337
11338 \begin_inset LatexCommand index
11339 name "Table ! Formal"
11340
11341 \end_inset
11342
11343
11344 \end_layout
11345
11346 \begin_layout Standard
11347 Tables are often typeset in books similar to Table\InsetSpace ~
11348
11349 \begin_inset LatexCommand ref
11350 reference "tab:Example-booktabs-table"
11351
11352 \end_inset
11353
11354 .
11355  This kind of tables is called 
11356 \begin_inset Quotes eld
11357 \end_inset
11358
11359
11360 \emph on
11361 formal
11362 \emph default
11363
11364 \begin_inset Quotes erd
11365 \end_inset
11366
11367 .
11368  To make a table a formal table use the option 
11369 \family sans
11370 Formal
11371 \family default
11372  in the 
11373 \family sans
11374 Borders
11375 \family default
11376  tab of the table dialog.
11377 \end_layout
11378
11379 \begin_layout Standard
11380 \begin_inset Float table
11381 placement h
11382 wide false
11383 sideways false
11384 status open
11385
11386 \begin_layout Standard
11387 \begin_inset Caption
11388
11389 \begin_layout Standard
11390 \begin_inset LatexCommand label
11391 name "tab:Example-booktabs-table"
11392
11393 \end_inset
11394
11395 Example booktabs-table
11396 \end_layout
11397
11398 \end_inset
11399
11400
11401 \end_layout
11402
11403 \begin_layout Standard
11404 \align center
11405 \begin_inset Tabular
11406 <lyxtabular version="3" rows="8" columns="4">
11407 <features booktabs="true">
11408 <column alignment="center" valignment="top" rightline="true" width="0">
11409 <column alignment="center" valignment="top" width="0">
11410 <column alignment="center" valignment="top" width="0">
11411 <column alignment="center" valignment="top" width="0">
11412 <row topline="true">
11413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11414 \begin_inset Text
11415
11416 \begin_layout Standard
11417 System
11418 \end_layout
11419
11420 \end_inset
11421 </cell>
11422 <cell alignment="center" valignment="top" topline="true" usebox="none">
11423 \begin_inset Text
11424
11425 \begin_layout Standard
11426 Medipix
11427 \begin_inset Formula $\,$
11428 \end_inset
11429
11430 1
11431 \end_layout
11432
11433 \end_inset
11434 </cell>
11435 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11436 \begin_inset Text
11437
11438 \begin_layout Standard
11439 Medipix
11440 \begin_inset Formula $\,$
11441 \end_inset
11442
11443 2
11444 \end_layout
11445
11446 \end_inset
11447 </cell>
11448 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11449 \begin_inset Text
11450
11451 \begin_layout Standard
11452
11453 \end_layout
11454
11455 \end_inset
11456 </cell>
11457 </row>
11458 <row>
11459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11460 \begin_inset Text
11461
11462 \begin_layout Standard
11463 \begin_inset ERT
11464 status collapsed
11465
11466 \begin_layout Standard
11467
11468
11469 \backslash
11470 cmidrule(r){2-2}
11471 \end_layout
11472
11473 \end_inset
11474
11475
11476 \begin_inset ERT
11477 status collapsed
11478
11479 \begin_layout Standard
11480
11481
11482 \backslash
11483 cmidrule(l){3-4}
11484 \end_layout
11485
11486 \end_inset
11487
11488 Detector thickness [µm]
11489 \end_layout
11490
11491 \end_inset
11492 </cell>
11493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11494 \begin_inset Text
11495
11496 \begin_layout Standard
11497 300
11498 \end_layout
11499
11500 \end_inset
11501 </cell>
11502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11503 \begin_inset Text
11504
11505 \begin_layout Standard
11506 300
11507 \end_layout
11508
11509 \end_inset
11510 </cell>
11511 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11512 \begin_inset Text
11513
11514 \begin_layout Standard
11515 700
11516 \end_layout
11517
11518 \end_inset
11519 </cell>
11520 </row>
11521 <row topline="true">
11522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11523 \begin_inset Text
11524
11525 \begin_layout Standard
11526 Edge angle [°]
11527 \end_layout
11528
11529 \end_inset
11530 </cell>
11531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11532 \begin_inset Text
11533
11534 \begin_layout Standard
11535 3.55
11536 \end_layout
11537
11538 \end_inset
11539 </cell>
11540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11541 \begin_inset Text
11542
11543 \begin_layout Standard
11544 2.71
11545 \end_layout
11546
11547 \end_inset
11548 </cell>
11549 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11550 \begin_inset Text
11551
11552 \begin_layout Standard
11553 7.99
11554 \end_layout
11555
11556 \end_inset
11557 </cell>
11558 </row>
11559 <row topspace="default">
11560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11561 \begin_inset Text
11562
11563 \begin_layout Standard
11564 Spatial resolution [µm]
11565 \end_layout
11566
11567 \end_inset
11568 </cell>
11569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11570 \begin_inset Text
11571
11572 \begin_layout Standard
11573 4.26
11574 \end_layout
11575
11576 \end_inset
11577 </cell>
11578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11579 \begin_inset Text
11580
11581 \begin_layout Standard
11582 10.17
11583 \end_layout
11584
11585 \end_inset
11586 </cell>
11587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11588 \begin_inset Text
11589
11590 \begin_layout Standard
11591 10.56
11592 \end_layout
11593
11594 \end_inset
11595 </cell>
11596 </row>
11597 <row topspace="default">
11598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11599 \begin_inset Text
11600
11601 \begin_layout Standard
11602 MTF at 
11603 \begin_inset Formula $f_{\mathrm{max}}$
11604 \end_inset
11605
11606
11607 \end_layout
11608
11609 \end_inset
11610 </cell>
11611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11612 \begin_inset Text
11613
11614 \begin_layout Standard
11615 0.53
11616 \end_layout
11617
11618 \end_inset
11619 </cell>
11620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11621 \begin_inset Text
11622
11623 \begin_layout Standard
11624 0.37
11625 \end_layout
11626
11627 \end_inset
11628 </cell>
11629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11630 \begin_inset Text
11631
11632 \begin_layout Standard
11633 0.39
11634 \end_layout
11635
11636 \end_inset
11637 </cell>
11638 </row>
11639 <row topspace="default">
11640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11641 \begin_inset Text
11642
11643 \begin_layout Standard
11644 \begin_inset ERT
11645 status collapsed
11646
11647 \begin_layout Standard
11648
11649
11650 \backslash
11651 cmidrule(l{10pt}){1-1}
11652 \end_layout
11653
11654 \end_inset
11655
11656 LSF-spatial resolution
11657 \end_layout
11658
11659 \end_inset
11660 </cell>
11661 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11662 \begin_inset Text
11663
11664 \begin_layout Standard
11665
11666 \end_layout
11667
11668 \end_inset
11669 </cell>
11670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11671 \begin_inset Text
11672
11673 \begin_layout Standard
11674
11675 \end_layout
11676
11677 \end_inset
11678 </cell>
11679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11680 \begin_inset Text
11681
11682 \begin_layout Standard
11683
11684 \end_layout
11685
11686 \end_inset
11687 </cell>
11688 </row>
11689 <row>
11690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11691 \begin_inset Text
11692
11693 \begin_layout Standard
11694 in µm
11695 \end_layout
11696
11697 \end_inset
11698 </cell>
11699 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11700 \begin_inset Text
11701
11702 \begin_layout Standard
11703 129.7
11704 \end_layout
11705
11706 \end_inset
11707 </cell>
11708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11709 \begin_inset Text
11710
11711 \begin_layout Standard
11712 52.75
11713 \end_layout
11714
11715 \end_inset
11716 </cell>
11717 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11718 \begin_inset Text
11719
11720 \begin_layout Standard
11721 50.78
11722 \end_layout
11723
11724 \end_inset
11725 </cell>
11726 </row>
11727 <row bottomline="true">
11728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11729 \begin_inset Text
11730
11731 \begin_layout Standard
11732 in % of pixel size
11733 \end_layout
11734
11735 \end_inset
11736 </cell>
11737 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11738 \begin_inset Text
11739
11740 \begin_layout Standard
11741 76.3
11742 \end_layout
11743
11744 \end_inset
11745 </cell>
11746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11747 \begin_inset Text
11748
11749 \begin_layout Standard
11750 95.9
11751 \end_layout
11752
11753 \end_inset
11754 </cell>
11755 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11756 \begin_inset Text
11757
11758 \begin_layout Standard
11759 92.3
11760 \end_layout
11761
11762 \end_inset
11763 </cell>
11764 </row>
11765 </lyxtabular>
11766
11767 \end_inset
11768
11769
11770 \end_layout
11771
11772 \end_inset
11773
11774
11775 \end_layout
11776
11777 \begin_layout Standard
11778 Spaces to table rows can be added using the 
11779 \family sans
11780 Borders
11781 \family default
11782  tab of the table dialog as described in section\InsetSpace ~
11783
11784 \begin_inset LatexCommand ref
11785 reference "sub:Row-Spacing"
11786
11787 \end_inset
11788
11789 .
11790 \end_layout
11791
11792 \begin_layout Standard
11793 In contrary to normal tables, formal tables have no vertical table lines.
11794  The horizontal table lines can be set like for normal tables but they appear
11795  with different width in the output:
11796 \newline
11797 The first and the last table line have
11798  a default width of 0.08\InsetSpace \thinspace{}
11799 em while the other lines have a default width of
11800  0.05\InsetSpace \thinspace{}
11801 em.
11802 \end_layout
11803
11804 \begin_layout Standard
11805 The default widths can be changed with the following preamble lines
11806 \end_layout
11807
11808 \begin_layout Standard
11809
11810 \series bold
11811
11812 \backslash
11813 let
11814 \backslash
11815 mytoprule
11816 \backslash
11817 toprule
11818 \newline
11819
11820 \backslash
11821 renewcommand{
11822 \backslash
11823 toprule}{
11824 \backslash
11825 mytoprule[width]}
11826 \end_layout
11827
11828 \begin_layout Standard
11829 This example is for the first line, the so called toprule.
11830  If you want to change the width for the last line, replace 
11831 \series bold
11832 toprule
11833 \series default
11834  by 
11835 \series bold
11836 bottomrule
11837 \series default
11838 .
11839  To change the width for the other lines replace 
11840 \series bold
11841 toprule
11842 \series default
11843  by 
11844 \series bold
11845 midrule
11846 \series default
11847 .
11848  You can use all units listed in appendix\InsetSpace ~
11849
11850 \begin_inset LatexCommand ref
11851 reference "cha:Units-available-in"
11852
11853 \end_inset
11854
11855  to set the width.
11856 \end_layout
11857
11858 \begin_layout Standard
11859 Lines that don't span over all table columns can be created by setting a
11860  table line for multicolumn cells.
11861  LyX will then internally use the command 
11862 \series bold
11863
11864 \backslash
11865 cmidrule
11866 \series default
11867  to create this line.
11868  Its full scheme is
11869 \end_layout
11870
11871 \begin_layout Standard
11872
11873 \series bold
11874
11875 \backslash
11876 cmidrule[width](trim){startcol-endcol}
11877 \end_layout
11878
11879 \begin_layout Standard
11880 The options of 
11881 \series bold
11882
11883 \backslash
11884 cmidrule
11885 \series default
11886  are are currently not supported by LyX so you have to use ERT to be able
11887  to use them.
11888  
11889 \series bold
11890
11891 \backslash
11892 cmidrule
11893 \series default
11894 s can manually be created by inserting the command as ERT as first cell
11895  entry of the first cell of a row.
11896  The line is then drawn in the output above the current row.
11897 \end_layout
11898
11899 \begin_layout Standard
11900 The default for the width is 0.03\InsetSpace \thinspace{}
11901 em.
11902  Startcol is the number of the column where the line starts and endcol the
11903  column number where the line ends.
11904  The endcol always needs to be specified, also when the line should span
11905  only one column.
11906  The optional parameter trim could be either 
11907 \emph on
11908 l{trimwidth}
11909 \emph default
11910 , or 
11911 \emph on
11912 r{trimwidth}
11913 \emph default
11914  where the trimwidth is also optional.
11915  Using for example the parameter 
11916 \emph on
11917 l{2pt}
11918 \emph default
11919  means that the line is trimmed from its left end by 2\InsetSpace \thinspace{}
11920 pt.
11921  If you don't specify the trimwidth the lines are trimmed by the default
11922  of 0.5\InsetSpace \thinspace{}
11923 em.
11924 \end_layout
11925
11926 \begin_layout Standard
11927 \begin_inset VSpace bigskip
11928 \end_inset
11929
11930 Table\InsetSpace ~
11931
11932 \begin_inset LatexCommand ref
11933 reference "tab:Example-booktabs-table"
11934
11935 \end_inset
11936
11937  was created using the commands
11938 \end_layout
11939
11940 \begin_layout Standard
11941
11942 \series bold
11943
11944 \backslash
11945 cmidrule(r){2-2}
11946 \backslash
11947 cmidrule(l){3-4}
11948 \end_layout
11949
11950 \begin_layout Standard
11951 at the beginning of the in the second row and
11952 \end_layout
11953
11954 \begin_layout Standard
11955
11956 \series bold
11957
11958 \backslash
11959 cmidrule(l{10pt}){1-1}
11960 \end_layout
11961
11962 \begin_layout Standard
11963 in the sixth row.
11964 \end_layout
11965
11966 \begin_layout Standard
11967
11968 \end_layout
11969
11970 \begin_layout Standard
11971 \begin_inset VSpace bigskip
11972 \end_inset
11973
11974
11975 \end_layout
11976
11977 \begin_layout Standard
11978 You might want to have overlapping 
11979 \series bold
11980
11981 \backslash
11982 cmidrule
11983 \series default
11984 s like in Table\InsetSpace ~
11985
11986 \begin_inset LatexCommand ref
11987 reference "tab:Special-booktabs-table"
11988
11989 \end_inset
11990
11991 .
11992  This can be achieved with the ERT command
11993 \end_layout
11994
11995 \begin_layout Standard
11996
11997 \series bold
11998
11999 \backslash
12000 morecmidrules
12001 \end_layout
12002
12003 \begin_layout Standard
12004 The command that was used for the second row of Table\InsetSpace ~
12005
12006 \begin_inset LatexCommand ref
12007 reference "tab:Special-booktabs-table"
12008
12009 \end_inset
12010
12011  is
12012 \end_layout
12013
12014 \begin_layout Standard
12015
12016 \series bold
12017
12018 \backslash
12019 cmidrule(r){2-2}
12020 \backslash
12021 cmidrule(l){3-4}
12022 \backslash
12023 morecmidrules
12024 \backslash
12025 cmidrule{2-4}
12026 \end_layout
12027
12028 \begin_layout Standard
12029 The command for the sixth row is
12030 \end_layout
12031
12032 \begin_layout Standard
12033
12034 \series bold
12035
12036 \backslash
12037 midrule
12038 \backslash
12039 morecmidrules
12040 \backslash
12041 cmidrule{3-4}
12042 \end_layout
12043
12044 \begin_layout Standard
12045 \begin_inset VSpace bigskip
12046 \end_inset
12047
12048
12049 \end_layout
12050
12051 \begin_layout Standard
12052 If you are anyway not satisfied with the border line spacing, you can use
12053  the following command to produce lines that span over all table columns
12054 \series bold
12055 :
12056 \end_layout
12057
12058 \begin_layout Standard
12059
12060 \series bold
12061
12062 \backslash
12063 specialrule{width}{space above}{space below}
12064 \end_layout
12065
12066 \begin_layout Standard
12067 For more informations about these specialties, we refer to the manual of
12068  the LaTeX-package 
12069 \series bold
12070 booktabs
12071 \series default
12072  
12073 \begin_inset LatexCommand cite
12074 key "booktabs"
12075
12076 \end_inset
12077
12078 .
12079 \begin_inset LatexCommand index
12080 name "LaTeX-packages ! booktabs"
12081
12082 \end_inset
12083
12084
12085 \end_layout
12086
12087 \begin_layout Standard
12088 \begin_inset Float table
12089 placement h
12090 wide false
12091 sideways false
12092 status open
12093
12094 \begin_layout Standard
12095 \begin_inset Caption
12096
12097 \begin_layout Standard
12098 \begin_inset LatexCommand label
12099 name "tab:Special-booktabs-table"
12100
12101 \end_inset
12102
12103 Special booktabs-table
12104 \end_layout
12105
12106 \end_inset
12107
12108
12109 \end_layout
12110
12111 \begin_layout Standard
12112 \align center
12113 \begin_inset Tabular
12114 <lyxtabular version="3" rows="8" columns="4">
12115 <features booktabs="true">
12116 <column alignment="center" valignment="top" width="0">
12117 <column alignment="center" valignment="top" width="0">
12118 <column alignment="center" valignment="top" width="0">
12119 <column alignment="center" valignment="top" width="0">
12120 <row topline="true">
12121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12122 \begin_inset Text
12123
12124 \begin_layout Standard
12125 System
12126 \end_layout
12127
12128 \end_inset
12129 </cell>
12130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12131 \begin_inset Text
12132
12133 \begin_layout Standard
12134 Medipix\InsetSpace \thinspace{}
12135 1
12136 \end_layout
12137
12138 \end_inset
12139 </cell>
12140 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12141 \begin_inset Text
12142
12143 \begin_layout Standard
12144 Medipix\InsetSpace \thinspace{}
12145 2
12146 \end_layout
12147
12148 \end_inset
12149 </cell>
12150 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12151 \begin_inset Text
12152
12153 \begin_layout Standard
12154
12155 \end_layout
12156
12157 \end_inset
12158 </cell>
12159 </row>
12160 <row>
12161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12162 \begin_inset Text
12163
12164 \begin_layout Standard
12165 \begin_inset ERT
12166 status collapsed
12167
12168 \begin_layout Standard
12169
12170
12171 \backslash
12172 cmidrule(r){2-2}
12173 \end_layout
12174
12175 \end_inset
12176
12177
12178 \begin_inset ERT
12179 status collapsed
12180
12181 \begin_layout Standard
12182
12183
12184 \backslash
12185 cmidrule(l){3-4}
12186 \end_layout
12187
12188 \end_inset
12189
12190
12191 \begin_inset ERT
12192 status collapsed
12193
12194 \begin_layout Standard
12195
12196
12197 \backslash
12198 morecmidrules 
12199 \end_layout
12200
12201 \end_inset
12202
12203
12204 \begin_inset ERT
12205 status collapsed
12206
12207 \begin_layout Standard
12208
12209
12210 \backslash
12211 cmidrule{2-4}
12212 \end_layout
12213
12214 \end_inset
12215
12216 Detector thickness [µm]
12217 \end_layout
12218
12219 \end_inset
12220 </cell>
12221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12222 \begin_inset Text
12223
12224 \begin_layout Standard
12225 300
12226 \end_layout
12227
12228 \end_inset
12229 </cell>
12230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12231 \begin_inset Text
12232
12233 \begin_layout Standard
12234 300
12235 \end_layout
12236
12237 \end_inset
12238 </cell>
12239 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12240 \begin_inset Text
12241
12242 \begin_layout Standard
12243 700
12244 \end_layout
12245
12246 \end_inset
12247 </cell>
12248 </row>
12249 <row topline="true">
12250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12251 \begin_inset Text
12252
12253 \begin_layout Standard
12254 Edge angle [°]
12255 \end_layout
12256
12257 \end_inset
12258 </cell>
12259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12260 \begin_inset Text
12261
12262 \begin_layout Standard
12263 3.55
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 2.71
12273 \end_layout
12274
12275 \end_inset
12276 </cell>
12277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12278 \begin_inset Text
12279
12280 \begin_layout Standard
12281 7.99
12282 \end_layout
12283
12284 \end_inset
12285 </cell>
12286 </row>
12287 <row topspace="default">
12288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12289 \begin_inset Text
12290
12291 \begin_layout Standard
12292 Spatial resolution [µm]
12293 \end_layout
12294
12295 \end_inset
12296 </cell>
12297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12298 \begin_inset Text
12299
12300 \begin_layout Standard
12301 4.26
12302 \end_layout
12303
12304 \end_inset
12305 </cell>
12306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12307 \begin_inset Text
12308
12309 \begin_layout Standard
12310 10.17
12311 \end_layout
12312
12313 \end_inset
12314 </cell>
12315 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12316 \begin_inset Text
12317
12318 \begin_layout Standard
12319 10.56
12320 \end_layout
12321
12322 \end_inset
12323 </cell>
12324 </row>
12325 <row topspace="default">
12326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12327 \begin_inset Text
12328
12329 \begin_layout Standard
12330 MTF at 
12331 \begin_inset Formula $f_{\mathrm{max}}$
12332 \end_inset
12333
12334
12335 \end_layout
12336
12337 \end_inset
12338 </cell>
12339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12340 \begin_inset Text
12341
12342 \begin_layout Standard
12343 0.53
12344 \end_layout
12345
12346 \end_inset
12347 </cell>
12348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12349 \begin_inset Text
12350
12351 \begin_layout Standard
12352 0.37
12353 \end_layout
12354
12355 \end_inset
12356 </cell>
12357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12358 \begin_inset Text
12359
12360 \begin_layout Standard
12361 0.39
12362 \end_layout
12363
12364 \end_inset
12365 </cell>
12366 </row>
12367 <row topline="true">
12368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12369 \begin_inset Text
12370
12371 \begin_layout Standard
12372 \begin_inset ERT
12373 status collapsed
12374
12375 \begin_layout Standard
12376
12377
12378 \backslash
12379 morecmidrules 
12380 \end_layout
12381
12382 \end_inset
12383
12384
12385 \begin_inset ERT
12386 status collapsed
12387
12388 \begin_layout Standard
12389
12390
12391 \backslash
12392 cmidrule{3-4}
12393 \end_layout
12394
12395 \end_inset
12396
12397 LSF-spatial resolution
12398 \end_layout
12399
12400 \end_inset
12401 </cell>
12402 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12403 \begin_inset Text
12404
12405 \begin_layout Standard
12406
12407 \end_layout
12408
12409 \end_inset
12410 </cell>
12411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12412 \begin_inset Text
12413
12414 \begin_layout Standard
12415
12416 \end_layout
12417
12418 \end_inset
12419 </cell>
12420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12421 \begin_inset Text
12422
12423 \begin_layout Standard
12424
12425 \end_layout
12426
12427 \end_inset
12428 </cell>
12429 </row>
12430 <row>
12431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12432 \begin_inset Text
12433
12434 \begin_layout Standard
12435 in µm
12436 \end_layout
12437
12438 \end_inset
12439 </cell>
12440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12441 \begin_inset Text
12442
12443 \begin_layout Standard
12444 129.7
12445 \end_layout
12446
12447 \end_inset
12448 </cell>
12449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12450 \begin_inset Text
12451
12452 \begin_layout Standard
12453 52.75
12454 \end_layout
12455
12456 \end_inset
12457 </cell>
12458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12459 \begin_inset Text
12460
12461 \begin_layout Standard
12462 50.78
12463 \end_layout
12464
12465 \end_inset
12466 </cell>
12467 </row>
12468 <row bottomline="true">
12469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12470 \begin_inset Text
12471
12472 \begin_layout Standard
12473 in % of pixel size
12474 \end_layout
12475
12476 \end_inset
12477 </cell>
12478 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12479 \begin_inset Text
12480
12481 \begin_layout Standard
12482 76.3
12483 \end_layout
12484
12485 \end_inset
12486 </cell>
12487 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12488 \begin_inset Text
12489
12490 \begin_layout Standard
12491 95.9
12492 \end_layout
12493
12494 \end_inset
12495 </cell>
12496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12497 \begin_inset Text
12498
12499 \begin_layout Standard
12500 92.3
12501 \end_layout
12502
12503 \end_inset
12504 </cell>
12505 </row>
12506 </lyxtabular>
12507
12508 \end_inset
12509
12510
12511 \end_layout
12512
12513 \end_inset
12514
12515
12516 \end_layout
12517
12518 \begin_layout Section
12519 Vertical Table Alignment
12520 \begin_inset LatexCommand index
12521 name "Table ! Alignment"
12522
12523 \end_inset
12524
12525
12526 \end_layout
12527
12528 \begin_layout Standard
12529 To align tables vertically in a text line the table must be inside a box.
12530  The box can then be vertically aligned as described in section\InsetSpace ~
12531
12532 \begin_inset LatexCommand ref
12533 reference "sec:Box-Dialog"
12534
12535 \end_inset
12536
12537 .
12538 \end_layout
12539
12540 \begin_layout Standard
12541 In the following example the tables are inside a minipage
12542 \begin_inset Foot
12543 status collapsed
12544
12545 \begin_layout Standard
12546 Minipages are described in section\InsetSpace ~
12547
12548 \begin_inset LatexCommand ref
12549 reference "sec:Minipages"
12550
12551 \end_inset
12552
12553 .
12554 \end_layout
12555
12556 \end_inset
12557
12558  box that has a width of 15\InsetSpace \thinspace{}
12559 col%:
12560 \end_layout
12561
12562 \begin_layout Itemize
12563 test 
12564 \begin_inset Box Frameless
12565 position "t"
12566 hor_pos "c"
12567 has_inner_box 1
12568 inner_pos "c"
12569 use_parbox 0
12570 width "15col%"
12571 special "none"
12572 height "1in"
12573 height_special "totalheight"
12574 status collapsed
12575
12576 \begin_layout Standard
12577 \begin_inset Tabular
12578 <lyxtabular version="3" rows="3" columns="3">
12579 <features>
12580 <column alignment="center" valignment="top" leftline="true" width="0">
12581 <column alignment="center" valignment="top" leftline="true" width="0">
12582 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12583 <row topline="true">
12584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12585 \begin_inset Text
12586
12587 \begin_layout Standard
12588 a
12589 \end_layout
12590
12591 \end_inset
12592 </cell>
12593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12594 \begin_inset Text
12595
12596 \begin_layout Standard
12597 d
12598 \end_layout
12599
12600 \end_inset
12601 </cell>
12602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12603 \begin_inset Text
12604
12605 \begin_layout Standard
12606 g
12607 \end_layout
12608
12609 \end_inset
12610 </cell>
12611 </row>
12612 <row topline="true">
12613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12614 \begin_inset Text
12615
12616 \begin_layout Standard
12617 b
12618 \end_layout
12619
12620 \end_inset
12621 </cell>
12622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12623 \begin_inset Text
12624
12625 \begin_layout Standard
12626 e
12627 \end_layout
12628
12629 \end_inset
12630 </cell>
12631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12632 \begin_inset Text
12633
12634 \begin_layout Standard
12635 h
12636 \end_layout
12637
12638 \end_inset
12639 </cell>
12640 </row>
12641 <row topline="true" bottomline="true">
12642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12643 \begin_inset Text
12644
12645 \begin_layout Standard
12646 c
12647 \end_layout
12648
12649 \end_inset
12650 </cell>
12651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12652 \begin_inset Text
12653
12654 \begin_layout Standard
12655 f
12656 \end_layout
12657
12658 \end_inset
12659 </cell>
12660 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12661 \begin_inset Text
12662
12663 \begin_layout Standard
12664 i
12665 \end_layout
12666
12667 \end_inset
12668 </cell>
12669 </row>
12670 </lyxtabular>
12671
12672 \end_inset
12673
12674
12675 \end_layout
12676
12677 \end_inset
12678
12679  test 
12680 \begin_inset ERT
12681 status collapsed
12682
12683 \begin_layout Standard
12684
12685
12686 \backslash
12687 raisebox{0.85
12688 \backslash
12689 baselineskip}{
12690 \end_layout
12691
12692 \end_inset
12693
12694
12695 \begin_inset Box Frameless
12696 position "t"
12697 hor_pos "c"
12698 has_inner_box 1
12699 inner_pos "c"
12700 use_parbox 0
12701 width "15col%"
12702 special "none"
12703 height "1in"
12704 height_special "totalheight"
12705 status collapsed
12706
12707 \begin_layout Standard
12708 \begin_inset Tabular
12709 <lyxtabular version="3" rows="3" columns="3">
12710 <features>
12711 <column alignment="center" valignment="top" leftline="true" width="0">
12712 <column alignment="center" valignment="top" leftline="true" width="0">
12713 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12714 <row topline="true">
12715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12716 \begin_inset Text
12717
12718 \begin_layout Standard
12719 a
12720 \end_layout
12721
12722 \end_inset
12723 </cell>
12724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12725 \begin_inset Text
12726
12727 \begin_layout Standard
12728 d
12729 \end_layout
12730
12731 \end_inset
12732 </cell>
12733 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12734 \begin_inset Text
12735
12736 \begin_layout Standard
12737 g
12738 \end_layout
12739
12740 \end_inset
12741 </cell>
12742 </row>
12743 <row topline="true">
12744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12745 \begin_inset Text
12746
12747 \begin_layout Standard
12748 b
12749 \end_layout
12750
12751 \end_inset
12752 </cell>
12753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12754 \begin_inset Text
12755
12756 \begin_layout Standard
12757 e
12758 \end_layout
12759
12760 \end_inset
12761 </cell>
12762 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12763 \begin_inset Text
12764
12765 \begin_layout Standard
12766 h
12767 \end_layout
12768
12769 \end_inset
12770 </cell>
12771 </row>
12772 <row topline="true" bottomline="true">
12773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12774 \begin_inset Text
12775
12776 \begin_layout Standard
12777 c
12778 \end_layout
12779
12780 \end_inset
12781 </cell>
12782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12783 \begin_inset Text
12784
12785 \begin_layout Standard
12786 f
12787 \end_layout
12788
12789 \end_inset
12790 </cell>
12791 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12792 \begin_inset Text
12793
12794 \begin_layout Standard
12795 i
12796 \end_layout
12797
12798 \end_inset
12799 </cell>
12800 </row>
12801 </lyxtabular>
12802
12803 \end_inset
12804
12805
12806 \end_layout
12807
12808 \end_inset
12809
12810
12811 \begin_inset ERT
12812 status collapsed
12813
12814 \begin_layout Standard
12815
12816 }
12817 \end_layout
12818
12819 \end_inset
12820
12821
12822 \end_layout
12823
12824 \begin_layout Itemize
12825 test 
12826 \begin_inset Box Frameless
12827 position "c"
12828 hor_pos "c"
12829 has_inner_box 1
12830 inner_pos "c"
12831 use_parbox 0
12832 width "15col%"
12833 special "none"
12834 height "1in"
12835 height_special "totalheight"
12836 status collapsed
12837
12838 \begin_layout Standard
12839 \begin_inset Tabular
12840 <lyxtabular version="3" rows="3" columns="3">
12841 <features>
12842 <column alignment="center" valignment="top" leftline="true" width="0">
12843 <column alignment="center" valignment="top" leftline="true" width="0">
12844 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12845 <row topline="true">
12846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12847 \begin_inset Text
12848
12849 \begin_layout Standard
12850 a
12851 \end_layout
12852
12853 \end_inset
12854 </cell>
12855 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12856 \begin_inset Text
12857
12858 \begin_layout Standard
12859 d
12860 \end_layout
12861
12862 \end_inset
12863 </cell>
12864 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12865 \begin_inset Text
12866
12867 \begin_layout Standard
12868 g
12869 \end_layout
12870
12871 \end_inset
12872 </cell>
12873 </row>
12874 <row topline="true">
12875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12876 \begin_inset Text
12877
12878 \begin_layout Standard
12879 b
12880 \end_layout
12881
12882 \end_inset
12883 </cell>
12884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12885 \begin_inset Text
12886
12887 \begin_layout Standard
12888 e
12889 \end_layout
12890
12891 \end_inset
12892 </cell>
12893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12894 \begin_inset Text
12895
12896 \begin_layout Standard
12897 h
12898 \end_layout
12899
12900 \end_inset
12901 </cell>
12902 </row>
12903 <row topline="true" bottomline="true">
12904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12905 \begin_inset Text
12906
12907 \begin_layout Standard
12908 c
12909 \end_layout
12910
12911 \end_inset
12912 </cell>
12913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12914 \begin_inset Text
12915
12916 \begin_layout Standard
12917 f
12918 \end_layout
12919
12920 \end_inset
12921 </cell>
12922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12923 \begin_inset Text
12924
12925 \begin_layout Standard
12926 i
12927 \end_layout
12928
12929 \end_inset
12930 </cell>
12931 </row>
12932 </lyxtabular>
12933
12934 \end_inset
12935
12936
12937 \end_layout
12938
12939 \end_inset
12940
12941
12942 \end_layout
12943
12944 \begin_layout Itemize
12945 test 
12946 \begin_inset Box Frameless
12947 position "b"
12948 hor_pos "c"
12949 has_inner_box 1
12950 inner_pos "c"
12951 use_parbox 0
12952 width "15col%"
12953 special "none"
12954 height "1in"
12955 height_special "totalheight"
12956 status collapsed
12957
12958 \begin_layout Standard
12959 \begin_inset Tabular
12960 <lyxtabular version="3" rows="3" columns="3">
12961 <features>
12962 <column alignment="center" valignment="top" leftline="true" width="0">
12963 <column alignment="center" valignment="top" leftline="true" width="0">
12964 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12965 <row topline="true">
12966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12967 \begin_inset Text
12968
12969 \begin_layout Standard
12970 a
12971 \end_layout
12972
12973 \end_inset
12974 </cell>
12975 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12976 \begin_inset Text
12977
12978 \begin_layout Standard
12979 d
12980 \end_layout
12981
12982 \end_inset
12983 </cell>
12984 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12985 \begin_inset Text
12986
12987 \begin_layout Standard
12988 g
12989 \end_layout
12990
12991 \end_inset
12992 </cell>
12993 </row>
12994 <row topline="true">
12995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12996 \begin_inset Text
12997
12998 \begin_layout Standard
12999 b
13000 \end_layout
13001
13002 \end_inset
13003 </cell>
13004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13005 \begin_inset Text
13006
13007 \begin_layout Standard
13008 e
13009 \end_layout
13010
13011 \end_inset
13012 </cell>
13013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13014 \begin_inset Text
13015
13016 \begin_layout Standard
13017 h
13018 \end_layout
13019
13020 \end_inset
13021 </cell>
13022 </row>
13023 <row topline="true" bottomline="true">
13024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13025 \begin_inset Text
13026
13027 \begin_layout Standard
13028 c
13029 \end_layout
13030
13031 \end_inset
13032 </cell>
13033 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13034 \begin_inset Text
13035
13036 \begin_layout Standard
13037 f
13038 \end_layout
13039
13040 \end_inset
13041 </cell>
13042 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13043 \begin_inset Text
13044
13045 \begin_layout Standard
13046 i
13047 \end_layout
13048
13049 \end_inset
13050 </cell>
13051 </row>
13052 </lyxtabular>
13053
13054 \end_inset
13055
13056
13057 \end_layout
13058
13059 \end_inset
13060
13061  test 
13062 \begin_inset ERT
13063 status collapsed
13064
13065 \begin_layout Standard
13066
13067
13068 \backslash
13069 raisebox{-0.32
13070 \backslash
13071 baselineskip}{
13072 \end_layout
13073
13074 \end_inset
13075
13076
13077 \begin_inset Box Frameless
13078 position "b"
13079 hor_pos "c"
13080 has_inner_box 1
13081 inner_pos "c"
13082 use_parbox 0
13083 width "15col%"
13084 special "none"
13085 height "1in"
13086 height_special "totalheight"
13087 status collapsed
13088
13089 \begin_layout Standard
13090 \begin_inset Tabular
13091 <lyxtabular version="3" rows="3" columns="3">
13092 <features>
13093 <column alignment="center" valignment="top" leftline="true" width="0">
13094 <column alignment="center" valignment="top" leftline="true" width="0">
13095 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13096 <row topline="true">
13097 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13098 \begin_inset Text
13099
13100 \begin_layout Standard
13101 a
13102 \end_layout
13103
13104 \end_inset
13105 </cell>
13106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13107 \begin_inset Text
13108
13109 \begin_layout Standard
13110 d
13111 \end_layout
13112
13113 \end_inset
13114 </cell>
13115 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13116 \begin_inset Text
13117
13118 \begin_layout Standard
13119 g
13120 \end_layout
13121
13122 \end_inset
13123 </cell>
13124 </row>
13125 <row topline="true">
13126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13127 \begin_inset Text
13128
13129 \begin_layout Standard
13130 b
13131 \end_layout
13132
13133 \end_inset
13134 </cell>
13135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13136 \begin_inset Text
13137
13138 \begin_layout Standard
13139 e
13140 \end_layout
13141
13142 \end_inset
13143 </cell>
13144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13145 \begin_inset Text
13146
13147 \begin_layout Standard
13148 h
13149 \end_layout
13150
13151 \end_inset
13152 </cell>
13153 </row>
13154 <row topline="true" bottomline="true">
13155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13156 \begin_inset Text
13157
13158 \begin_layout Standard
13159 c
13160 \end_layout
13161
13162 \end_inset
13163 </cell>
13164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13165 \begin_inset Text
13166
13167 \begin_layout Standard
13168 f
13169 \end_layout
13170
13171 \end_inset
13172 </cell>
13173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13174 \begin_inset Text
13175
13176 \begin_layout Standard
13177 i
13178 \end_layout
13179
13180 \end_inset
13181 </cell>
13182 </row>
13183 </lyxtabular>
13184
13185 \end_inset
13186
13187
13188 \end_layout
13189
13190 \end_inset
13191
13192
13193 \begin_inset ERT
13194 status collapsed
13195
13196 \begin_layout Standard
13197
13198 }
13199 \end_layout
13200
13201 \end_inset
13202
13203
13204 \end_layout
13205
13206 \begin_layout Standard
13207 As you can see, the content of the first and last table row is not correctly
13208  aligned with the text line where the table is in.
13209  To get this alignment, the minipage box must be set into a raisebox
13210 \begin_inset Foot
13211 status collapsed
13212
13213 \begin_layout Standard
13214 Raiseboxes are described in section\InsetSpace ~
13215
13216 \begin_inset LatexCommand ref
13217 reference "sub:Vertical-Alignment"
13218
13219 \end_inset
13220
13221 .
13222 \end_layout
13223
13224 \end_inset
13225
13226 .
13227  In the example above the second table in the first item is aligned using
13228  the ERT-command
13229 \end_layout
13230
13231 \begin_layout Standard
13232
13233 \series bold
13234
13235 \backslash
13236 raisebox{0.85
13237 \backslash
13238 baselineskip}{
13239 \end_layout
13240
13241 \begin_layout Standard
13242 before the box.
13243  Behind the box the closing brace 
13244 \series bold
13245 }
13246 \series default
13247  is inserted as ERT.
13248  For the second table in the last item the command
13249 \end_layout
13250
13251 \begin_layout Standard
13252
13253 \series bold
13254
13255 \backslash
13256 raisebox{-0.32
13257 \backslash
13258 baselineskip}{
13259 \end_layout
13260
13261 \begin_layout Standard
13262 is used.
13263 \end_layout
13264
13265 \begin_layout Standard
13266 \begin_inset Note Greyedout
13267 status open
13268
13269 \begin_layout Standard
13270
13271 \series bold
13272 Note:
13273 \series default
13274  The alignment of the table row content to the surrounding text line is
13275  not exact.
13276  The needed factor of the 
13277 \series bold
13278
13279 \backslash
13280 raisebox
13281 \series default
13282  command for this alignment depends on the document font, the font size,
13283  and the table line thickness.
13284 \end_layout
13285
13286 \end_inset
13287
13288
13289 \end_layout
13290
13291 \begin_layout Section
13292 Colored Tables
13293 \begin_inset LatexCommand label
13294 name "sec:Colored-Tables"
13295
13296 \end_inset
13297
13298
13299 \begin_inset LatexCommand index
13300 name "Table ! Color"
13301
13302 \end_inset
13303
13304
13305 \end_layout
13306
13307 \begin_layout Subsection
13308 Colored Cells
13309 \begin_inset LatexCommand index
13310 name "Table Color ! for Cells"
13311
13312 \end_inset
13313
13314
13315 \begin_inset LatexCommand index
13316 name "Color ! for Table Cells"
13317
13318 \end_inset
13319
13320
13321 \end_layout
13322
13323 \begin_layout Standard
13324 \begin_inset Float table
13325 placement h
13326 wide false
13327 sideways false
13328 status open
13329
13330 \begin_layout Standard
13331 \begin_inset Caption
13332
13333 \begin_layout Standard
13334 \begin_inset LatexCommand label
13335 name "tab:Table-colored-without"
13336
13337 \end_inset
13338
13339 Table colored without using the package 
13340 \series bold
13341 colortbl
13342 \series default
13343
13344 \begin_inset OptArg
13345 status collapsed
13346
13347 \begin_layout Standard
13348 Table without colortbl
13349 \end_layout
13350
13351 \end_inset
13352
13353
13354 \end_layout
13355
13356 \end_inset
13357
13358
13359 \end_layout
13360
13361 \begin_layout Standard
13362 \align center
13363 \begin_inset Tabular
13364 <lyxtabular version="3" rows="3" columns="3">
13365 <features>
13366 <column alignment="center" valignment="top" leftline="true" width="0">
13367 <column alignment="center" valignment="top" leftline="true" width="0">
13368 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13369 <row topline="true">
13370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13371 \begin_inset Text
13372
13373 \begin_layout Standard
13374
13375 \color green
13376 a
13377 \end_layout
13378
13379 \end_inset
13380 </cell>
13381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13382 \begin_inset Text
13383
13384 \begin_layout Standard
13385
13386 \color red
13387 b
13388 \end_layout
13389
13390 \end_inset
13391 </cell>
13392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13393 \begin_inset Text
13394
13395 \begin_layout Standard
13396
13397 \color red
13398 c
13399 \end_layout
13400
13401 \end_inset
13402 </cell>
13403 </row>
13404 <row topline="true">
13405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13406 \begin_inset Text
13407
13408 \begin_layout Standard
13409
13410 \color green
13411 d
13412 \end_layout
13413
13414 \end_inset
13415 </cell>
13416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13417 \begin_inset Text
13418
13419 \begin_layout Standard
13420
13421 \color blue
13422 e
13423 \end_layout
13424
13425 \end_inset
13426 </cell>
13427 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13428 \begin_inset Text
13429
13430 \begin_layout Standard
13431
13432 \color blue
13433 f
13434 \end_layout
13435
13436 \end_inset
13437 </cell>
13438 </row>
13439 <row topline="true" bottomline="true">
13440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13441 \begin_inset Text
13442
13443 \begin_layout Standard
13444
13445 \color green
13446 g
13447 \end_layout
13448
13449 \end_inset
13450 </cell>
13451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13452 \begin_inset Text
13453
13454 \begin_layout Standard
13455
13456 \color blue
13457 h
13458 \end_layout
13459
13460 \end_inset
13461 </cell>
13462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13463 \begin_inset Text
13464
13465 \begin_layout Standard
13466
13467 \color blue
13468 i
13469 \end_layout
13470
13471 \end_inset
13472 </cell>
13473 </row>
13474 </lyxtabular>
13475
13476 \end_inset
13477
13478
13479 \end_layout
13480
13481 \end_inset
13482
13483
13484 \end_layout
13485
13486 \begin_layout Standard
13487 If you only need colored text, mark the cells and choose a color in the
13488  menu 
13489 \family sans
13490 Edit\SpecialChar \menuseparator
13491 Text\InsetSpace ~
13492 Style
13493 \family default
13494 .
13495  This was used to create Table\InsetSpace ~
13496
13497 \begin_inset LatexCommand ref
13498 reference "tab:Table-colored-without"
13499
13500 \end_inset
13501
13502 .
13503  In any other case you have to use the LaTeX-package 
13504 \series bold
13505 colortbl
13506 \series default
13507 .
13508 \begin_inset LatexCommand index
13509 name "LaTeX-packages ! colortbl"
13510
13511 \end_inset
13512
13513
13514 \end_layout
13515
13516 \begin_layout Standard
13517 To create colored tables, 
13518 \series bold
13519 colortbl
13520 \series default
13521  must be loaded in the preamble with the line
13522 \end_layout
13523
13524 \begin_layout Standard
13525
13526 \series bold
13527
13528 \backslash
13529 usepackage{colortbl}
13530 \end_layout
13531
13532 \begin_layout Standard
13533 The color of a column is adjusted with the command
13534 \end_layout
13535
13536 \begin_layout Standard
13537
13538 \series bold
13539
13540 \backslash
13541 columncolor{name of color}
13542 \end_layout
13543
13544 \begin_layout Standard
13545 inside the command 
13546 \series bold
13547 >{ }
13548 \series default
13549 .
13550  More about the command 
13551 \series bold
13552 >{}
13553 \series default
13554  is described in section\InsetSpace ~
13555
13556 \begin_inset LatexCommand ref
13557 reference "sub:Multicolumn-Calculations"
13558
13559 \end_inset
13560
13561 .
13562 \end_layout
13563
13564 \begin_layout Standard
13565 The following color names are predefined:
13566 \end_layout
13567
13568 \begin_layout Standard
13569
13570 \family sans
13571 red
13572 \family default
13573
13574 \family sans
13575 green
13576 \family default
13577
13578 \family sans
13579 yellow
13580 \family default
13581
13582 \family sans
13583 blue
13584 \family default
13585
13586 \family sans
13587 cyan
13588 \family default
13589
13590 \family sans
13591 magenta
13592 \family default
13593
13594 \family sans
13595 black
13596 \family default
13597  and 
13598 \family sans
13599 white
13600 \end_layout
13601
13602 \begin_layout Standard
13603 \begin_inset VSpace medskip
13604 \end_inset
13605
13606
13607 \end_layout
13608
13609 \begin_layout Standard
13610 You can also define your own color with the command
13611 \end_layout
13612
13613 \begin_layout Standard
13614
13615 \series bold
13616
13617 \backslash
13618 def\SpecialChar \textcompwordmark{}
13619 inecolor{color name}{color model}{color values}
13620 \end_layout
13621
13622 \begin_layout Standard
13623 The color model can be
13624 \end_layout
13625
13626 \begin_layout Labeling
13627 \labelwidthstring 00.00.0000
13628 cmyk: cyan, magenta, yellow, black
13629 \end_layout
13630
13631 \begin_layout Labeling
13632 \labelwidthstring 00.00.0000
13633 rgb: red, green blue
13634 \end_layout
13635
13636 \begin_layout Labeling
13637 \labelwidthstring 00.00.0000
13638 gray gray
13639 \end_layout
13640
13641 \begin_layout Standard
13642 and the color values are comma separated numbers between 0 and 1 describing
13643  the factor for the corresponding color of the color model.
13644 \end_layout
13645
13646 \begin_layout Standard
13647 You can e.\InsetSpace \thinspace{}
13648 g.\InsetSpace ~
13649 define the color "
13650 \emph on
13651 darkgreen
13652 \emph default
13653 " in the preamble with
13654 \end_layout
13655
13656 \begin_layout Standard
13657
13658 \series bold
13659
13660 \backslash
13661 def\SpecialChar \textcompwordmark{}
13662 inecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
13663 \end_layout
13664
13665 \begin_layout Standard
13666 and the color "
13667 \emph on
13668 lightgray
13669 \emph default
13670 " with
13671 \end_layout
13672
13673 \begin_layout Standard
13674
13675 \series bold
13676
13677 \backslash
13678 def\SpecialChar \textcompwordmark{}
13679 inecolor{lightgray}{gray}{0.8}
13680 \end_layout
13681
13682 \begin_layout Standard
13683 \begin_inset VSpace medskip
13684 \end_inset
13685
13686
13687 \end_layout
13688
13689 \begin_layout Standard
13690 Lines are colored with the command
13691 \end_layout
13692
13693 \begin_layout Standard
13694
13695 \series bold
13696
13697 \backslash
13698 rowcolor{name of color}
13699 \end_layout
13700
13701 \begin_layout Standard
13702 and cells are colored with the command
13703 \end_layout
13704
13705 \begin_layout Standard
13706
13707 \series bold
13708
13709 \backslash
13710 cellcolor{name of color}
13711 \end_layout
13712
13713 \begin_layout Standard
13714 Both commands are inserted at the beginning of a cell as ERT.
13715 \end_layout
13716
13717 \begin_layout Standard
13718 To color characters in the table, mark the cells and use the LyX menu 
13719 \family sans
13720 Edit\SpecialChar \menuseparator
13721 Text\InsetSpace ~
13722 Style
13723 \family default
13724 .
13725  If a cell contains ERT mark only the characters, otherwise the colored
13726  ERT will cause LaTeX-errors.
13727 \end_layout
13728
13729 \begin_layout Standard
13730 \begin_inset VSpace bigskip
13731 \end_inset
13732
13733
13734 \end_layout
13735
13736 \begin_layout Standard
13737 To create Table\InsetSpace ~
13738
13739 \begin_inset LatexCommand ref
13740 reference "tab:Table-colored-using"
13741
13742 \end_inset
13743
13744  do the following: The color of the first column should be 
13745 \emph on
13746 darkgreen
13747 \emph default
13748 .
13749  So insert
13750 \end_layout
13751
13752 \begin_layout Standard
13753
13754 \series bold
13755 >{
13756 \backslash
13757 columncolor{darkgreen}
13758 \backslash
13759 centering}c
13760 \end_layout
13761
13762 \begin_layout Standard
13763 as LaTeX-argument for this column.
13764  The first row should be blue, therefore the ERT command
13765 \end_layout
13766
13767 \begin_layout Standard
13768
13769 \series bold
13770
13771 \backslash
13772 rowcolow{cyan}
13773 \end_layout
13774
13775 \begin_layout Standard
13776 is inserted to the first cell of this row.
13777  Note that this overwrites the column color for the first cell.
13778  The last cell of the last row is colored magenta by inserting the ERT command
13779 \end_layout
13780
13781 \begin_layout Standard
13782
13783 \series bold
13784
13785 \backslash
13786 cellcolor{magenta}
13787 \end_layout
13788
13789 \begin_layout Standard
13790 The characters could now be colored using the menu 
13791 \family sans
13792 Edit\SpecialChar \menuseparator
13793 Text\InsetSpace ~
13794 Style
13795 \family default
13796 .
13797 \end_layout
13798
13799 \begin_layout Standard
13800 \begin_inset Float table
13801 placement h
13802 wide false
13803 sideways false
13804 status open
13805
13806 \begin_layout Standard
13807 \begin_inset Caption
13808
13809 \begin_layout Standard
13810 \begin_inset LatexCommand label
13811 name "tab:Table-colored-using"
13812
13813 \end_inset
13814
13815 Table colored using the package 
13816 \series bold
13817 colortbl
13818 \series default
13819
13820 \begin_inset OptArg
13821 status collapsed
13822
13823 \begin_layout Standard
13824 Table with colortbl
13825 \end_layout
13826
13827 \end_inset
13828
13829
13830 \end_layout
13831
13832 \end_inset
13833
13834
13835 \end_layout
13836
13837 \begin_layout Standard
13838 \align center
13839 \begin_inset Tabular
13840 <lyxtabular version="3" rows="3" columns="3">
13841 <features>
13842 <column alignment="center" valignment="top" width="0" special=">{\columncolor{darkgreen}\centering}c">
13843 <column alignment="center" valignment="top" width="0">
13844 <column alignment="center" valignment="top" width="0">
13845 <row>
13846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13847 \begin_inset Text
13848
13849 \begin_layout Standard
13850 \begin_inset ERT
13851 status collapsed
13852
13853 \begin_layout Standard
13854
13855
13856 \backslash
13857 rowcolor{cyan}
13858 \end_layout
13859
13860 \end_inset
13861
13862
13863 \color magenta
13864 a
13865 \end_layout
13866
13867 \end_inset
13868 </cell>
13869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13870 \begin_inset Text
13871
13872 \begin_layout Standard
13873
13874 \color red
13875 b
13876 \end_layout
13877
13878 \end_inset
13879 </cell>
13880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13881 \begin_inset Text
13882
13883 \begin_layout Standard
13884
13885 \color red
13886 c
13887 \end_layout
13888
13889 \end_inset
13890 </cell>
13891 </row>
13892 <row>
13893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13894 \begin_inset Text
13895
13896 \begin_layout Standard
13897
13898 \color yellow
13899 d
13900 \end_layout
13901
13902 \end_inset
13903 </cell>
13904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13905 \begin_inset Text
13906
13907 \begin_layout Standard
13908
13909 \color blue
13910 e
13911 \end_layout
13912
13913 \end_inset
13914 </cell>
13915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13916 \begin_inset Text
13917
13918 \begin_layout Standard
13919
13920 \color blue
13921 f
13922 \end_layout
13923
13924 \end_inset
13925 </cell>
13926 </row>
13927 <row>
13928 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13929 \begin_inset Text
13930
13931 \begin_layout Standard
13932
13933 \color yellow
13934 g
13935 \end_layout
13936
13937 \end_inset
13938 </cell>
13939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13940 \begin_inset Text
13941
13942 \begin_layout Standard
13943
13944 \color blue
13945 h
13946 \end_layout
13947
13948 \end_inset
13949 </cell>
13950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13951 \begin_inset Text
13952
13953 \begin_layout Standard
13954 \begin_inset ERT
13955 status collapsed
13956
13957 \begin_layout Standard
13958
13959
13960 \backslash
13961 cellcolor{magenta}
13962 \end_layout
13963
13964 \end_inset
13965
13966
13967 \color green
13968 i
13969 \end_layout
13970
13971 \end_inset
13972 </cell>
13973 </row>
13974 </lyxtabular>
13975
13976 \end_inset
13977
13978
13979 \end_layout
13980
13981 \end_inset
13982
13983
13984 \end_layout
13985
13986 \begin_layout Subsection
13987 Colored Lines
13988 \begin_inset LatexCommand index
13989 name "Table Color ! for Lines"
13990
13991 \end_inset
13992
13993
13994 \begin_inset LatexCommand index
13995 name "Color ! for Table Lines"
13996
13997 \end_inset
13998
13999
14000 \end_layout
14001
14002 \begin_layout Standard
14003 As described in section\InsetSpace ~
14004
14005 \begin_inset LatexCommand ref
14006 reference "sub:Line-Thickness"
14007
14008 \end_inset
14009
14010 , the line thickness for all lines in a table can be adjusted with the length
14011  
14012 \series bold
14013
14014 \backslash
14015 arrayrulewidth
14016 \series default
14017 .
14018  It is set to 1.5\InsetSpace \thinspace{}
14019 pt for all tables of this section.
14020 \begin_inset ERT
14021 status collapsed
14022
14023 \begin_layout Standard
14024
14025
14026 \backslash
14027 setlength{
14028 \backslash
14029 arrayrulewidth}{1.5pt}
14030 \end_layout
14031
14032 \end_inset
14033
14034
14035 \end_layout
14036
14037 \begin_layout Standard
14038 To color vertical lines for example with green, create the following column
14039  format in the document preamble, according to the description in section\InsetSpace ~
14040
14041 \begin_inset LatexCommand ref
14042 reference "sub:Customized-Format"
14043
14044 \end_inset
14045
14046 :
14047 \end_layout
14048
14049 \begin_layout Standard
14050
14051 \series bold
14052
14053 \backslash
14054 newcolumntype{W}{!{
14055 \backslash
14056 color{green}
14057 \backslash
14058 vline}}
14059 \end_layout
14060
14061 \begin_layout Standard
14062 For Table\InsetSpace ~
14063
14064 \begin_inset LatexCommand ref
14065 reference "tab:Table-with-vertical-colored"
14066
14067 \end_inset
14068
14069  the LaTeX-argument
14070 \end_layout
14071
14072 \begin_layout Standard
14073
14074 \series bold
14075 WcW
14076 \end_layout
14077
14078 \begin_layout Standard
14079 was used for the last column and
14080 \end_layout
14081
14082 \begin_layout Standard
14083
14084 \series bold
14085 Wc
14086 \end_layout
14087
14088 \begin_layout Standard
14089 for the other columns.
14090 \end_layout
14091
14092 \begin_layout Standard
14093 If you want to have several colors, define more column formats.
14094 \end_layout
14095
14096 \begin_layout Standard
14097 \begin_inset Float table
14098 wide false
14099 sideways false
14100 status open
14101
14102 \begin_layout Standard
14103 \begin_inset Caption
14104
14105 \begin_layout Standard
14106 \begin_inset LatexCommand label
14107 name "tab:Table-with-vertical-colored"
14108
14109 \end_inset
14110
14111 Table with colored vertical lines
14112 \end_layout
14113
14114 \end_inset
14115
14116
14117 \end_layout
14118
14119 \begin_layout Standard
14120 \align center
14121 \begin_inset Tabular
14122 <lyxtabular version="3" rows="3" columns="3">
14123 <features>
14124 <column alignment="center" valignment="top" width="0" special="Wc">
14125 <column alignment="center" valignment="top" width="0" special="Wc">
14126 <column alignment="center" valignment="top" width="0" special="WcW">
14127 <row topline="true">
14128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14129 \begin_inset Text
14130
14131 \begin_layout Standard
14132 sd
14133 \end_layout
14134
14135 \end_inset
14136 </cell>
14137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14138 \begin_inset Text
14139
14140 \begin_layout Standard
14141
14142 \end_layout
14143
14144 \end_inset
14145 </cell>
14146 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14147 \begin_inset Text
14148
14149 \begin_layout Standard
14150
14151 \end_layout
14152
14153 \end_inset
14154 </cell>
14155 </row>
14156 <row topline="true">
14157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14158 \begin_inset Text
14159
14160 \begin_layout Standard
14161
14162 \end_layout
14163
14164 \end_inset
14165 </cell>
14166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14167 \begin_inset Text
14168
14169 \begin_layout Standard
14170 sd
14171 \end_layout
14172
14173 \end_inset
14174 </cell>
14175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14176 \begin_inset Text
14177
14178 \begin_layout Standard
14179
14180 \end_layout
14181
14182 \end_inset
14183 </cell>
14184 </row>
14185 <row topline="true" bottomline="true">
14186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14187 \begin_inset Text
14188
14189 \begin_layout Standard
14190
14191 \end_layout
14192
14193 \end_inset
14194 </cell>
14195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14196 \begin_inset Text
14197
14198 \begin_layout Standard
14199
14200 \end_layout
14201
14202 \end_inset
14203 </cell>
14204 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14205 \begin_inset Text
14206
14207 \begin_layout Standard
14208 sd
14209 \end_layout
14210
14211 \end_inset
14212 </cell>
14213 </row>
14214 </lyxtabular>
14215
14216 \end_inset
14217
14218
14219 \end_layout
14220
14221 \end_inset
14222
14223
14224 \end_layout
14225
14226 \begin_layout Standard
14227 \begin_inset VSpace bigskip
14228 \end_inset
14229
14230 To color horizontal lines for example with red, like in Table\InsetSpace ~
14231
14232 \begin_inset LatexCommand ref
14233 reference "tab:Table-with-horizontal-colored"
14234
14235 \end_inset
14236
14237 , insert these commands in ERT before the table or table float:
14238 \end_layout
14239
14240 \begin_layout Standard
14241
14242 \series bold
14243
14244 \backslash
14245 let
14246 \backslash
14247 myHlineC
14248 \backslash
14249 hline
14250 \newline
14251
14252 \backslash
14253 renewcommand{
14254 \backslash
14255 hline}{
14256 \backslash
14257 arrayrulecolor{red}
14258 \backslash
14259 myHlineC
14260 \backslash
14261 arrayrulecolor{black}}
14262 \end_layout
14263
14264 \begin_layout Standard
14265 \begin_inset ERT
14266 status collapsed
14267
14268 \begin_layout Standard
14269
14270
14271 \backslash
14272 let
14273 \backslash
14274 myHlineC
14275 \backslash
14276 hline
14277 \end_layout
14278
14279 \begin_layout Standard
14280
14281
14282 \backslash
14283 renewcommand{
14284 \backslash
14285 hline}{
14286 \backslash
14287 arrayrulecolor{red}
14288 \backslash
14289 myHlineC
14290 \backslash
14291 arrayrulecolor{black}}
14292 \end_layout
14293
14294 \end_inset
14295
14296
14297 \begin_inset Float table
14298 wide false
14299 sideways false
14300 status open
14301
14302 \begin_layout Standard
14303 \begin_inset Caption
14304
14305 \begin_layout Standard
14306 \begin_inset LatexCommand label
14307 name "tab:Table-with-horizontal-colored"
14308
14309 \end_inset
14310
14311 Table with colored horizontal lines
14312 \end_layout
14313
14314 \end_inset
14315
14316
14317 \end_layout
14318
14319 \begin_layout Standard
14320 \align center
14321 \begin_inset Tabular
14322 <lyxtabular version="3" rows="3" columns="3">
14323 <features>
14324 <column alignment="center" valignment="top" leftline="true" width="0">
14325 <column alignment="center" valignment="top" leftline="true" width="0">
14326 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14327 <row topline="true">
14328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14329 \begin_inset Text
14330
14331 \begin_layout Standard
14332 sd
14333 \end_layout
14334
14335 \end_inset
14336 </cell>
14337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14338 \begin_inset Text
14339
14340 \begin_layout Standard
14341
14342 \end_layout
14343
14344 \end_inset
14345 </cell>
14346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14347 \begin_inset Text
14348
14349 \begin_layout Standard
14350
14351 \end_layout
14352
14353 \end_inset
14354 </cell>
14355 </row>
14356 <row topline="true">
14357 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14358 \begin_inset Text
14359
14360 \begin_layout Standard
14361
14362 \end_layout
14363
14364 \end_inset
14365 </cell>
14366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14367 \begin_inset Text
14368
14369 \begin_layout Standard
14370 sd
14371 \end_layout
14372
14373 \end_inset
14374 </cell>
14375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14376 \begin_inset Text
14377
14378 \begin_layout Standard
14379
14380 \end_layout
14381
14382 \end_inset
14383 </cell>
14384 </row>
14385 <row topline="true" bottomline="true">
14386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14387 \begin_inset Text
14388
14389 \begin_layout Standard
14390
14391 \end_layout
14392
14393 \end_inset
14394 </cell>
14395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14396 \begin_inset Text
14397
14398 \begin_layout Standard
14399
14400 \end_layout
14401
14402 \end_inset
14403 </cell>
14404 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14405 \begin_inset Text
14406
14407 \begin_layout Standard
14408 sd
14409 \end_layout
14410
14411 \end_inset
14412 </cell>
14413 </row>
14414 </lyxtabular>
14415
14416 \end_inset
14417
14418
14419 \end_layout
14420
14421 \end_inset
14422
14423
14424 \end_layout
14425
14426 \begin_layout Standard
14427 \begin_inset ERT
14428 status collapsed
14429
14430 \begin_layout Standard
14431
14432
14433 \backslash
14434 pagebreak 
14435 \end_layout
14436
14437 \end_inset
14438
14439
14440 \end_layout
14441
14442 \begin_layout Standard
14443 To return to the default line color black, insert this command in ERT behind
14444  the table or table float:
14445 \end_layout
14446
14447 \begin_layout Standard
14448
14449 \series bold
14450
14451 \backslash
14452 renewcommand{
14453 \backslash
14454 hline}{
14455 \backslash
14456 myHlineC}
14457 \end_layout
14458
14459 \begin_layout Standard
14460 Table\InsetSpace ~
14461
14462 \begin_inset LatexCommand ref
14463 reference "tab:Table-with-colored"
14464
14465 \end_inset
14466
14467  is an example with colored vertical and horizontal lines.
14468 \end_layout
14469
14470 \begin_layout Standard
14471 \begin_inset Float table
14472 wide false
14473 sideways false
14474 status open
14475
14476 \begin_layout Standard
14477 \begin_inset Caption
14478
14479 \begin_layout Standard
14480 \begin_inset LatexCommand label
14481 name "tab:Table-with-colored"
14482
14483 \end_inset
14484
14485 Table with colored lines
14486 \end_layout
14487
14488 \end_inset
14489
14490
14491 \end_layout
14492
14493 \begin_layout Standard
14494 \align center
14495 \begin_inset Tabular
14496 <lyxtabular version="3" rows="3" columns="3">
14497 <features>
14498 <column alignment="center" valignment="top" width="0" special="Wc">
14499 <column alignment="center" valignment="top" width="0" special="Wc">
14500 <column alignment="center" valignment="top" width="0" special="WcW">
14501 <row topline="true">
14502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14503 \begin_inset Text
14504
14505 \begin_layout Standard
14506 sd
14507 \end_layout
14508
14509 \end_inset
14510 </cell>
14511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14512 \begin_inset Text
14513
14514 \begin_layout Standard
14515
14516 \end_layout
14517
14518 \end_inset
14519 </cell>
14520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14521 \begin_inset Text
14522
14523 \begin_layout Standard
14524
14525 \end_layout
14526
14527 \end_inset
14528 </cell>
14529 </row>
14530 <row topline="true">
14531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14532 \begin_inset Text
14533
14534 \begin_layout Standard
14535
14536 \end_layout
14537
14538 \end_inset
14539 </cell>
14540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14541 \begin_inset Text
14542
14543 \begin_layout Standard
14544 sd
14545 \end_layout
14546
14547 \end_inset
14548 </cell>
14549 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14550 \begin_inset Text
14551
14552 \begin_layout Standard
14553
14554 \end_layout
14555
14556 \end_inset
14557 </cell>
14558 </row>
14559 <row topline="true" bottomline="true" topspace="default">
14560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14561 \begin_inset Text
14562
14563 \begin_layout Standard
14564
14565 \end_layout
14566
14567 \end_inset
14568 </cell>
14569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14570 \begin_inset Text
14571
14572 \begin_layout Standard
14573
14574 \end_layout
14575
14576 \end_inset
14577 </cell>
14578 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14579 \begin_inset Text
14580
14581 \begin_layout Standard
14582 sd
14583 \end_layout
14584
14585 \end_inset
14586 </cell>
14587 </row>
14588 </lyxtabular>
14589
14590 \end_inset
14591
14592
14593 \end_layout
14594
14595 \end_inset
14596
14597
14598 \end_layout
14599
14600 \begin_layout Standard
14601 \begin_inset ERT
14602 status collapsed
14603
14604 \begin_layout Standard
14605
14606
14607 \backslash
14608 renewcommand{
14609 \backslash
14610 hline}{
14611 \backslash
14612 myHlineC}
14613 \end_layout
14614
14615 \end_inset
14616
14617
14618 \end_layout
14619
14620 \begin_layout Standard
14621 \begin_inset ERT
14622 status collapsed
14623
14624 \begin_layout Standard
14625
14626
14627 \backslash
14628 setlength{
14629 \backslash
14630 arrayrulewidth}{0.4pt}
14631 \end_layout
14632
14633 \end_inset
14634
14635
14636 \end_layout
14637
14638 \begin_layout Section
14639 Table Customization
14640 \begin_inset LatexCommand index
14641 name "Table Customization"
14642
14643 \end_inset
14644
14645
14646 \begin_inset LatexCommand index
14647 name "Table ! Customization"
14648
14649 \end_inset
14650
14651
14652 \end_layout
14653
14654 \begin_layout Subsection
14655 Row Spacing
14656 \begin_inset LatexCommand label
14657 name "sub:Row-Spacing"
14658
14659 \end_inset
14660
14661
14662 \begin_inset LatexCommand index
14663 name "Table Customization ! Row Spacing"
14664
14665 \end_inset
14666
14667
14668 \end_layout
14669
14670 \begin_layout Standard
14671 You can add vertical space to table rows in the 
14672 \family sans
14673 Borders
14674 \family default
14675  tab of the table dialog.
14676  You find there three possibilities:
14677 \end_layout
14678
14679 \begin_layout Description
14680 Top\InsetSpace ~
14681 of\InsetSpace ~
14682 row will add space above the characters of the table row.
14683  If the table is a formal table
14684 \begin_inset Foot
14685 status collapsed
14686
14687 \begin_layout Standard
14688 Formal tables are explained in section\InsetSpace ~
14689
14690 \begin_inset LatexCommand ref
14691 reference "sec:Formal-Tables"
14692
14693 \end_inset
14694
14695 .
14696 \end_layout
14697
14698 \end_inset
14699
14700  LyX will insert as default 0.5\InsetSpace \thinspace{}
14701 em space.
14702  For normal tables the inserted space will unfortunately destroy the vertical
14703  table lines as in the following table:
14704 \begin_inset VSpace defskip
14705 \end_inset
14706
14707
14708 \newline
14709
14710 \begin_inset ERT
14711 status collapsed
14712
14713 \begin_layout Standard
14714
14715
14716 \backslash
14717 hspace*{0pt}
14718 \end_layout
14719
14720 \end_inset
14721
14722
14723 \hfill
14724
14725 \begin_inset Tabular
14726 <lyxtabular version="3" rows="3" columns="1">
14727 <features>
14728 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14729 <row topline="true">
14730 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14731 \begin_inset Text
14732
14733 \begin_layout Standard
14734 A
14735 \end_layout
14736
14737 \end_inset
14738 </cell>
14739 </row>
14740 <row topline="true" topspace="3mm">
14741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14742 \begin_inset Text
14743
14744 \begin_layout Standard
14745 3\InsetSpace \thinspace{}
14746 mm space top of row
14747 \end_layout
14748
14749 \end_inset
14750 </cell>
14751 </row>
14752 <row topline="true" bottomline="true">
14753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14754 \begin_inset Text
14755
14756 \begin_layout Standard
14757 C
14758 \end_layout
14759
14760 \end_inset
14761 </cell>
14762 </row>
14763 </lyxtabular>
14764
14765 \end_inset
14766
14767
14768 \hfill
14769
14770 \begin_inset ERT
14771 status collapsed
14772
14773 \begin_layout Standard
14774
14775
14776 \backslash
14777 hspace*{0pt}
14778 \end_layout
14779
14780 \end_inset
14781
14782
14783 \begin_inset VSpace defskip
14784 \end_inset
14785
14786
14787 \newline
14788 So inserting space to the top of row for normal tables is only useful when
14789  you don't have vertical lines.
14790 \end_layout
14791
14792 \begin_layout Description
14793 Bottom\InsetSpace ~
14794 of\InsetSpace ~
14795 row will add space below the characters of the table row.
14796  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14797 em space, for
14798  normal tables the default size is 2\InsetSpace \thinspace{}
14799 pt.
14800 \end_layout
14801
14802 \begin_layout Description
14803 Between\InsetSpace ~
14804 rows adds space between the current and the following row.
14805  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14806 em space.
14807  For normal tables the inserted space will unfortunately destroy the vertical
14808  table lines as in the following table:
14809 \begin_inset VSpace defskip
14810 \end_inset
14811
14812
14813 \newline
14814
14815 \begin_inset ERT
14816 status collapsed
14817
14818 \begin_layout Standard
14819
14820
14821 \backslash
14822 hspace*{0pt}
14823 \end_layout
14824
14825 \end_inset
14826
14827
14828 \hfill
14829
14830 \begin_inset Tabular
14831 <lyxtabular version="3" rows="3" columns="1">
14832 <features>
14833 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14834 <row topline="true">
14835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14836 \begin_inset Text
14837
14838 \begin_layout Standard
14839 A
14840 \end_layout
14841
14842 \end_inset
14843 </cell>
14844 </row>
14845 <row topline="true" interlinespace="3mm">
14846 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14847 \begin_inset Text
14848
14849 \begin_layout Standard
14850 \begin_inset Formula $\downarrow$
14851 \end_inset
14852
14853  3\InsetSpace \thinspace{}
14854 mm space between row 
14855 \begin_inset Formula $\downarrow$
14856 \end_inset
14857
14858
14859 \end_layout
14860
14861 \end_inset
14862 </cell>
14863 </row>
14864 <row topline="true" bottomline="true">
14865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14866 \begin_inset Text
14867
14868 \begin_layout Standard
14869 \begin_inset Formula $\uparrow$
14870 \end_inset
14871
14872  3\InsetSpace \thinspace{}
14873 mm space between row 
14874 \begin_inset Formula $\uparrow$
14875 \end_inset
14876
14877
14878 \end_layout
14879
14880 \end_inset
14881 </cell>
14882 </row>
14883 </lyxtabular>
14884
14885 \end_inset
14886
14887
14888 \hfill
14889
14890 \begin_inset ERT
14891 status collapsed
14892
14893 \begin_layout Standard
14894
14895
14896 \backslash
14897 hspace*{0pt}
14898 \end_layout
14899
14900 \end_inset
14901
14902
14903 \begin_inset VSpace defskip
14904 \end_inset
14905
14906
14907 \newline
14908 So inserting space between rows for normal tables is only useful when you
14909  don't have vertical lines.
14910 \end_layout
14911
14912 \begin_layout Standard
14913 When you want to add extra height to all cells of all tables, you can do
14914  this with the following preamble line:
14915 \end_layout
14916
14917 \begin_layout Standard
14918
14919 \series bold
14920
14921 \backslash
14922 setlength{
14923 \backslash
14924 extrarowheight}{height}
14925 \end_layout
14926
14927 \begin_layout Standard
14928 But this has the disadvantage that the cell texts are no longer exactly
14929  vertically centered.
14930 \end_layout
14931
14932 \begin_layout Subsection
14933 Special Cell Alignment
14934 \begin_inset LatexCommand index
14935 name "Table Customization ! Special Cell Alignment"
14936
14937 \end_inset
14938
14939
14940 \end_layout
14941
14942 \begin_layout Standard
14943 Sometimes it looks better when the cell entries of a column are aligned
14944  with a special character, e.\InsetSpace \thinspace{}
14945 g.\InsetSpace ~
14946 with the decimal separator as in Table\InsetSpace ~
14947
14948 \begin_inset LatexCommand ref
14949 reference "tab:Table-cells-of"
14950
14951 \end_inset
14952
14953 .
14954 \end_layout
14955
14956 \begin_layout Standard
14957 \begin_inset Float table
14958 placement h
14959 wide false
14960 sideways false
14961 status open
14962
14963 \begin_layout Standard
14964 \begin_inset Caption
14965
14966 \begin_layout Standard
14967 \begin_inset LatexCommand label
14968 name "tab:Table-cells-of"
14969
14970 \end_inset
14971
14972 Table cells of a column aligned with the decimal separator.
14973 \end_layout
14974
14975 \end_inset
14976
14977
14978 \end_layout
14979
14980 \begin_layout Standard
14981 \align center
14982 \begin_inset Tabular
14983 <lyxtabular version="3" rows="4" columns="2">
14984 <features>
14985 <column alignment="right" valignment="top" width="0">
14986 <column alignment="left" valignment="top" width="0" special="@{}l">
14987 <row bottomline="true">
14988 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
14989 \begin_inset Text
14990
14991 \begin_layout Standard
14992 heading
14993 \end_layout
14994
14995 \end_inset
14996 </cell>
14997 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14998 \begin_inset Text
14999
15000 \begin_layout Standard
15001
15002 \end_layout
15003
15004 \end_inset
15005 </cell>
15006 </row>
15007 <row>
15008 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15009 \begin_inset Text
15010
15011 \begin_layout Standard
15012 12.
15013 \end_layout
15014
15015 \end_inset
15016 </cell>
15017 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15018 \begin_inset Text
15019
15020 \begin_layout Standard
15021 6
15022 \end_layout
15023
15024 \end_inset
15025 </cell>
15026 </row>
15027 <row>
15028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15029 \begin_inset Text
15030
15031 \begin_layout Standard
15032 0.
15033 \end_layout
15034
15035 \end_inset
15036 </cell>
15037 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15038 \begin_inset Text
15039
15040 \begin_layout Standard
15041 68
15042 \end_layout
15043
15044 \end_inset
15045 </cell>
15046 </row>
15047 <row>
15048 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15049 \begin_inset Text
15050
15051 \begin_layout Standard
15052 -123.
15053 \end_layout
15054
15055 \end_inset
15056 </cell>
15057 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15058 \begin_inset Text
15059
15060 \begin_layout Standard
15061 0
15062 \end_layout
15063
15064 \end_inset
15065 </cell>
15066 </row>
15067 </lyxtabular>
15068
15069 \end_inset
15070
15071
15072 \end_layout
15073
15074 \end_inset
15075
15076
15077 \end_layout
15078
15079 \begin_layout Standard
15080 This table was created with a 4×2 table.
15081  The heading is a centered multicolumn.
15082  The first column is right-aligned and contains the digits before the decimal
15083  point and the decimal point.
15084  The second column is left aligned and contains the digits after the decimal
15085  point.
15086  To omit the space that is normally between two table columns, use the following
15087  LaTeX-argument for the second column:
15088 \end_layout
15089
15090 \begin_layout Standard
15091
15092 \series bold
15093 @{}l
15094 \end_layout
15095
15096 \begin_layout Standard
15097 Table\InsetSpace ~
15098
15099 \begin_inset LatexCommand ref
15100 reference "tab:Several-table-cell"
15101
15102 \end_inset
15103
15104  shows some example alignments.
15105  For the alignment with the relation sign, you must add the second smallest
15106  math-space at the beginning of the last column to get the correct space
15107  surrounding the relation sign.
15108 \end_layout
15109
15110 \begin_layout Standard
15111 \begin_inset Float table
15112 wide false
15113 sideways false
15114 status open
15115
15116 \begin_layout Standard
15117 \begin_inset Caption
15118
15119 \begin_layout Standard
15120 \begin_inset LatexCommand label
15121 name "tab:Several-table-cell"
15122
15123 \end_inset
15124
15125 Several table cell alignments.
15126 \end_layout
15127
15128 \end_inset
15129
15130
15131 \end_layout
15132
15133 \begin_layout Standard
15134 \align center
15135 \begin_inset Tabular
15136 <lyxtabular version="3" rows="4" columns="6">
15137 <features>
15138 <column alignment="right" valignment="top" width="0">
15139 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15140 <column alignment="right" valignment="top" width="0">
15141 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15142 <column alignment="right" valignment="top" width="0">
15143 <column alignment="left" valignment="top" width="0" special="@{}l">
15144 <row bottomline="true">
15145 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15146 \begin_inset Text
15147
15148 \begin_layout Standard
15149 units
15150 \end_layout
15151
15152 \end_inset
15153 </cell>
15154 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15155 \begin_inset Text
15156
15157 \begin_layout Standard
15158
15159 \end_layout
15160
15161 \end_inset
15162 </cell>
15163 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15164 \begin_inset Text
15165
15166 \begin_layout Standard
15167 exponents
15168 \end_layout
15169
15170 \end_inset
15171 </cell>
15172 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15173 \begin_inset Text
15174
15175 \begin_layout Standard
15176
15177 \end_layout
15178
15179 \end_inset
15180 </cell>
15181 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15182 \begin_inset Text
15183
15184 \begin_layout Standard
15185 relations
15186 \end_layout
15187
15188 \end_inset
15189 </cell>
15190 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15191 \begin_inset Text
15192
15193 \begin_layout Standard
15194
15195 \end_layout
15196
15197 \end_inset
15198 </cell>
15199 </row>
15200 <row>
15201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15202 \begin_inset Text
15203
15204 \begin_layout Standard
15205 12×
15206 \end_layout
15207
15208 \end_inset
15209 </cell>
15210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15211 \begin_inset Text
15212
15213 \begin_layout Standard
15214 24\InsetSpace \thinspace{}
15215 bottles
15216 \end_layout
15217
15218 \end_inset
15219 </cell>
15220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15221 \begin_inset Text
15222
15223 \begin_layout Standard
15224 \begin_inset Formula $10\cdot$
15225 \end_inset
15226
15227
15228 \end_layout
15229
15230 \end_inset
15231 </cell>
15232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15233 \begin_inset Text
15234
15235 \begin_layout Standard
15236 \begin_inset Formula $10^{\mbox{-}17}$
15237 \end_inset
15238
15239
15240 \end_layout
15241
15242 \end_inset
15243 </cell>
15244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15245 \begin_inset Text
15246
15247 \begin_layout Standard
15248 \begin_inset Formula $\Gamma(t)\propto$
15249 \end_inset
15250
15251
15252 \end_layout
15253
15254 \end_inset
15255 </cell>
15256 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15257 \begin_inset Text
15258
15259 \begin_layout Standard
15260 \begin_inset Formula $\:\Upsilon(t)$
15261 \end_inset
15262
15263
15264 \end_layout
15265
15266 \end_inset
15267 </cell>
15268 </row>
15269 <row>
15270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15271 \begin_inset Text
15272
15273 \begin_layout Standard
15274 1024×
15275 \end_layout
15276
15277 \end_inset
15278 </cell>
15279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15280 \begin_inset Text
15281
15282 \begin_layout Standard
15283 768\InsetSpace \thinspace{}
15284 Pixels
15285 \end_layout
15286
15287 \end_inset
15288 </cell>
15289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15290 \begin_inset Text
15291
15292 \begin_layout Standard
15293 \begin_inset Formula $5.78\cdot$
15294 \end_inset
15295
15296
15297 \end_layout
15298
15299 \end_inset
15300 </cell>
15301 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15302 \begin_inset Text
15303
15304 \begin_layout Standard
15305 \begin_inset Formula $10^{7}$
15306 \end_inset
15307
15308
15309 \end_layout
15310
15311 \end_inset
15312 </cell>
15313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15314 \begin_inset Text
15315
15316 \begin_layout Standard
15317 \begin_inset Formula $A\ne$
15318 \end_inset
15319
15320
15321 \end_layout
15322
15323 \end_inset
15324 </cell>
15325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15326 \begin_inset Text
15327
15328 \begin_layout Standard
15329 \begin_inset Formula $\: B_{\mathrm{red}}$
15330 \end_inset
15331
15332
15333 \end_layout
15334
15335 \end_inset
15336 </cell>
15337 </row>
15338 <row>
15339 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15340 \begin_inset Text
15341
15342 \begin_layout Standard
15343 32×
15344 \end_layout
15345
15346 \end_inset
15347 </cell>
15348 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15349 \begin_inset Text
15350
15351 \begin_layout Standard
15352 6\InsetSpace \thinspace{}
15353 cm
15354 \end_layout
15355
15356 \end_inset
15357 </cell>
15358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15359 \begin_inset Text
15360
15361 \begin_layout Standard
15362 -
15363 \begin_inset Formula $33.5\cdot$
15364 \end_inset
15365
15366
15367 \end_layout
15368
15369 \end_inset
15370 </cell>
15371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15372 \begin_inset Text
15373
15374 \begin_layout Standard
15375 \begin_inset Formula $10^{4}$
15376 \end_inset
15377
15378
15379 \end_layout
15380
15381 \end_inset
15382 </cell>
15383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15384 \begin_inset Text
15385
15386 \begin_layout Standard
15387 \begin_inset Formula $\sin(\alpha)\ge$
15388 \end_inset
15389
15390
15391 \end_layout
15392
15393 \end_inset
15394 </cell>
15395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15396 \begin_inset Text
15397
15398 \begin_layout Standard
15399 \begin_inset Formula $\:\sin(\beta)$
15400 \end_inset
15401
15402
15403 \end_layout
15404
15405 \end_inset
15406 </cell>
15407 </row>
15408 </lyxtabular>
15409
15410 \end_inset
15411
15412
15413 \end_layout
15414
15415 \end_inset
15416
15417
15418 \end_layout
15419
15420 \begin_layout Standard
15421 \begin_inset VSpace bigskip
15422 \end_inset
15423
15424 There is also the LaTeX-package 
15425 \series bold
15426 dcolumn
15427 \series default
15428
15429 \begin_inset LatexCommand index
15430 name "LaTeX-packages ! dcolumn"
15431
15432 \end_inset
15433
15434  that provides table cell alignments.
15435  But this unfortunately treats the cell entries as math and doesn't allow
15436  formulas in table cells: The first column of Table\InsetSpace ~
15437
15438 \begin_inset LatexCommand ref
15439 reference "tab:Several-table-cell"
15440
15441 \end_inset
15442
15443  will look with 
15444 \series bold
15445 dcolumn
15446 \series default
15447  like the first column in Table\InsetSpace ~
15448
15449 \begin_inset LatexCommand ref
15450 reference "tab:Alignments-when"
15451
15452 \end_inset
15453
15454  and only with some tricks like the expected.
15455  The alignment of the second and third column of Table\InsetSpace ~
15456
15457 \begin_inset LatexCommand ref
15458 reference "tab:Several-table-cell"
15459
15460 \end_inset
15461
15462  is not possible with 
15463 \series bold
15464 dcolumn
15465 \series default
15466 .
15467 \end_layout
15468
15469 \begin_layout Standard
15470 \begin_inset Float table
15471 placement h
15472 wide false
15473 sideways false
15474 status open
15475
15476 \begin_layout Standard
15477 \begin_inset Caption
15478
15479 \begin_layout Standard
15480 \begin_inset LatexCommand label
15481 name "tab:Alignments-when"
15482
15483 \end_inset
15484
15485 Alignments when LaTeX-package dcolumn is used.
15486  For all column alignments tricks have to be used to get the output.
15487 \end_layout
15488
15489 \end_inset
15490
15491
15492 \end_layout
15493
15494 \begin_layout Standard
15495 \align center
15496 \begin_inset Tabular
15497 <lyxtabular version="3" rows="4" columns="3">
15498 <features>
15499 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{-1}">
15500 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{4.9}">
15501 <column alignment="center" valignment="top" width="0" special="D{~}{\,}{9.7}">
15502 <row bottomline="true">
15503 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15504 \begin_inset Text
15505
15506 \begin_layout Standard
15507 units
15508 \end_layout
15509
15510 \end_inset
15511 </cell>
15512 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15513 \begin_inset Text
15514
15515 \begin_layout Standard
15516 units
15517 \end_layout
15518
15519 \end_inset
15520 </cell>
15521 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15522 \begin_inset Text
15523
15524 \begin_layout Standard
15525 units
15526 \end_layout
15527
15528 \end_inset
15529 </cell>
15530 </row>
15531 <row>
15532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15533 \begin_inset Text
15534
15535 \begin_layout Standard
15536 12x24\InsetSpace \thinspace{}
15537 bottles
15538 \end_layout
15539
15540 \end_inset
15541 </cell>
15542 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15543 \begin_inset Text
15544
15545 \begin_layout Standard
15546 12x24\InsetSpace \thinspace{}
15547
15548 \begin_inset Formula $\mbox{bottles}$
15549 \end_inset
15550
15551
15552 \end_layout
15553
15554 \end_inset
15555 </cell>
15556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15557 \begin_inset Text
15558
15559 \begin_layout Standard
15560 12
15561 \begin_inset ERT
15562 status collapsed
15563
15564 \begin_layout Standard
15565
15566
15567 \backslash
15568 times 
15569 \end_layout
15570
15571 \end_inset
15572
15573 24~
15574 \begin_inset Formula $\mbox{bottles}$
15575 \end_inset
15576
15577
15578 \end_layout
15579
15580 \end_inset
15581 </cell>
15582 </row>
15583 <row>
15584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15585 \begin_inset Text
15586
15587 \begin_layout Standard
15588 1024x768\InsetSpace \thinspace{}
15589 Pixels
15590 \end_layout
15591
15592 \end_inset
15593 </cell>
15594 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15595 \begin_inset Text
15596
15597 \begin_layout Standard
15598 1024x768\InsetSpace \thinspace{}
15599
15600 \begin_inset Formula $\mbox{Pixels}$
15601 \end_inset
15602
15603
15604 \end_layout
15605
15606 \end_inset
15607 </cell>
15608 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15609 \begin_inset Text
15610
15611 \begin_layout Standard
15612 1024
15613 \begin_inset ERT
15614 status collapsed
15615
15616 \begin_layout Standard
15617
15618
15619 \backslash
15620 times 
15621 \end_layout
15622
15623 \end_inset
15624
15625 768~
15626 \begin_inset Formula $\mbox{Pixels}$
15627 \end_inset
15628
15629
15630 \end_layout
15631
15632 \end_inset
15633 </cell>
15634 </row>
15635 <row>
15636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15637 \begin_inset Text
15638
15639 \begin_layout Standard
15640 32x6\InsetSpace \thinspace{}
15641 cm
15642 \end_layout
15643
15644 \end_inset
15645 </cell>
15646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15647 \begin_inset Text
15648
15649 \begin_layout Standard
15650 32x6\InsetSpace \thinspace{}
15651
15652 \begin_inset Formula $\mbox{cm}$
15653 \end_inset
15654
15655
15656 \end_layout
15657
15658 \end_inset
15659 </cell>
15660 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15661 \begin_inset Text
15662
15663 \begin_layout Standard
15664 32
15665 \begin_inset ERT
15666 status collapsed
15667
15668 \begin_layout Standard
15669
15670
15671 \backslash
15672 times 
15673 \end_layout
15674
15675 \end_inset
15676
15677 6~
15678 \begin_inset Formula $\mbox{cm}$
15679 \end_inset
15680
15681
15682 \end_layout
15683
15684 \end_inset
15685 </cell>
15686 </row>
15687 </lyxtabular>
15688
15689 \end_inset
15690
15691
15692 \end_layout
15693
15694 \end_inset
15695
15696
15697 \end_layout
15698
15699 \begin_layout Subsection
15700 Customized Cell/Column Format
15701 \begin_inset LatexCommand label
15702 name "sub:Customized-Format"
15703
15704 \end_inset
15705
15706
15707 \begin_inset LatexCommand index
15708 name "Table Customization ! Cell/Column Format"
15709
15710 \end_inset
15711
15712
15713 \end_layout
15714
15715 \begin_layout Standard
15716 Calculating the needed width for spanned columns like in section\InsetSpace ~
15717
15718 \begin_inset LatexCommand ref
15719 reference "sub:Multicolumn-Calculations"
15720
15721 \end_inset
15722
15723  is very annoying if you have several tables with multicolumn cells.
15724  To make life easier, you can define a cell/column format in the preamble,
15725  so that it can be used in all tables of the document.
15726  The format is defined with the command
15727 \end_layout
15728
15729 \begin_layout Standard
15730
15731 \series bold
15732
15733 \backslash
15734 newcolumntype{name of format}[number of arguments]{commands}
15735 \end_layout
15736
15737 \begin_layout Standard
15738 The format name may only consist of one letter.
15739  The letters 
15740 \emph on
15741 b
15742 \emph default
15743
15744 \emph on
15745 c
15746 \emph default
15747
15748 \emph on
15749 l
15750 \emph default
15751
15752 \emph on
15753 m
15754 \emph default
15755
15756 \emph on
15757 p
15758 \emph default
15759  and 
15760 \emph on
15761 r
15762 \emph default
15763  are predefined and cannot be used.
15764  But all letters are allowed as capitals.
15765 \end_layout
15766
15767 \begin_layout Standard
15768 \begin_inset VSpace medskip
15769 \end_inset
15770
15771
15772 \end_layout
15773
15774 \begin_layout Standard
15775 For vertically and horizontally centered multicolumn cells with a fixed
15776  width you can define the cell format
15777 \end_layout
15778
15779 \begin_layout Standard
15780
15781 \series bold
15782
15783 \backslash
15784 newcolumntype{M}[1]{>{
15785 \backslash
15786 centering
15787 \backslash
15788 hspace{0pt}}m{#1}}
15789 \end_layout
15790
15791 \begin_layout Standard
15792 where 
15793 \series bold
15794
15795 \backslash
15796 hspace{0pt}
15797 \series default
15798  avoids the problem of hyphenating the first word, as described in section\InsetSpace ~
15799
15800 \begin_inset LatexCommand ref
15801 reference "sub:Multiple-Lines-in"
15802
15803 \end_inset
15804
15805 .
15806  Now you can simply enter
15807 \end_layout
15808
15809 \begin_layout Standard
15810
15811 \series bold
15812 M{width}
15813 \end_layout
15814
15815 \begin_layout Standard
15816 as LaTeX-argument in the table dialog to create a multicolumn.
15817 \end_layout
15818
15819 \begin_layout Standard
15820 \begin_inset VSpace bigskip
15821 \end_inset
15822
15823
15824 \end_layout
15825
15826 \begin_layout Standard
15827 For cells spanned by a multicolumn cell, you can define the format
15828 \end_layout
15829
15830 \begin_layout Standard
15831
15832 \series bold
15833
15834 \backslash
15835 newcolumntype{S}[2]{>{
15836 \backslash
15837 centering
15838 \backslash
15839 hspace{0pt}}
15840 \newline
15841
15842 \begin_inset ERT
15843 status collapsed
15844
15845 \begin_layout Standard
15846
15847
15848 \backslash
15849 phantom{
15850 \end_layout
15851
15852 \end_inset
15853
15854
15855 \backslash
15856 newcolumntype{S}[2]
15857 \begin_inset ERT
15858 status collapsed
15859
15860 \begin_layout Standard
15861
15862 }
15863 \end_layout
15864
15865 \end_inset
15866
15867 m{(#1+(2
15868 \backslash
15869 tabcolsep+
15870 \backslash
15871 arrayrulewidth)*(1-#2))/#2}}
15872 \end_layout
15873
15874 \begin_layout Standard
15875 This format uses equation 
15876 \begin_inset LatexCommand eqref
15877 reference "eq:Wgn"
15878
15879 \end_inset
15880
15881  to calculate the needed width so that each spanned cell has the same width.
15882 \end_layout
15883
15884 \begin_layout Standard
15885 You can now enter
15886 \end_layout
15887
15888 \begin_layout Standard
15889
15890 \series bold
15891 S{width of multicolumn cell}{number of spanned columns}
15892 \end_layout
15893
15894 \begin_layout Standard
15895 as LaTeX-argument of the column.
15896 \end_layout
15897
15898 \begin_layout Standard
15899 \begin_inset VSpace bigskip
15900 \end_inset
15901
15902
15903 \end_layout
15904
15905 \begin_layout Standard
15906 For colored columns, you can define
15907 \end_layout
15908
15909 \begin_layout Standard
15910
15911 \series bold
15912
15913 \backslash
15914 newcolumntype{K}[1]{>{
15915 \backslash
15916 columncolor{#1}
15917 \backslash
15918 hspace{0pt}}c}
15919 \end_layout
15920
15921 \begin_layout Standard
15922 The 
15923 \begin_inset Quotes eld
15924 \end_inset
15925
15926 c
15927 \begin_inset Quotes erd
15928 \end_inset
15929
15930  at the end creates a column with a flexible width whose text is horizontally
15931  centered.
15932  You can now enter
15933 \end_layout
15934
15935 \begin_layout Standard
15936
15937 \series bold
15938 K{color name}
15939 \end_layout
15940
15941 \begin_layout Standard
15942 as LaTeX-argument.
15943 \end_layout
15944
15945 \begin_layout Standard
15946 \begin_inset VSpace bigskip
15947 \end_inset
15948
15949
15950 \end_layout
15951
15952 \begin_layout Standard
15953 To create Table\InsetSpace ~
15954
15955 \begin_inset LatexCommand ref
15956 reference "tab:Table-using-user-defined"
15957
15958 \end_inset
15959
15960  use the LaTeX-arguments
15961 \end_layout
15962
15963 \begin_layout Standard
15964
15965 \series bold
15966 M{2.5cm}
15967 \end_layout
15968
15969 \begin_layout Standard
15970 for the first column and the multicolumn,
15971 \end_layout
15972
15973 \begin_layout Standard
15974
15975 \series bold
15976 K{red}
15977 \end_layout
15978
15979 \begin_layout Standard
15980 for the the last column, and
15981 \end_layout
15982
15983 \begin_layout Standard
15984
15985 \series bold
15986 S{2.5cm}{2}
15987 \end_layout
15988
15989 \begin_layout Standard
15990 for the cells in the second column.
15991 \end_layout
15992
15993 \begin_layout Standard
15994 \begin_inset Float table
15995 placement h
15996 wide false
15997 sideways false
15998 status open
15999
16000 \begin_layout Standard
16001 \begin_inset Caption
16002
16003 \begin_layout Standard
16004 \begin_inset LatexCommand label
16005 name "tab:Table-using-user-defined"
16006
16007 \end_inset
16008
16009 Table using user-defined table formats
16010 \end_layout
16011
16012 \end_inset
16013
16014
16015 \end_layout
16016
16017 \begin_layout Standard
16018 \align center
16019 \begin_inset Tabular
16020 <lyxtabular version="3" rows="3" columns="4">
16021 <features>
16022 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="M{2.5cm}">
16023 <column alignment="center" valignment="middle" leftline="true" width="0" special="S{2.5cm}{2}">
16024 <column alignment="center" valignment="middle" leftline="true" width="0">
16025 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="K{red}">
16026 <row topline="true">
16027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16028 \begin_inset Text
16029
16030 \begin_layout Standard
16031 verylongtablecellword
16032 \end_layout
16033
16034 \end_inset
16035 </cell>
16036 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}">
16037 \begin_inset Text
16038
16039 \begin_layout Standard
16040 multiple lines multicolumn
16041 \end_layout
16042
16043 \end_inset
16044 </cell>
16045 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16046 \begin_inset Text
16047
16048 \begin_layout Standard
16049
16050 \end_layout
16051
16052 \end_inset
16053 </cell>
16054 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16055 \begin_inset Text
16056
16057 \begin_layout Standard
16058 c
16059 \end_layout
16060
16061 \end_inset
16062 </cell>
16063 </row>
16064 <row topline="true">
16065 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16066 \begin_inset Text
16067
16068 \begin_layout Standard
16069 d
16070 \end_layout
16071
16072 \end_inset
16073 </cell>
16074 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16075 \begin_inset Text
16076
16077 \begin_layout Standard
16078 e
16079 \end_layout
16080
16081 \end_inset
16082 </cell>
16083 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16084 \begin_inset Text
16085
16086 \begin_layout Standard
16087 f
16088 \end_layout
16089
16090 \end_inset
16091 </cell>
16092 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16093 \begin_inset Text
16094
16095 \begin_layout Standard
16096 g
16097 \end_layout
16098
16099 \end_inset
16100 </cell>
16101 </row>
16102 <row topline="true" bottomline="true">
16103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16104 \begin_inset Text
16105
16106 \begin_layout Standard
16107 h
16108 \end_layout
16109
16110 \end_inset
16111 </cell>
16112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16113 \begin_inset Text
16114
16115 \begin_layout Standard
16116 i
16117 \end_layout
16118
16119 \end_inset
16120 </cell>
16121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16122 \begin_inset Text
16123
16124 \begin_layout Standard
16125 j
16126 \end_layout
16127
16128 \end_inset
16129 </cell>
16130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16131 \begin_inset Text
16132
16133 \begin_layout Standard
16134 k
16135 \end_layout
16136
16137 \end_inset
16138 </cell>
16139 </row>
16140 </lyxtabular>
16141
16142 \end_inset
16143
16144
16145 \end_layout
16146
16147 \end_inset
16148
16149
16150 \end_layout
16151
16152 \begin_layout Subsection
16153 Line Thickness
16154 \begin_inset LatexCommand label
16155 name "sub:Line-Thickness"
16156
16157 \end_inset
16158
16159
16160 \begin_inset LatexCommand index
16161 name "Table Customization ! Line Thickness"
16162
16163 \end_inset
16164
16165
16166 \end_layout
16167
16168 \begin_layout Standard
16169 The line thickness for all lines in a table can be adjusted with the length
16170  
16171 \series bold
16172
16173 \backslash
16174 arrayrulewidth
16175 \series default
16176 .
16177  To set for example a line thickness of 1.5\InsetSpace \thinspace{}
16178 pt, like in Table\InsetSpace ~
16179
16180 \begin_inset LatexCommand ref
16181 reference "tab:Table-with-1.5"
16182
16183 \end_inset
16184
16185 , insert the command
16186 \end_layout
16187
16188 \begin_layout Standard
16189
16190 \series bold
16191
16192 \backslash
16193 setlength{
16194 \backslash
16195 arrayrulewidth}{1.5pt}
16196 \end_layout
16197
16198 \begin_layout Standard
16199 in ERT before the table or table float.
16200  The changed thickness is valid for all following tables.
16201  To use the default value again, set 
16202 \series bold
16203
16204 \backslash
16205 arrayrulewidth
16206 \series default
16207  to 0.4\InsetSpace \thinspace{}
16208 pt in ERT behind the table or table float.
16209 \end_layout
16210
16211 \begin_layout Standard
16212 \begin_inset ERT
16213 status collapsed
16214
16215 \begin_layout Standard
16216
16217
16218 \backslash
16219 setlength{
16220 \backslash
16221 arrayrulewidth}{1.5pt}
16222 \end_layout
16223
16224 \end_inset
16225
16226
16227 \begin_inset Float table
16228 wide false
16229 sideways false
16230 status open
16231
16232 \begin_layout Standard
16233 \begin_inset Caption
16234
16235 \begin_layout Standard
16236 \begin_inset LatexCommand label
16237 name "tab:Table-with-1.5"
16238
16239 \end_inset
16240
16241 Table with 1.5\InsetSpace \thinspace{}
16242 pt thick lines
16243 \end_layout
16244
16245 \end_inset
16246
16247
16248 \end_layout
16249
16250 \begin_layout Standard
16251 \align center
16252 \begin_inset Tabular
16253 <lyxtabular version="3" rows="3" columns="3">
16254 <features>
16255 <column alignment="center" valignment="top" leftline="true" width="0">
16256 <column alignment="center" valignment="top" leftline="true" width="0">
16257 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16258 <row topline="true">
16259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16260 \begin_inset Text
16261
16262 \begin_layout Standard
16263 sd
16264 \end_layout
16265
16266 \end_inset
16267 </cell>
16268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16269 \begin_inset Text
16270
16271 \begin_layout Standard
16272
16273 \end_layout
16274
16275 \end_inset
16276 </cell>
16277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16278 \begin_inset Text
16279
16280 \begin_layout Standard
16281
16282 \end_layout
16283
16284 \end_inset
16285 </cell>
16286 </row>
16287 <row topline="true">
16288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16289 \begin_inset Text
16290
16291 \begin_layout Standard
16292
16293 \end_layout
16294
16295 \end_inset
16296 </cell>
16297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16298 \begin_inset Text
16299
16300 \begin_layout Standard
16301 sd
16302 \end_layout
16303
16304 \end_inset
16305 </cell>
16306 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16307 \begin_inset Text
16308
16309 \begin_layout Standard
16310
16311 \end_layout
16312
16313 \end_inset
16314 </cell>
16315 </row>
16316 <row topline="true" bottomline="true">
16317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16318 \begin_inset Text
16319
16320 \begin_layout Standard
16321
16322 \end_layout
16323
16324 \end_inset
16325 </cell>
16326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16327 \begin_inset Text
16328
16329 \begin_layout Standard
16330
16331 \end_layout
16332
16333 \end_inset
16334 </cell>
16335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16336 \begin_inset Text
16337
16338 \begin_layout Standard
16339 sd
16340 \end_layout
16341
16342 \end_inset
16343 </cell>
16344 </row>
16345 </lyxtabular>
16346
16347 \end_inset
16348
16349
16350 \end_layout
16351
16352 \end_inset
16353
16354
16355 \begin_inset ERT
16356 status collapsed
16357
16358 \begin_layout Standard
16359
16360
16361 \backslash
16362 setlength{
16363 \backslash
16364 arrayrulewidth}{0.4pt}
16365 \end_layout
16366
16367 \end_inset
16368
16369
16370 \end_layout
16371
16372 \begin_layout Standard
16373 \begin_inset VSpace bigskip
16374 \end_inset
16375
16376 To set the line thickness to 1.5\InsetSpace \thinspace{}
16377 pt only for horizontal lines, like in Table\InsetSpace ~
16378
16379 \begin_inset LatexCommand ref
16380 reference "tab:Table-with-horizontal"
16381
16382 \end_inset
16383
16384 , insert these commands in ERT before the table or table float:
16385 \end_layout
16386
16387 \begin_layout Standard
16388
16389 \series bold
16390
16391 \backslash
16392 let
16393 \backslash
16394 myHline
16395 \backslash
16396 hline
16397 \newline
16398
16399 \backslash
16400 renewcommand{
16401 \backslash
16402 hline}
16403 \newline
16404  {
16405 \backslash
16406 noalign{
16407 \backslash
16408 global
16409 \backslash
16410 arrayrulewidth 1.5pt}
16411 \newline
16412   
16413 \backslash
16414 myHline
16415 \backslash
16416 noalign{
16417 \backslash
16418 global
16419 \backslash
16420 arrayrulewidth 0.4pt}}
16421 \end_layout
16422
16423 \begin_layout Standard
16424 To return to the default line thickness, insert this command in ERT behind
16425  the table or table float:
16426 \end_layout
16427
16428 \begin_layout Standard
16429
16430 \series bold
16431
16432 \backslash
16433 renewcommand{
16434 \backslash
16435 hline}{
16436 \backslash
16437 myHline}
16438 \end_layout
16439
16440 \begin_layout Standard
16441 \begin_inset ERT
16442 status collapsed
16443
16444 \begin_layout Standard
16445
16446
16447 \backslash
16448 let
16449 \backslash
16450 myHline
16451 \backslash
16452 hline
16453 \end_layout
16454
16455 \begin_layout Standard
16456
16457
16458 \backslash
16459 renewcommand{
16460 \backslash
16461 hline}
16462 \end_layout
16463
16464 \begin_layout Standard
16465
16466  {
16467 \backslash
16468 noalign{
16469 \backslash
16470 global
16471 \backslash
16472 arrayrulewidth 1.5pt}
16473 \end_layout
16474
16475 \begin_layout Standard
16476
16477   
16478 \backslash
16479 myHline
16480 \backslash
16481 noalign{
16482 \backslash
16483 global
16484 \backslash
16485 arrayrulewidth 0.4pt}}
16486 \end_layout
16487
16488 \end_inset
16489
16490
16491 \begin_inset Float table
16492 wide false
16493 sideways false
16494 status open
16495
16496 \begin_layout Standard
16497 \begin_inset Caption
16498
16499 \begin_layout Standard
16500 \begin_inset LatexCommand label
16501 name "tab:Table-with-horizontal"
16502
16503 \end_inset
16504
16505 Table with 1.5\InsetSpace \thinspace{}
16506 pt thick horizontal lines
16507 \end_layout
16508
16509 \end_inset
16510
16511
16512 \end_layout
16513
16514 \begin_layout Standard
16515 \align center
16516 \begin_inset Tabular
16517 <lyxtabular version="3" rows="3" columns="3">
16518 <features>
16519 <column alignment="center" valignment="top" leftline="true" width="0">
16520 <column alignment="center" valignment="top" leftline="true" width="0">
16521 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16522 <row topline="true">
16523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16524 \begin_inset Text
16525
16526 \begin_layout Standard
16527 sd
16528 \end_layout
16529
16530 \end_inset
16531 </cell>
16532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16533 \begin_inset Text
16534
16535 \begin_layout Standard
16536
16537 \end_layout
16538
16539 \end_inset
16540 </cell>
16541 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16542 \begin_inset Text
16543
16544 \begin_layout Standard
16545
16546 \end_layout
16547
16548 \end_inset
16549 </cell>
16550 </row>
16551 <row topline="true">
16552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16553 \begin_inset Text
16554
16555 \begin_layout Standard
16556
16557 \end_layout
16558
16559 \end_inset
16560 </cell>
16561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16562 \begin_inset Text
16563
16564 \begin_layout Standard
16565 sd
16566 \end_layout
16567
16568 \end_inset
16569 </cell>
16570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16571 \begin_inset Text
16572
16573 \begin_layout Standard
16574
16575 \end_layout
16576
16577 \end_inset
16578 </cell>
16579 </row>
16580 <row topline="true" bottomline="true">
16581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16582 \begin_inset Text
16583
16584 \begin_layout Standard
16585
16586 \end_layout
16587
16588 \end_inset
16589 </cell>
16590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16591 \begin_inset Text
16592
16593 \begin_layout Standard
16594
16595 \end_layout
16596
16597 \end_inset
16598 </cell>
16599 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16600 \begin_inset Text
16601
16602 \begin_layout Standard
16603 sd
16604 \end_layout
16605
16606 \end_inset
16607 </cell>
16608 </row>
16609 </lyxtabular>
16610
16611 \end_inset
16612
16613
16614 \end_layout
16615
16616 \end_inset
16617
16618
16619 \begin_inset ERT
16620 status collapsed
16621
16622 \begin_layout Standard
16623
16624
16625 \backslash
16626 renewcommand{
16627 \backslash
16628 hline}{
16629 \backslash
16630 myHline}
16631 \end_layout
16632
16633 \end_inset
16634
16635
16636 \end_layout
16637
16638 \begin_layout Standard
16639 \begin_inset VSpace bigskip
16640 \end_inset
16641
16642 To set the line thickness to 1.5\InsetSpace \thinspace{}
16643 pt only for vertical lines, create the following
16644  column format in the document preamble, according to the description in
16645  section\InsetSpace ~
16646
16647 \begin_inset LatexCommand ref
16648 reference "sub:Customized-Format"
16649
16650 \end_inset
16651
16652 :
16653 \end_layout
16654
16655 \begin_layout Standard
16656
16657 \series bold
16658
16659 \backslash
16660 newcolumntype{V}{!{
16661 \backslash
16662 vrule width 1.5pt}}
16663 \end_layout
16664
16665 \begin_layout Standard
16666 For Table\InsetSpace ~
16667
16668 \begin_inset LatexCommand ref
16669 reference "tab:Table-with-vertical"
16670
16671 \end_inset
16672
16673  the LaTeX-argument
16674 \end_layout
16675
16676 \begin_layout Standard
16677
16678 \series bold
16679 VcV
16680 \end_layout
16681
16682 \begin_layout Standard
16683 was used for the last column and
16684 \end_layout
16685
16686 \begin_layout Standard
16687
16688 \series bold
16689 Vc
16690 \end_layout
16691
16692 \begin_layout Standard
16693 for the other columns.
16694 \end_layout
16695
16696 \begin_layout Standard
16697 \begin_inset Float table
16698 wide false
16699 sideways false
16700 status open
16701
16702 \begin_layout Standard
16703 \begin_inset Caption
16704
16705 \begin_layout Standard
16706 \begin_inset LatexCommand label
16707 name "tab:Table-with-vertical"
16708
16709 \end_inset
16710
16711 Table with 1.5\InsetSpace \thinspace{}
16712 pt thick vertical lines
16713 \end_layout
16714
16715 \end_inset
16716
16717
16718 \end_layout
16719
16720 \begin_layout Standard
16721 \align center
16722 \begin_inset Tabular
16723 <lyxtabular version="3" rows="3" columns="3">
16724 <features>
16725 <column alignment="center" valignment="top" width="0" special="Vc">
16726 <column alignment="center" valignment="top" width="0" special="Vc">
16727 <column alignment="center" valignment="top" width="0" special="VcV">
16728 <row topline="true">
16729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16730 \begin_inset Text
16731
16732 \begin_layout Standard
16733 sd
16734 \end_layout
16735
16736 \end_inset
16737 </cell>
16738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16739 \begin_inset Text
16740
16741 \begin_layout Standard
16742
16743 \end_layout
16744
16745 \end_inset
16746 </cell>
16747 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16748 \begin_inset Text
16749
16750 \begin_layout Standard
16751
16752 \end_layout
16753
16754 \end_inset
16755 </cell>
16756 </row>
16757 <row topline="true">
16758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16759 \begin_inset Text
16760
16761 \begin_layout Standard
16762
16763 \end_layout
16764
16765 \end_inset
16766 </cell>
16767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16768 \begin_inset Text
16769
16770 \begin_layout Standard
16771 sd
16772 \end_layout
16773
16774 \end_inset
16775 </cell>
16776 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16777 \begin_inset Text
16778
16779 \begin_layout Standard
16780
16781 \end_layout
16782
16783 \end_inset
16784 </cell>
16785 </row>
16786 <row topline="true" bottomline="true">
16787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16788 \begin_inset Text
16789
16790 \begin_layout Standard
16791
16792 \end_layout
16793
16794 \end_inset
16795 </cell>
16796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16797 \begin_inset Text
16798
16799 \begin_layout Standard
16800
16801 \end_layout
16802
16803 \end_inset
16804 </cell>
16805 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16806 \begin_inset Text
16807
16808 \begin_layout Standard
16809 sd
16810 \end_layout
16811
16812 \end_inset
16813 </cell>
16814 </row>
16815 </lyxtabular>
16816
16817 \end_inset
16818
16819
16820 \end_layout
16821
16822 \end_inset
16823
16824
16825 \end_layout
16826
16827 \begin_layout Subsection
16828 Dashed Lines
16829 \begin_inset LatexCommand index
16830 name "Table Customization ! Dashed Lines"
16831
16832 \end_inset
16833
16834
16835 \end_layout
16836
16837 \begin_layout Standard
16838 \begin_inset ERT
16839 status collapsed
16840
16841 \begin_layout Standard
16842
16843
16844 \backslash
16845 ifarydshln
16846 \end_layout
16847
16848 \end_inset
16849
16850
16851 \begin_inset Note Note
16852 status open
16853
16854 \begin_layout Standard
16855 The following section will only be displayed when you have the LaTeX-package
16856  
16857 \series bold
16858 arydshln
16859 \series default
16860  is installed.
16861 \end_layout
16862
16863 \end_inset
16864
16865
16866 \end_layout
16867
16868 \begin_layout Standard
16869 \begin_inset Float table
16870 placement H
16871 wide false
16872 sideways false
16873 status open
16874
16875 \begin_layout Standard
16876 \begin_inset Caption
16877
16878 \begin_layout Standard
16879 \begin_inset LatexCommand label
16880 name "tab:Table-with-dashed"
16881
16882 \end_inset
16883
16884 Table with dashed lines
16885 \end_layout
16886
16887 \end_inset
16888
16889
16890 \end_layout
16891
16892 \begin_layout Standard
16893 \align center
16894 \begin_inset Tabular
16895 <lyxtabular version="3" rows="5" columns="5">
16896 <features>
16897 <column alignment="center" valignment="top" leftline="true" width="0">
16898 <column alignment="center" valignment="top" leftline="true" width="0">
16899 <column alignment="center" valignment="top" width="0" special=":c">
16900 <column alignment="center" valignment="top" leftline="true" width="0">
16901 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16902 <row topline="true" bottomline="true">
16903 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16904 \begin_inset Text
16905
16906 \begin_layout Standard
16907 a
16908 \end_layout
16909
16910 \end_inset
16911 </cell>
16912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16913 \begin_inset Text
16914
16915 \begin_layout Standard
16916 b
16917 \end_layout
16918
16919 \end_inset
16920 </cell>
16921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16922 \begin_inset Text
16923
16924 \begin_layout Standard
16925 c
16926 \end_layout
16927
16928 \end_inset
16929 </cell>
16930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16931 \begin_inset Text
16932
16933 \begin_layout Standard
16934 d
16935 \end_layout
16936
16937 \end_inset
16938 </cell>
16939 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16940 \begin_inset Text
16941
16942 \begin_layout Standard
16943 e
16944 \end_layout
16945
16946 \end_inset
16947 </cell>
16948 </row>
16949 <row topline="true">
16950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16951 \begin_inset Text
16952
16953 \begin_layout Standard
16954 f
16955 \end_layout
16956
16957 \end_inset
16958 </cell>
16959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16960 \begin_inset Text
16961
16962 \begin_layout Standard
16963 g
16964 \end_layout
16965
16966 \end_inset
16967 </cell>
16968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16969 \begin_inset Text
16970
16971 \begin_layout Standard
16972 h
16973 \end_layout
16974
16975 \end_inset
16976 </cell>
16977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16978 \begin_inset Text
16979
16980 \begin_layout Standard
16981 i
16982 \end_layout
16983
16984 \end_inset
16985 </cell>
16986 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16987 \begin_inset Text
16988
16989 \begin_layout Standard
16990 j
16991 \end_layout
16992
16993 \end_inset
16994 </cell>
16995 </row>
16996 <row>
16997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16998 \begin_inset Text
16999
17000 \begin_layout Standard
17001 \begin_inset ERT
17002 status collapsed
17003
17004 \begin_layout Standard
17005
17006
17007 \backslash
17008 hdashline 
17009 \end_layout
17010
17011 \end_inset
17012
17013 k
17014 \end_layout
17015
17016 \end_inset
17017 </cell>
17018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17019 \begin_inset Text
17020
17021 \begin_layout Standard
17022 l
17023 \end_layout
17024
17025 \end_inset
17026 </cell>
17027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17028 \begin_inset Text
17029
17030 \begin_layout Standard
17031 m
17032 \end_layout
17033
17034 \end_inset
17035 </cell>
17036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17037 \begin_inset Text
17038
17039 \begin_layout Standard
17040 n
17041 \end_layout
17042
17043 \end_inset
17044 </cell>
17045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17046 \begin_inset Text
17047
17048 \begin_layout Standard
17049 o
17050 \end_layout
17051
17052 \end_inset
17053 </cell>
17054 </row>
17055 <row topline="true">
17056 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17057 \begin_inset Text
17058
17059 \begin_layout Standard
17060 \begin_inset ERT
17061 status collapsed
17062
17063 \begin_layout Standard
17064
17065
17066 \backslash
17067 cdashline{4-5}
17068 \end_layout
17069
17070 \end_inset
17071
17072 p
17073 \end_layout
17074
17075 \end_inset
17076 </cell>
17077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17078 \begin_inset Text
17079
17080 \begin_layout Standard
17081 q
17082 \end_layout
17083
17084 \end_inset
17085 </cell>
17086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
17087 \begin_inset Text
17088
17089 \begin_layout Standard
17090 r
17091 \end_layout
17092
17093 \end_inset
17094 </cell>
17095 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
17096 \begin_inset Text
17097
17098 \begin_layout Standard
17099 s
17100 \end_layout
17101
17102 \end_inset
17103 </cell>
17104 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17105 \begin_inset Text
17106
17107 \begin_layout Standard
17108
17109 \end_layout
17110
17111 \end_inset
17112 </cell>
17113 </row>
17114 <row topline="true" bottomline="true">
17115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17116 \begin_inset Text
17117
17118 \begin_layout Standard
17119 t
17120 \end_layout
17121
17122 \end_inset
17123 </cell>
17124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17125 \begin_inset Text
17126
17127 \begin_layout Standard
17128 u
17129 \end_layout
17130
17131 \end_inset
17132 </cell>
17133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17134 \begin_inset Text
17135
17136 \begin_layout Standard
17137 v
17138 \end_layout
17139
17140 \end_inset
17141 </cell>
17142 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17143 \begin_inset Text
17144
17145 \begin_layout Standard
17146 w
17147 \end_layout
17148
17149 \end_inset
17150 </cell>
17151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17152 \begin_inset Text
17153
17154 \begin_layout Standard
17155 x
17156 \end_layout
17157
17158 \end_inset
17159 </cell>
17160 </row>
17161 </lyxtabular>
17162
17163 \end_inset
17164
17165
17166 \end_layout
17167
17168 \end_inset
17169
17170
17171 \end_layout
17172
17173 \begin_layout Standard
17174 LyX doesn't natively support dashed lines, so you have to use ERT.
17175  As prerequisite the LaTeX-package 
17176 \series bold
17177 arydshln
17178 \series default
17179
17180 \begin_inset LatexCommand index
17181 name "LaTeX-packages ! arydshln"
17182
17183 \end_inset
17184
17185  must be loaded in the document preamble with the command
17186 \end_layout
17187
17188 \begin_layout Standard
17189
17190 \series bold
17191
17192 \backslash
17193 usepackage{arydshln}
17194 \end_layout
17195
17196 \begin_layout Standard
17197 To make a vertical line dashed, enter the colon 
17198 \begin_inset Quotes eld
17199 \end_inset
17200
17201 :
17202 \begin_inset Quotes erd
17203 \end_inset
17204
17205  together with the character for the horizontal alignment as LaTeX-argument
17206  in the table cell dialog.
17207 \end_layout
17208
17209 \begin_layout Standard
17210 For a horizontal dashed line add the command
17211 \end_layout
17212
17213 \begin_layout Standard
17214
17215 \series bold
17216
17217 \backslash
17218 hdashline
17219 \end_layout
17220
17221 \begin_layout Standard
17222 in ERT as first element of the first cell in the table row.
17223 \end_layout
17224
17225 \begin_layout Standard
17226 For dashed multicolumn lines use the command
17227 \end_layout
17228
17229 \begin_layout Standard
17230
17231 \series bold
17232
17233 \backslash
17234 cdashline{line number
17235 \series default
17236 }
17237 \end_layout
17238
17239 \begin_layout Standard
17240 in ERT as first element of the first cell in the table row.
17241  If you have for example a multicolumn spanning over columns 2 to 4 and
17242  you want to have a dashed line above, add the command
17243 \end_layout
17244
17245 \begin_layout Standard
17246
17247 \series bold
17248
17249 \backslash
17250 cdashline{2-4}
17251 \end_layout
17252
17253 \begin_layout Standard
17254 as first element of the first cell in the row of the multicolumn.
17255 \end_layout
17256
17257 \begin_layout Standard
17258 \begin_inset VSpace bigskip
17259 \end_inset
17260
17261
17262 \end_layout
17263
17264 \begin_layout Standard
17265 Table\InsetSpace ~
17266
17267 \begin_inset LatexCommand ref
17268 reference "tab:Table-with-dashed"
17269
17270 \end_inset
17271
17272  was created using 
17273 \begin_inset Quotes eld
17274 \end_inset
17275
17276
17277 \series bold
17278 :c
17279 \series default
17280
17281 \begin_inset Quotes erd
17282 \end_inset
17283
17284  as LaTeX-argument of the third column.
17285  The ERT command 
17286 \series bold
17287
17288 \backslash
17289 hdashline
17290 \series default
17291  was inserted to the first cell of the third row and the the ERT command
17292 \newline
17293
17294  
17295 \series bold
17296
17297 \backslash
17298 cdashline{4-5}
17299 \series default
17300  was inserted to the first cell of the fourth row.
17301 \end_layout
17302
17303 \begin_layout Standard
17304 \begin_inset Note Greyedout
17305 status open
17306
17307 \begin_layout Standard
17308
17309 \series bold
17310 Note:
17311 \series default
17312  The used LaTeX-package 
17313 \series bold
17314 arydshln
17315 \series default
17316  is apparently not compatible with the LaTeX-package 
17317 \series bold
17318 colortbl
17319 \series default
17320
17321 \begin_inset LatexCommand index
17322 name "LaTeX-packages ! colortbl"
17323
17324 \end_inset
17325
17326  that is used for colored tables in section\InsetSpace ~
17327
17328 \begin_inset LatexCommand ref
17329 reference "sec:Colored-Tables"
17330
17331 \end_inset
17332
17333 .
17334  That means colored tables cannot have dashed lines.
17335 \end_layout
17336
17337 \end_inset
17338
17339
17340 \end_layout
17341
17342 \begin_layout Standard
17343 \begin_inset ERT
17344 status collapsed
17345
17346 \begin_layout Standard
17347
17348
17349 \backslash
17350 else
17351 \end_layout
17352
17353 \end_inset
17354
17355
17356 \begin_inset Note Note
17357 status open
17358
17359 \begin_layout Standard
17360 The following will be displayed when the LaTeX-package 
17361 \series bold
17362 arydshln
17363 \series default
17364  is not installed:
17365 \end_layout
17366
17367 \end_inset
17368
17369
17370 \end_layout
17371
17372 \begin_layout Standard
17373 You need to install the package 
17374 \series bold
17375 arydshln
17376 \series default
17377  to see the contents of this section in the output.
17378 \end_layout
17379
17380 \begin_layout Standard
17381 \begin_inset ERT
17382 status collapsed
17383
17384 \begin_layout Standard
17385
17386
17387 \backslash
17388 fi
17389 \end_layout
17390
17391 \end_inset
17392
17393
17394 \end_layout
17395
17396 \begin_layout Chapter
17397 Floats
17398 \begin_inset LatexCommand index
17399 name "Floats"
17400
17401 \end_inset
17402
17403
17404 \begin_inset LatexCommand label
17405 name "cha:Floats"
17406
17407 \end_inset
17408
17409
17410 \end_layout
17411
17412 \begin_layout Section
17413 Introduction
17414 \begin_inset LatexCommand label
17415 name "sec:FloatIntroduction"
17416
17417 \end_inset
17418
17419
17420 \begin_inset LatexCommand index
17421 name "Floats ! Introduction"
17422
17423 \end_inset
17424
17425
17426 \end_layout
17427
17428 \begin_layout Standard
17429 A float is a block of text associated with some sort of label, which doesn't
17430  have a fixed location.
17431  It can 
17432 \begin_inset Quotes eld
17433 \end_inset
17434
17435 float
17436 \begin_inset Quotes erd
17437 \end_inset
17438
17439  forward or backward a page or two, to wherever it fits best.
17440  
17441 \family sans
17442 Footnotes
17443 \family default
17444  and 
17445 \family sans
17446 Margin\InsetSpace ~
17447 Notes
17448 \family default
17449  are also floats, because they can float to the next page when there are
17450  too many notes at the page.
17451 \end_layout
17452
17453 \begin_layout Standard
17454 Floats allow a high quality layout.
17455  Images and tables can evenly be spread to the pages to avoid white space
17456  and pages without text.
17457  As the floating often destroys the context between the text and the image/table
17458 , every float can be referenced in the text.
17459  Floats are therefore numbered.
17460  Referencing is described in section\InsetSpace ~
17461
17462 \begin_inset LatexCommand ref
17463 reference "sec:Referencing-Floats"
17464
17465 \end_inset
17466
17467 .
17468 \end_layout
17469
17470 \begin_layout Standard
17471 To insert a float, use the menu 
17472 \family sans
17473 Insert\SpecialChar \menuseparator
17474 Float
17475 \family default
17476 .
17477  This inserts the 
17478 \family sans
17479 Caption
17480 \family default
17481  inset, a box with a label.
17482  The label will automatically be translated to the document language in
17483  the output.
17484  Behind the label you can insert the caption text.
17485  The image or table is inserted above or below the caption in a separate
17486  paragraph within the float.
17487  More about the caption placement is described in section\InsetSpace ~
17488
17489 \begin_inset LatexCommand ref
17490 reference "sec:Caption-Placement"
17491
17492 \end_inset
17493
17494 .
17495  To keep your LyX-document readable, you can open and close the float box
17496  by left-clicking on the box label.
17497  A closed float box looks like this: 
17498 \begin_inset Graphics
17499         filename clipart/floatQt4.png
17500         scale 70
17501
17502 \end_inset
17503
17504  -- a gray button with a red label.
17505 \end_layout
17506
17507 \begin_layout Standard
17508 It is recommended to insert floats as a separate paragraph to avoid possible
17509  LaTeX-errors that can occur when the surrounding text is specially formatted.
17510 \end_layout
17511
17512 \begin_layout Standard
17513 Existing figures or tables can be put into a float by marking them and then
17514  pressing the corresponding toolbar button for a new float.
17515 \end_layout
17516
17517 \begin_layout Section
17518 Float Types
17519 \end_layout
17520
17521 \begin_layout Standard
17522 Besides figure and table floats that are described in section\InsetSpace ~
17523
17524 \begin_inset LatexCommand ref
17525 reference "sec:Figure-Floats"
17526
17527 \end_inset
17528
17529  and 
17530 \begin_inset LatexCommand ref
17531 reference "sec:Table-Floats"
17532
17533 \end_inset
17534
17535 , respectively, LyX offers the float types 
17536 \series bold
17537 Algorithm
17538 \series default
17539  and 
17540 \series bold
17541 Text\InsetSpace ~
17542 Wrap\InsetSpace ~
17543 Float
17544 \series default
17545 .
17546 \end_layout
17547
17548 \begin_layout Subsection
17549 Algorithm Floats
17550 \begin_inset LatexCommand index
17551 name "Floats ! Algorithms"
17552
17553 \end_inset
17554
17555
17556 \end_layout
17557
17558 \begin_layout Standard
17559 \begin_inset Float algorithm
17560 placement h
17561 wide false
17562 sideways false
17563 status open
17564
17565 \begin_layout Standard
17566 \begin_inset Caption
17567
17568 \begin_layout Standard
17569 \begin_inset LatexCommand label
17570 name "alg:Example-Algorithm-float"
17571
17572 \end_inset
17573
17574 Example Algorithm float
17575 \end_layout
17576
17577 \end_inset
17578
17579
17580 \end_layout
17581
17582 \begin_layout LyX-Code
17583 for I in 1..N loop
17584 \newline
17585  Sum:= Sum + A(I); /*senseless comment*/
17586 \newline
17587 end loop
17588 \begin_inset VSpace -4mm
17589 \end_inset
17590
17591
17592 \end_layout
17593
17594 \end_inset
17595
17596
17597 \end_layout
17598
17599 \begin_layout Standard
17600 This float type is inserted with the menu 
17601 \family sans
17602 Insert\SpecialChar \menuseparator
17603 Floats\SpecialChar \menuseparator
17604 Algorithm
17605 \family default
17606 .
17607  It is used for program codes and descriptions of algorithms.
17608  A possible environment for algorithms is the 
17609 \family sans
17610 LyX-Code
17611 \family default
17612 , described in LyX's 
17613 \emph on
17614 Userguide
17615 \emph default
17616 .
17617  Algorithm\InsetSpace ~
17618
17619 \begin_inset LatexCommand ref
17620 reference "alg:Example-Algorithm-float"
17621
17622 \end_inset
17623
17624  is an example of an algorithm float where -4\InsetSpace \thinspace{}
17625 mm vertical space was added
17626  at the end of the float to have the bottom rule exactly below the last
17627  text line.
17628 \end_layout
17629
17630 \begin_layout Standard
17631 The float label is not automatically translated into the document language.
17632  If your document is not in English, you have to do this manually by adding
17633  the following line to the document preamble
17634 \series bold
17635 :
17636 \end_layout
17637
17638 \begin_layout Standard
17639
17640 \series bold
17641
17642 \backslash
17643 floatname{algorithm}{your\InsetSpace ~
17644 name}
17645 \end_layout
17646
17647 \begin_layout Standard
17648
17649 \family sans
17650 your\InsetSpace ~
17651 name
17652 \family default
17653  is the word 
17654 \begin_inset Quotes eld
17655 \end_inset
17656
17657
17658 \emph on
17659 algorithm
17660 \emph default
17661
17662 \begin_inset Quotes erd
17663 \end_inset
17664
17665  in your language.
17666 \end_layout
17667
17668 \begin_layout Description
17669
17670 \series bold
17671 Note:
17672 \series default
17673  When the LaTeX-package 
17674 \series bold
17675 hyperref
17676 \series default
17677
17678 \begin_inset LatexCommand index
17679 name "LaTeX-packages ! hyperref"
17680
17681 \end_inset
17682
17683  is used to link cross-references to floats in the PDF-output, it must be
17684  loaded in the document preamble before the definition of floats to be able
17685  to reference floats.
17686  As LyX sets the float definition for algorithm floats automatically before
17687  the user editable part of the document preamble, you need to insert the
17688  following preamble lines 
17689 \emph on
17690 after
17691 \emph default
17692  the loading command of 
17693 \series bold
17694 hyperref
17695 \series default
17696 :
17697 \series bold
17698
17699 \begin_inset VSpace defskip
17700 \end_inset
17701
17702
17703 \newline
17704
17705 \backslash
17706 newfloat{Xalgorithm}{tbp}{loa}
17707 \newline
17708
17709 \backslash
17710 floatname{Xalgorithm}{your\InsetSpace ~
17711 name}
17712 \newline
17713
17714 \backslash
17715 newcommand{
17716 \backslash
17717 theHalgorithm}{
17718 \backslash
17719 theHXalgorithm}
17720 \newline
17721
17722 \backslash
17723 renewenvironment{algorithm}[1][tbp]
17724 \newline
17725
17726 \begin_inset ERT
17727 status collapsed
17728
17729 \begin_layout Standard
17730
17731
17732 \backslash
17733 hphantom{ }
17734 \end_layout
17735
17736 \end_inset
17737
17738 {
17739 \backslash
17740 begin{Xalgorithm}[#1]}{
17741 \backslash
17742 end{Xalgorithm}}
17743 \begin_inset VSpace defskip
17744 \end_inset
17745
17746
17747 \series default
17748
17749 \newline
17750 Where 
17751 \family sans
17752 your\InsetSpace ~
17753 name
17754 \family default
17755  is the word 
17756 \begin_inset Quotes eld
17757 \end_inset
17758
17759
17760 \emph on
17761 algorithm
17762 \emph default
17763
17764 \begin_inset Quotes erd
17765 \end_inset
17766
17767  in your language.
17768 \end_layout
17769
17770 \begin_layout Standard
17771 Algorithm floats are not by default numbered in the scheme 
17772 \begin_inset Quotes eld
17773 \end_inset
17774
17775 chapter.algorithm
17776 \begin_inset Quotes erd
17777 \end_inset
17778
17779  like it is the case for table and figure floats in many document-classes.
17780  To number algorithm floats in the same scheme, add this command to your
17781  document preamble:
17782 \end_layout
17783
17784 \begin_layout Standard
17785
17786 \series bold
17787
17788 \backslash
17789 numberwithin{algorithm}{chapter}
17790 \end_layout
17791
17792 \begin_layout Standard
17793 If you use the LaTeX-package 
17794 \series bold
17795 hyperref
17796 \series default
17797 , add this line instead 
17798 \emph on
17799 after
17800 \emph default
17801  the definition of 
17802 \family sans
17803 Xalgorithm
17804 \family default
17805  (the commands from above) to the preamble:
17806 \end_layout
17807
17808 \begin_layout Standard
17809
17810 \series bold
17811
17812 \backslash
17813 numberwithin{Xalgorithm}{chapter}
17814 \end_layout
17815
17816 \begin_layout Standard
17817 To be able to use the command 
17818 \series bold
17819
17820 \backslash
17821 numberwithin
17822 \series default
17823 , set in the tab 
17824 \family sans
17825 Math\InsetSpace ~
17826 Options
17827 \family default
17828  in the document settings the option 
17829 \family sans
17830 Use\InsetSpace ~
17831 AMS\InsetSpace ~
17832 math\InsetSpace ~
17833 package
17834 \family default
17835 .
17836 \end_layout
17837
17838 \begin_layout Subsection
17839 Text Wrap Floats
17840 \begin_inset LatexCommand index
17841 name "Floats ! Text Wrap Floats"
17842
17843 \end_inset
17844
17845
17846 \begin_inset LatexCommand label
17847 name "sub:floatflt-wrap-float"
17848
17849 \end_inset
17850
17851
17852 \end_layout
17853
17854 \begin_layout Standard
17855 This float type is used if you want to 
17856 \begin_inset Quotes eld
17857 \end_inset
17858
17859 wrap
17860 \begin_inset Quotes erd
17861 \end_inset
17862
17863  text around a figure so that it only occupies some fraction of the column
17864  width.
17865  It can be inserted using the menu 
17866 \begin_inset Wrap figure
17867 placement l
17868 width "40col%"
17869 status open
17870
17871 \begin_layout Standard
17872 \begin_inset Graphics
17873         filename clipart/mobius.eps
17874         display color
17875         width 40col%
17876         rotateOrigin center
17877
17878 \end_inset
17879
17880
17881 \end_layout
17882
17883 \begin_layout Standard
17884 \begin_inset Caption
17885
17886 \begin_layout Standard
17887 \begin_inset LatexCommand label
17888 name "fig:This-is-a"
17889
17890 \end_inset
17891
17892 This is a wrapped figure, and this is the brilliant caption that describes
17893  it.
17894 \begin_inset VSpace medskip
17895 \end_inset
17896
17897
17898 \end_layout
17899
17900 \end_inset
17901
17902
17903 \end_layout
17904
17905 \end_inset
17906
17907  
17908 \family sans
17909 Insert\SpecialChar \menuseparator
17910 Floats\SpecialChar \menuseparator
17911 Text\InsetSpace ~
17912 Wrap\InsetSpace ~
17913 Float
17914 \family default
17915  if the LaTeX-package 
17916 \series bold
17917 floatf\SpecialChar \textcompwordmark{}
17918 lt
17919 \series default
17920
17921 \begin_inset LatexCommand index
17922 name "LaTeX-packages ! floatflt"
17923
17924 \end_inset
17925
17926  is installed.
17927 \begin_inset Foot
17928 status collapsed
17929
17930 \begin_layout Standard
17931 Installing a LaTeX-package is explained it in the 
17932 \emph on
17933 LaTeX\InsetSpace ~
17934 Configuration
17935 \emph default
17936  manual.
17937 \end_layout
17938
17939 \end_inset
17940
17941  The width and placement of the float is adjusted by right-clicking on the
17942  float box.
17943  Figure\InsetSpace ~
17944
17945 \begin_inset LatexCommand ref
17946 reference "fig:This-is-a"
17947
17948 \end_inset
17949
17950  is an example text wrap float with a width of 40
17951 \begin_inset Formula $\,$
17952 \end_inset
17953
17954 col%.
17955 \begin_inset Foot
17956 status collapsed
17957
17958 \begin_layout Standard
17959 Available units are explained in 
17960 \begin_inset LatexCommand ref
17961 reference "cha:Units-available-in"
17962
17963 \end_inset
17964
17965 .
17966 \end_layout
17967
17968 \end_inset
17969
17970  Some space was added under the caption to separate it better from the surroundi
17971 ng text.
17972 \end_layout
17973
17974 \begin_layout Standard
17975 The LaTeX-package 
17976 \series bold
17977 floatf\SpecialChar \textcompwordmark{}
17978 lt
17979 \series default
17980  also supports table wrap floats, but they are not yet supported by LyX.
17981  If you need this, read the documentation of 
17982 \series bold
17983 floatf\SpecialChar \textcompwordmark{}
17984 lt
17985 \series default
17986  
17987 \begin_inset LatexCommand cite
17988 key "floatflt"
17989
17990 \end_inset
17991
17992 .
17993 \end_layout
17994
17995 \begin_layout Standard
17996 \begin_inset Note Greyedout
17997 status open
17998
17999 \begin_layout Standard
18000
18001 \series bold
18002 Note:
18003 \series default
18004  Text\InsetSpace ~
18005 wrap float floats are fragile! E.\InsetSpace \thinspace{}
18006 g.\InsetSpace ~
18007 having a figure too close to the bottom
18008  of the page can mess things up in the way that the float doesn't appear
18009  in the output or that it is placed over some other text.
18010 \begin_inset Foot
18011 status open
18012
18013 \begin_layout Standard
18014 The better solution is to use the LaTeX-package 
18015 \series bold
18016 wrapf\SpecialChar \textcompwordmark{}
18017 ig
18018 \series default
18019
18020 \begin_inset LatexCommand index
18021 name "LaTeX-packages ! wrapfig\\vspace{4mm}"
18022
18023 \end_inset
18024
18025  instead of 
18026 \series bold
18027 floatf\SpecialChar \textcompwordmark{}
18028 lt
18029 \series default
18030 , but it is currently not supported by LyX.
18031 \end_layout
18032
18033 \end_inset
18034
18035
18036 \end_layout
18037
18038 \end_inset
18039
18040
18041 \end_layout
18042
18043 \begin_layout Standard
18044 In general:
18045 \end_layout
18046
18047 \begin_layout Itemize
18048 Wrap floats should not be placed in paragraphs that run over a page break.
18049  That means that wrap floats should better be inserted to the exact place
18050  when the document is nearly finished and you are able to estimate where
18051  page breaks will appear.
18052 \end_layout
18053
18054 \begin_layout Itemize
18055 Wrap floats should either be placed in an own paragraph before the paragraph
18056  where they should wrap into or within a paragraph.
18057 \end_layout
18058
18059 \begin_layout Itemize
18060 Wrap floats in consecutive paragraphs may cause troubles, so assure that
18061  there is a text paragraph between them as separator.
18062 \end_layout
18063
18064 \begin_layout Itemize
18065 Wrap floats are not allowed in section headings or tables.
18066 \end_layout
18067
18068 \begin_layout Section
18069 Float Numbering
18070 \begin_inset LatexCommand label
18071 name "sec:Float-Numbering"
18072
18073 \end_inset
18074
18075
18076 \begin_inset LatexCommand index
18077 name "Floats ! Numbering"
18078
18079 \end_inset
18080
18081
18082 \end_layout
18083
18084 \begin_layout Standard
18085 Floats are usually numbered either independent from the sections the floats
18086  are in, or in the scheme 
18087 \begin_inset Quotes eld
18088 \end_inset
18089
18090 chapter.number
18091 \begin_inset Quotes erd
18092 \end_inset
18093
18094  or 
18095 \begin_inset Quotes eld
18096 \end_inset
18097
18098 section.number
18099 \begin_inset Quotes erd
18100 \end_inset
18101
18102 .
18103  This depends on the used document class.
18104 \end_layout
18105
18106 \begin_layout Standard
18107 To change the section independent numbering, you can use this command in
18108  the document preamble:
18109 \end_layout
18110
18111 \begin_layout Standard
18112
18113 \series bold
18114
18115 \backslash
18116 renewcommand{
18117 \backslash
18118 thetable}{
18119 \backslash
18120 roman{table}}
18121 \end_layout
18122
18123 \begin_layout Standard
18124
18125 \series bold
18126
18127 \backslash
18128 thetable
18129 \series default
18130  is the command that prints the table number, for figure floats, the command
18131  would be 
18132 \series bold
18133
18134 \backslash
18135 thefigure
18136 \series default
18137 .
18138  The command 
18139 \series bold
18140
18141 \backslash
18142 roman
18143 \series default
18144  prints in the command above the table number as small roman number.
18145 \end_layout
18146
18147 \begin_layout Standard
18148 To change the numbering scheme for example to 
18149 \begin_inset Quotes eld
18150 \end_inset
18151
18152 subsection.number
18153 \begin_inset Quotes erd
18154 \end_inset
18155
18156 , use this command in the preamble:
18157 \end_layout
18158
18159 \begin_layout Standard
18160
18161 \series bold
18162
18163 \backslash
18164 numberwithin{table}{subsection}
18165 \end_layout
18166
18167 \begin_layout Standard
18168 To be able to use the command 
18169 \series bold
18170
18171 \backslash
18172 numberwithin
18173 \series default
18174 , set in the tab 
18175 \family sans
18176 Math\InsetSpace ~
18177 Options
18178 \family default
18179  in the document settings the option 
18180 \family sans
18181 Use\InsetSpace ~
18182 AMS\InsetSpace ~
18183 math\InsetSpace ~
18184 package
18185 \family default
18186 .
18187 \end_layout
18188
18189 \begin_layout Standard
18190 Please also have a look at section\InsetSpace ~
18191
18192 \begin_inset LatexCommand ref
18193 reference "sub:Footnote-Numbering"
18194
18195 \end_inset
18196
18197  for the details and important notes about the numbering commands.
18198 \end_layout
18199
18200 \begin_layout Section
18201 Referencing Floats
18202 \begin_inset LatexCommand label
18203 name "sec:Referencing-Floats"
18204
18205 \end_inset
18206
18207
18208 \begin_inset LatexCommand index
18209 name "Floats ! References"
18210
18211 \end_inset
18212
18213
18214 \begin_inset LatexCommand index
18215 name "References"
18216
18217 \end_inset
18218
18219
18220 \end_layout
18221
18222 \begin_layout Standard
18223 To reference a float, insert a label into its caption using the menu 
18224 \family sans
18225 Insert\SpecialChar \menuseparator
18226 Label
18227 \family default
18228  or the toolbar button 
18229 \begin_inset Graphics
18230         filename ../images/label-insert.xpm
18231         scale 85
18232
18233 \end_inset
18234
18235 .
18236  A grey label box like this one: 
18237 \begin_inset Graphics
18238         filename clipart/labelQt4.png
18239         scale 85
18240
18241 \end_inset
18242
18243  will be inserted and the label window pops up asking for the label text.
18244  LyX offers as text the first words of the caption with a prefix.
18245  The prefix depends on the float type, e.\InsetSpace \thinspace{}
18246 g.\InsetSpace ~
18247 for figure floats the prefix will
18248  be "
18249 \family sans
18250 fig:
18251 \family default
18252 ".
18253 \end_layout
18254
18255 \begin_layout Standard
18256 The label is used as anchor and name for the reference.
18257  You can refer to the label using the menu 
18258 \family sans
18259 Insert\SpecialChar \menuseparator
18260 Cross-reference
18261 \family default
18262  or the toolbar button 
18263 \begin_inset Graphics
18264         filename ../images/dialog-show-new-inset_ref.xpm
18265         scale 85
18266
18267 \end_inset
18268
18269 .
18270  A grey cross-reference box like this one: 
18271 \begin_inset Graphics
18272         filename clipart/referenceQt4.png
18273         scale 85
18274
18275 \end_inset
18276
18277  will be inserted and the cross-reference window appear showing all labels
18278  of the document.
18279  If you have multiple LyX-documents opened, choose the one you are working
18280  on from the drop-list at the top of the dialog.
18281  You can now sort the labels alphabetically and then choose one.
18282  At the position of the cross-reference box the float number will appear
18283  in the output.
18284 \end_layout
18285
18286 \begin_layout Standard
18287 It is recommended to use a protected space between the cross-reference name
18288  and its number to avoid line breaks between them.
18289  If a cross-reference refers to a non-existing label, you will see two question
18290  marks in the output instead of the reference.
18291 \end_layout
18292
18293 \begin_layout Standard
18294 You can change labels at any time by clicking on the label box.
18295  References to the changed label will automatically change its link to the
18296  new label text, so that you don't need to take care about this.
18297 \end_layout
18298
18299 \begin_layout Standard
18300 The button 
18301 \family sans
18302 Go\InsetSpace ~
18303 to\InsetSpace ~
18304 Label
18305 \family default
18306  in the cross-reference window sets the cursor before the referred label.
18307  The button text changes then to Go\InsetSpace ~
18308 Back and you can use it to set the cursor
18309  back to the cross-reference.
18310  Right-clicking on a cross-reference box also sets the cursor before the
18311  referenced label but without a possibility to go back.
18312 \end_layout
18313
18314 \begin_layout Subsection
18315 Cross-Reference Formats
18316 \begin_inset LatexCommand label
18317 name "sub:Cross-Reference-Formats"
18318
18319 \end_inset
18320
18321
18322 \begin_inset LatexCommand index
18323 name "References ! Formats"
18324
18325 \end_inset
18326
18327
18328 \end_layout
18329
18330 \begin_layout Standard
18331 There are six varieties of cross-references:
18332 \end_layout
18333
18334 \begin_layout Description
18335 <reference>: prints the float number, this is the default: 
18336 \begin_inset LatexCommand ref
18337 reference "fig:Two-distorted-images"
18338
18339 \end_inset
18340
18341
18342 \end_layout
18343
18344 \begin_layout Description
18345 (<reference>): prints the float number within two parentheses, this is the
18346  style normally used to reference formulas, especially when the reference
18347  name 
18348 \begin_inset Quotes eld
18349 \end_inset
18350
18351 Equation
18352 \begin_inset Quotes erd
18353 \end_inset
18354
18355  is omitted: 
18356 \begin_inset LatexCommand eqref
18357 reference "eq:Wgn"
18358
18359 \end_inset
18360
18361
18362 \end_layout
18363
18364 \begin_layout Description
18365 <page>: prints the page number: Page\InsetSpace ~
18366
18367 \begin_inset LatexCommand pageref
18368 reference "fig:Two-distorted-images"
18369
18370 \end_inset
18371
18372
18373 \end_layout
18374
18375 \begin_layout Description
18376 on\InsetSpace ~
18377 page\InsetSpace ~
18378 <page>: prints the text "on page" and the page number: 
18379 \begin_inset LatexCommand vpageref
18380 reference "fig:Two-distorted-images"
18381
18382 \end_inset
18383
18384
18385 \end_layout
18386
18387 \begin_layout Description
18388 <reference>\InsetSpace ~
18389 on\InsetSpace ~
18390 page\InsetSpace ~
18391 <page>: prints the float number, the text "on page", and
18392  the page number: 
18393 \begin_inset LatexCommand vref
18394 reference "fig:Two-distorted-images"
18395
18396 \end_inset
18397
18398
18399 \end_layout
18400
18401 \begin_layout Description
18402 Formatted\InsetSpace ~
18403 reference: prints a self defined cross-reference format.
18404  
18405 \begin_inset Note Greyedout
18406 status open
18407
18408 \begin_layout Standard
18409
18410 \series bold
18411 Note:
18412 \series default
18413  This feature is only available when you have the LaTeX-package 
18414 \series bold
18415 prettyref
18416 \series default
18417  installed.
18418 \end_layout
18419
18420 \end_inset
18421
18422
18423 \end_layout
18424
18425 \begin_layout Standard
18426 Note that the style <page> won't print the page number if the label is on
18427  the previous, the same, or the next page.
18428  You will e.\InsetSpace \thinspace{}
18429 g.\InsetSpace ~
18430 see the text 
18431 \begin_inset Quotes eld
18432 \end_inset
18433
18434
18435 \family sans
18436 on this page
18437 \family default
18438
18439 \begin_inset Quotes erd
18440 \end_inset
18441
18442  instead.
18443 \end_layout
18444
18445 \begin_layout Standard
18446 The number and current page of the referred document part in the output,
18447  is automatically calculated by LaTeX.
18448  The varieties are adjusted in the field 
18449 \family sans
18450 Format
18451 \family default
18452  of the cross-reference window, that appear when you click on the cross-referenc
18453 e box.
18454 \end_layout
18455
18456 \begin_layout Subsection
18457 Referencing Subfigures
18458 \begin_inset LatexCommand label
18459 name "sub:Referencing-Subfigures"
18460
18461 \end_inset
18462
18463
18464 \begin_inset LatexCommand index
18465 name "References ! to Subfigures"
18466
18467 \end_inset
18468
18469
18470 \end_layout
18471
18472 \begin_layout Standard
18473 Currently referencing subfigures is not supported by LyX, so you have to
18474  use LaTeX-commands.
18475  The label is the created with the command
18476 \end_layout
18477
18478 \begin_layout Standard
18479
18480 \series bold
18481
18482 \backslash
18483 label{fig:YourLabelName}
18484 \end_layout
18485
18486 \begin_layout Standard
18487 that is directly inserted into the subfigure caption field.
18488  To reference the label add this command in ERT
18489 \end_layout
18490
18491 \begin_layout Standard
18492
18493 \series bold
18494
18495 \backslash
18496 ref{fig:YourLabelName}
18497 \end_layout
18498
18499 \begin_layout Standard
18500 to the position in your document where the reference should be placed.
18501  Here is a reference to a subfigure: Subfigure\InsetSpace ~
18502
18503 \begin_inset ERT
18504 status collapsed
18505
18506 \begin_layout Standard
18507
18508
18509 \backslash
18510 ref{fig:Platypus}
18511 \end_layout
18512
18513 \end_inset
18514
18515 .
18516 \end_layout
18517
18518 \begin_layout Subsection
18519 Automatic Reference Naming
18520 \begin_inset LatexCommand index
18521 name "References ! Automatic Reference Naming"
18522
18523 \end_inset
18524
18525
18526 \end_layout
18527
18528 \begin_layout Standard
18529 The LaTeX-package 
18530 \series bold
18531 hyperref
18532 \series default
18533  provides a very useful feature that cross-references automatically include
18534  the name of the referenced floats (or text parts like sections).
18535  You save to write e.\InsetSpace \thinspace{}
18536 g.\InsetSpace ~
18537 the name 
18538 \begin_inset Quotes eld
18539 \end_inset
18540
18541 Figure
18542 \begin_inset Quotes erd
18543 \end_inset
18544
18545  before every reference box.
18546  To get this automatic reference naming, you have to load the LaTeX-package
18547  
18548 \series bold
18549 hyperref
18550 \series default
18551
18552 \begin_inset LatexCommand index
18553 name "LaTeX-packages ! hyperref"
18554
18555 \end_inset
18556
18557  in the document preamble with
18558 \end_layout
18559
18560 \begin_layout Standard
18561
18562 \series bold
18563
18564 \backslash
18565 usepackage[pdfborder={0 0 0}]{hyperref}
18566 \newline
18567
18568 \backslash
18569 AtBeginDocument{
18570 \backslash
18571 renewcommand{
18572 \backslash
18573 ref}[1]{
18574 \backslash
18575 mbox{
18576 \backslash
18577 autoref{#1}}}}
18578 \end_layout
18579
18580 \begin_layout Standard
18581
18582 \series bold
18583 hyperref
18584 \series default
18585  is used to link cross-references in the DVI- and PDF-output, this means
18586  that the reader of your document will be able to click on a table of content
18587  (TOC) entry or on a reference and he will be shown the referenced document
18588  part.
18589  
18590 \series bold
18591 hyperref
18592 \series default
18593  also creates PDF-bookmarks for every section of your document to make it
18594  easier for readers to navigate through the document.
18595  This is also used in this document but when you have a look in the document
18596  preamble you will find various options in the load command of 
18597 \series bold
18598 hyperref
18599 \series default
18600 .
18601  To learn more about the 
18602 \series bold
18603 hyperref
18604 \series default
18605  package, we refer to its documentation 
18606 \begin_inset LatexCommand cite
18607 key "hyperref"
18608
18609 \end_inset
18610
18611 .
18612 \end_layout
18613
18614 \begin_layout Standard
18615 \begin_inset Note Greyedout
18616 status open
18617
18618 \begin_layout Standard
18619
18620 \series bold
18621 Note:
18622 \series default
18623  Automatic reference naming cannot be used when you use cross-references
18624  in the 
18625 \family sans
18626 Formatted\InsetSpace ~
18627 reference
18628 \family default
18629  style, described in section\InsetSpace ~
18630
18631 \begin_inset LatexCommand ref
18632 reference "sub:Cross-Reference-Formats"
18633
18634 \end_inset
18635
18636 .
18637 \end_layout
18638
18639 \end_inset
18640
18641
18642 \end_layout
18643
18644 \begin_layout Subsection
18645 Reference Position
18646 \begin_inset LatexCommand label
18647 name "sub:Reference-Position"
18648
18649 \end_inset
18650
18651
18652 \begin_inset LatexCommand index
18653 name "References ! Reference Position"
18654
18655 \end_inset
18656
18657
18658 \end_layout
18659
18660 \begin_layout Standard
18661 If you use 
18662 \series bold
18663 hyperref
18664 \series default
18665
18666 \begin_inset LatexCommand index
18667 name "LaTeX-packages ! hyperref"
18668
18669 \end_inset
18670
18671  to link cross-references in the output, you will see that clicking on an
18672  image float reference jumps to the image label.
18673  The caption will be the first text part on the screen, so that you cannot
18674  see the image without scrolling.
18675  This is because the reference link anchor is placed at the position of
18676  the label.
18677  With the use of the package 
18678 \series bold
18679 hypcap
18680 \series default
18681
18682 \begin_inset LatexCommand index
18683 name "LaTeX-packages ! hypcap"
18684
18685 \end_inset
18686
18687 , which is part of the LaTeX-package 
18688 \series bold
18689 oberdiek
18690 \series default
18691
18692 \begin_inset LatexCommand index
18693 name "LaTeX-packages ! oberdiek"
18694
18695 \end_inset
18696
18697 , the link anchor is placed at the beginning of a float.
18698  To use this feature for figure floats, load 
18699 \series bold
18700 hypcap
18701 \series default
18702  in the document preamble with the line
18703 \end_layout
18704
18705 \begin_layout Standard
18706
18707 \series bold
18708
18709 \backslash
18710 usepackage[f\SpecialChar \textcompwordmark{}
18711 igure]{hypcap}
18712 \end_layout
18713
18714 \begin_layout Standard
18715 You can also use 
18716 \series bold
18717 hypcap
18718 \series default
18719  for all floats but this isn't recommended for stability reasons.
18720  For more informations, have a look at 
18721 \series bold
18722 hypcap
18723 \series default
18724 's manual 
18725 \begin_inset LatexCommand cite
18726 key "hypcap"
18727
18728 \end_inset
18729
18730 .
18731 \end_layout
18732
18733 \begin_layout Standard
18734 \begin_inset Note Greyedout
18735 status open
18736
18737 \begin_layout Standard
18738
18739 \series bold
18740 Note:
18741 \series default
18742  
18743 \series bold
18744 hypcap
18745 \series default
18746  must be loaded after 
18747 \series bold
18748 hyperref
18749 \series default
18750  in the document preamble.
18751 \end_layout
18752
18753 \end_inset
18754
18755
18756 \end_layout
18757
18758 \begin_layout Standard
18759 \begin_inset Note Greyedout
18760 status open
18761
18762 \begin_layout Standard
18763
18764 \series bold
18765 Note:
18766 \series default
18767  
18768 \series bold
18769 hypcap
18770 \series default
18771  has no effect for references to subfigures.
18772 \end_layout
18773
18774 \end_inset
18775
18776
18777 \end_layout
18778
18779 \begin_layout Section
18780 Float Placement
18781 \begin_inset LatexCommand label
18782 name "sec:Float-Placement"
18783
18784 \end_inset
18785
18786
18787 \begin_inset LatexCommand index
18788 name "Floats ! Placement"
18789
18790 \end_inset
18791
18792
18793 \end_layout
18794
18795 \begin_layout Standard
18796 Right-clicking on a float-box opens a dialog where you can alter the placement
18797  options that LaTeX uses for positioning the float.
18798 \newline
18799 The option 
18800 \family sans
18801 Span\InsetSpace ~
18802 columns
18803 \family default
18804  is only useful for two-column documents: If you select it, the float will
18805  span across both columns on the page instead of being confined to just
18806  one.
18807 \newline
18808 The option 
18809 \family sans
18810 Rotate\InsetSpace ~
18811 sideways
18812 \family default
18813  is used to rotate floats, see section 
18814 \begin_inset LatexCommand ref
18815 reference "sec:Rotated-Floats"
18816
18817 \end_inset
18818
18819 .
18820 \end_layout
18821
18822 \begin_layout Standard
18823 You can use one ore more of the following options in the float dialog to
18824  set the placement for a particular float when you uncheck the option 
18825 \family sans
18826 Use\InsetSpace ~
18827 default\InsetSpace ~
18828 placement
18829 \family default
18830 :
18831 \end_layout
18832
18833 \begin_layout Description
18834 Here\InsetSpace ~
18835 if\InsetSpace ~
18836 possible: try to place the float on the position where it is inserted
18837 \end_layout
18838
18839 \begin_layout Description
18840 Top\InsetSpace ~
18841 of\InsetSpace ~
18842 page: try to place the float on the top of the current page
18843 \end_layout
18844
18845 \begin_layout Description
18846 Bottom\InsetSpace ~
18847 of\InsetSpace ~
18848 page: try to place the float on the bottom of the current page
18849 \end_layout
18850
18851 \begin_layout Description
18852 Page\InsetSpace ~
18853 of\InsetSpace ~
18854 floats: try to place the float on an own page 
18855 \end_layout
18856
18857 \begin_layout Standard
18858 The order of the above option is 
18859 \emph on
18860 always
18861 \emph default
18862  used by LaTeX.
18863  That means, if you use the default placement, LaTeX will first try out
18864  
18865 \family sans
18866 Here\InsetSpace ~
18867 if\InsetSpace ~
18868 possible
18869 \family default
18870 , then 
18871 \family sans
18872 Top\InsetSpace ~
18873 of\InsetSpace ~
18874 page
18875 \family default
18876 , and then the others.
18877  If you don't use the default, LaTeX will try only the checked options but
18878  in the same order.
18879  If none of the 4 placements are possible the procedure is internally repeated
18880  but it is tried to put the float on the following page.
18881 \end_layout
18882
18883 \begin_layout Standard
18884 By default, each option has its own rules:
18885 \end_layout
18886
18887 \begin_layout Labeling
18888 \labelwidthstring 00.00.0000
18889
18890 \family sans
18891 Top\InsetSpace ~
18892 of\InsetSpace ~
18893 page
18894 \family default
18895  only floats occupying less than 70\InsetSpace \thinspace{}
18896 % of the page can be placed at the top
18897  of a page (
18898 \series bold
18899
18900 \backslash
18901 topfraction
18902 \series default
18903 )
18904 \end_layout
18905
18906 \begin_layout Labeling
18907 \labelwidthstring 00.00.0000
18908
18909 \family sans
18910 Bottom\InsetSpace ~
18911 of\InsetSpace ~
18912 page
18913 \family default
18914 : only floats occupying less than 30\InsetSpace \thinspace{}
18915 % of the page can be placed at the bottom
18916  of a page.
18917  (
18918 \series bold
18919
18920 \backslash
18921 bottomfraction
18922 \series default
18923 )
18924 \end_layout
18925
18926 \begin_layout Labeling
18927 \labelwidthstring 00.00.0000
18928
18929 \family sans
18930 Page\InsetSpace ~
18931 of\InsetSpace ~
18932 floats
18933 \family default
18934 : only if more than 50\InsetSpace \thinspace{}
18935 % of the page are occupied by floats, several floats
18936  can be set together on a page.
18937  (
18938 \series bold
18939
18940 \backslash
18941 floatpagefraction
18942 \series default
18943 )
18944 \end_layout
18945
18946 \begin_layout Standard
18947 If you don't like these rules, you can ignore them by using the additional
18948  option 
18949 \family sans
18950 Ignore\InsetSpace ~
18951 LaTeX\InsetSpace ~
18952 rules
18953 \family default
18954 .
18955 \newline
18956 You can also redefine the rules with LaTeX-commands that are given in parenthese
18957 s behind the rules description above.
18958  To increase for example the often too small default of the bottom-rule
18959  to 50\InsetSpace \thinspace{}
18960 % of the page, add this line to your document preamble:
18961 \end_layout
18962
18963 \begin_layout Standard
18964
18965 \series bold
18966
18967 \backslash
18968 renewcommand{
18969 \backslash
18970 bottomfraction}{0.5}
18971 \end_layout
18972
18973 \begin_layout Standard
18974 Sometimes you might need, under all circumstances, a float to be placed
18975  exactly at the position where it is inserted.
18976  For this case you can use the option 
18977 \family sans
18978 Here\InsetSpace ~
18979 definitely
18980 \family default
18981 .
18982  Use this option very rarely and only if the document is nearly ready to
18983  be printed.
18984  Because the float is then no longer able to 
18985 \begin_inset Quotes eld
18986 \end_inset
18987
18988 float
18989 \begin_inset Quotes erd
18990 \end_inset
18991
18992  when you change your document and this will often destroy the page layout.
18993 \end_layout
18994
18995 \begin_layout Standard
18996 There are no placement options for text wrap floats, because they are always
18997  surrounded by the text of a certain paragraph.
18998 \begin_inset VSpace bigskip
18999 \end_inset
19000
19001
19002 \end_layout
19003
19004 \begin_layout Standard
19005 Sometimes you have the problem that a float is placed at the top of a page
19006  while its corresponding section starts at the middle of the page, so that
19007  the reader could think the float is part of the previous section.
19008  To avoid this the LaTeX-command 
19009 \series bold
19010
19011 \backslash
19012 suppressf\SpecialChar \textcompwordmark{}
19013 loats
19014 \series default
19015  can be used.
19016  It suppresses a given float placement for the page where it is inserted
19017  and can therefore be used to avoid that floats could be set before a section
19018  starts.
19019  To get this, add these commands to your document preamble:
19020 \end_layout
19021
19022 \begin_layout Standard
19023
19024 \series bold
19025
19026 \backslash
19027 let
19028 \backslash
19029 mySection
19030 \backslash
19031 section
19032 \newline
19033
19034 \backslash
19035 renewcommand{
19036 \backslash
19037 section}{
19038 \backslash
19039 suppressf\SpecialChar \textcompwordmark{}
19040 loats[t]
19041 \backslash
19042 mySection}
19043 \end_layout
19044
19045 \begin_layout Standard
19046 You can define the same for all section headings, like chapters and subsections.
19047  This definition is not recommended to be used for small text parts like
19048  subsubsections because LaTeX may then have problems to find a suitable
19049  placement.
19050 \end_layout
19051
19052 \begin_layout Standard
19053 \begin_inset VSpace bigskip
19054 \end_inset
19055
19056 In some cases it is required to have all figures/tables at the end of the
19057  document.
19058  For this purpose the LaTeX-package 
19059 \series bold
19060 endf\SpecialChar \textcompwordmark{}
19061 loat
19062 \series default
19063
19064 \begin_inset LatexCommand index
19065 name "LaTeX-packages ! endfloat"
19066
19067 \end_inset
19068
19069  was developed.
19070  It puts all figure and table floats at the end of the document into own
19071  sections.
19072  At the original float position a text hint like 
19073 \begin_inset Quotes eld
19074 \end_inset
19075
19076
19077 \family sans
19078 [Figure\InsetSpace ~
19079 3.2 about here.]
19080 \family default
19081
19082 \begin_inset Quotes erd
19083 \end_inset
19084
19085  is inserted.
19086  The endfloat-package is loaded in the preamble with the line
19087 \end_layout
19088
19089 \begin_layout Standard
19090
19091 \series bold
19092
19093 \backslash
19094 usepackage[options]{endf\SpecialChar \textcompwordmark{}
19095 loat}
19096 \end_layout
19097
19098 \begin_layout Standard
19099 There are various package options to format the created figure/table sections.
19100  For more information we refer to the 
19101 \series bold
19102 endf\SpecialChar \textcompwordmark{}
19103 loat
19104 \series default
19105  documentation 
19106 \begin_inset LatexCommand cite
19107 key "endfloat"
19108
19109 \end_inset
19110
19111 .
19112 \newline
19113
19114 \begin_inset Note Greyedout
19115 status open
19116
19117 \begin_layout Standard
19118
19119 \series bold
19120 Note: endf\SpecialChar \textcompwordmark{}
19121 loat
19122 \series default
19123  doesn't provide an automatic translation for the text hint, you have to
19124  do this manually, see section\InsetSpace ~
19125 4 in 
19126 \begin_inset LatexCommand cite
19127 key "endfloat"
19128
19129 \end_inset
19130
19131 .
19132 \end_layout
19133
19134 \end_inset
19135
19136
19137 \newline
19138
19139 \begin_inset Note Greyedout
19140 status open
19141
19142 \begin_layout Standard
19143
19144 \series bold
19145 Note:
19146 \series default
19147  There is currently a bug in 
19148 \series bold
19149 endf\SpecialChar \textcompwordmark{}
19150 loat
19151 \series default
19152  when the caption contains a German 
19153 \begin_inset Quotes eld
19154 \end_inset
19155
19156 ß
19157 \begin_inset Quotes erd
19158 \end_inset
19159
19160 .
19161  Use in this case the command 
19162 \begin_inset Quotes eld
19163 \end_inset
19164
19165
19166 \series bold
19167
19168 \backslash
19169 ss
19170 \series default
19171
19172 \begin_inset Quotes erd
19173 \end_inset
19174
19175  in ERT instead of 
19176 \begin_inset Quotes eld
19177 \end_inset
19178
19179 ß
19180 \begin_inset Quotes erd
19181 \end_inset
19182
19183 .
19184 \end_layout
19185
19186 \end_inset
19187
19188
19189 \end_layout
19190
19191 \begin_layout Standard
19192 \begin_inset VSpace bigskip
19193 \end_inset
19194
19195 For more details about float placements, have a look at LaTeX books, 
19196 \begin_inset LatexCommand cite
19197 key "latexcompanion,latexguide,latexbook"
19198
19199 \end_inset
19200
19201 .
19202 \end_layout
19203
19204 \begin_layout Section
19205 Rotated Floats
19206 \begin_inset LatexCommand label
19207 name "sec:Rotated-Floats"
19208
19209 \end_inset
19210
19211
19212 \begin_inset LatexCommand index
19213 name "Floats ! Rotating"
19214
19215 \end_inset
19216
19217
19218 \end_layout
19219
19220 \begin_layout Standard
19221 Especially for wide tables you might have floats rotated.
19222  To rotate a whole float including the caption, right-click on the float-box
19223  and use the option 
19224 \family sans
19225 Rotate\InsetSpace ~
19226 sideways
19227 \family default
19228 .
19229 \end_layout
19230
19231 \begin_layout Standard
19232 Rotated floats are always placed on its own page (or column, when you have
19233  a two-column document).
19234  They are normally rotated so that you can read them from the outside margin
19235  -- to the left on even pages, to the right on odd pages.
19236  To force a certain rotation direction for all pages, you can add either
19237  the option 
19238 \series bold
19239 figuresleft
19240 \series default
19241  or 
19242 \series bold
19243 figuresright
19244 \series default
19245  to the document class options.
19246 \end_layout
19247
19248 \begin_layout Standard
19249 Referencing rotated floats is the same like for normal floats, the caption
19250  format is also the same: Table\InsetSpace ~
19251
19252 \begin_inset LatexCommand ref
19253 reference "tab:Rotated-table"
19254
19255 \end_inset
19256
19257  is an example of a rotated table float.
19258 \end_layout
19259
19260 \begin_layout Standard
19261 \begin_inset Note Greyedout
19262 status open
19263
19264 \begin_layout Standard
19265
19266 \series bold
19267 Note:
19268 \series default
19269  Not all DVI-viewers are able to display rotated floats.
19270 \end_layout
19271
19272 \end_inset
19273
19274
19275 \end_layout
19276
19277 \begin_layout Standard
19278 \begin_inset Float table
19279 wide false
19280 sideways true
19281 status open
19282
19283 \begin_layout Standard
19284 \begin_inset Caption
19285
19286 \begin_layout Standard
19287 \begin_inset LatexCommand label
19288 name "tab:Rotated-table"
19289
19290 \end_inset
19291
19292  Rotated table
19293 \end_layout
19294
19295 \end_inset
19296
19297
19298 \end_layout
19299
19300 \begin_layout Standard
19301 \align center
19302 \begin_inset Tabular
19303 <lyxtabular version="3" rows="1" columns="5">
19304 <features>
19305 <column alignment="center" valignment="top" leftline="true" width="0">
19306 <column alignment="center" valignment="top" leftline="true" width="0">
19307 <column alignment="center" valignment="top" leftline="true" width="0">
19308 <column alignment="center" valignment="top" leftline="true" width="0">
19309 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19310 <row topline="true" bottomline="true">
19311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19312 \begin_inset Text
19313
19314 \begin_layout Standard
19315 test
19316 \end_layout
19317
19318 \end_inset
19319 </cell>
19320 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19321 \begin_inset Text
19322
19323 \begin_layout Standard
19324 b
19325 \end_layout
19326
19327 \end_inset
19328 </cell>
19329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19330 \begin_inset Text
19331
19332 \begin_layout Standard
19333 c
19334 \end_layout
19335
19336 \end_inset
19337 </cell>
19338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19339 \begin_inset Text
19340
19341 \begin_layout Standard
19342 d
19343 \end_layout
19344
19345 \end_inset
19346 </cell>
19347 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19348 \begin_inset Text
19349
19350 \begin_layout Standard
19351 e
19352 \end_layout
19353
19354 \end_inset
19355 </cell>
19356 </row>
19357 </lyxtabular>
19358
19359 \end_inset
19360
19361
19362 \end_layout
19363
19364 \end_inset
19365
19366
19367 \end_layout
19368
19369 \begin_layout Section
19370 Caption Formatting
19371 \begin_inset LatexCommand index
19372 name "Caption ! Formatting"
19373
19374 \end_inset
19375
19376
19377 \begin_inset LatexCommand index
19378 name "Floats ! Caption Formatting"
19379
19380 \end_inset
19381
19382
19383 \begin_inset LatexCommand index
19384 name "LaTeX-packages ! caption"
19385
19386 \end_inset
19387
19388
19389 \begin_inset LatexCommand label
19390 name "sec:Caption-Formatting"
19391
19392 \end_inset
19393
19394
19395 \end_layout
19396
19397 \begin_layout Standard
19398 The 
19399 \family sans
19400 Caption
19401 \family default
19402  environment is the default paragraph environment for 
19403 \family sans
19404 Floats
19405 \family default
19406 .
19407  On the LyX screen captions appear as label, e.\InsetSpace \thinspace{}
19408 g.\InsetSpace ~
19409
19410 \begin_inset Quotes eld
19411 \end_inset
19412
19413
19414 \family sans
19415 Figure #:
19416 \family default
19417
19418 \begin_inset Quotes erd
19419 \end_inset
19420
19421  followed by the caption text.
19422  
19423 \begin_inset Quotes eld
19424 \end_inset
19425
19426 #
19427 \begin_inset Quotes erd
19428 \end_inset
19429
19430  is the actual reference number.
19431  By default the label and the number are in the same font as the caption
19432  text and a colon follows the number to divide the label from the text.
19433  This caption format is not suitable for all document formats.
19434  
19435 \end_layout
19436
19437 \begin_layout Standard
19438 To change the default caption format, load the LaTeX-package 
19439 \series bold
19440 caption
19441 \series default
19442
19443 \begin_inset LatexCommand index
19444 name "LaTeX-packages ! caption"
19445
19446 \end_inset
19447
19448  in the document preamble with this line:
19449 \end_layout
19450
19451 \begin_layout Standard
19452
19453 \series bold
19454
19455 \backslash
19456 usepackage[format definition]{caption}
19457 \end_layout
19458
19459 \begin_layout Standard
19460 To have for example the label and the number in sans-serif bold font and
19461  the table captions always above the table like in this document, use the
19462  following command:
19463 \end_layout
19464
19465 \begin_layout Standard
19466
19467 \series bold
19468
19469 \backslash
19470 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19471 \end_layout
19472
19473 \begin_layout Standard
19474 You can also define different caption formats for the different float types.
19475  In this case load the 
19476 \series bold
19477 caption
19478 \series default
19479  package without format specific options and define the different formats
19480  with the help of the command
19481 \end_layout
19482
19483 \begin_layout Standard
19484
19485 \series bold
19486
19487 \backslash
19488 captionsetup[float type]{format definition}
19489 \end_layout
19490
19491 \begin_layout Standard
19492 in the document preamble.
19493  For example the caption formats of Figure\InsetSpace ~
19494
19495 \begin_inset LatexCommand ref
19496 reference "fig:This-is-an-fig"
19497
19498 \end_inset
19499
19500  and Table\InsetSpace ~
19501
19502 \begin_inset LatexCommand ref
19503 reference "tab:This-is-an-tab"
19504
19505 \end_inset
19506
19507  can be created using these commands in the document preamble:
19508 \end_layout
19509
19510 \begin_layout Standard
19511
19512 \series bold
19513
19514 \backslash
19515 usepackage[tableposition=top]{caption}
19516 \series default
19517
19518 \newline
19519
19520 \series bold
19521
19522 \backslash
19523 captionsetup[f\SpecialChar \textcompwordmark{}
19524 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19525 \newline
19526
19527 \begin_inset ERT
19528 status collapsed
19529
19530 \begin_layout Standard
19531
19532
19533 \backslash
19534 hphantom{
19535 \backslash
19536
19537 \backslash
19538 captionsetup[figure]
19539 \backslash
19540 {}
19541 \end_layout
19542
19543 \end_inset
19544
19545  labelsep=period}
19546 \newline
19547
19548 \backslash
19549 captionsetup[table]{labelfont={bf,sf}}
19550 \end_layout
19551
19552 \begin_layout Standard
19553 \begin_inset Note Greyedout
19554 status open
19555
19556 \begin_layout Standard
19557
19558 \series bold
19559 Note:
19560 \series default
19561  The option 
19562 \series bold
19563 tableposition=top
19564 \series default
19565  has no effect when a 
19566 \series bold
19567 koma-script
19568 \series default
19569
19570 \begin_inset LatexCommand index
19571 name "LaTeX-packages ! koma-script"
19572
19573 \end_inset
19574
19575  document class is used.
19576  In this case the document class option 
19577 \series bold
19578 tablecaptionabove
19579 \series default
19580  must be used.
19581 \end_layout
19582
19583 \end_inset
19584
19585
19586 \end_layout
19587
19588 \begin_layout Standard
19589 For more information about the package 
19590 \series bold
19591 caption
19592 \series default
19593  we refer to its documentation 
19594 \begin_inset LatexCommand cite
19595 key "caption,caption-de"
19596
19597 \end_inset
19598
19599 .
19600 \end_layout
19601
19602 \begin_layout Standard
19603 To change the label name from e.g.
19604  
19605 \begin_inset Quotes eld
19606 \end_inset
19607
19608 Figure
19609 \begin_inset Quotes erd
19610 \end_inset
19611
19612  to 
19613 \begin_inset Quotes eld
19614 \end_inset
19615
19616 Image
19617 \begin_inset Quotes erd
19618 \end_inset
19619
19620  use this preamble command:
19621 \end_layout
19622
19623 \begin_layout Standard
19624
19625 \series bold
19626
19627 \backslash
19628 renewcommand{
19629 \backslash
19630 fnum@figure}{Image~
19631 \backslash
19632 thefigure}
19633 \end_layout
19634
19635 \begin_layout Standard
19636 where 
19637 \series bold
19638
19639 \backslash
19640 thefigure
19641 \series default
19642  inserts the figure number and
19643 \series bold
19644  
19645 \begin_inset Quotes eld
19646 \end_inset
19647
19648 ~
19649 \series default
19650
19651 \begin_inset Quotes erd
19652 \end_inset
19653
19654  creates a protected space.
19655 \end_layout
19656
19657 \begin_layout Standard
19658 \begin_inset VSpace bigskip
19659 \end_inset
19660
19661 If you are using a 
19662 \series bold
19663 koma-script
19664 \series default
19665
19666 \begin_inset LatexCommand index
19667 name "LaTeX-packages ! koma-script"
19668
19669 \end_inset
19670
19671  document class (
19672 \family sans
19673 article (koma-script)
19674 \family default
19675
19676 \family sans
19677 book (koma-script)
19678 \family default
19679
19680 \family sans
19681 letter (koma-script)
19682 \family default
19683 , or 
19684 \family sans
19685 report (koma-script)
19686 \family default
19687 \InsetSpace \thinspace{}
19688 ), you can alternatively to the 
19689 \series bold
19690 caption
19691 \series default
19692  package use 
19693 \series bold
19694 koma-script
19695 \series default
19696 's built-in command 
19697 \series bold
19698
19699 \backslash
19700 setkomafont
19701 \series default
19702 .
19703  For example, to have the caption label in bold, add this command to your
19704  document preamble:
19705 \end_layout
19706
19707 \begin_layout Standard
19708
19709 \series bold
19710
19711 \backslash
19712 setkomafont{captionlabel}{
19713 \backslash
19714 bfseries}
19715 \end_layout
19716
19717 \begin_layout Standard
19718 For more information about 
19719 \series bold
19720
19721 \backslash
19722 setkomafont
19723 \series default
19724  we refer to the 
19725 \series bold
19726 koma-script
19727 \series default
19728  documentation 
19729 \begin_inset LatexCommand cite
19730 key "koma-script,koma-script-de"
19731
19732 \end_inset
19733
19734 .
19735 \end_layout
19736
19737 \begin_layout Standard
19738 \begin_inset ERT
19739 status collapsed
19740
19741 \begin_layout Standard
19742
19743
19744 \backslash
19745 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19746 }
19747 \end_layout
19748
19749 \end_inset
19750
19751
19752 \begin_inset Note Note
19753 status open
19754
19755 \begin_layout Standard
19756 The caption format is changed only for this example.
19757 \end_layout
19758
19759 \end_inset
19760
19761
19762 \end_layout
19763
19764 \begin_layout Standard
19765 \begin_inset Float figure
19766 placement !p
19767 wide false
19768 sideways false
19769 status open
19770
19771 \begin_layout Standard
19772 \align center
19773 \begin_inset Graphics
19774         filename clipart/mobius.eps
19775         lyxscale 50
19776         scale 50
19777
19778 \end_inset
19779
19780
19781 \end_layout
19782
19783 \begin_layout Standard
19784 \begin_inset Caption
19785
19786 \begin_layout Standard
19787 \begin_inset LatexCommand label
19788 name "fig:This-is-an-fig"
19789
19790 \end_inset
19791
19792 This is an example figure caption that is longer than one line to show the
19793  different caption format.
19794  Here a self-defined caption format is used.
19795 \end_layout
19796
19797 \end_inset
19798
19799
19800 \end_layout
19801
19802 \end_inset
19803
19804
19805 \end_layout
19806
19807 \begin_layout Standard
19808 \begin_inset ERT
19809 status collapsed
19810
19811 \begin_layout Standard
19812
19813
19814 \backslash
19815 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19816 on}
19817 \end_layout
19818
19819 \end_inset
19820
19821
19822 \end_layout
19823
19824 \begin_layout Standard
19825 \begin_inset Float table
19826 placement !p
19827 wide false
19828 sideways false
19829 status open
19830
19831 \begin_layout Standard
19832 \begin_inset Caption
19833
19834 \begin_layout Standard
19835 \begin_inset LatexCommand label
19836 name "tab:This-is-an-tab"
19837
19838 \end_inset
19839
19840 This is an example table caption that is longer than one line to show the
19841  different caption format.
19842  Here the standard caption format for tables in this document is used.
19843 \end_layout
19844
19845 \end_inset
19846
19847
19848 \end_layout
19849
19850 \begin_layout Standard
19851 \align center
19852 \begin_inset Tabular
19853 <lyxtabular version="3" rows="1" columns="5">
19854 <features>
19855 <column alignment="center" valignment="top" leftline="true" width="0">
19856 <column alignment="center" valignment="top" leftline="true" width="0">
19857 <column alignment="center" valignment="top" leftline="true" width="0">
19858 <column alignment="center" valignment="top" leftline="true" width="0">
19859 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19860 <row topline="true" bottomline="true">
19861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19862 \begin_inset Text
19863
19864 \begin_layout Standard
19865 a
19866 \end_layout
19867
19868 \end_inset
19869 </cell>
19870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19871 \begin_inset Text
19872
19873 \begin_layout Standard
19874 b
19875 \end_layout
19876
19877 \end_inset
19878 </cell>
19879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19880 \begin_inset Text
19881
19882 \begin_layout Standard
19883 c
19884 \end_layout
19885
19886 \end_inset
19887 </cell>
19888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19889 \begin_inset Text
19890
19891 \begin_layout Standard
19892 d
19893 \end_layout
19894
19895 \end_inset
19896 </cell>
19897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19898 \begin_inset Text
19899
19900 \begin_layout Standard
19901 e
19902 \end_layout
19903
19904 \end_inset
19905 </cell>
19906 </row>
19907 </lyxtabular>
19908
19909 \end_inset
19910
19911
19912 \end_layout
19913
19914 \end_inset
19915
19916
19917 \end_layout
19918
19919 \begin_layout Section
19920 Caption Placement
19921 \begin_inset LatexCommand index
19922 name "Caption ! Placement"
19923
19924 \end_inset
19925
19926
19927 \begin_inset LatexCommand index
19928 name "Floats ! Caption Placement"
19929
19930 \end_inset
19931
19932
19933 \begin_inset LatexCommand label
19934 name "sec:Caption-Placement"
19935
19936 \end_inset
19937
19938
19939 \end_layout
19940
19941 \begin_layout Standard
19942 The common caption placement rule is:
19943 \end_layout
19944
19945 \begin_layout Description
19946 Figure: Caption is set below the figure
19947 \end_layout
19948
19949 \begin_layout Description
19950 Table: Caption is set above the table
19951 \end_layout
19952
19953 \begin_layout Standard
19954 Having the caption above the table is unfortunately not supported in LaTeX's
19955  standard classes.
19956  That means if you are using the document classes 
19957 \family sans
19958 article
19959 \family default
19960
19961 \family sans
19962 book
19963 \family default
19964
19965 \family sans
19966 letter
19967 \family default
19968 , or 
19969 \family sans
19970 report
19971 \family default
19972  there will be no space between the caption and the table.
19973  To insert the needed space, add the following option to the load command
19974  of the LaTeX-package 
19975 \series bold
19976 caption
19977 \series default
19978  in your document preamble
19979 \begin_inset Foot
19980 status collapsed
19981
19982 \begin_layout Standard
19983 See section\InsetSpace ~
19984
19985 \begin_inset LatexCommand ref
19986 reference "sec:Caption-Formatting"
19987
19988 \end_inset
19989
19990  for more information of the package 
19991 \series bold
19992 caption
19993 \series default
19994 .
19995 \end_layout
19996
19997 \end_inset
19998
19999 :
20000 \end_layout
20001
20002 \begin_layout Standard
20003
20004 \series bold
20005 tableposition=top
20006 \end_layout
20007
20008 \begin_layout Standard
20009 If you are using a 
20010 \series bold
20011 koma-script
20012 \series default
20013
20014 \begin_inset LatexCommand index
20015 name "LaTeX-packages ! koma-script"
20016
20017 \end_inset
20018
20019  document class (
20020 \family sans
20021 article (koma-script)
20022 \family default
20023
20024 \family sans
20025 book (koma-script)
20026 \family default
20027
20028 \family sans
20029 letter (koma-script)
20030 \family default
20031 , or 
20032 \family sans
20033 report (koma-script)
20034 \family default
20035 \InsetSpace \thinspace{}
20036 ), you can alternatively to the 
20037 \series bold
20038 caption
20039 \series default
20040  package set the document class option 
20041 \series bold
20042 tablecaptionabove
20043 \series default
20044 , or you can use the environment 
20045 \family sans
20046 caption\InsetSpace ~
20047 above
20048 \family default
20049  instead of the 
20050 \family sans
20051 caption
20052 \family default
20053  environment.
20054 \end_layout
20055
20056 \begin_layout Standard
20057 \begin_inset VSpace bigskip
20058 \end_inset
20059
20060 It is also possible to set the caption beside a figure or table.
20061  To get this the LaTeX-package 
20062 \series bold
20063 sidecap
20064 \series default
20065
20066 \begin_inset LatexCommand index
20067 name "LaTeX-packages ! sidecap"
20068
20069 \end_inset
20070
20071  has to be loaded in the document preamble with the line
20072 \end_layout
20073
20074 \begin_layout Standard
20075
20076 \series bold
20077
20078 \backslash
20079 usepackage[option]{sidecap}
20080 \end_layout
20081
20082 \begin_layout Standard
20083 If you set no option, the caption is placed on the side of the outer page
20084  margin -- to the right on odd pages, to the left on even pages.
20085  You can change the placement to inner margin with the option 
20086 \series bold
20087 innercaption
20088 \series default
20089 .
20090  To force the placement always to the right or left, use the option 
20091 \series bold
20092 rightcaption
20093 \series default
20094  or 
20095 \series bold
20096 leftcaption
20097 \series default
20098 , respectively.
20099 \end_layout
20100
20101 \begin_layout Standard
20102 To place in LyX the caption of a float on the side, it is necessary to add
20103  these commands to the document preamble:
20104 \end_layout
20105
20106 \begin_layout Standard
20107
20108 \lyxline
20109
20110 \end_layout
20111
20112 \begin_layout Standard
20113
20114 \series bold
20115
20116 \backslash
20117 newcommand{
20118 \backslash
20119 TabBesBeg}{%
20120 \newline
20121
20122 \begin_inset ERT
20123 status collapsed
20124
20125 \begin_layout Standard
20126
20127
20128 \backslash
20129 hphantom{ }
20130 \end_layout
20131
20132 \end_inset
20133
20134
20135 \backslash
20136 let
20137 \backslash
20138 MyTable
20139 \backslash
20140 table
20141 \newline
20142
20143 \begin_inset ERT
20144 status collapsed
20145
20146 \begin_layout Standard
20147
20148
20149 \backslash
20150 hphantom{ }
20151 \end_layout
20152
20153 \end_inset
20154
20155
20156 \backslash
20157 let
20158 \backslash
20159 MyEndtable
20160 \backslash
20161 endtable
20162 \newline
20163
20164 \begin_inset ERT
20165 status collapsed
20166
20167 \begin_layout Standard
20168
20169
20170 \backslash
20171 hphantom{ }
20172 \end_layout
20173
20174 \end_inset
20175
20176
20177 \backslash
20178 renewenvironment{table}{
20179 \backslash
20180 begin{SCtable}}{
20181 \backslash
20182 end{SCtable}}}
20183 \end_layout
20184
20185 \begin_layout Standard
20186
20187 \series bold
20188
20189 \backslash
20190 newcommand{
20191 \backslash
20192 TabBesEnd}{%
20193 \newline
20194
20195 \begin_inset ERT
20196 status collapsed
20197
20198 \begin_layout Standard
20199
20200
20201 \backslash
20202 hphantom{ }
20203 \end_layout
20204
20205 \end_inset
20206
20207
20208 \backslash
20209 let
20210 \backslash
20211 table
20212 \backslash
20213 MyTable
20214 \newline
20215
20216 \begin_inset ERT
20217 status collapsed
20218
20219 \begin_layout Standard
20220
20221
20222 \backslash
20223 hphantom{ }
20224 \end_layout
20225
20226 \end_inset
20227
20228
20229 \backslash
20230 let
20231 \backslash
20232 endtable
20233 \backslash
20234 MyEndtable
20235 \end_layout
20236
20237 \begin_layout Standard
20238
20239 \series bold
20240
20241 \backslash
20242 newcommand{
20243 \backslash
20244 FigBesBeg}{%
20245 \newline
20246
20247 \begin_inset ERT
20248 status collapsed
20249
20250 \begin_layout Standard
20251
20252
20253 \backslash
20254 hphantom{ }
20255 \end_layout
20256
20257 \end_inset
20258
20259
20260 \backslash
20261 let
20262 \backslash
20263 MyFigure
20264 \backslash
20265 f\SpecialChar \textcompwordmark{}
20266 igure
20267 \newline
20268
20269 \begin_inset ERT
20270 status collapsed
20271
20272 \begin_layout Standard
20273
20274
20275 \backslash
20276 hphantom{ }
20277 \end_layout
20278
20279 \end_inset
20280
20281
20282 \backslash
20283 let
20284 \backslash
20285 MyEndf\SpecialChar \textcompwordmark{}
20286 igure
20287 \backslash
20288 endf\SpecialChar \textcompwordmark{}
20289 igure
20290 \newline
20291
20292 \begin_inset ERT
20293 status collapsed
20294
20295 \begin_layout Standard
20296
20297
20298 \backslash
20299 hphantom{ }
20300 \end_layout
20301
20302 \end_inset
20303
20304
20305 \backslash
20306 renewenvironment{f\SpecialChar \textcompwordmark{}
20307 igure}{
20308 \backslash
20309 begin{SCf\SpecialChar \textcompwordmark{}
20310 igure}}{
20311 \backslash
20312 end{SCf\SpecialChar \textcompwordmark{}
20313 igure}}}
20314 \end_layout
20315
20316 \begin_layout Standard
20317
20318 \series bold
20319
20320 \backslash
20321 newcommand{
20322 \backslash
20323 FigBesEnd}{%
20324 \newline
20325
20326 \begin_inset ERT
20327 status collapsed
20328
20329 \begin_layout Standard
20330
20331
20332 \backslash
20333 hphantom{ }
20334 \end_layout
20335
20336 \end_inset
20337
20338
20339 \backslash
20340 let
20341 \backslash
20342 f\SpecialChar \textcompwordmark{}
20343 igure
20344 \backslash
20345 MyFigure
20346 \newline
20347
20348 \begin_inset ERT
20349 status collapsed
20350
20351 \begin_layout Standard
20352
20353
20354 \backslash
20355 hphantom{ }
20356 \end_layout
20357
20358 \end_inset
20359
20360
20361 \backslash
20362 let
20363 \backslash
20364 endf\SpecialChar \textcompwordmark{}
20365 igure
20366 \backslash
20367 MyEndf\SpecialChar \textcompwordmark{}
20368 igure}
20369 \end_layout
20370
20371 \begin_layout Standard
20372
20373 \lyxline
20374
20375 \end_layout
20376
20377 \begin_layout Standard
20378 The commands allow you to redefine the floats so that the caption is set
20379  on the side.
20380  For figure floats use the command
20381 \end_layout
20382
20383 \begin_layout Standard
20384
20385 \series bold
20386
20387 \backslash
20388 FigBesBeg
20389 \end_layout
20390
20391 \begin_layout Standard
20392 in ERT before the float.
20393  Behind the float insert the command
20394 \end_layout
20395
20396 \begin_layout Standard
20397
20398 \series bold
20399
20400 \backslash
20401 FigBesEnd
20402 \end_layout
20403
20404 \begin_layout Standard
20405 in ERT to get back to the original float definition.
20406 \end_layout
20407
20408 \begin_layout Standard
20409 For table floats use the corresponding commands
20410 \end_layout
20411
20412 \begin_layout Standard
20413
20414 \series bold
20415
20416 \backslash
20417 TabBesBeg
20418 \series default
20419  and 
20420 \series bold
20421
20422 \backslash
20423 TabBesEnd
20424 \end_layout
20425
20426 \begin_layout Standard
20427 Figure\InsetSpace ~
20428
20429 \begin_inset LatexCommand ref
20430 reference "fig:cap-beside-fig"
20431
20432 \end_inset
20433
20434  and Table\InsetSpace ~
20435
20436 \begin_inset LatexCommand ref
20437 reference "tab:cap-beside-tab"
20438
20439 \end_inset
20440
20441  are examples where the caption is set beside.
20442 \end_layout
20443
20444 \begin_layout Standard
20445 You can see in the examples that the caption text appears at the top of
20446  the floats for table floats and at the bottom for figure floats.
20447  To change this, you can use the command
20448 \end_layout
20449
20450 \begin_layout Standard
20451
20452 \series bold
20453
20454 \backslash
20455 sidecaptionvpos{float type}{placement}
20456 \end_layout
20457
20458 \begin_layout Standard
20459 in the document preamble or in ERT before the float.
20460  The float type is either 
20461 \family sans
20462 figure
20463 \family default
20464  or 
20465 \family sans
20466 table
20467 \family default
20468 , the placement can be 
20469 \begin_inset Quotes eld
20470 \end_inset
20471
20472
20473 \family sans
20474 t
20475 \family default
20476
20477 \begin_inset Quotes erd
20478 \end_inset
20479
20480  for top, 
20481 \begin_inset Quotes eld
20482 \end_inset
20483
20484
20485 \family sans
20486 c
20487 \family default
20488
20489 \begin_inset Quotes erd
20490 \end_inset
20491
20492  for center, or 
20493 \begin_inset Quotes eld
20494 \end_inset
20495
20496
20497 \family sans
20498 b
20499 \family default
20500
20501 \begin_inset Quotes erd
20502 \end_inset
20503
20504  for bottom.
20505  To have for example the caption of figure floats vertically centered, use
20506  the command
20507 \end_layout
20508
20509 \begin_layout Standard
20510
20511 \series bold
20512
20513 \backslash
20514 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20515 igure}{c}
20516 \end_layout
20517
20518 \begin_layout Standard
20519 This was used for Figure\InsetSpace ~
20520
20521 \begin_inset LatexCommand ref
20522 reference "fig:cap-beside-fig-2"
20523
20524 \end_inset
20525
20526 .
20527 \end_layout
20528
20529 \begin_layout Standard
20530 \begin_inset VSpace defskip
20531 \end_inset
20532
20533 For more information about the package 
20534 \series bold
20535 sidecap
20536 \series default
20537  we refer to its documentation 
20538 \begin_inset LatexCommand cite
20539 key "sidecap"
20540
20541 \end_inset
20542
20543 .
20544 \end_layout
20545
20546 \begin_layout Standard
20547 \begin_inset Note Greyedout
20548 status open
20549
20550 \begin_layout Standard
20551
20552 \series bold
20553 Note:
20554 \series default
20555  The LaTeX-package 
20556 \series bold
20557 hypcap
20558 \series default
20559
20560 \begin_inset LatexCommand index
20561 name "LaTeX-packages ! hypcap"
20562
20563 \end_inset
20564
20565 , described in section\InsetSpace ~
20566
20567 \begin_inset LatexCommand ref
20568 reference "sub:Reference-Position"
20569
20570 \end_inset
20571
20572 , has no effect on floats with the caption set beside.
20573 \end_layout
20574
20575 \end_inset
20576
20577
20578 \end_layout
20579
20580 \begin_layout Standard
20581 \begin_inset ERT
20582 status collapsed
20583
20584 \begin_layout Standard
20585
20586
20587 \backslash
20588 FigBesBeg 
20589 \end_layout
20590
20591 \end_inset
20592
20593
20594 \end_layout
20595
20596 \begin_layout Standard
20597 \begin_inset Float figure
20598 wide false
20599 sideways false
20600 status open
20601
20602 \begin_layout Standard
20603 \begin_inset Graphics
20604         filename clipart/escher-lsd.eps
20605         scale 75
20606
20607 \end_inset
20608
20609
20610 \end_layout
20611
20612 \begin_layout Standard
20613 \begin_inset Caption
20614
20615 \begin_layout Standard
20616 \begin_inset LatexCommand label
20617 name "fig:cap-beside-fig"
20618
20619 \end_inset
20620
20621 This is a caption beside a figure.
20622 \end_layout
20623
20624 \end_inset
20625
20626
20627 \end_layout
20628
20629 \end_inset
20630
20631
20632 \end_layout
20633
20634 \begin_layout Standard
20635 \begin_inset ERT
20636 status collapsed
20637
20638 \begin_layout Standard
20639
20640
20641 \backslash
20642 TabBesBeg 
20643 \end_layout
20644
20645 \end_inset
20646
20647
20648 \end_layout
20649
20650 \begin_layout Standard
20651 \begin_inset Float table
20652 wide false
20653 sideways false
20654 status open
20655
20656 \begin_layout Standard
20657 \begin_inset Caption
20658
20659 \begin_layout Standard
20660 \begin_inset LatexCommand label
20661 name "tab:cap-beside-tab"
20662
20663 \end_inset
20664
20665 This is a caption beside a table.
20666 \end_layout
20667
20668 \end_inset
20669
20670
20671 \end_layout
20672
20673 \begin_layout Standard
20674 \begin_inset Tabular
20675 <lyxtabular version="3" rows="4" columns="5">
20676 <features>
20677 <column alignment="center" valignment="top" leftline="true" width="0">
20678 <column alignment="center" valignment="top" leftline="true" width="0">
20679 <column alignment="center" valignment="top" leftline="true" width="0">
20680 <column alignment="center" valignment="top" leftline="true" width="0">
20681 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20682 <row topline="true">
20683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20684 \begin_inset Text
20685
20686 \begin_layout Standard
20687 a
20688 \end_layout
20689
20690 \end_inset
20691 </cell>
20692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20693 \begin_inset Text
20694
20695 \begin_layout Standard
20696
20697 \end_layout
20698
20699 \end_inset
20700 </cell>
20701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20702 \begin_inset Text
20703
20704 \begin_layout Standard
20705 b
20706 \end_layout
20707
20708 \end_inset
20709 </cell>
20710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20711 \begin_inset Text
20712
20713 \begin_layout Standard
20714
20715 \end_layout
20716
20717 \end_inset
20718 </cell>
20719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20720 \begin_inset Text
20721
20722 \begin_layout Standard
20723 c
20724 \end_layout
20725
20726 \end_inset
20727 </cell>
20728 </row>
20729 <row topline="true">
20730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20731 \begin_inset Text
20732
20733 \begin_layout Standard
20734
20735 \end_layout
20736
20737 \end_inset
20738 </cell>
20739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20740 \begin_inset Text
20741
20742 \begin_layout Standard
20743 d
20744 \end_layout
20745
20746 \end_inset
20747 </cell>
20748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20749 \begin_inset Text
20750
20751 \begin_layout Standard
20752
20753 \end_layout
20754
20755 \end_inset
20756 </cell>
20757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20758 \begin_inset Text
20759
20760 \begin_layout Standard
20761 e
20762 \end_layout
20763
20764 \end_inset
20765 </cell>
20766 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20767 \begin_inset Text
20768
20769 \begin_layout Standard
20770
20771 \end_layout
20772
20773 \end_inset
20774 </cell>
20775 </row>
20776 <row topline="true">
20777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20778 \begin_inset Text
20779
20780 \begin_layout Standard
20781 f
20782 \end_layout
20783
20784 \end_inset
20785 </cell>
20786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20787 \begin_inset Text
20788
20789 \begin_layout Standard
20790
20791 \end_layout
20792
20793 \end_inset
20794 </cell>
20795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20796 \begin_inset Text
20797
20798 \begin_layout Standard
20799 g
20800 \end_layout
20801
20802 \end_inset
20803 </cell>
20804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20805 \begin_inset Text
20806
20807 \begin_layout Standard
20808
20809 \end_layout
20810
20811 \end_inset
20812 </cell>
20813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20814 \begin_inset Text
20815
20816 \begin_layout Standard
20817 h
20818 \end_layout
20819
20820 \end_inset
20821 </cell>
20822 </row>
20823 <row topline="true" bottomline="true">
20824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20825 \begin_inset Text
20826
20827 \begin_layout Standard
20828
20829 \end_layout
20830
20831 \end_inset
20832 </cell>
20833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20834 \begin_inset Text
20835
20836 \begin_layout Standard
20837 i
20838 \end_layout
20839
20840 \end_inset
20841 </cell>
20842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20843 \begin_inset Text
20844
20845 \begin_layout Standard
20846
20847 \end_layout
20848
20849 \end_inset
20850 </cell>
20851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20852 \begin_inset Text
20853
20854 \begin_layout Standard
20855 j
20856 \end_layout
20857
20858 \end_inset
20859 </cell>
20860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20861 \begin_inset Text
20862
20863 \begin_layout Standard
20864
20865 \end_layout
20866
20867 \end_inset
20868 </cell>
20869 </row>
20870 </lyxtabular>
20871
20872 \end_inset
20873
20874
20875 \end_layout
20876
20877 \end_inset
20878
20879
20880 \end_layout
20881
20882 \begin_layout Standard
20883 \begin_inset ERT
20884 status collapsed
20885
20886 \begin_layout Standard
20887
20888
20889 \backslash
20890 TabBesEnd
20891 \end_layout
20892
20893 \end_inset
20894
20895
20896 \end_layout
20897
20898 \begin_layout Standard
20899 \begin_inset ERT
20900 status collapsed
20901
20902 \begin_layout Standard
20903
20904
20905 \backslash
20906 sidecaptionvpos{figure}{c}
20907 \end_layout
20908
20909 \end_inset
20910
20911
20912 \begin_inset Float figure
20913 wide false
20914 sideways false
20915 status open
20916
20917 \begin_layout Standard
20918 \begin_inset Graphics
20919         filename clipart/escher-lsd.eps
20920         scale 75
20921
20922 \end_inset
20923
20924
20925 \end_layout
20926
20927 \begin_layout Standard
20928 \begin_inset Caption
20929
20930 \begin_layout Standard
20931 \begin_inset LatexCommand label
20932 name "fig:cap-beside-fig-2"
20933
20934 \end_inset
20935
20936 This is a vertically centered caption beside a figure.
20937 \end_layout
20938
20939 \end_inset
20940
20941
20942 \end_layout
20943
20944 \end_inset
20945
20946
20947 \end_layout
20948
20949 \begin_layout Standard
20950 \begin_inset ERT
20951 status collapsed
20952
20953 \begin_layout Standard
20954
20955
20956 \backslash
20957 FigBesEnd
20958 \end_layout
20959
20960 \end_inset
20961
20962
20963 \end_layout
20964
20965 \begin_layout Section
20966 Listings of Floats
20967 \begin_inset LatexCommand label
20968 name "sec:Listings-of-Floats"
20969
20970 \end_inset
20971
20972
20973 \begin_inset LatexCommand index
20974 name "Floats ! Float Lists"
20975
20976 \end_inset
20977
20978
20979 \end_layout
20980
20981 \begin_layout Standard
20982 Similar to the the table of contents where the sections of the document
20983  are listed, there are listings for all float types, like the figures of
20984  the documents.
20985  You can insert them via the 
20986 \family sans
20987 Insert\SpecialChar \menuseparator
20988 List\InsetSpace ~
20989 /\InsetSpace ~
20990 TOC
20991 \family default
20992  sub menus.
20993 \end_layout
20994
20995 \begin_layout Standard
20996 The list entries are the float captions or its short title, the float number,
20997  and the page number where they appear in the document.
20998 \end_layout
20999
21000 \begin_layout Standard
21001 You can find the list of figures and tables at the end of this document.
21002 \end_layout
21003
21004 \begin_layout Chapter
21005 Notes
21006 \end_layout
21007
21008 \begin_layout Section
21009 \begin_inset ERT
21010 status collapsed
21011
21012 \begin_layout Standard
21013
21014
21015 \backslash
21016 texorpdfstring{
21017 \end_layout
21018
21019 \end_inset
21020
21021 LyX
21022 \begin_inset ERT
21023 status collapsed
21024
21025 \begin_layout Standard
21026
21027 }{LyX}
21028 \end_layout
21029
21030 \end_inset
21031
21032  Notes
21033 \begin_inset LatexCommand label
21034 name "sec:LyX-Notes"
21035
21036 \end_inset
21037
21038
21039 \begin_inset LatexCommand index
21040 name "Notes ! LyX Notes"
21041
21042 \end_inset
21043
21044
21045 \begin_inset Note Note
21046 status collapsed
21047
21048 \begin_layout Standard
21049 The command 
21050 \backslash
21051 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
21052  are displayed wrongly in PDF-bookmarks.
21053  For more information about this, have a look at 
21054 \begin_inset LatexCommand cite
21055 key "hyperref"
21056
21057 \end_inset
21058
21059 .
21060 \end_layout
21061
21062 \end_inset
21063
21064
21065 \end_layout
21066
21067 \begin_layout Standard
21068 Notes are inserted with the toolbar button 
21069 \begin_inset Graphics
21070         filename ../images/note-insert.xpm
21071         scale 85
21072
21073 \end_inset
21074
21075  or the menu 
21076 \family sans
21077 Insert\SpecialChar \menuseparator
21078 Note
21079 \family default
21080 .
21081  There are five types of notes:
21082 \end_layout
21083
21084 \begin_layout Description
21085 LyX\InsetSpace ~
21086 Note This note type is for internal notes that won't appear in the output.
21087  Its note-box looks like this:
21088 \newline
21089
21090 \newline
21091
21092 \begin_inset Graphics
21093         filename clipart/LyXNoteImageQt4.png
21094         display none
21095         scale 85
21096
21097 \end_inset
21098
21099  
21100 \begin_inset Note Note
21101 status open
21102
21103 \begin_layout Standard
21104 This is text in a note box that doesn't appear in the output.
21105 \end_layout
21106
21107 \end_inset
21108
21109
21110 \end_layout
21111
21112 \begin_layout Description
21113 Comment This note also doesn't appear in the output but it appears as LaTeX-comm
21114 ent, when you export the document to LaTeX via the menu 
21115 \family sans
21116 File\SpecialChar \menuseparator
21117 Export\SpecialChar \menuseparator
21118 LaTeX (pdflatex) / LaTeX (plain)
21119 \family default
21120 .
21121  Its note-box looks like this:
21122 \newline
21123
21124 \newline
21125
21126 \begin_inset Graphics
21127         filename clipart/CommentNoteImageQt4.png
21128         display none
21129         scale 85
21130
21131 \end_inset
21132
21133  
21134 \begin_inset Note Comment
21135 status open
21136
21137 \begin_layout Standard
21138 This is text in a note box that only appears as comment in LaTeX-files.
21139 \end_layout
21140
21141 \end_inset
21142
21143
21144 \end_layout
21145
21146 \begin_layout Description
21147 Greyed\InsetSpace ~
21148 Out This note will appear in the output as grey text.
21149  Its note-box looks like this:
21150 \newline
21151
21152 \newline
21153
21154 \begin_inset Graphics
21155         filename clipart/GreyedOutNoteImageQt4.png
21156         display none
21157         scale 85
21158
21159 \end_inset
21160
21161
21162 \newline
21163
21164 \begin_inset ERT
21165 status collapsed
21166
21167 \begin_layout Standard
21168
21169
21170 \backslash
21171 renewenvironment{lyxgreyedout}
21172 \end_layout
21173
21174 \begin_layout Standard
21175
21176 {
21177 \backslash
21178 textcolor[gray]{0.8}
21179 \backslash
21180 bgroup}{
21181 \backslash
21182 egroup}
21183 \end_layout
21184
21185 \end_inset
21186
21187
21188 \begin_inset Note Greyedout
21189 status open
21190
21191 \begin_layout Standard
21192 This is text
21193 \begin_inset Foot
21194 status open
21195
21196 \begin_layout Standard
21197 This is an example footnote within a greyed out note.
21198 \end_layout
21199
21200 \end_inset
21201
21202  of a comment that appears in the output as grey text.
21203 \end_layout
21204
21205 \end_inset
21206
21207
21208 \begin_inset ERT
21209 status collapsed
21210
21211 \begin_layout Standard
21212
21213
21214 \backslash
21215 renewenvironment{lyxgreyedout}
21216 \end_layout
21217
21218 \begin_layout Standard
21219
21220 {
21221 \backslash
21222 textcolor{blue}
21223 \backslash
21224 bgroup}{
21225 \backslash
21226 egroup}
21227 \end_layout
21228
21229 \end_inset
21230
21231
21232 \begin_inset Note Note
21233 status collapsed
21234
21235 \begin_layout Standard
21236 The greyed out note is here redefined to show it with the original LyX definitio
21237 n because greyed out notes are redefined in the preamble of this document,
21238  as described below, to have blue text.
21239 \end_layout
21240
21241 \end_inset
21242
21243
21244 \newline
21245
21246 \newline
21247 As you can see in the example, the first line of greyed out notes is a bit
21248  indented and greyed out notes can have footnotes.
21249 \end_layout
21250
21251 \begin_layout Description
21252 Framed This note will appear in the output as framed text.
21253  Its note-box looks like this:
21254 \newline
21255
21256 \newline
21257
21258 \begin_inset Graphics
21259         filename clipart/FramedNoteImageQt4.png
21260         display none
21261         scale 85
21262
21263 \end_inset
21264
21265  
21266 \begin_inset Note Framed
21267 status open
21268
21269 \begin_layout Standard
21270 This is text in a note box that appears framed in the output.
21271 \end_layout
21272
21273 \end_inset
21274
21275  In contrary to framed boxes
21276 \begin_inset Foot
21277 status collapsed
21278
21279 \begin_layout Standard
21280 Framed boxes are described in section\InsetSpace ~
21281
21282 \begin_inset LatexCommand ref
21283 reference "sec:Framed-Boxes"
21284
21285 \end_inset
21286
21287 .
21288 \end_layout
21289
21290 \end_inset
21291
21292  the frame uses always the whole text width and the note is set into its
21293  own paragraph.
21294 \end_layout
21295
21296 \begin_layout Description
21297 Shaded This note will appear in the output with red background color.
21298  Its note box looks like this:
21299 \newline
21300
21301 \newline
21302
21303 \begin_inset Graphics
21304         filename clipart/ShadedNoteImageQt4.png
21305         display none
21306         scale 85
21307
21308 \end_inset
21309
21310
21311 \begin_inset Note Shaded
21312 status open
21313
21314 \begin_layout Standard
21315 This text in a note box appears in the output with red background.
21316 \end_layout
21317
21318 \end_inset
21319
21320 In contrary to colored boxes
21321 \begin_inset Foot
21322 status collapsed
21323
21324 \begin_layout Standard
21325 Colored boxes are described in section\InsetSpace ~
21326
21327 \begin_inset LatexCommand ref
21328 reference "sec:Colored-Boxes"
21329
21330 \end_inset
21331
21332 .
21333 \end_layout
21334
21335 \end_inset
21336
21337  the note uses always the whole text width and the note is set into its
21338  own paragraph.
21339 \end_layout
21340
21341 \begin_layout Standard
21342 \begin_inset VSpace bigskip
21343 \end_inset
21344
21345 When you use the toolbar button to insert notes, a 
21346 \family sans
21347 LyX\InsetSpace ~
21348 Note
21349 \family default
21350  is inserted.
21351  You can switch between the five note types by right-clicking on the note-box.
21352  
21353 \family roman
21354 \series medium
21355 \bar no
21356 If you want to turn existing text into a note, mark it and click on the
21357  note
21358 \family default
21359 \series default
21360 \bar default
21361  toolbar 
21362 \family roman
21363 \series medium
21364 \bar no
21365 button
21366 \family default
21367 \series default
21368 \bar default
21369 .
21370 \end_layout
21371
21372 \begin_layout Standard
21373 \begin_inset VSpace bigskip
21374 \end_inset
21375
21376 You can change the text color of the greyed out notes in the preamble with
21377  the following command:
21378 \end_layout
21379
21380 \begin_layout Standard
21381
21382 \series bold
21383
21384 \backslash
21385 renewenvironment{lyxgreyedout}
21386 \newline
21387
21388 \begin_inset ERT
21389 status collapsed
21390
21391 \begin_layout Standard
21392
21393
21394 \backslash
21395 hphantom{ }
21396 \end_layout
21397
21398 \end_inset
21399
21400 {
21401 \backslash
21402 textcolor{color}
21403 \backslash
21404 bgroup}{
21405 \backslash
21406 egroup}
21407 \end_layout
21408
21409 \begin_layout Standard
21410 The available colors and the method to define own colors is explained in
21411  section\InsetSpace ~
21412
21413 \begin_inset LatexCommand ref
21414 reference "sec:Colored-Tables"
21415
21416 \end_inset
21417
21418 .
21419 \end_layout
21420
21421 \begin_layout Standard
21422 Notes that appear in blue in this document are set using greyed out notes
21423  with blue text.
21424 \end_layout
21425
21426 \begin_layout Standard
21427 \begin_inset VSpace bigskip
21428 \end_inset
21429
21430
21431 \end_layout
21432
21433 \begin_layout Standard
21434 The text style of 
21435 \family sans
21436 Framed
21437 \family default
21438  and 
21439 \family sans
21440 Shaded
21441 \family default
21442  notes can be set in the 
21443 \family sans
21444 Text Style
21445 \family default
21446  dialog.
21447 \end_layout
21448
21449 \begin_layout Standard
21450 The default frame width for 
21451 \family sans
21452 Framed
21453 \family default
21454  notes is 0.4\InsetSpace \thinspace{}
21455 pt; it can be changed by changing the size 
21456 \series bold
21457
21458 \backslash
21459 FrameRule
21460 \series default
21461 .
21462  The default space between the note content and the frame is 9\InsetSpace \thinspace{}
21463 pt; it can
21464  be changed by changing the size 
21465 \series bold
21466
21467 \backslash
21468 FrameSep
21469 \series default
21470 .
21471  For example the frame appearance of the following 
21472 \family sans
21473 Framed
21474 \family default
21475  note is set with the ERT commands
21476 \end_layout
21477
21478 \begin_layout Standard
21479
21480 \series bold
21481
21482 \backslash
21483 FrameRule 5pt 
21484 \backslash
21485 FrameSep 0.5cm
21486 \end_layout
21487
21488 \begin_layout Standard
21489 \begin_inset ERT
21490 status collapsed
21491
21492 \begin_layout Standard
21493
21494
21495 \backslash
21496 FrameRule 5pt 
21497 \backslash
21498 FrameSep 0.5cm
21499 \end_layout
21500
21501 \end_inset
21502
21503
21504 \begin_inset Note Framed
21505 status open
21506
21507 \begin_layout Standard
21508 This is text in a 
21509 \family sans
21510 Framed
21511 \family default
21512  note.
21513 \end_layout
21514
21515 \end_inset
21516
21517
21518 \begin_inset ERT
21519 status collapsed
21520
21521 \begin_layout Standard
21522
21523
21524 \backslash
21525 FrameRule 0.4pt 
21526 \backslash
21527 FrameSep 9pt
21528 \end_layout
21529
21530 \end_inset
21531
21532
21533 \end_layout
21534
21535 \begin_layout Standard
21536 \begin_inset VSpace bigskip
21537 \end_inset
21538
21539
21540 \end_layout
21541
21542 \begin_layout Standard
21543 For 
21544 \family sans
21545 Shaded
21546 \family default
21547  notes the default space between the note content and the note border is
21548  3\InsetSpace \thinspace{}
21549 pt; it can be changed by changing the size 
21550 \series bold
21551
21552 \backslash
21553 fboxsep
21554 \series default
21555 .
21556 \newline
21557 The default background color red can be changed with the command 
21558 \series bold
21559
21560 \backslash
21561 def\SpecialChar \textcompwordmark{}
21562 inecolor{shadebox}
21563 \series default
21564 .
21565  The scheme of the 
21566 \series bold
21567
21568 \backslash
21569 def\SpecialChar \textcompwordmark{}
21570 inecolor
21571 \series default
21572  command is explained in section\InsetSpace ~
21573
21574 \begin_inset LatexCommand ref
21575 reference "sec:Colored-Tables"
21576
21577 \end_inset
21578
21579
21580 \begin_inset Foot
21581 status collapsed
21582
21583 \begin_layout Standard
21584 Note that 
21585 \series bold
21586
21587 \backslash
21588 def
21589 \series default
21590 \SpecialChar \textcompwordmark{}
21591
21592 \series bold
21593 inecolor
21594 \series default
21595  requires the LaTeX-package 
21596 \series bold
21597 color
21598 \series default
21599  in the preamble, see section\InsetSpace ~
21600
21601 \begin_inset LatexCommand ref
21602 reference "sec:Colored-Boxes"
21603
21604 \end_inset
21605
21606 .
21607 \end_layout
21608
21609 \end_inset
21610
21611 .
21612 \end_layout
21613
21614 \begin_layout Standard
21615 For example the appearance of the following 
21616 \family sans
21617 Shaded
21618 \family default
21619  note is set with the ERT commands
21620 \end_layout
21621
21622 \begin_layout Standard
21623
21624 \series bold
21625
21626 \backslash
21627 fboxsep 0.5cm
21628 \series default
21629
21630 \newline
21631
21632 \series bold
21633
21634 \backslash
21635 def\SpecialChar \textcompwordmark{}
21636 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21637 \end_layout
21638
21639 \begin_layout Standard
21640 \begin_inset ERT
21641 status collapsed
21642
21643 \begin_layout Standard
21644
21645
21646 \backslash
21647 fboxsep 0.5cm
21648 \end_layout
21649
21650 \end_inset
21651
21652
21653 \begin_inset ERT
21654 status collapsed
21655
21656 \begin_layout Standard
21657
21658
21659 \backslash
21660 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21661 \end_layout
21662
21663 \end_inset
21664
21665
21666 \begin_inset Note Shaded
21667 status open
21668
21669 \begin_layout Standard
21670
21671 \color yellow
21672 This is yellow text in a
21673 \color none
21674  
21675 \family sans
21676 \color yellow
21677 Shaded
21678 \family default
21679 \color none
21680  
21681 \color yellow
21682 note with darkgreen background.
21683 \end_layout
21684
21685 \end_inset
21686
21687
21688 \begin_inset ERT
21689 status collapsed
21690
21691 \begin_layout Standard
21692
21693
21694 \backslash
21695 fboxsep 3pt
21696 \end_layout
21697
21698 \end_inset
21699
21700
21701 \begin_inset ERT
21702 status collapsed
21703
21704 \begin_layout Standard
21705
21706
21707 \backslash
21708 definecolor{shadecolor}{rgb}{1,0,0}
21709 \end_layout
21710
21711 \end_inset
21712
21713
21714 \end_layout
21715
21716 \begin_layout Section
21717 Footnotes
21718 \begin_inset LatexCommand label
21719 name "sec:Footnotes"
21720
21721 \end_inset
21722
21723
21724 \begin_inset LatexCommand index
21725 name "Notes ! Footnotes"
21726
21727 \end_inset
21728
21729
21730 \begin_inset LatexCommand index
21731 name "Footnotes"
21732
21733 \end_inset
21734
21735
21736 \end_layout
21737
21738 \begin_layout Standard
21739 Footnotes can be inserted using the toolbar button 
21740 \begin_inset Graphics
21741         filename ../images/footnote-insert.xpm
21742         scale 85
21743
21744 \end_inset
21745
21746  or the menu 
21747 \family sans
21748 Insert\SpecialChar \menuseparator
21749 Footnote
21750 \family default
21751 .
21752  
21753 \family roman
21754 \series medium
21755 \bar no
21756 You'll see
21757 \family default
21758 \series default
21759 \bar default
21760  then the following footnote-box: 
21761 \begin_inset Graphics
21762         filename clipart/footnoteQt4.png
21763         scale 80
21764
21765 \end_inset
21766
21767  
21768 \family roman
21769 \series medium
21770 \bar no
21771 where you can enter the footnote text.
21772  If you want to turn existing text into a footnote, mark it and click on
21773  the footnote
21774 \family default
21775 \series default
21776 \bar default
21777  toolbar 
21778 \family roman
21779 \series medium
21780 \bar no
21781 button
21782 \family default
21783 \series default
21784 \bar default
21785 .
21786 \end_layout
21787
21788 \begin_layout Standard
21789 Here is an example footnote:
21790 \family roman
21791 \series medium
21792 \bar no
21793
21794 \begin_inset Foot
21795 status open
21796
21797 \begin_layout Standard
21798 \begin_inset LatexCommand label
21799 name "foot:This-is-an"
21800
21801 \end_inset
21802
21803 This is an example footnote.
21804 \end_layout
21805
21806 \end_inset
21807
21808
21809 \family default
21810 \series default
21811 \bar default
21812
21813 \begin_inset ERT
21814 status collapsed
21815
21816 \begin_layout Standard
21817
21818
21819 \backslash
21820 newcounter{MyRepeatFoot}
21821 \end_layout
21822
21823 \begin_layout Standard
21824
21825
21826 \backslash
21827 setcounter{MyRepeatFoot}{
21828 \backslash
21829 thefootnote}
21830 \end_layout
21831
21832 \end_inset
21833
21834
21835 \end_layout
21836
21837 \begin_layout Standard
21838 The footnote will appear in the output as a superscript number at the text
21839  position where the footnote box is placed.
21840  The footnote text is placed at the bottom of the current page.
21841  The footnote number is calculated by LaTeX, the numbers are consecutive.
21842  It depends on your document-class, if the footnote number is reset for
21843  every chapter.
21844 \end_layout
21845
21846 \begin_layout Standard
21847 Footnotes can be referenced like floats: Insert a label into the footnote
21848  and cross-reference this label in the text as described in section\InsetSpace ~
21849
21850 \begin_inset LatexCommand ref
21851 reference "sec:Referencing-Floats"
21852
21853 \end_inset
21854
21855 .
21856 \newline
21857 This is a cross-reference of Footnote\InsetSpace ~
21858
21859 \begin_inset LatexCommand ref
21860 reference "foot:This-is-an"
21861
21862 \end_inset
21863
21864 .
21865 \end_layout
21866
21867 \begin_layout Standard
21868 \begin_inset VSpace defskip
21869 \end_inset
21870
21871 To use footnotes within tables, you have to use minipages, see section\InsetSpace ~
21872
21873 \begin_inset LatexCommand ref
21874 reference "sec:Minipages"
21875
21876 \end_inset
21877
21878 .
21879  Footnotes within longtables are described in section\InsetSpace ~
21880
21881 \begin_inset LatexCommand ref
21882 reference "sub:Footnotes-in-Longtables"
21883
21884 \end_inset
21885
21886 .
21887 \end_layout
21888
21889 \begin_layout Standard
21890 \begin_inset VSpace defskip
21891 \end_inset
21892
21893 To create only a mark for a footnote, use the command 
21894 \series bold
21895
21896 \backslash
21897 footnotemark[number]
21898 \series default
21899  in ERT.
21900  This is used when you have the same annotation several times in a text
21901  but doesn't want to print the footnote text every time.
21902 \newline
21903 As you don't know
21904  the number of the repeating footnote while you are writing the text, you
21905  have to store its number.
21906  For the following footnote mark example, these commands were inserted in
21907  ERT behind Footnote\InsetSpace ~
21908
21909 \begin_inset LatexCommand ref
21910 reference "foot:This-is-an"
21911
21912 \end_inset
21913
21914  to store the footnote number:
21915 \end_layout
21916
21917 \begin_layout Standard
21918
21919 \series bold
21920
21921 \backslash
21922 newcounter{MyRepeatFoot}
21923 \newline
21924
21925 \backslash
21926 setcounter{MyRepeatFoot}{
21927 \backslash
21928 thefootnote}
21929 \end_layout
21930
21931 \begin_layout Standard
21932 The footnote mark was then created with this command:
21933 \end_layout
21934
21935 \begin_layout Standard
21936
21937 \series bold
21938
21939 \backslash
21940 footnotemark[
21941 \backslash
21942 theMyRepeatFoot]
21943 \end_layout
21944
21945 \begin_layout Standard
21946 Here is an example footnote mark:
21947 \family roman
21948 \series medium
21949 \bar no
21950
21951 \begin_inset ERT
21952 status collapsed
21953
21954 \begin_layout Standard
21955
21956
21957 \backslash
21958 footnotemark[
21959 \backslash
21960 theMyRepeatFoot]
21961 \end_layout
21962
21963 \end_inset
21964
21965
21966 \end_layout
21967
21968 \begin_layout Subsection
21969 Footnote Numbering
21970 \begin_inset LatexCommand label
21971 name "sub:Footnote-Numbering"
21972
21973 \end_inset
21974
21975
21976 \begin_inset LatexCommand index
21977 name "Footnotes ! Numbering"
21978
21979 \end_inset
21980
21981
21982 \end_layout
21983
21984 \begin_layout Standard
21985 To reset the footnote number back to 1 after each section
21986 \family roman
21987 , add this command to your document preamble:
21988 \end_layout
21989
21990 \begin_layout Standard
21991
21992 \series bold
21993
21994 \backslash
21995 @addtoreset{footnote}{section}
21996 \end_layout
21997
21998 \begin_layout Standard
21999 \begin_inset VSpace bigskip
22000 \end_inset
22001
22002 The following preamble command changes the footnote numbering style to small
22003  roman numerals:
22004 \end_layout
22005
22006 \begin_layout Standard
22007
22008 \series bold
22009
22010 \backslash
22011 renewcommand{
22012 \backslash
22013 thefootnote}{
22014 \backslash
22015 roman{footnote}}
22016 \end_layout
22017
22018 \begin_layout Standard
22019 \begin_inset ERT
22020 status collapsed
22021
22022 \begin_layout Standard
22023
22024
22025 \backslash
22026 renewcommand{
22027 \backslash
22028 thefootnote}{
22029 \backslash
22030 roman{footnote}}
22031 \end_layout
22032
22033 \end_inset
22034
22035  This is a footnote with roman numbering:
22036 \begin_inset Foot
22037 status open
22038
22039 \begin_layout Standard
22040 This is an example footnote with roman numbering.
22041 \end_layout
22042
22043 \end_inset
22044
22045
22046 \begin_inset ERT
22047 status collapsed
22048
22049 \begin_layout Standard
22050
22051
22052 \backslash
22053 renewcommand{
22054 \backslash
22055 thefootnote}{
22056 \backslash
22057 arabic{footnote}}
22058 \end_layout
22059
22060 \end_inset
22061
22062
22063 \end_layout
22064
22065 \begin_layout Standard
22066 To change the numbering style to capital roman numerals replace in the command
22067  above 
22068 \series bold
22069
22070 \backslash
22071 roman
22072 \series default
22073  by 
22074 \series bold
22075
22076 \backslash
22077 Roman
22078 \series default
22079 .
22080  To 
22081 \begin_inset Quotes eld
22082 \end_inset
22083
22084 number
22085 \begin_inset Quotes erd
22086 \end_inset
22087
22088  footnotes with capital or small Latin letters use 
22089 \series bold
22090
22091 \backslash
22092 Alph
22093 \series default
22094  or 
22095 \series bold
22096
22097 \backslash
22098 alph
22099 \series default
22100 , respectively.
22101  To 
22102 \begin_inset Quotes eld
22103 \end_inset
22104
22105 number
22106 \begin_inset Quotes erd
22107 \end_inset
22108
22109  footnotes with symbols use 
22110 \series bold
22111
22112 \backslash
22113 fnsymbol
22114 \series default
22115 .
22116 \end_layout
22117
22118 \begin_layout Standard
22119 \begin_inset Note Greyedout
22120 status open
22121
22122 \begin_layout Standard
22123
22124 \series bold
22125 Note:
22126 \series default
22127  You can only number 26 footnotes with Latin letters, because this numbering
22128  is limited to single letters.
22129 \end_layout
22130
22131 \end_inset
22132
22133
22134 \newline
22135
22136 \begin_inset Note Greyedout
22137 status open
22138
22139 \begin_layout Standard
22140
22141 \series bold
22142 Note:
22143 \series default
22144  You can only number 9 footnotes with symbols.
22145 \end_layout
22146
22147 \end_inset
22148
22149
22150 \end_layout
22151
22152 \begin_layout Standard
22153 To return to the default numbering style when you changed to another one,
22154  use 
22155 \series bold
22156
22157 \backslash
22158 arabic
22159 \series default
22160  instead of 
22161 \series bold
22162
22163 \backslash
22164 roman
22165 \series default
22166  in the command above.
22167 \end_layout
22168
22169 \begin_layout Standard
22170 \begin_inset VSpace bigskip
22171 \end_inset
22172
22173
22174 \end_layout
22175
22176 \begin_layout Standard
22177 If you want to have footnotes numbered in the scheme 
22178 \begin_inset Quotes eld
22179 \end_inset
22180
22181 chapter.footnote
22182 \begin_inset Quotes erd
22183 \end_inset
22184
22185 , add the following command to your document preamble:
22186 \end_layout
22187
22188 \begin_layout Standard
22189
22190 \series bold
22191
22192 \backslash
22193 numberwithin{footnote}{chapter}
22194 \end_layout
22195
22196 \begin_layout Standard
22197 To be able to use the command 
22198 \series bold
22199
22200 \backslash
22201 numberwithin
22202 \series default
22203 , set in the tab 
22204 \family sans
22205 Math\InsetSpace ~
22206 Options
22207 \family default
22208  in the document settings the option 
22209 \family sans
22210 Use\InsetSpace ~
22211 AMS\InsetSpace ~
22212 math\InsetSpace ~
22213 package
22214 \family default
22215 .
22216 \end_layout
22217
22218 \begin_layout Standard
22219 \begin_inset ERT
22220 status collapsed
22221
22222 \begin_layout Standard
22223
22224
22225 \backslash
22226 numberwithin{footnote}{chapter}
22227 \end_layout
22228
22229 \end_inset
22230
22231 This is another example footnote:
22232 \series bold
22233
22234 \begin_inset Foot
22235 status open
22236
22237 \begin_layout Standard
22238 This is a footnote numbered in the scheme 
22239 \begin_inset Quotes eld
22240 \end_inset
22241
22242 chapter.footnote
22243 \begin_inset Quotes erd
22244 \end_inset
22245
22246 .
22247 \end_layout
22248
22249 \end_inset
22250
22251
22252 \series default
22253
22254 \begin_inset ERT
22255 status collapsed
22256
22257 \begin_layout Standard
22258
22259
22260 \backslash
22261 renewcommand{
22262 \backslash
22263 thefootnote}{
22264 \backslash
22265 arabic{footnote}}
22266 \end_layout
22267
22268 \end_inset
22269
22270
22271 \end_layout
22272
22273 \begin_layout Standard
22274 \begin_inset Note Greyedout
22275 status open
22276
22277 \begin_layout Standard
22278
22279 \series bold
22280 Note:
22281 \series default
22282  
22283 \series bold
22284
22285 \backslash
22286 numberwithin
22287 \series default
22288  always prints out the footnote number as arabic number; previous redefinitions
22289  to get non-arabic numbers are overwritten.
22290 \end_layout
22291
22292 \end_inset
22293
22294
22295 \end_layout
22296
22297 \begin_layout Standard
22298 So to get for example the scheme 
22299 \begin_inset Quotes eld
22300 \end_inset
22301
22302 chapter.
22303 \backslash
22304 Roman{footnote}
22305 \begin_inset Quotes erd
22306 \end_inset
22307
22308 , use this command instead of 
22309 \series bold
22310
22311 \backslash
22312 numberwithin
22313 \series default
22314 :
22315 \end_layout
22316
22317 \begin_layout Standard
22318
22319 \series bold
22320
22321 \backslash
22322 renewcommand{
22323 \backslash
22324 thefootnote}{
22325 \backslash
22326 thechapter.
22327 \backslash
22328 Roman{footnote}}
22329 \end_layout
22330
22331 \begin_layout Subsection
22332 Footnote Placement
22333 \begin_inset LatexCommand index
22334 name "Footnotes ! Placement"
22335
22336 \end_inset
22337
22338
22339 \end_layout
22340
22341 \begin_layout Standard
22342 If you have several footnotes in one page, they appear without vertical
22343  space between them at the bottom of the page.
22344  To make them better readable you can e.\InsetSpace \thinspace{}
22345 g.\InsetSpace ~
22346 add 1.5\InsetSpace \thinspace{}
22347 mm space with the following
22348  preamble command:
22349 \end_layout
22350
22351 \begin_layout Standard
22352
22353 \series bold
22354
22355 \backslash
22356 let
22357 \backslash
22358 myFoot
22359 \backslash
22360 footnote
22361 \newline
22362
22363 \backslash
22364 renewcommand{
22365 \backslash
22366 footnote}[1]{
22367 \backslash
22368 myFoot{#1
22369 \backslash
22370 vspace{1.5mm}}}
22371 \end_layout
22372
22373 \begin_layout Standard
22374 \begin_inset VSpace bigskip
22375 \end_inset
22376
22377 In a two-column document the footnotes appear at the bottom of every column,
22378  see Figure\InsetSpace ~
22379
22380 \begin_inset LatexCommand ref
22381 reference "fig:Standard-footnote-placement"
22382
22383 \end_inset
22384
22385 .
22386  If the footnotes should only appear at the bottom of the right column,
22387  as in Figure\InsetSpace ~
22388
22389 \begin_inset LatexCommand ref
22390 reference "fig:Footnote-placement-in"
22391
22392 \end_inset
22393
22394 , use the LaTeX-package 
22395 \series bold
22396 ftnright
22397 \series default
22398
22399 \begin_inset LatexCommand index
22400 name "LaTeX-packages ! ftnright"
22401
22402 \end_inset
22403
22404  with this command in the document preamble:
22405 \end_layout
22406
22407 \begin_layout Standard
22408
22409 \series bold
22410
22411 \backslash
22412 usepackage{ftnright}
22413 \end_layout
22414
22415 \begin_layout Standard
22416 \begin_inset Float figure
22417 placement !h
22418 wide false
22419 sideways false
22420 status open
22421
22422 \begin_layout Standard
22423 \begin_inset ERT
22424 status collapsed
22425
22426 \begin_layout Standard
22427
22428
22429 \backslash
22430 framebox{
22431 \end_layout
22432
22433 \end_inset
22434
22435
22436 \begin_inset Graphics
22437         filename clipart/without_fntright.pdf
22438         width 100col%
22439
22440 \end_inset
22441
22442
22443 \begin_inset ERT
22444 status collapsed
22445
22446 \begin_layout Standard
22447
22448 }
22449 \end_layout
22450
22451 \end_inset
22452
22453
22454 \end_layout
22455
22456 \begin_layout Standard
22457 \begin_inset Caption
22458
22459 \begin_layout Standard
22460 \begin_inset LatexCommand label
22461 name "fig:Standard-footnote-placement"
22462
22463 \end_inset
22464
22465 Standard footnote placement in two-column documents.
22466 \end_layout
22467
22468 \end_inset
22469
22470
22471 \end_layout
22472
22473 \end_inset
22474
22475
22476 \end_layout
22477
22478 \begin_layout Standard
22479 \begin_inset Float figure
22480 placement !h
22481 wide false
22482 sideways false
22483 status open
22484
22485 \begin_layout Standard
22486 \begin_inset ERT
22487 status collapsed
22488
22489 \begin_layout Standard
22490
22491
22492 \backslash
22493 framebox{
22494 \end_layout
22495
22496 \end_inset
22497
22498
22499 \begin_inset Graphics
22500         filename clipart/with_fntright.pdf
22501         width 100col%
22502
22503 \end_inset
22504
22505
22506 \begin_inset ERT
22507 status collapsed
22508
22509 \begin_layout Standard
22510
22511 }
22512 \end_layout
22513
22514 \end_inset
22515
22516
22517 \end_layout
22518
22519 \begin_layout Standard
22520 \begin_inset Caption
22521
22522 \begin_layout Standard
22523 \begin_inset LatexCommand label
22524 name "fig:Footnote-placement-in"
22525
22526 \end_inset
22527
22528 Footnote placement in two-column documents when the LaTeX-package 
22529 \series bold
22530 ftnright
22531 \series default
22532  is used.
22533 \end_layout
22534
22535 \end_inset
22536
22537
22538 \end_layout
22539
22540 \end_inset
22541
22542
22543 \end_layout
22544
22545 \begin_layout Standard
22546 \begin_inset VSpace bigskip
22547 \end_inset
22548
22549 In some scientific literature it is usual to collect the footnotes and print
22550  them in a separate paragraph at the the end of a section, like in Figure\InsetSpace ~
22551
22552 \begin_inset LatexCommand ref
22553 reference "fig:Endnotes----footnotes"
22554
22555 \end_inset
22556
22557 .
22558  They are then so called 
22559 \begin_inset Quotes eld
22560 \end_inset
22561
22562 endnotes
22563 \begin_inset Quotes erd
22564 \end_inset
22565
22566 .
22567  To use endnotes instead of footnotes in your document, load the LaTeX-package
22568  
22569 \series bold
22570 endnotes
22571 \series default
22572
22573 \begin_inset LatexCommand index
22574 name "LaTeX-packages ! endnotes"
22575
22576 \end_inset
22577
22578  with the document preamble lines
22579 \end_layout
22580
22581 \begin_layout Standard
22582
22583 \series bold
22584
22585 \backslash
22586 usepackage{endnotes}
22587 \newline
22588
22589 \backslash
22590 let
22591 \backslash
22592 footnote
22593 \backslash
22594 endnote
22595 \end_layout
22596
22597 \begin_layout Standard
22598 To insert the collected footnotes, insert the command
22599 \end_layout
22600
22601 \begin_layout Standard
22602
22603 \series bold
22604
22605 \backslash
22606 theendnotes
22607 \end_layout
22608
22609 \begin_layout Standard
22610 in ERT at the the end of a section or chapter.
22611 \end_layout
22612
22613 \begin_layout Standard
22614 \begin_inset Float figure
22615 wide false
22616 sideways false
22617 status open
22618
22619 \begin_layout Standard
22620 \align center
22621 \begin_inset ERT
22622 status collapsed
22623
22624 \begin_layout Standard
22625
22626
22627 \backslash
22628 framebox{
22629 \end_layout
22630
22631 \end_inset
22632
22633
22634 \begin_inset Graphics
22635         filename clipart/endnotes.pdf
22636
22637 \end_inset
22638
22639
22640 \begin_inset ERT
22641 status collapsed
22642
22643 \begin_layout Standard
22644
22645 }
22646 \end_layout
22647
22648 \end_inset
22649
22650
22651 \end_layout
22652
22653 \begin_layout Standard
22654 \begin_inset Caption
22655
22656 \begin_layout Standard
22657 \begin_inset LatexCommand label
22658 name "fig:Endnotes----footnotes"
22659
22660 \end_inset
22661
22662 Endnotes -- footnotes are printed in a separate paragraph at the end of
22663  sections or chapters.
22664 \end_layout
22665
22666 \end_inset
22667
22668
22669 \end_layout
22670
22671 \end_inset
22672
22673
22674 \end_layout
22675
22676 \begin_layout Standard
22677 \begin_inset VSpace defskip
22678 \end_inset
22679
22680 The paragraph heading for the endnotes isn't automatically translated into
22681  the document language, this must be done manually.
22682  The following preamble command translate the default English name 
22683 \begin_inset Quotes eld
22684 \end_inset
22685
22686 Notes
22687 \begin_inset Quotes erd
22688 \end_inset
22689
22690  to the German translation 
22691 \begin_inset Quotes eld
22692 \end_inset
22693
22694 Anmerkungen
22695 \begin_inset Quotes erd
22696 \end_inset
22697
22698 :
22699 \end_layout
22700
22701 \begin_layout Standard
22702
22703 \series bold
22704
22705 \backslash
22706 renewcommand{
22707 \backslash
22708 notesname}{Anmerkungen}
22709 \end_layout
22710
22711 \begin_layout Standard
22712 \begin_inset VSpace defskip
22713 \end_inset
22714
22715 The numbering of endnotes can be changed like the footnote numbering as
22716  described in section\InsetSpace ~
22717
22718 \begin_inset LatexCommand ref
22719 reference "sub:Footnote-Numbering"
22720
22721 \end_inset
22722
22723 ; just replace the command 
22724 \series bold
22725
22726 \backslash
22727 thefootnote
22728 \series default
22729  by 
22730 \series bold
22731
22732 \backslash
22733 theendnote
22734 \series default
22735 .
22736  To reset the endnote number use the command 
22737 \series bold
22738
22739 \backslash
22740 @addtoreset
22741 \series default
22742  as described in section\InsetSpace ~
22743
22744 \begin_inset LatexCommand ref
22745 reference "sub:Footnote-Numbering"
22746
22747 \end_inset
22748
22749  and replace the command parameter 
22750 \series bold
22751 footnote
22752 \series default
22753  by 
22754 \series bold
22755 endnote
22756 \series default
22757 .
22758 \end_layout
22759
22760 \begin_layout Standard
22761 To create only a mark for an endnote, use the command 
22762 \series bold
22763
22764 \backslash
22765 endnotemark[number]
22766 \series default
22767  similar to the command 
22768 \series bold
22769
22770 \backslash
22771 footnotemark
22772 \series default
22773 , described in section\InsetSpace ~
22774
22775 \begin_inset LatexCommand ref
22776 reference "sec:Footnotes"
22777
22778 \end_inset
22779
22780 .
22781 \end_layout
22782
22783 \begin_layout Standard
22784 \begin_inset VSpace bigskip
22785 \end_inset
22786
22787 Footnotes can also be placed in the page margin and the footnote text alignment
22788  can be changed, see the LaTeX-package 
22789 \series bold
22790 footmisc
22791 \series default
22792
22793 \begin_inset LatexCommand index
22794 name "LaTeX-packages ! footmisc"
22795
22796 \end_inset
22797
22798
22799 \begin_inset LatexCommand cite
22800 key "footmisc"
22801
22802 \end_inset
22803
22804  for more information about this.
22805 \end_layout
22806
22807 \begin_layout Standard
22808 For various further footnote formatting issues have a look at LaTeX-books,
22809  
22810 \begin_inset LatexCommand cite
22811 key "latexcompanion,latexguide,latexbook"
22812
22813 \end_inset
22814
22815 .
22816 \end_layout
22817
22818 \begin_layout Section
22819 Margin Notes
22820 \begin_inset LatexCommand index
22821 name "Notes ! Margin Notes"
22822
22823 \end_inset
22824
22825
22826 \end_layout
22827
22828 \begin_layout Standard
22829 Margin notes look and behave in LyX like footnotes.
22830  They are inserted via the menu 
22831 \family sans
22832 Insert\SpecialChar \menuseparator
22833 Marginal\InsetSpace ~
22834 Note
22835 \family default
22836  or the toolbar button 
22837 \begin_inset Graphics
22838         filename ../images/marginalnote-insert.xpm
22839         scale 85
22840
22841 \end_inset
22842
22843 .
22844  A grey 
22845 \family roman
22846 \series medium
22847 box with the
22848 \family default
22849 \series default
22850  red 
22851 \family roman
22852 \series medium
22853 label 
22854 \begin_inset Quotes eld
22855 \end_inset
22856
22857 margin
22858 \begin_inset Quotes erd
22859 \end_inset
22860
22861  appears where you can enter the text of the margin note.
22862 \end_layout
22863
22864 \begin_layout Standard
22865 At the side is an example margin note.
22866 \family roman
22867 \series medium
22868
22869 \begin_inset Marginal
22870 status open
22871
22872 \begin_layout Standard
22873 This is a margin note.
22874 \end_layout
22875
22876 \end_inset
22877
22878
22879 \end_layout
22880
22881 \begin_layout Standard
22882 Margin notes appear at the right side in single-sided documents.
22883  In double-sided documents they appear in the outer margin -- left on even
22884  pages, right on odd pages.
22885  The text of margin notes is aligned opposite to the outer margin -- right-align
22886 ed when the note appears in the left margin.
22887  The first line of the margin note is placed at the position of the text
22888  line where it is inserted in the document.
22889 \end_layout
22890
22891 \begin_layout Standard
22892 \begin_inset VSpace bigskip
22893 \end_inset
22894
22895 To place the margin note in the inner margin, add the command
22896 \end_layout
22897
22898 \begin_layout Standard
22899
22900 \series bold
22901
22902 \backslash
22903 reversemarginpar
22904 \end_layout
22905
22906 \begin_layout Standard
22907 in ERT before a margin note.
22908  The new placement is valid for all following margin notes.
22909 \begin_inset ERT
22910 status collapsed
22911
22912 \begin_layout Standard
22913
22914
22915 \backslash
22916 reversemarginpar 
22917 \end_layout
22918
22919 \end_inset
22920
22921
22922 \begin_inset Marginal
22923 status open
22924
22925 \begin_layout Standard
22926 This is a margin note in the inner margin.
22927 \end_layout
22928
22929 \end_inset
22930
22931
22932 \series bold
22933
22934 \newline
22935
22936 \series default
22937
22938 \begin_inset Note Greyedout
22939 status open
22940
22941 \begin_layout Standard
22942
22943 \series bold
22944 Note:
22945 \series default
22946  There is often not enough space in the inner margin so that the notes are
22947  not correctly displayed in the output.
22948 \end_layout
22949
22950 \end_inset
22951
22952
22953 \end_layout
22954
22955 \begin_layout Standard
22956 \begin_inset ERT
22957 status collapsed
22958
22959 \begin_layout Standard
22960
22961
22962 \backslash
22963 normalmarginpar 
22964 \end_layout
22965
22966 \end_inset
22967
22968 To return to the default placement insert the command
22969 \end_layout
22970
22971 \begin_layout Standard
22972
22973 \series bold
22974
22975 \backslash
22976 normalmarginpar
22977 \end_layout
22978
22979 \begin_layout Standard
22980 in ERT.
22981  
22982 \begin_inset Note Greyedout
22983 status open
22984
22985 \begin_layout Standard
22986
22987 \series bold
22988 Note:
22989 \series default
22990  The command is ignored when it is within a paragraph where also the command
22991  
22992 \series bold
22993
22994 \backslash
22995 reversemarginpar
22996 \series default
22997  is inserted.
22998 \end_layout
22999
23000 \end_inset
23001
23002
23003 \end_layout
23004
23005 \begin_layout Standard
23006 \begin_inset VSpace bigskip
23007 \end_inset
23008
23009
23010 \family roman
23011 \series medium
23012
23013 \begin_inset Marginal
23014 status open
23015
23016 \begin_layout Standard
23017 AVeryLongMarginParWord that isn't hyphenated.
23018 \end_layout
23019
23020 \end_inset
23021
23022
23023 \family default
23024 \series default
23025 Similar to the case described in section\InsetSpace ~
23026
23027 \begin_inset LatexCommand ref
23028 reference "sub:Multiple-Lines-in"
23029
23030 \end_inset
23031
23032 , long words cannot be hyphenated when they are the first word in a margin
23033  note.
23034  To avoid this, insert the command
23035 \end_layout
23036
23037 \begin_layout Standard
23038
23039 \series bold
23040
23041 \backslash
23042 hspace{0pt}
23043 \end_layout
23044
23045 \begin_layout Standard
23046 in ERT before the word
23047 \family roman
23048 \series medium
23049 .
23050 \begin_inset Marginal
23051 status open
23052
23053 \begin_layout Standard
23054 \begin_inset ERT
23055 status collapsed
23056
23057 \begin_layout Standard
23058
23059
23060 \backslash
23061 hspace{0pt}
23062 \end_layout
23063
23064 \end_inset
23065
23066 AVeryLongMarginParWord that is hyphenated.
23067 \end_layout
23068
23069 \end_inset
23070
23071
23072 \end_layout
23073
23074 \begin_layout Standard
23075 \begin_inset VSpace bigskip
23076 \end_inset
23077
23078
23079 \end_layout
23080
23081 \begin_layout Standard
23082 \begin_inset Note Greyedout
23083 status open
23084
23085 \begin_layout Standard
23086
23087 \series bold
23088 Note:
23089 \series default
23090  Margin notes can normally not be used inside tables, floats, and footnotes.
23091 \end_layout
23092
23093 \end_inset
23094
23095
23096 \end_layout
23097
23098 \begin_layout Standard
23099 \begin_inset VSpace bigskip
23100 \end_inset
23101
23102
23103 \end_layout
23104
23105 \begin_layout Standard
23106 \begin_inset ERT
23107 status collapsed
23108
23109 \begin_layout Standard
23110
23111
23112 \backslash
23113 ifmarginnote
23114 \end_layout
23115
23116 \end_inset
23117
23118
23119 \begin_inset Note Note
23120 status open
23121
23122 \begin_layout Standard
23123 The following section will only be displayed when you have the LaTeX-package
23124  
23125 \series bold
23126 marginnote
23127 \series default
23128  is installed.
23129 \end_layout
23130
23131 \end_inset
23132
23133
23134 \end_layout
23135
23136 \begin_layout Standard
23137 This restriction can be evaded by using the LaTeX-package 
23138 \series bold
23139 marginnote
23140 \series default
23141
23142 \begin_inset LatexCommand index
23143 name "LaTeX-packages ! marginnote"
23144
23145 \end_inset
23146
23147 .
23148  By adding these two lines to your document preamble, the command used by
23149  LyX for margin notes is redefined to use the command provided by the 
23150 \series bold
23151 marginnote
23152 \series default
23153 -package:
23154 \end_layout
23155
23156 \begin_layout Standard
23157
23158 \series bold
23159
23160 \backslash
23161 usepackage{marginnote}
23162 \newline
23163
23164 \backslash
23165 let
23166 \backslash
23167 marginpar
23168 \backslash
23169 marginnote
23170 \end_layout
23171
23172 \begin_layout Standard
23173 This is also used in this document because 
23174 \series bold
23175 marginnote
23176 \series default
23177  has another useful feature: You can set a vertical offset for the note.
23178  This is often needed when too many margin notes are too close together
23179  or for a better page layout.
23180  The offset is set in LyX as ERT directly behind the margin note in the
23181  scheme
23182 \end_layout
23183
23184 \begin_layout Standard
23185
23186 \series bold
23187 [offset]
23188 \end_layout
23189
23190 \begin_layout Standard
23191 where the offset is a length with one of the units listed in Table\InsetSpace ~
23192
23193 \begin_inset LatexCommand ref
23194 reference "tab:Units"
23195
23196 \end_inset
23197
23198 .
23199  A negative value shifts the note up, a positive value shifts it down.
23200  
23201 \family roman
23202 \series medium
23203 For example the margin note beside this text line is shifted up 1.5\InsetSpace \thinspace{}
23204 cm with
23205  the ERT-command 
23206 \begin_inset Quotes eld
23207 \end_inset
23208
23209
23210 \family default
23211 \series bold
23212 [-1.5cm]
23213 \family roman
23214 \series medium
23215
23216 \begin_inset Quotes erd
23217 \end_inset
23218
23219
23220 \begin_inset Marginal
23221 status open
23222
23223 \begin_layout Standard
23224 This margin note is shifted up 1.5\InsetSpace \thinspace{}
23225 cm from its original position.
23226 \end_layout
23227
23228 \end_inset
23229
23230
23231 \family default
23232 \series default
23233
23234 \begin_inset ERT
23235 status collapsed
23236
23237 \begin_layout Standard
23238
23239 [-1.5cm]
23240 \end_layout
23241
23242 \end_inset
23243
23244
23245 \end_layout
23246
23247 \begin_layout Standard
23248 \begin_inset VSpace defskip
23249 \end_inset
23250
23251 With 
23252 \series bold
23253 marginnote
23254 \series default
23255  you can also change the alignment of the text in the margin note.
23256  For example the commands
23257 \end_layout
23258
23259 \begin_layout Standard
23260
23261 \series bold
23262
23263 \backslash
23264 renewcommand*{
23265 \backslash
23266 raggedleftmarginnote}{
23267 \backslash
23268 centering}
23269 \newline
23270
23271 \backslash
23272 renewcommand*{
23273 \backslash
23274 raggedrightmarginnote}{
23275 \backslash
23276 centering}
23277 \end_layout
23278
23279 \begin_layout Standard
23280 set the alignment to centered.
23281  
23282 \series bold
23283
23284 \backslash
23285 raggedleftmarginnote
23286 \series default
23287  denotes margin notes that appear at the left side.
23288 \family roman
23289 \series medium
23290
23291 \begin_inset ERT
23292 status collapsed
23293
23294 \begin_layout Standard
23295
23296
23297 \backslash
23298 renewcommand*{
23299 \backslash
23300 raggedleftmarginnote}{
23301 \backslash
23302 centering}
23303 \end_layout
23304
23305 \begin_layout Standard
23306
23307
23308 \backslash
23309 renewcommand*{
23310 \backslash
23311 raggedrightmarginnote}{
23312 \backslash
23313 centering}
23314 \end_layout
23315
23316 \end_inset
23317
23318
23319 \begin_inset Marginal
23320 status open
23321
23322 \begin_layout Standard
23323 The text of this margin note is centered.
23324 \end_layout
23325
23326 \end_inset
23327
23328
23329 \family default
23330 \series default
23331  The default is
23332 \end_layout
23333
23334 \begin_layout Standard
23335
23336 \series bold
23337
23338 \backslash
23339 renewcommand*{
23340 \backslash
23341 raggedleftmarginnote}{
23342 \backslash
23343 raggedleft}
23344 \newline
23345
23346 \backslash
23347 renewcommand*{
23348 \backslash
23349 raggedrightmarginnote}{
23350 \backslash
23351 raggedright}
23352 \family roman
23353 \series medium
23354
23355 \begin_inset ERT
23356 status collapsed
23357
23358 \begin_layout Standard
23359
23360
23361 \backslash
23362 renewcommand*{
23363 \backslash
23364 raggedleftmarginnote}{
23365 \backslash
23366 raggedleft}
23367 \end_layout
23368
23369 \begin_layout Standard
23370
23371
23372 \backslash
23373 renewcommand*{
23374 \backslash
23375 raggedrightmarginnote}{
23376 \backslash
23377 raggedright}
23378 \end_layout
23379
23380 \end_inset
23381
23382
23383 \end_layout
23384
23385 \begin_layout Standard
23386 \begin_inset VSpace defskip
23387 \end_inset
23388
23389 For the other features of 
23390 \series bold
23391 marginnote
23392 \series default
23393  we refer to its documentation 
23394 \begin_inset LatexCommand cite
23395 key "marginnote"
23396
23397 \end_inset
23398
23399 .
23400 \end_layout
23401
23402 \begin_layout Standard
23403 \begin_inset VSpace bigskip
23404 \end_inset
23405
23406 You can change the layout of margin notes by redefining its definition.
23407  To create for example a header for all margin notes with the underlined,
23408  sans-serif, and bold header text 
23409 \begin_inset Quotes eld
23410 \end_inset
23411
23412
23413 \family sans
23414 \series bold
23415 \bar under
23416 Attention!
23417 \family default
23418 \series default
23419 \bar default
23420
23421 \begin_inset Quotes erd
23422 \end_inset
23423
23424 , add this to your document preamble:
23425 \end_layout
23426
23427 \begin_layout Standard
23428
23429 \series bold
23430
23431 \backslash
23432 let
23433 \backslash
23434 myMarginpar
23435 \backslash
23436 marginpar
23437 \newline
23438
23439 \backslash
23440 renewcommand{
23441 \backslash
23442 marginpar}[1]{
23443 \backslash
23444 myMarginpar{%
23445 \newline
23446
23447 \begin_inset ERT
23448 status collapsed
23449
23450 \begin_layout Standard
23451
23452
23453 \backslash
23454 hphantom{ }
23455 \end_layout
23456
23457 \end_inset
23458
23459
23460 \backslash
23461 hspace{0pt}
23462 \backslash
23463 textsf{
23464 \backslash
23465 textbf{
23466 \backslash
23467 underbar{Attention!}}}%
23468 \newline
23469
23470 \begin_inset ERT
23471 status collapsed
23472
23473 \begin_layout Standard
23474
23475
23476 \backslash
23477 hphantom{ }
23478 \end_layout
23479
23480 \end_inset
23481
23482
23483 \backslash
23484 vspace{1.5mm}
23485 \backslash
23486
23487 \backslash
23488 #1}}
23489 \end_layout
23490
23491 \begin_layout Standard
23492
23493 \family roman
23494 \series medium
23495 \begin_inset ERT
23496 status collapsed
23497
23498 \begin_layout Standard
23499
23500
23501 \backslash
23502 let
23503 \backslash
23504 myMarginpar
23505 \backslash
23506 marginpar
23507 \end_layout
23508
23509 \begin_layout Standard
23510
23511
23512 \backslash
23513 renewcommand{
23514 \backslash
23515 marginpar}[1]{
23516 \backslash
23517 myMarginpar{%
23518 \end_layout
23519
23520 \begin_layout Standard
23521
23522    
23523 \backslash
23524 textsf{
23525 \backslash
23526 textbf{
23527 \backslash
23528 underbar{Attention!}}}%
23529 \end_layout
23530
23531 \begin_layout Standard
23532
23533    
23534 \backslash
23535 vspace{1.5mm}
23536 \backslash
23537
23538 \backslash
23539 #1}}
23540 \end_layout
23541
23542 \end_inset
23543
23544
23545 \begin_inset Marginal
23546 status open
23547
23548 \begin_layout Standard
23549 This is a margin note with a defined heading.
23550 \end_layout
23551
23552 \end_inset
23553
23554
23555 \family default
23556 \series default
23557
23558 \begin_inset ERT
23559 status collapsed
23560
23561 \begin_layout Standard
23562
23563 [-1.5cm]
23564 \end_layout
23565
23566 \end_inset
23567
23568
23569 \family roman
23570 \series medium
23571
23572 \begin_inset ERT
23573 status collapsed
23574
23575 \begin_layout Standard
23576
23577
23578 \backslash
23579 renewcommand{
23580 \backslash
23581 marginpar}[1]{
23582 \backslash
23583 myMarginpar{#1}}
23584 \end_layout
23585
23586 \end_inset
23587
23588
23589 \family default
23590 \series default
23591
23592 \begin_inset Note Note
23593 status collapsed
23594
23595 \begin_layout Standard
23596 The margin note format is changed only for this example.
23597 \end_layout
23598
23599 \end_inset
23600
23601
23602 \end_layout
23603
23604 \begin_layout Standard
23605 \begin_inset ERT
23606 status collapsed
23607
23608 \begin_layout Standard
23609
23610
23611 \backslash
23612 else
23613 \end_layout
23614
23615 \end_inset
23616
23617
23618 \begin_inset Note Note
23619 status open
23620
23621 \begin_layout Standard
23622 The following will be displayed when the LaTeX-package 
23623 \series bold
23624 marginnote
23625 \series default
23626  is not installed:
23627 \end_layout
23628
23629 \end_inset
23630
23631
23632 \end_layout
23633
23634 \begin_layout Standard
23635 You need to install the LaTeX-package 
23636 \series bold
23637 marginnote
23638 \series default
23639  to see the following part of this section in the output.
23640 \end_layout
23641
23642 \begin_layout Standard
23643 \begin_inset ERT
23644 status collapsed
23645
23646 \begin_layout Standard
23647
23648
23649 \backslash
23650 fi
23651 \end_layout
23652
23653 \end_inset
23654
23655
23656 \end_layout
23657
23658 \begin_layout Standard
23659
23660 \end_layout
23661
23662 \begin_layout Chapter
23663 Boxes
23664 \end_layout
23665
23666 \begin_layout Section
23667 Introduction
23668 \begin_inset LatexCommand index
23669 name "Boxes ! Introduction"
23670
23671 \end_inset
23672
23673
23674 \end_layout
23675
23676 \begin_layout Standard
23677 Boxes are used to format a block of text.
23678  Boxes can be used to write documents with multiple languages, see section\InsetSpace ~
23679
23680 \begin_inset LatexCommand ref
23681 reference "sec:Minipages"
23682
23683 \end_inset
23684
23685 , to frame texts, see section\InsetSpace ~
23686
23687 \begin_inset LatexCommand ref
23688 reference "sec:Framed-Boxes"
23689
23690 \end_inset
23691
23692 , to prevent words to be hyphenated, see section\InsetSpace ~
23693
23694 \begin_inset LatexCommand ref
23695 reference "sec:Prevent-Hyphenation"
23696
23697 \end_inset
23698
23699 , to align text, see section\InsetSpace ~
23700
23701 \begin_inset LatexCommand ref
23702 reference "sub:Vertical-Alignment"
23703
23704 \end_inset
23705
23706 , or to set the background color of texts, see section\InsetSpace ~
23707
23708 \begin_inset LatexCommand ref
23709 reference "sec:Colored-Boxes"
23710
23711 \end_inset
23712
23713 .
23714 \end_layout
23715
23716 \begin_layout Standard
23717 Boxes can be inserted with the menu 
23718 \family sans
23719 Insert\SpecialChar \menuseparator
23720 Box
23721 \family default
23722 .
23723  A grey box with the label 
23724 \family sans
23725 Box (Minipage)
23726 \family default
23727
23728 \begin_inset Graphics
23729         filename clipart/BoxInsetDefaultQt4.png
23730         scale 85
23731
23732 \end_inset
23733
23734 , will be inserted.
23735  The box type can be specified by right-clicking on the box.
23736  The appearing box dialog offers the 
23737 \family sans
23738 Inner\InsetSpace ~
23739 Box
23740 \family default
23741  types 
23742 \family sans
23743 Parbox
23744 \family default
23745  and 
23746 \family sans
23747 Minipage
23748 \family default
23749 .
23750  The type 
23751 \family sans
23752 Minipage
23753 \family default
23754  is the default for new boxes and is explained in section\InsetSpace ~
23755
23756 \begin_inset LatexCommand ref
23757 reference "sec:Minipages"
23758
23759 \end_inset
23760
23761 ; the type 
23762 \family sans
23763 Parbox
23764 \family default
23765  is described in section\InsetSpace ~
23766
23767 \begin_inset LatexCommand ref
23768 reference "sec:Parboxes"
23769
23770 \end_inset
23771
23772 .
23773 \end_layout
23774
23775 \begin_layout Standard
23776 Boxes aren't numbered and can therefore not be referenced like floats or
23777  footnotes.
23778 \end_layout
23779
23780 \begin_layout Standard
23781 \begin_inset Note Greyedout
23782 status open
23783
23784 \begin_layout Standard
23785
23786 \series bold
23787 Note:
23788 \series default
23789  Due to a bug in LyX you have to insert a protected space behind a box when
23790  you want to separate in a line the box from the following text with a space.
23791 \end_layout
23792
23793 \end_inset
23794
23795
23796 \end_layout
23797
23798 \begin_layout Standard
23799 \begin_inset Note Greyedout
23800 status open
23801
23802 \begin_layout Standard
23803
23804 \series bold
23805 Note:
23806 \series default
23807  Boxes must not be the item in an 
23808 \family sans
23809 Itemize
23810 \family default
23811  or 
23812 \family sans
23813 Description
23814 \family default
23815  environment.
23816 \end_layout
23817
23818 \end_inset
23819
23820
23821 \end_layout
23822
23823 \begin_layout Standard
23824 \begin_inset Note Greyedout
23825 status open
23826
23827 \begin_layout Standard
23828
23829 \series bold
23830 Note:
23831 \series default
23832  For an unknown reason you can only set the 
23833 \family sans
23834 Inner\InsetSpace ~
23835 Box
23836 \family default
23837  type to 
23838 \family sans
23839 None
23840 \family default
23841  when you use a framed box.
23842  Boxes without an 
23843 \family sans
23844 Inner\InsetSpace ~
23845 Box
23846 \family default
23847  type and without frames are explained in section\InsetSpace ~
23848
23849 \begin_inset LatexCommand ref
23850 reference "sec:Prevent-Hyphenation"
23851
23852 \end_inset
23853
23854 .
23855 \end_layout
23856
23857 \end_inset
23858
23859
23860 \end_layout
23861
23862 \begin_layout Section
23863 Box Dialog
23864 \begin_inset LatexCommand label
23865 name "sec:Box-Dialog"
23866
23867 \end_inset
23868
23869
23870 \begin_inset LatexCommand index
23871 name "Boxes ! Box Dialog"
23872
23873 \end_inset
23874
23875
23876 \begin_inset LatexCommand index
23877 name "Boxes ! Alignment"
23878
23879 \end_inset
23880
23881
23882 \end_layout
23883
23884 \begin_layout Standard
23885 In the box dialog you can adjust the box geometry in the fields 
23886 \family sans
23887 Width
23888 \family default
23889  and 
23890 \family sans
23891 Height
23892 \family default
23893 .
23894  The available units for the geometry are explained in Table\InsetSpace ~
23895
23896 \begin_inset LatexCommand ref
23897 reference "tab:Units"
23898
23899 \end_inset
23900
23901 .
23902  The field 
23903 \family sans
23904 Heigth
23905 \family default
23906  offers the following additional sizes:
23907 \end_layout
23908
23909 \begin_layout Description
23910 Depth This is the plain text 
23911 \begin_inset Quotes eld
23912 \end_inset
23913
23914 height
23915 \begin_inset Quotes erd
23916 \end_inset
23917
23918 .
23919  It ignores the total depth when there are multiple text lines in the box:
23920 \newline
23921
23922 \newline
23923
23924 \newline
23925
23926 \begin_inset Box Boxed
23927 position "c"
23928 hor_pos "c"
23929 has_inner_box 1
23930 inner_pos "c"
23931 use_parbox 0
23932 width "12col%"
23933 special "none"
23934 height "1in"
23935 height_special "depth"
23936 status collapsed
23937
23938 \begin_layout Standard
23939 \align center
23940 Box height set to 1\InsetSpace \thinspace{}
23941 Depth
23942 \end_layout
23943
23944 \end_inset
23945
23946
23947 \newline
23948
23949 \newline
23950
23951 \end_layout
23952
23953 \begin_layout Description
23954 Height This is the heigth of the text that is inside the box.
23955  A value of e.\InsetSpace \thinspace{}
23956 g.\InsetSpace ~
23957 2 for this size will set the box heigth to 2 times the text
23958  height: 
23959 \begin_inset Box Boxed
23960 position "c"
23961 hor_pos "c"
23962 has_inner_box 1
23963 inner_pos "c"
23964 use_parbox 0
23965 width "20col%"
23966 special "none"
23967 height "2in"
23968 height_special "height"
23969 status collapsed
23970
23971 \begin_layout Standard
23972 \align center
23973 Box height set to 2\InsetSpace \thinspace{}
23974 Height
23975 \end_layout
23976
23977 \end_inset
23978
23979
23980 \end_layout
23981
23982 \begin_layout Description
23983 Total\InsetSpace ~
23984 Height This is the Height\InsetSpace \thinspace{}
23985 +\InsetSpace \thinspace{}
23986 Depth: 
23987 \begin_inset Box Boxed
23988 position "c"
23989 hor_pos "c"
23990 has_inner_box 1
23991 inner_pos "c"
23992 use_parbox 0
23993 width "20col%"
23994 special "none"
23995 height "1in"
23996 height_special "totalheight"
23997 status collapsed
23998
23999 \begin_layout Standard
24000 \align center
24001 Box height set to 1\InsetSpace \thinspace{}
24002 Total\InsetSpace ~
24003 Height
24004 \end_layout
24005
24006 \end_inset
24007
24008
24009 \end_layout
24010
24011 \begin_layout Description
24012 Width This set the width of the box as heigth: 
24013 \begin_inset Box Boxed
24014 position "c"
24015 hor_pos "c"
24016 has_inner_box 1
24017 inner_pos "c"
24018 use_parbox 0
24019 width "12col%"
24020 special "none"
24021 height "1in"
24022 height_special "width"
24023 status collapsed
24024
24025 \begin_layout Standard
24026 \align center
24027 Box height set to 1\InsetSpace \thinspace{}
24028 Width
24029 \end_layout
24030
24031 \end_inset
24032
24033
24034 \end_layout
24035
24036 \begin_layout Standard
24037 \begin_inset VSpace bigskip
24038 \end_inset
24039
24040 When you have chosen an 
24041 \family sans
24042 Inner\InsetSpace ~
24043 Box
24044 \family default
24045 , the vertical box alignment can be:
24046 \end_layout
24047
24048 \begin_layout Description
24049 Top This is an example text line.
24050  
24051 \begin_inset Box Boxed
24052 position "t"
24053 hor_pos "c"
24054 has_inner_box 1
24055 inner_pos "c"
24056 use_parbox 0
24057 width "12col%"
24058 special "none"
24059 height "1in"
24060 height_special "totalheight"
24061 status collapsed
24062
24063 \begin_layout Standard
24064 \align center
24065 This box is top-aligned.
24066 \end_layout
24067
24068 \end_inset
24069
24070 \InsetSpace ~
24071 This is an example text line.
24072 \end_layout
24073
24074 \begin_layout Description
24075 Middle This is an example text line.
24076  
24077 \begin_inset Box Boxed
24078 position "c"
24079 hor_pos "c"
24080 has_inner_box 1
24081 inner_pos "c"
24082 use_parbox 0
24083 width "12col%"
24084 special "none"
24085 height "1in"
24086 height_special "totalheight"
24087 status collapsed
24088
24089 \begin_layout Standard
24090 \align center
24091 This box is middle-aligned.
24092 \end_layout
24093
24094 \end_inset
24095
24096 \InsetSpace ~
24097 This is an example text line.
24098 \end_layout
24099
24100 \begin_layout Description
24101 Bottom This is an example text line.
24102  
24103 \begin_inset Box Boxed
24104 position "b"
24105 hor_pos "c"
24106 has_inner_box 1
24107 inner_pos "c"
24108 use_parbox 0
24109 width "12col%"
24110 special "none"
24111 height "1in"
24112 height_special "totalheight"
24113 status collapsed
24114
24115 \begin_layout Standard
24116 \align center
24117 This box is bottom-aligned.
24118 \end_layout
24119
24120 \end_inset
24121
24122 \InsetSpace ~
24123 This is an example text line.
24124 \end_layout
24125
24126 \begin_layout Standard
24127 The horizontal box alignment can be set via LyX's paragraph dialog when
24128  you set the box into its own paragraph.
24129 \end_layout
24130
24131 \begin_layout Standard
24132 \begin_inset VSpace bigskip
24133 \end_inset
24134
24135 When you have chosen an 
24136 \family sans
24137 Inner\InsetSpace ~
24138 Box
24139 \family default
24140 , the box content can be vertical aligned to:
24141 \end_layout
24142
24143 \begin_layout Description
24144 top This is an example text line.
24145  
24146 \begin_inset Box Boxed
24147 position "c"
24148 hor_pos "c"
24149 has_inner_box 1
24150 inner_pos "t"
24151 use_parbox 0
24152 width "12col%"
24153 special "none"
24154 height "1.5in"
24155 height_special "totalheight"
24156 status collapsed
24157
24158 \begin_layout Standard
24159 \align center
24160 This box text is top-aligned.
24161 \end_layout
24162
24163 \end_inset
24164
24165 \InsetSpace ~
24166 This is an example text line.
24167 \end_layout
24168
24169 \begin_layout Description
24170 middle This is an example text line.
24171  
24172 \begin_inset Box Boxed
24173 position "c"
24174 hor_pos "c"
24175 has_inner_box 1
24176 inner_pos "c"
24177 use_parbox 0
24178 width "12col%"
24179 special "none"
24180 height "1.5in"
24181 height_special "totalheight"
24182 status collapsed
24183
24184 \begin_layout Standard
24185 \align center
24186 This box text is middle-aligned.
24187 \end_layout
24188
24189 \end_inset
24190
24191 \InsetSpace ~
24192 This is an example text line.
24193 \end_layout
24194
24195 \begin_layout Description
24196 bottom This is an example text line.
24197  
24198 \begin_inset Box Boxed
24199 position "c"
24200 hor_pos "c"
24201 has_inner_box 1
24202 inner_pos "b"
24203 use_parbox 0
24204 width "12col%"
24205 special "none"
24206 height "1.5in"
24207 height_special "totalheight"
24208 status collapsed
24209
24210 \begin_layout Standard
24211 \align center
24212 This box text is bottom-aligned.
24213 \end_layout
24214
24215 \end_inset
24216
24217 \InsetSpace ~
24218 This is an example text line.
24219 \end_layout
24220
24221 \begin_layout Description
24222 stretch This is an example text line.
24223  
24224 \begin_inset Box Boxed
24225 position "c"
24226 hor_pos "c"
24227 has_inner_box 1
24228 inner_pos "s"
24229 use_parbox 0
24230 width "12col%"
24231 special "none"
24232 height "1.5in"
24233 height_special "totalheight"
24234 status collapsed
24235
24236 \begin_layout Standard
24237 \align center
24238 This box
24239 \end_layout
24240
24241 \begin_layout Standard
24242 \align center
24243 text is
24244 \end_layout
24245
24246 \begin_layout Standard
24247 \align center
24248 stretched.
24249 \end_layout
24250
24251 \end_inset
24252
24253 \InsetSpace ~
24254 This is an example text line.
24255 \end_layout
24256
24257 \begin_layout Standard
24258 To stretch the box content, it must consist of more than one paragraph.
24259  In the example above every text line is in an own paragraph.
24260 \end_layout
24261
24262 \begin_layout Standard
24263 \begin_inset VSpace bigskip
24264 \end_inset
24265
24266 To align the box content horizontally you can use LyX's paragraph dialog
24267  when you have chosen an 
24268 \family sans
24269 Inner\InsetSpace ~
24270 Box
24271 \family default
24272 .
24273 \end_layout
24274
24275 \begin_layout Standard
24276 \align center
24277 \begin_inset Box Boxed
24278 position "c"
24279 hor_pos "c"
24280 has_inner_box 1
24281 inner_pos "s"
24282 use_parbox 0
24283 width "15col%"
24284 special "none"
24285 height "1.25in"
24286 height_special "totalheight"
24287 status collapsed
24288
24289 \begin_layout Standard
24290 \align left
24291 This box
24292 \end_layout
24293
24294 \begin_layout Standard
24295 \align center
24296 text is
24297 \end_layout
24298
24299 \begin_layout Standard
24300 \align right
24301 stretched.
24302 \end_layout
24303
24304 \end_inset
24305
24306
24307 \end_layout
24308
24309 \begin_layout Standard
24310 If you haven't set an 
24311 \family sans
24312 Inner\InsetSpace ~
24313 Box
24314 \family default
24315 , you can align the box content horizontally in the box dialog.
24316 \end_layout
24317
24318 \begin_layout Standard
24319 \align center
24320 \begin_inset Box Boxed
24321 position "c"
24322 hor_pos "s"
24323 has_inner_box 0
24324 inner_pos "s"
24325 use_parbox 0
24326 width "90col%"
24327 special "none"
24328 height "1.25in"
24329 height_special "totalheight"
24330 status collapsed
24331
24332 \begin_layout Standard
24333 \align left
24334 This box text is horizontally stretched.
24335 \end_layout
24336
24337 \end_inset
24338
24339
24340 \end_layout
24341
24342 \begin_layout Section
24343 Framed Boxes
24344 \begin_inset LatexCommand label
24345 name "sec:Framed-Boxes"
24346
24347 \end_inset
24348
24349
24350 \begin_inset LatexCommand index
24351 name "Boxes ! Frames"
24352
24353 \end_inset
24354
24355
24356 \end_layout
24357
24358 \begin_layout Standard
24359 The frame style of the box can be specified in the box-dialog in the drop-down
24360  list 
24361 \family sans
24362 Type
24363 \family default
24364 .
24365  The following frame types are possible:
24366 \end_layout
24367
24368 \begin_layout Description
24369 Rectangular\InsetSpace ~
24370 box This draws a rectangle frame around the box.
24371  The frame line thickness has the size of 
24372 \series bold
24373
24374 \backslash
24375 fboxrule
24376 \series default
24377 .
24378  
24379 \begin_inset Box Boxed
24380 position "c"
24381 hor_pos "c"
24382 has_inner_box 1
24383 inner_pos "c"
24384 use_parbox 0
24385 width "20col%"
24386 special "none"
24387 height "1in"
24388 height_special "totalheight"
24389 status collapsed
24390
24391 \begin_layout Standard
24392 \align center
24393 Rectangular box
24394 \end_layout
24395
24396 \end_inset
24397
24398
24399 \end_layout
24400
24401 \begin_layout Description
24402 Oval\InsetSpace ~
24403 box,\InsetSpace ~
24404 thin This draws an oval frame around the box.
24405  The frame line thickness has the size 0.4\InsetSpace \thinspace{}
24406 pt.
24407  
24408 \begin_inset Box ovalbox
24409 position "c"
24410 hor_pos "c"
24411 has_inner_box 1
24412 inner_pos "c"
24413 use_parbox 0
24414 width "20col%"
24415 special "none"
24416 height "1in"
24417 height_special "totalheight"
24418 status collapsed
24419
24420 \begin_layout Standard
24421 \align center
24422 Oval box, thin
24423 \end_layout
24424
24425 \end_inset
24426
24427
24428 \end_layout
24429
24430 \begin_layout Description
24431 Oval\InsetSpace ~
24432 box,\InsetSpace ~
24433 thick This draws an oval frame around the box.
24434  The frame line thickness has the size 0.8\InsetSpace \thinspace{}
24435 pt.
24436  
24437 \begin_inset Box Ovalbox
24438 position "c"
24439 hor_pos "c"
24440 has_inner_box 1
24441 inner_pos "c"
24442 use_parbox 0
24443 width "20col%"
24444 special "none"
24445 height "1in"
24446 height_special "totalheight"
24447 status collapsed
24448
24449 \begin_layout Standard
24450 \align center
24451 Oval box, thick
24452 \end_layout
24453
24454 \end_inset
24455
24456
24457 \end_layout
24458
24459 \begin_layout Description
24460 Shadow\InsetSpace ~
24461 box This draws a rectangle frame with a shadow around the box.
24462  The frame line thickness has the size of 
24463 \series bold
24464
24465 \backslash
24466 fboxrule
24467 \series default
24468 , the shadow has a width of 4\InsetSpace \thinspace{}
24469 pt.
24470  
24471 \begin_inset Box Shadowbox
24472 position "c"
24473 hor_pos "c"
24474 has_inner_box 1
24475 inner_pos "c"
24476 use_parbox 0
24477 width "20col%"
24478 special "none"
24479 height "1in"
24480 height_special "totalheight"
24481 status collapsed
24482
24483 \begin_layout Standard
24484 \align center
24485 Shadow box
24486 \end_layout
24487
24488 \end_inset
24489
24490
24491 \end_layout
24492
24493 \begin_layout Description
24494 Double\InsetSpace ~
24495 box This draws a double-line rectangle frame around the box.
24496  The line thickness of the inner frame is 0.75\InsetSpace \thinspace{}
24497
24498 \series bold
24499
24500 \backslash
24501 fboxrule
24502 \series default
24503 , the thickness of the outer frame is 1.5\InsetSpace \thinspace{}
24504
24505 \series bold
24506
24507 \backslash
24508 fboxrule
24509 \series default
24510 .
24511  The distance between the lines is 1.5\InsetSpace \thinspace{}
24512
24513 \series bold
24514
24515 \backslash
24516 fboxrule
24517 \series default
24518 \InsetSpace \thinspace{}
24519 +\InsetSpace \thinspace{}
24520 0.5\InsetSpace \thinspace{}
24521 pt.
24522  
24523 \begin_inset Box Doublebox
24524 position "c"
24525 hor_pos "c"
24526 has_inner_box 1
24527 inner_pos "c"
24528 use_parbox 0
24529 width "20col%"
24530 special "none"
24531 height "1in"
24532 height_special "totalheight"
24533 status collapsed
24534
24535 \begin_layout Standard
24536 \align center
24537 Double box
24538 \end_layout
24539
24540 \end_inset
24541
24542
24543 \end_layout
24544
24545 \begin_layout Standard
24546 \begin_inset VSpace bigskip
24547 \end_inset
24548
24549 LyX's box label will change to the used frame style when you set a frame.
24550  To be able to use the different frame styles, the LaTeX-package 
24551 \series bold
24552 fancybox
24553 \series default
24554
24555 \begin_inset LatexCommand index
24556 name "LaTeX-packages ! fancybox"
24557
24558 \end_inset
24559
24560  must be installed.
24561 \end_layout
24562
24563 \begin_layout Standard
24564 \begin_inset VSpace bigskip
24565 \end_inset
24566
24567 The default value for the size 
24568 \series bold
24569
24570 \backslash
24571 fboxrule
24572 \series default
24573  is 0.4\InsetSpace \thinspace{}
24574 pt.
24575  It can be changed with the following command in ERT to e.\InsetSpace \thinspace{}
24576 g.\InsetSpace ~
24577 2\InsetSpace \thinspace{}
24578 pt:
24579 \end_layout
24580
24581 \begin_layout Standard
24582
24583 \series bold
24584
24585 \backslash
24586 setlength{
24587 \backslash
24588 fboxrule}{2pt}
24589 \end_layout
24590
24591 \begin_layout Standard
24592 \begin_inset ERT
24593 status collapsed
24594
24595 \begin_layout Standard
24596
24597
24598 \backslash
24599 setlength{
24600 \backslash
24601 fboxrule}{2pt}
24602 \end_layout
24603
24604 \end_inset
24605
24606
24607 \begin_inset Box Boxed
24608 position "c"
24609 hor_pos "c"
24610 has_inner_box 1
24611 inner_pos "c"
24612 use_parbox 0
24613 width "25col%"
24614 special "none"
24615 height "1in"
24616 height_special "totalheight"
24617 status collapsed
24618
24619 \begin_layout Standard
24620 \align center
24621 Rectangular box with 
24622 \series bold
24623
24624 \backslash
24625 fboxrule
24626 \series default
24627 \InsetSpace \thinspace{}
24628 =\InsetSpace \thinspace{}
24629 2\InsetSpace \thinspace{}
24630 pt
24631 \end_layout
24632
24633 \end_inset
24634
24635
24636 \begin_inset ERT
24637 status collapsed
24638
24639 \begin_layout Standard
24640
24641
24642 \backslash
24643 setlength{
24644 \backslash
24645 fboxrule}{0.4pt}
24646 \end_layout
24647
24648 \end_inset
24649
24650
24651 \end_layout
24652
24653 \begin_layout Standard
24654 \begin_inset VSpace bigskip
24655 \end_inset
24656
24657 The space between the frame and the box content is for all frame styles
24658  by default 3\InsetSpace \thinspace{}
24659 pt.
24660  You can change it by setting the length 
24661 \series bold
24662
24663 \backslash
24664 fboxsep
24665 \series default
24666  to another value.
24667  For example the command
24668 \end_layout
24669
24670 \begin_layout Standard
24671
24672 \series bold
24673
24674 \backslash
24675 setlength{
24676 \backslash
24677 fboxsep}{10pt}
24678 \end_layout
24679
24680 \begin_layout Standard
24681 sets the value to 10\InsetSpace \thinspace{}
24682 pt, like for the following box:
24683 \end_layout
24684
24685 \begin_layout Standard
24686 \begin_inset ERT
24687 status collapsed
24688
24689 \begin_layout Standard
24690
24691
24692 \backslash
24693 setlength{
24694 \backslash
24695 fboxsep}{10pt}
24696 \end_layout
24697
24698 \end_inset
24699
24700
24701 \begin_inset Box Boxed
24702 position "c"
24703 hor_pos "c"
24704 has_inner_box 1
24705 inner_pos "c"
24706 use_parbox 0
24707 width "25col%"
24708 special "none"
24709 height "1in"
24710 height_special "totalheight"
24711 status collapsed
24712
24713 \begin_layout Standard
24714 \align center
24715 Rectangular box with 
24716 \series bold
24717
24718 \backslash
24719 fboxsep
24720 \series default
24721 \InsetSpace \thinspace{}
24722 =\InsetSpace \thinspace{}
24723 10\InsetSpace \thinspace{}
24724 pt
24725 \end_layout
24726
24727 \end_inset
24728
24729
24730 \begin_inset ERT
24731 status collapsed
24732
24733 \begin_layout Standard
24734
24735
24736 \backslash
24737 setlength{
24738 \backslash
24739 fboxsep}{3pt}
24740 \end_layout
24741
24742 \end_inset
24743
24744
24745 \end_layout
24746
24747 \begin_layout Standard
24748 \begin_inset VSpace bigskip
24749 \end_inset
24750
24751 The diameter of the round corners of the oval boxes can be set with the
24752  command 
24753 \series bold
24754
24755 \backslash
24756 cornersize
24757 \series default
24758 .
24759  The command
24760 \end_layout
24761
24762 \begin_layout Standard
24763
24764 \series bold
24765
24766 \backslash
24767 cornersize*{1cm}
24768 \end_layout
24769
24770 \begin_layout Standard
24771 sets the diameter to 1\InsetSpace \thinspace{}
24772 cm.
24773  The command
24774 \end_layout
24775
24776 \begin_layout Standard
24777
24778 \series bold
24779
24780 \backslash
24781 cornersize{num}
24782 \end_layout
24783
24784 \begin_layout Standard
24785 sets the diameter to 
24786 \family sans
24787 num\InsetSpace \thinspace{}
24788 ×\InsetSpace \thinspace{}
24789 minimum(width and heigth of box)
24790 \family default
24791 .
24792  The default is 
24793 \series bold
24794
24795 \backslash
24796 cornersize{0.5}
24797 \series default
24798 .
24799 \end_layout
24800
24801 \begin_layout Standard
24802 \begin_inset ERT
24803 status collapsed
24804
24805 \begin_layout Standard
24806
24807
24808 \backslash
24809 cornersize*{1.5cm}
24810 \end_layout
24811
24812 \end_inset
24813
24814
24815 \begin_inset Box Ovalbox
24816 position "c"
24817 hor_pos "c"
24818 has_inner_box 1
24819 inner_pos "c"
24820 use_parbox 0
24821 width "25col%"
24822 special "none"
24823 height "1in"
24824 height_special "totalheight"
24825 status collapsed
24826
24827 \begin_layout Standard
24828 \align center
24829 Oval box with 
24830 \series bold
24831
24832 \backslash
24833 cornersize
24834 \series default
24835 \InsetSpace \thinspace{}
24836 =\InsetSpace \thinspace{}
24837 1.5\InsetSpace \thinspace{}
24838 cm
24839 \end_layout
24840
24841 \end_inset
24842
24843
24844 \begin_inset ERT
24845 status collapsed
24846
24847 \begin_layout Standard
24848
24849
24850 \backslash
24851 cornersize{0.5}
24852 \end_layout
24853
24854 \end_inset
24855
24856
24857 \end_layout
24858
24859 \begin_layout Standard
24860 \begin_inset VSpace bigskip
24861 \end_inset
24862
24863 The size of the shadow can be adjusted by changing the length 
24864 \series bold
24865
24866 \backslash
24867 shadowsize
24868 \series default
24869 .
24870  It it set to 2\InsetSpace \thinspace{}
24871 pt for the following box by this command:
24872 \end_layout
24873
24874 \begin_layout Standard
24875
24876 \series bold
24877
24878 \backslash
24879 setlength{
24880 \backslash
24881 shadowsize}{2pt}
24882 \end_layout
24883
24884 \begin_layout Standard
24885 \begin_inset ERT
24886 status collapsed
24887
24888 \begin_layout Standard
24889
24890
24891 \backslash
24892 setlength{
24893 \backslash
24894 shadowsize}{2pt}
24895 \end_layout
24896
24897 \end_inset
24898
24899
24900 \begin_inset Box Shadowbox
24901 position "c"
24902 hor_pos "c"
24903 has_inner_box 1
24904 inner_pos "c"
24905 use_parbox 0
24906 width "25col%"
24907 special "none"
24908 height "1in"
24909 height_special "totalheight"
24910 status collapsed
24911
24912 \begin_layout Standard
24913 \align center
24914 Shadow box with 
24915 \series bold
24916
24917 \backslash
24918 shadowsize
24919 \series default
24920 \InsetSpace \thinspace{}
24921 =\InsetSpace \thinspace{}
24922 2\InsetSpace \thinspace{}
24923 pt
24924 \end_layout
24925
24926 \end_inset
24927
24928
24929 \begin_inset ERT
24930 status collapsed
24931
24932 \begin_layout Standard
24933
24934
24935 \backslash
24936 setlength{
24937 \backslash
24938 shadowsize}{4pt}
24939 \end_layout
24940
24941 \end_inset
24942
24943
24944 \end_layout
24945
24946 \begin_layout Standard
24947 \begin_inset VSpace bigskip
24948 \end_inset
24949
24950 Changed lengths and widths are valid for all boxes following the commands
24951  that change them.
24952 \end_layout
24953
24954 \begin_layout Section
24955 Minipages
24956 \begin_inset LatexCommand label
24957 name "sec:Minipages"
24958
24959 \end_inset
24960
24961
24962 \begin_inset LatexCommand index
24963 name "Boxes ! Minipages"
24964
24965 \end_inset
24966
24967
24968 \end_layout
24969
24970 \begin_layout Standard
24971 Minipages are treated by LaTeX as pages within pages and can therefore for
24972  example have their own footnotes.
24973 \end_layout
24974
24975 \begin_layout Standard
24976 Minipages are useful when you write documents with different languages.
24977 \end_layout
24978
24979 \begin_layout Standard
24980 Below are two example minipages side by side.
24981  Their width is set to 45\InsetSpace \thinspace{}
24982 col% and they are separated by a horizontal fill,
24983  that was inserted via the menu 
24984 \family sans
24985 Insert\SpecialChar \menuseparator
24986 Special\InsetSpace ~
24987 Formatting\SpecialChar \menuseparator
24988 Horizontal\InsetSpace ~
24989 Fill
24990 \family default
24991 .
24992 \end_layout
24993
24994 \begin_layout Standard
24995 \begin_inset Box Frameless
24996 position "t"
24997 hor_pos "c"
24998 has_inner_box 1
24999 inner_pos "c"
25000 use_parbox 0
25001 width "45col%"
25002 special "none"
25003 height "1in"
25004 height_special "totalheight"
25005 status open
25006
25007 \begin_layout Standard
25008
25009 \lang german
25010 Dies ist ein deutscher Text.
25011  Dies ist ein deutscher Text.
25012  Dies ist ein deutscher Text.
25013  Dies ist ein deutscher Text.
25014  Dies ist ein deutscher Text.
25015  Dies ist ein deutscher Text.
25016  Dies ist ein deutscher Text.
25017  Dies ist ein deutscher Text.
25018  Dies ist ein deutscher Text.
25019  Dies ist ein deutscher Text.
25020  Dies ist ein deutscher Text.
25021  Dies ist ein deutscher Text.
25022  Dies ist ein deutscher Text
25023 \begin_inset Foot
25024 status collapsed
25025
25026 \begin_layout Standard
25027
25028 \lang german
25029 Dies ist eine deutsche Fußnote.
25030 \end_layout
25031
25032 \end_inset
25033
25034 .
25035  Dies ist ein deutscher Text.
25036  Dies ist ein deutscher Text.
25037 \end_layout
25038
25039 \end_inset
25040
25041
25042 \hfill
25043
25044 \begin_inset Box Frameless
25045 position "t"
25046 hor_pos "c"
25047 has_inner_box 1
25048 inner_pos "c"
25049 use_parbox 0
25050 width "45col%"
25051 special "none"
25052 height "1in"
25053 height_special "totalheight"
25054 status open
25055
25056 \begin_layout Standard
25057 This is an English Text.
25058  This is an English Text.
25059  This is an English Text.
25060  This is an English Text.
25061  This is an English Text.
25062  This is an English Text.
25063  This is an English Text.
25064  This is an English Text.
25065  This is an English Text.
25066  This is an English Text.
25067  This is an English Text.
25068  This is an English Text.
25069  This is an English Text.
25070  This is an English Text.
25071  This is an English Text.
25072  This is an English Text.
25073 \begin_inset Foot
25074 status collapsed
25075
25076 \begin_layout Standard
25077 This is an English footnote.
25078 \end_layout
25079
25080 \end_inset
25081
25082  This is an English Text.
25083  
25084 \end_layout
25085
25086 \end_inset
25087
25088
25089 \end_layout
25090
25091 \begin_layout Standard
25092 \begin_inset VSpace bigskip
25093 \end_inset
25094
25095 Another application for minipages are footnotes within tables.
25096  Due to a LaTeX restriction footnotes within tables doesn't appear at the
25097  bottom of the current page.
25098  But when you put the table with the footnote to a minipage, the footnote
25099  will appear at its bottom, numbered with Latin letters.
25100  The footnote number is reset to 1 in every minipage but not outside the
25101  minipages.
25102 \end_layout
25103
25104 \begin_layout Standard
25105 The footnote of this table doesn't appear: 
25106 \begin_inset Tabular
25107 <lyxtabular version="3" rows="3" columns="4">
25108 <features>
25109 <column alignment="center" valignment="top" leftline="true" width="0pt">
25110 <column alignment="center" valignment="top" leftline="true" width="0pt">
25111 <column alignment="center" valignment="top" leftline="true" width="0pt">
25112 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25113 <row topline="true">
25114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25115 \begin_inset Text
25116
25117 \begin_layout Standard
25118 1
25119 \end_layout
25120
25121 \end_inset
25122 </cell>
25123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25124 \begin_inset Text
25125
25126 \begin_layout Standard
25127 2
25128 \end_layout
25129
25130 \end_inset
25131 </cell>
25132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25133 \begin_inset Text
25134
25135 \begin_layout Standard
25136 3
25137 \begin_inset Foot
25138 status collapsed
25139
25140 \begin_layout Standard
25141 This is a footnote within a table.
25142 \end_layout
25143
25144 \end_inset
25145
25146
25147 \end_layout
25148
25149 \end_inset
25150 </cell>
25151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25152 \begin_inset Text
25153
25154 \begin_layout Standard
25155 4
25156 \end_layout
25157
25158 \end_inset
25159 </cell>
25160 </row>
25161 <row topline="true">
25162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25163 \begin_inset Text
25164
25165 \begin_layout Standard
25166 a
25167 \end_layout
25168
25169 \end_inset
25170 </cell>
25171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25172 \begin_inset Text
25173
25174 \begin_layout Standard
25175 b
25176 \end_layout
25177
25178 \end_inset
25179 </cell>
25180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25181 \begin_inset Text
25182
25183 \begin_layout Standard
25184 c
25185 \end_layout
25186
25187 \end_inset
25188 </cell>
25189 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25190 \begin_inset Text
25191
25192 \begin_layout Standard
25193 d
25194 \end_layout
25195
25196 \end_inset
25197 </cell>
25198 </row>
25199 <row topline="true" bottomline="true">
25200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25201 \begin_inset Text
25202
25203 \begin_layout Standard
25204 e
25205 \end_layout
25206
25207 \end_inset
25208 </cell>
25209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25210 \begin_inset Text
25211
25212 \begin_layout Standard
25213 f
25214 \end_layout
25215
25216 \end_inset
25217 </cell>
25218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25219 \begin_inset Text
25220
25221 \begin_layout Standard
25222 g
25223 \end_layout
25224
25225 \end_inset
25226 </cell>
25227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25228 \begin_inset Text
25229
25230 \begin_layout Standard
25231 h
25232 \end_layout
25233
25234 \end_inset
25235 </cell>
25236 </row>
25237 </lyxtabular>
25238
25239 \end_inset
25240
25241
25242 \end_layout
25243
25244 \begin_layout Standard
25245 \align center
25246 \begin_inset Box Frameless
25247 position "t"
25248 hor_pos "c"
25249 has_inner_box 1
25250 inner_pos "c"
25251 use_parbox 0
25252 width "30col%"
25253 special "none"
25254 height "1in"
25255 height_special "totalheight"
25256 status open
25257
25258 \begin_layout Standard
25259 \align center
25260 \begin_inset Tabular
25261 <lyxtabular version="3" rows="3" columns="4">
25262 <features>
25263 <column alignment="center" valignment="top" leftline="true" width="0pt">
25264 <column alignment="center" valignment="top" leftline="true" width="0pt">
25265 <column alignment="center" valignment="top" leftline="true" width="0pt">
25266 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25267 <row topline="true">
25268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25269 \begin_inset Text
25270
25271 \begin_layout Standard
25272 1
25273 \end_layout
25274
25275 \end_inset
25276 </cell>
25277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25278 \begin_inset Text
25279
25280 \begin_layout Standard
25281 2
25282 \end_layout
25283
25284 \end_inset
25285 </cell>
25286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25287 \begin_inset Text
25288
25289 \begin_layout Standard
25290 3
25291 \begin_inset Foot
25292 status collapsed
25293
25294 \begin_layout Standard
25295 This is a footnote within a table.
25296 \end_layout
25297
25298 \end_inset
25299
25300
25301 \end_layout
25302
25303 \end_inset
25304 </cell>
25305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25306 \begin_inset Text
25307
25308 \begin_layout Standard
25309 4
25310 \end_layout
25311
25312 \end_inset
25313 </cell>
25314 </row>
25315 <row topline="true">
25316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25317 \begin_inset Text
25318
25319 \begin_layout Standard
25320 a
25321 \end_layout
25322
25323 \end_inset
25324 </cell>
25325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25326 \begin_inset Text
25327
25328 \begin_layout Standard
25329 b
25330 \end_layout
25331
25332 \end_inset
25333 </cell>
25334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25335 \begin_inset Text
25336
25337 \begin_layout Standard
25338 c
25339 \end_layout
25340
25341 \end_inset
25342 </cell>
25343 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25344 \begin_inset Text
25345
25346 \begin_layout Standard
25347 d
25348 \end_layout
25349
25350 \end_inset
25351 </cell>
25352 </row>
25353 <row topline="true" bottomline="true">
25354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25355 \begin_inset Text
25356
25357 \begin_layout Standard
25358 e
25359 \end_layout
25360
25361 \end_inset
25362 </cell>
25363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25364 \begin_inset Text
25365
25366 \begin_layout Standard
25367 f
25368 \end_layout
25369
25370 \end_inset
25371 </cell>
25372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25373 \begin_inset Text
25374
25375 \begin_layout Standard
25376 g
25377 \end_layout
25378
25379 \end_inset
25380 </cell>
25381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25382 \begin_inset Text
25383
25384 \begin_layout Standard
25385 h
25386 \end_layout
25387
25388 \end_inset
25389 </cell>
25390 </row>
25391 </lyxtabular>
25392
25393 \end_inset
25394
25395
25396 \end_layout
25397
25398 \end_inset
25399
25400
25401 \end_layout
25402
25403 \begin_layout Standard
25404 \begin_inset VSpace bigskip
25405 \end_inset
25406
25407 The document-wide paragraph settings are ignored within minipages.
25408  That means that there will be no space between paragraphs in minipages
25409  although you set it to e.\InsetSpace \thinspace{}
25410 g.\InsetSpace ~
25411
25412 \family sans
25413 MedSkip
25414 \family default
25415  in the document settings.
25416 \end_layout
25417
25418 \begin_layout Standard
25419 Minipages can also be used to set a background color for text parts, see
25420  section\InsetSpace ~
25421
25422 \begin_inset LatexCommand ref
25423 reference "sub:Color-for-Paragraphs"
25424
25425 \end_inset
25426
25427 .
25428 \end_layout
25429
25430 \begin_layout Standard
25431 \begin_inset Note Greyedout
25432 status open
25433
25434 \begin_layout Standard
25435
25436 \series bold
25437 Note:
25438 \series default
25439  You cannot have floats or margin notes inside minipages but minipages can
25440  be used inside tables, floats, and other boxes.
25441 \end_layout
25442
25443 \end_inset
25444
25445
25446 \end_layout
25447
25448 \begin_layout Section
25449 Parboxes
25450 \begin_inset LatexCommand label
25451 name "sec:Parboxes"
25452
25453 \end_inset
25454
25455
25456 \begin_inset LatexCommand index
25457 name "Boxes ! Parboxes"
25458
25459 \end_inset
25460
25461
25462 \end_layout
25463
25464 \begin_layout Standard
25465 Parboxes are very similar to minipages with the difference that they cannot
25466  have footnotes.
25467  The main difference to minipages is that minipages are in contrary to parboxes
25468  no real boxes but LaTeX-environments.
25469 \end_layout
25470
25471 \begin_layout Standard
25472 \align center
25473 \begin_inset Box Frameless
25474 position "t"
25475 hor_pos "c"
25476 has_inner_box 1
25477 inner_pos "t"
25478 use_parbox 1
25479 width "33col%"
25480 special "none"
25481 height "1in"
25482 height_special "totalheight"
25483 status collapsed
25484
25485 \begin_layout Standard
25486 This a text within a parbox.
25487  This a text within a parbox.
25488 \end_layout
25489
25490 \begin_layout Standard
25491 This footnote won't appear:
25492 \begin_inset Foot
25493 status collapsed
25494
25495 \begin_layout Standard
25496 This footnote is inside a parbox and will therefore not appear.
25497 \end_layout
25498
25499 \end_inset
25500
25501
25502 \end_layout
25503
25504 \end_inset
25505
25506
25507 \end_layout
25508
25509 \begin_layout Section
25510 Boxes for Words and Characters
25511 \begin_inset LatexCommand index
25512 name "Boxes ! for Characters"
25513
25514 \end_inset
25515
25516
25517 \end_layout
25518
25519 \begin_layout Subsection
25520 Prevent Hyphenation
25521 \begin_inset LatexCommand label
25522 name "sec:Prevent-Hyphenation"
25523
25524 \end_inset
25525
25526
25527 \begin_inset LatexCommand index
25528 name "Boxes ! to Prevent Hyphenation"
25529
25530 \end_inset
25531
25532
25533 \end_layout
25534
25535 \begin_layout Standard
25536 You can use a special kind of boxes to prevent words or text to be hyphenated.
25537 \newline
25538 Her
25539 e is an example text:
25540 \end_layout
25541
25542 \begin_layout Standard
25543 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25544 g.\InsetSpace ~
25545 veryver
25546 ylongwords.
25547 \end_layout
25548
25549 \begin_layout Standard
25550 To prevent the hyphenation of the word 
25551 \begin_inset Quotes eld
25552 \end_inset
25553
25554 veryverylongwords
25555 \begin_inset Quotes erd
25556 \end_inset
25557
25558 , add the command
25559 \end_layout
25560
25561 \begin_layout Standard
25562
25563 \series bold
25564
25565 \backslash
25566 mbox{
25567 \end_layout
25568
25569 \begin_layout Standard
25570 in ERT before the word.
25571  Behind the word insert a closing brace 
25572 \begin_inset Quotes eld
25573 \end_inset
25574
25575
25576 \series bold
25577 }
25578 \series default
25579
25580 \begin_inset Quotes erd
25581 \end_inset
25582
25583  in ERT.
25584 \begin_inset ERT
25585 status collapsed
25586
25587 \begin_layout Standard
25588
25589
25590 \backslash
25591 pagebreak 
25592 \end_layout
25593
25594 \end_inset
25595
25596
25597 \end_layout
25598
25599 \begin_layout Standard
25600 This is the result:
25601 \end_layout
25602
25603 \begin_layout Standard
25604 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25605 g.\InsetSpace ~
25606
25607 \begin_inset ERT
25608 status collapsed
25609
25610 \begin_layout Standard
25611
25612
25613 \backslash
25614 mbox{
25615 \end_layout
25616
25617 \end_inset
25618
25619 veryverylongwords.
25620 \begin_inset ERT
25621 status collapsed
25622
25623 \begin_layout Standard
25624
25625 }
25626 \end_layout
25627
25628 \end_inset
25629
25630
25631 \end_layout
25632
25633 \begin_layout Standard
25634 Of course the word now protrudes over the side margin.
25635  To avoid this, add via the menu 
25636 \family sans
25637 Insert\SpecialChar \menuseparator
25638 Special\InsetSpace ~
25639 Formatting\SpecialChar \menuseparator
25640 Line\InsetSpace ~
25641 Break
25642 \family default
25643  (shortcut 
25644 \series bold
25645 Ctrl-Return
25646 \series default
25647 ) a line break before the word:
25648 \end_layout
25649
25650 \begin_layout Standard
25651 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25652 g.\InsetSpace ~
25653
25654 \newline
25655
25656 \begin_inset ERT
25657 status collapsed
25658
25659 \begin_layout Standard
25660
25661
25662 \backslash
25663 mbox{
25664 \end_layout
25665
25666 \end_inset
25667
25668 veryverylongwords.
25669 \begin_inset ERT
25670 status collapsed
25671
25672 \begin_layout Standard
25673
25674 }
25675 \end_layout
25676
25677 \end_inset
25678
25679
25680 \end_layout
25681
25682 \begin_layout Subsection
25683 Vertical Alignment
25684 \begin_inset LatexCommand label
25685 name "sub:Vertical-Alignment"
25686
25687 \end_inset
25688
25689
25690 \begin_inset LatexCommand index
25691 name "Boxes ! for Vertical Alignment"
25692
25693 \end_inset
25694
25695
25696 \begin_inset LatexCommand index
25697 name "Boxes ! Raiseboxes"
25698
25699 \end_inset
25700
25701
25702 \end_layout
25703
25704 \begin_layout Standard
25705 With the help of the command 
25706 \series bold
25707
25708 \backslash
25709 raisebox
25710 \series default
25711  you can align words, characters or other boxes vertically to the surrounding
25712  text.
25713  
25714 \series bold
25715
25716 \backslash
25717 raisebox
25718 \series default
25719  is used with the following scheme:
25720 \end_layout
25721
25722 \begin_layout Standard
25723
25724 \series bold
25725
25726 \backslash
25727 raisebox{lift}[height][depth]{box content}
25728 \end_layout
25729
25730 \begin_layout Standard
25731 The lift can be a positive value to raise the box or a negative value to
25732  lower the box.
25733 \end_layout
25734
25735 \begin_layout Standard
25736 To align for example the word 
25737 \begin_inset Quotes eld
25738 \end_inset
25739
25740 preventing
25741 \begin_inset Quotes erd
25742 \end_inset
25743
25744  so that the bottom of the 
25745 \begin_inset Quotes eld
25746 \end_inset
25747
25748 deepest
25749 \begin_inset Quotes erd
25750 \end_inset
25751
25752  character 
25753 \begin_inset Quotes eld
25754 \end_inset
25755
25756 p
25757 \begin_inset Quotes erd
25758 \end_inset
25759
25760  is at the baseline, insert the command
25761 \end_layout
25762
25763 \begin_layout Standard
25764
25765 \series bold
25766
25767 \backslash
25768 raisebox{
25769 \backslash
25770 depth}{
25771 \end_layout
25772
25773 \begin_layout Standard
25774 in ERT before the word.
25775  Behind the word insert a closing brace 
25776 \begin_inset Quotes eld
25777 \end_inset
25778
25779
25780 \series bold
25781 }
25782 \series default
25783
25784 \begin_inset Quotes erd
25785 \end_inset
25786
25787  in ERT.
25788 \newline
25789 This is the result:
25790 \end_layout
25791
25792 \begin_layout Standard
25793 This is a text line with the word 
25794 \begin_inset ERT
25795 status collapsed
25796
25797 \begin_layout Standard
25798
25799
25800 \backslash
25801 raisebox{
25802 \backslash
25803 depth}{
25804 \end_layout
25805
25806 \end_inset
25807
25808
25809 \begin_inset Quotes eld
25810 \end_inset
25811
25812 preventing
25813 \begin_inset Quotes erd
25814 \end_inset
25815
25816
25817 \begin_inset ERT
25818 status collapsed
25819
25820 \begin_layout Standard
25821
25822 }
25823 \end_layout
25824
25825 \end_inset
25826
25827  as raised word.
25828 \end_layout
25829
25830 \begin_layout Standard
25831 \begin_inset VSpace bigskip
25832 \end_inset
25833
25834 When you raise or lower characters in a line, the line distance will be
25835  spread:
25836 \end_layout
25837
25838 \begin_layout Standard
25839 This is a text line with the word 
25840 \begin_inset ERT
25841 status collapsed
25842
25843 \begin_layout Standard
25844
25845
25846 \backslash
25847 raisebox{-
25848 \backslash
25849 depth}{
25850 \end_layout
25851
25852 \end_inset
25853
25854
25855 \begin_inset Quotes eld
25856 \end_inset
25857
25858 preventing
25859 \begin_inset Quotes erd
25860 \end_inset
25861
25862
25863 \begin_inset ERT
25864 status collapsed
25865
25866 \begin_layout Standard
25867
25868 }
25869 \end_layout
25870
25871 \end_inset
25872
25873  as lowered word.
25874 \newline
25875 This is a text line with the word 
25876 \begin_inset ERT
25877 status collapsed
25878
25879 \begin_layout Standard
25880
25881
25882 \backslash
25883 raisebox{0.5cm}{
25884 \end_layout
25885
25886 \end_inset
25887
25888
25889 \begin_inset Quotes eld
25890 \end_inset
25891
25892 testing
25893 \begin_inset Quotes erd
25894 \end_inset
25895
25896
25897 \begin_inset ERT
25898 status collapsed
25899
25900 \begin_layout Standard
25901
25902 }
25903 \end_layout
25904
25905 \end_inset
25906
25907  as raised word.
25908 \end_layout
25909
25910 \begin_layout Standard
25911 If you want to prevent this for a certain reason, set the box height to
25912  a zero value.
25913  For example use
25914 \end_layout
25915
25916 \begin_layout Standard
25917
25918 \series bold
25919
25920 \backslash
25921 raisebox{-
25922 \backslash
25923 depth}[0pt]{
25924 \end_layout
25925
25926 \begin_layout Standard
25927 This is a text line with the word 
25928 \begin_inset ERT
25929 status collapsed
25930
25931 \begin_layout Standard
25932
25933
25934 \backslash
25935 raisebox{-
25936 \backslash
25937 depth}[0pt]{
25938 \end_layout
25939
25940 \end_inset
25941
25942
25943 \begin_inset Quotes eld
25944 \end_inset
25945
25946 preventing
25947 \begin_inset Quotes erd
25948 \end_inset
25949
25950
25951 \begin_inset ERT
25952 status collapsed
25953
25954 \begin_layout Standard
25955
25956 }
25957 \end_layout
25958
25959 \end_inset
25960
25961  as lowered word.
25962 \newline
25963 This is a text line with the word 
25964 \begin_inset ERT
25965 status collapsed
25966
25967 \begin_layout Standard
25968
25969
25970 \backslash
25971 raisebox{0.5cm}[0pt]{
25972 \end_layout
25973
25974 \end_inset
25975
25976
25977 \begin_inset Quotes eld
25978 \end_inset
25979
25980 testing
25981 \begin_inset Quotes erd
25982 \end_inset
25983
25984
25985 \begin_inset ERT
25986 status collapsed
25987
25988 \begin_layout Standard
25989
25990 }
25991 \end_layout
25992
25993 \end_inset
25994
25995  as raised word.
25996 \end_layout
25997
25998 \begin_layout Section
25999 Colored Boxes
26000 \begin_inset LatexCommand label
26001 name "sec:Colored-Boxes"
26002
26003 \end_inset
26004
26005
26006 \begin_inset LatexCommand index
26007 name "Boxes ! Color"
26008
26009 \end_inset
26010
26011
26012 \end_layout
26013
26014 \begin_layout Subsection
26015 Color for Text
26016 \begin_inset LatexCommand index
26017 name "Color ! for Text"
26018
26019 \end_inset
26020
26021
26022 \end_layout
26023
26024 \begin_layout Standard
26025 To color the background of text the text must be put into a so called colorbox.
26026  This requires that the LaTeX-package 
26027 \series bold
26028 color
26029 \series default
26030
26031 \begin_inset LatexCommand index
26032 name "LaTeX-packages ! color"
26033
26034 \end_inset
26035
26036  is loaded in the document preamble with the command
26037 \end_layout
26038
26039 \begin_layout Standard
26040
26041 \series bold
26042
26043 \backslash
26044 @ifundef\SpecialChar \textcompwordmark{}
26045 ined{textcolor}
26046 \newline
26047
26048 \begin_inset ERT
26049 status collapsed
26050
26051 \begin_layout Standard
26052
26053
26054 \backslash
26055 hphantom{ }
26056 \end_layout
26057
26058 \end_inset
26059
26060 {
26061 \backslash
26062 usepackage{color}}{}
26063 \end_layout
26064
26065 \begin_layout Standard
26066 The package 
26067 \series bold
26068 color
26069 \series default
26070  will be loaded automatically by LyX when you color text
26071 \begin_inset Foot
26072 status collapsed
26073
26074 \begin_layout Standard
26075 To avoid that it is loaded twice the command 
26076 \series bold
26077
26078 \backslash
26079 @ifundef\SpecialChar \textcompwordmark{}
26080 ined
26081 \series default
26082  is used.
26083 \end_layout
26084
26085 \end_inset
26086
26087 .
26088 \end_layout
26089
26090 \begin_layout Standard
26091 \begin_inset VSpace medskip
26092 \end_inset
26093
26094 Colorboxes are created with the command 
26095 \series bold
26096
26097 \backslash
26098 colorbox
26099 \series default
26100 .
26101  This will be used with the following scheme:
26102 \end_layout
26103
26104 \begin_layout Standard
26105
26106 \series bold
26107
26108 \backslash
26109 colorbox{color}{box content}
26110 \end_layout
26111
26112 \begin_layout Standard
26113 The box content can also be a box and colorboxes can also be within other
26114  boxes.
26115 \end_layout
26116
26117 \begin_layout Standard
26118 The following colors are predefined:
26119 \newline
26120
26121 \family sans
26122 black
26123 \family default
26124
26125 \family sans
26126 blue
26127 \family default
26128
26129 \family sans
26130 cyan
26131 \family default
26132 \series bold
26133 ,
26134 \series default
26135  
26136 \family sans
26137 green
26138 \family default
26139
26140 \family sans
26141 magenta
26142 \family default
26143
26144 \family sans
26145 red
26146 \family default
26147
26148 \family sans
26149 white
26150 \family default
26151 , and 
26152 \family sans
26153 yellow
26154 \family default
26155 .
26156 \newline
26157 You can also define your own color as described in section\InsetSpace ~
26158
26159 \begin_inset LatexCommand ref
26160 reference "sec:Colored-Tables"
26161
26162 \end_inset
26163
26164 .
26165 \end_layout
26166
26167 \begin_layout Standard
26168 To have e.\InsetSpace \thinspace{}
26169 g.\InsetSpace ~
26170 a red background for a word, insert the command
26171 \end_layout
26172
26173 \begin_layout Standard
26174
26175 \series bold
26176
26177 \backslash
26178 colorbox{red}{
26179 \end_layout
26180
26181 \begin_layout Standard
26182 before the word in ERT.
26183  Behind the word insert a closing brace 
26184 \begin_inset Quotes eld
26185 \end_inset
26186
26187
26188 \series bold
26189 }
26190 \series default
26191
26192 \begin_inset Quotes erd
26193 \end_inset
26194
26195  in ERT.
26196 \newline
26197 This is the result:
26198 \end_layout
26199
26200 \begin_layout Standard
26201 This is a line where the word 
26202 \begin_inset ERT
26203 status collapsed
26204
26205 \begin_layout Standard
26206
26207
26208 \backslash
26209 colorbox{red}{
26210 \end_layout
26211
26212 \end_inset
26213
26214
26215 \begin_inset Quotes eld
26216 \end_inset
26217
26218 Attention!
26219 \begin_inset Quotes erd
26220 \end_inset
26221
26222
26223 \begin_inset ERT
26224 status collapsed
26225
26226 \begin_layout Standard
26227
26228 }
26229 \end_layout
26230
26231 \end_inset
26232
26233  has a red background.
26234 \end_layout
26235
26236 \begin_layout Standard
26237 \begin_inset VSpace bigskip
26238 \end_inset
26239
26240 If you would have the box frame in a different color, you can use the command
26241  
26242 \series bold
26243
26244 \backslash
26245 fcolorbox
26246 \series default
26247  with the following scheme:
26248 \end_layout
26249
26250 \begin_layout Standard
26251
26252 \series bold
26253
26254 \backslash
26255 fcolorbox{frame color}{box color}{box content}
26256 \end_layout
26257
26258 \begin_layout Standard
26259
26260 \series bold
26261
26262 \backslash
26263 fcolorbox
26264 \series default
26265  is an extension to 
26266 \series bold
26267
26268 \backslash
26269 colorbox
26270 \series default
26271 .
26272  The frame thickness and the space between the frame and the box content
26273  can be adjusted with the lengths 
26274 \series bold
26275
26276 \backslash
26277 fboxrule
26278 \series default
26279  and 
26280 \series bold
26281
26282 \backslash
26283 fboxsep
26284 \series default
26285 , respectively, as described in section\InsetSpace ~
26286
26287 \begin_inset LatexCommand ref
26288 reference "sec:Framed-Boxes"
26289
26290 \end_inset
26291
26292 .
26293 \end_layout
26294
26295 \begin_layout Standard
26296 For the following example the command
26297 \end_layout
26298
26299 \begin_layout Standard
26300
26301 \series bold
26302
26303 \backslash
26304 fcolorbox{cyan}{magenta}{
26305 \end_layout
26306
26307 \begin_layout Standard
26308 was used.
26309 \end_layout
26310
26311 \begin_layout Standard
26312 Here is an example where the frame line thickness was set to 1\InsetSpace \thinspace{}
26313 mm:
26314 \newline
26315
26316 \begin_inset ERT
26317 status collapsed
26318
26319 \begin_layout Standard
26320
26321
26322 \backslash
26323 fboxrule 1mm 
26324 \backslash
26325 fboxsep 1mm
26326 \end_layout
26327
26328 \end_inset
26329
26330
26331 \begin_inset ERT
26332 status collapsed
26333
26334 \begin_layout Standard
26335
26336
26337 \backslash
26338 fcolorbox{cyan}{magenta}{
26339 \end_layout
26340
26341 \end_inset
26342
26343 This is text within a colored, framed box.
26344 \begin_inset ERT
26345 status collapsed
26346
26347 \begin_layout Standard
26348
26349 }
26350 \end_layout
26351
26352 \end_inset
26353
26354
26355 \end_layout
26356
26357 \begin_layout Standard
26358 \begin_inset VSpace bigskip
26359 \end_inset
26360
26361 Of course you can also have colored text inside a colorbox:
26362 \newline
26363
26364 \begin_inset ERT
26365 status collapsed
26366
26367 \begin_layout Standard
26368
26369
26370 \backslash
26371 fcolorbox{cyan}{magenta}{
26372 \end_layout
26373
26374 \end_inset
26375
26376
26377 \color yellow
26378 This is colored text within a colored, framed box.
26379 \color none
26380
26381 \begin_inset ERT
26382 status collapsed
26383
26384 \begin_layout Standard
26385
26386 }
26387 \end_layout
26388
26389 \end_inset
26390
26391
26392 \begin_inset ERT
26393 status collapsed
26394
26395 \begin_layout Standard
26396
26397
26398 \backslash
26399 fboxrule 0.4pt 
26400 \backslash
26401 fboxsep 3pt
26402 \end_layout
26403
26404 \end_inset
26405
26406
26407 \end_layout
26408
26409 \begin_layout Standard
26410
26411 \series bold
26412 \begin_inset VSpace medskip
26413 \end_inset
26414
26415
26416 \end_layout
26417
26418 \begin_layout Standard
26419 \begin_inset Note Greyedout
26420 status open
26421
26422 \begin_layout Standard
26423
26424 \series bold
26425 Note:
26426 \series default
26427  Text in colorboxes cannot have line breaks.
26428  To color multiple text lines or paragraphs, use a box inside a colorbox
26429  as described in the following.
26430 \end_layout
26431
26432 \end_inset
26433
26434
26435 \end_layout
26436
26437 \begin_layout Subsection
26438 Color for Paragraphs
26439 \begin_inset LatexCommand label
26440 name "sub:Color-for-Paragraphs"
26441
26442 \end_inset
26443
26444
26445 \begin_inset LatexCommand index
26446 name "Color ! for Paragraphs"
26447
26448 \end_inset
26449
26450
26451 \end_layout
26452
26453 \begin_layout Standard
26454 To set the background color for more than one text line, put the text into
26455  a minipage.
26456  Before the minipage insert the 
26457 \series bold
26458
26459 \backslash
26460 colorbox
26461 \series default
26462  command
26463 \end_layout
26464
26465 \begin_layout Standard
26466
26467 \series bold
26468
26469 \backslash
26470 colorbox{color}{
26471 \end_layout
26472
26473 \begin_layout Standard
26474 in ERT.
26475  Behind the minipage insert a closing brace 
26476 \begin_inset Quotes eld
26477 \end_inset
26478
26479
26480 \series bold
26481 }
26482 \series default
26483
26484 \begin_inset Quotes erd
26485 \end_inset
26486
26487  in ERT.
26488 \end_layout
26489
26490 \begin_layout Standard
26491 \begin_inset ERT
26492 status collapsed
26493
26494 \begin_layout Standard
26495
26496
26497 \backslash
26498 colorbox{lightgrey}{
26499 \end_layout
26500
26501 \end_inset
26502
26503
26504 \begin_inset Box Frameless
26505 position "t"
26506 hor_pos "c"
26507 has_inner_box 1
26508 inner_pos "t"
26509 use_parbox 0
26510 width "100col%"
26511 special "none"
26512 height "1in"
26513 height_special "totalheight"
26514 status collapsed
26515
26516 \begin_layout Standard
26517 This is text with background color.
26518  This is text with background color.
26519 \end_layout
26520
26521 \begin_layout Standard
26522 \begin_inset VSpace defskip
26523 \end_inset
26524
26525 The text can have footnotes
26526 \begin_inset Foot
26527 status collapsed
26528
26529 \begin_layout Standard
26530 Another example footnote
26531 \end_layout
26532
26533 \end_inset
26534
26535  and can include tables and figures.
26536 \end_layout
26537
26538 \begin_layout Standard
26539 \align center
26540 \begin_inset Tabular
26541 <lyxtabular version="3" rows="3" columns="3">
26542 <features>
26543 <column alignment="center" valignment="top" leftline="true" width="0">
26544 <column alignment="center" valignment="top" leftline="true" width="0">
26545 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26546 <row topline="true">
26547 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26548 \begin_inset Text
26549
26550 \begin_layout Standard
26551 a
26552 \end_layout
26553
26554 \end_inset
26555 </cell>
26556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26557 \begin_inset Text
26558
26559 \begin_layout Standard
26560 !
26561 \end_layout
26562
26563 \end_inset
26564 </cell>
26565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26566 \begin_inset Text
26567
26568 \begin_layout Standard
26569 3
26570 \end_layout
26571
26572 \end_inset
26573 </cell>
26574 </row>
26575 <row topline="true">
26576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26577 \begin_inset Text
26578
26579 \begin_layout Standard
26580 <
26581 \end_layout
26582
26583 \end_inset
26584 </cell>
26585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26586 \begin_inset Text
26587
26588 \begin_layout Standard
26589 b2
26590 \begin_inset Quotes erd
26591 \end_inset
26592
26593 |
26594 \end_layout
26595
26596 \end_inset
26597 </cell>
26598 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26599 \begin_inset Text
26600
26601 \begin_layout Standard
26602 >
26603 \end_layout
26604
26605 \end_inset
26606 </cell>
26607 </row>
26608 <row topline="true" bottomline="true">
26609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26610 \begin_inset Text
26611
26612 \begin_layout Standard
26613 1
26614 \end_layout
26615
26616 \end_inset
26617 </cell>
26618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26619 \begin_inset Text
26620
26621 \begin_layout Standard
26622 §
26623 \end_layout
26624
26625 \end_inset
26626 </cell>
26627 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26628 \begin_inset Text
26629
26630 \begin_layout Standard
26631 c
26632 \end_layout
26633
26634 \end_inset
26635 </cell>
26636 </row>
26637 </lyxtabular>
26638
26639 \end_inset
26640
26641
26642 \end_layout
26643
26644 \end_inset
26645
26646
26647 \begin_inset ERT
26648 status collapsed
26649
26650 \begin_layout Standard
26651
26652 }
26653 \end_layout
26654
26655 \end_inset
26656
26657
26658 \end_layout
26659
26660 \begin_layout Section
26661 URLs (Uniform Resource Locators)
26662 \begin_inset LatexCommand index
26663 name "URLs"
26664
26665 \end_inset
26666
26667
26668 \end_layout
26669
26670 \begin_layout Standard
26671 Links to web pages or email addresses can be inserted via the menu 
26672 \family sans
26673 Insert\SpecialChar \menuseparator
26674 URL
26675 \family default
26676 .
26677  The appearing URL dialog has two fields; the 
26678 \family sans
26679 URL
26680 \family default
26681  field and the 
26682 \family sans
26683 Name
26684 \family default
26685  field for the URL description, which will be typeset as plain text immediately
26686  before the URL.
26687 \end_layout
26688
26689 \begin_layout Standard
26690 Here is an example URL: 
26691 \begin_inset LatexCommand url
26692 name "LyX's homepage"
26693 target "http://www.lyx.org"
26694
26695 \end_inset
26696
26697
26698 \end_layout
26699
26700 \begin_layout Standard
26701 The option 
26702 \family sans
26703 Generate\InsetSpace ~
26704 hyperlink
26705 \family default
26706  in the URL dialog has only an affect when you export your document to the
26707  format 
26708 \begin_inset Quotes eld
26709 \end_inset
26710
26711
26712 \family sans
26713 LinuxDoc
26714 \family default
26715
26716 \begin_inset Quotes erd
26717 \end_inset
26718
26719 .
26720 \end_layout
26721
26722 \begin_layout Standard
26723 You cannot change the style of the link text.
26724  The text of the 
26725 \family sans
26726 Name
26727 \family default
26728  field will have the default text style of the document while the text of
26729  the 
26730 \family sans
26731 URL
26732 \family default
26733  field will have the style 
26734 \begin_inset Quotes eld
26735 \end_inset
26736
26737
26738 \family sans
26739 Typewriter
26740 \family default
26741
26742 \begin_inset Quotes erd
26743 \end_inset
26744
26745 .
26746 \end_layout
26747
26748 \begin_layout Standard
26749 When you use the LaTeX-package 
26750 \series bold
26751 hyperref
26752 \series default
26753
26754 \begin_inset LatexCommand index
26755 name "LaTeX-packages ! hyperref"
26756
26757 \end_inset
26758
26759  to link cross-references in the output, URLs will automatically become
26760  clickable hyperlinks in DVI and PDF-output.
26761 \end_layout
26762
26763 \begin_layout Standard
26764 \begin_inset Note Greyedout
26765 status open
26766
26767 \begin_layout Standard
26768
26769 \series bold
26770 Note:
26771 \series default
26772  When you use the following characters: "%", "#", "^", you have to write
26773  them with a preceding backslash, e.\InsetSpace \thinspace{}
26774 g.\InsetSpace ~
26775
26776 \begin_inset Quotes eld
26777 \end_inset
26778
26779
26780 \backslash
26781 #
26782 \begin_inset Quotes erd
26783 \end_inset
26784
26785 .
26786  URLs must not end with a backslash.
26787 \end_layout
26788
26789 \end_inset
26790
26791
26792 \end_layout
26793
26794 \begin_layout Standard
26795 \begin_inset VSpace bigskip
26796 \end_inset
26797
26798 To create real hyperlinks without the force to write the link location to
26799  the text, you can use the command
26800 \end_layout
26801
26802 \begin_layout Standard
26803
26804 \series bold
26805
26806 \backslash
26807 href{link location}{link text}
26808 \end_layout
26809
26810 \begin_layout Standard
26811 in ERT.
26812  To get for example a link to LyX's web page, write the command
26813 \end_layout
26814
26815 \begin_layout Standard
26816
26817 \series bold
26818
26819 \backslash
26820 href{http://www.lyx.org}{
26821 \end_layout
26822
26823 \begin_layout Standard
26824 in ERT.
26825  Insert after the command the link text 
26826 \begin_inset Quotes eld
26827 \end_inset
26828
26829 LyX's homepage
26830 \begin_inset Quotes erd
26831 \end_inset
26832
26833  as normal text followed by a closing brace 
26834 \begin_inset Quotes eld
26835 \end_inset
26836
26837
26838 \series bold
26839 }
26840 \series default
26841
26842 \begin_inset Quotes erd
26843 \end_inset
26844
26845  in ERT.
26846  This is the result: 
26847 \begin_inset ERT
26848 status collapsed
26849
26850 \begin_layout Standard
26851
26852
26853 \backslash
26854 href{http://www.lyx.org}{
26855 \end_layout
26856
26857 \end_inset
26858
26859 LyX's homepage
26860 \begin_inset ERT
26861 status collapsed
26862
26863 \begin_layout Standard
26864
26865 }
26866 \end_layout
26867
26868 \end_inset
26869
26870
26871 \end_layout
26872
26873 \begin_layout Standard
26874 To link to email addresses, add the prefix 
26875 \begin_inset Quotes eld
26876 \end_inset
26877
26878
26879 \family sans
26880 mailto:
26881 \family default
26882
26883 \begin_inset Quotes erd
26884 \end_inset
26885
26886  to the link location:
26887 \newline
26888 Email to 
26889 \begin_inset ERT
26890 status collapsed
26891
26892 \begin_layout Standard
26893
26894
26895 \backslash
26896 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26897 \end_layout
26898
26899 \end_inset
26900
26901 lyx-docs mailing list
26902 \begin_inset ERT
26903 status collapsed
26904
26905 \begin_layout Standard
26906
26907 }
26908 \end_layout
26909
26910 \end_inset
26911
26912 .
26913 \end_layout
26914
26915 \begin_layout Standard
26916 Using 
26917 \series bold
26918
26919 \backslash
26920 href
26921 \series default
26922  instead of LyX's URL box has the advantage that you can specify the text
26923  style of the link text like for all other text parts.
26924  You can therefore set hyphenation points and forced linebreaks to have
26925  long link text broken at the page margin.
26926  You are furthermore able to change the text style for all URLs in your
26927  document with an option in 
26928 \series bold
26929 hyperref
26930 \series default
26931 's load command and the restrictions mentioned above doesn't apply for 
26932 \series bold
26933
26934 \backslash
26935 href
26936 \series default
26937 .
26938 \end_layout
26939
26940 \begin_layout Chapter
26941 External Stuff
26942 \begin_inset LatexCommand index
26943 name "External Stuff"
26944
26945 \end_inset
26946
26947
26948 \end_layout
26949
26950 \begin_layout Standard
26951 With the menu 
26952 \family sans
26953 Insert\SpecialChar \menuseparator
26954 File
26955 \family default
26956  you can insert external material to your document.
26957  This can be:
26958 \end_layout
26959
26960 \begin_layout Description
26961 LyX\InsetSpace ~
26962 Document Another LyX document; its content is directly inserted to your
26963  document.
26964 \end_layout
26965
26966 \begin_layout Description
26967 Plain\InsetSpace ~
26968 Text A text document; every of its text lines is inserted to your document
26969  as own paragraph.
26970 \end_layout
26971
26972 \begin_layout Description
26973 Plain\InsetSpace ~
26974 Text,\InsetSpace ~
26975 Join\InsetSpace ~
26976 Lines A text document; its text lines are inserted as they
26977  are.
26978  Empty text lines creates a new paragraph in your document.
26979 \end_layout
26980
26981 \begin_layout Description
26982 External\InsetSpace ~
26983 Material Files in various formats.
26984 \end_layout
26985
26986 \begin_layout Description
26987 Child\InsetSpace ~
26988 Document LyX or LaTeX-documents.
26989 \end_layout
26990
26991 \begin_layout Section
26992 External Material
26993 \begin_inset LatexCommand index
26994 name "External Stuff ! External Material"
26995
26996 \end_inset
26997
26998
26999 \end_layout
27000
27001 \begin_layout Standard
27002 The external material feature allows you to insert files to your document
27003  without converting them previously to a format that can be read by the
27004  document output format because LyX takes care of needed conversions.
27005  This is similar to images that can be inserted in various image formats
27006  to LyX documents.
27007 \end_layout
27008
27009 \begin_layout Standard
27010 External material can be inserted via the 
27011 \family sans
27012 External Material
27013 \family default
27014  dialog that is accessible with the menu 
27015 \family sans
27016 Insert\SpecialChar \menuseparator
27017 File\SpecialChar \menuseparator
27018 External\InsetSpace ~
27019 Material
27020 \family default
27021 .
27022  Currently the following file types (
27023 \family sans
27024 Templates
27025 \family default
27026 ) are allowed:
27027 \end_layout
27028
27029 \begin_layout Description
27030 ChessDiagram This template supports chess position diagrams made with the
27031  program 
27032 \begin_inset ERT
27033 status collapsed
27034
27035 \begin_layout Standard
27036
27037
27038 \backslash
27039 href{http://en.wikipedia.org/wiki/XBoard}{
27040 \end_layout
27041
27042 \end_inset
27043
27044
27045 \series bold
27046 XBoard
27047 \series default
27048
27049 \begin_inset ERT
27050 status collapsed
27051
27052 \begin_layout Standard
27053
27054 }
27055 \end_layout
27056
27057 \end_inset
27058
27059 .
27060 \end_layout
27061
27062 \begin_layout Description
27063 Date This inserts the date in the form 
27064 \emph on
27065 Day-Month-Year
27066 \emph default
27067 .
27068  This is a date inserted as external material: 
27069 \begin_inset External
27070         template Date
27071         filename .
27072
27073 \end_inset
27074
27075
27076 \newline
27077 The date is not shown within LyX, only in the output.
27078  There are two other methods of inserting a date, via menu 
27079 \family sans
27080 Insert\SpecialChar \menuseparator
27081 Date
27082 \family default
27083  and with the LaTeX command 
27084 \series bold
27085
27086 \backslash
27087 today
27088 \series default
27089  as ERT.
27090  The different methods are compared in Table\InsetSpace ~
27091
27092 \begin_inset LatexCommand ref
27093 reference "tab:Comparison-of-the"
27094
27095 \end_inset
27096
27097 .
27098 \end_layout
27099
27100 \begin_layout Description
27101 LilyPond This template is used for music notation typeset with the program
27102 \begin_inset ERT
27103 status collapsed
27104
27105 \begin_layout Standard
27106
27107
27108 \backslash
27109 linebreak 
27110 \end_layout
27111
27112 \end_inset
27113
27114
27115 \begin_inset ERT
27116 status collapsed
27117
27118 \begin_layout Standard
27119
27120
27121 \backslash
27122 href{http://en.wikipedia.org/wiki/LilyPond}{
27123 \end_layout
27124
27125 \end_inset
27126
27127
27128 \series bold
27129 LilyPond
27130 \series default
27131
27132 \begin_inset ERT
27133 status collapsed
27134
27135 \begin_layout Standard
27136
27137 }
27138 \end_layout
27139
27140 \end_inset
27141
27142 .
27143 \begin_inset Note Note
27144 status collapsed
27145
27146 \begin_layout Standard
27147 The command 
27148 \series bold
27149
27150 \backslash
27151 linebreak
27152 \series default
27153  breaks the line while the remaining text in the line is stretched to the
27154  page margin.
27155 \end_layout
27156
27157 \end_inset
27158
27159
27160 \end_layout
27161
27162 \begin_layout Description
27163 RasterImage This can be used for bitmap images.
27164  Nearly all popular image formats are supported.
27165  The image can be treated in the 
27166 \family sans
27167 External material
27168 \family default
27169  dialog like the images that are usually included via the 
27170 \family sans
27171 Graphics
27172 \family default
27173  dialog as described in section\InsetSpace ~
27174
27175 \begin_inset LatexCommand ref
27176 reference "sec:Graphics-Dialog"
27177
27178 \end_inset
27179
27180 .
27181  The difference is that only raster images are allowed, that means that
27182  PDF and EPS-images are not supported.
27183 \end_layout
27184
27185 \begin_layout Description
27186 XFig This template supports images created with the program 
27187 \begin_inset ERT
27188 status collapsed
27189
27190 \begin_layout Standard
27191
27192
27193 \backslash
27194 href{http://en.wikipedia.org/wiki/Xfig}{
27195 \end_layout
27196
27197 \end_inset
27198
27199
27200 \series bold
27201 Xfig
27202 \series default
27203
27204 \begin_inset ERT
27205 status collapsed
27206
27207 \begin_layout Standard
27208
27209 }
27210 \end_layout
27211
27212 \end_inset
27213
27214 .
27215 \end_layout
27216
27217 \begin_layout Standard
27218 \begin_inset Float table
27219 placement h
27220 wide false
27221 sideways false
27222 status open
27223
27224 \begin_layout Standard
27225 \begin_inset Caption
27226
27227 \begin_layout Standard
27228 \begin_inset LatexCommand label
27229 name "tab:Comparison-of-the"
27230
27231 \end_inset
27232
27233 Comparison of the date input methods.
27234 \end_layout
27235
27236 \end_inset
27237
27238
27239 \end_layout
27240
27241 \begin_layout Standard
27242 \align center
27243 \begin_inset Tabular
27244 <lyxtabular version="3" rows="4" columns="4">
27245 <features>
27246 <column alignment="center" valignment="top" leftline="true" width="0">
27247 <column alignment="center" valignment="top" leftline="true" width="0">
27248 <column alignment="center" valignment="top" leftline="true" width="0">
27249 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27250 <row topline="true">
27251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27252 \begin_inset Text
27253
27254 \begin_layout Standard
27255 Document format
27256 \end_layout
27257
27258 \end_inset
27259 </cell>
27260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27261 \begin_inset Text
27262
27263 \begin_layout Standard
27264
27265 \family sans
27266 External Material\SpecialChar \menuseparator
27267 Date
27268 \end_layout
27269
27270 \end_inset
27271 </cell>
27272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27273 \begin_inset Text
27274
27275 \begin_layout Standard
27276
27277 \family sans
27278 Insert\SpecialChar \menuseparator
27279 Date
27280 \end_layout
27281
27282 \end_inset
27283 </cell>
27284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27285 \begin_inset Text
27286
27287 \begin_layout Standard
27288 command 
27289 \series bold
27290
27291 \backslash
27292 today
27293 \end_layout
27294
27295 \end_inset
27296 </cell>
27297 </row>
27298 <row topline="true">
27299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27300 \begin_inset Text
27301
27302 \begin_layout Standard
27303 LyX
27304 \end_layout
27305
27306 \end_inset
27307 </cell>
27308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27309 \begin_inset Text
27310
27311 \begin_layout Standard
27312 as inset box
27313 \end_layout
27314
27315 \end_inset
27316 </cell>
27317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27318 \begin_inset Text
27319
27320 \begin_layout Standard
27321 as date
27322 \end_layout
27323
27324 \end_inset
27325 </cell>
27326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27327 \begin_inset Text
27328
27329 \begin_layout Standard
27330 as ERT inset box
27331 \end_layout
27332
27333 \end_inset
27334 </cell>
27335 </row>
27336 <row topline="true">
27337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27338 \begin_inset Text
27339
27340 \begin_layout Standard
27341 LaTeX
27342 \end_layout
27343
27344 \end_inset
27345 </cell>
27346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27347 \begin_inset Text
27348
27349 \begin_layout Standard
27350 as date
27351 \end_layout
27352
27353 \end_inset
27354 </cell>
27355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27356 \begin_inset Text
27357
27358 \begin_layout Standard
27359 as date
27360 \end_layout
27361
27362 \end_inset
27363 </cell>
27364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27365 \begin_inset Text
27366
27367 \begin_layout Standard
27368 as command
27369 \end_layout
27370
27371 \end_inset
27372 </cell>
27373 </row>
27374 <row topline="true" bottomline="true">
27375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27376 \begin_inset Text
27377
27378 \begin_layout Standard
27379 DVI, PDF, PS
27380 \end_layout
27381
27382 \end_inset
27383 </cell>
27384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27385 \begin_inset Text
27386
27387 \begin_layout Standard
27388 as date
27389 \end_layout
27390
27391 \end_inset
27392 </cell>
27393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27394 \begin_inset Text
27395
27396 \begin_layout Standard
27397 as date
27398 \end_layout
27399
27400 \end_inset
27401 </cell>
27402 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27403 \begin_inset Text
27404
27405 \begin_layout Standard
27406 as date
27407 \end_layout
27408
27409 \end_inset
27410 </cell>
27411 </row>
27412 </lyxtabular>
27413
27414 \end_inset
27415
27416
27417 \end_layout
27418
27419 \end_inset
27420
27421
27422 \end_layout
27423
27424 \begin_layout Standard
27425 When you use the option 
27426 \family sans
27427 Draft
27428 \family default
27429  in the 
27430 \family sans
27431 File
27432 \family default
27433  tab of the 
27434 \family sans
27435 External Material
27436 \family default
27437  dialog, only the path to the inserted file is shown in the output.
27438 \newline
27439 External
27440  material is displayed in LyX either as box like this: 
27441 \begin_inset Graphics
27442         filename clipart/ExternalMaterialQt4.png
27443         scale 85
27444
27445 \end_inset
27446
27447  or as image, depending on the setting in the 
27448 \family sans
27449 LyX\InsetSpace ~
27450 View
27451 \family default
27452  tab of the 
27453 \family sans
27454 External Material
27455 \family default
27456  dialog.
27457 \end_layout
27458
27459 \begin_layout Standard
27460 The 
27461 \family sans
27462 \emph on
27463 Customization
27464 \family default
27465 \emph default
27466  manual explains how you can define your own templates.
27467 \end_layout
27468
27469 \begin_layout Section
27470 Child Documents
27471 \begin_inset LatexCommand label
27472 name "sec:Child-Documents"
27473
27474 \end_inset
27475
27476
27477 \begin_inset LatexCommand index
27478 name "External Stuff ! Child Documents"
27479
27480 \end_inset
27481
27482
27483 \begin_inset LatexCommand index
27484 name "Files ! Include"
27485
27486 \end_inset
27487
27488
27489 \end_layout
27490
27491 \begin_layout Standard
27492 Child documents are used when you have a long document consisting of several
27493  larger parts or sections.
27494  For maintenance it is often useful and sometimes even required to split
27495  the document in several files that can be revised separately.
27496  The different documents are then the so called child documents and a master
27497  document connects them to print the full document or parts of it.
27498 \end_layout
27499
27500 \begin_layout Standard
27501 Included documents are displayed in LyX as a box like this: 
27502 \begin_inset Graphics
27503         filename clipart/ChildDocumentQt4.png
27504         scale 85
27505
27506 \end_inset
27507
27508  To include child documents to a master document use the menu 
27509 \family sans
27510 Insert\SpecialChar \menuseparator
27511 File\SpecialChar \menuseparator
27512 Child\InsetSpace ~
27513 Documents
27514 \family default
27515 .
27516  A dialog pops up where you can choose between four include methods:
27517 \end_layout
27518
27519 \begin_layout Description
27520 Include You can include LyX and LaTeX-documents.
27521  When you press the 
27522 \family sans
27523 Load
27524 \family default
27525  button in the 
27526 \family sans
27527 Child Document
27528 \family default
27529  dialog, the included documents will be opened in LyX in a new file tab
27530  so that you can modify it.
27531 \newline
27532
27533 \end_layout
27534
27535 \begin_layout Standard
27536 Here is a child document inserted using 
27537 \family sans
27538 Include
27539 \family default
27540
27541 \begin_inset Include \include{DummyDocument1.lyx}
27542 preview false
27543
27544 \end_inset
27545
27546
27547 \end_layout
27548
27549 \begin_layout Standard
27550 The section numbering includes the sections of the included files in the
27551  order they are inserted in the master document.
27552  The included example document has for example a subsection that is numbered
27553  as subsection of this section.
27554  Labels of included documents can be referenced: Subsection\InsetSpace ~
27555
27556 \begin_inset LatexCommand ref
27557 reference "sub:External-Subsection-1"
27558
27559 \end_inset
27560
27561
27562 \end_layout
27563
27564 \begin_layout Standard
27565 The preamble of the child document is ignored, only the preamble of the
27566  master document is used.
27567  Included documents are inserted starting on a new page and end with a pagebreak.
27568 \end_layout
27569
27570 \begin_layout Standard
27571 With the LaTeX-command 
27572 \series bold
27573
27574 \backslash
27575 includeonly 
27576 \series default
27577 you can specify which included child documents are processed when the output
27578  is generated.
27579  This is useful when you are perhaps only working on a certain chapter of
27580  your large document as this saves compiling time.
27581  
27582 \series bold
27583
27584 \backslash
27585 includeonly
27586 \series default
27587  is inserted to the master document preamble.
27588  It takes a comma-separated list of the filenames as argument, e.g.
27589 \end_layout
27590
27591 \begin_layout Standard
27592
27593 \series bold
27594
27595 \backslash
27596 includeonly{chapter1,chapter5}
27597 \end_layout
27598
27599 \begin_layout Standard
27600 will only process the included files named 
27601 \begin_inset Quotes eld
27602 \end_inset
27603
27604 chapter1.lyx
27605 \begin_inset Quotes erd
27606 \end_inset
27607
27608  (or 
27609 \begin_inset Quotes eld
27610 \end_inset
27611
27612 chapter1.tex
27613 \begin_inset Quotes erd
27614 \end_inset
27615
27616 ) and 
27617 \begin_inset Quotes eld
27618 \end_inset
27619
27620 chapter5.lyx
27621 \begin_inset Quotes erd
27622 \end_inset
27623
27624  .
27625 \end_layout
27626
27627 \begin_layout Standard
27628 \begin_inset Note Greyedout
27629 status open
27630
27631 \begin_layout Standard
27632
27633 \series bold
27634 Note:
27635 \series default
27636  When you have included a LyX- or LaTeX-file, you are warned when you export/vie
27637 w the document in case that the child document uses another document class
27638  than the master document as this will lead to unexpected outputs.
27639 \end_layout
27640
27641 \end_inset
27642
27643
27644 \end_layout
27645
27646 \begin_layout Description
27647 Input This method is very similar to the Include method.
27648  The differences are:
27649 \end_layout
27650
27651 \begin_deeper
27652 \begin_layout Itemize
27653 Input files don't start with a new page and don't end with a pagebreak.
27654 \end_layout
27655
27656 \begin_layout Itemize
27657 Input files can be previewed in LyX when 
27658 \family sans
27659 Instant\InsetSpace ~
27660 Preview
27661 \family default
27662  is enabled in LyX's preferences under 
27663 \family sans
27664 Look\InsetSpace ~
27665 and\InsetSpace ~
27666 feel\SpecialChar \menuseparator
27667 Graphics
27668 \family default
27669 .
27670 \end_layout
27671
27672 \begin_layout Itemize
27673 The LaTeX-command 
27674 \series bold
27675
27676 \backslash
27677 includeonly
27678 \series default
27679  cannot be used.
27680 \end_layout
27681
27682 \end_deeper
27683 \begin_layout Standard
27684 Here is a child document inserted using 
27685 \family sans
27686 Input
27687 \family default
27688
27689 \begin_inset Include \input{DummyDocument2.lyx}
27690 preview false
27691
27692 \end_inset
27693
27694
27695 \end_layout
27696
27697 \begin_layout Description
27698 Verbatim With this method every text file can be included.
27699  The file is shown in the output with its source code, no command used in
27700  the text is invoked.
27701  You can use the option 
27702 \family sans
27703 Mark spaces in output
27704 \family default
27705  that displays the character 
27706 \begin_inset Quotes eld
27707 \end_inset
27708
27709
27710 \begin_inset ERT
27711 status collapsed
27712
27713 \begin_layout Standard
27714
27715
27716 \backslash
27717 textvisiblespace 
27718 \end_layout
27719
27720 \end_inset
27721
27722
27723 \begin_inset Quotes erd
27724 \end_inset
27725
27726  for every space character in the source code.
27727  The difference to the method via the menu 
27728 \family sans
27729 Insert\SpecialChar \menuseparator
27730 File\SpecialChar \menuseparator
27731 Plain\InsetSpace ~
27732 Text
27733 \family default
27734  is that the document content is not shown in LyX.
27735 \end_layout
27736
27737 \begin_layout Standard
27738 Here is a child document inserted as Verbatim: 
27739 \begin_inset Include \verbatiminput{DummyTextDocument.txt}
27740 preview false
27741
27742 \end_inset
27743
27744
27745 \begin_inset VSpace bigskip
27746 \end_inset
27747
27748 Here is a child document inserted as Verbatim using the 
27749 \family sans
27750 Mark spaces in output
27751 \family default
27752  option: 
27753 \begin_inset Include \verbatiminput*{DummyTextDocument.txt}
27754 preview false
27755
27756 \end_inset
27757
27758
27759 \end_layout
27760
27761 \begin_layout Standard
27762 \begin_inset VSpace bigskip
27763 \end_inset
27764
27765
27766 \end_layout
27767
27768 \begin_layout Standard
27769 \begin_inset Note Greyedout
27770 status open
27771
27772 \begin_layout Standard
27773
27774 \series bold
27775 Note:
27776 \series default
27777  As you can see in the examples above, the text of the documents included
27778  as verbatim is not broken at the end of the document lines.
27779 \end_layout
27780
27781 \end_inset
27782
27783
27784 \end_layout
27785
27786 \begin_layout Description
27787 Listings This type is described in chapter\InsetSpace ~
27788
27789 \begin_inset LatexCommand ref
27790 reference "cha:Program-Code-Listings"
27791
27792 \end_inset
27793
27794 .
27795 \end_layout
27796
27797 \begin_layout Standard
27798 \begin_inset Note Greyedout
27799 status open
27800
27801 \begin_layout Standard
27802
27803 \series bold
27804 Note:
27805 \series default
27806  Including the same document twice in a document using different methods
27807  could cause LaTeX-problems.
27808 \end_layout
27809
27810 \end_inset
27811
27812
27813 \end_layout
27814
27815 \begin_layout Chapter
27816 Program Code Listings
27817 \begin_inset LatexCommand label
27818 name "cha:Program-Code-Listings"
27819
27820 \end_inset
27821
27822
27823 \begin_inset LatexCommand index
27824 name "Listings"
27825
27826 \end_inset
27827
27828
27829 \begin_inset LatexCommand index
27830 name "Program Code"
27831
27832 \end_inset
27833
27834
27835 \begin_inset LatexCommand index
27836 name "Floats ! Listings"
27837
27838 \end_inset
27839
27840
27841 \end_layout
27842
27843 \begin_layout Standard
27844 To include and typeset program code you can use the 
27845 \family sans
27846 Listings
27847 \family default
27848  inset that can be inserted via the menu 
27849 \family sans
27850 Insert\SpecialChar \menuseparator
27851 Program Listing
27852 \family default
27853 .
27854  The LaTeX-package 
27855 \series bold
27856 listings
27857 \series default
27858
27859 \begin_inset LatexCommand index
27860 name "LaTeX-packages ! listings"
27861
27862 \end_inset
27863
27864  provides a powerful and flexible way to insert program source code to your
27865  document.
27866 \end_layout
27867
27868 \begin_layout Standard
27869 When right-clicking on a listings inset a dialog pops up where you can set
27870  the listings format.
27871 \end_layout
27872
27873 \begin_layout Standard
27874 By default, a listing starts a new paragraph in the output.
27875  The placement option 
27876 \family sans
27877 Inline\InsetSpace ~
27878 listing
27879 \family default
27880  prints the listing inline like this: 
27881 \begin_inset listings
27882 lstparams "language={C++}"
27883 inline true
27884 status open
27885
27886 \begin_layout Standard
27887
27888 int a=5;
27889 \end_layout
27890
27891 \end_inset
27892
27893
27894 \newline
27895 The option 
27896 \family sans
27897 Float
27898 \family default
27899  creates a listings float where you can specify the placement options 
27900 \begin_inset Quotes eld
27901 \end_inset
27902
27903
27904 \family sans
27905 h
27906 \family default
27907
27908 \begin_inset Quotes erd
27909 \end_inset
27910
27911
27912 \begin_inset Quotes eld
27913 \end_inset
27914
27915
27916 \family sans
27917 t
27918 \family default
27919
27920 \begin_inset Quotes erd
27921 \end_inset
27922
27923
27924 \begin_inset Quotes eld
27925 \end_inset
27926
27927
27928 \family sans
27929 b
27930 \family default
27931
27932 \begin_inset Quotes erd
27933 \end_inset
27934
27935 , and 
27936 \begin_inset Quotes eld
27937 \end_inset
27938
27939
27940 \family sans
27941 p
27942 \family default
27943
27944 \begin_inset Quotes erd
27945 \end_inset
27946
27947  corresponding to the float placement options described in section\InsetSpace ~
27948
27949 \begin_inset LatexCommand ref
27950 reference "sec:Float-Placement"
27951
27952 \end_inset
27953
27954 .
27955  The placement options can be mixed and are inserted without any separation,
27956  e.\InsetSpace \thinspace{}
27957 g.\InsetSpace ~
27958
27959 \begin_inset Quotes eld
27960 \end_inset
27961
27962
27963 \family sans
27964 htbp
27965 \family default
27966
27967 \begin_inset Quotes erd
27968 \end_inset
27969
27970 .
27971  The option 
27972 \begin_inset Quotes eld
27973 \end_inset
27974
27975 h
27976 \begin_inset Quotes erd
27977 \end_inset
27978
27979  has sometimes no effect, but you don't need to use the 
27980 \family sans
27981 Float
27982 \family default
27983  option in this case as also non-float listings can have captions and be
27984  referenced.
27985 \end_layout
27986
27987 \begin_layout Standard
27988 You can add captions to listings with the menu 
27989 \family sans
27990 Insert\SpecialChar \menuseparator
27991 Caption
27992 \family default
27993 .
27994  Listings can be referenced like floats: Listing\InsetSpace ~
27995
27996 \begin_inset LatexCommand ref
27997 reference "lst:Example-Listing"
27998
27999 \end_inset
28000
28001
28002 \end_layout
28003
28004 \begin_layout Standard
28005 \begin_inset listings
28006 lstparams "language=Python"
28007 inline false
28008 status open
28009
28010 \begin_layout Standard
28011
28012 \begin_inset Caption
28013
28014 \begin_layout Standard
28015 \begin_inset LatexCommand label
28016 name "lst:Example-Listing"
28017
28018 \end_inset
28019
28020 Example Listing float
28021 \end_layout
28022
28023 \end_inset
28024
28025 # Example listing float
28026 \end_layout
28027
28028 \begin_layout Standard
28029
28030 def func(param):
28031 \end_layout
28032
28033 \begin_layout Standard
28034
28035     'this is a python function'
28036 \end_layout
28037
28038 \begin_layout Standard
28039
28040     pass
28041 \end_layout
28042
28043 \end_inset
28044
28045
28046 \end_layout
28047
28048 \begin_layout Standard
28049 When you have set a programming language in the listings dialog, the keywords
28050  of this language will be recognized and specially typeset in the output.
28051  In the example listings the Python keyword 
28052 \begin_inset Quotes eld
28053 \end_inset
28054
28055 def
28056 \begin_inset Quotes erd
28057 \end_inset
28058
28059  is recognized and printed bold in the output.
28060 \end_layout
28061
28062 \begin_layout Standard
28063 In section 
28064 \family sans
28065 Line\InsetSpace ~
28066 numbering
28067 \family default
28068  of the listings dialog you can specify the line numbering style.
28069  You can insert a number to specify which lines are numbered to the field
28070  
28071 \family sans
28072 Step
28073 \family default
28074 .
28075  When you insert e.g.
28076  
28077 \begin_inset Quotes eld
28078 \end_inset
28079
28080 3
28081 \begin_inset Quotes erd
28082 \end_inset
28083
28084 , only every 3rd line will be numbered.
28085 \end_layout
28086
28087 \begin_layout Standard
28088 You can furthermore specify a range of lines, only these will then appear
28089  in the output.
28090  The option 
28091 \family sans
28092 Extended\InsetSpace ~
28093 chars
28094 \family default
28095  should be used when you use national characters like the German umlauts
28096  in the listing.
28097 \newline
28098 Here is an example listing with left line numbering, step
28099  
28100 \begin_inset Quotes eld
28101 \end_inset
28102
28103 3
28104 \begin_inset Quotes erd
28105 \end_inset
28106
28107 , language 
28108 \begin_inset Quotes eld
28109 \end_inset
28110
28111 Python
28112 \begin_inset Quotes erd
28113 \end_inset
28114
28115 , options 
28116 \begin_inset Quotes eld
28117 \end_inset
28118
28119 Extended\InsetSpace ~
28120 chars
28121 \begin_inset Quotes erd
28122 \end_inset
28123
28124  and 
28125 \begin_inset Quotes eld
28126 \end_inset
28127
28128 Space\InsetSpace ~
28129 as\InsetSpace ~
28130 Symbol
28131 \begin_inset Quotes erd
28132 \end_inset
28133
28134 , range lines 3\InsetSpace \thinspace{}
28135 -\InsetSpace \thinspace{}
28136 8:
28137 \end_layout
28138
28139 \begin_layout Standard
28140 \begin_inset listings
28141 lstparams "extendedchars=true,firstline=3,language=Python,lastline=8,numbers=left,showspaces=true,stepnumber=3"
28142 inline false
28143 status open
28144
28145 \begin_layout Standard
28146
28147 def func(param):
28148 \end_layout
28149
28150 \begin_layout Standard
28151
28152     'this is a python function'
28153 \end_layout
28154
28155 \begin_layout Standard
28156
28157     pass
28158 \end_layout
28159
28160 \begin_layout Standard
28161
28162 def func(param):
28163 \end_layout
28164
28165 \begin_layout Standard
28166
28167 'This is a German word: Tschüß'
28168 \end_layout
28169
28170 \begin_layout Standard
28171
28172 pass
28173 \end_layout
28174
28175 \begin_layout Standard
28176
28177 def func(param):
28178 \end_layout
28179
28180 \begin_layout Standard
28181
28182 'this is a python function'
28183 \end_layout
28184
28185 \begin_layout Standard
28186
28187 pass
28188 \end_layout
28189
28190 \end_inset
28191
28192
28193 \end_layout
28194
28195 \begin_layout Standard
28196 \begin_inset Note Greyedout
28197 status open
28198
28199 \begin_layout Standard
28200
28201 \series bold
28202 Note:
28203 \series default
28204  The line numbering is shifted by a line by every previous listing.
28205  That's the reason why the lines 2 and 5 are numbered in the above listing
28206  and not the lines 3 and 6.
28207 \end_layout
28208
28209 \end_inset
28210
28211
28212 \end_layout
28213
28214 \begin_layout Standard
28215 \begin_inset VSpace bigskip
28216 \end_inset
28217
28218
28219 \end_layout
28220
28221 \begin_layout Standard
28222 It is also possible to print lines from a file as listing.
28223  To do this, use the menu 
28224 \family sans
28225 Insert\SpecialChar \menuseparator
28226 File\SpecialChar \menuseparator
28227 Child Document
28228 \family default
28229  and choose the type 
28230 \family sans
28231 Listings
28232 \family default
28233 .
28234 \begin_inset Foot
28235 status collapsed
28236
28237 \begin_layout Standard
28238 The other child document types are described in section\InsetSpace ~
28239
28240 \begin_inset LatexCommand ref
28241 reference "sec:Child-Documents"
28242
28243 \end_inset
28244
28245 .
28246 \end_layout
28247
28248 \end_inset
28249
28250  In the child document dialog you can specify the listing parameters in
28251  a text box.
28252  To show a list of all available parameters, type in a question mark 
28253 \begin_inset Quotes eld
28254 \end_inset
28255
28256 ?
28257 \begin_inset Quotes erd
28258 \end_inset
28259
28260  in the text box.
28261 \end_layout
28262
28263 \begin_layout Standard
28264 To reference child document listings, write a label text into the corresponding
28265  field of the child document dialog.
28266  The label can then be referenced using the menu 
28267 \family sans
28268 Insert\SpecialChar \menuseparator
28269 Cross-Reference
28270 \family default
28271 .
28272 \end_layout
28273
28274 \begin_layout Standard
28275 Listing\InsetSpace ~
28276
28277 \begin_inset LatexCommand ref
28278 reference "lst:file-listing"
28279
28280 \end_inset
28281
28282  is an example for a listing of a file; there the lines 10\InsetSpace \thinspace{}
28283 -\InsetSpace \thinspace{}
28284 15 of this LyX
28285  file are listed.
28286 \end_layout
28287
28288 \begin_layout Standard
28289 \begin_inset Include \lstinputlisting{EmbeddedObjects.lyx}[breaklines=true,caption={Lines 10 - 15 of this LyX file},firstline=10,label={lst:file-listing},language={[LaTeX]TeX},lastline=15]
28290 preview false
28291
28292 \end_inset
28293
28294
28295 \end_layout
28296
28297 \begin_layout Standard
28298 \begin_inset VSpace bigskip
28299 \end_inset
28300
28301
28302 \end_layout
28303
28304 \begin_layout Standard
28305 Global listings settings can be set in the 
28306 \family sans
28307 Document\SpecialChar \menuseparator
28308 Settings\SpecialChar \menuseparator
28309 Text Layout
28310 \family default
28311  dialog.
28312  To get there a list of available options, type in a question mark 
28313 \begin_inset Quotes eld
28314 \end_inset
28315
28316 ?
28317 \begin_inset Quotes erd
28318 \end_inset
28319
28320  in the 
28321 \family sans
28322 Listings\InsetSpace ~
28323 settings
28324 \family default
28325  field.
28326 \end_layout
28327
28328 \begin_layout Standard
28329 For more information about the 
28330 \series bold
28331 listings
28332 \series default
28333  package, we refer to its documentation 
28334 \begin_inset LatexCommand cite
28335 key "listings"
28336
28337 \end_inset
28338
28339 .
28340 \end_layout
28341
28342 \begin_layout Standard
28343
28344 \newpage
28345
28346 \end_layout
28347
28348 \begin_layout Chapter
28349 \start_of_appendix
28350 Units available in 
28351 \begin_inset ERT
28352 status collapsed
28353
28354 \begin_layout Standard
28355
28356
28357 \backslash
28358 texorpdfstring{
28359 \end_layout
28360
28361 \end_inset
28362
28363 LyX
28364 \begin_inset ERT
28365 status collapsed
28366
28367 \begin_layout Standard
28368
28369 }{LyX}
28370 \end_layout
28371
28372 \end_inset
28373
28374
28375 \begin_inset LatexCommand index
28376 name "Units"
28377
28378 \end_inset
28379
28380
28381 \begin_inset LatexCommand label
28382 name "cha:Units-available-in"
28383
28384 \end_inset
28385
28386
28387 \begin_inset Note Note
28388 status collapsed
28389
28390 \begin_layout Standard
28391 The command 
28392 \backslash
28393 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
28394  are displayed wrongly in PDF-bookmarks.
28395  For more information about this, have a look at 
28396 \begin_inset LatexCommand cite
28397 key "hyperref"
28398
28399 \end_inset
28400
28401 .
28402 \end_layout
28403
28404 \end_inset
28405
28406
28407 \end_layout
28408
28409 \begin_layout Standard
28410 To understand the units described in this documentation, Table\InsetSpace ~
28411
28412 \begin_inset LatexCommand ref
28413 reference "tab:Units"
28414
28415 \end_inset
28416
28417  explains all units available in LyX.
28418 \end_layout
28419
28420 \begin_layout Standard
28421 \begin_inset Float table
28422 placement h
28423 wide false
28424 sideways false
28425 status open
28426
28427 \begin_layout Standard
28428 \begin_inset Caption
28429
28430 \begin_layout Standard
28431 \begin_inset LatexCommand label
28432 name "tab:Units"
28433
28434 \end_inset
28435
28436 Units
28437 \end_layout
28438
28439 \end_inset
28440
28441
28442 \end_layout
28443
28444 \begin_layout Standard
28445 \begin_inset VSpace medskip
28446 \end_inset
28447
28448
28449 \end_layout
28450
28451 \begin_layout Standard
28452 \align center
28453 \begin_inset Tabular
28454 <lyxtabular version="3" rows="20" columns="2">
28455 <features>
28456 <column alignment="center" valignment="top" leftline="true" width="0">
28457 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
28458 <row topline="true" bottomline="true">
28459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28460 \begin_inset Text
28461
28462 \begin_layout Standard
28463 unit
28464 \end_layout
28465
28466 \end_inset
28467 </cell>
28468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28469 \begin_inset Text
28470
28471 \begin_layout Standard
28472 name/description
28473 \end_layout
28474
28475 \end_inset
28476 </cell>
28477 </row>
28478 <row topline="true">
28479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28480 \begin_inset Text
28481
28482 \begin_layout Standard
28483 mm
28484 \end_layout
28485
28486 \end_inset
28487 </cell>
28488 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28489 \begin_inset Text
28490
28491 \begin_layout Standard
28492 millimeter
28493 \end_layout
28494
28495 \end_inset
28496 </cell>
28497 </row>
28498 <row topline="true">
28499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28500 \begin_inset Text
28501
28502 \begin_layout Standard
28503 cm
28504 \end_layout
28505
28506 \end_inset
28507 </cell>
28508 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28509 \begin_inset Text
28510
28511 \begin_layout Standard
28512 centimeter
28513 \end_layout
28514
28515 \end_inset
28516 </cell>
28517 </row>
28518 <row topline="true">
28519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28520 \begin_inset Text
28521
28522 \begin_layout Standard
28523 in
28524 \end_layout
28525
28526 \end_inset
28527 </cell>
28528 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28529 \begin_inset Text
28530
28531 \begin_layout Standard
28532 inch
28533 \end_layout
28534
28535 \end_inset
28536 </cell>
28537 </row>
28538 <row topline="true">
28539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28540 \begin_inset Text
28541
28542 \begin_layout Standard
28543 pt
28544 \end_layout
28545
28546 \end_inset
28547 </cell>
28548 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28549 \begin_inset Text
28550
28551 \begin_layout Standard
28552 point (72.27\InsetSpace \thinspace{}
28553 pt = 1\InsetSpace \thinspace{}
28554 in)
28555 \end_layout
28556
28557 \end_inset
28558 </cell>
28559 </row>
28560 <row topline="true">
28561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28562 \begin_inset Text
28563
28564 \begin_layout Standard
28565 pc
28566 \end_layout
28567
28568 \end_inset
28569 </cell>
28570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28571 \begin_inset Text
28572
28573 \begin_layout Standard
28574 pica (1\InsetSpace \thinspace{}
28575 pc = 12\InsetSpace \thinspace{}
28576 pt)
28577 \end_layout
28578
28579 \end_inset
28580 </cell>
28581 </row>
28582 <row topline="true">
28583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28584 \begin_inset Text
28585
28586 \begin_layout Standard
28587 sp
28588 \end_layout
28589
28590 \end_inset
28591 </cell>
28592 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28593 \begin_inset Text
28594
28595 \begin_layout Standard
28596 scaled point (65536\InsetSpace \thinspace{}
28597 sp = 1\InsetSpace \thinspace{}
28598 pt)
28599 \end_layout
28600
28601 \end_inset
28602 </cell>
28603 </row>
28604 <row topline="true">
28605 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28606 \begin_inset Text
28607
28608 \begin_layout Standard
28609 bp
28610 \end_layout
28611
28612 \end_inset
28613 </cell>
28614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28615 \begin_inset Text
28616
28617 \begin_layout Standard
28618 big point (72\InsetSpace \thinspace{}
28619 bp = 1\InsetSpace \thinspace{}
28620 in)
28621 \end_layout
28622
28623 \end_inset
28624 </cell>
28625 </row>
28626 <row topline="true">
28627 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28628 \begin_inset Text
28629
28630 \begin_layout Standard
28631 dd
28632 \end_layout
28633
28634 \end_inset
28635 </cell>
28636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28637 \begin_inset Text
28638
28639 \begin_layout Standard
28640 didot (72\InsetSpace \thinspace{}
28641 dd 
28642 \begin_inset Formula $\approx$
28643 \end_inset
28644
28645  37.6\InsetSpace \thinspace{}
28646 mm)
28647 \end_layout
28648
28649 \end_inset
28650 </cell>
28651 </row>
28652 <row topline="true">
28653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28654 \begin_inset Text
28655
28656 \begin_layout Standard
28657 cc
28658 \end_layout
28659
28660 \end_inset
28661 </cell>
28662 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28663 \begin_inset Text
28664
28665 \begin_layout Standard
28666 cicero (1\InsetSpace \thinspace{}
28667 cc = 12\InsetSpace \thinspace{}
28668 dd)
28669 \end_layout
28670
28671 \end_inset
28672 </cell>
28673 </row>
28674 <row topline="true">
28675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28676 \begin_inset Text
28677
28678 \begin_layout Standard
28679 Scale%
28680 \end_layout
28681
28682 \end_inset
28683 </cell>
28684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28685 \begin_inset Text
28686
28687 \begin_layout Standard
28688 % of original image width
28689 \end_layout
28690
28691 \end_inset
28692 </cell>
28693 </row>
28694 <row topline="true">
28695 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28696 \begin_inset Text
28697
28698 \begin_layout Standard
28699 text%
28700 \end_layout
28701
28702 \end_inset
28703 </cell>
28704 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28705 \begin_inset Text
28706
28707 \begin_layout Standard
28708 % of text width
28709 \end_layout
28710
28711 \end_inset
28712 </cell>
28713 </row>
28714 <row topline="true">
28715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28716 \begin_inset Text
28717
28718 \begin_layout Standard
28719 col%
28720 \end_layout
28721
28722 \end_inset
28723 </cell>
28724 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28725 \begin_inset Text
28726
28727 \begin_layout Standard
28728 % of column width
28729 \end_layout
28730
28731 \end_inset
28732 </cell>
28733 </row>
28734 <row topline="true">
28735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28736 \begin_inset Text
28737
28738 \begin_layout Standard
28739 page%
28740 \end_layout
28741
28742 \end_inset
28743 </cell>
28744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28745 \begin_inset Text
28746
28747 \begin_layout Standard
28748 % of paper width
28749 \end_layout
28750
28751 \end_inset
28752 </cell>
28753 </row>
28754 <row topline="true">
28755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28756 \begin_inset Text
28757
28758 \begin_layout Standard
28759 line%
28760 \end_layout
28761
28762 \end_inset
28763 </cell>
28764 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28765 \begin_inset Text
28766
28767 \begin_layout Standard
28768 % of line width
28769 \end_layout
28770
28771 \end_inset
28772 </cell>
28773 </row>
28774 <row topline="true">
28775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28776 \begin_inset Text
28777
28778 \begin_layout Standard
28779 theight%
28780 \end_layout
28781
28782 \end_inset
28783 </cell>
28784 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28785 \begin_inset Text
28786
28787 \begin_layout Standard
28788 % of text height
28789 \end_layout
28790
28791 \end_inset
28792 </cell>
28793 </row>
28794 <row topline="true">
28795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28796 \begin_inset Text
28797
28798 \begin_layout Standard
28799 pheight%
28800 \end_layout
28801
28802 \end_inset
28803 </cell>
28804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28805 \begin_inset Text
28806
28807 \begin_layout Standard
28808 % of paper height
28809 \end_layout
28810
28811 \end_inset
28812 </cell>
28813 </row>
28814 <row topline="true">
28815 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28816 \begin_inset Text
28817
28818 \begin_layout Standard
28819 ex
28820 \end_layout
28821
28822 \end_inset
28823 </cell>
28824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28825 \begin_inset Text
28826
28827 \begin_layout Standard
28828 height of letter 
28829 \emph on
28830 x
28831 \emph default
28832  in current font
28833 \end_layout
28834
28835 \end_inset
28836 </cell>
28837 </row>
28838 <row topline="true">
28839 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28840 \begin_inset Text
28841
28842 \begin_layout Standard
28843 em
28844 \end_layout
28845
28846 \end_inset
28847 </cell>
28848 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28849 \begin_inset Text
28850
28851 \begin_layout Standard
28852 width of letter 
28853 \emph on
28854 M
28855 \emph default
28856  in current font
28857 \end_layout
28858
28859 \end_inset
28860 </cell>
28861 </row>
28862 <row topline="true" bottomline="true">
28863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28864 \begin_inset Text
28865
28866 \begin_layout Standard
28867 mu
28868 \end_layout
28869
28870 \end_inset
28871 </cell>
28872 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28873 \begin_inset Text
28874
28875 \begin_layout Standard
28876 math unit (1\InsetSpace \thinspace{}
28877 mu = 1/18\InsetSpace \thinspace{}
28878 em)
28879 \end_layout
28880
28881 \end_inset
28882 </cell>
28883 </row>
28884 </lyxtabular>
28885
28886 \end_inset
28887
28888
28889 \end_layout
28890
28891 \end_inset
28892
28893
28894 \end_layout
28895
28896 \begin_layout Chapter
28897 Output File Formats with Graphics
28898 \begin_inset LatexCommand label
28899 name "cha:Output-File-Formats"
28900
28901 \end_inset
28902
28903
28904 \end_layout
28905
28906 \begin_layout Section
28907 DVI
28908 \begin_inset LatexCommand index
28909 name "File Formats ! DVI"
28910
28911 \end_inset
28912
28913
28914 \begin_inset LatexCommand index
28915 name "DVI|see{File Formats}"
28916
28917 \end_inset
28918
28919
28920 \end_layout
28921
28922 \begin_layout Standard
28923 This file type has the extension 
28924 \begin_inset Quotes eld
28925 \end_inset
28926
28927
28928 \family typewriter
28929 .dvi
28930 \family default
28931
28932 \begin_inset Quotes erd
28933 \end_inset
28934
28935 .
28936  It is called 
28937 \begin_inset Quotes eld
28938 \end_inset
28939
28940 device-independent
28941 \begin_inset Quotes erd
28942 \end_inset
28943
28944  (DVI), because it is completely portable; you can move them from one machine
28945  to another without needing to do any sort of conversion.
28946  At the time when this file-format was developed, this was no matter of
28947  course.
28948  DVIs are used for quick previews and as pre-stage for other output formats,
28949  like PostScript.
28950 \end_layout
28951
28952 \begin_layout Standard
28953 \begin_inset Note Greyedout
28954 status open
28955
28956 \begin_layout Standard
28957
28958 \series bold
28959 Note:
28960 \series default
28961  DVI-files doesn't contain images, they will only be a linked.
28962 \end_layout
28963
28964 \end_inset
28965
28966  So don't forget this, if you move your 
28967 \family typewriter
28968 .dvi
28969 \family default
28970  file to another computer.
28971  This property can also slow down your computer when you view the DVI.
28972  Because the DVI-viewer has to convert the image in the background to make
28973  it visible when you scroll in the DVI.
28974  So we recommend to use PDF for files with many images.
28975 \end_layout
28976
28977 \begin_layout Standard
28978 You can export your document to DVI by using the menu 
28979 \family sans
28980 File\SpecialChar \menuseparator
28981 Export\SpecialChar \menuseparator
28982 DVI
28983 \family default
28984 .
28985  You can view your document as DVI via the 
28986 \family sans
28987 View
28988 \family default
28989  menu or by using the toolbar button 
28990 \begin_inset Graphics
28991         filename ../images/buffer-view_dvi.xpm
28992         scale 85
28993
28994 \end_inset
28995
28996 .
28997 \end_layout
28998
28999 \begin_layout Section
29000 PostScript
29001 \begin_inset LatexCommand label
29002 name "sec:PostScript"
29003
29004 \end_inset
29005
29006
29007 \begin_inset LatexCommand index
29008 name "File Formats ! PostScript"
29009
29010 \end_inset
29011
29012
29013 \begin_inset LatexCommand index
29014 name "PostScript|see{File Formats}"
29015
29016 \end_inset
29017
29018
29019 \end_layout
29020
29021 \begin_layout Standard
29022 This file type has the extension 
29023 \begin_inset Quotes eld
29024 \end_inset
29025
29026
29027 \family typewriter
29028 .ps
29029 \family default
29030
29031 \begin_inset Quotes erd
29032 \end_inset
29033
29034 .
29035  PostScript was developed by the company 
29036 \family typewriter
29037 Adobe
29038 \family default
29039  as printer language.
29040  The file contains therefore commands that the printer uses to print the
29041  file.
29042  PostScript can be seen as 
29043 \begin_inset Quotes eld
29044 \end_inset
29045
29046 programming language
29047 \begin_inset Quotes erd
29048 \end_inset
29049
29050 ; you can calculate with it and draw diagrams and images
29051 \begin_inset Foot
29052 status collapsed
29053
29054 \begin_layout Standard
29055 If you are interested to learn more about this, have a look at the LaTeX-package
29056  
29057 \series bold
29058 PSTricks
29059 \series default
29060  
29061 \begin_inset LatexCommand cite
29062 key "pstricks"
29063
29064 \end_inset
29065
29066 .
29067 \end_layout
29068
29069 \end_inset
29070
29071 .
29072  Due to this ability, the files are often bigger than PDFs.
29073 \end_layout
29074
29075 \begin_layout Standard
29076 PostScript can only contain images in the format 
29077 \begin_inset Quotes eld
29078 \end_inset
29079
29080 Encapsulated PostScript
29081 \begin_inset Quotes erd
29082 \end_inset
29083
29084  (EPS, file extension 
29085 \begin_inset Quotes eld
29086 \end_inset
29087
29088
29089 \family typewriter
29090 .eps
29091 \family default
29092
29093 \begin_inset Quotes erd
29094 \end_inset
29095
29096 ).
29097  As LyX allows you to use any known image format in your document, it has
29098  to convert images in the background to EPS.
29099  If you have e.g 50 images in your document, LyX has to do 50 conversions
29100  whenever you view or export your document.
29101  This will slow down your work flow with LyX drastically.
29102  So if you plan to use PostScript, you can insert your images directly as
29103  EPS to avoid this problem.
29104 \end_layout
29105
29106 \begin_layout Standard
29107 You can export your document to PostScript using the menu 
29108 \family sans
29109 File\SpecialChar \menuseparator
29110 Export\SpecialChar \menuseparator
29111 Postscript
29112 \family default
29113 .
29114  You can view your document as PostScript via the 
29115 \family sans
29116 View
29117 \family default
29118  menu or by using the toolbar button 
29119 \begin_inset Graphics
29120         filename ../images/buffer-view_ps.xpm
29121         scale 85
29122
29123 \end_inset
29124
29125 .
29126 \end_layout
29127
29128 \begin_layout Section
29129 PDF
29130 \begin_inset LatexCommand label
29131 name "sec:PDF"
29132
29133 \end_inset
29134
29135
29136 \begin_inset LatexCommand index
29137 name "File Formats ! PDF"
29138
29139 \end_inset
29140
29141
29142 \begin_inset LatexCommand index
29143 name "PDF"
29144
29145 \end_inset
29146
29147
29148 \end_layout
29149
29150 \begin_layout Standard
29151 This file type has the extension 
29152 \begin_inset Quotes eld
29153 \end_inset
29154
29155
29156 \family typewriter
29157 .pdf
29158 \family default
29159
29160 \begin_inset Quotes erd
29161 \end_inset
29162
29163 .
29164  The 
29165 \begin_inset Quotes eld
29166 \end_inset
29167
29168 Portable Document Format
29169 \begin_inset Quotes erd
29170 \end_inset
29171
29172  (PDF) is developed by 
29173 \family typewriter
29174 Adobe
29175 \family default
29176  as derivative from PostScript.
29177  It is more compressed and it uses much less commands than PostScript.
29178  As the name 
29179 \begin_inset Quotes eld
29180 \end_inset
29181
29182 portable
29183 \begin_inset Quotes erd
29184 \end_inset
29185
29186  implies, it can be processed at any computer system and the printed output
29187  looks exactly the same.
29188 \end_layout
29189
29190 \begin_layout Standard
29191 PDF can contain images in its own PDF format, in the format 
29192 \begin_inset Quotes eld
29193 \end_inset
29194
29195 Joint Photographic Experts Group
29196 \begin_inset Quotes erd
29197 \end_inset
29198
29199  (JPG, file extension 
29200 \begin_inset Quotes eld
29201 \end_inset
29202
29203
29204 \family typewriter
29205 .jpg
29206 \family default
29207
29208 \begin_inset Quotes erd
29209 \end_inset
29210
29211  or 
29212 \begin_inset Quotes eld
29213 \end_inset
29214
29215
29216 \family typewriter
29217 .jpeg
29218 \family default
29219
29220 \begin_inset Quotes erd
29221 \end_inset
29222
29223 ), and in the format 
29224 \begin_inset Quotes eld
29225 \end_inset
29226
29227 Portable Network Graphics
29228 \begin_inset Quotes erd
29229 \end_inset
29230
29231  (PNG, file extension 
29232 \begin_inset Quotes eld
29233 \end_inset
29234
29235
29236 \family typewriter
29237 .png
29238 \family default
29239
29240 \begin_inset Quotes erd
29241 \end_inset
29242
29243 ).
29244  You can although use any other image format, because LyX converts them
29245  in the background to one of these formats.
29246  But as described in the section about PostScript, the image conversion
29247  will slow down your work flow.
29248  So it is recommended to use images in one of the three mentioned formats.
29249 \end_layout
29250
29251 \begin_layout Standard
29252 You can export your document to PDF via the menu 
29253 \family sans
29254 File\SpecialChar \menuseparator
29255 Export
29256 \family default
29257  in three different ways:
29258 \end_layout
29259
29260 \begin_layout Description
29261 PDF This uses the program 
29262 \family typewriter
29263 ps2pdf
29264 \family default
29265  that creates a PDF from a PostScript-version of your file.
29266  The PostScript-version is produced by the program 
29267 \family typewriter
29268 dvips
29269 \family default
29270  which uses a DVI-version as intermediate step.
29271  So this export variant consist of three conversions.
29272 \end_layout
29273
29274 \begin_layout Description
29275 PDF\InsetSpace ~
29276 (dvipdfm) This uses the program 
29277 \family typewriter
29278 dvipdfm
29279 \family default
29280  that converts your file in the background to DVI and in a second step to
29281  PDF.
29282 \end_layout
29283
29284 \begin_layout Description
29285 PDF\InsetSpace ~
29286 (pdflatex) This uses the program 
29287 \family typewriter
29288 pdftex
29289 \family default
29290  that converts your file directly to PDF.
29291 \end_layout
29292
29293 \begin_layout Standard
29294 It is recommended to use 
29295 \family sans
29296 PDF\InsetSpace ~
29297 (pdflatex)
29298 \family default
29299  because 
29300 \family typewriter
29301 pdftex
29302 \family default
29303  supports all features of actual PDF-versions, is quick and works stable
29304  without problems.
29305  The program 
29306 \family typewriter
29307 dvipdfm
29308 \family default
29309  is not under development and therefore a bit outdated.
29310 \end_layout
29311
29312 \begin_layout Standard
29313 You can view your document as PDF via the 
29314 \family sans
29315 View
29316 \family default
29317  menu or by using the toolbar button 
29318 \begin_inset Graphics
29319         filename ../images/buffer-view_pdf2.xpm
29320         scale 85
29321
29322 \end_inset
29323
29324  
29325 \family sans
29326 (
29327 \family default
29328 that uses 
29329 \family sans
29330 PDF\InsetSpace ~
29331 (pdflatex)
29332 \family default
29333 ).
29334 \end_layout
29335
29336 \begin_layout Chapter
29337 Explanation of Equation\InsetSpace ~
29338
29339 \begin_inset LatexCommand eqref
29340 reference "eq:Wgn"
29341
29342 \end_inset
29343
29344
29345 \begin_inset LatexCommand label
29346 name "cha:Explanation-of-Equation"
29347
29348 \end_inset
29349
29350
29351 \end_layout
29352
29353 \begin_layout Standard
29354 The total width of 
29355 \emph on
29356 n
29357 \emph default
29358  table cells 
29359 \begin_inset Formula $W_{\mathrm{tot\, n}}$
29360 \end_inset
29361
29362  can be calculated to
29363 \end_layout
29364
29365 \begin_layout Standard
29366 \begin_inset Formula \begin{equation}
29367 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
29368
29369 \end_inset
29370
29371
29372 \end_layout
29373
29374 \begin_layout Standard
29375 Where 
29376 \begin_inset Formula $W_{g\, n}$
29377 \end_inset
29378
29379  is the given width of all cells.
29380  
29381 \series bold
29382
29383 \backslash
29384 tabcolsep
29385 \series default
29386  is the LaTeX-length between the cell text and the cell border, its default
29387  value is 6\InsetSpace \thinspace{}
29388 pt.
29389  
29390 \series bold
29391
29392 \backslash
29393 arrayrulewidth
29394 \series default
29395  is the thickness of the cell border line, the default is 0.4\InsetSpace \thinspace{}
29396 pt.
29397 \end_layout
29398
29399 \begin_layout Standard
29400 Following equation\InsetSpace ~
29401
29402 \begin_inset LatexCommand eqref
29403 reference "eq:Wtot_n"
29404
29405 \end_inset
29406
29407 , the total width of a multicolumn 
29408 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
29409 \end_inset
29410
29411  is
29412 \end_layout
29413
29414 \begin_layout Standard
29415 \begin_inset Formula \begin{equation}
29416 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
29417
29418 \end_inset
29419
29420
29421 \end_layout
29422
29423 \begin_layout Standard
29424 By setting equation\InsetSpace ~
29425
29426 \begin_inset LatexCommand eqref
29427 reference "eq:Wtot_n"
29428
29429 \end_inset
29430
29431  and 
29432 \begin_inset LatexCommand eqref
29433 reference "eq:Wtot_mult"
29434
29435 \end_inset
29436
29437  equal we can calculate the needed given width 
29438 \begin_inset Formula $W_{g\, n}$
29439 \end_inset
29440
29441  when 
29442 \emph on
29443 n
29444 \emph default
29445  columns are spanned, so that each column has a total width of 
29446 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
29447 \end_inset
29448
29449 :
29450 \end_layout
29451
29452 \begin_layout Standard
29453 \begin_inset Formula \begin{equation}
29454 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
29455
29456 \end_inset
29457
29458
29459 \end_layout
29460
29461 \begin_layout Bibliography
29462 \begin_inset LatexCommand bibitem
29463 key "latexcompanion"
29464
29465 \end_inset
29466
29467 Frank Mittelbach and Michel Goossens: 
29468 \emph on
29469 The LaTeX Companion Second Edition.
29470
29471 \emph default
29472  Addison-Wesley, 2004
29473 \end_layout
29474
29475 \begin_layout Bibliography
29476 \begin_inset LatexCommand bibitem
29477 key "latexguide"
29478
29479 \end_inset
29480
29481 Helmut Kopka and Patrick W.
29482  Daly: 
29483 \emph on
29484 A Guide to LaTeX Fourth Edition.
29485
29486 \emph default
29487  Addison-Wesley, 2003
29488 \end_layout
29489
29490 \begin_layout Bibliography
29491 \begin_inset LatexCommand bibitem
29492 key "latexbook"
29493
29494 \end_inset
29495
29496 Leslie Lamport: 
29497 \emph on
29498 LaTeX: A Document Preparation System.
29499
29500 \emph default
29501  Addison-Wesley, second edition, 1994
29502 \end_layout
29503
29504 \begin_layout Bibliography
29505 \begin_inset LatexCommand bibitem
29506 key "booktabs"
29507
29508 \end_inset
29509
29510
29511 \begin_inset ERT
29512 status collapsed
29513
29514 \begin_layout Standard
29515
29516
29517 \backslash
29518 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
29519 {
29520 \end_layout
29521
29522 \end_inset
29523
29524 Documentation
29525 \begin_inset ERT
29526 status collapsed
29527
29528 \begin_layout Standard
29529
29530 }
29531 \end_layout
29532
29533 \end_inset
29534
29535  of the LaTeX-package 
29536 \series bold
29537 booktabs
29538 \series default
29539
29540 \begin_inset LatexCommand index
29541 name "LaTeX-packages ! booktabs"
29542
29543 \end_inset
29544
29545
29546 \end_layout
29547
29548 \begin_layout Bibliography
29549 \begin_inset LatexCommand bibitem
29550 key "caption"
29551
29552 \end_inset
29553
29554
29555 \begin_inset ERT
29556 status collapsed
29557
29558 \begin_layout Standard
29559
29560
29561 \backslash
29562 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
29563 \end_layout
29564
29565 \end_inset
29566
29567 Documentation
29568 \begin_inset ERT
29569 status collapsed
29570
29571 \begin_layout Standard
29572
29573 }
29574 \end_layout
29575
29576 \end_inset
29577
29578  of the LaTeX-package 
29579 \series bold
29580 caption
29581 \series default
29582
29583 \begin_inset LatexCommand index
29584 name "LaTeX-packages ! caption"
29585
29586 \end_inset
29587
29588
29589 \end_layout
29590
29591 \begin_layout Bibliography
29592 \begin_inset LatexCommand bibitem
29593 key "caption-de"
29594
29595 \end_inset
29596
29597 German 
29598 \begin_inset ERT
29599 status collapsed
29600
29601 \begin_layout Standard
29602
29603
29604 \backslash
29605 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
29606 {
29607 \end_layout
29608
29609 \end_inset
29610
29611 documentation
29612 \begin_inset ERT
29613 status collapsed
29614
29615 \begin_layout Standard
29616
29617 }
29618 \end_layout
29619
29620 \end_inset
29621
29622  of the LaTeX-package 
29623 \series bold
29624 caption
29625 \end_layout
29626
29627 \begin_layout Bibliography
29628 \begin_inset LatexCommand bibitem
29629 key "endfloat"
29630
29631 \end_inset
29632
29633
29634 \begin_inset ERT
29635 status collapsed
29636
29637 \begin_layout Standard
29638
29639
29640 \backslash
29641 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
29642 {
29643 \end_layout
29644
29645 \end_inset
29646
29647 Documentation
29648 \begin_inset ERT
29649 status collapsed
29650
29651 \begin_layout Standard
29652
29653 }
29654 \end_layout
29655
29656 \end_inset
29657
29658  of the LaTeX-package 
29659 \series bold
29660 endf\SpecialChar \textcompwordmark{}
29661 loat
29662 \series default
29663
29664 \begin_inset LatexCommand index
29665 name "LaTeX-packages ! endfloat"
29666
29667 \end_inset
29668
29669
29670 \end_layout
29671
29672 \begin_layout Bibliography
29673 \begin_inset LatexCommand bibitem
29674 key "floatflt"
29675
29676 \end_inset
29677
29678
29679 \begin_inset ERT
29680 status collapsed
29681
29682 \begin_layout Standard
29683
29684
29685 \backslash
29686 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
29687 {
29688 \end_layout
29689
29690 \end_inset
29691
29692 Documentation
29693 \begin_inset ERT
29694 status collapsed
29695
29696 \begin_layout Standard
29697
29698 }
29699 \end_layout
29700
29701 \end_inset
29702
29703  of the LaTeX-package 
29704 \series bold
29705 floatf\SpecialChar \textcompwordmark{}
29706 lt
29707 \series default
29708
29709 \begin_inset LatexCommand index
29710 name "LaTeX-packages ! floatflt"
29711
29712 \end_inset
29713
29714
29715 \end_layout
29716
29717 \begin_layout Bibliography
29718 \begin_inset LatexCommand bibitem
29719 key "footmisc"
29720
29721 \end_inset
29722
29723
29724 \begin_inset ERT
29725 status collapsed
29726
29727 \begin_layout Standard
29728
29729
29730 \backslash
29731 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
29732 {
29733 \end_layout
29734
29735 \end_inset
29736
29737 Documentation
29738 \begin_inset ERT
29739 status collapsed
29740
29741 \begin_layout Standard
29742
29743 }
29744 \end_layout
29745
29746 \end_inset
29747
29748  of the LaTeX-package 
29749 \series bold
29750 footmisc
29751 \series default
29752
29753 \begin_inset LatexCommand index
29754 name "LaTeX-packages ! footmisc"
29755
29756 \end_inset
29757
29758
29759 \end_layout
29760
29761 \begin_layout Bibliography
29762 \begin_inset LatexCommand bibitem
29763 key "hypcap"
29764
29765 \end_inset
29766
29767
29768 \begin_inset ERT
29769 status collapsed
29770
29771 \begin_layout Standard
29772
29773
29774 \backslash
29775 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
29776 \end_layout
29777
29778 \end_inset
29779
29780 Documentation
29781 \begin_inset ERT
29782 status collapsed
29783
29784 \begin_layout Standard
29785
29786 }
29787 \end_layout
29788
29789 \end_inset
29790
29791  of the LaTeX-package 
29792 \series bold
29793 hypcap
29794 \series default
29795
29796 \begin_inset LatexCommand index
29797 name "LaTeX-packages ! hyperref"
29798
29799 \end_inset
29800
29801
29802 \end_layout
29803
29804 \begin_layout Bibliography
29805 \begin_inset LatexCommand bibitem
29806 key "hyperref"
29807
29808 \end_inset
29809
29810
29811 \begin_inset ERT
29812 status collapsed
29813
29814 \begin_layout Standard
29815
29816
29817 \backslash
29818 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
29819 {
29820 \end_layout
29821
29822 \end_inset
29823
29824 Documentation
29825 \begin_inset ERT
29826 status collapsed
29827
29828 \begin_layout Standard
29829
29830 }
29831 \end_layout
29832
29833 \end_inset
29834
29835  of the LaTeX-package 
29836 \series bold
29837 hyperref
29838 \series default
29839
29840 \begin_inset LatexCommand index
29841 name "LaTeX-packages ! hyperref"
29842
29843 \end_inset
29844
29845
29846 \end_layout
29847
29848 \begin_layout Bibliography
29849 \begin_inset LatexCommand bibitem
29850 key "koma-script"
29851
29852 \end_inset
29853
29854
29855 \begin_inset ERT
29856 status collapsed
29857
29858 \begin_layout Standard
29859
29860
29861 \backslash
29862 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
29863 df}{
29864 \end_layout
29865
29866 \end_inset
29867
29868 Documentation
29869 \begin_inset ERT
29870 status collapsed
29871
29872 \begin_layout Standard
29873
29874 }
29875 \end_layout
29876
29877 \end_inset
29878
29879  of the LaTeX-package 
29880 \series bold
29881 koma-script
29882 \series default
29883
29884 \begin_inset LatexCommand index
29885 name "LaTeX-packages ! koma-script"
29886
29887 \end_inset
29888
29889
29890 \end_layout
29891
29892 \begin_layout Bibliography
29893 \begin_inset LatexCommand bibitem
29894 key "koma-script-de"
29895
29896 \end_inset
29897
29898 German 
29899 \begin_inset ERT
29900 status collapsed
29901
29902 \begin_layout Standard
29903
29904
29905 \backslash
29906 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
29907 df}{
29908 \end_layout
29909
29910 \end_inset
29911
29912 documentation
29913 \begin_inset ERT
29914 status collapsed
29915
29916 \begin_layout Standard
29917
29918 }
29919 \end_layout
29920
29921 \end_inset
29922
29923  of the LaTeX-package 
29924 \series bold
29925 koma-script
29926 \series default
29927
29928 \begin_inset LatexCommand index
29929 name "LaTeX-packages ! koma-script"
29930
29931 \end_inset
29932
29933
29934 \end_layout
29935
29936 \begin_layout Bibliography
29937 \begin_inset LatexCommand bibitem
29938 key "listings"
29939
29940 \end_inset
29941
29942
29943 \begin_inset ERT
29944 status collapsed
29945
29946 \begin_layout Standard
29947
29948
29949 \backslash
29950 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/listings/listings.pdf}
29951 {
29952 \end_layout
29953
29954 \end_inset
29955
29956 Documentation
29957 \begin_inset ERT
29958 status collapsed
29959
29960 \begin_layout Standard
29961
29962 }
29963 \end_layout
29964
29965 \end_inset
29966
29967  of the LaTeX-package 
29968 \series bold
29969 listings
29970 \series default
29971
29972 \begin_inset LatexCommand index
29973 name "LaTeX-packages ! listings"
29974
29975 \end_inset
29976
29977
29978 \end_layout
29979
29980 \begin_layout Bibliography
29981 \begin_inset LatexCommand bibitem
29982 key "marginnote"
29983
29984 \end_inset
29985
29986
29987 \begin_inset ERT
29988 status collapsed
29989
29990 \begin_layout Standard
29991
29992
29993 \backslash
29994 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
29995 pdf}{
29996 \end_layout
29997
29998 \end_inset
29999
30000 Documentation
30001 \begin_inset ERT
30002 status collapsed
30003
30004 \begin_layout Standard
30005
30006 }
30007 \end_layout
30008
30009 \end_inset
30010
30011  of the LaTeX-package 
30012 \series bold
30013 marginnote
30014 \series default
30015
30016 \begin_inset LatexCommand index
30017 name "LaTeX-packages ! marginnote"
30018
30019 \end_inset
30020
30021
30022 \end_layout
30023
30024 \begin_layout Bibliography
30025 \begin_inset LatexCommand bibitem
30026 key "pstricks"
30027
30028 \end_inset
30029
30030
30031 \begin_inset ERT
30032 status collapsed
30033
30034 \begin_layout Standard
30035
30036
30037 \backslash
30038 href{http://tug.org/PSTricks/main.cgi/}{
30039 \end_layout
30040
30041 \end_inset
30042
30043 Web page
30044 \begin_inset ERT
30045 status collapsed
30046
30047 \begin_layout Standard
30048
30049 }
30050 \end_layout
30051
30052 \end_inset
30053
30054  of the LaTeX-package 
30055 \series bold
30056 PSTricks
30057 \series default
30058
30059 \begin_inset LatexCommand index
30060 name "LaTeX-packages ! PSTricks"
30061
30062 \end_inset
30063
30064
30065 \end_layout
30066
30067 \begin_layout Bibliography
30068 \begin_inset LatexCommand bibitem
30069 key "sidecap"
30070
30071 \end_inset
30072
30073
30074 \begin_inset ERT
30075 status collapsed
30076
30077 \begin_layout Standard
30078
30079
30080 \backslash
30081 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
30082 \end_layout
30083
30084 \end_inset
30085
30086 Documentation
30087 \begin_inset ERT
30088 status collapsed
30089
30090 \begin_layout Standard
30091
30092 }
30093 \end_layout
30094
30095 \end_inset
30096
30097  of the LaTeX-package 
30098 \series bold
30099 sidecap
30100 \series default
30101
30102 \begin_inset LatexCommand index
30103 name "LaTeX-packages ! sidecap"
30104
30105 \end_inset
30106
30107
30108 \end_layout
30109
30110 \begin_layout Bibliography
30111 \begin_inset LatexCommand bibitem
30112 key "NewInLyX15"
30113
30114 \end_inset
30115
30116
30117 \begin_inset ERT
30118 status collapsed
30119
30120 \begin_layout Standard
30121
30122
30123 \backslash
30124 href{http://wiki.lyx.org/LyX/NewInLyX15}{
30125 \end_layout
30126
30127 \end_inset
30128
30129 Wiki page
30130 \begin_inset ERT
30131 status collapsed
30132
30133 \begin_layout Standard
30134
30135 }
30136 \end_layout
30137
30138 \end_inset
30139
30140  about new LyX-features planned for the release 
30141 \family sans
30142 LyX 1.5
30143 \family default
30144 .0.
30145 \end_layout
30146
30147 \begin_layout Standard
30148 \begin_inset LatexCommand printindex
30149
30150 \end_inset
30151
30152
30153 \end_layout
30154
30155 \begin_layout Standard
30156 \begin_inset FloatList figure
30157
30158 \end_inset
30159
30160
30161 \end_layout
30162
30163 \begin_layout Standard
30164 \begin_inset FloatList table
30165
30166 \end_inset
30167
30168
30169 \end_layout
30170
30171 \end_body
30172 \end_document